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 <[hidden email]> 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 > _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
On Thu, Apr 21, 2011 at 11:19 PM, Davorin Rusevljan
<[hidden email]> wrote: > Hello, > > I have downloaded latest one click Pier2 from > jenkins.lukas-renggli.ch that is: Build #498 (2011.04.21 18:28:14) Davorin Rusevljan http://www.cloud208.com/ _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Pier-Pharo-Persistency-lr.19 from http://source.lukas-renggli.ch/pier2 works for me.
2011/4/22 Davorin Rusevljan <[hidden email]>
-- Dennis Schetinin _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
On Fri, Apr 22, 2011 at 6:20 AM, Dennis Schetinin <[hidden email]> wrote:
> Pier-Pharo-Persistency-lr.19 from http://source.lukas-renggli.ch/pier2 works > for me. That is the one I have in one click image. I have putted self halt in: PRExportImportWidget>>export: and it seems that I do not land in this method when button Export is clicked? now I am pretty certain that I am doing something trivially wrong. Davorin Rusevljan http://www.cloud208.com/ _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Hmm could it be something related to handling of multipart forms in
comanche? If I change form to be regular one, and buttons to just buttons instead of submitButton, export: method does fire up, and I do get download of pier.obj. (importing still groaks though). in one click image there is: Seaside-Adaptors-Comanche-pmm68 Davorin Rusevljan http://www.cloud208.com/ _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
This seems to be an issue in Seaside with multipart post requests.
This can be verified with the functional test suite of Seaside at <http://localhost:8080/tests/functional/WAInputPostMultipartFunctionalTest>. I will try to figure out what happens here. Thanks for letting us know. Cheers, Lukas On 22 April 2011 10:16, Davorin Rusevljan <[hidden email]> wrote: > Hmm could it be something related to handling of multipart forms in > comanche? If I change form to be regular one, and buttons to just > buttons instead of submitButton, export: method does fire up, and I do > get download of pier.obj. (importing still groaks though). > > in one click image there is: > > Seaside-Adaptors-Comanche-pmm68 > > Davorin Rusevljan > http://www.cloud208.com/ > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Lukas Renggli www.lukas-renggli.ch _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
The problem seems to come from this change:
<http://code.google.com/p/seaside/issues/detail?id=648>. Reverting that code solves the problem: Gofer new squeaksource: 'KomHttpServer'; package: 'KomHttpServerLight'; load On 22 April 2011 10:46, Lukas Renggli <[hidden email]> wrote: > This seems to be an issue in Seaside with multipart post requests. > This can be verified with the functional test suite of Seaside at > <http://localhost:8080/tests/functional/WAInputPostMultipartFunctionalTest>. > > I will try to figure out what happens here. Thanks for letting us know. > > Cheers, > Lukas > > On 22 April 2011 10:16, Davorin Rusevljan <[hidden email]> wrote: >> Hmm could it be something related to handling of multipart forms in >> comanche? If I change form to be regular one, and buttons to just >> buttons instead of submitButton, export: method does fire up, and I do >> get download of pier.obj. (importing still groaks though). >> >> in one click image there is: >> >> Seaside-Adaptors-Comanche-pmm68 >> >> Davorin Rusevljan >> http://www.cloud208.com/ >> _______________________________________________ >> Magritte, Pier and Related Tools ... >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki >> > > > > -- > Lukas Renggli > www.lukas-renggli.ch > -- Lukas Renggli www.lukas-renggli.ch _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
On Fri, Apr 22, 2011 at 11:09 AM, Lukas Renggli <[hidden email]> wrote:
> The problem seems to come from this change: > <http://code.google.com/p/seaside/issues/detail?id=648>. I guess this had something to do with REST support, be damned ;) > Reverting that code solves the problem: > > Gofer new > squeaksource: 'KomHttpServer'; > package: 'KomHttpServerLight'; > load Ok, import/export now works, thanks Lukas! Will this change be incorporated in #499 build of Pier? Thanks once again, Davorin _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
>> The problem seems to come from this change:
>> <http://code.google.com/p/seaside/issues/detail?id=648>. > > I guess this had something to do with REST support, be damned ;) No, I don't think so. > Will this change be incorporated in #499 build of Pier? Yes, this should be part of the most recent builds. Lukas -- Lukas Renggli www.lukas-renggli.ch _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Free forum by Nabble | Edit this page |