What is the most designer friendly web framework? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:29:24Zhttp://stackoverflow.com/feeds/question/761436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework0What is the most designer friendly web framework?Leif2009-04-17T17:36:57Z2009-04-27T11:46:22Z
<p>As a programmer with zero design skills and a loathing for cross browser layout issues, what web frameworks have the best separation of layout code from business code?</p>
<p>Ideally the distinction between business code and layout code should be clear cut (as in separate source files, as well as logically), with the layout code easily understandable by design folks, and business code by the likes of me. Tool support for both perspectives is a plus.</p>
<p>So, for your language of choice (php, .net, ruby, python, java, etc.) which framework do you recommend?</p>
<p><a href="http://wicket.apache.org" rel="nofollow">Wicket</a> is the best one I have found so far for Java, but there's still plenty of chance for layout code to intermingle with business code.</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761461#7614613Answer by Ben S for What is the most designer friendly web framework?Ben S2009-04-17T17:43:03Z2009-04-17T17:48:45Z<p>The purpose of <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC frameworks</a> is to separate layout from business logic from data storage.</p>
<p>Most frameworks make it easier to separate these aspects, but you can still go against the spirit of the framework you're using and muddy it up with layout logic in the database model. Poor design and implementation isn't eliminated by these frameworks.</p>
<p>I have used <a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a> and <a href="http://cakephp.org/" rel="nofollow">CakePHP</a> (both of which are PHP MVC frameworks).</p>
<p><a href="http://cakephp.org/" rel="nofollow">CakePHP</a> provides a lot of libraries and functionality but is generally regarded as somewhat slow (though it's more than likely fast enough for most needs).</p>
<p><a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a> is quite lean and is regarded as one of the fastest PHP MVC frameworks. I've moved to this one simply because CakePHP had much more than I needed for my basic sites.</p>
<p>Before choosing which you'll use check out the features and try to pick the one which meets all your demands without providing too much you won't use.</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761487#7614871Answer by Snehal for What is the most designer friendly web framework?Snehal 2009-04-17T17:49:12Z2009-04-17T17:49:12Z<p>Ruby on Rails!</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761539#7615390Answer by Brian Laframboise for What is the most designer friendly web framework?Brian Laframboise2009-04-17T18:05:25Z2009-04-17T18:05:25Z<p>In case you haven't seen this: <a href="http://stackoverflow.com/questions/508225/what-java-web-framework-best-accomodates-web-ui-designers">What Java web framework best accomodates web ui designers?</a></p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761574#7615743Answer by R. Bemrose for What is the most designer friendly web framework?R. Bemrose2009-04-17T18:12:37Z2009-04-17T18:12:37Z<p>On the Python side, I've heard good things about <a href="http://www.djangoproject.com/" rel="nofollow">Django</a>. I plan on experimenting with it when I get a chance. It appears to enforce strict boundaries between each of the layers, although I suppose you could mix business logic in the views if you <em>really</em> tried.</p>
<p>I've also heard good things for <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a> in the .NET arena. However, I haven't experimented with it at all, so whether it keeps things well separated, I couldn't say.</p>
<p>In PHP, I've looked at a few, but some seem to be... overdone to put it mildly. While <a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a> (for example) sounded interesting, it also seems to get very complex very quickly.</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761577#7615771Answer by Daniel for What is the most designer friendly web framework?Daniel2009-04-17T18:13:15Z2009-04-17T18:13:15Z<p>For my PHP backend I use CodeIgniter as suggested above and for my JavaScript I use <a href="http://developer.yahoo.com/yui" rel="nofollow">Yahoo UI</a>. It sounds like you are trying to, on one hand make the code easier to maintain and, on the other, remove cross-browser issues in coding. Your backend language will not solve the second one. I suggest that you look at YUI's css reset file or something similar for the front-end.</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761596#7615960Answer by Thinker for What is the most designer friendly web framework?Thinker2009-04-17T18:17:51Z2009-04-17T18:17:51Z<p><a href="http://www.smarty.net/" rel="nofollow">Smarty</a> ? IMHO best template framework for separation of code. And you can still work with other frameworks.</p>
<p>And a thing about CodeIgniter: I asked some time ago people about it, and most says, that Kohana (based on CI) is better: <a href="http://stackoverflow.com/questions/717836/kohana-or-codeigniter">http://stackoverflow.com/questions/717836/kohana-or-codeigniter</a></p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#7617362Answer by Israr Khan for What is the most designer friendly web framework?Israr Khan2009-04-17T18:55:15Z2009-04-17T18:55:15Z<p>To be honest - I still prefer ASP.net, and with asp.net AJAX extensions it is (from my point of view) still the easiest, most versatile and best framework for creating web-applications. </p>
<p>I've tried java, jsf, gtk, spring, asp.net mvc and many other - but still. The ability to create good web pages/and application with pure asp.net still beats the others. Why? Asp.net is so well-tested... Things just work... Unlike many others where you keep hitting your head against the wall due to some stupid bug, or feature no possible to implement. </p>
<p>When it comes to dividing the UI, business logic and data logic - I still would say unless you need a 100% divided UI as view(MVC-pattern), asp.net is still the right choice. The dividing of code-behind and UI is good enough for most uses. People tend to yell out that MVC is much better when it comes to testing... Maybe yes... But untill now I've managed to do unit-testing without complications just as well with MVC and without MVC. It's more like instead of trying to blame it on the framework/pattern, try asking "Are we testing the right stuff - the <em>RIGHT</em> way...?" Set-up a good 3-layer webapplication, and you'll be creating good, easy to code web pages. </p>
<p>A note here: I usually receive PSD-files from my clients, which I ship to India for slicing and receive static HTML-pages. After a short modification, I'm up and running with my coded solution on the new design... Easy as that! </p>
<p>Now... On the other hand, it might just be because I know ASP.net the most ;)</p>
http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/793153#7931530Answer by Stephan Eggermont for What is the most designer friendly web framework?Stephan Eggermont2009-04-27T11:46:22Z2009-04-27T11:46:22Z<p>Seaside. In all major Smalltalks (squeak, pharo, gemstone, visual works, VA, Dolphin, gst).
It helps you avoid templates, which are a major code smell when trying to separate layout from business code. </p>
<p>It uses a generated code (+separate css) style of working. That means that you can refactor and structure the code well. From a Seaside example:</p>
<pre><code>renderContentOn: canvas
canvas form
class: 'eventEditor';
with:[
self renderWhoOn: canvas;
renderWhatOn: canvas;
renderWhenOn: canvas;
renderWhereOn: canvas;
renderIsGameOn: canvas;
renderGameTypeOn: canvas;
renderButtonsOn: canvas]
</code></pre>
<p>where the canvas class is a html builder. Smalltalk has cascades (;) so first self
sends renderWhoOn:, and then self sends renderWhatOn:. The renderWhoOn: method looks like this</p>
<pre><code>renderWhoOn: canvas
self decorateDivAndLabel: 'Who' on: canvas around: [
canvas select
id: tagId;
selected: model who;
list: model whoList;
callback: [:value | model who: value]]
</code></pre>
<p>Smalltalk has anonymous methods (blocks). The decorateDivAndLabel:on:around: method
first renders itself, and then the value of its block:</p>
<pre><code>decorateDivAndLabel: aString on: canvas around: aBlock
canvas div: [
canvas label
for: (tagId := canvas nextId);
with: aString,':'.
aBlock value]
</code></pre>
<p>(strings are combined with a comma operator instead of +).</p>