<?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>notes from the mousepad &#187; Documentation</title>
	<atom:link href="http://j1m.net/category/documentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://j1m.net</link>
	<description>user help, free and open source</description>
	<lastBuildDate>Mon, 30 Aug 2010 00:34:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Duck, Duck, Gnu: Mallard and DocBook 5 support in Emacs</title>
		<link>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/</link>
		<comments>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 20:31:30 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[DocBook]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Mallard]]></category>
		<category><![CDATA[RelaxNG]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[nXML-mode]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=223</guid>
		<description><![CDATA[I&#8217;ve been doing some documentation work with Mallard and DocBook 5 recently, and have been looking for software that supports them well.  The trick is that both Mallard and DocBook 5 are based on RelaxNG schemas, and while there are many XML tools out there, there are few that are open source, and fewer still [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>I&#8217;ve been doing some documentation work with Mallard and DocBook 5 recently, and have been looking for software that supports them well.  The trick is that both Mallard and DocBook 5 are based on RelaxNG schemas, and while there are many XML tools out there, there are few that  are open source, and fewer still that support RelaxNG.</p>
<div id="attachment_300" class="wp-caption alignleft" style="width: 202px"><a href="http://j1m.net/wp-content/uploads/2010/08/emacs.jpg"><img class="size-full wp-image-300 " title="emacs" src="http://j1m.net/wp-content/uploads/2010/08/emacs.jpg" alt="http://www.flickr.com/photos/tsmall/4226883729/sizes/s/" width="192" height="128" /></a><p class="wp-caption-text">From flickr user tsmall. Attribution-ShareAlike 2.0 Generic license</p></div>
<p>After perusing my options, I decided to try Emacs with nXML-mode.  Emacs&#8217; nXML-mode provides real-time validation for RelaxNG-based documents, something which no other  open source authoring tool provides. But while nXML-mode can validate XML documents on-the-fly, the default installation is not set up to validate  against the recently-developed Mallard and DocBook 5 schemas.</p>
<p>Thus, to take full advantage of the latest in <a href="http://www.projectmallard.org" target="_blank">duck</a>-<a href="http://www.docbook.org/tdg5/en/html/docbook.html" target="_blank">based</a> documentation technologies, I needed to modify my .emacs file and the nxml-mode files themselves.  What follows is an overview of exactly what I did in the hopes that others can make use of the same changes, too.</p>
<p><span style="text-decoration: underline;"><strong>An nXML-mode foundation</strong></span></p>
<p>Before we get started, though, you should know that much of what follows is derived from information on <a href="http://infohost.nmt.edu/tcc/help/pubs/nxml/" target="_blank">this website</a>.  I encourage you to visit the site, as it provides an introduction to how nXML-mode is configured, and enough of an  introduction to using nXML-mode to make you at least modestly  productive right away.</p>
<p><strong><span style="text-decoration: underline;">Part One: Setting up your .emacs file</span></strong></p>
<p>The first step in setting up nXML-mode for Mallard and DocBook 5 is to make a few changes to your .emacs file.  If you are new to Emacs, your .emacs  file sits in your home directory, and serves as a personalized Emacs  configuration file.  You may need to create the .emacs file if it  doesn&#8217;t already exist.</p>
<p><pre class="brush: xml">;; /usr/share/emacs/site-lisp/tcc-nxml-emacs:  Add these lines
;;      to your .emacs to use nxml-mode.  For documentation of
;;      this mode, see http://www.nmt.edu/tcc/help/pubs/nxml/
;;--
;; Add the nxml files to emacs's search path for loading:
;;--
(setq load-path
      (append load-path
              '(&quot;/usr/share/emacs/site-lisp/nxml/&quot;)))
;;--
;; Make sure nxml-mode can autoload
;;--
(load &quot;/usr/share/emacs/site-lisp/nxml/rng-auto.el&quot;)

;;--
;; Load nxml-mode for files ending in .xml, .xsl, .rng, .xhtml .page
;;--
(setq auto-mode-alist
      (cons '(&quot;\\.\\(xml\\|xsl\\|rng\\|xhtml\\|page\\)\\'&quot; . nxml-mode)
            auto-mode-alist))</pre></p>
<p>The above .emacs configuration tells Emacs where  to look for detailed XML processing instructions, and also causes Emacs to automatically use nXML-mode for XML-related  files.  (Did I tell you that Emacs might have a bit of a learning curve?  Yeah, that&#8217;s true.)</p>
<p><span style="text-decoration: underline;"><strong>Part Two: Modifying the nXML-mode configuration files</strong></span></p>
<p>The second step is to modify the nXML-mode configuration files themselves. This will add the appropriate nXML-mode secret sauce to handle Mallard and DocBook 5 documents.</p>
<p>Fortunately for you, I grabbed the latest nXML-mode source files  from the <a href="http://www.thaiopensource.com/nxml-mode/" target="_blank">nXML-mode website</a>, and made the appropriate modifications myself.  You can download my customized nXML-mode files <a title="nxml-mode files" href="http://j1m.net/wp-content/uploads/2010/08/nxml.zip" target="_blank">from this archive</a>.</p>
<p>Here&#8217;s what I changed from the default setup:</p>
<ul>
<li>I added the docbookxi.rnc and mallard-1.0.rnc schemas to the schemas directory</li>
<li>I modified the schemas.xml file, thus including the docbookxi.rnc and mallard-1.0.rnc schemas as part of the XML-validation process.</li>
</ul>
<p>Note that I have used the DocBook 5 &#8220;docbookxi.rnc&#8221; schema which allows for <a href="http://www.xml.com/pub/a/2002/07/31/xinclude.html" target="_blank"> xinclude</a> functionality.  If you want to use the schema that does not   allow for use of xinclude features, you&#8217;ll need to adjust the files   accordingly.  The current DocBook 5 schemas are <a href="http://www.docbook.org/xml/5.0/rng/" target="_blank">available   here</a>.</p>
<p><strong><span style="text-decoration: underline;">Part Three: Copy your nXML-mode files to the proper location<br />
</span> </strong>The final step is to copy the nXML-mode files to the proper location on your  file system.  As indicated in our .emacs file, that location is:  /usr/share/emacs/site-lisp/nxml/.  Thus, you should copy all of the files in the downloaded &#8220;nxml&#8221; folder into that directory.  You will need administrative privileges (using root or sudo) to do this.</p>
<p><span style="text-decoration: underline;"><strong>Wrapping up</strong></span></p>
<p>That&#8217;s it, though.  You should now have a functioning nXML-mode environment that will allow you to fire-up Emacs and start writing Relax-NG-based documents, getting all of the real-time-validation features that Emacs provides. If you can think of any ways in which I could improve my approach, please let me know.  Otherwise, I encourage you to head-on over to the <a href="http://www.thaiopensource.com/nxml-mode/" target="_blank">nXML-mode website</a>, and view some of the nXML-mode information and resources that are available as you get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating the Ubuntu Packaging Guide</title>
		<link>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/</link>
		<comments>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:16:34 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Licensing]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[packaging_guide]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=166</guid>
		<description><![CDATA[We’d like to get your input on where to focus documentation efforts on the Ubuntu Packaging Guide. There are all kinds of topics that need to be written, updated, or improved — so where should we start? What do you need most? Give your input via the this Google Docs Survey. I’ve provided some direction [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>We’d like to get your input on where to focus documentation efforts on the <a href="https://wiki.ubuntu.com/PackagingGuide" target="_blank">Ubuntu Packaging Guide</a>. There are all kinds of topics that need to be written, updated, or improved — so where should we start? What do you need most?</p>
<p>Give your input via the this <a href="http://spreadsheets.google.com/viewform?formkey=dHZEVGFLNkROMnROQ2FBVUdjRGlTYnc6MA" target="_blank">Google Docs Survey</a>. I’ve provided some direction by asking you to focus on tasks, concepts, and terminology that can be best documented in the Packaging Guide, but you&#8217;ll no doubt have other ideas.</p>
<p>If you’re interested in writing on a particular topic, please be sure to note that in the survey comments (and include your name and email address!).  I&#8217;ll be sure to ping you once we get the new guide outlined and stubbed out.</p>
<p>Also, if you have any suggestions for the packaging guide that aren&#8217;t encompassed in the survey, please feel free to leave a comment here.</p>
<p>Thanks!</p>
<p>P.S.  Oh, and wouldn&#8217;t you know that the Mozilla documentation team is updating their <a href="https://developer.mozilla.org/En" target="_blank">Mozilla Developer Network</a> documentation, too? Janet Swisher from their docs team <a href="http://www.janetswisher.com/index.php?itemid=251" target="_blank">published a note</a> seeking developer input on how their docs can be improved.  She publishes her blog content under a CC by SA 3.0 license, so I&#8217;ve &#8220;borrowed&#8221; some of her phrasing.  Hi, Janet!</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Top 50 technical writers on the web + Xfce and Xubuntu doc updates</title>
		<link>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/</link>
		<comments>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 02:22:29 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=123</guid>
		<description><![CDATA[This site lists who they&#8217;ve identified as the top 50 technical writers on the web, which I stumbled upon via a link from Scott Nesbitt&#8217;s blog.  While this list will certainly provide me with additional documentation resources, I notice a dearth of open-source documentation names in that list.  No Shaun McCance, no Emma Jane Hogbin, [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p><a href="http://www.ivanwalsh.com/2009/10/top-50-technical-writers-on-the-web/" target="_blank">This site</a> lists who they&#8217;ve identified as the top 50 technical writers on the web, which I stumbled upon via a link from <a href="http://www.dmncommunications.com/weblog/">Scott Nesbitt&#8217;s blog</a>.  While this list will certainly provide me with additional documentation resources, I notice a dearth of open-source documentation names in that list.  No Shaun McCance, no Emma Jane Hogbin, no Matthew East, and certainly no one with a name as cool as Milo Casagrande.</p>
<p><a href="http://www.silwenae.org/blog/" target="_blank">Paul Cutler</a>, a member of the GNOME documentation team, has said that he wants to make documentation cool again.  He used some different phrasing (ok, he actually said, he wants to make it &#8220;sexy,&#8221; again, but I don&#8217;t really feel like going there), but what I take his comment to mean is that he wants to make documentation something that people see as technically innovative and relevant to users, even if most users instinctively turn to Google as their first line of support.  After all, Google&#8217;s search results don&#8217;t just grow on trees &#8211; the content that comes up in all of those search results has to come from somewhere.  Why shouldn&#8217;t the answers to user questions come from carefully prepared and researched documentation?</p>
<p>I don&#8217;t say this to denigrate blog posts, forums, or IRC support networks &#8211; that&#8217;s where users get most of their support these days.  Comprehensive documentation has its place, though.</p>
<p>With that in mind, I&#8217;m making initial, but steady progress on the Xfce 4.8 documentation, and really want to improve the Xubuntu documentation.  (I&#8217;m actually a bit ashamed of its current state given the beauty that is the rest of Xubuntu 9.10.)  I will be at UDS (though, unfortunately, only for the last two days), and look forward to meeting with fellow doc-team members, and anyone else who would like to discuss documentation and translations.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Xfce Documentation Licensing</title>
		<link>http://j1m.net/2009/08/19/xfce-documentation-licensing/</link>
		<comments>http://j1m.net/2009/08/19/xfce-documentation-licensing/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 01:39:08 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Licensing]]></category>
		<category><![CDATA[Xfce]]></category>
		<category><![CDATA[creative commons]]></category>
		<category><![CDATA[gpl v2]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=111</guid>
		<description><![CDATA[Greetings!  I hope everyone has been enjoying their summers, and that things are progressing along smoothly with the 9.10 release cycle.  I want to share a brief note regarding Xfce documentation licensing with the hopes that others could provide some additional points for us to consider. Before I do that, though, let me pause to [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Greetings!  I hope everyone has been enjoying their summers, and that things are progressing along smoothly with the 9.10 release cycle.  I want to share a brief note regarding Xfce documentation licensing with the hopes that others could provide some additional points for us to consider.</p>
<p>Before I do that, though, let me pause to reflect on the fact that I haven&#8217;t updated this blog since the month of May.  In the <a href="http://www.xkcd.com/621/" target="_blank">words of a wise master</a>, &#8220;Sorry, I&#8217;ve been trying to think of stuff to put here.&#8221;</p>
<p>Back to considering documentation, though.  Per <a href="http://foo-projects.org/pipermail/xfce4-dev/2009-August/027408.html" target="_blank">my post</a> to the Xfce developer mailing list, I have proposed that any newly-written Xfce end-user documentation be licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank">Creative Commons CC-by-SA 3.0 Unported</a> license.  This would be a change from the documentation&#8217;s current license of GPL v2.</p>
<p>My post to the mailing list covers several of the advantages of using a CC-by-SA 3.0 license for end-user documentation, but I&#8217;m hoping to get some additional input on items that we may want to consider as part of making such a switch.  For example:</p>
<ul>
<li>Although the CC-by-SA 3.0 license would apply to new content, what qualifies as &#8220;new content,&#8221; when some of our content may include instructing users where to click to perform certain actions?  Certainly, a good portion of this language may remain the same in such cases.</li>
<li>Is it possible to license code snippets under the GPL, while the rest of the documentation is licensed as CC-by-SA 3.0?  If the answer to that question is, &#8220;Yes,&#8221; would a GPL-specific notice need to be provided alongside the code sample, or could the GPL notice be provided in a less visually-obtrusive spot within the documentation?  (As a note, I don&#8217;t forsee a great deal of code samples within the end-user system documentation, but I want to make sure we have our bases covered in this regard.)</li>
<li>What else might the group need to consider as part of making such a switch?</li>
</ul>
<p>Thus far, the reception to using CC-by-SA 3.0 has been good amongst the developers, and several of them have already indicated a willingness to relicense their GPL v2 documents as CC-by-SA 3.0.  That, combined with the fact that I think contacting any existing Xfce documentation contributors would be much easier than in larger projects, leads me to think that re-licensing existing content isn&#8217;t out of the picture, either.</p>
<p>I know that a number of other projects have recently made a switch to CC-by-SA 3.0, though, so I am hopeful that I&#8217;ll be able to get some good input from others, and we can get this settled in short order.  Thanks very much!</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/08/19/xfce-documentation-licensing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apt-urls – Now available on the Ubuntu wiki</title>
		<link>http://j1m.net/2009/04/09/apt-urls-now-available-on-the-ubuntu-wiki/</link>
		<comments>http://j1m.net/2009/04/09/apt-urls-now-available-on-the-ubuntu-wiki/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 12:18:59 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=77</guid>
		<description><![CDATA[Good news on the wiki front.  : -)  As of this morning, apt-urls are enabled on the Ubuntu Wiki.  What does this mean?  In simple terms, this feature provides a simple, wiki-based interface for apt, the base of our software management system.  It means that we can now insert clickable links on the wiki that [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Good news on the wiki front.  : -)  As of this morning, <strong>apt-urls are enabled on the Ubuntu Wiki</strong>.  What does this mean?  In simple terms, this feature provides a simple, wiki-based interface for apt, the base of our software management system.  It means that we can now insert <strong>clickable links on the wiki that can prompt users to install software from the Ubuntu repositories</strong>.  How cool is that?</p>
<p>How can you use this new feature?  Here is an example of how you could use it in the wiki.  In this example, we&#8217;ll look at installing the xubuntu-artwork package:</p>
<blockquote><p><code>If you are an Ubuntu user who wants to use the stylish Xubuntu artwork on your system, just [[apt:xubuntu-artwork|install the "xubuntu-artwork" package]].</code></p></blockquote>
<p>Of course, the end user just sees, &#8220;<code>If you are an Ubuntu user who wants to use the stylish Xubuntu artwork on your system, just <a href="apt://xubuntu-artwork">install the "xubuntu-artwork" package</a>." </code> (If you are a Firefox user on Ubuntu, you will also note that the link I&#8217;ve provided here works, too.  This is because Firefox also allows apt-urls to work in regular web pages.)</p>
<p>After clicking on the link, the user would then be prompted to choose whether or not he or she wants to install the package.  If they select yes, they are prompted to enter their password, and the system installs their software. Easy enough!</p>
<p>Because it is using apt, it is relying on the user&#8217;s configured set of Ubuntu repositories.  (Note: if a user is using a PPA or another software repository, those software sources would also be available.)  The installed packages can still be uninstalled via any of the regular software maintenance tools (e.g., synaptic, apt-get, add-remove programs, etc.)  In this manner, it doesn&#8217;t introduce new tools, it just provides a great new way of interfacing with them.</p>
<p>So . . . wiki editors . . . I now call on you to go forth and make good use of this new feature.  : -)  Let&#8217;s start using apt-urls in our wiki documentation.</p>
<p>Thanks to the Canonical system administrators for putting this in place, and to Matthew East for following up on the support ticket.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/04/09/apt-urls-now-available-on-the-ubuntu-wiki/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>At the documentation conference</title>
		<link>http://j1m.net/2009/03/31/at-the-documentation-conference/</link>
		<comments>http://j1m.net/2009/03/31/at-the-documentation-conference/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 13:08:24 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=71</guid>
		<description><![CDATA[I&#8217;m attending the WritersUA conference in Seattle this week, and yesterday was day one of the conference.  The conference started with Scott McCloud talking about how he created his Google Chrome comic, and I attended other talks on ISO documentation standards, as well as architecting your content so it can be reused. McCloud&#8217;s talk was [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>I&#8217;m attending the <a href="http://www.writersua.com/ohc/index.html" target="_blank">WritersUA</a> conference in Seattle this week, and yesterday was day one of the conference.  The conference started with Scott McCloud talking about how he created his <a href="http://www.scottmccloud.com/googlechrome/" target="_blank">Google Chrome comic</a>, and I attended other talks on ISO documentation standards, as well as architecting your content so it can be reused.</p>
<p>McCloud&#8217;s talk was interesting in a number of ways, but one aspect of it that struck me was the volume of work went into what he did.  The initial basis of the work was 10 dvd&#8217;s worth of recorded interviews with developers.  They did not allow the content of the comic book form to be dictated by some kind of marketing storyline.  The comic still stood up as a form of documentation.</p>
<p>Additionally:<br />
* The use of bubbles as text-placeholders in the comic created some difficulties for translators, but they were able to make things work. He didn&#8217;t provide a great amount of detail about this.<br />
* He loved the mash-ups that resulted from the work being licensed under a Creative Commons license, even if the mash-ups didn&#8217;t follow the letter of the license.  Google did not attempt to sue people who made these mashups for noncompliance with the license.<br />
* He demonstrated how comic book framing can keep the use focused on one item at a time, and make it easier to explain difficult concepts in an elegant, easy-to-understand way.<br />
* I think he referenced XKCD at least 3 times.  He likes it.<br />
* I can&#8217;t draw comics.  :/  Maybe I can use some of this stuff with screenshots, though.</p>
<p>I also attended a session on ISO standards for documentation and D.I.T.A., an open-source documentation toolkit similar to docbook.  The standard is maintained by OASIS, a not-for-profit standards organization &#8211; it looks great!  We got to see snippets of it, but it costs about $200 to get a single copy of the standard. :/  Even members of the OASIS committee who volunteer to maintain the standard have to pay to get a copy of it.  I am glad that at I don&#8217;t have to pay to contribute to Ubuntu.</p>
<p>The best session of the day for me was the session on architecting documentation for reuse.  The Ubuntu documentation team already has some of our content architected for reuse; for example, we use docbook &#8220;entities&#8221; for repetitive items such as system and software version numbers, Ubuntu website urls and certain procedures, but this showed how it&#8217;s possible to do more.  I&#8217;m a little green as a member of the Ubuntu documentation team, but I&#8217;m eager to learn more about this approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/03/31/at-the-documentation-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Strides Toward Xubuntu 9.04</title>
		<link>http://j1m.net/2009/03/18/making-strides-toward-xubuntu-904/</link>
		<comments>http://j1m.net/2009/03/18/making-strides-toward-xubuntu-904/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 15:38:57 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Xfce]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=63</guid>
		<description><![CDATA[As I&#8217;m sure is the case with other Ubuntu-related development groups, the Xubuntu team has been quite active as of late.  We spent some time this weekend testing out configurations of system settings now that we have migrated to Xfce 4.6 for the 9.04 release, and have completed the transition to the new artwork for [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>As I&#8217;m sure is the case with other Ubuntu-related development groups, the Xubuntu team has been quite active as of late.  We spent some time this weekend testing out configurations of system settings now that we have migrated to Xfce 4.6 for the 9.04 release, and have completed the transition to the new artwork for the release, too.  Much of these discussions took place over IRC, and it was fun to be a part of it.  We were able to hammer out patches, test them out, and then provide feedback to each other based on our findings.  The time spent proved to be very beneficial, and the Xubuntu 9.04 release is shaping up very nicely.</p>
<p>I&#8217;ve also been working on the documentation for Xubuntu 9.04, which has been rebased off of the Ubuntu 9.04 documentation for this release.  What this means is that I&#8217;ve been able to use bzr to merge in changes from the Ubuntu documentation as they happen, applying them directly to the current branch of Xubuntu documentation.  This is different from prior Xubuntu documentation efforts that had been based off of a much earlier set of Ubuntu docs.</p>
<p>In that sense, I was starting at a bit of a disadvantage &#8211; each release brings changes and updates, not only to X/K/Ubuntu itself, but also the associated documentation.  However, by using the current branch of Ubuntu docs as a starting point for this release, and merging in updates as they get applied to Ubuntu documentation, I&#8217;ve been able to leverage the ongoing contributions of the Ubuntu documentors and keep the Xubuntu docs more up-to-date.</p>
<p>Using this approach took a little bit of experimenting to find a good workflow for myself, but Bzr has proved to be a more-than-adequate tool for this particular scenario.  For example, the bzr command that I&#8217;ve used most frequently as of late involves merging in the specific changes from one Ubuntu documentation revision to another into the Xubuntu documentation branch.  To do that, I&#8217;ve just reviewed recent changes to Ubuntu documentation, navigated to my local folder of the Xubuntu documentation branch, and issued a command similar to this one:</p>
<p>bzr merge -r211..212 lp:ubuntu-doc</p>
<p>Here I&#8217;m telling bzr to merge in only the differences between revisions number 211 and 212 from the Ubuntu Documentation branch.  Merging in changes between specific revision numbers allows me to cherrypick &#8211; I can merge the changes that I want, and skip the changes that I don&#8217;t want.  This is helpful because Xubuntu docs will not include the Ubuntu Server Guide (my apologies to Adam Sommer, who has done a ton of great work on the Ubuntu Server Guide for this release), so I have skipped revisions that include updates to the Server Guide.  : /</p>
<p>If there are no conflicts between the merged files, bzr just identifies the changes as modified files &#8211; no problems.  Files that contain conflicts are identified by bzr, too, and it is up to me to resolve those conflicts.  Once fixed, I can then use bzr to mark the conflicts as resolved.  The process still requires some manual review on my part, but reviewing someone else&#8217;s changes is much easier than writing my own stuff, and gives me more time to focus on documenting the elements that are specific to Xubuntu.</p>
<p>I&#8217;m still writing additional documentation that is specific to Xubuntu, but have a little bit of time remaining before string freeze.  : )  At the end of next week, I am going to be travelling to Seattle to visit a friend and her husband, and also attend a <a title="documentation conference" href="http://www.writersua.com/ohc/index.html" target="_blank">documentation conference</a> out there.  I&#8217;m going to focus on the Design Strategies, Content Development, and Open Standards tracks.  It should be a great time, and should make for a great learning experience, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/03/18/making-strides-toward-xubuntu-904/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>From the fringes of Xubuntu</title>
		<link>http://j1m.net/2008/06/08/from-the-fringes-of-xubuntu/</link>
		<comments>http://j1m.net/2008/06/08/from-the-fringes-of-xubuntu/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 14:50:39 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=38</guid>
		<description><![CDATA[Cody Somerville has been writing quite a bit lately about what&#8217;s going on with Xubuntu, focusing a lot on the strategy document and some technical goals for the next release, but we also have a couple of other things in the works &#8211; some items that are kind of on the fringes of the distro, [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Cody Somerville has been writing quite a bit lately about what&#8217;s going on with Xubuntu, focusing a lot on the strategy document and some technical goals for the next release, but we also have a couple of other things in the works &#8211; some items that are kind of on the fringes of the distro, but important nonetheless.</p>
<p>One item is an update to the website.  <a title="xubuntu.org" href="http://www.xubuntu.org" target="_self">Xubuntu.org</a> is in need of a refresh!  We&#8217;ve had a couple of starts and stops on updating it over the last two releases, but nothing noteworthy ever came of it, so this time I&#8217;m putting together a project plan that will break the tasks down into smaller chunks with a clear plan for getting things in place.</p>
<p>I&#8217;m not going to guarantee that things will work like clockwork, and I&#8217;m not even sure who we&#8217;re going to get to help out with the website, but I figure that setting a plan with individual bits that people can do one-by-one is more likely to garner success than handing someone the keys to a base Drupal installation and saying, &#8220;Have at it!  Let us know when you&#8217;re done!&#8221;</p>
<p>I&#8217;m sure I&#8217;ll have more news on that once I&#8217;ve got the basic project plan in order, and (of course) we&#8217;ll be seeking out help with the website then, too.  If you think you might want to help out, please make a note of it &#8211; place a bookmark in the <a href="http://www.theonion.com/content/node/33642" target="_self">Firefox 3.0 of your mind</a>.  :]  Or you can just read this blog aggregator thingy, and look for more info about the website project plan when I write about it.  Perhaps that would be better than trying to integrate Firefox 3.0 with your brain.</p>
<p>For now, though, work continues on adding poetic, beautiful content to <a title="xubuntu wiki" href="https://wiki.ubuntu.com/Xubuntu" target="_self">the wiki</a>, and a few documentation ideas are being tossed around amongst Xubuntu folks.  It&#8217;s kind of hard(y) to believe that the first Alpha release for Intrepid is less than a week away, but I suppose it&#8217;s how things go.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2008/06/08/from-the-fringes-of-xubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Xubuntu News</title>
		<link>http://j1m.net/2008/03/25/xubuntu-news/</link>
		<comments>http://j1m.net/2008/03/25/xubuntu-news/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 02:05:08 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Desktop Linux]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Teamwork]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/2008/03/25/xubuntu-news/</guid>
		<description><![CDATA[The Xubuntu documentation for 8.04 is done, and the doc-centered folks are now working on updating the wiki.  There are still quite a few holes in it for now, but we&#8217;re working fairly quickly.  I like the new menu bar.  It makes it easy to get around. Also, I know it&#8217;s not much notice, but [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>The Xubuntu documentation for 8.04 is done, and the doc-centered folks are now working on updating <a href="https://wiki.ubuntu.com/Xubuntu" title="Xubuntu wiki" target="_blank">the wiki</a>.  There are still quite a few holes in it for now, but we&#8217;re working fairly quickly.  I like the new menu bar.  It makes it easy to get around.</p>
<p>Also, I know it&#8217;s not much notice, but tomorrow (Wednesday, 2008-03-26) Jono Bacon is leading a Xubuntu-focused meeting in the #ubuntu-meeting channel on the Freenode IRC network.  The meeting will be held at 1900 UTC (2pm Chicago time).  We&#8217;re going to discuss Xubuntu&#8217;s mission and strategy, and discuss how to pull in some additional development and packaging help.  The Xubuntu team has had a bit of turnover as a result of some internal disputes over default package selection recently, and we think that coming to some kind of a consensus on our project goals will help focus our efforts and help put some of the conflict to rest.</p>
<p>I feel like Xubuntu is moving in a good direction, though.  Cody Somerville looks to be the person who will be leading the project, and he has a good idea of what Xubuntu is about, is technically proficient, and knows how to argue a point rather than getting mixed up in a bunch of jibba jabba.  All good qualities to have in a project leader.  (Cody also made that wiki menu bar on the Xubuntu wiki.)  As much as anyone pays attention to a wiki, perhaps having a well-set wiki with clear paths to help people start getting involved will help things along a little bit, too.</p>
<p>I&#8217;m preparing an interblags post that will contain 8.04 reasons for why Ubuntu and Kubuntu users should consider using Xubuntu (it might be more like 8.04 reasons why I like Xubuntu . . . I&#8217;m not sure), but it&#8217;s not ready yet.  I only have 7.04 reasons so far.  My post should be Hardy, not Feisty.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2008/03/25/xubuntu-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Packaging: it might be helpful &#8211; even for documentors</title>
		<link>http://j1m.net/2007/12/12/packaging-it-might-be-helpful-even-for-documentors/</link>
		<comments>http://j1m.net/2007/12/12/packaging-it-might-be-helpful-even-for-documentors/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 03:42:15 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=32</guid>
		<description><![CDATA[Fellow Chicagolander, nixternal, provided the Ubuntu-Chicago local community team with a few links to packaging-related articles that are available from some Debian and Kubuntu websites: 1) http://www.debian.org/doc/devel-manuals#policy 2) http://www.debian.org/doc/devel-manuals#devref 3) http://www.debian.org/doc/devel-manuals#maint-guide 4) https://wiki.kubuntu.org/PackagingGuide 5) https://wiki.kubuntu.org/PbuilderHowto 6) https://wiki.kubuntu.org/PackagingGuide/Lists/DocumentationResources He sent them out to the mailing list in advance of a packaging session that&#8217;s being held this [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Fellow Chicagolander, <a href="http://blog.nixternal.com" title="nniixxtteerrnnaall" target="_blank">nixternal</a>, provided the Ubuntu-Chicago local community team with a few links to packaging-related articles that are available from some Debian and Kubuntu websites:</p>
<p>1) <a href="http://www.debian.org/doc/devel-manuals#policy" target="_blank"> http://www.debian.org/doc<wbr></wbr>/devel-manuals#policy</a><br />
2) <a href="http://www.debian.org/doc/devel-manuals#devref" target="_blank">http://www.debian.org/doc<wbr></wbr>/devel-manuals#devref</a><br />
3) <a href="http://www.debian.org/doc/devel-manuals#maint-guide" target="_blank"> http://www.debian.org/doc<wbr></wbr>/devel-manuals#maint-guide</a><br />
4) <a href="https://wiki.kubuntu.org/PackagingGuide" target="_blank">https://wiki.kubuntu.org<wbr></wbr>/PackagingGuide</a><br />
5) <a href="https://wiki.kubuntu.org/PbuilderHowto" target="_blank"> https://wiki.kubuntu.org<wbr></wbr>/PbuilderHowto</a><br />
6) <a href="https://wiki.kubuntu.org/PackagingGuide/Lists/DocumentationResources" target="_blank">https://wiki.kubuntu.org<wbr></wbr>/PackagingGuide/Lists/Documenta<wbr></wbr>tionResources </a></p>
<p>He sent them out to the mailing list in advance of a packaging session that&#8217;s <a href="https://lists.ubuntu.com/archives/ubuntu-us-chicago/2007-December/001432.html" target="_blank">being held this Sunday</a> at the College of DuPage, in Glen Ellyn, Illinois.</p>
<p>I&#8217;m not sure how much we&#8217;ll be able to cram into our session that day, but it should be a good start for those of us who aren&#8217;t familiar with packaging at all.  As someone who has primarily been focused on assisting with documentation, hopefully some day I&#8217;ll at least know how to package the set of docs that we create.  <img src='http://j1m.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2007/12/12/packaging-it-might-be-helpful-even-for-documentors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.426 seconds -->
