On Thu, Nov 26, 2009 at 10:36 AM, Kemal Pince <rails.kp@gmail.com> wrote:Uh, a "text editor"? :-)
> I wonder what you guys out there are using to generate the extra html and
> css to make your web pages look great once you have the backbone of the app
> up and running with RoR ?
--
Hassan Schroeder ------------------------ hassan.s...@gmail.com
twitter: @hassan
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
If you want to have fancy looking web pages (and customers do, by the way) it takes too long to get it together with a text editor.On Fri, Nov 27, 2009 at 8:53 AM, Hassan Schroeder <hassan.s...@gmail.com> wrote:Uh, a "text editor"? :-)
Best regards
Peter De Berdt
If you want a performant, well structured and easy to maintain web application, you HAVE to put it together with some kind of text editor. And in fact, just using TextMate and it's autocompletion and macros, everyone who has decent HTML+CSS knowledge will be able to assemble a well designed page very quickly, whether you start from a Photoshop mockup or not. Any dedicated and respected web agency these days "handcodes" their designs.But hey, if table-based design or table-based design where <tr> is replaced with <div> is your kind of thing, go ahead and use Dreamweaver, Frontpage or Microsoft Word. You're going to hit a concrete wall when you actually have to make those designs dynamic (with any web app language for that matter) and your pages will have more body than most ppl who had Thanksgiving yesterday.
On 27 Nov 2009, at 10:38, Kemal Pince wrote:If you want to have fancy looking web pages (and customers do, by the way) it takes too long to get it together with a text editor.
On Fri, Nov 27, 2009 at 8:53 AM, Hassan Schroeder <hassan.s...@gmail.com> wrote:
Uh, a "text editor"? :-)Best regards
Peter De Berdt
Peter, I tend to use Fireworks CS4 to slice up the PSD to generate HTML, CSS, and images. This gives me the initial cut of the design in HTML and CSS. Then I'll use both Dreamweaver CS4 and Textmate. Dreamweaver has embedded the WebKit engine so that I can see the changes to my site code without opening a browser. Thus, I tend to do most of the CSS and HTML in it. Next, I use Textmate mostly for the RoR and Ruby specific things because Dreamweaver provides the ability to invoke Textmate from DW.In short, I use the best tool(s) for the job and I haven't hit any walls but leveraged other toolsets.
On 27 Nov 2009, at 14:41, Conrad Taylor wrote:Peter, I tend to use Fireworks CS4 to slice up the PSD to generate HTML, CSS, and images. This gives me the initial cut of the design in HTML and CSS. Then I'll use both Dreamweaver CS4 and Textmate. Dreamweaver has embedded the WebKit engine so that I can see the changes to my site code without opening a browser. Thus, I tend to do most of the CSS and HTML in it. Next, I use Textmate mostly for the RoR and Ruby specific things because Dreamweaver provides the ability to invoke Textmate from DW.In short, I use the best tool(s) for the job and I haven't hit any walls but leveraged other toolsets.Yes, but even then you are handcoding most of the page in Dreamweaver, aren't you? It basically means you have a very expensive handcoding IDE (but the price of course justifies itself if it makes you more productive, it doesn't for me, even though I had to use Dreamweaver for years, so I know my way around).
Depending on the project, I'm also using Fireworks to slice up the graphics. Most projects we do however tend to be about structure first, having to keep in mind how the data will flow in it and make sure either Rails or Javascript will easily be able to push the data in, i.e. the HTML needs to be very straightforward. Doesn't mean the final result isn't graphically impressive.
However, the code that Dreamweaver generates as a pure WYSIWYG editor is just horrendous, especially in the hands of a designer who doesn't grasp HTML+CSS in the slightest. Yes, the result renders, but having to work with the generated code for creating dynamic pages is a real pain.
Hope this clears things up a bit.Best regards
Peter De Berdt