User Andrew Taylor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T10:10:48Z http://stackoverflow.com/feeds/user/1776 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18389/managing-a-project-vs-managing-a-development 2 Managing a project vs Managing a Development Andrew Taylor 2008-08-20T17:22:36Z 2009-03-03T06:14:17Z <p>Our organisation uses PRINCE2 for every project we run; IT is large part of our organisation but we're not a software house. Whilst I appreciate PRINCE2 is a great method of running projects, and, we've had a lot of success with it, I feel it's fairly high level for the nitty-gritty of building software.</p> <p>Is it unheard of to run an AGILE method such as SCRUM for the day to day building and deployment of code underneath, or, within the framework of PRINCE2?</p> <p>Obviously we have a number of qualified, experienced PRINCE2 practitioners in the business so I'd never suggest replacing PRINCE2 with SCRUM, but I can still see the benefits of SCRUM.</p> <p>Anyone any thoughts, in practice do the two contradict or complicate one another, does anyone have any personal success stories. What about other methodologies? Can we let PRINCE2 take care of the high-level stuff and then run another method for the nuts and bolts of developing?</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/516521/why-doesnt-webbbs-work-now-that-ive-migrated-to-a-new-server/516566#516566 1 Answer by Andrew Taylor for Why doesn't WebBBS work now that I've migrated to a new server? Andrew Taylor 2009-02-05T16:07:11Z 2009-02-05T16:07:11Z <p>This is caused by Apache config errors. Set LogLevel debug and tail -f the error log. It will probably be something to do with .htaccess permission for override, or, it's requiring a module which isn't loaded. The error log will tell you instantly.</p> http://stackoverflow.com/questions/249984/php-framework-decision-analysis-paralysis/253288#253288 1 Answer by Andrew Taylor for PHP Framework Decision - Analysis paralysis! Andrew Taylor 2008-10-31T12:09:50Z 2008-10-31T12:09:50Z <p>Would you comment on why you have chosen not to use Zend Framework? I appreciate everyone has different requirements, I just wonder why ZF was ruled out?</p> <p>Andrew</p> http://stackoverflow.com/questions/186606/zend-framework-fetchall/229727#229727 0 Answer by Andrew Taylor for Zend Framework fetchAll Andrew Taylor 2008-10-23T13:33:32Z 2008-10-23T13:33:32Z <p>Yes. Just define a new fetchAll() method in your model with the same construction as the Zend_db_table_abstract method (ie same input / output) then at the end of your method call the parent method:</p> <p>parent::fetchAll($params)</p> <p>Andrew</p> http://stackoverflow.com/questions/220638/setting-up-a-php-web-project-the-infrastructure/221958#221958 1 Answer by Andrew Taylor for Setting up a PHP web project, the infrastructure. Andrew Taylor 2008-10-21T13:54:09Z 2008-10-21T13:54:09Z <p>I noticed this wasn't getting much exposure. It's also something I'm interested in. Are you aware of <a href="http://phing.info/trac/" rel="nofollow">Phing</a>? Have you tried it?</p> <p>Andrew</p> http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/218634#218634 3 Answer by Andrew Taylor for Suggestions please for a home version control system Andrew Taylor 2008-10-20T14:27:05Z 2008-10-20T14:27:05Z <p>I can't believe nobody has mentioned <a href="http://git.or.cz/" rel="nofollow">GIT</a>. </p> <p>It's ideal for what you are looking for. Each working directory becomes a repository. It's a simple case of changing to your project dir. Init'ing and Committing then start working. Has some neat features for branching and merging. </p> http://stackoverflow.com/questions/186142/mvc-data-design-problem-with-zend-framework/187299#187299 1 Answer by Andrew Taylor for MVC data design problem with Zend framework. Andrew Taylor 2008-10-09T13:43:37Z 2008-10-09T13:43:37Z <p>Hi,</p> <p>There's a couple of different ways you can achieve this, however, which one you choose really depends on your circumstances.</p> <p>1) Break the connection between your objects and your database</p> <p>Write your objects to have no connection with your database tables. First normalise your database tables, then, look at how the user of your application will interact with your data. Model the data to objects, but don't tie each object to the table (ie with a Zend_DB_Table_Abstract class)</p> <p>Once you have established your objects, then write mapper classes which map your objects back to the relevant tables in your database. These are the classes which extend Zend_DB_Table (if appropriate).</p> <p>You can handle joins in two ways, either map the joins through the Zend_DB_Table relationship functionallity, or, (IMHO a better choice) just use Zend_DB_Select to make the relevant methods within your your mapper class.</p> <p>So you've then got two classes (probably per table, but not always)</p> <p>Person PersonMapper</p> <p>In your code, when you want to work with some objects, either create a new object</p> <pre><code>$person = new Person(); $person-&gt;setName('andrew taylor'); </code></pre> <p>Then write pass it to the mapper to save it:</p> <pre><code>$personMapper = new PersonMapper(); $pesonnMapper-&gt;save($person); </code></pre> <p>Or, do it the other way:</p> <pre><code>$personMapper = new PersonMapper(); $person = personMapper-&gt;load(29); $person-&gt;setName('joe bloggs'); $personMapper-&gt;save($person); </code></pre> <p>The next step on from here would be a collection class based on the <a href="http://www.php.net/spl" rel="nofollow">SPL</a>:</p> <pre><code>$personList = $personMapper-&gt;loadAllMen(); foreach($personList AS $person) { echo $person-&gt;getName(); } </code></pre> <p>Where $personMapper->loadAllMen() is a method like:</p> <pre><code>$select = $this-&gt;select(); $select=&gt;where('gender = "Male"'); $zendDbRows = this-&gt;fetchAll($select); return new PersonList($zendDbRows); </code></pre> <p>2) MySQL Views </p> <p>If you have a lot of joined tables where there is one row per join, so, you're joining customer information based on an id in your orders table, and you're doing it read-only (so you don't want to update any information through the Zend_DB_Table adaptor) you create your normalised tables, then, a single view across the top. The view handles the joins behind the scenes so through Zend it feels like you're connecting to a single table.</p> <p>There are some caveats with this, MySQL views do have some performance problems (which is why it's best on single row FK joins), and, they're strictly read only.</p> http://stackoverflow.com/questions/187195/is-there-a-difference-between-installing-modpython-via-httpd-conf-and-conf-d-in/187202#187202 4 Answer by Andrew Taylor for Is there a difference between installing mod_python via httpd.conf and conf.d in apache? Andrew Taylor 2008-10-09T13:17:26Z 2008-10-09T13:17:26Z <p>No, all the files are parsed at run time, you can include as many as you want. They've just opted to seperate out the configuration for easier management.</p> http://stackoverflow.com/questions/177818/cheap-free-look-and-feel-frameworks-for-web-applications 8 Cheap / free "Look and Feel" frameworks for web applications Andrew Taylor 2008-10-07T09:59:07Z 2008-10-07T11:58:30Z <p>Hi,</p> <p>Usually I'm fortunate enough to work with really good designers. They take care of the look and feel for all of the web applications / sites I build.</p> <p>In the past when I've done cheap or free work for people for projects I'm interested in, I've used a template from templatemonster or similar. </p> <p>I want to get involved with quite a large internal application to support a friends business, the usual brochure-ware templates that are available won't be suitable because this application is all about data access.</p> <p>Obviously usability is paramount and I don't have the skills to produce a nice usable interface, neither do we have the money to pay for custom work. Are there any projects which look to provide usable web templates more designed for large forms, pages of data grids, charts etc. I don't need something that is graphically cutting edge, I just need consistent, usable, easy to apply templates.</p> <p>I've looked at Ext.js which has themed components, but, even with a bunch of pretty house bricks, I can't design a good looking house :)</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/177576/whats-the-single-most-important-piece-of-documentation/177907#177907 0 Answer by Andrew Taylor for What's the single most important piece of documentation? Andrew Taylor 2008-10-07T10:42:43Z 2008-10-07T10:42:43Z <p>Step-by-Step disaster recovery procedure.</p> http://stackoverflow.com/questions/161697/best-linux-distro-for-web-development/161718#161718 1 Answer by Andrew Taylor for Best Linux Distro for Web Development? Andrew Taylor 2008-10-02T10:43:53Z 2008-10-02T10:43:53Z <p>I can't think of many distributions that won't do what you need. I'd suggest something that has a good package manager, and, works well on your hardware. There will be plenty of choice for your requirements with all the major distributions.</p> <p>What are you currently using ?</p> <p>Andrew</p> http://stackoverflow.com/questions/161443/url-segment-to-action-method-parameter-in-zend-framework/161636#161636 4 Answer by Andrew Taylor for URL segment to action method parameter in Zend Framework Andrew Taylor 2008-10-02T10:13:47Z 2008-10-02T10:39:07Z <p>Hi,</p> <p>Take a look at the Zend_Controller_Router classes:</p> <p><a href="http://framework.zend.com/manual/en/zend.controller.router.html" rel="nofollow">http://framework.zend.com/manual/en/zend.controller.router.html</a></p> <p>These will allow you to define a Zend_Controller_Router_Route which maps to your URL in the way that you need.</p> <p>An example of having 4 static params for the Index action of the Index controller is:</p> <pre><code>$router = new Zend_Controller_Router_Rewrite(); $router-&gt;addRoute( 'index', new Zend_Controller_Router_Route('index/index/:param1/:param2/:param3/:param4', array('controller' =&gt; 'index', 'action' =&gt; 'index')) ); $frontController-&gt;setRouter($router); </code></pre> <p>This is added to your bootstrap after you've defined your front controller.</p> <p>Once in your action, you can then use:</p> <pre><code>$this-&gt;_request-&gt;getParam('param1'); </code></pre> <p>Inside your action method to access the values.</p> <p>Andrew</p> http://stackoverflow.com/questions/132233/what-to-use-for-xml-parsing-reading-in-php4/132244#132244 0 Answer by Andrew Taylor for What to use for XML parsing / reading in PHP4 Andrew Taylor 2008-09-25T09:02:45Z 2008-09-25T09:02:45Z <p>Hi,</p> <p>It might be a bit grass roots, but if it's applicable for the data you're working with, you could use XSLT to transform your XML in to something usable. Obviously once you upgrade to PHP5 the XSLT will still work and you can migrate as and when to DOM parsing.</p> <p>Andrew</p> http://stackoverflow.com/questions/108072/bare-metal-virtualisation-for-the-desktop 3 Bare-metal virtualisation for the desktop Andrew Taylor 2008-09-20T12:56:35Z 2008-09-24T10:50:49Z <p>Hi,</p> <p>Does anyone have any knowledge about bare-metal virtualisation products?</p> <p>I'm interested in building a new desktop machine for home, I've been looking at the Intel Quad Core processors and I'd like to put 8GB of RAM in there, but, it got me thinking about making the most out of the available resources.</p> <p>I thought if I could get a good 64bit machine, put some bare-metal virtualisation on, then have a primary system, I'd also be able to bring up some extra virtualised systems as and when I needed. I know most of the bare metal systems are designed for the server market, but, is there anything out there that works well for a desktop.</p> <p>What are the caveats? I presume I won't be able to make the most out of any video cards I could buy, what about just getting a decent screen resolution, will this be a problem? I run a single 24" screen.</p> <p>What about DVD/CD writing, is this possible? I'd like to re-rip my CD collection, I was hoping the quad 64Bit goodness would help me out with the encoding.</p> <p>I currently use a Mac and couldn't go back to windows so that leaves Linux, I was thinking a primary OS of ubuntu. Does this make a difference?</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/14911/pdf-generation-from-xhtml-in-a-lamp-environment 4 PDF generation from XHTML in a LAMP environment Andrew Taylor 2008-08-18T16:58:50Z 2008-09-22T11:30:45Z <p>Hi,</p> <p>Can anyone recommend a good server-side PDF generation tool that would work in a Linux environment. I want easy as possible, pass it a XHTML file (with images) and have it generate a PDF from the <strong>rendered</strong> source.</p> <p>I don't have a massive budget, but anything under $1000 should be alright.</p> <p>Andrew</p> http://stackoverflow.com/questions/61401/hidden-features-of-php/114028#114028 9 Answer by Andrew Taylor for Hidden Features of PHP? Andrew Taylor 2008-09-22T09:47:02Z 2008-09-22T09:47:02Z <p>I'm a bit like you, I've coded PHP for over 8 years. I had to take a .NET/C# course about a year ago and I really enjoyed the C# language (hated ASP.NET) but it made me a better PHP developer.</p> <p>PHP as a language is pretty poor, but, I'm extremely quick with it and the LAMP stack is awesome. The end product far outweighs the sum of the parts.</p> <p>That said, in answer to your question:</p> <p><a href="http://uk.php.net/SPL" rel="nofollow">http://uk.php.net/SPL</a></p> <p>I love the SPL, the collection class in C# was something that I liked as soon as I started with it. Now I can have my cake and eat it.</p> <p>Andrew</p> http://stackoverflow.com/questions/45950/xml-editor-for-os-x 3 XML Editor for OS X Andrew Taylor 2008-09-05T14:41:23Z 2008-09-19T01:39:34Z <p>Hi</p> <p><a href="http://beta.stackoverflow.com/questions/12073/what-is-the-best-xml-editor" rel="nofollow">http://beta.stackoverflow.com/questions/12073/what-is-the-best-xml-editor</a> was a great question regarding XML editors on Windows. What about on OS X?</p> <p>Oxygen is feature complete, but, it's a Java app and a bit clunky on OSX. It's also extremely expensive.</p> <p>Anything Mac native and comparable in features for less than $300 ?</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/90924/what-is-the-best-php-programming-book/91578#91578 0 Answer by Andrew Taylor for What is the best PHP programming book? Andrew Taylor 2008-09-18T10:51:02Z 2008-09-18T10:51:02Z <p>Of course it depends on your requirements. If you've gotten to grips with the syntax, and you're looking to develop larger applications, or, you're looking to really harness the OO approach of PHP5, I'd reccomend the Matt Zandstra book: </p> <p><a href="http://rads.stackoverflow.com/amzn/click/1590593804" rel="nofollow">http://www.amazon.com/gp/product/1590593804/ref=cm_cr_pr_product_top</a></p> <p>It really cements the fundamental aspects of application development, and, goes great with the new Zend Framework (which I'd also recommend).</p> <p>Andrew</p> http://stackoverflow.com/questions/91368/checking-if-a-directory-contains-files/91394#91394 0 Answer by Andrew Taylor for Checking if a directory contains files Andrew Taylor 2008-09-18T10:10:35Z 2008-09-18T10:10:35Z <pre><code>DIR="/some/dir" if["$(ls -A $DIR)"]; then echo 'Theres something alive in here'; fi </code></pre> http://stackoverflow.com/questions/82872/php-rss-builder/82904#82904 0 Answer by Andrew Taylor for PHP - RSS builder Andrew Taylor 2008-09-17T13:03:23Z 2008-09-17T13:03:23Z <p>PHP5 now comes with the SimpleXML extension, it's a pretty quick way to build valid XML if your needs aren't complicated.</p> <p>However, the problem you're suggesting doesn't seem to an issue of implementation more a problem of syntax. Perhaps you could update your question with a code example, or, a copy of the XML that is produced.</p> <p>Andrew</p> http://stackoverflow.com/questions/82806/what-are-the-best-methods-to-ensure-our-sharepoint-implementation-is-accessible/82827#82827 1 Answer by Andrew Taylor for What are the best methods to ensure our SharePoint implementation is accessible? Andrew Taylor 2008-09-17T12:54:45Z 2008-09-17T12:54:45Z <p>How are you deploying the implementation? Is it as an Intranet, or, is it as a public facing website.</p> <p>I think one of the first rules is to be extremely selective with the use of out of the box web parts. Many of the web-parts I looked at weren't compliant even on a basic level.</p> <p>Andrew</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72415#72415 10 Answer by Andrew Taylor for What should a developer know before building a public web site? Andrew Taylor 2008-09-16T13:50:11Z 2008-09-16T13:50:11Z <p>How to work with absolute and relative paths.</p> http://stackoverflow.com/questions/60369/alternative-to-php-quickform/62035#62035 0 Answer by Andrew Taylor for Alternative to PHP QuickForm? Andrew Taylor 2008-09-15T09:40:51Z 2008-09-15T09:40:51Z <p>I'll second Zend_Form; it has an excellent ini style implementation that allows you to define a form extremely quickly:</p> <pre><code>[main] vessel.form.method = "post" vessel.form.elements.name.type = "text" vessel.form.elements.name.name = "name" vessel.form.elements.name.options.label = "Name: " vessel.form.elements.name.options.required = true vessel.form.elements.identifier_type.type = "select" vessel.form.elements.identifier_type.name = "identifier_type" vessel.form.elements.identifier_type.options.label = "Identifier type: " vessel.form.elements.identifier_type.options.required = true vessel.form.elements.identifier_type.options.multioptions.IMO Number = "IMO Number"; vessel.form.elements.identifier_type.options.multioptions.Registry organisation and Number = "Registry organisation and Number"; vessel.form.elements.identifier_type.options.multioptions.SSR Number = "SSR Number"; vessel.form.elements.identifier.type = "text" vessel.form.elements.identifier.name = "identifier" vessel.form.elements.identifier.options.label = "Identifier: " vessel.form.elements.identifier.options.required = true vessel.form.elements.identifier.options.filters.lower.filter = "StringToUpper" vessel.form.elements.email.type = "text" vessel.form.elements.email.name = "email" vessel.form.elements.email.options.label = "Email: " vessel.form.elements.email.options.required = true vessel.form.elements.owner_id.type = "hidden" vessel.form.elements.owner_id.name = "owner_id" vessel.form.elements.owner_id.options.required = true ; submit button vessel.form.elements.submit.type = "submit" vessel.form.elements.submit.name = "Update" vessel.form.elements.submit.option.value = "Update" </code></pre> http://stackoverflow.com/questions/57773/zend-php-framework/59823#59823 1 Answer by Andrew Taylor for Zend PHP framework Andrew Taylor 2008-09-12T19:56:39Z 2008-09-12T19:56:39Z <p>I'm new to the MVC approach, but, an old hand at PHP. I have to say, whilst I've not compared it to the other frameworks, I'm most happy with the consistency and simplicity the framework brings to my applications.</p> <p>Yes, it can be a bind to get it setup right, but, I've now created a skeleton project, and some build scripts that I use with my databases. It's a simple case of creating my database, checking out from source control, setting my config file then running my build script to create models. I'm then able to create new project, check back in to source control and start from there.</p> <p>Once I've got that base project in place the MVC approach is extremely clean for creating large applications.</p> <p>Add on top of this the other components of the library, Zend_Mail, Zend_Date, Zend_Form (which has saved me so much boring stuff), Zend_Registry, Zend_PDF, the list really does go on and on.</p> <p>All frameworks are going to take time to learn, but for my time and money, ZF is the best option going forward. It's also extremely good for PHP in general, trying to bring some consistency and quality to code is good for developers.</p> <p>The inclusion of DOJO and the JSON view modes means I can quickly put out some really good client side applications that are easy to debug (using the new FirePHP / WildFire component) using Firebug.</p> <p>I just really appreciate the approach.</p> http://stackoverflow.com/questions/49355/problem-with-oracle-application-server-ssl-certificates/51404#51404 0 Answer by Andrew Taylor for Problem with Oracle Application Server SSL Certificates Andrew Taylor 2008-09-09T08:41:08Z 2008-09-09T08:41:08Z <p>Hmm, this seems exactly the right solution, however, I'm using the Wallet Manager and the certificates aren't specified as you suggest. You simply point to the wallet manager. I have however imported the root certificates to the wallet with no effect.</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/49355/problem-with-oracle-application-server-ssl-certificates 0 Problem with Oracle Application Server SSL Certificates Andrew Taylor 2008-09-08T09:19:42Z 2008-09-09T08:41:08Z <p>Hi,</p> <p>We've got an Apache instance deployed through Oracle Application Server. It's currently installed with the default wallet, and, the self-signed certificate. We've got a GEOTRUST certificiate, imported the Trusted Roots and imported the new Cert to the Wallet Manager. We've then updated the SSL properties of the VHOST and the HTTP_SERVER through Enterprise Manager.</p> <p>Things have restarted fine, however, we now can't connect to the Apache service, we're getting the error:</p> <p>"call to NZ function nzos_Handshake failed"</p> <p>This seems to point to a problem with the root Certs, but, in my opinion these are registered with the Wallet correctly.</p> <p>Anyone seen this before and have some pointers?</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/45950/xml-editor-for-os-x/49369#49369 0 Answer by Andrew Taylor for XML Editor for OS X Andrew Taylor 2008-09-08T09:31:28Z 2008-09-08T09:31:28Z <p>These of all been really helpful answers, and obviously the accepted answer is matter of personal preference!</p> <p>Shame you can't mark a few as accepted.</p> <p>Thanks All</p> <p>Andrew</p> http://stackoverflow.com/questions/43374/is-there-a-better-way-of-writing-a-git-pre-commit-hook-to-check-any-php-file-in-a/43630#43630 -1 Answer by Andrew Taylor for Is there a better way of writing a git pre-commit hook to check any php file in a commit for parse errors ? Andrew Taylor 2008-09-04T12:32:54Z 2008-09-04T12:32:54Z <p>Does this work? Is it a case of your code isn't doing what you need, or, does it have some limitations?</p> <p>Andrew</p> http://stackoverflow.com/questions/37887/how-do-you-update-your-web-application-on-the-server/38032#38032 0 Answer by Andrew Taylor for How do you update your web application on the server? Andrew Taylor 2008-09-01T15:06:19Z 2008-09-01T15:06:19Z <p>@Kyle - Could you expand on how you were using GIT? I've started using GIT but uploading to the dev server manually (well with scripts) - I wanted to try and extend my GIT use.</p> <p>Thanks Andrew</p> http://stackoverflow.com/questions/18389/managing-a-project-vs-managing-a-development/18482#18482 1 Answer by Andrew Taylor for Managing a project vs Managing a Development Andrew Taylor 2008-08-20T18:15:09Z 2008-08-20T18:15:09Z <p>@Codeslave - common sense prevails again I suppose :) Thanks for the feedback</p> http://stackoverflow.com/questions/224065/is-there-a-entity-attribute-value-eav-framework-out-there-for-php-mysql Comment by Andrew Taylor on Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL? Andrew Taylor 2008-10-22T08:36:52Z 2008-10-22T08:36:52Z The fact that this question is the highest google page for the term &quot;Entity Attribute Value framework&quot; and the page is only 8 hours old would suggest you're out of luck. That said, if you were to use something like the Zend Framwork, you could easily extend the Zend_DB_Table abstract class. http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted/218500#218500 Comment by Andrew Taylor on How can I detect and survive being "Slashdotted"? Andrew Taylor 2008-10-22T08:22:13Z 2008-10-22T08:22:13Z How come this keeps getting up-voted? It's obviously a very salient piece of information, but, the OP states he's looking for ways to detect a slashdotting, not, mitgate it's effects. @gsmd hit the nail on the head with Monit - it detects spikes in Apache load. http://stackoverflow.com/questions/184996/custom-filters-validators-in-zend-framework/185222#185222 Comment by Andrew Taylor on Custom Filters/Validators in Zend Framework Andrew Taylor 2008-10-09T14:16:14Z 2008-10-09T14:16:14Z So this is what SO defines as being 'the definitive answer on a given question' :) http://stackoverflow.com/questions/177818/cheap-free-look-and-feel-frameworks-for-web-applications Comment by Andrew Taylor on Cheap / free "Look and Feel" frameworks for web applications Andrew Taylor 2008-10-08T10:08:55Z 2008-10-08T10:08:55Z I'm running PHP but it's almost incidental. I don't need an installable app, I just need a collection of example / template HTML that I can use. http://stackoverflow.com/questions/177818/cheap-free-look-and-feel-frameworks-for-web-applications/178124#178124 Comment by Andrew Taylor on Cheap / free "Look and Feel" frameworks for web applications Andrew Taylor 2008-10-07T13:44:44Z 2008-10-07T13:44:44Z That's a good question - I always saw these types of developments as being about delivering portal style applications. News, Shops, Image Gallery, Forums, etc. Can they really support custom data-tables with CRUD, business/domain logic? Andrew http://stackoverflow.com/questions/177818/cheap-free-look-and-feel-frameworks-for-web-applications/177828#177828 Comment by Andrew Taylor on Cheap / free "Look and Feel" frameworks for web applications Andrew Taylor 2008-10-07T11:02:01Z 2008-10-07T11:02:01Z Thanks for the quick response, but, I fear YUI is a library of components, I really need something that pulls all those components together with an over-arching design.