<?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>mudpy &#187; Documentation</title>
	<atom:link href="http://mudpy.org/category/documentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://mudpy.org</link>
	<description>Now with more filth!</description>
	<lastBuildDate>Wed, 18 Aug 2010 16:18:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Version Control and History</title>
		<link>http://mudpy.org/20100126/version-control-and-history/</link>
		<comments>http://mudpy.org/20100126/version-control-and-history/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:48:19 +0000</pubDate>
		<dc:creator>fungi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://mudpy.org/?p=106</guid>
		<description><![CDATA[In an effort to step up development and encourage community collaboration, I&#8217;ve invested considerable time combing through half a decade of archived preview releases and importing them accurately into a version-controlled repository complete with detailed commit logs. I&#8217;m using Git for version control on the project from this point forward. The archive can be cloned [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to step up development and encourage community collaboration, I&#8217;ve invested considerable time combing through half a decade of archived preview releases and importing them accurately into a version-controlled repository complete with detailed commit logs.</p>
<p>I&#8217;m using <a href="http://git-scm.com/">Git</a> for version control on the project from this point forward. The archive can be cloned anonymously from <a href="/git/mudpy">http://mudpy.org/git/mudpy</a> if desired. For now, detailed commits can be E-mailed to <a href="mailto:fungi@yuggoth.org">fungi@yuggoth.org</a>, but I&#8217;ll be setting up a developer mailing list for more open presentation and discussion of patches soon (and putting together a submission guideline document with additional, pertinent information).</p>
<p>I&#8217;ve set up a <a href="http://git.wiki.kernel.org/index.php/Gitweb">Gitweb</a> interface to make the change history easier to browse. This can be found at <a href="/gitweb/mudpy/">http://mudpy.org/gitweb/mudpy/</a> (also linked from the <a href="/documentation/">documentation</a> page). The interface should be fairly self-explanatory.</p>
<p>I&#8217;ve also started including a <a href="http://www.gnu.org/prep/standards/html_node/Style-of-Change-Logs.html#Style-of-Change-Logs">GNU-format</a> <a href="/res/src/mudpy/doc/ChangeLog">ChangeLog</a> file (linked from the <a href="/documentation/">documentation</a> page as well), generated automatically from repository <a href="/gitweb?p=mudpy;a=log">commit logs</a>. It will be included in all future tarball/zip files, since these will begin to be exported automatically after each new commit.</p>
]]></content:encoded>
			<wfw:commentRss>http://mudpy.org/20100126/version-control-and-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UTF-8 Support</title>
		<link>http://mudpy.org/20090523/utf-8-support/</link>
		<comments>http://mudpy.org/20090523/utf-8-support/#comments</comments>
		<pubDate>Sat, 23 May 2009 23:58:02 +0000</pubDate>
		<dc:creator>fungi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://mudpy.org/?p=63</guid>
		<description><![CDATA[UTF-8 encoded input is now accepted from clients who negotiate the transmit binary Telnet option for sending, and UTF-8 output will be sent to any clients negotiating it for receiving (though clients should usually negotiate neither or both together). Most surveyed MUD clients have limited or no support at present, but this situation is slowly [...]]]></description>
			<content:encoded><![CDATA[<p>UTF-8 encoded input is now accepted from clients who negotiate the <em>transmit binary</em> Telnet option for sending, and UTF-8 output will be sent to any clients negotiating it for receiving (though clients should usually negotiate neither or both together). Most surveyed MUD clients have limited or no support at present, but this situation is slowly improving. In the meantime, rudimentary <a href="/documentation/utf-8-encoding/">UTF-8/binary-mode Telnet documentation</a> is being drafted to help simplify testing, and in hopes that this can serve as a reference implementation for other MUD clients and engines in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://mudpy.org/20090523/utf-8-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean-Up</title>
		<link>http://mudpy.org/20090303/clean-up/</link>
		<comments>http://mudpy.org/20090303/clean-up/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 15:36:33 +0000</pubDate>
		<dc:creator>fungi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://mudpy.org/?p=57</guid>
		<description><![CDATA[Rather than keeping other improvements from going in while the new data format is under development, I&#8217;m treating that as a separate branch and continuing on the existing codebase in parallel for now. A new style guide has been added, and the code itself improved to meet it. Highlights: reformatted with three-space tabstops all lines [...]]]></description>
			<content:encoded><![CDATA[<p>Rather than keeping other improvements from going in while the new data format is under development, I&#8217;m treating that as a separate branch and continuing on the existing codebase in parallel for now. A new <a href="/documentation/coding-style/">style guide</a> has been added, and the code itself improved to meet it. Highlights:</p>
<ul>
<li>reformatted with three-space tabstops</li>
<li>all lines wrapped to fewer than 80 characters</li>
<li>modules imported within the objects requiring them</li>
<li>replaced the previously included <a href="http://katarsis.mudpy.org/">カタルシス&nbsp;//&nbsp;Katarsis</a> data with a much smaller, simplified sample dataset</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mudpy.org/20090303/clean-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improved License</title>
		<link>http://mudpy.org/20071204/new-license/</link>
		<comments>http://mudpy.org/20071204/new-license/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 17:29:11 +0000</pubDate>
		<dc:creator>fungi</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://mudpy.org/?p=26</guid>
		<description><![CDATA[The previous BSD-like mudpy license has been replaced with the one used by the OpenBSD project. It&#8217;s modeled after the Internet Software Consortium’s, a two-clause BSD license removing language made unnecessary by the Berne convention. This new license is functionally identical to the old one, just more terse and openly recognized. While I was at [...]]]></description>
			<content:encoded><![CDATA[<p>The previous BSD-like mudpy license has been replaced with the one used by <a href="http://www.openbsd.org/">the OpenBSD project</a>.  It&#8217;s modeled after the <a href="http://www.isc.org/">Internet Software Consortium</a>’s, a  two-clause BSD license removing language made unnecessary by the Berne convention. <a href="/license/">This new license</a> is functionally identical to the old one, just more terse and openly recognized.</p>
<p>While I was at it, I made sure to correct the copyright dates on some of the files in the current release and add a copyright statement to any files previously lacking one.</p>
]]></content:encoded>
			<wfw:commentRss>http://mudpy.org/20071204/new-license/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>To Do List</title>
		<link>http://mudpy.org/20070610/to-do-list/</link>
		<comments>http://mudpy.org/20070610/to-do-list/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 01:01:43 +0000</pubDate>
		<dc:creator>fungi</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://mudpy.org/?p=20</guid>
		<description><![CDATA[In the interest of development process transparency (and also as a list of patch requests for anyone interested in pitching in), the mudpy to do list has been added to this site. In it you&#8217;ll find a (hopefully) up-to-date, if rather disorganized, list of things that need to be tackled in both the source code [...]]]></description>
			<content:encoded><![CDATA[<p>In the interest of development process transparency (and also as a list of patch requests for anyone interested in pitching in), the <a href="http://mudpy.org/documentation/to-do/">mudpy to do list</a> has been added to this site. In it you&#8217;ll find a (hopefully) up-to-date, if rather disorganized, list of things that need to be tackled in both the source code and sample data.</p>
]]></content:encoded>
			<wfw:commentRss>http://mudpy.org/20070610/to-do-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

