User zachleat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T11:12:27Zhttp://stackoverflow.com/feeds/user/16711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/274290/any-big-sites-using-client-side-xslt10Any big sites using Client Side XSLT?zachleat2008-11-08T03:13:29Z2009-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#4889350Answer by zachleat for JQuery and frames - $(document).ready doesn't workzachleat2009-01-28T19:13:51Z2009-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#4229285Answer by zachleat for To YUI or not to YUI?zachleat2009-01-08T01:42:14Z2009-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-explorer1Inconsistent Whitespace Text Nodes in Internet Explorerzachleat2008-11-11T16:43:02Z2008-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 <form> 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><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
function countNodes()
{
alert(document.getElementsByTagName('body')[0].childNodes.length);
}
</script>
</head>
<body onload="countNodes()">
<form></form>
<input type="submit"/>
<input type="reset"/>
<input type="button"/>
<input type="text"/>
<input type="password"/>
<input type="file"/>
<input type="hidden"/>
<input type="checkbox"/>
<input type="radio"/>
<button></button>
<select></select>
<textarea></textarea>
<div></div>
<span></span>
<table></table>
<ul></ul>
<a></a>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/470832/getting-an-absolute-url-from-a-relative-one-ie6-issue/472729#472729Comment by zachleat on Getting an absolute URL from a relative one. (IE6 issue)zachleat2009-10-19T20:09:46Z2009-10-19T20:09:46ZThis method works great for me! Thanks for posting it!http://stackoverflow.com/questions/61401/hidden-features-of-php/114001#114001Comment by zachleat on Hidden Features of PHP?zachleat2009-06-22T13:38:50Z2009-06-22T13:38:50ZZend Framework uses extract() a lot in their view helpers.http://stackoverflow.com/questions/281443/inconsistent-whitespace-text-nodes-in-internet-explorer/281592#281592Comment by zachleat on Inconsistent Whitespace Text Nodes in Internet Explorerzachleat2008-11-11T17:58:51Z2008-11-11T17:58:51ZSure, 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&displaylang=en" rel="nofollow">microsoft.com/downloads/…</a>http://stackoverflow.com/questions/281443/inconsistent-whitespace-text-nodes-in-internet-explorer/281493#281493Comment by zachleat on Inconsistent Whitespace Text Nodes in Internet Explorerzachleat2008-11-11T17:26:08Z2008-11-11T17:26:08ZWell, I didn't mean "Why" in the "Why did they design it that way?" sense, I meant it in the "What is the correlation between these nodes to make them act this way?" sense.http://stackoverflow.com/questions/274290/any-big-sites-using-client-side-xslt/274322#274322Comment by zachleat on Any big sites using Client Side XSLT?zachleat2008-11-09T15:47:27Z2008-11-09T15:47:27ZTry going to the page in Safari, then view the source. It doesn't use the top level <page> node, instead has <html>. The stylesheet prolog is still there, is Safari showing the output of the transformation?