<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>agfitzp.org &#187; Web</title>
	<atom:link href="http://agfitzp.org/blog/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://agfitzp.org/blog</link>
	<description>Postcards From Cyberspace</description>
	<lastBuildDate>Fri, 04 Jun 2010 05:11:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML5</title>
		<link>http://agfitzp.org/blog/2010/06/03/html5/</link>
		<comments>http://agfitzp.org/blog/2010/06/03/html5/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 18:00:38 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://agfitzp.org/blog/?p=42</guid>
		<description><![CDATA[To Google or not to Google, that is the question.
Whether &#8217;tis nobler on the web to suffer the sling and arrows of outrageous layout
Or to take up HTML5 and by opposing end them.
]]></description>
			<content:encoded><![CDATA[<p>To Google or not to Google, that is the question.<br />
Whether &#8217;tis nobler on the web to suffer the sling and arrows of outrageous layout<br />
Or to take up HTML5 and by opposing end them.</p>
]]></content:encoded>
			<wfw:commentRss>http://agfitzp.org/blog/2010/06/03/html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does XSL Leak File Handles?</title>
		<link>http://agfitzp.org/blog/2009/04/08/does-xsl-leak-file-handles/</link>
		<comments>http://agfitzp.org/blog/2009/04/08/does-xsl-leak-file-handles/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 17:37:17 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://agfitzp.org/blog/?p=18</guid>
		<description><![CDATA[Does XSL Leak File Handles?
No, but it may appear to in some use cases. If you use redirect:write a lot for example:

   &#60;redirect:write file=&#34;{$outfile}&#34;&#62;
   ...
   &#60;/redirect:write&#62;

The solution here is to bracket the write with open and close so that the engine does not have to implicitly track the open [...]]]></description>
			<content:encoded><![CDATA[<p><H3>Does XSL Leak File Handles?</H3></p>
<p>No, but it may appear to in some use cases. If you use <code>redirect:write</code> a lot for example:</p>
<pre>
   &lt;redirect:write file=&quot;{$outfile}&quot;&gt;
   ...
   &lt;/redirect:write&gt;
</pre>
<p>The solution here is to bracket the write with open and close so that the engine does not have to implicitly track the open file stream:</p>
<pre>
   &lt;redirect:open file=&quot;{$outfile}&quot;/&gt;
   &lt;redirect:write file=&quot;{$outfile}&quot;&gt;
   ...
   &lt;/redirect:write&gt;
   &lt;redirect:close file=&quot;{$outfile}&quot;/&gt;
</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://agfitzp.org/blog/2009/04/08/does-xsl-leak-file-handles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
