No, and really any designer worth his/her pay shouldn't be telling you CSS is too complicated :)
-Boris (via BlackBerry) ________________________________ From: [hidden email] To: [hidden email] Sent: Wed Dec 10 06:46:08 2008 Subject: [Seaside] Seaside and HTML templates Hi list, I have a question with seaside, i want separate the development work of design work. I look than seaside use CSS, but it´s a little complicated for some designer. Can i use html templates with Seaside? Load a html file and then replace the content of selected dummy field with app information. Thanks Andrés _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside winmail.dat (4K) Download Attachment |
I think the CSS part is not what is difficult to the designer. I rather think that the difficulty is that the designer might want/need to change the structure of the webpage and he needs to do that in Seaside. That means he needs to learn how to do Smalltalk in whatever dialekt, which is probably not the easiest to do for a designer. It's probably the best for the developer to provide html that is already well-structured so that the designer can do his magic without wanting to change the structure. to Andrés: you can't use templates in Seaside. Kind Regards Karsten Boris Popov wrote: No, and really any designer worth his/her pay shouldn't be telling you CSS is too complicated :) -Boris (via BlackBerry) ________________________________ From: [hidden email] To: [hidden email] Sent: Wed Dec 10 06:46:08 2008 Subject: [Seaside] Seaside and HTML templates Hi list, I have a question with seaside, i want separate the development work of design work. I look than seaside use CSS, but it´s a little complicated for some designer. Can i use html templates with Seaside? Load a html file and then replace the content of selected dummy field with app information. Thanks Andrés -- Karsten Kusche - Dipl.Inf. - [hidden email] Tel: +49 3496 21 43 29 Georg Heeg eK - Köthen Handelsregister: Amtsgericht Dortmund A 12812 _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Well, to be fair - that answer isn't really going to make the person asking it happy. You can do something like this fairly easily:
-- have your designer produce an HTML template with appropriate CSS -- take the template and create Seaside code that produces it My blog is not implemented in Seaside (I started building it in 2002, well before I was really aware of Seaside), but I took a similar tack there. I have CSS, and a template that was produced by the designer in conjunction with the CSS. Some of the HTML is produced in the server, and some resides in the template - but it all follows the guidelines I was given in the first place. With Seaside, you just eliminate the template and produce <all> the html from the server - and have it line up appropriately with the CSS. James Robertson Cincom Smalltalk Product Evangelist Talk Small and Carry a Big Class Library On Dec 10, 2008, at 10:12 AM, Boris Popov wrote:
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Boris Popov, DeepCove Labs (SNN)
In reality, designer is the one who needs to come up with structured html that developer will then reproduce in seaside. Here we typically start with photoshop mockups that go through a number of iterations before we settle on a decent starting point; this then gets produced in html with css and related resources. We load the latter two and toss the html samples as soon as our components render to match.
-Boris (via BlackBerry) ________________________________ From: [hidden email] To: Seaside - general discussion Sent: Wed Dec 10 07:33:45 2008 Subject: Re: [Seaside] Seaside and HTML templates Hi Boris, I think the CSS part is not what is difficult to the designer. I rather think that the difficulty is that the designer might want/need to change the structure of the webpage and he needs to do that in Seaside. That means he needs to learn how to do Smalltalk in whatever dialekt, which is probably not the easiest to do for a designer. It's probably the best for the developer to provide html that is already well-structured so that the designer can do his magic without wanting to change the structure. to Andrés: you can't use templates in Seaside. Kind Regards Karsten Boris Popov wrote: No, and really any designer worth his/her pay shouldn't be telling you CSS is too complicated :) -Boris (via BlackBerry) ________________________________ From: [hidden email] To: [hidden email] Sent: Wed Dec 10 06:46:08 2008 Subject: [Seaside] Seaside and HTML templates Hi list, I have a question with seaside, i want separate the development work of design work. I look than seaside use CSS, but it´s a little complicated for some designer. Can i use html templates with Seaside? Load a html file and then replace the content of selected dummy field with app information. Thanks Andrés ________________________________ _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside -- Karsten Kusche - Dipl.Inf. - [hidden email] Tel: +49 3496 21 43 29 Georg Heeg eK - Köthen Handelsregister: Amtsgericht Dortmund A 12812 _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside winmail.dat (6K) Download Attachment |
On 12/10/08, Boris Popov <[hidden email]> wrote:
> In reality, designer is the one who needs to come up with structured html that developer will then reproduce in seaside. Here we typically start with photoshop mockups that go through a number of iterations before we settle on a decent starting point; this then gets produced in html with css and related resources. We load the latter two and toss the html samples as soon as our components render to match. Yes, but if designer later on wants to change something in html, he can not do it by himself, and has to work through you, which is a way less convinient than editing a template by himself. But it seems that this is the price that needs to be payed if we want to get rid of manualy creating links, populating hidden fileds and other "fun" stuf one usually needs to do in web programming. Davorin _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Sounds about right, you gain some, you lose some, but the whole premise
of Seaside is to maximize gain-to-loss ratio to get better products to market faster. -Boris -- +1.604.689.0322 DeepCove Labs Ltd. 4th floor 595 Howe Street Vancouver, Canada V6C 2T5 http://tinyurl.com/r7uw4 [hidden email] CONFIDENTIALITY NOTICE This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments. Thank you. -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of Davorin Rusevljan Sent: Wednesday, December 10, 2008 10:28 AM To: Seaside - general discussion Subject: Re: [Seaside] Seaside and HTML templates On 12/10/08, Boris Popov <[hidden email]> wrote: > In reality, designer is the one who needs to come up with structured html that developer will then reproduce in seaside. Here we typically start with photoshop mockups that go through a number of iterations before we settle on a decent starting point; this then gets produced in html with css and related resources. We load the latter two and toss the html samples as soon as our components render to match. Yes, but if designer later on wants to change something in html, he can not do it by himself, and has to work through you, which is a way less convinient than editing a template by himself. But it seems that this is the price that needs to be payed if we want to get rid of manualy creating links, populating hidden fileds and other "fun" stuf one usually needs to do in web programming. Davorin _______________________________________________ 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 |