<?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>Tea-Driven Development &#187; blog</title>
	<atom:link href="http://blog.mattwynne.net/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mattwynne.net</link>
	<description>Matt Wynne taking it one tea at a time</description>
	<lastBuildDate>Tue, 10 Jan 2012 20:07:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Saving Your WordPress Blog to CD</title>
		<link>http://blog.mattwynne.net/2008/04/11/saving-your-wordpress-blog-to-cd/</link>
		<comments>http://blog.mattwynne.net/2008/04/11/saving-your-wordpress-blog-to-cd/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 10:42:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Linux / OS X Newbie Tips]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[burning]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://blog.mattwynne.net/2008/04/11/saving-your-wordpress-blog-to-cd/</guid>
		<description><![CDATA[So the wife has been writing her mandatory university course diary as a wordpress blog, but now she needs to hand it in. &#62; Can you put it on a CD for me? She asks. Unix to the rescue! Following this excellent article I had the site saved down to disk in a jiffy, with [...]]]></description>
			<content:encoded><![CDATA[<p>So the wife has been writing her mandatory university course diary as a wordpress blog, but now she needs to hand it in.</p>

<p>&gt; Can you put it on a CD for me?
She asks.</p>

<p>Unix to the rescue!</p>

<p><span id="more-47"></span></p>

<p>Following <a href="http://www.jim.roberts.net/articles/wget.html">this excellent article</a> I had the site saved down to disk in a jiffy, with all links modified to work offline, all images and CSS files copied down.</p>

<p>For your reference, here&#8217;s the command I used.
<pre>    wget --mirror -w 2 -p --html-extension --convert-links -P -H -Dwordpress.com ~/path/to/save/locally http://yourblog.wordpress.com</pre>
Quoting Jim&#8217;s article for the meaning of the command line options:
&gt; &#8211;mirror: specifies to mirror the site. Wget will recursively follow all links on the site and download all necessary files. It will also only get files that have changed since the last mirror, which is handy in that it saves download time.
&gt;
&gt; -w: tells wget to “wait” or pause between requests, in this case for 2 seconds. This is not necessary, but is the considerate thing to do. It reduces the frequency of requests to the server, thus keeping the load down. If you are in a hurry to get the mirror done, you may eliminate this option.
&gt;
&gt; -p: causes wget to get all required elements for the page to load correctly. Apparently, the mirror option does not always guarantee that all images and peripheral files will be downloaded, so I add this for good measure.
&gt;
&gt; &#8211;html-extension: All files with a non-html extension will be converted to have an html extension. This will convert any cgi or asp generated files to html extensions for consistency.
&gt;
&gt; &#8211;convert-links: all links are converted so they will work when you browse locally. Otherwise, relative (or absolute) links would not necessarily load the right pages, and style sheets could break as well.
&gt;
&gt; -P (prefix folder): the resulting tree will be placed in this folder. This is handy for keeping different copies of the same site, or keeping a “browsable” copy separate from a mirrored copy.</p>

<p>I&#8217;ve also added my own at the end of Jim&#8217;s version:
<pre>-H -Dwordpress.com</pre>
These options tell wget to recursively fetch any file within the .wordpress.com domain &#8211; otherwise the stylesheets and images for the blog, which are stored in different subdomains of wordpress.com, will not be downloaded.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mattwynne.net/2008/04/11/saving-your-wordpress-blog-to-cd/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Markdown Posts Not Appearing in WordPress Homepage?</title>
		<link>http://blog.mattwynne.net/2008/01/16/markdown-posts-not-appearing-in-wordpress-homepage/</link>
		<comments>http://blog.mattwynne.net/2008/01/16/markdown-posts-not-appearing-in-wordpress-homepage/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 02:04:16 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[markdown]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.mattwynne.net/2008/01/16/markdown-posts-not-appearing-in-wordpress-homepage/</guid>
		<description><![CDATA[Hmph. I just discovered Markdown which makes a great partner to the TextMate Blogging Bundle, but my recent markdown-formatted posts don&#8217;t seem to be appearing on the homepage of my blog&#8230; Anyone know what&#8217;s going on?]]></description>
			<content:encoded><![CDATA[<p>Hmph. I just discovered <a href="http://michelf.com/projects/php-markdown/">Markdown</a> which makes a great partner to the <a href="http://blog.macromates.com/2006/blogging-from-textmate/">TextMate Blogging Bundle</a>, but my <a href="http://blog.mattwynne.net/2008/01/16/where-scrum-gets-dangerous-potentially-shippable-make-sure-you-mean-it/">recent</a> <a href="http://blog.mattwynne.net/2008/01/16/kanban-for-software-explained-some-more/">markdown-formatted</a> posts don&#8217;t seem to be appearing on the homepage of my blog&#8230;</p>

<p>Anyone know what&#8217;s going on?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mattwynne.net/2008/01/16/markdown-posts-not-appearing-in-wordpress-homepage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

