<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.3" -->
<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/"
	>

<channel>
	<title>alexking.org &#187; PHP Doc System | alexking.org</title>
	<link>http://alexking.org</link>
	<description>Alex King's blog - software, photography, sports, etc.</description>
	<pubDate>Wed, 02 Jul 2008 19:51:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>en</language>
			<item>
		<title>PHP Doc System 1.5.2 (Security Patch)</title>
		<link>http://alexking.org/blog/2006/04/05/phpdocsystem-152</link>
		<comments>http://alexking.org/blog/2006/04/05/phpdocsystem-152#comments</comments>
		<pubDate>Wed, 05 Apr 2006 23:09:59 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2006/04/05/phpdocsystem-152/</guid>
		<description><![CDATA[I&#8217;ve released PHP Doc System version 1.5.2. This fixes the security vulnerability reported here. This vulnerability only affects people running PHP Doc System in &#8220;dynamic&#8221; mode on a public web site, not those (like me) who generate the static output and put that on their site.
It looks like this vulnerability was found back in Nov [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System 1.5.2 (Security Patch)", url: "http://alexking.org/blog/2006/04/05/phpdocsystem-152" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve released <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a> version 1.5.2. This fixes the security vulnerability reported <a href="http://www.securityfocus.com/bid/15611" rel="external">here</a>. This vulnerability only affects people running PHP Doc System in &#8220;dynamic&#8221; mode on a public web site, not those (like me) who generate the static output and put that on their site.</p>
<p>It looks like this vulnerability was found back in Nov 2005, but I was just made aware of it recently (thanks visiblesoul). It is unfortunate when someone takes the time to post a vulnerability on SecurityFocus but doesn&#8217;t notify the developer.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+1.5.2+%28Security+Patch%29&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2006%2F04%2F05%2Fphpdocsystem-152">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2006/04/05/phpdocsystem-152/feed</wfw:commentRss>
		</item>
		<item>
		<title>Search is Important</title>
		<link>http://alexking.org/blog/2005/03/20/search-is-important</link>
		<comments>http://alexking.org/blog/2005/03/20/search-is-important#comments</comments>
		<pubDate>Sun, 20 Mar 2005 21:52:56 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[Crowd Favorite]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[PHP Doc System]]></category>

		<category><![CDATA[Tasks Pro&trade;]]></category>

		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2005/03/20/search-is-important/</guid>
		<description><![CDATA[Note: this is one of a series of posts about the creation of the King Design web site.
One of the great benefits of using WordPress (or any CMS) to manage your web site is built in search capability. No matter how well you think you&#8217;ve structured your site, your site visitors will amaze you with [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Search is Important", url: "http://alexking.org/blog/2005/03/20/search-is-important" });</script>]]></description>
			<content:encoded><![CDATA[<p><strong>Note:</strong> this is one of a series of posts about the <a href="http://alexking.org/blog/2005/03/07/king-design-web-site/">creation of the King Design web site</a>.</p>
<p>One of the great benefits of using <a href="http://wordpress.org/" rel="external">WordPress</a> (or any CMS) to manage your web site is built in search capability. No matter how well you think you&#8217;ve structured your site, your site visitors will amaze you with creative ways to avoid finding the information you&#8217;ve tried to make available to them. Having search capabilities is one way to enable your visitors to get directly to what they are looking for.</p>
<p>WordPress provides searching for posts in the default configuration, but doesn&#8217;t support searching pages. I use pages for most a good deal of my site content, so it was important to me to have that content searchable as well. All it required was a little code change in wp-includes/classes.php (around line 490):</p>
<div class="code">
<code class="psuedo_code">if (is_page()) {<br />
  $where .= &#8216; AND (post_status = &#8220;static&#8221;&#8216;;<br />
} else {<br />
  $where .= &#8216; AND (post_status = &#8220;publish&#8221;&#8216;;<br />
}<br />
// Get private posts<br />
if (isset($user_ID) &#038;&#038; (&#8221; != intval($user_ID)))<br />
  $where .= &#8221; OR post_author = $user_ID<br />
    AND post_status != &#8216;draft&#8217;<br />
    AND post_status != &#8217;static&#8217;)&#8221;;<br />
else<br />
  $where .= &#8216;)&#8217;;</code>
</div>
<p>becomes:</p>
<div class="code">
<code class="psuedo_code">if (empty($_GET["s"])) {<br />
  if (is_page()) {<br />
    $where .= &#8216; AND (post_status = &#8220;static&#8221;&#8216;;<br />
  } else {<br />
    $where .= &#8216; AND (post_status = &#8220;publish&#8221;&#8216;;<br />
  }<br />
  // Get private posts<br />
  if (isset($user_ID) &#038;&#038; (&#8221; != intval($user_ID)))<br />
    $where .= &#8221; OR post_author = $user_ID<br />
      AND post_status != &#8216;draft&#8217;<br />
      AND post_status != &#8217;static&#8217;)&#8221;;<br />
   else<br />
    $where .= &#8216;)&#8217;;<br />
}<br />
else {<br />
  $where .= &#8216; AND<br />
    (post_status = &#8220;publish&#8221;<br />
    OR post_status = &#8220;static&#8221;)&#8217;;<br />
}</code>
</div>
<p>(Note: Yes I asked Matt if this is a feature that would be good to include in the main codeline - the answer was no.)</p>
<p>I&#8217;ve added some additional code to present my search results grouped by type (Pages, FAQs and News) and also added options to search only FAQs and search only News. I&#8217;m not completely satisfied with the current implementation, but it was workable enough for an initial release of the site.</p>
<p>Currently, the <a href="http://www.kingdesign.net/forums/">Forums</a> and the <a href="http://crowdfavorite.net/tasks/">Tasks</a> and <a href="http://crowdfavorite.net/tasks-jr/">Tasks Jr.</a>  documentation is not included in the main search, which is something I&#8217;ll likely work on over time. <a href="http://punbb.org/" rel="external">PunBB</a> has its own search capabilities (that are frankly superior to the current WordPress capabilities), but it would be nice to integrate forum search results into the main search results. Since the Tasks and Tasks Jr. documentation is static HTML (created with <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a>, I&#8217;ll need to integrate an additional system (likely <a href="http://www.phpdig.net/" rel="external">PhpDig</a>) to add search capabilities to that content. I tried an initial implementation when I was still developing the site, but never got it working as I wanted to.</p>
<p>I realize that Google (and probably others) provide <a href="http://www.google.com/searchcode.html" rel="external">other solutions</a>, but I&#8217;d really like to keep the site interface consistent and Google doesn&#8217;t always have a current index of all of the content on a site. Perhaps there are other solutions I&#8217;m overlooking (comments are open).</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Search+is+Important&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2005%2F03%2F20%2Fsearch-is-important">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2005/03/20/search-is-important/feed</wfw:commentRss>
		</item>
		<item>
		<title>Searching for PHP Doc System</title>
		<link>http://alexking.org/blog/2004/11/03/searching-for-php-doc-system</link>
		<comments>http://alexking.org/blog/2004/11/03/searching-for-php-doc-system#comments</comments>
		<pubDate>Wed, 03 Nov 2004 16:15:41 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2004/11/03/searching-for-php-doc-system/</guid>
		<description><![CDATA[I&#8217;d like to add search capabilities to PHP Doc System output when it&#8217;s running on a web server. I also like being able to generate flat files for distribution (with a database backend).
Anyone have any bright ideas? Maybe an integration with a search project of sorts? Anyone want to tackle said integration?
<script type="text/javascript">SHARETHIS.addEntry({ title: "Searching for PHP Doc System", url: "http://alexking.org/blog/2004/11/03/searching-for-php-doc-system" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to add search capabilities to <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a> output when it&#8217;s running on a web server. I also like being able to generate flat files for distribution (with a database backend).</p>
<p>Anyone have any bright ideas? Maybe an integration with a search project of sorts? Anyone want to tackle said integration?</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Searching+for+PHP+Doc+System&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2004%2F11%2F03%2Fsearching-for-php-doc-system">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2004/11/03/searching-for-php-doc-system/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System Usability Enhancement</title>
		<link>http://alexking.org/blog/2004/04/18/php-doc-system-usability-enhancement</link>
		<comments>http://alexking.org/blog/2004/04/18/php-doc-system-usability-enhancement#comments</comments>
		<pubDate>Sun, 18 Apr 2004 16:13:26 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2004/04/18/php-doc-system-usability-enhancement/</guid>
		<description><![CDATA[I added a little check to disable a link if the link is to the page currently being displayed. It&#8217;s a small change, but I think it&#8217;s an important one (and I don&#8217;t have immediate plans to add more features) so I&#8217;ve released this as PHP Doc System 1.5.1.
For example, you have a module &#8217;sample_module&#8217; [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System Usability Enhancement", url: "http://alexking.org/blog/2004/04/18/php-doc-system-usability-enhancement" });</script>]]></description>
			<content:encoded><![CDATA[<p>I added a little check to disable a link if the link is to the page currently being displayed. It&#8217;s a small change, but I think it&#8217;s an important one (and I don&#8217;t have immediate plans to add more features) so I&#8217;ve released this as <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a> 1.5.1.</p>
<p>For example, you have a module &#8217;sample_module&#8217; and you include a link to that module in the module&#8217;s summary like this:</p>
<div class="code"><code class="psuedo_code">&lt;p&gt;This is a<br />
&lt;?php $sample_module->link(&#8217;sample module&#8217;); ?&gt;<br />
link in the summary.&lt;/p&gt;</code></div>
<p>The link shows up when it is included in other modules, but not when showing the $sample_3 module. This technique is great because now whenever you display the summary as part of another module, it also includes a link back to the full page for that module.</p>
<p>Previously there was a problem with the page linking to itself. That is confusing, and documentation is one place it is important not to have confusion. <img src='http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+Usability+Enhancement&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2004%2F04%2F18%2Fphp-doc-system-usability-enhancement">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2004/04/18/php-doc-system-usability-enhancement/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System 1.5 Released</title>
		<link>http://alexking.org/blog/2004/03/08/php-doc-system-15-released</link>
		<comments>http://alexking.org/blog/2004/03/08/php-doc-system-15-released#comments</comments>
		<pubDate>Mon, 08 Mar 2004 14:18:10 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2004/03/08/php-doc-system-15-released/</guid>
		<description><![CDATA[I&#8217;ve released PHP Doc System version 1.5. This includes the features and upgrades I made to the system when using it to build the Tasks Pro&#8482; 1.0 documentation.
Here is a quick overview of the changes:

Added &#8216;Related Links&#8217; sidebar
Created module generator page
Default and generated source is now XHTML compliant
More semantically accurate HTML
Re-did navigation links to be [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System 1.5 Released", url: "http://alexking.org/blog/2004/03/08/php-doc-system-15-released" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve released PHP Doc System version 1.5. This includes the features and upgrades I made to the system when using it to build the <a href="http://crowdfavorite.net/tasks-pro/">Tasks Pro&trade;</a> 1.0 documentation.</p>
<p>Here is a quick overview of the changes:</p>
<ul>
<li>Added &#8216;Related Links&#8217; sidebar</li>
<li>Created module generator page</li>
<li>Default and generated source is now XHTML compliant</li>
<li>More semantically accurate HTML</li>
<li>Re-did navigation links to be a single function</li>
</ul>
<p>I&#8217;ve made the Tasks Pro 1.0 documentation source available for <a href="http://prdownloads.sourceforge.net/documentation/phpdocsystem_1.5_taskspro.zip?download">download</a> as a sample project. I&#8217;d gotten several requests for a bigger sample project - this one should qualify. <img src='http://alexking.org/wp/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /></p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+1.5+Released&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2004%2F03%2F08%2Fphp-doc-system-15-released">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2004/03/08/php-doc-system-15-released/feed</wfw:commentRss>
		</item>
		<item>
		<title>Drowning in Documentation</title>
		<link>http://alexking.org/blog/2004/02/11/drowning-in-documentation</link>
		<comments>http://alexking.org/blog/2004/02/11/drowning-in-documentation#comments</comments>
		<pubDate>Thu, 12 Feb 2004 04:15:16 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<category><![CDATA[Tasks Pro&trade;]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2004/02/11/drowning-in-documentation/</guid>
		<description><![CDATA[The last week now, I&#8217;ve spent most of my time writing documentation for Tasks Pro&#8482;. So far I&#8217;ve created 128 PHP Doc System modules (the static output is ~200k, zipped) in a cross-referenced mess that is about 2/3rds of where I need it to be and doesn&#8217;t have any screenshots yet. Ugh&#8230;
On the flip side, [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Drowning in Documentation", url: "http://alexking.org/blog/2004/02/11/drowning-in-documentation" });</script>]]></description>
			<content:encoded><![CDATA[<p>The last week now, I&#8217;ve spent most of my time writing documentation for <a href="http://crowdfavorite.net/tasks-pro/">Tasks Pro&trade;</a>. So far I&#8217;ve created 128 PHP Doc System modules (the static output is ~200k, zipped) in a cross-referenced mess that is about 2/3rds of where I need it to be and doesn&#8217;t have <em>any</em> screenshots yet. Ugh&#8230;</p>
<p>On the flip side, I&#8217;ve added some new features to <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a>:</p>
<ul>
<li>More semantically accurate HTML</li>
<li>Added &#8216;Related Links&#8217; sidebar</li>
<li>Re-did navigation links to be a single function instead of separate functions</li>
<li>Created a <a href="http://alexking.org/software/phpdocsystem/generator.php">module generator</a></li>
</ul>
<p>The generator still needs a lot of polish, but that will wait until after I get Tasks Pro out the door. I&#8217;m tempted to throw a database behind this thing, but I like not having that requirement.</p>
<p>The best part is telling it to generate the static output and letting it chug away. <img src='http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Drowning+in+Documentation&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2004%2F02%2F11%2Fdrowning-in-documentation">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2004/02/11/drowning-in-documentation/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System 1.2 Released</title>
		<link>http://alexking.org/blog/2003/11/10/php-doc-system-12-released</link>
		<comments>http://alexking.org/blog/2003/11/10/php-doc-system-12-released#comments</comments>
		<pubDate>Tue, 11 Nov 2003 05:36:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2003/11/10/php-doc-system-12-released/</guid>
		<description><![CDATA[I&#8217;ve released PHP Doc System version 1.2. The biggest change is the addition of Previous/Next links on each page. I&#8217;ll be updating my tasks and photos documentation to the latest version when I get a chance. Some of the changes in this version should make future upgrades easier.
This release includes some very nice contributions from [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System 1.2 Released", url: "http://alexking.org/blog/2003/11/10/php-doc-system-12-released" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve released <a href="/software/phpdocsystem/">PHP Doc System</a> version 1.2. The biggest change is the addition of Previous/Next links on each page. I&#8217;ll be updating my <a href="/software/tasks/">tasks</a> and <a href="/software/photos/">photos</a> documentation to the latest version when I get a chance. Some of the changes in this version should make future upgrades easier.</p>
<p>This release includes some very nice contributions from John Asendorf who is using PHP Doc System to create new documentation for the <a href="http://coppermine.sourceforge.net/" rel="external">Coppermine Photo Gallery</a>. Thanks John!</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+1.2+Released&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2003%2F11%2F10%2Fphp-doc-system-12-released">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2003/11/10/php-doc-system-12-released/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System 1.1 Released</title>
		<link>http://alexking.org/blog/2003/09/25/php-doc-system-11-released</link>
		<comments>http://alexking.org/blog/2003/09/25/php-doc-system-11-released#comments</comments>
		<pubDate>Fri, 26 Sep 2003 02:59:04 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2003/09/25/php-doc-system-11-released/</guid>
		<description><![CDATA[I&#8217;ve done some minor clean-up on PHP Doc System and released it as version 1.1.
I&#8217;ve updated my tasks documentation and my photos documentation to use the latest version. Now you can see when each page in the docs was last modified.
<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System 1.1 Released", url: "http://alexking.org/blog/2003/09/25/php-doc-system-11-released" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done some minor clean-up on <a href="/software/phpdocsystem/">PHP Doc System</a> and released it as version 1.1.</p>
<p>I&#8217;ve updated my <a href="/software/tasks/">tasks</a> <a href="/software/tasks/documentation/">documentation</a> and my <a href="/software/photos/">photos</a> <a href="/software/photos/documentation/">documentation</a> to use the latest version. Now you can see when each page in the docs was last modified.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+1.1+Released&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2003%2F09%2F25%2Fphp-doc-system-11-released">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2003/09/25/php-doc-system-11-released/feed</wfw:commentRss>
		</item>
		<item>
		<title>Traffic</title>
		<link>http://alexking.org/blog/2003/05/22/traffic</link>
		<comments>http://alexking.org/blog/2003/05/22/traffic#comments</comments>
		<pubDate>Fri, 23 May 2003 01:48:45 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2003/05/22/traffic/</guid>
		<description><![CDATA[PHP Doc System was the top item on the HotScripts PHP page today which resulted in a ton of traffic. I had over 850 1050 (updated 10:30pm) visits from there alone, add another 450 from Freshmeat and you&#8217;ve got a lot of people breezing through my site. It resulted in 250 downloads of PHP Doc [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Traffic", url: "http://alexking.org/blog/2003/05/22/traffic" });</script>]]></description>
			<content:encoded><![CDATA[<p>PHP Doc System was the top item on the <a href="http://www.hotscripts.com/PHP/" rel="external">HotScripts PHP page</a> today which resulted in a <b>ton</b> of traffic. I had over <s>850</s> 1050 (updated 10:30pm) visits from there alone, add another 450 from Freshmeat and you&#8217;ve got a lot of people breezing through my site. It resulted in 250 downloads of <a href="/software/phpdocsystem/">PHP Doc System</a> in the first 24 hours of the release which isn&#8217;t bad at all for a little developer tool like this.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=Traffic&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2003%2F05%2F22%2Ftraffic">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2003/05/22/traffic/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System 1.0 released</title>
		<link>http://alexking.org/blog/2003/05/21/php-doc-system-10-released</link>
		<comments>http://alexking.org/blog/2003/05/21/php-doc-system-10-released#comments</comments>
		<pubDate>Wed, 21 May 2003 23:58:58 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2003/05/21/php-doc-system-10-released/</guid>
		<description><![CDATA[I&#8217;ve added a page for it to my site, just click on PHP Doc System in the software section.
I&#8217;m going to try running all the support and everything through the SourceForge project. If you&#8217;d like to contribute, head on over there and get to work. 
<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System 1.0 released", url: "http://alexking.org/blog/2003/05/21/php-doc-system-10-released" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added a page for it to my site, just click on <a href="http://alexking.org/software/phpdocsystem/">PHP Doc System</a> in the <a href="/software/">software</a> section.</p>
<p>I&#8217;m going to try running all the support and everything through the <a href="http://sourceforge.net/projects/documentation/" rel="external">SourceForge project</a>. If you&#8217;d like to contribute, head on over there and get to work. <img src='http://alexking.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System+1.0+released&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2003%2F05%2F21%2Fphp-doc-system-10-released">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2003/05/21/php-doc-system-10-released/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Doc System</title>
		<link>http://alexking.org/blog/2003/05/20/php-doc-system</link>
		<comments>http://alexking.org/blog/2003/05/20/php-doc-system#comments</comments>
		<pubDate>Wed, 21 May 2003 05:20:08 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
		
		<category><![CDATA[PHP Doc System]]></category>

		<guid isPermaLink="false">http://www.alexking.org/blog/2003/05/20/php-doc-system/</guid>
		<description><![CDATA[I&#8217;m almost ready to put up version 1.0 of PHP Doc System, as I touched on in this post. It will be released under GPL and I&#8217;ve registered it as a project on SourceForge.net.
<script type="text/javascript">SHARETHIS.addEntry({ title: "PHP Doc System", url: "http://alexking.org/blog/2003/05/20/php-doc-system" });</script>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m almost ready to put up version 1.0 of PHP Doc System, as I touched on in <a href="http://alexking.org/blog/2003/02/23/tasks-progress-documentation">this post</a>. It will be released under GPL and I&#8217;ve registered it as a project on SourceForge.net.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.3&amp;publisher=06654962-d77d-102a-861d-00161729a8a2&amp;title=PHP+Doc+System&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2003%2F05%2F20%2Fphp-doc-system">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://alexking.org/blog/2003/05/20/php-doc-system/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
