Hello,
I have downloaded latest one click Pier2 from
jenkins.lukas-renggli.ch, but when I click on export/imporrt component
browser gets:
Internal Server Error
ConnectionTimedOut: Data receive timed out.
Interestingly there is no walkback in the image.
I must be doing something very stupid I guess :)
Davorin Rusevljan
http://www.cloud208.com/
On Thu, Mar 24, 2011 at 8:53 PM, Apostolis Xekoukoulotakis
<xekoukou(a)gmail.com> wrote:
> Hello fellows,
> I would like to ask you if there is any documentation on creating new addons
> for the pier systems, apart from the code.
> Also if there is documentation for the already existant addons, for all the
> addons.
> Is the list http://source.lukas-renggli.ch/pieraddons/ complete or are there
> more?
> If there is no documentation what are the differences in creating components
> for pier than for a general seaside web site.
> Do i have to learn magritte?
> --
>
> This message and any attachments (the "message") are confidential, intended
> solely for the addressee(s), and may contain legally privileged information.
> Any unauthorised use or dissemination is prohibited. E-mails are susceptible
> to alteration.
> I shall not be liable for the message if altered, changed or
> falsified.
>
> Sincerely yours,
>
> Apostolis Xekoukoulotakis
>
> _______________________________________________
> Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
I am looking to hire an independent contractor to develop a site for a to be
non profit Organization.
Things that will be considered as a prerequisitive:
Good knowledge of Pier. :)
The ability to find and use a good Database, for example Gemstone. Open
source Databases will be prefered but
the site will rely heavily on matrix computations which should give the
result in real time. So, It is important that the database connects to a C
programm for example for the computations. I dont know yet where it will be
hosted. If it will be hosted in my own server, I think that the use of Cuda,
cublas would be prefered but I am open to suggetions.
One of the work that will have to be done is to put the Wikipedia
encyclopedia english dump into the database.
This site will be supposed to be an improvement of Wikipedia that will
have some of the properties of Knol.google.com and much more. It is intended
to be a non profit organization that will not use advertisements, so the
initial budget is very limited until the site becomes known.
I havent decided yet if i will use Pier as a more obvious option is to use
Mediawiki which looks like it will be cheaper.
I believe that many of you would find the concept very interesting but I
cant say more right now.
--
View this message in context: http://forum.world.st/Independent-Contractor-to-develop-Site-tp3457411p3457…
Sent from the Magritte, Pier and Related Tools mailing list archive at Nabble.com.
Some time ago I changed PBEntriesRSSView to be able to filter entries by tags. It is useful if you are subscribed to e.g. planet smalltalk. This way only posts that are tagged properly will be included. But I forgot to drop a note about it.
Today I've been asked about it and that made me do a small changeset in case somebody wants to know. I'm not sure if this should be included in default pier hence the changeset.
Hope you like it,
Norbert
Hi,
I wonder how can I add a css who references an image to a page in Pier.
For example, I have this style:
.aclass {
background-image: url(background.png);
}
so... I upload the style to /system/components/css/style.css, and I change my page to use that css.
So... how can I add the image file? I tried by creating a /system/components/css/background.png file, but it does not works :(
Also... I would like to add some meta information (a couple of <link> rels), and no idea how to do it... any idea?
Thanks,
Esteban
I would like someone to verify this..
I want to create a plugin that would be part of the enviroment of a number
of pages.
the plugin wants to know the user that is logged in, the owner of the page
that is viewing and the absolute path of the page.
So to get this i ll put in my component these lines right?
PRContext user
PRContext structure owner
PRContext structure absolutePath
I guess that the absolute path is the only way to identfy a page.
Another problem i have is with persistency..
I googled and found that lots of people have already talked about it.
For me and i think every new programmer, it is the biggest obstacle for
using Pier...
Pier is very powerfull , easy to use and programm due to its smalltalk
foundation. The code is so easily understood and the reusability of the code
is phenomenal.
So If this persistency problem is solved with the new programmer in mind,
the one that just wants its objects to save, no questions asked, Pier would
rock.
So to use Pier, the only option for me is to go for a non-free DB like
gemstoneS. All i have to do is tell Pier to save objects and gemstone will
do it automatically without me changing any of the code, right?
Unfortunately at the time of writing i have access to a 32bit CPU so i cant
check for myself..
I know there are other options like magma, but from what i understand you
have to understand the underlying structure and i dont want to.
Hello fellows,
I would like to ask you if there is any documentation on creating new addons
for the pier systems, apart from the code.
Also if there is documentation for the already existant addons, for all the
addons.
Is the list http://source.lukas-renggli.ch/pieraddons/ complete or are there
more?
If there is no documentation what are the differences in creating components
for pier than for a general seaside web site.
Do i have to learn magritte?
--
This message and any attachments (the "message") are confidential,
intended solely for the addressee(s), and may contain legally
privileged information.
Any unauthorised use or dissemination is prohibited. E-mails are
susceptible to alteration.
I shall not be liable for the message if altered, changed or
falsified.
Sincerely yours,
Apostolis Xekoukoulotakis
I load Seaside, Pier and addons with the script below. Most things (at least
those I've tried) works, but Import/Export widget. It simply ignores all
clicks on Import and Export buttons. What's wrong (how is it possible?!) and
how can I resolve this issue? BTW: Grease, Seaside, Magritte, Pier tests are
green.
TIA
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfSeaside30';
load.
(Smalltalk at: #ConfigurationOfSeaside30) load.
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfPier2';
load.
(Smalltalk at: #ConfigurationOfPier2) load.
project := ConfigurationOfPier2 project.
(project version: '2.0.7') load.
(Smalltalk at: #ConfigurationOfPier2) project latestVersion load:
'Pier-Tests-Model'.
(Smalltalk at: #ConfigurationOfSeaside30) project latestVersion
load: #('Magritte2 Tests' 'Pier2 Tests').
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfPierAddOns2';
load.
(Smalltalk at: #ConfigurationOfPierAddOns2) project latestVersion load:
'ALL'.
PRDistribution register.
--
Dennis Schetinin