User zachleat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T11:12:27Z http://stackoverflow.com/feeds/user/16711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274290/any-big-sites-using-client-side-xslt 10 Any big sites using Client Side XSLT? zachleat 2008-11-08T03:13:29Z 2009-05-08T23:49:29Z <p>Lately, I've been pondering the somewhat non-mainstream architecture of building raw XML on the server side, and then using an XSLT stylesheet on the client to transform the XML into the full UI. Of course, a fallback mechanism would have to exist if the client was not capable of client side XSLT, in which case we'd just transform it for them on the server side.</p> <p>I'm already intimately familiar with XSLT, and this approach seems to be a clean separation of presentation and content, completely forcing the data into XML, and using XSLT for presentation.</p> <p>I'm also aware that this does add an extra layer of complexity to the application, which is just another moving part that can fail.</p> <p>My question is: are there any big name or big traffic sites using this approach, and if so: what limitations/lessons learned did you take away from it?</p> <p>Thanks Internet, Zach</p> http://stackoverflow.com/questions/221192/jquery-and-frames-document-ready-doesnt-work/488935#488935 0 Answer by zachleat for JQuery and frames - $(document).ready doesn't work zachleat 2009-01-28T19:13:51Z 2009-01-28T19:13:51Z <p>I assume this is a similar problem I was having with DOMContentLoaded in an iframe.</p> <p>I wrote <a href="http://www.zachleat.com/web/2008/12/04/domcontentloaded-inconsistencies/" rel="nofollow">a blog post about it</a>.</p> http://stackoverflow.com/questions/291534/to-yui-or-not-to-yui/422928#422928 5 Answer by zachleat for To YUI or not to YUI? zachleat 2009-01-08T01:42:14Z 2009-01-08T01:42:14Z <p>Everyone else here has already mentioned that YUI is <strong>open source</strong> (and thus, can be extended, forked, etc)</p> <p>But the important thing to note is that <strong>Yahoo USES YUI</strong> on their own web properties. It is a valuable project to them, not just as an internal component library, but as a standardized way to write JavaScript code. Once you wrap your head around that, you'll realize that if Yahoo is still on the internet, it'll probably <strong>still be putting resources into YUI</strong>.</p> <p>Also, albeit a huge fan of jQuery, a levelheaded developer <strong>cannot seriously recommend a particular framework over another</strong> without having a project context and design considerations.</p> <p>You can't just assume that your square peg is going to fit in everyone's round hole, no matter how hard you try to jam it in.</p> http://stackoverflow.com/questions/281443/inconsistent-whitespace-text-nodes-in-internet-explorer 1 Inconsistent Whitespace Text Nodes in Internet Explorer zachleat 2008-11-11T16:43:02Z 2008-11-22T23:51:38Z <p>The following source code alerts the following results:</p> <p><strong>Internet Explorer 7</strong>: 29<br /> <strong>Firefox 3.0.3</strong>: 37 (correct)<br /> <strong>Safari 3.0.4 (523.12.9)</strong>: 38<br /> <strong>Google Chrome 0.3.154.9</strong>: 38 </p> <p>Please ignore the following facts: </p> <ul> <li>Webkit (Safari/Chrome) browsers insert an extra text node at the end of the body tag</li> <li>Internet Explorer doesn't have new lines in their whitespace nodes, like they should.</li> <li>Internet Explorer has no beginning whitespace node (there is obvious whitespace before the &lt;form&gt; tag, but no text node to match) </ul> <p>Of the tags in the test page, the following tags have no whitespace text nodes inserted in the DOM after them: <code>form</code>, <code>input[@radio]</code>, <code>div</code>, <code>span</code>, <code>table</code>, <code>ul</code>, <code>a</code>.</p> <p>My question is: <strong>What is it about these nodes that makes them the exception in Internet Explorer?</strong> Why is whitespace not inserted after these nodes, and is inserted in the others? </p> <p>This behavior is the same if you switch the tag order, switch the doctype to XHTML (while still maintaining standards mode).</p> <p>Here's a <a href="http://www.howtocreate.co.uk/wrongWithIE/?chapter=Empty+Space" rel="nofollow">link that gives a little background information</a>, but no ideal solution. There might not be a solution to this problem, I'm just curious about the behavior.</p> <p>Thanks Internet, Zach</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;script type="text/javascript"&gt; function countNodes() { alert(document.getElementsByTagName('body')[0].childNodes.length); } &lt;/script&gt; &lt;/head&gt; &lt;body onload="countNodes()"&gt; &lt;form&gt;&lt;/form&gt; &lt;input type="submit"/&gt; &lt;input type="reset"/&gt; &lt;input type="button"/&gt; &lt;input type="text"/&gt; &lt;input type="password"/&gt; &lt;input type="file"/&gt; &lt;input type="hidden"/&gt; &lt;input type="checkbox"/&gt; &lt;input type="radio"/&gt; &lt;button&gt;&lt;/button&gt; &lt;select&gt;&lt;/select&gt; &lt;textarea&gt;&lt;/textarea&gt; &lt;div&gt;&lt;/div&gt; &lt;span&gt;&lt;/span&gt; &lt;table&gt;&lt;/table&gt; &lt;ul&gt;&lt;/ul&gt; &lt;a&gt;&lt;/a&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/470832/getting-an-absolute-url-from-a-relative-one-ie6-issue/472729#472729 Comment by zachleat on Getting an absolute URL from a relative one. (IE6 issue) zachleat 2009-10-19T20:09:46Z 2009-10-19T20:09:46Z This method works great for me! Thanks for posting it! http://stackoverflow.com/questions/61401/hidden-features-of-php/114001#114001 Comment by zachleat on Hidden Features of PHP? zachleat 2009-06-22T13:38:50Z 2009-06-22T13:38:50Z Zend Framework uses extract() a lot in their view helpers. http://stackoverflow.com/questions/281443/inconsistent-whitespace-text-nodes-in-internet-explorer/281592#281592 Comment by zachleat on Inconsistent Whitespace Text Nodes in Internet Explorer zachleat 2008-11-11T17:58:51Z 2008-11-11T17:58:51Z Sure, that would change the childNodes of the table tag, I'm looking at the childNodes of the body. Try the IE Developer Toolbar to see the whitespace nodes in the DOM. <a href="http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en" rel="nofollow">microsoft.com/downloads/&hellip;</a> http://stackoverflow.com/questions/281443/inconsistent-whitespace-text-nodes-in-internet-explorer/281493#281493 Comment by zachleat on Inconsistent Whitespace Text Nodes in Internet Explorer zachleat 2008-11-11T17:26:08Z 2008-11-11T17:26:08Z Well, I didn't mean &quot;Why&quot; in the &quot;Why did they design it that way?&quot; sense, I meant it in the &quot;What is the correlation between these nodes to make them act this way?&quot; sense. http://stackoverflow.com/questions/274290/any-big-sites-using-client-side-xslt/274322#274322 Comment by zachleat on Any big sites using Client Side XSLT? zachleat 2008-11-09T15:47:27Z 2008-11-09T15:47:27Z Try going to the page in Safari, then view the source. It doesn't use the top level &lt;page&gt; node, instead has &lt;html&gt;. The stylesheet prolog is still there, is Safari showing the output of the transformation?