[Seaside] Application null rendering

stephane ducasse stephane.ducasse at free.fr
Thu Jul 26 14:52:33 UTC 2007


On 26 juil. 07, at 15:57, Philippe Marschall wrote:

> 2007/7/26, stephane ducasse <stephane.ducasse at free.fr>:
>> >
>> > What version of Squeak?
>>
>> 3.9
>> 7067
>>
>> > Which WAKom* ?
>>
>> gk-2
>
> No, WAKom, WAKomEncoded or WAKomEncoded39.

how do I know that?
>
>> > What version of KomHttServer?
>>
>> gk-6
>>
>>
>> > Where does the funny character come from?
>>
>> from my own mess I guess.
>> I have an external file containing all the data of my comix and I
>> edited with a stupid editor.
>
> And how did this data come into your web application? What encoding
> does the file have, what encoding does the data in the image have?
>
> Cheers
> Philippe
>
>> Stef
>> >
>> > Philippe
>> >
>> >> Stef
>> >>
>> >> On 25 juil. 07, at 13:50, stephane ducasse wrote:
>> >>
>> >> > I'm using seaside2.7a1-mb.205
>> >> >
>> >> > And when I look at the stack I found that code.
>> >> > What is deprecatedApi:on:...?
>> >> > in WAToolFrame?
>> >> >
>> >> > Stef
>> >> >
>> >> >
>> >> > renderChildOn: html
>> >> >       showHalos contents
>> >> >               ifTrue: [ html context debugMode ].
>> >> >       processTime := processTime
>> >> >               ifNil: [ 0 ] ifNotNil: [ Time
>> >> millisecondClockValue - processTime ].
>> >> >       renderTime := Time millisecondsToRun: [
>> >> >               self
>> >> >                       deprecatedApi: [ html render: contents ]
>> >> >                       on: html ].
>> >> >       html context clearMode
>> >> >
>> >> >
>> >> >
>> >> > On 23 juil. 07, at 16:53, stephane ducasse wrote:
>> >> >
>> >> >> Hi all
>> >> >>
>> >> >> I'm playing with a small application to manage comix that  
>> one of
>> >> >> the students here did.
>> >> >> From time to time my application simply render nothing, not  
>> even
>> >> >> the heading.
>> >> >> here is the code of the main class.
>> >> >> Does anybody have an idea where the problem could come from?
>> >> >>
>> >> >> Stef
>> >> >>
>> >> >> renderContentOn: html
>> >> >>
>> >> >>
>> >> >>      html heading: 'Comix'.
>> >> >>      html paragraph: [ self renderMenus: html.
>> >> >>      html form
>> >> >>                      with:
>> >> >>                              [html textInput on: #search of:  
>> self.
>> >> >>                              html space.
>> >> >>                              html submitButton callback: [ self
>> >> filter ]; text: 'search' ]].
>> >> >>      html render: self report.
>> >> >>      html paragraph: [ self renderMenus: html.]
>> >> >>
>> >> >>
>> >> >>
>> >> >> children
>> >> >>
>> >> >>      ^ OrderedCollection with: self report
>> >> >>
>> >> >>
>> >> >> report
>> >> >>
>> >> >>      ^report
>> >> >>
>> >> >> report: aReport
>> >> >>
>> >> >>    report := aReport
>> >> >>
>> >> >>
>> >> >> createReport
>> >> >>
>> >> >>      | rep |
>> >> >>      rep := MAReport rows: self currentBase bds
>> >> >>                                      description: self
>> >> bdColumnFilter.
>> >> >>      rep batchSize: 25.
>> >> >>      self report: rep.
>> >> >>      self report addColumn: (MACommandColumn new
>> >> >>
>> >> addCommandOn: self selector: #view:;
>> >> >>
>> >> addCommandOn: self selector: #clone:;
>> >> >>
>> >> addCommandOn: self selector: #edit:;
>> >> >>
>> >> addCommandOn: self selector: #remove:;
>> >> >>
>> >> yourself)
>> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >> >> initialize
>> >> >>
>> >> >>      super initialize.
>> >> >>      currentBaseName := BDBase registeredBases anyOne name
>> >> asSymbol.
>> >> >>      self createReport
>> >> >> _______________________________________________
>> >> >> Seaside mailing list
>> >> >> Seaside at lists.squeakfoundation.org
>> >> >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/ 
>> seaside
>> >> >>
>> >> >
>> >> > _______________________________________________
>> >> > Seaside mailing list
>> >> > Seaside at lists.squeakfoundation.org
>> >> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/ 
>> seaside
>> >> >
>> >>
>> >> _______________________________________________
>> >> Seaside mailing list
>> >> Seaside at lists.squeakfoundation.org
>> >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> >>
>> > _______________________________________________
>> > Seaside mailing list
>> > Seaside at lists.squeakfoundation.org
>> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> >
>>
>> _______________________________________________
>> Seaside mailing list
>> Seaside at lists.squeakfoundation.org
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>>
> _______________________________________________
> Seaside mailing list
> Seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>



More information about the Seaside mailing list