<?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"
	>

<channel>
	<title>bigredradish</title>
	<atom:link href="http://www.bigredradish.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bigredradish.com</link>
	<description>web design with crunch!</description>
	<pubDate>Fri, 02 May 2008 16:10:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>New flickr feed!</title>
		<link>http://www.bigredradish.com/2008/05/02/new-flickr-feed/</link>
		<comments>http://www.bigredradish.com/2008/05/02/new-flickr-feed/#comments</comments>
		<pubDate>Fri, 02 May 2008 13:16:03 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigredradish.com/?p=46</guid>
		<description><![CDATA[I&#8217;ve finally got round to having a dedicated flickr feed for the bigredradish site, rather than random pictures of my cat Archie.   If anyone however, should be missing the photos of Archie, they are still available.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got round to having a dedicated <a title="bigredradish on flickr" href="http://www.flickr.com/photos/66734184%40N00/"><span class="flickr-blue">flick</span><span class="flickr-pink">r</span> feed</a> for the big<span class="radish-red">red</span>radish site, rather than random pictures of my cat Archie.   If anyone however, should be missing the photos of Archie, they are <a title="Photos of Archie the cat" href="http://www.flickr.com/photos/66734184%40N00/">still available</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2008/05/02/new-flickr-feed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweaking Dagon Design Secure PHP Form Mailer Script</title>
		<link>http://www.bigredradish.com/2008/04/03/tweaking-dagon-design-secure-php-form-mailer-script/</link>
		<comments>http://www.bigredradish.com/2008/04/03/tweaking-dagon-design-secure-php-form-mailer-script/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 00:00:47 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[PHP]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.bigredradish.com/?p=40</guid>
		<description><![CDATA[I use the Secure PHP Form Mailer plugin from Dagon Design for my contact form -  I like it because it is simple, it allows you to set up a contact from easily, but also lets you create more complex forms if needed.  My only gripe with it is that some of the [...]]]></description>
			<content:encoded><![CDATA[<p>I use the <a title="[external link] to Dagon Design site" href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/">Secure PHP Form Mailer plugin</a> from Dagon Design for my contact form -  I like it because it is simple, it allows you to set up a contact from easily, but also lets you create more complex forms if needed.  My only gripe with it is that some of the HTML code it generates is not as standards compliant or semantically structured as it could be, time to get my hands dirty.</p>
<p><em>Before I go any further I have to make it clear that I am no PHP expert, in fact I hardly know any PHP - I&#8217;m learning but for now I&#8217;m just stubborn and persistent.</em></p>
<p>Here&#8217;s how I have tweaked the code.<span id="more-40"></span> The form that the plugin generates is fine and validates.  However, while I was testing how the missing field errors were displayed I noticed that they were piled up on top of the first form field.  (please note I am using my own CSS to control the form elements not the CSS file that comes with dd-formmailer)</p>
<p><img class="post-image" title="original error display" src="http://www.bigredradish.com/notes/wp-content/uploads/2008/04/original.jpg" alt="Output for original formmail error" width="362" height="288" /></p>
<p>The source code for this was interesting:</p>
<ol class="code">
<li><code>&lt;div class="ddfmwrap"&gt;</code></li>
<li><code>&lt;div class="ddfmerrors"&gt;Errors!&lt;/div&gt;</code></li>
<li><code>&lt;div class="errorlist"&gt;Missing required field  'Email'&lt;br /&gt;</code></li>
<li><code>Missing required field  'Subject'&lt;br /&gt;</code></li>
<li><code>Missing required field  'Please confirm that you are not a spambot'&lt;br /&gt;</code></li>
<li><code>Missing required field  'Message'&lt;/div&gt;&lt;br /&gt;</code></li>
<li><code>&lt;div style="clear:both;"&gt;&lt;!-- --&gt;&lt;/div&gt;</code></li>
<li><code>&lt;/div&gt;</code></li>
</ol>
<p>As you can see that despite being given the <code>class</code> of &#8216;errorlist&#8217; the markup is not actually a list, just text in a <code>&lt;div&gt;</code> made into a list using line breaks.  It also contains a <code>&lt;div&gt;</code> with some inline CSS.  Whilst this code validates, it is not semantically correct. In addition the lack of any formatting elements such as <code>&lt;p&gt;</code> or <code>&lt;li&gt;</code> makes the typography hard to control and the culprit for the error list text stacking up on top of the label for the first field.</p>
<p>A much better (and semantic) way to present this would be:</p>
<ol class="code">
<li><code>&lt;div class="ddfmwrap"&gt;</code></li>
<li><code>&lt;h4 class="ddfmerrors"&gt;Errors!&lt;/h4&gt;</code></li>
<li><code>&lt;ul class="errorlist"&gt;</code></li>
<li><code>&lt;li&gt;Missing required field  'Subject'&lt;/li&gt;</code></li>
<li><code>&lt;li&gt;Missing required field  'Please confirm that you are not a spambot'&lt;/li&gt;</code></li>
<li><code>&lt;li&gt;Missing required field  'Message'&lt;/li&gt;</code></li>
<li><code>&lt;/ul&gt;</code></li>
<li><code>&lt;/div&gt;</code></li>
</ol>
<p>So I had a look around in the script for the formmailer (dd-formmailer.php) and found code that controls the error list:</p>
<ol class="code">
<li><code>if ($errors) {</code></li>
<li><code>$o .= '&lt;div class="ddfmwrap"&gt;&lt;div class="ddfmerrors"&gt;' . DDFM_ERRORMSG . '&lt;/div&gt;';</code></li>
<li><code>$o .= '&lt;div class="errorlist"&gt;';</code></li>
<li><code>foreach ($errors as $err) {</code></li>
<li><code>$o .= $err . '&lt;br /&gt;';</code></li>
<li><code>}</code></li>
<li><code>$o .= '&lt;div style="clear:both;"&gt;&lt;!-- --&gt;&lt;/div&gt;&lt;/div&gt;';</code></li>
</ol>
<p>and changed it to:</p>
<ol class="code">
<li><code>if ($errors) {</code></li>
<li><code>$o .= '&lt;div class="ddfmwrap"&gt;&lt;h4 class="ddfmerrors"&gt;' . DDFM_ERRORMSG . '&lt;/h4&gt;';</code></li>
<li><code>$o .= '&lt;ul class="errorlist"&gt;';</code></li>
<li><code>foreach ($errors as $err) {</code></li>
<li><code>$o .= '&lt;li&gt;' . $err . '&lt;/li&gt;';</code></li>
<li><code>}</code></li>
<li><code>$o .= '&lt;/ul&gt;&lt;/div&gt;';</code></li>
</ol>
<p>which gave me the following:</p>
<p><img class="post-image" title="unstyled-list" src="http://www.bigredradish.com/notes/wp-content/uploads/2008/04/unstyled-list.jpg" alt="rendering of the unstyled list" width="362" height="288" /></p>
<p>Much nicer!  I also changed the <code>DDFM_ERRORMSG</code> form &#8216;Errors!&#8217; to something a bit more friendly (to do this you need to go into the &#8216;lang&#8217; folder of the &#8216;dd-formmailer&#8217; plugin, select the file that coresponds to your language, open it up in a text editor and change <code>define('DDFM_ERRORMSG', 'Errors!');</code> to anything you like e.g. <code>define('DDFM_ERRORMSG', 'Whoops! There were some errors.');</code>)</p>
<p>Now that I have a nice semantic list, I can make it a bit more funky using a little bit of CSS to give me:</p>
<p><img class="post-image" title="styled-list" src="http://www.bigredradish.com/notes/wp-content/uploads/2008/04/styled-list.jpg" alt="rendering of th finished error list" width="362" height="288" /></p>
<p>Lovely!</p>
<p>Well. that&#8217;s it for my first tutorial.  Hope it was helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2008/04/03/tweaking-dagon-design-secure-php-form-mailer-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New look for bigredradish - coming soon!</title>
		<link>http://www.bigredradish.com/2008/03/26/new-look-for-bigredradishcom/</link>
		<comments>http://www.bigredradish.com/2008/03/26/new-look-for-bigredradishcom/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 15:22:22 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[layout]]></category>

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

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

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

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=19</guid>
		<description><![CDATA[Well, it&#8217;s been a long time since I last posted anything , but there has been a lot going on in the background!

The first change is this little fellow - Huw, born in October last year and it is amazing how something so small can take up so much of your spare time.
The second change [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been a long time since I last posted anything , but there has been a lot going on in the background!</p>
<p><img src="http://www.bigredradish.com/notes/wp-content/uploads/2008/03/huw.jpg" class="post-thumb" alt="photo of Huw" /></p>
<p>The first change is this little fellow - Huw, born in October last year and it is amazing how something so small can take up so much of your spare time.</p>
<p>The second change is the upcoming makeover for the site.  It has been a while in the making but I have been taking time to get things just right.  <span id="more-19"></span></p>
<p>The new site is built using <a href="http://wordpress.org/" title="external link to the Wordpress website">Wordpress</a> as the &#8216;back-end&#8217;, unlike the old site, which is/was a bit of a &#8216;Franken-site&#8217; of static pages and a Worpress blog for the &#8216;notes&#8217; section.  It worked fine like that but was I pulling my recent posts into the static pages using an RSS parser which was not ideal.  So, I have learned how to use Wordpress properly and the current release (2.3) is actually more flexible as a <acronym title="Content Management System">CMS</acronym> than I thought.  I think I&#8217;ll probably move to <a href="http://http://expressionengine.com/" title="external link to the expression engine website">Expression Engine</a> eventually as it offers more flexibility, but as I already had a Wordpress based blog  I set myself the challenge of making it work for me.</p>
<p>The main change for the new site (and indeed the way I work in general) is how it is constructed.  After reading the chapter by <a href="http://www.markboulton.co.uk/" title="external link to Mark Boulton's site">Mark Boulton</a> in the book <cite>Web Standards Creativity</cite> and <a href="http://24ways.org/2006/compose-to-a-vertical-rhythm">Richard Rutter&#8217;s 24 ways article</a> I have become fascinated by typographic design and grid-based layouts.  The new site is centered around a six column grid and a 21px vertical rhythm - I&#8217;ll write more about this in later posts.</p>
<p>So, look out for the new site and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2008/03/26/new-look-for-bigredradishcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New site going live this weekend!</title>
		<link>http://www.bigredradish.com/2007/06/09/new-site-going-live-this-weekend/</link>
		<comments>http://www.bigredradish.com/2007/06/09/new-site-going-live-this-weekend/#comments</comments>
		<pubDate>Sat, 09 Jun 2007 09:57:17 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=14</guid>
		<description><![CDATA[The new and improved bigredradish website wil be going live over this weekend.  Some pages will not be available from time to time while I am doing this but please bare with me.  The full site should be available by Monday!
]]></description>
			<content:encoded><![CDATA[<p>The new and improved <span class="black">big</span><span class="red">red</span><span class="black">radish</span> website wil be going live over this weekend.  Some pages will not be available from time to time while I am doing this but please bare with me.  The full site should be available by Monday!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/06/09/new-site-going-live-this-weekend/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Maybe it&#8217;s iTunes and RAID?</title>
		<link>http://www.bigredradish.com/2007/06/05/maybe-its-itunes-and-raid/</link>
		<comments>http://www.bigredradish.com/2007/06/05/maybe-its-itunes-and-raid/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 15:30:09 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[MS/vista]]></category>

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

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=11</guid>
		<description><![CDATA[I&#8217;ve just done a bit of searching around and it may be my RAID array causing the conflict with iTunes/Quicktime on my Vista machine.  A report at Tweaktown.com suggests that playing a QuickTime file on a Vista machine with a RAID array of SATA disks may cause a problem that makes it seem as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just done a bit of searching around and it may be my <acronym title="Redundant Arrays of Inexpensive Disks">RAID</acronym> array causing the conflict with iTunes/Quicktime on my Vista machine.  A report at <a href="http://www.tweaktown.com/news/7542/consumer_alert_quicktime_plays_havoc_with_raid_in_vista/index.html" title="Quicktime plays havoc with RAID in Vista">Tweaktown.com</a> suggests that playing a QuickTime file on a Vista machine with a RAID array of <acronym title="Serial Advanced Technology Attachment">SATA</acronym> disks may cause a problem that makes it seem as if a drive is failing.<span id="more-11"></span></p>
<p>The problem has to do with the way that iTunes/Quicktime accesses the hard drive when doing multiple simultaneous read/writes to/from the array.   And, in hindsight, this is presumably why mp4/QuickTime files play OK from a non-RAID external hard drive.  It would also explain why, about a month ago, I had a major system crash while trying to watch a QuickTime file - luckily I managed to restore Vista to a previously known good configuration!  But it was touch and go for a while.</p>
<p>I think the problem is more to do with QuickTime rather than iTunes as music files seem to play perfectly well (although I guess the mini-freeze when trying to add album artwork to an mp3 may have something to do with the read/write to the RAID array?)</p>
<p>So who&#8217;s fault is it Apple, Intel or Microsoft?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/06/05/maybe-its-itunes-and-raid/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iTunes and Vista still not playing together!</title>
		<link>http://www.bigredradish.com/2007/06/05/itunes-and-vista-still-not-playing-together/</link>
		<comments>http://www.bigredradish.com/2007/06/05/itunes-and-vista-still-not-playing-together/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 14:25:28 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[MS/vista]]></category>

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

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=10</guid>
		<description><![CDATA[The relationship between iTunes and Vista is still a fragile one!  After eagerly downloading iTunes version 7.2 (which now appears to be officially Vista compatible), I waited in anticipation to see whether I could finally watch a video podcast and - No! It would seem that apple still haven&#8217;t figured out how to get [...]]]></description>
			<content:encoded><![CDATA[<p>The relationship between iTunes and Vista is still a fragile one!  After eagerly downloading <a href="http://www.apple.com/itunes/download/" title="external link to the iTunes download page">iTunes version 7.2</a> (which now appears to be officially Vista compatible), I waited in anticipation to see whether I could finally watch a video podcast and - No! It would seem that apple still haven&#8217;t figured out how to get iTunes/Quicktime to play mp4 files from the hard disk that iTunes is installed on, so for now I guess I&#8217;ll have to  carry on with  the quirky process of copying all my mp4 files to external hard drive to be able to watch them.  At least it seems as though I can batch process addition of artwork on to mp3s now - with a little bit of patience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/06/05/itunes-and-vista-still-not-playing-together/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Updating notes theme</title>
		<link>http://www.bigredradish.com/2007/05/22/updating-notes-theme/</link>
		<comments>http://www.bigredradish.com/2007/05/22/updating-notes-theme/#comments</comments>
		<pubDate>Tue, 22 May 2007 11:19:39 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=9</guid>
		<description><![CDATA[Please bear with me over the next couple of days as I am updating the look and feel of the notes section.
]]></description>
			<content:encoded><![CDATA[<p>Please bear with me over the next couple of days as I am updating the look and feel of the notes section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/05/22/updating-notes-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google launches &#8216;Universal Search&#8217;</title>
		<link>http://www.bigredradish.com/2007/05/18/google-launches-universal-search/</link>
		<comments>http://www.bigredradish.com/2007/05/18/google-launches-universal-search/#comments</comments>
		<pubDate>Fri, 18 May 2007 11:07:50 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=8</guid>
		<description><![CDATA[In their continuing bid for world domination Google have just released the latest version of their search engine architecture.  The results from the  &#8216;Universal search&#8217; will blend content from Images, Maps, Books, Video, and News.

The Official Google Blog cites:
“With universal search, we&#8217;re attempting to break down the walls that traditionally separated our various [...]]]></description>
			<content:encoded><![CDATA[<p>In their continuing bid for world domination Google have just released the latest version of their search engine architecture.  The results from the  &#8216;Universal search&#8217; will blend content from Images, Maps, Books, Video, and News.<br />
<span id="more-8"></span><br />
<a href="http://googleblog.blogspot.com/2007/05/universal-search-best-answer-is-still.html">The Official Google Blog cites:</a></p>
<blockquote><p><strong>“</strong>With universal search, we&#8217;re attempting to break down the walls that traditionally separated our various search properties and integrate the vast amounts of information available into one simple set of search results<strong>”</strong></p></blockquote>
<p>Also making an appearance is the new navigation bar at the top of all Google pages making it easier to access other Google services such as Gmail.</p>
<p>I&#8217;ve just been having a play with this - and on the whole it works really nicely.  The main search results window still seems to be populated mainly by websites, but on searches for more popular subjects the odd image and video make it into the &#8216;blend&#8217;.  However, if I you are searching specifically for an image you need to click on &#8216;images&#8217; in the new navigation bar.  The new contextual navigation links that appear above the main search window are also quite useful for helping to narrow down the search.</p>
<p>All in all I think the &#8216;blend&#8217; of results in the main window could be a bit better, particularly for images, but as the official Google blog states:</p>
<blockquote><p><strong>“</strong>&#8230;these are just the beginning steps toward the universal search vision. Stay tuned!<strong>”</strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/05/18/google-launches-universal-search/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;ve had it with IE - time to &#8220;Browse Happy&#8221;</title>
		<link>http://www.bigredradish.com/2007/05/17/ive-had-it-with-ie-time-to-browse-happy/</link>
		<comments>http://www.bigredradish.com/2007/05/17/ive-had-it-with-ie-time-to-browse-happy/#comments</comments>
		<pubDate>Thu, 17 May 2007 15:09:58 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Web Standards]]></category>

		<category><![CDATA[internet explorer]]></category>

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

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=7</guid>
		<description><![CDATA[I know IE7 is a lot better than its predecessors but there still seems to be the need for little hacks or workarounds to get IE to play nice!   So if you are getting tired of IE&#8217;s little quirks then join the bigredradish and Browse Happy!

So what was the straw that broke the [...]]]></description>
			<content:encoded><![CDATA[<p>I know IE7 is a lot better than its predecessors but there still seems to be the need for little hacks or workarounds to get IE to play nice!   So if you are getting tired of IE&#8217;s little quirks then join the <span class="black">big</span><span class="red">red</span><span class="black">radish</span> and <a title="Browse Happy: Switch to a safer browser today" href="http://browsehappy.com/">Browse Happy!</a><br />
<span id="more-7"></span></p>
<p>So what was the straw that broke the camel&#8217;s back? The humble <code>q </code>tag! I like to keep my code as semantic as it can possibly be - but it would seem that IE doesn&#8217;t want me to do that!  I know it&#8217;s just one little letter &#8216;q&#8217; , but it allows me to semantically add a short inline quote and provide meaningful additional information via the <code>cite</code> and <code>lang</code> attributes.</p>
<p>Most modern visual browsers (except IE!) will add the quotation marks automatically when <code>q </code>tags are used and these can be made language specific with the <code>lang </code>attribute. But that&#8217;s not very standards compliant I hear you cry. True, it does give this little HTML tag a degree of presentational skill, but personally I think this is far outweighed by the semantic value.</p>
<p>So what am I to do? I know you can use JavaScript to <a href="http://juicystudio.com/article/fixing-ie-quotes.php">fix quotes in internet explorer</a>.  CSS wise, the <code>:before</code> and <code>:after</code> pseudo-elements would do the trick nicely, but are not supported by IE (see what I mean about frustrating)!  In an A List Apart article entitled <a href="http://www.alistapart.com/articles/qtag">Long Live the Q Tag</a> the author suggests adding the quotation marks outside of the <code>q</code> tag for the benefit of IE and then using the <code>:before</code> and <code>:after</code> pseudo-elements to take them away again in compliant browsers.</p>
<p>I know that using the JavaScript method combined with a conditional comment so that only IE 7 and below run the script is probably the best option, but JavaScript always seems a bit too much like pixie magic to me (probably because I don&#8217;t understand it).  At least I know what is going on with the CSS method, although it is a bit of a backwards way of getting round the problem!</p>
<p>Perhaps I&#8217;ll just forget about IE, keep using the <code>q </code>tag as it is and wait for the <a href="http://www.w3.org/TR/2003/WD-xhtml2-20030506/mod-inline-text.html#sec_9.8."><code>quote</code> element in XHTML2</a>.  What will I do in the meantime - Browse Happy!</p>
<p><a title="Browse Happy: Switch to a safer browser today" href="http://browsehappy.com/"><img src="http://www.bigredradish.com/notes/wp-content/themes/bigredradish/images/bh_185x75.gif" alt="Browse Happy logo" width="185" height="75" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/05/17/ive-had-it-with-ie-time-to-browse-happy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Save as PDF or XPS in Microsoft Office 2007</title>
		<link>http://www.bigredradish.com/2007/04/20/save-as-pdf-or-xps-in-microsoft-office-2007/</link>
		<comments>http://www.bigredradish.com/2007/04/20/save-as-pdf-or-xps-in-microsoft-office-2007/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 09:23:15 +0000</pubDate>
		<dc:creator>David Radford</dc:creator>
		
		<category><![CDATA[MS/vista]]></category>

		<guid isPermaLink="false">http://www.bigredradish.com/notes/?p=6</guid>
		<description><![CDATA[Have you ever wished you could save an MS Office file as a pdf?  Do you use Office 2007?
Then wish no longer!

Microsoft Save as PDF or XPS is here and:
&#8230;allows you to export and save to the PDF and XPS formats in eight 2007 Microsoft Office programs. It also allows you to send as [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wished you could save an MS Office file as a pdf?  Do you use Office 2007?</p>
<p>Then wish no longer!<br />
<span id="more-6"></span><br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&amp;DisplayLang=en" title="save as pdf or xps">Microsoft Save as PDF or XPS</a> is here and:</p>
<blockquote><p>&#8230;allows you to export and save to the PDF and XPS formats in eight 2007 Microsoft Office programs. It also allows you to send as e-mail attachment in the PDF and XPS formats in a subset of these programs.</p></blockquote>
<p>I&#8217;ve just tried it out and it seems to work (for me at least) a lot better than other free pdf writers that I have tried. A nice little add-on for those of us who can&#8217;t afford the Adobe pdf writer!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigredradish.com/2007/04/20/save-as-pdf-or-xps-in-microsoft-office-2007/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
