<?xml version="1.0" encoding="utf-8"?>
<!-- generator="wordpress/2.2" -->
<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>fortes.com &#187; Projects</title>
	<link>http://fortes.com</link>
	<description>Typed live in front of a studio audience in Seattle</description>
	<pubDate>Fri, 25 Jan 2008 17:39:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Introducing Sistr</title>
		<link>http://fortes.com/2007/09/17/introducing-sistr/</link>
		<comments>http://fortes.com/2007/09/17/introducing-sistr/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 23:20:58 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Sistr]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/09/17/introducing-sistr/</guid>
		<description><![CDATA[


Over the weekend I spent some time seeing if I could replicate the functionality found in the excellent sIFR, using Silverlight instead of Flash. The result is Sistr. For the impatient &#8212; here&#8217;s a demo test page.
Note: This definitely isn&#8217;t ready for a production site, this is an early version for feedback purposes only. There [...]]]></description>
			<content:encoded><![CDATA[<ul class="photo">
<li><a href="http://flickr.com/photos/fortes/1337717840/"><img src="http://farm2.static.flickr.com/1255/1337717840_78497e0379.jpg" alt="Plane Engine over the midwest" /></a></li>
</ul>
<p>Over the weekend I spent some time seeing if I could replicate the functionality found in the excellent <a href="http://www.mikeindustries.com/sifr">sIFR</a>, using <a href="http://silverlight.net/">Silverlight</a> instead of Flash. The result is <a href="http://fortes.com/projects/silverlight/sistr">Sistr</a>. For the impatient &#8212; here&#8217;s a <a href="http://static.fortes.com/projects/silverlight/sistr/side-by-side.html">demo test page</a>.</p>
<p><strong>Note:</strong> This <em>definitely</em> isn&#8217;t ready for a production site, this is an early version for feedback purposes only. There are still plenty of bugs, trust me.</p>
<h3>Usage</h3>
<ol>
<li>Download <a href="http://static.fortes.com/projects/silverlight/sistr/sistr.js"><tt>sistr.js</tt></a> and save it to your web server (or reference it directly from <a href="http://static.fortes.com/projects/silverlight/sistr/sistr.js">this site</a>).</li>
<li>Create a zip file with the font(s) you wish to use. Upload this to your webserver as well (Silverlight will only use fonts that are retrieved via HTTP).</li>
<li>Add the following into your HTML page:
<pre><code class="html sch">&lt;script type=&quot;text/javascript&quot; src=&quot;sistr.js&quot;&gt;&lt;/script&gt;</code></pre>
</li>
<li>In your CSS file, define a new class called <code>sistr-replace</code> (anything that starts with &#8220;sistr-&#8221; works). Here&#8217;s an example:
<pre><code class="html sch">.sistr&#x002D;replace { }</code></pre>
</li>
<li>Use the <code>font-family</code> property to set the font name and URL to the font files, enclose them in quotes and separate with the &#8220;|&#8221; character (e.g. <code>font-family: "Fil's Font|filfont.zip"</code>). Make sure you also specify backup fonts for users who don&#8217;t have Silverlight installed, like so:
<pre><code class="html sch">.sistr&#x002D;replace { font&#x002D;family: &quot;FontName|fonts.zip&quot;, Verdana, Arial, Sans&#x002D;Serif; }</code></pre>
</li>
<li>Set the <code>class</code> property on some of your HTML elements to <code>sistr-replace</code> (or whatever else you used) and re-load. For example:
<pre><code class="html sch">&lt;h3 class=&quot;entry&#x002D;title sistr&#x002D;replace&quot;&gt;Hello World!&lt;/h3&gt;</code></pre>
</li>
<li>Your text should now be rendered using Silverlight.</li>
</ol>
<p>Take a look at the <a href="http://static.fortes.com/projects/silverlight/sistr/side-by-side.html">demo test page</a> as well.</p>
<h3>Pros &#038; Cons vs. sIFR</h3>
<p>Pro:</p>
<ul>
<li><strong>Simpler setup</strong>: All you need to do is include the <tt>sistr.js</tt> file in your page and edit your CSS &#8212; you do not need to edit any Silverlight or JavaScript code. sIFR is pretty easy too, but you need the Flash editing program in order to create a SWF file.</li>
<li><strong>Support for Transparent Backgrounds</strong>: sIFR provides partial support, but it&#8217;s not recommended within Firefox (I believe this is an issue with Flash).</li>
</ul>
<p>Con:</p>
<ul>
<li><strong>Lack of Silverlight Install Base</strong>: Silverlight is nowhere near as common as Flash.</li>
<li><strong>No protection for Font Files</strong>: In order to use a custom font with Silverlight, you have to have the font file available for download on a web server &#8212; you cannot embed it or protect it in any way. This means you must use fonts that you either created or are liberally licensed (public domain, etc).</li>
<li><strong>Immature</strong>: Both Flash and sIFR are much, much more mature than Silverlight and Sistr. There are many bugs that I have not sorted out yet.</li>
<li><strong>Many limitations</strong>: See below</li>
</ul>
<h3>Known Issues</h3>
<ul>
<li><strong>No support for line height</strong>: Limitation in Silverlight</li>
<li><strong>Must use absolute units for <code>font-size</code> in IE</strong>: Due to IE&#8217;s lack of a <code>getComputedStyle</code> equivalent.</li>
<li><strong>Occasional sizing issues</strong>: I think this may be a Silverlight bug, but occasionally text will get cut off in the vertical direction. Not sure how to fix it yet</li>
<li><strong>Font size doesn&#8217;t respond to user changes</strong>: Works fine if you reload though</li>
<li><strong>No support for <code>:hover</code> state</strong></li>
<li><strong>No support for nested hyperlinks</strong></li>
<li><strong>Text selection does not work</strong>: Not sure how screen readers react either</li>
<li><strong>Cannot support nested bold in Firefox</strong>: Works in IE though</li>
</ul>
<p>Let me know if you find others &#8212; or want to help fix bugs!</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/09/17/introducing-sistr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Level Categories Plugin 1.0</title>
		<link>http://fortes.com/2007/06/20/top-level-categories-plugin-10/</link>
		<comments>http://fortes.com/2007/06/20/top-level-categories-plugin-10/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 18:52:04 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Top Level Categories]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/06/20/top-level-categories-plugin-10/</guid>
		<description><![CDATA[There&#8217;s a new version of the Top Level Categories plugin. The changes aren&#8217;t huge, but they do fix all known issues, including:

Will now work correctly with the /%category%/%postname% and %postname% permalink structures (this was the top request).
No longer need to manually update the permalink structure on install or uninstall.
Fixed incompatibility with some installations of the [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new version of the <a href="http://fortes.com/projects/wordpress/top-level-cats/">Top Level Categories plugin</a>. The changes aren&#8217;t huge, but they do fix all known issues, including:</p>
<ul>
<li>Will now work correctly with the <code>/%category%/%postname%</code> and <code>%postname%</code> permalink structures (this was the top request).</li>
<li>No longer need to manually update the permalink structure on install or uninstall.</li>
<li>Fixed incompatibility with some installations of the <a href="http://getk2.com/">K2 theme</a>.</li>
</ul>
<p>If the <a href="http://fortes.com/2007/02/27/top-level-categories-plugin-01/">previous version</a> works well for you, then there is no need to upgrade.</p>
<h3>Download</h3>
<p><a href="http://downloads.wordpress.org/plugin/top-level-cats.zip">Top Level Categories v1.0</a> (ZIP file).</p>
<p>Let me know if you encounter any new bugs or issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/06/20/top-level-categories-plugin-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Level Categories Plugin 0.1</title>
		<link>http://fortes.com/2007/02/27/top-level-categories-plugin-01/</link>
		<comments>http://fortes.com/2007/02/27/top-level-categories-plugin-01/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 03:48:00 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Top Level Categories]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/02/27/top-level-categories-plugin-01/</guid>
		<description><![CDATA[Introduction
The Top Level Categories plugin allows you to remove the prefix before the URL to your category page. For example, instead of fortes.com/category/work, I use fortes.com/work for the address my &#8220;work&#8221; category. WordPress doesn&#8217;t allow you to have a blank prefix for categories (they insert category/ before the name), this plugin works around that restriction.
Download
Top [...]]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>The <a href="http://fortes.com/projects/wordpress/top-level-cats/">Top Level Categories</a> plugin allows you to remove the prefix before the URL to your category page. For example, instead of <a href="http://fortes.com/category/work/"><tt>fortes.com/category/work</tt></a>, I use <a href="http://fortes.com/work/"><tt>fortes.com/work</tt></a> for the address my &#8220;work&#8221; category. WordPress doesn&#8217;t allow you to have a blank prefix for categories (they insert <tt>category/</tt> before the name), this plugin works around that restriction.</p>
<h3>Download</h3>
<p><a href="http://fortes.com/wp-content/uploads/2007/02/top_level_cats.zip">Top Level Categories v0.1</a></p>
<h3>Installation</h3>
<ol>
<li>Download <a href="http://fortes.com/wp-content/uploads/2007/02/top_level_cats.zip"><tt>top_level_cats.zip</tt></a>,  unzip it and save the <tt>top_level_cats.php</tt> file in your <tt>wp-content/plugins</tt> directory.</li>
<li>Activate the plugin through your WordPress admin area (See <a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Installation">the official documentation</a> if you need more help with this.)</li>
<li>Go to <strong>Options -> Permalinks</strong> in your options panel and press <strong>Update Permalink Structure</strong>.</li>
<li>That&#8217;s it! Your category links are now changed!</li>
</ol>
<h3>Donate</h3>
<p>If you&#8217;re feeling generous, go for it: </p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/></p>
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----"/></form>
<h3>Notes</h3>
<p>I use this plugin in conjunction with the excellent <a href="http://fucoder.com/code/permalink-redirect/">Permalink Redirect Plugin</a>. If you&#8217;re using the plugin, you should make sure to fix <a href="http://fucoder.com/forum/viewtopic.php?id=56">a simple bug</a> in the program that messes up category feeds. You can do so by adding the following code to the file on line 174 (right before the <code>return $link;</code> line):</p>
<pre><code>        if (is_feed()) {
        	$link = trailingslashit($link) . "feed/";
        }</code></pre>
<h3>Known Issues</h3>
<p>This plugin will <em>not</em> work if you are using a permalink structure that is only the post name (i.e. <tt>/%postname%/</tt> in the options). This is because it creates an ambiguous situation where both categories and individual posts end up with the same URLs. To fix this (if you don&#8217;t mind switching your post URLs), switch permalink structure to one of the built-in settings (like <tt>Date and Name Based</tt>).</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/02/27/top-level-categories-plugin-01/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.0.9 (for WordPress 2.0.x)</title>
		<link>http://fortes.com/2007/02/19/post-levels-109-for-wordpress-20x/</link>
		<comments>http://fortes.com/2007/02/19/post-levels-109-for-wordpress-20x/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 01:49:32 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/02/19/post-levels-109-for-wordpress-20x/</guid>
		<description><![CDATA[I&#8217;ve gotten a few emails from people that are still running the 2.0.x versions of WordPress (which will apparently be supported until 2010). Due to a boring technical reason, the &#8220;User Levels&#8221; menu is hidden from the admin section if you use Post Levels 1.1.1 with WordPress 2.0.x.
You can download the release from here: Post [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gotten a few emails from people that are still running the 2.0.x versions of WordPress (which will apparently be <a href="http://wordpress.org/development/2007/01/ella-21/">supported until 2010</a>). Due to a boring technical reason, the &#8220;User Levels&#8221; menu is hidden from the admin section if you use <a href="http://fortes.com/2007/02/16/post-levels-111/">Post Levels 1.1.1</a> with WordPress 2.0.x.</p>
<p>You can download the release from here: <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.0.9/">Post Levels 1.0.9</a></p>
<p>Note that this version lacks features in 1.1.1 &#8212; this is due to the new capabilities introduced in WordPress 2.1.</p>
<p><strong>Do not use this plugin if you are running WP 2.1 or greater</strong>, your waistline will expand and dogs will no longer like you.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/02/19/post-levels-109-for-wordpress-20x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.1.1</title>
		<link>http://fortes.com/2007/02/16/post-levels-111/</link>
		<comments>http://fortes.com/2007/02/16/post-levels-111/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 02:56:30 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/02/16/post-levels-111/</guid>
		<description><![CDATA[Post Levels 1.1.1 is a bugfix release that will (hopefully) get rid of some of the problems people have been seeing with the 1.1 release.
Download
Post Levels 1.1.1
New Features

Use the post teaser as the preview: You can now show the post teaser as the preview for non-logged in users. (requested by Gas)
Bug fixes: This release should [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1.1/post-levels.php">Post Levels 1.1.1</a> is a bugfix release that will (hopefully) get rid of some of the problems people have been seeing with the <a href="http://fortes.com/2007/02/04/post-levels-11/">1.1 release</a>.</p>
<h3>Download</h3>
<p><a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1.1/post-levels.php">Post Levels 1.1.1</a></p>
<h3>New Features</h3>
<ul>
<li><strong>Use the post teaser as the preview</strong>: You can now show the post teaser as the preview for non-logged in users. (<a href="http://fortes.com/2007/02/04/post-levels-11/#comment-6545">requested by Gas</a>)</li>
<li><strong>Bug fixes</strong>: This release should fix the issues with <a href="http://www.neato.co.nz/archives/2007/01/17/ultimate-tag-warrior-31415926/">Ultimate Tag Warrior 3.1415926</a> (duplicate posts and SQL errors). If you find more, please let me know.
</li>
</ul>
<p><strong>Note:</strong> Several people have mentioned that Post Levels is causing their posts to appear in reverse order. I&#8217;m unable to duplicate this, so please let me know if it&#8217;s still happening in this version.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/02/16/post-levels-111/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.1</title>
		<link>http://fortes.com/2007/02/04/post-levels-11/</link>
		<comments>http://fortes.com/2007/02/04/post-levels-11/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 22:49:34 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/02/04/post-levels-11/</guid>
		<description><![CDATA[The latest version of the Post Levels Plugin is now available.
Download
Post Levels Version 1.1
Installation

Save the post-levels.php file in your wp-content/plugins directory.
Activate the plugin through your WordPress admin area (See the official documentation if you need more help with this.)
Go to the Users section of your admin area, then go to User Levels. Give levels to [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of the <a href="http://fortes.com/projects/wordpress/postlevels">Post Levels Plugin</a> is now available.</p>
<h3>Download</h3>
<p><a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1">Post Levels Version 1.1</a></p>
<h3>Installation</h3>
<ol>
<li>Save the <tt>post-levels.php</tt> file in your <tt>wp-content/plugins</tt> directory.</li>
<li>Activate the plugin through your WordPress admin area (See <a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Installation">the official documentation</a> if you need more help with this.)</li>
<li>Go to the <strong>Users</strong> section of your admin area, then go to <strong>User Levels</strong>. Give levels to your users</li>
<li>Make posts private when writing or editing by using the <strong>Post Level</strong> drop down, and setting the <strong>Post Status</strong> to <strong>Private</strong></li>
</ol>
<h3>New Features</h3>
<ul>
<li><strong>Private Pages</strong>: Support for private pages, just like posts</li>
<li><strong>Previews for Private Posts</strong>: This has been requested often &#8212; you can now show a preview for your private posts (even shows up in RSS!). The preview can be just the title, or the title and the post excerpt.</li>
<li><strong>Private Posts in archive counts</strong>: Another frequently-requested item</li>
<li><strong>Private posts (usually) show up in category counts</strong>: This works in <em>most</em> themes. Let me know if yours doesn&#8217;t (make sure you tell me which theme!)</li>
<li><strong>No more HTTP Auth</strong>: This fixes the issue some people saw with password prompts. I&#8217;ll replace this feature in the next version</li>
<li><strong>WordPress 2.1 compatibility</strong>: Most of the new features don&#8217;t work with older versions of WP &#8212; sorry.</li>
</ul>
<h3>Donate</h3>
<p>If you&#8217;re feeling generous, go for it: </p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/></p>
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----"/></form>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/02/04/post-levels-11/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.1b2</title>
		<link>http://fortes.com/2007/02/03/post-levels-11b2/</link>
		<comments>http://fortes.com/2007/02/03/post-levels-11b2/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 23:41:17 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/02/03/post-levels-11b2/</guid>
		<description><![CDATA[For those running WordPress 2.1 already, you can grab Post Levels 1.1b2, which should fix the post-doubling issue and incompatibility with PHP4 people have been seeing. There are no new features in this release.
Update: The final version is now out.
]]></description>
			<content:encoded><![CDATA[<p>For those running WordPress 2.1 already, you can grab <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1b2/post-levels.php">Post Levels 1.1b2</a>, which should fix the post-doubling issue and incompatibility with PHP4 people have been seeing. There are no new features in this release.</p>
<p><ins datetime="2007-02-04T22:51:41+00:00"><strong>Update:</strong> The <a href="http://fortes.com/2007/02/04/post-levels-11/">final version</a> is now out.</ins></p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/02/03/post-levels-11b2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.1 Beta</title>
		<link>http://fortes.com/2007/01/08/post-levels-11-beta/</link>
		<comments>http://fortes.com/2007/01/08/post-levels-11-beta/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 01:00:40 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2007/01/08/post-levels-11-beta/</guid>
		<description><![CDATA[In preparation for the upcoming release of WordPress 2.1, I&#8217;ve prepared a new version of the Post Levels plugin. I&#8217;ll release the final 1.1 once the WordPress 2.1 is released. If you&#8217;re running 2.1 already, please let me know if you find any issues.
Download
Post Levels version 1.1b
Installation

Save the post-levels.php file in your wp-content/plugins directory.
Activate the [...]]]></description>
			<content:encoded><![CDATA[<p>In preparation for the upcoming release of WordPress 2.1, I&#8217;ve prepared a new version of the <a href="http://fortes.com/projects/wordpress/postlevels">Post Levels plugin</a>. I&#8217;ll release the final 1.1 once the WordPress 2.1 is released. If you&#8217;re running 2.1 already, please let me know if you find any issues.</p>
<h4>Download</h4>
<p><a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1b2">Post Levels version 1.1b</a></p>
<h4>Installation</h4>
<ol>
<li>Save the <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1b2/post-levels.php">post-levels.php</a> file in your <tt>wp-content/plugins</tt> directory.</li>
<li>Activate the plugin in the WordPress UI</li>
</ol>
<p><strong>You must be running version 2.1 of WordPress</strong>. In theory, it won&#8217;t break older versions, but won&#8217;t really do much.</p>
<h4>New Features</h4>
<ul>
<li><strong>Private Pages</strong>: You can now have private pages, just like posts</li>
<li><strong>Private Posts show up in Archive counts &amp; Next/Prev links</strong>: Corrects a long standing bug where private posts weren&#8217;t counted. Unfortunately, this bug still affects categories</li>
<li><strong>Removed HTTP Auth for private RSS feeds</strong>: This didn&#8217;t work particularly well for people, it&#8217;ll be replaced before the final relase (see below).</li>
<li>Other minor fixes &#8230;</li>
</ul>
<h4>Upcoming Features</h4>
<ul>
<li><strong>RSS for private posts</strong>: This time it&#8217;ll really work :)</li>
<li><strong>Private posts in Category counts</strong>: This looks like it&#8217;ll require either editing your theme, or using the <a href="http://www.plaintxt.org/themes/sandbox/">Sandbox</a> theme.</li>
<li><strong>Tell users there are private posts</strong>: Allow non-logged in users to know there are hidden posts</li>
<li><strong>Category-based level</strong>: Set default levels for certain categories</li>
<li><strong>Level quick tag</strong>: Allow some kind of shortcut for setting the post level</li>
</ul>
<p><ins datetime="2007-02-03T23:41:41+00:00"><strong>Update</strong>: <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.1b2/post-levels.php">Version 1.1b2</a> should fix the post doubling and PHP4 issues</ins></p>
<p><ins datetime="2007-02-04T22:52:43+00:00"><strong>Update</strong>: <a href="http://fortes.com/2007/02/04/post-levels-11/">Final version available</a></ins></p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2007/01/08/post-levels-11-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Next version of Post Levels</title>
		<link>http://fortes.com/2006/08/16/next-version-of-post-levels/</link>
		<comments>http://fortes.com/2006/08/16/next-version-of-post-levels/#comments</comments>
		<pubDate>Wed, 16 Aug 2006 01:43:01 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2006/08/16/next-version-of-post-levels/</guid>
		<description><![CDATA[It&#8217;s been a while since the last release of the Post Levels plugin, I believe it is just about time for a new release.
I&#8217;m a selfish developer, so I&#8217;m prioritizing based on my needs. Here is what I need for the next version:

Non HTTP-auth private RSS feeds: My web host runs PHP in CGI mode, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since <a href="http://fortes.com/2005/12/27/post-levels-10/">the last release of the Post Levels plugin</a>, I believe it is just about time for a new release.</p>
<p>I&#8217;m a selfish developer, so I&#8217;m prioritizing based on my needs. Here is what I need for the next version:</p>
<ul>
<li><strong>Non HTTP-auth private RSS feeds</strong>: My <a href="http://dreamhost.com/">web host</a> runs PHP in CGI mode, which doesn&#8217;t support the HTTP authentication</li>
<li><strong>Flickr integration</strong>: This will depend on what I can implement with the Flickr API, but I&#8217;d like some tighter integration with their contact list and privacy</li>
</ul>
<p>There are a few features that people have frequently requested as well, I&#8217;d like to get the following done:</p>
<ul>
<li><strong>Tell users there are private posts</strong>: Frequently requested option, would allow non-logged in users to know there are hidden posts</li>
<li><strong>Category-based level</strong>: Set default levels for certain categories</li>
<li><strong>Level quick tag</strong>: Allow some kind of shortcut for setting the post level</li>
</ul>
<p>Any other requests? </p>
<p>BTW, don&#8217;t expect me to have this all coded tomorrow :)</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2006/08/16/next-version-of-post-levels/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Private Posts in RSS</title>
		<link>http://fortes.com/2005/12/27/private-rss/</link>
		<comments>http://fortes.com/2005/12/27/private-rss/#comments</comments>
		<pubDate>Tue, 27 Dec 2005 19:34:05 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[fortes.com]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2005/12/27/private-rss/</guid>
		<description><![CDATA[You can now see links to my private posts in your RSS reader (assuming it supports HTTP authentication &#8212; this varies by feed reader).
The feed URL is: http://fortes.com/feed?http_auth=yes (alternatively: http://fortes.com/life/feed?http_auth=yes if you don&#8217;t want to see anything but the personal posts)
Your reader should prompt you for your user name and password. Use the same one [...]]]></description>
			<content:encoded><![CDATA[<p>You can now see links to my private posts in your RSS reader (assuming it supports HTTP authentication &#8212; this varies by feed reader).</p>
<p>The feed URL is: <a href="http://fortes.com/feed?http_auth=yes"><code>http://fortes.com/feed?http_auth=yes</code></a> (alternatively: <a href="http://fortes.com/life/feed?http_auth=yes"><code>http://fortes.com/life/feed?http_auth=yes</code></a> if you don&#8217;t want to see anything but the personal posts)</p>
<p>Your reader should prompt you for your user name and password. Use the same one you would use to log in.</p>
<p>Let me know if you have any issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2005/12/27/private-rss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 1.0</title>
		<link>http://fortes.com/2005/12/27/post-levels-10/</link>
		<comments>http://fortes.com/2005/12/27/post-levels-10/#comments</comments>
		<pubDate>Tue, 27 Dec 2005 18:19:31 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2005/12/27/post-levels-10/</guid>
		<description><![CDATA[Version 1.0 of the Post Levels plugin has been released. This is a release for WordPress 2.0, and is not compatible with earlier versions of WordPress.
Download
Post Levels 1.0
Installation Instructions

Save the file post-levels.php in your wp-content/plugins/ directory
Activate the plugin within WordPress in your Plugins section

See the WordPress documentation if you&#8217;re having issues installing the plugin.
Upgrade Instructions
If [...]]]></description>
			<content:encoded><![CDATA[<p>Version 1.0 of the <a href="http://fortes.com/projects/wordpress/postlevels">Post Levels</a> plugin has been released. This is a release for WordPress 2.0, and is not compatible with earlier versions of WordPress.</p>
<h4>Download</h4>
<p><a href="http://svn.wp-plugins.org/post-levels/tags/release-1.0/post-levels.php">Post Levels 1.0</a></p>
<h4>Installation Instructions</h4>
<ol>
<li>Save the file <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.0/post-levels.php"><code>post-levels.php</code></a> in your <code>wp-content/plugins/</code> directory</li>
<li>Activate the plugin within WordPress in your <b>Plugins</b> section</li>
</ol>
<p>See the <a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Installation">WordPress documentation</a> if you&#8217;re having issues installing the plugin.</p>
<h4>Upgrade Instructions</h4>
<p>If you are upgrading from a previous version of WordPress, you should follow these steps:</p>
<ol>
<li>Deactivate the Post Levels plugin</li>
<li>Upgrade your WordPress installation to 2.0 (this exercise is left to the reader)</li>
<li>Download <a href="http://svn.wp-plugins.org/post-levels/tags/release-1.0/post-levels.php"><code>post-levels.php</code></a>, replacing the previous version</li>
<li>Activate the plugin</li>
<li>Click on the new <b>Post Levels Configuration</b> tab in the <b>Plugins</b> admin area:
<p class="img"><img src="/2005/12/27/postlevels-10/pluginmenu.gif" alt="The WordPress plugin administrative area, with a menu tab that says 'Post Levels Configuration'" /></p>
</li>
<li>Scroll to the bottom of the page, and check the box labeled <b>Copy user information &#8230;</b>, then click <b>Migrate User Levels</b>
<p class="img"><img src="/2005/12/27/postlevels-10/migrate.gif" alt="Post Levels administrative UI with a button that says 'Migrate User Levels'" /></p>
</li>
<li>Now go to the <b>Users</b> section in your WordPress admin. Click on the a new <b>User Levels</b> section.
<p class="img"><img src="/2005/12/27/postlevels-10/usersmenu.gif" alt="The WordPress users administrative area, with a menu tab that says 'User Levels''" /></p>
</li>
<li>Confirm that all your user levels are appropriate</li>
<li>You can now go to the <b>Authors &amp; Users</b> section in order to change user permissions as necessary. I recommend changing all non-posting users to &#8220;Subscriber&#8221;</li>
</ol>
<h4>New Features</h4>
<p>Version 1.0 has many frequently-requested features, including:</p>
<ul class="longlist">
<li><strong>Private posts over RSS</strong>: By adding <code>http_auth=yes</code> to the query string of any WordPress URL, you can now use HTTP authentication to get private posts. Since most RSS readers support HTTP authentication, you can attach this query string to your feed URL and see private posts. The amount of data shown in the post is user-configurable: You can show just the title, excerpt, or give the full content.</li>
<li><strong>Independent User Level Control</strong>: The previous version of Post Levels used WordPress&#8217; built-in user level property. This was a problem for many people because giving a user access to private posts also gave them administrative capabilities. This version assigns levels to users that are completely independent from the WordPress administrative functions.</li>
<li><strong>New Adminstrative UI for controlling plugin options</strong>: Control options such as the default post level, user level, etc</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2005/12/27/post-levels-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Post Levels 0.9</title>
		<link>http://fortes.com/2005/12/24/post-levels-09/</link>
		<comments>http://fortes.com/2005/12/24/post-levels-09/#comments</comments>
		<pubDate>Sun, 25 Dec 2005 07:42:25 +0000</pubDate>
		<dc:creator>fil</dc:creator>
		
		<category><![CDATA[Post Levels Plugin]]></category>

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

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

		<guid isPermaLink="false">http://fortes.com/2005/12/24/post-levels-09/</guid>
		<description><![CDATA[I&#8217;ve updated the plugin to be compatible with WordPress 2.0 RC3 &#8212; if you&#8217;re testing WP 2.0, you can download Post Levels 0.9. Let me know if you find any bugs. I&#8217;ll release the real version with any bugfixes when WP 2.0 releases.
Partial list of new features in this release:

Support for private posts in RSS [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the plugin to be compatible with WordPress 2.0 RC3 &#8212; if you&#8217;re testing <abbr title="WordPress">WP</abbr> 2.0, you can download <a href="http://svn.wp-plugins.org/post-levels/tags/release-0.9/post-levels.php">Post Levels 0.9</a>. Let me know if you find any bugs. I&#8217;ll release the real version with any bugfixes when <abbr title="WordPress">WP</abbr> 2.0 releases.</p>
<p>Partial list of new features in this release:</p>
<ul>
<li><strong>Support for private posts in RSS feeds:</strong> Blog readers can use HTTP authentication to read private posts</li>
<li><strong>Post and User Level Admin UI</strong></li>
<li><strong>Configurable options:</strong> New configuration options for features.</li>
<li><strong>No more Single Post bug:</strong> Yeah, that bug sucked</li>
</ul>
<p><strong>Note:</strong> This plugin is <em>not</em> compatible with previous versions of WordPress. If you try to use it with old versions of <abbr title="WordPress">WP</abbr>, it will probably make your tongue green.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortes.com/2005/12/24/post-levels-09/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.309 seconds -->
