I would like to develop a website using rails that projects can do the
following things.
* Designers can freely and frequently design and change layout of pages
(HTML,XHTML format) with a lot of dinamic data...
Which is the good way to use Rails to build website like that?
Could you elaborate a little on what you mean by "changing layout
frequently"?
Rails is perfect for this as it lets you design views and layouts
containing these views and everything is neatly organized and clean,
but perhaps you are looking for something more specific like themes a
la wordpress, with Rails handles via plugins.
Sorry experts for my unclearly question.
Now I show you an example and hope that you will understand exactly.
Example:
You have develop a website on mobile for company.
Your company has many designers(design website, image, they can wire
html), their's work are update content, change layout...of pages by
using CMS.
And you have to build a CMS for designer to create/update pages.
I also define many parameters for designer to use and program will reply
that params with real data (Ex. list of songs, top raking song...).
It sounds as though you are looking for a way for your designers to do
full page visual design. Our product, Ruby In Steel Developer, is the
only Ruby IDE that has a full page drag and drop design environment for
Rails. it assembles and translates Rails (Erb) templates into editable
HTML pages. You can drag and drop buttons, text fields etc onto the
pages and apply CSS styling. When you like the design, Ruby In Steel
automatically splits up the HTML pages and translates them back to their
original form as multiple ERb templates (layouts, views, partial).
Moreover, if your designers prefer to use 3rd party tools such as
Dreamweaver, it takes care of exporting your page designs in editable
format (to Dreamweaver, Expression Web or whatever) and importing them
back when the designers have finished.
Thank you for your answer.
My Project just for my designer input HTML/XHTML (They use 3rd party
tools to design).
I'm worried about .erb(views part) is difficult for my designer!? and
should I keep the format erb or not?
I have once more question here.
I have to separate the view into many group(base on User Agent).
How can I do that in Rails.