<?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>scribu &#187; Smart Archives Reloaded</title>
	<atom:link href="http://scribu.net/wordpress/smart-archives-reloaded/feed" rel="self" type="application/rss+xml" />
	<link>http://scribu.net</link>
	<description>Hello, this is where scribu geeks out</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:48:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Version 1.9</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-9.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-9.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 16:26:28 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=611</guid>
		<description><![CDATA[Lots of goodies in this release, based on the feedback and requests I got from you guys (and gals).

First off, there&#8217;s a new format called &#8220;menu&#8221;. It&#8217;s basically the year and month menu from the fancy format, but without the post list. It&#8217;s meant to be displayed on year and month based archives.]]></description>
			<content:encoded><![CDATA[<p>Lots of goodies in this release, based on the feedback and requests I got from you guys (and gals).</p>
<h3>The Menu Format</h3>
<p>First off, there&#8217;s a new format called &#8220;menu&#8221;. It&#8217;s basically the year and month menu from the fancy format, but without the post list. It&#8217;s meant to be displayed on year and month based archives, to aid navigation.</p>
<p>Usually, those archives are handled by the <code>archive.php</code> template in your theme, so that&#8217;s where you should use it:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> smart_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'format=menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h3>New arguments</h3>
<p>There are also two new arguments:</p>
<p><strong>month_format</strong> &#8211; can be one of &#8216;numeric&#8217;, &#8217;short&#8217; and &#8216;long&#8217;</p>
<p><strong>posts_per_month</strong> &#8211; set the number of posts displayed per month; by default, all posts are displayed.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> smart_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_per_month=25'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Finally, you can now customize the look and feel more easily. See <a href="http://scribu.net/wordpress/smart-archives-reloaded/advanced-tweaking.html">Advanced Tweaking</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced Tweaking</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/advanced-tweaking.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/advanced-tweaking.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 15:25:01 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=610</guid>
		<description><![CDATA[Since version 1.9, you can make modifications to the plugin output, without having to modify the plugin code. This way, your tweaks won&#8217;t be lost when you upgrade the plugin.

If you want to customize the appearance of the archives using your own CSS, here&#8217;s how you do it:]]></description>
			<content:encoded><![CDATA[<p>Since version 1.9, you can make modifications to the plugin output, without having to modify the plugin code. This way, your tweaks won&#8217;t be lost when you upgrade the plugin.</p>
<h3>Custom styling</h3>
<p>If you want to customize the appearance of the archives using your own CSS, here&#8217;s how you do it:</p>
<ol>
<li>Add this code to your theme&#8217;s <code>functions.php</code> file:</li>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'smart_archives_load_default_styles'</span><span style="color: #339933;">,</span> <span style="color: #990000;">create_function</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'return false;'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<li>Copy everything from <code>smart-archives-reloaded/inc/styles.dev.css</code> into your theme&#8217;s <code>style.css</code> file.</li>
<li>Change the CSS in your theme&#8217;s <code>style.css</code> file, as needed.</li>
</ol>
<h3>Custom markup</h3>
<p>If you want to go one step further and change the generated HTML markup, you can do that too (understanding of <a href="http://www.php.net/manual/en/language.oop5.inheritance.php">object inheritance</a> is required).</p>
<p>First, take a look at the <code>SAR_Generator</code> class (in <code>smart-archives-reloaded/generator.php</code>).</p>
<p>In your theme&#8217;s <code>functions.php</code> file, you can extend that class, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">smart_archives_load_default_generator<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">class</span> SAR_Custom_Generator <span style="color: #000000; font-weight: bold;">extends</span> SAR_Generator <span style="color: #009900;">&#123;</span>
	protected static <span style="color: #000000; font-weight: bold;">function</span> generate_fancy<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// your custom code here</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	protected static <span style="color: #000000; font-weight: bold;">function</span> generate_block<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// more of your custom code here</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #339933;">...</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Then, all you have to do is add the &#8216;generator&#8217; argument to the template tag:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> smart_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'generator=SAR_Custom_Generator'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/advanced-tweaking.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Version 1.8</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-8.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-8.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:53:34 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=587</guid>
		<description><![CDATA[Previous versions of this plugin allowed only a single type of archive, controlled entirely from the settings page.

Version 1.8 is a lot more developer friendly: any options set on the settings page can be overwritten.]]></description>
			<content:encoded><![CDATA[<p>Previous versions of this plugin allowed only a single type of archive, controlled entirely from the settings page.</p>
<p>Version 1.8 is a lot more developer friendly: any options set on the settings page can be overwritten:</p>
<p>In your theme, you can now write:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> smart_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'format=list&amp;exclude_cat=123,543'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This works for the shortcode too. In any post or page, just write:</p>
<p><code>[smart_archives format=list exclude_cat=123,543]</code></p>
<p>What&#8217;s neat about this is that you can have more than one archive, or have the archive display differently in different parts of your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-8.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Version 1.7</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-7.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-7.html#comments</comments>
		<pubDate>Sat, 26 Sep 2009 12:05:42 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=560</guid>
		<description><![CDATA[This release was basically written by Simon Pritchard. I just added the finishing touches.

It adds an integrated multi-level navigation UI to the archives, perfect for sites with a large number of posts.]]></description>
			<content:encoded><![CDATA[<p>This release was basically written by <a href="http://www.conceptfusion.co.nz/2009/09/wordpress-smart-archives-reloaded-with-added-fancy/">Simon Pritchard</a>. I just added the finishing touches.</p>
<h3>Fancy new style</h3>
<p>Version 1.7 adds an integrated multi-level navigation UI to the archives, perfect for sites with a large number of posts.</p>
<p><img src="http://img85.imageshack.us/img85/9146/screenshot2g.png" alt="Fancy archive on the default theme" /></p>
<p>See a <a href="http://www.conceptfusion.co.nz/archive">live example</a>.</p>
<h3>New formatting tags</h3>
<p>First, you have %category_link% and %category%, which will output a category list for each post.</p>
<p>Secondly, you have %date%, wich will print out the publish date of each post. There is an additional field where you can customize the date format.</p>
<p>If you like the new features, go thank Simon for his effort.</p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-7.html/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Version 1.6</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-6.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-6.html#comments</comments>
		<pubDate>Mon, 24 Aug 2009 21:40:04 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=546</guid>
		<description><![CDATA[In version 1.6 you can better control how each post is displayed in the list. Also, the admin page has been rearanged in a more logical order.]]></description>
			<content:encoded><![CDATA[<p><strong>Update</strong>: Thanks to those who have contributed translations so far:</p>
<ul>
<li>Belarusian &#8211; <a href="http://antsar.info/">ilyuha</a>
<li>Chinese &#8211; <a href="http://www.pihai.net/technology/smart-archives-reloaded-chinese-translation.html">Yorick Chen</a></li>
<li>Danish &#8211; jos</li>
<li>French &#8211; <a href="http://www.referenceurfreelance.com">Référenceur Freelance</a></li>
<li>Italian &#8211; <a href="http://gidibao.net/">Gianni Diurno</a></li>
<li>Russian &#8211; <a href="http://www.fatcow.com">Fat Cow</a></li>
<li>Uzbek &#8211; <a href="http://comfi.com">Alexandra Bolshova</a></li>
</ul>
<p>In version 1.6 you can better control how each post is displayed in the list:</p>
<p><img src="http://img21.imageshack.us/img21/7999/sar16.png" alt="New setting" /></p>
<p>Also, the admin page has been rearanged in a more logical order: general settings and specific settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-6.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Version 1.5</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sarsar-1-5.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sarsar-1-5.html#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:42:49 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>
		<category><![CDATA[l10n]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=498</guid>
		<description><![CDATA[This version adds a new setting, namely the ability to display the month links in the block as numbers from 01 to 12.
The plugin is now fully translatable.
Finally, the cache file is now located in the uploads directory, so that you don&#8217;t have to mess with file permissions anymore.
]]></description>
			<content:encoded><![CDATA[<p>This version adds a <strong>new setting</strong>, namely the ability to display the month links in the block as numbers from 01 to 12.</p>
<p>The plugin is now fully <a href="http://scribu.net/wordpress/translating-plugins.html">translatable</a>.</p>
<p>Finally, the cache file is now located in the uploads directory, so that you don&#8217;t have to mess with file permissions anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sarsar-1-5.html/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Version 1.4</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-4.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-4.html#comments</comments>
		<pubDate>Sun, 18 Jan 2009 13:11:50 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>
		<category><![CDATA[l10n]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=406</guid>
		<description><![CDATA[Instead of updating the cache at a regular interval, the plugin now updates when a post is published or deleted. 
Also, an issue with accents should be fixed.
Finally, some optimizations were also baked in.
PHP5 is required
]]></description>
			<content:encoded><![CDATA[<p>Instead of updating the cache at a regular interval, the plugin now updates when a post is published or deleted. </p>
<p>Also, an issue with accents should be fixed.</p>
<p>Finally, some optimizations were also baked in.</p>
<p><strong>PHP5 is required</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-4.html/feed</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>Version 1.3</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-3.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-3.html#comments</comments>
		<pubDate>Thu, 18 Dec 2008 15:17:01 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=387</guid>
		<description><![CDATA[This version adds a new feature and has several bugfixes and improvements:

new: month links in the block can point to month titles in the list.
new: validate excluded categories input
fix: block respects excluded categories option
new: uses scbOptionsPage framework 1.0
fix: single wp-cron event when changing cache interval
fix: redundant calls to displaySAR::generate()

PHP5 is required.
]]></description>
			<content:encoded><![CDATA[<p>This version adds a new feature and has several bugfixes and improvements:</p>
<ul class="plain">
<li><strong>new:</strong> month links in the block can point to month titles in the list.</li>
<li><strong>new:</strong> validate excluded categories input</li>
<li><strong>fix:</strong> block respects excluded categories option</li>
<li><strong>new:</strong> uses scbOptionsPage framework 1.0</li>
<li><strong>fix:</strong> single wp-cron event when changing cache interval</li>
<li><strong>fix:</strong> redundant calls to displaySAR::generate()</li>
</ul>
<p><strong>PHP5 is required.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-3.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Version 1.2</title>
		<link>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-2.html</link>
		<comments>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-2.html#comments</comments>
		<pubDate>Thu, 28 Aug 2008 21:37:46 +0000</pubDate>
		<dc:creator>scribu</dc:creator>
				<category><![CDATA[Smart Archives Reloaded]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://scribu.net/?p=330</guid>
		<description><![CDATA[I have been using Smart Archives for some time and I really liked it, but version 2.0 wasn&#8217;t up to snuff, in my opinion. So I decided to improve it, until I ended up with this plugin:

Easy setup &#8211; no code editing required
Better caching &#8211; no need to wait when publishing a new post
Settings page [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://justinblanton.com/projects/smartarchives/">Smart Archives</a> for some time and I really liked it, but version 2.0 wasn&#8217;t up to snuff, in my opinion. So I decided to improve it, until I ended up with this plugin:</p>
<ul>
<li><strong>Easy setup</strong> &#8211; no code editing required</li>
<li><strong>Better caching</strong> &#8211; no need to wait when publishing a new post</li>
<li><strong>Settings page</strong> &#8211; elegantly choose how you want the archives displayed</li>
</ul>
<h3>Version history</h3>
<ul class="plain">
<li><strong>1.2</strong>: better HTML output; various optimizations and bugfixes</li>
<li><strong>1.1</strong>: switched to wp_cron for updating the cache</li>
<li><strong>1.0</strong>: initial release</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://scribu.net/wordpress/smart-archives-reloaded/sar-1-2.html/feed</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
	</channel>
</rss>
