<?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>In a mirror, dimly &#187; Wordpress</title>
	<atom:link href="http://paul.caffeinatedbliss.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://paul.caffeinatedbliss.com</link>
	<description>A blog at the intersection of geek, faith and creative writing.</description>
	<lastBuildDate>Wed, 18 Aug 2010 07:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>PHP-on-Tomcat (Part II)</title>
		<link>http://paul.caffeinatedbliss.com/2009/12/php-on-tomcat-part-ii/</link>
		<comments>http://paul.caffeinatedbliss.com/2009/12/php-on-tomcat-part-ii/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 23:07:12 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=990</guid>
		<description><![CDATA[The original goal of being able to run PHP on top of Tomcat was to allow simple development of PHP based applications like WordPress and/or bbPress. To get these working I needed a database. The wildly popular mySQL database has a nice installer for OS X. Mine installed to /usr/local. I did the install ages [...]]]></description>
			<content:encoded><![CDATA[<p>The original goal of being able to run PHP on top of Tomcat was to allow simple development of PHP based applications like <a href="http://www.wordpress.org">WordPress</a> and/or <a href="http://www.bbpress.org/">bbPress</a>.  To get these working I needed a database.</p>
<p>The wildly popular <em>mySQL</em> database has a nice installer for OS X.  Mine installed to <code>/usr/local</code>.  I did the install <em>ages</em> ago and forgot what the &#8220;root&#8221; database user password was.  Ooops!  No matter, there are some great <a href="http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html">resources online</a> talking about how to go about resetting permissions.  I opted for the incredibly easy, but utterly insecure method (from inside the terminal) :</p>
<ol>
<li>Stop the existing server</li>
<li>Restart telling it to turn off permissions: <code>mysqld_safe --skip-grant-tables --user=_mysql &#038;</code></li>
<li>Jump into the mysql shell application: <code>mysql -u root mysql</code></li>
<li>Change the &#8220;root&#8221; password: <code>UPDATE mysql.user SET Password=PASSWORD('#########') where user='root';</code></li>
<li>Persist privilages: <code>FLUSH PRIVILEGES;</code></li>
</ol>
<p>Next on the list was exposing my <em>mySQL</em> database to the Tomcat hosted PHP code.  Step 1 was making sure I have mySQL JDBC drivers installed, Step 2 was creating a JNDI datasource in the context, and step 3 was getting the PHP to use it.</p>
<p>The officially supported <a href="http://dev.mysql.com/downloads/connector/j/5.1.html">mySQL Connector/J</a> was a quick download.  The JAR file for it was dropped into the <code>$CATALINA_HOME/lib</code> directly.  Good to go.  The context file was more of a challenge, under the <code>$CATALINA_HOME/conf/Catalina/localhost</code> I created an XML config file that matched the name of my <em>webapp</em> &#8211; <code>php.xml</code> &#8211; where I declared the JNDI datasource.  It took some tweaking and reading around but finally ended up coming together:</p>
<pre>
&lt;Context reloadable="true"&gt;
    &lt;Resource
        name="jdbc/mydata"
        auth="Container"
        type="javax.sql.DataSource"
        username="root"
        password="#########"
        driverClassName="com.mysql.jdbc.Driver"
        url="jdbc:mysql://localhost:3306/test"
    /&gt;
&lt;/Context&gt;
</pre>
<p>The documentation for <em>Quercus</em> states </p>
<blockquote><p>
Scripts can use the jndi name directly:</p>
<pre>
&lt;?php

  // standard PHP
  //mysql_connect($host, $username, $password, $dbname);

  // using JNDI lookup
  mysql_connect("java:comp/env/jdbc/myDatabaseName");

?&gt;
</pre>
</blockquote>
<p>But that doesnt help me to run <a href="http://www.wordpress.org/">WordPress</a> as I&#8217;m not about to go modifying their code.  Never fear, there&#8217;s another option.  The documentation for <em>Quercus</em> also says that you can put an entry into the <code>WEB-INF/web.xml</code> file that forces all database connections to go through the same underlying JNDI datasource:</p>
<blockquote><pre>
.
.
.
    &lt;!--
      Tells Quercus to use the following JDBC database and to ignore the
      arguments of mysql_connect().
    --&gt;
    &lt;init-param&gt;
      &lt;param-name&gt;database&lt;/param-name&gt;
      &lt;param-value&gt;jdbc/test&lt;/param-value&gt;
    &lt;/init-param&gt;
.
.
.
</pre>
</blockquote>
<p>So, a quick update to point at my own datasource and wall was ready to go.  I downloaded and unzipped wordpress into the PHP webapp directory, pointed a browser at <code>http://localhost:8080/php/wordpress</code> and found myself stepping through the famous 5 minute install.  Less than 5 minutes later I was looking at the main page of a fully-functioning WordPress install.</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2009/12/php-on-tomcat-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Themage</title>
		<link>http://paul.caffeinatedbliss.com/2009/07/themage/</link>
		<comments>http://paul.caffeinatedbliss.com/2009/07/themage/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 03:16:01 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://986034335</guid>
		<description><![CDATA[Once again &#8220;that time&#8221; is upon me &#8211; the time when I look at my site and say &#8220;No more!&#8221; and tear down the theme thats been here in favour of a redesign. In the interim I&#8217;ll be trying a few different themes by other people as I look at features of them, so dont [...]]]></description>
			<content:encoded><![CDATA[<p>Once again &#8220;that time&#8221; is upon me &#8211; the time when I look at my site and say &#8220;No more!&#8221; and tear down the theme thats been here in favour of a redesign.  In the interim I&#8217;ll be trying a few different themes by other people as I look at features of them, so dont be surprised if things up and change around here at the drop of a hat.</p>
<p>Out with the old (version 9.0) and in with the new, the King is dead, long live the King!</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2009/07/themage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talk like a pirate day &#8230; Arrg!</title>
		<link>http://paul.caffeinatedbliss.com/2008/09/talk-like-a-pirate-day-arrg/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/09/talk-like-a-pirate-day-arrg/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 16:21:46 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Memes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=845</guid>
		<description><![CDATA[What can I say? It&#8217;s awesome when ye have th' right WordPress plugin enabled.]]></description>
			<content:encoded><![CDATA[<p>What can I say?   It&#8217;s awesome when ye have th' right WordPress plugin enabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/09/talk-like-a-pirate-day-arrg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Theme thoughts for version 9</title>
		<link>http://paul.caffeinatedbliss.com/2008/08/theme-thoughts-for-version-9/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/08/theme-thoughts-for-version-9/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 18:19:44 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=807</guid>
		<description><![CDATA[As I scroll back through the various incarnations of my theme (and look at what I liked about interim themes such as &#8220;Vista&#8221;) I have to conclude that there are design decisions that remain constant: Rounded corners Purple shaded &#8220;brushed metal&#8221; texture and white content area Right-hand sidebar Fixed-width and floating Dark grey background Content-area [...]]]></description>
			<content:encoded><![CDATA[<p>As I scroll back through the various incarnations of my theme (and look at what I liked about interim themes such as &#8220;Vista&#8221;) I have to conclude that there are design decisions that remain constant:
<ul>
<li>Rounded corners</li>
<li>Purple shaded &#8220;brushed metal&#8221; texture and white content area</li>
<li>Right-hand sidebar</li>
<li>Fixed-width and floating</li>
<li>Dark grey background</li>
<li>Content-area fully enclosed, containing posts and sidebar</li>
</ul>
<p>Version 8 added a few more details:
<ul>
<li>Stronger emphasis on <i>pages</i> with &#8220;page navigation&#8221; at the head of the sidebar</li>
<li>Stronger emphasis on <i>pages</i> with tabs at top of the template</li>
<li>&#8220;Search&#8221; properly integrated into the template</li>
<li>Categories finally in a decent place</li>
<li>More emphasis on syndication &#8211; allowing for a &#8220;podcast&#8221; audio blog link in the future</li>
</ul>
<p>Version 8 was far from perfect though.  &#8220;Vista&#8221; is far more concise &#8211; combining navigation, syndication and search into a single menu bar &#8211; where version 8 of my own theme separated the tabs into their own space.  I like the real-estate gains by combining things.  </p>
<p>I am running 4 plugins:
<ul>
<li><b>Akismet</b><br />
The standard anti-spam plugin.  Never be seen without it!</li>
<li><b>Celtx CSS</b><br />
I participated in <a href="http://www.scriptfrenzy.org/">Script Frenzy</a> a while ago.  The goal was to write an entire movie screenplay in a month.  The formatting of a screenplay is really specific and the free <a href="http://www.celtx.com/">Celtx</a> tool handled everything.  I created the <b>Celtx CSS</b> to maintain the formatting of the screenplay when it&#8217;s posted to a WordPress blog.</li>
<li><b>Dimly Archive Table</b><br />
Three columns, broken down by year and month.  It&#8217;s a layout I&#8217;ve not seen anywhere else, and one I have used for years now.  This plugin exposes a standard WordPress widget that plays nice with modern WordPress sidebars.</li>
<li><b>WP-dTree</b><br />
I&#8217;ve played with about a dozen different page navigation widgets and <b>WP-dTree</b> is by far the best of them.  The continued emphasis on <i>pages</i> on my site means that this will need to be a standard feature in themes to come.</li>
</ul>
<p>The downfall of the current (interim) &#8220;Vista&#8221; theme is the dual right-hand sidebars.  They don&#8217;t leave enough space for the blog content.  I got rid of dual sidebars in version 3 of the site!  Going to a single sidebar will give <b>WP-dTree</b> more space to expand the tree nodes too.</p>
<p>Version 8 didn&#8217;t give enough definition of where posts start and stop and while Vista is better, it suffers the same problem.  Version 6 (on the other hand) was a little heavy-handed in that regard.  What has remained constant is the title and timestamp of posts remains at the top of the post, with version 8&#8242;s emphasis on the title being a good design decision.  The purple &#8220;smudge&#8221; doesn&#8217;t give enough definition to the top of a post.</p>
<p>I like the idea of conditional sidebars too.  There&#8217;s no reason to have <i>Archives</i> and <i>categories</i> when you&#8217;re reading the various pieces of writing.  A single &#8220;home&#8221; link on the navigation bar is enough to break back to the timed blog entries again.</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/08/theme-thoughts-for-version-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am&#8230;</title>
		<link>http://paul.caffeinatedbliss.com/2008/08/i-am/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/08/i-am/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 14:09:05 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=796</guid>
		<description><![CDATA[I feel somehow dirty. See, I really dislike Alanis Morissette and will leave the room if her music is playing. It was &#8220;hate at first sight&#8221; &#8211; she appeared on the Jools Holland show back in 1995 performing &#8220;You oughta know&#8221; &#8211; I remarked at the time that she sounded like an angst-ridden little harpy. [...]]]></description>
			<content:encoded><![CDATA[<p>I feel somehow dirty.  See, I really dislike <em>Alanis Morissette</em> and will leave the room if her music is playing.  It was &#8220;hate at first sight&#8221; &#8211; she appeared on the Jools Holland show back in 1995 performing &#8220;You oughta know&#8221; &#8211; I remarked at the time that she sounded like an angst-ridden little harpy.  I&#8217;ve not really changed my mind since.  You can imagine the reaction, then, when I was writing the  &#8220;about&#8221; tagline for the blog and I thought &#8220;Im a geek and believer &#8230;&#8221; and some song lyrics came to mind:<br />
<blockquote>I&#8217;m a bitch I&#8217;m a lover<br />
I&#8217;m a child I&#8217;m a mother<br />
I&#8217;m a sinner I&#8217;m a saint<br />
I do not feel ashamed<br />
I&#8217;m your hell I&#8217;m your dream<br />
I&#8217;m nothin&#8217; in between<br />
You know, you wouldn&#8217;t want it any other way</p></blockquote>
<p>The song appeared, fully formed with full backing, and <i>her</i> voice attached.  The words rearranged themselves<br />
<blockquote>I&#8217;m a geek and believer<br />
I&#8217;m a &#8216;limey&#8217; I&#8217;m a husband<br />
I&#8217;m a sinner, I&#8217;m a saint<br />
I do not feel ashamed<br />
I&#8217;m a writer and I&#8217;ll dream<br />
I’m nothin&#8217; in between<br />
You know, you wouldn’t want it any other way</p></blockquote>
<p>I filked an Alanis song?  Ewww.</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/08/i-am/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Reboot</title>
		<link>http://paul.caffeinatedbliss.com/2008/07/blog-reboot/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/07/blog-reboot/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 19:00:14 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=781</guid>
		<description><![CDATA[I am fed up to the back teeth of the way my theme here wont &#8220;stick&#8221;.  Something isn&#8217;t right.  In fact I will go so far as to say that something here is seriously messed up.  I just have no clue what.  If you were browsing my site around 1:30pm today you will have probably [...]]]></description>
			<content:encoded><![CDATA[<p>I am fed up to the back teeth of the way my theme here wont &#8220;stick&#8221;.  Something isn&#8217;t right.  In fact I will go so far as to say that something here is seriously messed up.  I just have no clue <em>what</em>.  If you were browsing my site around 1:30pm today you will have probably seen the effects of my drastic maintenance.  I killed it.  The entire thing.  Stone dead, drop the database tables, never even existed &#8230; dead.  Got the latest WordPress and installed it, and then re-imported the posts, comments and what-have-you.  Let&#8217;s see if that cures things!</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/07/blog-reboot/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fiction</title>
		<link>http://paul.caffeinatedbliss.com/2008/06/fiction/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/06/fiction/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 14:23:33 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=2002</guid>
		<description><![CDATA[All of my fiction writing projects now have a &#8220;book cover&#8221; or &#8220;movie poster&#8221; and the fiction page on the site has had a make-over. In the process I reijigged some of the URLs. Apologies if that means some bookmarks are now broken. I used the fabulous Celtx screenwriting software to participate in &#8220;Script Frenzy&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>All of my <a href="http://paul.caffeinatedbliss.com/writing-gallery/fiction">fiction writing projects</a> now have a &#8220;book cover&#8221; or &#8220;movie poster&#8221; and the <a href="http://paul.caffeinatedbliss.com/writing-gallery/fiction">fiction page</a> on the site has had a make-over.  In the process I reijigged some of the URLs.  Apologies if that means some bookmarks are now broken.</p>
<p>I used the fabulous <a href="http://www.celtx.com/">Celtx</a> screenwriting software to participate in &#8220;Script Frenzy&#8221; last year.  I also used it to write an original screenplay for a writing group that I&#8217;m part of.  It takes a little work but it is actually possible to post the output from the application directly on a website like this.  I&#8217;ll post step-by-step instructions later but suffice it to say, it means editing your site&#8217;s CSS to add screenplay related details, installing a WordPress plugin and then some copy + paste effort for each screenplay you want to self-publish.  Easy really.</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/06/fiction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dysfunctional</title>
		<link>http://paul.caffeinatedbliss.com/2008/06/ugly-but-functional/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/06/ugly-but-functional/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 19:43:05 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=2000</guid>
		<description><![CDATA[Nanowrimo 2008 Looks like version 8 of the Mirror Dimly theme is dead in the water. Back to the drawing-board and see what I can come up with. *sigh* On other fronts, looks like I have a working idea for this year&#8217;s National Novel Writing Month challenge, and it&#8217;s back to fan fiction. I&#8217;ve had [...]]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td align="left" width="160"><a title="Deep Blue Sea II - Harsh Mistress" href="http://paul.caffeinatedbliss.com/writing-gallery/fiction/deep-blue-sea-harsh-mistress"><img src="/nano/2008/nano-2008-front-cover.jpg" width="144" height="212" border="0" alt="Deep Blue Sea II - Harsh Mistress" vspace="8"></a><br />Nanowrimo 2008</td>
<td valign="top">Looks like version 8 of the <i>Mirror Dimly</i> theme is dead in the water.  Back to the drawing-board and see what I can come up with.  *sigh*</p>
<p>On other fronts, looks like I have a working idea for this year&#8217;s <a href="http://www.nanowrimo.org/">National Novel Writing Month</a> challenge, and it&#8217;s back to fan fiction.  I&#8217;ve had an idea floating around in my head for a while: to write a sequel to the 1999 action/horror movie &#8220;Deep Blue Sea&#8221;.  Tentatively, this year&#8217;s Nano is titled &#8220;Deeper blue sea&#8221;.  It&#8217;s a working title, trust me!</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/06/ugly-but-functional/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Acts of theme-age</title>
		<link>http://paul.caffeinatedbliss.com/2008/06/acts-of-theme-age/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/06/acts-of-theme-age/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 01:56:31 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/?p=1969</guid>
		<description><![CDATA[For some strange reason the theme on In a mirror, dimly keeps reverting back to the &#8220;Default&#8221; one. One fix I saw was to put a copy of the correct (&#8220;mirror-dimly&#8221;) theme into the &#8220;Default&#8221; directory, but that&#8217;s missing the point. The question that should be asked is &#8220;why is my theme reverting in the [...]]]></description>
			<content:encoded><![CDATA[<p>For some strange reason the theme on <i>In a mirror, dimly</i> keeps reverting back to the &#8220;Default&#8221; one.  One fix I saw was to put a copy of the correct (&#8220;mirror-dimly&#8221;) theme into the &#8220;Default&#8221; directory, but that&#8217;s missing the point.  The question that should be asked is &#8220;why is my theme reverting in the first place?&#8221;</p>
<p>Seems that if WordPress runs into errors in the theme, it will revert.  Helpful but not so helpful as to pinpoint where the problem is.  It&#8217;s like one of the testers in work who pokes the software and sends us bug reports saying &#8220;it&#8217;s broken&#8221;.</p>
<p>Yeah.  About that.</p>
<p><strong><em>[edit - June 10th]</em></strong></p>
<p>Having worked through the plugins, and scanned the Apache error logs, I still find the theme misbehaving.  Grrr.  The only up-side to this is that the nifty plugins I had in my sidebar probably can return as I go looking for a large spade and begin digging deeply into the theme code.  <code>*sigh*</code></p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/06/acts-of-theme-age/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Utter Neglect</title>
		<link>http://paul.caffeinatedbliss.com/2008/06/utter-neglect/</link>
		<comments>http://paul.caffeinatedbliss.com/2008/06/utter-neglect/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 04:13:33 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://paul.caffeinatedbliss.com/archives/1967</guid>
		<description><![CDATA[I started another blog, and podcast last November and you can certainly tell! It&#8217;s now JUNE and I am finally getting around to finishing the blog redesign. Its wholly updated compared to the previous version but carries through several key design elements: Rounded corners Purple shaded &#8220;brushed metal&#8221; texture Right-hand sidebar Fixed-width and floating Dark [...]]]></description>
			<content:encoded><![CDATA[<p>I started another blog, and podcast last November and you can certainly tell!  It&#8217;s now JUNE and I am finally getting around to finishing the blog redesign.  Its wholly updated compared to the previous version but carries through several key design elements:
<ul>
<li>Rounded corners</li>
<li>Purple shaded &#8220;brushed metal&#8221; texture</li>
<li>Right-hand sidebar</li>
<li>Fixed-width and floating</li>
<li>Dark grey background</li>
<li>Content-area fully enclosed, containing posts and sidebar</li>
</ul>
<p>The new theme adds some elements too:
<ul>
<li>Stronger emphasis on <i>pages</i> with &#8220;page navigation&#8221; at the head of the sidebar</li>
<li>Stronger emphasis on <i>pages</i> with tabs at top of the template</li>
<li>&#8220;Search&#8221; properly integrated into the template</li>
<li>Categories finally in a decent place</li>
<li>More emphasis on syndication &#8211; allowing for a &#8220;podcast&#8221; audio blog link</li>
</ul>
<p>In the process of creating the theme, I also created several widgets to give me features I was looking for:
<ul>
<li>Detailed &#8220;recent posts&#8221; box in sidebar.</li>
<li>Modified and &#8220;widget-ized&#8221; the collapsing-page-menu plugin.</li>
<li>Compact year/month archive listing.</li>
</ul>
<p>All of which will be released in due course.  Note: I&#8217;ve attempted to contact the original &#8220;collapsing page menu&#8221; author but there&#8217;s been no response.  If nothing comes of the request I might see about aquiring ownership of the plugin as it&#8217;s jolly useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://paul.caffeinatedbliss.com/2008/06/utter-neglect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
