<?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>Free Culture News &#187; Meta</title>
	<atom:link href="http://freeculturenews.com/category/meta/feed/" rel="self" type="application/rss+xml" />
	<link>http://freeculturenews.com</link>
	<description>(let freedom ring)</description>
	<lastBuildDate>Thu, 04 Feb 2010 06:21:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Comment boxes fixed</title>
		<link>http://freeculturenews.com/2008/10/15/comment-boxes-fixed/</link>
		<comments>http://freeculturenews.com/2008/10/15/comment-boxes-fixed/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 02:41:02 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://freeculturenews.com/?p=511</guid>
		<description><![CDATA[Conley has fixed the comment boxes.  Before, anyone not logged in was unable to enter his or her name, e-mail, or Web site into the respective text boxes.  We apologize for anyone who was unable to add comments because of this bug.
]]></description>
			<content:encoded><![CDATA[<p>Conley has fixed the comment boxes.  Before, anyone not logged in was unable to enter his or her name, e-mail, or Web site into the respective text boxes.  We apologize for anyone who was unable to add comments because of this bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://freeculturenews.com/2008/10/15/comment-boxes-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Culture News is now valid XHTML</title>
		<link>http://freeculturenews.com/2008/09/13/free-culture-news-is-now-valid-xhtml/</link>
		<comments>http://freeculturenews.com/2008/09/13/free-culture-news-is-now-valid-xhtml/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 03:38:18 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://freeculturenews.com/?p=285</guid>
		<description><![CDATA[
After a long time of fixing errors on the site, I am proud to say that Free Culture News is now valid XHTML 1.0 Strict.
Almost all errors were caused by editors (myself included) copying and pasting code from other sites, code which either was not XHTML 1.0 Strict, was poorly written in its own right, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" width="88" height="31" /></a></p>
<p>After a long time of fixing errors on the site, I am proud to say that Free Culture News is now <a href="http://validator.w3.org/check?uri=http%3A%2F%2Ffreeculturenews.com%2F">valid XHTML 1.0 Strict</a>.</p>
<p>Almost all errors were caused by editors (myself included) copying and pasting code from other sites, code which either was not XHTML 1.0 Strict, was poorly written in its own right, or depended on other aspects of the copied site.</p>
<p>So to all editors: Please, please, <strong><em>please</em></strong> make sure that your code doesn&#8217;t break the page.  The most preferable way in my opinion to do this is to paste in stuff from other sites as plain text.  To do this, click the &#8220;Show/Hide Kitchen Sink&#8221; button on the WordPress Post toolbar (it&#8217;s the rightmost toolbar button), then click the &#8220;Paste as Plain Text&#8221; button (the clipboard with a &#8220;T&#8221; on it) instead of using CTRL+V.  This is sure to avoid a significant portion of all errors.  Also please verify that your posts are valid by either visiting the link above after posting (it also lives at the bottom of the site) or uploading the raw code in the HTML tab to <a href="http://validator.w3c.org/">the W3C Validator</a>, just in case.</p>
<p>If you&#8217;re feeling adventures, click the link for a detailed report of the most common errors I found and how I fixed them.<span id="more-285"></span></p>
<ol>
<li>
<p>Error: there is no attribute &#8220;border&#8221;.</p>
<p>Fix: Remove the <strong>border=&#8221;0&#8243;</strong> attribute in <strong>img</strong> tag</p>
</li>
<li>
<p>Error: there is no attribute &#8220;target&#8221;.</p>
<p>Fix: Change every instance of <strong>target=&#8221;$TARGET&#8221;</strong> to <strong>onclick=&#8221;target=&#8217;$TARGET&#8217;;&#8221;</strong></p>
</li>
<li>
<p>Error: there is so attribute &#8220;align&#8221;.</p>
<p>Fix: Change <strong>align=&#8221;$ALIGN&#8221;</strong> to <strong>class=&#8221;align$ALIGN&#8221;</strong></p>
</li>
<li>
<p>Error: end tag for element &#8220;p&#8221; which is not open.</p>
<p>Fix: This is a symptom of one of many WordPress bugs.  This happened to me when the post contained either a <strong>div</strong>, <strong>span</strong>, or <strong>hr</strong> tag.  A <a href="http://trac.wordpress.org/ticket/3007">workaround</a> for the <strong>div</strong> tag is to place a line break between the start and end tags, like so:</p>
<blockquote><p>&lt; div &gt;</p>
<p>stuff</p>
<p>&lt; /div &gt;</p></blockquote>
<p>I could not find workarounds for the other tags, so I had to delete them.</p>
</li>
<li>
<p>Error: end tag for &#8220;span&#8221; omitted, but OMITTAG NO was specified.</p>
<p>Fix: Delete <strong>span</strong> tags.  See above.</p>
</li>
<li>
<p>Error: tag p omitted</p>
<p>Fix: See above.</p>
</li>
<li>
<p>Error: XML blah blah blah</p>
<p>Fix: Symptom of above errors.  Fix above errors and these go away.</p>
</li>
</ol>
<p>There are still errors in the comment pages that have more than one comment, but that&#8217;s something I can&#8217;t fix right now.  It&#8217;s a bug in WordPress, not the comments themselves.  If anyone else knows how I can fix <a href="http://validator.w3.org/check?uri=http%3A%2F%2Ffreeculturenews.com%2F2008%2F09%2F11%2Flenovo-gets-rid-of-gnulinux-option%2F&amp;charset=%28detect+automatically%29&amp;doctype=Inline&amp;group=0&amp;st=1&amp;user-agent=W3C_Validator%2F1.591">these</a> <a href="http://validator.w3.org/check?uri=http%3A%2F%2Ffreeculturenews.com%2F2008%2F08%2F29%2Fthe-unfold-trailer%2F&amp;charset=%28detect+automatically%29&amp;doctype=Inline&amp;group=0&amp;user-agent=W3C_Validator%2F1.591">pages</a>, please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://freeculturenews.com/2008/09/13/free-culture-news-is-now-valid-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
