I am looking at using Twitter Bootstrap with Seaside.
Any experience/tips? Stephan _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I'm also interested in using Bootstrap. This site: http://builtwithbootstrap.com/
has some interesting examples of sites built with Bootstrap. Here is a link to a dev page on Bootstrap: https://dev.twitter.com/blog/bootstrap-twitter What would it take to integrate Bootstrap with Seaside? Larry On Mar 13, 2012, at 9:40 AM, Stephan Eggermont wrote: > I am looking at using Twitter Bootstrap with Seaside. > Any experience/tips? > > Stephan > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
It doesn't take anything special, just add the files to the library like
you would any other js, css and png resources. You can even use less files if you also include less.js to compile them dynamically, although I wouldn't recommend that for production deployment. -Boris -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of Lawrence Kellogg Sent: Tuesday, March 13, 2012 9:57 AM To: Seaside - general discussion Subject: Re: [Seaside] Twitter bootstrap? I'm also interested in using Bootstrap. This site: http://builtwithbootstrap.com/ has some interesting examples of sites built with Bootstrap. Here is a link to a dev page on Bootstrap: https://dev.twitter.com/blog/bootstrap-twitter What would it take to integrate Bootstrap with Seaside? Larry On Mar 13, 2012, at 9:40 AM, Stephan Eggermont wrote: > I am looking at using Twitter Bootstrap with Seaside. > Any experience/tips? > > Stephan > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thanks, Boris, I'll give it a shot. I've moved away from using
a file library and just use CSS files served from nginx. Why would the less.js stuff not be recommended for production? Larry On Mar 13, 2012, at 10:07 AM, Boris Popov, DeepCove Labs wrote: > It doesn't take anything special, just add the files to the library like > you would any other js, css and png resources. You can even use less > files if you also include less.js to compile them dynamically, although > I wouldn't recommend that for production deployment. > > -Boris > > -----Original Message----- > From: [hidden email] > [mailto:[hidden email]] On Behalf Of > Lawrence Kellogg > Sent: Tuesday, March 13, 2012 9:57 AM > To: Seaside - general discussion > Subject: Re: [Seaside] Twitter bootstrap? > > I'm also interested in using Bootstrap. This site: > http://builtwithbootstrap.com/ has some interesting examples of sites > built with Bootstrap. > Here is a link to a dev page on Bootstrap: > https://dev.twitter.com/blog/bootstrap-twitter > > What would it take to integrate Bootstrap with Seaside? > > Larry > > > On Mar 13, 2012, at 9:40 AM, Stephan Eggermont wrote: > >> I am looking at using Twitter Bootstrap with Seaside. >> Any experience/tips? >> >> Stephan >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
a) browser will have to make a fair number of requests to get all the
individual .less resources via @include's b) the .less files will need to be compiled into css prior to being made available to the browser for layout/styling purposes c) local storage for caching may not work as well in older browsers See, https://github.com/cloudhead/less.js/issues/422 -Boris -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of Lawrence Kellogg Sent: Tuesday, March 13, 2012 11:18 AM To: Seaside - general discussion Subject: Re: [Seaside] Twitter bootstrap? Thanks, Boris, I'll give it a shot. I've moved away from using a file library and just use CSS files served from nginx. Why would the less.js stuff not be recommended for production? Larry On Mar 13, 2012, at 10:07 AM, Boris Popov, DeepCove Labs wrote: > It doesn't take anything special, just add the files to the library > like you would any other js, css and png resources. You can even use > less files if you also include less.js to compile them dynamically, > although I wouldn't recommend that for production deployment. > > -Boris > > -----Original Message----- > From: [hidden email] > [mailto:[hidden email]] On Behalf Of > Lawrence Kellogg > Sent: Tuesday, March 13, 2012 9:57 AM > To: Seaside - general discussion > Subject: Re: [Seaside] Twitter bootstrap? > > I'm also interested in using Bootstrap. This site: > http://builtwithbootstrap.com/ has some interesting examples of sites > built with Bootstrap. > Here is a link to a dev page on Bootstrap: > https://dev.twitter.com/blog/bootstrap-twitter > > What would it take to integrate Bootstrap with Seaside? > > Larry > > > On Mar 13, 2012, at 9:40 AM, Stephan Eggermont wrote: > >> I am looking at using Twitter Bootstrap with Seaside. >> Any experience/tips? >> >> Stephan >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Stephan Eggermont-3
I think that Nick is working on a Magritte Renderer for Bootstrap :)
He's away this week. I guess he could tell more next week ! On 13/03/12 06:40, Stephan Eggermont wrote: > I am looking at using Twitter Bootstrap with Seaside. > Any experience/tips? > > Stephan _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Larry Kellogg
On Tue, Mar 13, 2012 at 8:17 AM, Lawrence Kellogg <[hidden email]> wrote:
Thanks, Boris, I'll give it a shot. I've moved away from using Larry, I tend to leverage much of my Rails knowledge to precompile and minify all the stylesheets and javascripts during the deployment process. Thus, all files are immediately available when a user accesses them. Otherwise,
compiling resources on the fly wouldn't be the best user experience for your visitors because they will have to wait for the generated CSS.
Think different and code well, -Conrad _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Stephan Eggermont-3
On 12-03-13 06:40 AM, Stephan Eggermont wrote:
> I am looking at using Twitter Bootstrap with Seaside. > Any experience/tips? > > Stephan I think it has made my life easier. If you want to try a bunch of them out I created the CSSFrameworks project on SS3 here: http://ss3.gemstone.com/ss/CSSFrameworks.html It includes the demo sites from: Initialzr (http://www.initializr.com/) Golden Grid System (http://goldengridsystem.com/) Frameless Grid (http://framelessgrid.com/) Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you should use 2.0 from http://twitter.github.com/bootstrap) Skeleton (http://getskeleton.com) Goldilocks (http://http://goldilocksapproach.com/) and works with Seaside 3.0 _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I tried a few. Boom, crash. I seem to be crashing on this message send:
anHtmlRoot useIEConditionalHtmlElement. WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? Am I running the wrong version of Seaside? I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is unsupported. That the, the hero demo, crashed here, unheroically: html5ShimForIE: aRoot aRoot if lessThan; ie9; do: [ aRoot script url: '//html5shim.googlecode.com/svn/trunk/html5.js' ] with WAConditionalCommment does not understand ie9. Larry On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: > On 12-03-13 06:40 AM, Stephan Eggermont wrote: >> I am looking at using Twitter Bootstrap with Seaside. >> Any experience/tips? >> >> Stephan > > I think it has made my life easier. If you want to try a bunch of them out I created the CSSFrameworks project on SS3 here: > > http://ss3.gemstone.com/ss/CSSFrameworks.html > > > It includes the demo sites from: > > Initialzr (http://www.initializr.com/) > Golden Grid System (http://goldengridsystem.com/) > Frameless Grid (http://framelessgrid.com/) > Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you should use 2.0 from http://twitter.github.com/bootstrap) > Skeleton (http://getskeleton.com) > Goldilocks (http://http://goldilocksapproach.com/) > > and works with Seaside 3.0 > > > > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Looks like I forgot to mark some things as extensions. Should be OK now.
On 12-03-13 10:44 AM, Lawrence Kellogg wrote: > I tried a few. Boom, crash. I seem to be crashing on this message send: > > anHtmlRoot useIEConditionalHtmlElement. > > WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? > Am I running the wrong version of Seaside? > > I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is unsupported. That the, the hero demo, crashed > here, unheroically: > > html5ShimForIE: aRoot > aRoot if > lessThan; > ie9; > do: [ aRoot script url: '//html5shim.googlecode.com/svn/trunk/html5.js' ] > > with WAConditionalCommment does not understand ie9. > > Larry > > > > > On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: > >> On 12-03-13 06:40 AM, Stephan Eggermont wrote: >>> I am looking at using Twitter Bootstrap with Seaside. >>> Any experience/tips? >>> >>> Stephan >> >> I think it has made my life easier. If you want to try a bunch of them out I created the CSSFrameworks project on SS3 here: >> >> http://ss3.gemstone.com/ss/CSSFrameworks.html >> >> >> It includes the demo sites from: >> >> Initialzr (http://www.initializr.com/) >> Golden Grid System (http://goldengridsystem.com/) >> Frameless Grid (http://framelessgrid.com/) >> Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you should use 2.0 from http://twitter.github.com/bootstrap) >> Skeleton (http://getskeleton.com) >> Goldilocks (http://http://goldilocksapproach.com/) >> >> and works with Seaside 3.0 >> >> >> >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Much better. Thanks!
Larry On Mar 13, 2012, at 2:07 PM, Paul DeBruicker wrote: > Looks like I forgot to mark some things as extensions. Should be OK now. > > > > > > > On 12-03-13 10:44 AM, Lawrence Kellogg wrote: >> I tried a few. Boom, crash. I seem to be crashing on this message send: >> >> anHtmlRoot useIEConditionalHtmlElement. >> >> WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? >> Am I running the wrong version of Seaside? >> >> I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is unsupported. That the, the hero demo, crashed >> here, unheroically: >> >> html5ShimForIE: aRoot >> aRoot if >> lessThan; >> ie9; >> do: [ aRoot script url: '//html5shim.googlecode.com/svn/trunk/html5.js' ] >> >> with WAConditionalCommment does not understand ie9. >> >> Larry >> >> >> >> >> On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: >> >>> On 12-03-13 06:40 AM, Stephan Eggermont wrote: >>>> I am looking at using Twitter Bootstrap with Seaside. >>>> Any experience/tips? >>>> >>>> Stephan >>> >>> I think it has made my life easier. If you want to try a bunch of them out I created the CSSFrameworks project on SS3 here: >>> >>> http://ss3.gemstone.com/ss/CSSFrameworks.html >>> >>> >>> It includes the demo sites from: >>> >>> Initialzr (http://www.initializr.com/) >>> Golden Grid System (http://goldengridsystem.com/) >>> Frameless Grid (http://framelessgrid.com/) >>> Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you should use 2.0 from http://twitter.github.com/bootstrap) >>> Skeleton (http://getskeleton.com) >>> Goldilocks (http://http://goldilocksapproach.com/) >>> >>> and works with Seaside 3.0 >>> >>> >>> >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Paul DeBruicker
Hi Pail,
I tryed to install the package from http://ss3.gemstone.com/ss/CSSFrameworks.html into Squeak 3.0, but I received the error: WAHtmlRoot class>>hasInstVarNamed: Can you help me? Grazie Lorenzo -----Messaggio originale----- Da: [hidden email] [mailto:[hidden email]] Per conto di Paul DeBruicker Inviato: martedì 13 marzo 2012 19.07 A: Seaside - general discussion Oggetto: Re: [ANN] CSS Frameworks (was Re: [Seaside] Twitter bootstrap?) Looks like I forgot to mark some things as extensions. Should be OK now. On 12-03-13 10:44 AM, Lawrence Kellogg wrote: > I tried a few. Boom, crash. I seem to be crashing on this message send: > > anHtmlRoot useIEConditionalHtmlElement. > > WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? > Am I running the wrong version of Seaside? > > I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is unsupported. That the, the hero demo, crashed > here, unheroically: > > html5ShimForIE: aRoot > aRoot if > lessThan; > ie9; > do: [ aRoot script url: '//html5shim.googlecode.com/svn/trunk/html5.js' ] > > with WAConditionalCommment does not understand ie9. > > Larry > > > > > On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: > >> On 12-03-13 06:40 AM, Stephan Eggermont wrote: >>> I am looking at using Twitter Bootstrap with Seaside. >>> Any experience/tips? >>> >>> Stephan >> >> I think it has made my life easier. If you want to try a bunch of them >> >> http://ss3.gemstone.com/ss/CSSFrameworks.html >> >> >> It includes the demo sites from: >> >> Initialzr (http://www.initializr.com/) >> Golden Grid System (http://goldengridsystem.com/) >> Frameless Grid (http://framelessgrid.com/) >> Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you >> Skeleton (http://getskeleton.com) >> Goldilocks (http://http://goldilocksapproach.com/) >> >> and works with Seaside 3.0 >> >> >> >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Lorenzo,
I don't know. I've never used Squeak 3.0. Does Seaside 3 run in Squeak 3.0? Can you upgrade to Squeak 4.3? If not where can I find a copy of Squeak 3.0 to run? I'll see if the error happens in Squeak 4.3. Thanks for pointing it out. Paul On 12-03-16 12:33 AM, Lorenzo Schiavina wrote: > Hi Pail, > > I tryed to install the package from > http://ss3.gemstone.com/ss/CSSFrameworks.html into Squeak 3.0, but I > received the error: > WAHtmlRoot class>>hasInstVarNamed: > > Can you help me? > > Grazie > > Lorenzo > > -----Messaggio originale----- > Da: [hidden email] > [mailto:[hidden email]] Per conto di Paul > DeBruicker > Inviato: martedì 13 marzo 2012 19.07 > A: Seaside - general discussion > Oggetto: Re: [ANN] CSS Frameworks (was Re: [Seaside] Twitter bootstrap?) > > Looks like I forgot to mark some things as extensions. Should be OK now. > > > > > > > On 12-03-13 10:44 AM, Lawrence Kellogg wrote: >> I tried a few. Boom, crash. I seem to be crashing on this message send: >> >> anHtmlRoot useIEConditionalHtmlElement. >> >> WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? >> Am I running the wrong version of Seaside? >> >> I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is > unsupported. That the, the hero demo, crashed >> here, unheroically: >> >> html5ShimForIE: aRoot >> aRoot if >> lessThan; >> ie9; >> do: [ aRoot script url: > '//html5shim.googlecode.com/svn/trunk/html5.js' ] >> >> with WAConditionalCommment does not understand ie9. >> >> Larry >> >> >> >> >> On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: >> >>> On 12-03-13 06:40 AM, Stephan Eggermont wrote: >>>> I am looking at using Twitter Bootstrap with Seaside. >>>> Any experience/tips? >>>> >>>> Stephan >>> >>> I think it has made my life easier. If you want to try a bunch of them > out I created the CSSFrameworks project on SS3 here: >>> >>> http://ss3.gemstone.com/ss/CSSFrameworks.html >>> >>> >>> It includes the demo sites from: >>> >>> Initialzr (http://www.initializr.com/) >>> Golden Grid System (http://goldengridsystem.com/) >>> Frameless Grid (http://framelessgrid.com/) >>> Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you > should use 2.0 from http://twitter.github.com/bootstrap) >>> Skeleton (http://getskeleton.com) >>> Goldilocks (http://http://goldilocksapproach.com/) >>> >>> and works with Seaside 3.0 >>> >>> >>> >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Paul,
thank you for your answer; the error was in Seaside allInOne 3.0 I downloaded from the site. Anyway I loaded correctly the package in Pahro 1.3 Grazie Lorenzo -----Messaggio originale----- Da: [hidden email] [mailto:[hidden email]] Per conto di Paul DeBruicker Inviato: venerdì 16 marzo 2012 17.13 A: Seaside - general discussion Oggetto: Re: R: [ANN] CSS Frameworks (was Re: [Seaside] Twitter bootstrap?) Hi Lorenzo, I don't know. I've never used Squeak 3.0. Does Seaside 3 run in Squeak 3.0? Can you upgrade to Squeak 4.3? If not where can I find a copy of Squeak 3.0 to run? I'll see if the error happens in Squeak 4.3. Thanks for pointing it out. Paul On 12-03-16 12:33 AM, Lorenzo Schiavina wrote: > Hi Pail, > > I tryed to install the package from > http://ss3.gemstone.com/ss/CSSFrameworks.html into Squeak 3.0, but I > received the error: > WAHtmlRoot class>>hasInstVarNamed: > > Can you help me? > > Grazie > > Lorenzo > > -----Messaggio originale----- > Da: [hidden email] > [mailto:[hidden email]] Per conto di Paul > DeBruicker > Inviato: martedì 13 marzo 2012 19.07 > A: Seaside - general discussion > Oggetto: Re: [ANN] CSS Frameworks (was Re: [Seaside] Twitter bootstrap?) > > Looks like I forgot to mark some things as extensions. Should be OK now. > > > > > > > On 12-03-13 10:44 AM, Lawrence Kellogg wrote: >> I tried a few. Boom, crash. I seem to be crashing on this message send: >> >> anHtmlRoot useIEConditionalHtmlElement. >> >> WAHtmlRoot does not understand useIEConditionalHtmlElement. Thoughts? >> Am I running the wrong version of Seaside? >> >> I'll ignore the crash of the Twitter Bootstrap 1.4 as you say it is > unsupported. That the, the hero demo, crashed >> here, unheroically: >> >> html5ShimForIE: aRoot >> aRoot if >> lessThan; >> ie9; >> do: [ aRoot script url: > '//html5shim.googlecode.com/svn/trunk/html5.js' ] >> >> with WAConditionalCommment does not understand ie9. >> >> Larry >> >> >> >> >> On Mar 13, 2012, at 1:06 PM, Paul DeBruicker wrote: >> >>> On 12-03-13 06:40 AM, Stephan Eggermont wrote: >>>> I am looking at using Twitter Bootstrap with Seaside. >>>> Any experience/tips? >>>> >>>> Stephan >>> >>> I think it has made my life easier. If you want to try a bunch of them > out I created the CSSFrameworks project on SS3 here: >>> >>> http://ss3.gemstone.com/ss/CSSFrameworks.html >>> >>> >>> It includes the demo sites from: >>> >>> Initialzr (http://www.initializr.com/) >>> Golden Grid System (http://goldengridsystem.com/) >>> Frameless Grid (http://framelessgrid.com/) >>> Twitter Bootstrap ( version 1.4, which is outdated/unsupported. you > should use 2.0 from http://twitter.github.com/bootstrap) >>> Skeleton (http://getskeleton.com) >>> Goldilocks (http://http://goldilocksapproach.com/) >>> >>> and works with Seaside 3.0 >>> >>> >>> >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Lorenzo
On 12-03-16 12:33 AM, Lorenzo Schiavina wrote:
> Hi Pail, > > I tryed to install the package from > http://ss3.gemstone.com/ss/CSSFrameworks.html into Squeak 3.0, but I > received the error: > WAHtmlRoot class>>hasInstVarNamed: > > Can you help me? > > Grazie > > Lorenzo Hi Lorenzo, The problem was platform differences between Pharo and Squeak. I've updated the package in the repository so it should now load. I didn't test all the frameworks but the ones I did try seem to work fine on Squeak. good luck Paul _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Paul,
thank you very much; now it works Ciao -----Messaggio originale----- Da: [hidden email] [mailto:[hidden email]] Per conto di Paul DeBruicker Inviato: venerdì 16 marzo 2012 18.03 A: Seaside - general discussion Oggetto: Re: R: [ANN] CSS Frameworks (was Re: [Seaside] Twitter bootstrap?) On 12-03-16 12:33 AM, Lorenzo Schiavina wrote: > Hi Pail, > > I tryed to install the package from > http://ss3.gemstone.com/ss/CSSFrameworks.html into Squeak 3.0, but I > received the error: > WAHtmlRoot class>>hasInstVarNamed: > > Can you help me? > > Grazie > > Lorenzo Hi Lorenzo, The problem was platform differences between Pharo and Squeak. I've updated the package in the repository so it should now load. I didn't test all the frameworks but the ones I did try seem to work fine on Squeak. good luck Paul _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |