<?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>Anyone Can Edit</title>
	<atom:link href="http://anyonecanedit.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://anyonecanedit.org/blog</link>
	<description>Free content, free software, and just about anything else free</description>
	<lastBuildDate>Fri, 05 Mar 2010 10:46:06 +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>Pushing to a release</title>
		<link>http://anyonecanedit.org/blog/2010/03/pushing-to-a-release/</link>
		<comments>http://anyonecanedit.org/blog/2010/03/pushing-to-a-release/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 10:38:31 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[branches]]></category>
		<category><![CDATA[new-software]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=290</guid>
		<description><![CDATA[That's right, MediaWiki v1.16 has been branched and a release candidate is underway.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s one of those wonderful times of the year, when we get to branch MediaWiki for a stable release. That&#8217;s right, MediaWiki v1.16 has been branched and a release candidate is underway. Those of you following MediaWiki&#8211;either as a Wikimedian or for your outside uses&#8211;know that 1.16 has been a long time coming. Code reviewing has finally caught up to trunk and it&#8217;s high time a release is put forth.</p>
<p>A <em>lot</em> has changed in 1.16 (for the brave, the <a title="Mediawiki 1.16 - Release Notes" href="http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_16/phase3/RELEASE-NOTES?revision=62819&amp;view=markup">full RELEASE-NOTES</a>), and I&#8217;d like to hit on some of the major things here that I think need mention:</p>
<ul>
<li>The Metadata editor ($wgUseMetadataEdit) has been split into a separate extension, MetadataEdit</li>
<li>Introduced CDB interface for high-performance constant data</li>
<li>Default output format is now HTML5 instead of XHTML 1.0 Transitional (see $wgHtml5)</li>
<li>Maintenance scripts got a lot of cleanup and reorganization, AdminSettings.php no longer required</li>
<li><a title="Mediawiki hook list" href="http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_16/phase3/docs/hooks.txt?view=markup">New hooks</a></li>
<li>Major improvements in SQLite support</li>
<li>Test suite is now at least organized (will see more coming here in 1.17)</li>
<li>Many many other bug fixes and new features</li>
</ul>
<p>Hopefully we&#8217;ll see a general update to the Wikimedia cluster coming in the very near future, meaning that non-critical bugfixes that have been &#8220;Fixed in SVN&#8221; will finally see production deployment. The first 1.16 release candidate will be coming soon as well, which I encourage those of you using MediaWiki to download and test it out for us. See what works, what needs tweaking and what&#8217;s downright broken. It&#8217;s a big release, so we&#8217;d like to get as much feedback as humanly possible.</p>
<p><strong>Remember that all bugs goto </strong><a title="Bugzilla" href="https://bugzilla.wikimedia.org/"><strong>Bugzilla</strong></a><strong> (recently upgraded and restyled), and more information is always better than less.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2010/03/pushing-to-a-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit Testing</title>
		<link>http://anyonecanedit.org/blog/2010/02/unit-testing/</link>
		<comments>http://anyonecanedit.org/blog/2010/02/unit-testing/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:15:24 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=287</guid>
		<description><![CDATA[Unit testing sucks. Tests are boring to write, nobody wants to run them, and thus they are subject to bitrot. For years, the only (actively) maintained tests were the parserTests to help handle regressions in MediaWiki&#8217;s wikitext parser. There were some PHPUnit-based ones in /tests and some custom TAP-based ones in /t. Neither worked perfectly, [...]]]></description>
			<content:encoded><![CDATA[<p>Unit testing sucks. Tests are boring to write, nobody wants to run them, and thus they are subject to bitrot. For years, the only (actively) maintained tests were the parserTests to help handle regressions in MediaWiki&#8217;s wikitext parser. There were some PHPUnit-based ones in /tests and some custom TAP-based ones in /t. Neither worked perfectly, and neither is complete by any stretch of the word.</p>
<p>The past couple of days, things have at least improved. We&#8217;ve nuked /t entirely, meaning unit tests are going to be PHPUnit-based from here on out. All useful tests in /t were ported over first. Also, Mark has written a wrapper for the parser tests allowing them to be invoked as a normal part of the unit testing routine (this needs a rewrite to put the code in native PHPUnit format, rather than the hacky method we&#8217;re using now). While working on this, a couple of things have become apparent:</p>
<ol>
<li>Globals suck. Period. Trying to set up an instance of MediaWiki&#8211;which relies wayyyy too heavily on globals&#8211;in a non-global context (which PHPUnit does not run in) is a pain. I plan to be much more agressive on globals post-branching.</li>
<li>We need more unit tests. Code coverage is far from complete, but at least by unifying the tests we can try to encourage people to write more tests.</li>
<li>Need to work with Brion to redo the magic upload-test-results-to-CR bridge. PHPUnit can output test results in a variety of formats (TAP, XML&#8230;), and CodeReview should use this, rather than reinventing the wheel ourselves.</li>
</ol>
<p>Finally, all the tests have been moved from /tests to /maintenance/tests, removing yet another top-level directory in the install. Oh yeah, code review is pretty much caught up too, which is a Good Thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2010/02/unit-testing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m alive</title>
		<link>http://anyonecanedit.org/blog/2009/11/im-alive/</link>
		<comments>http://anyonecanedit.org/blog/2009/11/im-alive/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 14:02:59 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=273</guid>
		<description><![CDATA[I swear I&#8217;m alive! I just kind of disappeared for a bit.
School got really busy, and then I ran off to Paris for the Multimedia Usability Project Meeting. It was massively productive, and I got to meet a lot of really cool people I&#8217;ve known for a long time online but never met in person. [...]]]></description>
			<content:encoded><![CDATA[<p>I swear I&#8217;m alive! I just kind of disappeared for a bit.</p>
<p>School got really busy, and then I ran off to Paris for the <a title="Meta" href="http://meta.wikimedia.org/wiki/Multimedia_Usability_Project_Meeting_France" target="_blank">Multimedia Usability Project Meeting</a>. It was massively productive, and I got to meet a lot of <a title="Meeting Participants" href="http://meta.wikimedia.org/wiki/Multimedia_Usability_Project_Meeting_France/Participants" target="_blank">really cool people</a> I&#8217;ve known for a long time online but never met in person. Also, major thanks to Delphine for putting the whole thing together and doing a generally fantastic job. A lot of really good work was accomplished while we were there. We spec&#8217;d out a new upload form, we discussed staging areas for new uploads while licensing stuff gets sorted out, the GLAM folks talked about their interests. We had a very good group dynamic of developers and non-developers, and I think it worked out very well in the end. We talked about getting similar small-ish focus groups together in the future; we seem to get a lot done. I&#8217;m not sure how these public links work, but here&#8217;s <a title="Facebook - Paris Pictures" href="http://www.facebook.com/album.php?aid=2288537&amp;id=25520911&amp;l=751a201fe3" target="_blank">my pictures</a> from Paris (if you&#8217;re my friend already, they should be viewable from my profile).</p>
<p>Flew back to Richmond, massively jet lagged. Then I got sick. Like, really sick. As in, I ended up in the hospital for several days kind of sick. In the end, they determined I had viral encephalitis caused by the herpes virus (read the <a title="Wikipedia - Herpesviral encephalitis" href="http://en.wikipedia.org/wiki/Herpes_simplex_encephalitis" target="_blank">scary article</a>). They don&#8217;t know how I got it, but the best we can guess is that my immune system was shot from being low on sleep, stressed out, etc. And since the herpes virus is in a huge percentage of the population anyway&#8211;myself included&#8211;it took advantage of my poor brain. But I&#8217;m fine now, and just trying to catch up on life.</p>
<p>Maybe over winter break I can finally do something with MediaWiki again. <a title="[Wikitech-l] JS2" href="http://lists.wikimedia.org/pipermail/wikitech-l/2009-November/046022.html" target="_blank">Maybe we&#8217;ll actually get 1.16 soon too</a> ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/11/im-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Wikitext</title>
		<link>http://anyonecanedit.org/blog/2009/10/on-wikitext/</link>
		<comments>http://anyonecanedit.org/blog/2009/10/on-wikitext/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:58:22 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=270</guid>
		<description><![CDATA[Wikitext is a monstrous and ferocious beast. Born from a small set of markup choices for text formatting, it has since grown to a plethora of markup and functions. It&#8217;s gotten to the point where people are afraid to edit, due to the nearly insurmountable hurdle of learning the syntax.
The problem with wikitext isn&#8217;t in [...]]]></description>
			<content:encoded><![CDATA[<p>Wikitext is a monstrous and ferocious beast. Born from a small set of markup choices for text formatting, it has since grown to a plethora of markup and functions. It&#8217;s gotten to the point where people are afraid to edit, due to the nearly insurmountable hurdle of learning the syntax.</p>
<p>The problem with wikitext isn&#8217;t in its design itself, it comes when people try to make wikitext do things it was never intended to do. Years ago, people realized that they could make a conditional template. The English Wikipedia produced a template called <tt>{{qif}}</tt> that quickly became used across the entire wiki. This was terribly inefficient, so ParserFunctions was born to solve this problem, and parser functions in general were born.</p>
<p>At some point, somebody wrote an extension to handle string manipulation called StringFunctions. Ever since then, enwiki has been practically begging to get it enabled (see <a title="Bugzilla - Bug 6455" href="https://bugzilla.wikimedia.org/show_bug.cgi?id=6455" target="_blank">bug 6455</a>). This request has been repeatedly denied by the WMF sysadmins, in an effort to keep wikitext from becoming even more insane. Similar to <tt>{{qif}}</tt>, a <a title="Most retarded templates ever" href="http://en.wikipedia.org/wiki/Category:String_manipulation_templates" target="_blank">series of workarounds</a> have been written.</p>
<p>In our future ideal universe, we&#8217;d like to have some sort of meta programming language for templates. Various ideas have been tossed around, including a subset of PHP, Javascript or Lua. Any of these solutions each have their own set of benefits and drawbacks, and none of them are anywhere close to being enabled. And so the debate continues, often, as to what we should do with wikitext.</p>
<p>I remain convinced that wikitext itself is not inherently bad, and does not need fixing. The basic formatting markup and template inclusion is not horrible. It&#8217;s when people try to butcher wikitext to make it do things it was never designed to do that we get nasty results. Adding ParserFunctions didn&#8217;t ruin wikitext, ParserFunctions was designed so Wikipedia wouldn&#8217;t kill itself trying to implement their own <tt>{{#if}}</tt> function. I would argue that the English Wikipedia&#8217;s desire for programmatic templates is what made the language is what made this mess.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/10/on-wikitext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to not write a skin</title>
		<link>http://anyonecanedit.org/blog/2009/09/how-to-not-write-a-skin/</link>
		<comments>http://anyonecanedit.org/blog/2009/09/how-to-not-write-a-skin/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 19:28:18 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[mediawiki-sucks]]></category>
		<category><![CDATA[toomanybytes]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=266</guid>
		<description><![CDATA[I absolutely love Vector. I think it's a fantastic refresh of the classic Monobook skin and I wouldn't mind seeing it as the default skin for MW one day. However, I think it was written very poorly.]]></description>
			<content:encoded><![CDATA[<p>I absolutely love Vector. I think it&#8217;s a fantastic refresh of the classic Monobook skin and I wouldn&#8217;t mind seeing it as the default skin for MW one day. However, I think it was written very poorly.</p>
<p>The Mediawiki skin system sucks donkey balls. Once upon a time, we had a base skin class called Skin. New skins extended this class and customized the portions they need. Then along came Monobook and the absolute hell that is SkinTemplate. The skin system is now a hybrid: some older skins directly subclass Skin (which is <em>technically</em> correct) and anything more recent (Monobook, Modern, Vector) all subclass SkinTemplate. The problem with SkinTemplate is that it basically forked the skin system. We now have 2 ways to make skins&#8211;subclassing either Skin or SkinTemplate&#8211;neither of which are terribly intuitive for new users. When Modern was written, it basically made a copy of Monobook, changed a few things and called it a skin.</p>
<p>When the Usability Team set out to write a new skin this was the prime time to make this whole system make sense. Refactoring as much as possible out of the custom skins and unifying the UI across skins as much as possible would be awesome. Killing SkinTemplate with fire would be even better. Sadly, we got another skin built in the same crappy way using SkinTemplate. Even more work to whatever poor soul finally decides to tackle making a sane skin system.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/09/how-to-not-write-a-skin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Android can do lots of things, swimming is not one of them</title>
		<link>http://anyonecanedit.org/blog/2009/08/android-can-do-lots-of-things-swimming-is-not-one-of-them/</link>
		<comments>http://anyonecanedit.org/blog/2009/08/android-can-do-lots-of-things-swimming-is-not-one-of-them/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 13:49:25 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[coupons]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=263</guid>
		<description><![CDATA[Yesterday I went down to the river with my friend to enjoy the absolutely wonderful weather. It was in the mid-80s, low humidity and the sun was shining. Sat out on the rocks and had a great afternoon. Until we leave.]]></description>
			<content:encoded><![CDATA[<p>Yesterday I went down to the river with my friend to enjoy the absolutely wonderful weather. It was in the mid-80s, low humidity and the sun was shining. Sat out on the rocks and had a great afternoon. Until we leave.</p>
<p>On the way back, I slipped on a rock and dropped my shirt in the water and got pretty wet. Otherwise ok, I got up and proceeded on. Not ten feet away, I slipped again. This time much harder. I dropped everything in the water, including my phone. I fished it out about 30 seconds later, but it was already off. Now, some 15 hours later, it still wont turn on (but it makes a rather loud buzzing sound when you try to put the battery in). I have declared my G1 dead.</p>
<p>This morning, I remembered I still had my crappy Motorola KRZR lying around. Found it, popped in the SIM card (after some struggling, I couldn&#8217;t remember where the SIM card went) and plugged it up&#8211;thank god for universal mini-USB chargers these days. Can&#8217;t find the battery, so I&#8217;ll hop over to T-Mobile later today and buy a fresh one. Hopefully this will all hold together until I can afford a new G1. I don&#8217;t like the MyTouch, so I&#8217;d rather stick with the G1 for now&#8211;unless the Hero comes out soon.</p>
<p>Oh yeah, and I woke up kinda sick this morning. Figures.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/08/android-can-do-lots-of-things-swimming-is-not-one-of-them/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installer preview</title>
		<link>http://anyonecanedit.org/blog/2009/08/installer-preview/</link>
		<comments>http://anyonecanedit.org/blog/2009/08/installer-preview/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:59:00 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[branches]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[screenshots]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=260</guid>
		<description><![CDATA[I promised some screenshots of Tim&#8217;s new installer branch that I&#8217;ve been poking at. Here they are.
The first one I&#8217;d like to show off (and I think many people will applaud) is that the installer is now able to be translated! Here we&#8217;ve got a screenshot of the language selection screen in the installer.

The second [...]]]></description>
			<content:encoded><![CDATA[<p>I promised some screenshots of Tim&#8217;s new installer branch that I&#8217;ve been poking at. Here they are.</p>
<p>The first one I&#8217;d like to show off (and I think many people will applaud) is that the installer is now able to be translated! Here we&#8217;ve got a screenshot of the language selection screen in the installer.</p>
<p><a href="http://anyonecanedit.org/misc/lang_select.png"><img class="aligncenter" title="Language Selector" src="http://anyonecanedit.org/misc/lang_select.png" alt="" width="80%" /></a></p>
<p>The second image I&#8217;d like to show off is the the Database setup screen. It&#8217;s gotten a visual overhaul, and only displays the appropriate settings for your particular database of choice.</p>
<p><a href="http://anyonecanedit.org/misc/mysql_setup.png"><img class="aligncenter" title="MySQL Setup" src="http://anyonecanedit.org/misc/mysql_setup.png" alt="" width="80%" /></a></p>
<p>After selecting the very basic options like a wiki name, we give the user the option to skip the rest and install. This should make life easier for many people who just need a quick-and-dirty setup without all of the extra bells and whistles.</p>
<p><a href="http://anyonecanedit.org/misc/options.png"><img class="aligncenter" title="Options" src="http://anyonecanedit.org/misc/options.png" alt="" width="80%" /></a></p>
<p>We also display the Release Notes, Readme and License in the actual installer, rather than telling people to read them in a text editor. I did some playing with this the other day, and it&#8217;s got a nice clean wiki output. The bug numbers link to the appropriate Bugzilla pages, and the $wgVariables link to their Manual pages on Mediawiki.org. Both I think are nice, if subtle, touches.</p>
<p><a href="http://anyonecanedit.org/misc/release_notes.png"><img class="aligncenter" title="Options" src="http://anyonecanedit.org/misc/release_notes.png" alt="" width="80%" /></a></p>
<p>The new-installer branch still has a way to go. There&#8217;s a list of <a title="New-installer issues - Mediawiki.org" href="http://www.mediawiki.org/wiki/New-installer_issues" target="_blank">known issues</a> over at MW.org. School starts back on Thursday, so I won&#8217;t be able to pour as much time into this branch as I&#8217;d really like over the coming weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/08/installer-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MW 1.16</title>
		<link>http://anyonecanedit.org/blog/2009/08/mw-1-16/</link>
		<comments>http://anyonecanedit.org/blog/2009/08/mw-1-16/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 18:25:45 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[branches]]></category>
		<category><![CDATA[installer]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=256</guid>
		<description><![CDATA[MediaWiki version 1.16 is already looking to be a massive release. Since the 1.15 branch, we&#8217;ve seen Michael Dale&#8217;s upload branch merged, my maintenance overhaul branch merged, a new skin, dozens of bugs fixed and enhancements added, thousands of translations updated&#8230;have I missed anything? I probably have. MediaWiki was branched in from r48811 (plus a [...]]]></description>
			<content:encoded><![CDATA[<p>MediaWiki version 1.16 is already looking to be a massive release. Since the 1.15 branch, we&#8217;ve seen Michael Dale&#8217;s upload branch merged, my maintenance overhaul branch merged, a new skin, dozens of bugs fixed and enhancements added, thousands of translations updated&#8230;have I missed anything? I probably have. MediaWiki was branched in from r48811 (plus a bunch of backported fixes). We&#8217;re currently on r55194 as I write this. I don&#8217;t think you have to be a developer to realize that 6383 commits (in less than 5 months!) between versions leads to a lot of changes.</p>
<p>Need I mention we haven&#8217;t even branched 1.16 yet? Who knows what else might make it into the 1.16 release? Any particular bugs you&#8217;d like to see fixed soon?</p>
<p>PS: I plan to whip up some screenshots from the new-installer branch soon :)</p>
<p>[Edit: Werdna reminded me about his Preferences rewrite. So a total of 3 branches merged]</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/08/mw-1-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And the votes are in!</title>
		<link>http://anyonecanedit.org/blog/2009/08/and-the-votes-are-in/</link>
		<comments>http://anyonecanedit.org/blog/2009/08/and-the-votes-are-in/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 18:53:33 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Free content]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=254</guid>
		<description><![CDATA[The election results have been announced. Congrats to all that ran.
Sorry to see Domas leave the board, he was among my more favorite candidates. Overall I&#8217;m pretty happy with the results though.
]]></description>
			<content:encoded><![CDATA[<p>The election results have been <a href="http://lists.wikimedia.org/pipermail/foundation-l/2009-August/053972.html">announced</a>. Congrats to all that ran.</p>
<p>Sorry to see <a href="http://dammit.lt">Domas</a> leave the board, he was among my more favorite candidates. Overall I&#8217;m pretty happy with the results though.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/08/and-the-votes-are-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Branch merge</title>
		<link>http://anyonecanedit.org/blog/2009/08/branch-merge/</link>
		<comments>http://anyonecanedit.org/blog/2009/08/branch-merge/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:45:51 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Mediawiki Development]]></category>
		<category><![CDATA[Wikis]]></category>
		<category><![CDATA[maintenance]]></category>

		<guid isPermaLink="false">http://anyonecanedit.org/blog/?p=247</guid>
		<description><![CDATA[Also briefly (I didn&#8217;t blog this already?), I merged the maintenance branch in r54225! Had some cleanup (ok, a lot of cleanup), but everything seems to be ok now. 
Last major goals with this: finish cleanup of scripts to subclass Maintenance, phase out WMF-specific crap, remove last of the ancient and unused stuff, overhaul update [...]]]></description>
			<content:encoded><![CDATA[<p>Also briefly (I didn&#8217;t blog this already?), I merged the maintenance branch in <a href="http://www.mediawiki.org/wiki/Special:Code/MediaWiki/54225">r54225</a>! Had some cleanup (ok, a lot of cleanup), but everything seems to be ok now. </p>
<p>Last major goals with this: finish cleanup of scripts to subclass Maintenance, phase out WMF-specific crap, remove last of the ancient and unused stuff, overhaul update system. I go back to school next week, so I didn&#8217;t really hit my personal goal of finishing it before the fall semester, but I did a pretty damn good job if I do say so myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://anyonecanedit.org/blog/2009/08/branch-merge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
