<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>jlaska</title>
	<atom:link href="http://jlaska.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jlaska.wordpress.com</link>
	<description>Thoughts on Fedora and software quality</description>
	<lastBuildDate>Fri, 04 Nov 2011 11:56:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jlaska.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/bf1591beabcc238f6b3dbe6d630afa6c?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>jlaska</title>
		<link>http://jlaska.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jlaska.wordpress.com/osd.xml" title="jlaska" />
	<atom:link rel='hub' href='http://jlaska.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Expanding wiki templates inside &lt;pre&gt;</title>
		<link>http://jlaska.wordpress.com/2011/06/28/expanding-wiki-templates-inside-pre/</link>
		<comments>http://jlaska.wordpress.com/2011/06/28/expanding-wiki-templates-inside-pre/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 20:21:41 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mediawiki]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=294</guid>
		<description><![CDATA[I tend to do a fair amount of wiki work these days. Whether it&#8217;s scripting against the mediawiki api, or just manually editing pages &#8230; you tend pick up little tips here and there. One such gem I&#8217;ve been using &#8230; <a href="http://jlaska.wordpress.com/2011/06/28/expanding-wiki-templates-inside-pre/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=294&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I tend to do a fair amount of wiki work these days.  Whether it&#8217;s scripting against the <a href="https://fedoraproject.org/w/api.php">mediawiki api</a>, or just manually editing pages &#8230; you tend pick up little tips here and there.  One such gem I&#8217;ve been using for a while is to get mediawiki templates to expand when used inside <a href="http://www.mediawiki.org/wiki/Help:Formatting#HTML_tags">preformatted <code>&lt;pre&gt;</code> tags</a>.  </p>
<p>Why bother?  Well, when writing test cases, or related pages, I frequently provide command-line samples or output.  I like to ensure that the output remains relevant over time.  Even more, I dislike having to frequently update a page release after release to ensure the commands or output are still relevant.  For some common QA-related <code>&lt;pre&gt;</code> tag examples, checkout the following links &#8230;</p>
<ul>
<li> <a href="https://fedoraproject.org/wiki/How_to_update_AutoQA_repoinfo.conf">How to update AutoQA repoinfo.conf</a> &#8211; provide copy and paste-able configuration files used whenever a Fedora release branches or reaches end-of-life.
<li> <a href="https://fedoraproject.org/wiki/QA:SOP_Installation_Test">QA:SOP Installation Test</a> &#8211; Provides a sample command-line script to count test day participants.
<li> <a href="https://fedoraproject.org/wiki/QA:Testcase_Anaconda_save_traceback_to_bugzilla">QA:Testcase Anaconda save traceback to bugzilla</a> &#8211; Specify boot arguments for various installer traceback tests
</ul>
<p>Okay, you get the idea.  The fun part is hidden in the first example.  What if you want to take advantage of some awesome wiki templates, such as <code>{{FedoraVersion}}</code>?  If you try that &#8230; the <code>&lt;pre&gt;</code> tags will show you just that &#8230; pre-formatted text as shown below.</p>
<pre>
mock -r fedora-{{FedoraVersion||previous}}-x86_64 --init
</pre>
<p>If you like puzzles, and are hell-bent on having templates expansion inside <code>&lt;pre&gt;</code> tags, let me save you a tremendous waste of time searching for the correct solution.   &#8230; To expand mediawiki templates inside <code>&lt;pre&gt;</code> tags &#8230; you can use a <a href="http://www.mediawiki.org/wiki/Help:Magic_words#Miscellaneous">miscellaneous parser function</a>.  The function is a bit strange, but works as follows &#8230;</p>
<pre>
{{#tag:pre|
mock -r fedora-{{FedoraVersion||previous}}-x86_64 --init
}}
</pre>
<p>The above syntax will produce the following wiki output &#8230;</p>
<pre>
mock -r fedora-14-x86_64 --init
</pre>
<p>All that to emit two characters!  I know, but I&#8217;m lazy and this solution helps me to never update that particular wiki page ever again.  It will always point to the proper release thanks to <a href="https://fedoraproject.org/wiki/Template:FedoraVersion">Template:FedoraVersion</a>.  Also, thanks to a post from <a href="http://www.mwusers.com/forums/showthread.php?12372-Templates-and-lt-pre-gt-tag">Das Gurke on the Customizing-MediaWiki mwusers forum</a> for pointing out the right answer.</p>
<p>If you have other creative uses for the <code>#tag:tagname</code> parser function, please share!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=294&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/06/28/expanding-wiki-templates-inside-pre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 15 QA retrospective</title>
		<link>http://jlaska.wordpress.com/2011/06/17/fedora-15-qa-retrospective/</link>
		<comments>http://jlaska.wordpress.com/2011/06/17/fedora-15-qa-retrospective/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 17:26:42 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[retrospective]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=281</guid>
		<description><![CDATA[It&#8217;s that time again.  Time to review, discuss and learn from any hiccups encountered while testing the previous release.  No matter how successful a release is, there is always something to improve on.  Fedora 15 was no exception. First, some &#8230; <a href="http://jlaska.wordpress.com/2011/06/17/fedora-15-qa-retrospective/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=281&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time again.  Time to review, discuss and learn from any hiccups encountered while testing the previous release.  No matter how successful a release is, there is always something to improve on.  Fedora 15 was no exception.</p>
<p><a href="http://www.flickr.com/photos/linkey/2752696822/"><img title="Look back" src="http://farm4.static.flickr.com/3085/2752696822_5717ac10da.jpg" alt="" width="500" height="375" /></a></p>
<p>First, some ground rules &#8230; we&#8217;re not trying to solve the world problems with this retrospective.  It&#8217;s focused on Fedora QA, our interactions with other teams, and what we can improve on to better accomplish our goals.  For a more general release retrospective, <a href="https://fedoraproject.org/wiki/Fedora_15_Retrospective">Jared already has an app for that</a>.  Next, this isn&#8217;t the place to point fingers and taunt other teams/people.  Use your own blog for that <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  Let&#8217;s keep the retrospective as objective and actionable as possible.  For example, when recording issues, it&#8217;s important to know the bug(s) involved and what factors contributed to the problem(s).  I&#8217;m not interested in what Steve thinks Mary said that Jillian heard after passing out at 31 flavors last night.</p>
<p>Next, a bit of history.  The process starts early each release when I draft a <a href="https://fedoraproject.org/wiki/Fedora_15_QA_Retrospective">retrospective wiki page</a> to track issues as they happen.  I break the page down into three groups; <strong>1)</strong> what worked <em>(sometimes we get things right!)</em>, <strong>2)</strong> what didn&#8217;t work <em>(learn from our mistakes etc&#8230;)</em>, <strong>3)</strong> wishlist <em>(aka <a href="http://i-want-a-pony.com/">pony</a>)</em>.  It&#8217;s just my nature to want to know what went wrong, and try to fix it.  Accordingly, most of the content focuses on problems we encounter during the release.  Also, I wanted to have some concept of scope &#8230; which is where the wishlist/pony group comes in.  I still don&#8217;t know if it really fits, but I find it interesting to see what comments people have without constraints.</p>
<p>The retrospective concept doesn&#8217;t really work if only one person provides feedback.  So, I try to get the word out so anyone can add issues.  This is an area where I could certainly do better, probably by blogging more about it.  As the release progresses, I beg/plead/nag people closest to the issues to add some notes to the wiki.  I&#8217;m sure most people get tired of my nagging for content, but I&#8217;ve seen too often where we forget the causes of a critical problem, or don&#8217;t properly record the conditions leading up to a failure.  Without accurate data on the cause of problems, any corrective measures are just busy work.  So, the release chugs along, and hopefully the list of good/bad/wishlist issues matures.</p>
<p><em>mental note &#8230; I need to document this in a <a href="https://fedoraproject.org/wiki/Category:QA_SOPs">SOP</a></em></p>
<p>Okay &#8230; so all that preamble just to let folks know I completed a <a href="https://fedoraproject.org/wiki/Fedora_15_QA_Retrospective#Recommendations">draft of recommendations</a> based on the <a href="https://fedoraproject.org/wiki/Fedora_15_QA_Retrospective">Fedora 15 QA retrospective feedback</a>.  I&#8217;ll be sending this out to the <a href="https://admin.fedoraproject.org/mailman/listinfo/test">test@</a> list for review shortly.  Check it out, and tell me what you think.  See something missing, don&#8217;t agree with something &#8230; just let me know.</p>
<p><em><a href="http://www.flickr.com/photos/linkey/2752696822/">Image by Camilo via flickr</a> used under a <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en">Creative Commons license</a>.</em></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=281&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/06/17/fedora-15-qa-retrospective/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3085/2752696822_5717ac10da.jpg" medium="image">
			<media:title type="html">Look back</media:title>
		</media:content>
	</item>
		<item>
		<title>{{Key_press}}</title>
		<link>http://jlaska.wordpress.com/2011/06/10/key_press/</link>
		<comments>http://jlaska.wordpress.com/2011/06/10/key_press/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 15:33:07 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mediawiki]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=266</guid>
		<description><![CDATA[If you haven&#8217;t heard me say it before &#8230; &#8220;I really like media wiki.&#8221;  It&#8217;s tremendously flexible, clearly very well-used and maintained, and as there is an abundance of useful content on mediawiki.org. If you are trying to do something &#8230; <a href="http://jlaska.wordpress.com/2011/06/10/key_press/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=266&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard me say it before &#8230; <em>&#8220;I really like media wiki.&#8221;</em>  It&#8217;s tremendously flexible, clearly very well-used and maintained, and as there is an abundance of useful content on mediawiki.org. If you are trying to do something on the wiki, chances are someone has already done it.</p>
<p>For example, displaying test results on the wiki (refer to <a href="https://fedoraproject.org/wiki/Template:Result">{{Result}}</a>).  While this was started by Will Woods, it later adapted based on experiences with templating on OLPC&#8217;s wiki.  Also adapted from OLPC&#8217;s wiki is our use of <a href="https://fedoraproject.org/wiki/Template:QA/Test_Case">{{QA/Test_Case}}</a>.  Finally, as Athmane <a href="http://lists.fedoraproject.org/pipermail/test/2011-June/100763.html">recently pointed out</a>, I borrowed <a href="https://fedoraproject.org/wiki/Template:!">{{!}}</a> and <a href="https://fedoraproject.org/wiki/Template:=">{{=}}</a> from mediawiki so you can make use of those characters when using a template.  Who cares?  Well, if you&#8217;ve ever attempted to write an admonition (e.g. <a href="https://fedoraproject.org/wiki/Template:Admon/warning">{{admon/warning}}</a>), you may have noticed it doesn&#8217;t format properly when you include certain characters (notably = and | which have <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Help:Template#Basic_template_usage_examples">special meaning in mediawiki template syntax</a>).</p>
<p>Without &#8220;escaping&#8221; the special characters, your template will render improperly as seen below &#8230;</p>
<pre>{{admon/warning|Warning!|Sometimes a=b and b=c.
In that case, a=c. :&#045;| }}</pre>
<div id="attachment_268" class="wp-caption aligncenter" style="width: 510px"><a href="http://jlaska.files.wordpress.com/2011/06/admon-bad.png"><img class="size-full wp-image-268 " title="admon-bad" src="http://jlaska.files.wordpress.com/2011/06/admon-bad.png?w=500&#038;h=51" alt="{{admon/warning|Warning!|Sometimes a=b and b=c.  In that case, a=c. :-| }}" width="500" height="51" /></a><p class="wp-caption-text">This doesn&#039;t look correct.</p></div>
<p>This can be corrected by using the {{!}} and {{=}} templates, as shown below.</p>
<pre><code>{{admon/warning|Warning!|Sometimes a{{=}}b and b{{=}}c.
In that case, a{{=}}c. :-{{!}} }}</code></pre>
<div id="attachment_269" class="wp-caption aligncenter" style="width: 510px"><a href="http://jlaska.files.wordpress.com/2011/06/admon-good.png"><img class="size-full wp-image-269" title="admon-good" src="http://jlaska.files.wordpress.com/2011/06/admon-good.png?w=500&#038;h=55" alt="{{admon/warning|Warning!|Sometimes a{{=}}b and b{{=}}c. In that case, a{{=}}c. :-{{!}} }}" width="500" height="55" /></a><p class="wp-caption-text">Much better!</p></div>
<p>Today I found another really helpful series of templates for something I&#8217;ve wanted for a long time.  In <a href="https://fedoraproject.org/wiki/QA">Fedora QA</a>, we write and maintain a lot of <a href="https://fedoraproject.org/wiki/Category:Test_Cases">test cases on the wiki</a>.  Often in a test case, one describes a series of steps, or procedure, to perform a particular function in a specific manner.  We extensively use &lt;pre&gt;, lists (both forms # and &lt;ol&gt;) and helper templates such as <a href="https://fedoraproject.org/wiki/Template:filename">{{filename}}</a>, <a href="https://fedoraproject.org/wiki/Template:Package">{{package}}</a> and <a href="https://fedoraproject.org/wiki/Template:Command">{{command}}</a>.</p>
<p>It&#8217;s always bugged me that we didn&#8217;t have a consistent, and visually striking manner for representing keyboard events.  For example, telling a tester to &#8230; &#8220;Hit &lt;code&gt;<code>Ctrl-Alt-Backspace</code> to stop Xorg&#8221; (<a href="https://fedoraproject.org/wiki/QA:X_basic_display_test_case">[1]</a>) just doesn&#8217;t stand-out to me enough.  What can I say &#8230; I&#8217;m a visual person.  I stumbled upon an awesome series of templates from mediawiki.org for displaying key combinations.  Enter &#8230; <a href="https://fedoraproject.org/wiki/Template:Key_press">{{Key_press}}</a>.  With the help of many smaller templates, I&#8217;ve added this support, along with the rock solid &#8220;upstream&#8221; <a href="https://fedoraproject.org/wiki/Template:Key_press">documentation</a>, to the fedoraproject.org Wiki.  I&#8217;m not sure who to thank for the template, as there are a significant number of editors.</p>
<p>So instead of something like  &#8230;</p>
<pre># Activate the overview by pressing the Windows key,
 pressing &lt;code&gt;Alt-F1&lt;/code&gt;, or by moving the mouse
 to the top-left corner of the screen.</pre>
<p>One can write &#8230;</p>
<pre># Activate the overview by pressing the
 {{key press|Win}} key, pressing {{key press|Alt|F1}},
 or by moving the mouse to the top-left corner of the
 screen</pre>
<p>Which results in something my brain responds to much better&#8230;</p>
<p><a href="http://jlaska.files.wordpress.com/2011/06/key_press_example.png"><img class="aligncenter size-full wp-image-274" title="key_press_example" src="http://jlaska.files.wordpress.com/2011/06/key_press_example.png?w=500&#038;h=38" alt="Much better!" width="500" height="38" /></a></p>
<p>From my docbook XML days, I appreciate structured ways to write content and separation between content and the look&#8217;n'feel.  However, I dislike editing content in XML.  Templates like {{command}}, {{filename}} and now {{Key_press}} offer a ways to accomplish the same thing with mediawiki.  I plan to use this more when documenting keyboard events in future test cases.  Hopefully, someone else finds this useful as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=266&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/06/10/key_press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>

		<media:content url="http://jlaska.files.wordpress.com/2011/06/admon-bad.png" medium="image">
			<media:title type="html">admon-bad</media:title>
		</media:content>

		<media:content url="http://jlaska.files.wordpress.com/2011/06/admon-good.png" medium="image">
			<media:title type="html">admon-good</media:title>
		</media:content>

		<media:content url="http://jlaska.files.wordpress.com/2011/06/key_press_example.png" medium="image">
			<media:title type="html">key_press_example</media:title>
		</media:content>
	</item>
		<item>
		<title>PreUpgrade Test Day this Thursday (2011-03-17)</title>
		<link>http://jlaska.wordpress.com/2011/03/16/preupgrade-test-day-this-thursday-2011-03-17/</link>
		<comments>http://jlaska.wordpress.com/2011/03/16/preupgrade-test-day-this-thursday-2011-03-17/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:57:33 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[test day]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=257</guid>
		<description><![CDATA[Have you seen this dialog?  It&#8217;s from a pretty handy utility called preupgrade.  Preupgrade takes some of the complexity out of upgrading your Fedora system.  But like any software, to keep running smoothly, it needs testing and maintenance. For the &#8230; <a href="http://jlaska.wordpress.com/2011/03/16/preupgrade-test-day-this-thursday-2011-03-17/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=257&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://fedoraproject.org/wiki/How_to_use_PreUpgrade"><img class="alignnone" title="preupgrade" src="https://fedoraproject.org/w/uploads/7/72/Features_PreUpgrade_1-welcome.png" alt="Upgrade your system..." width="446" height="311" /></a></p>
<p>Have you seen this dialog?  It&#8217;s from a pretty handy utility called <a href="https://fedoraproject.org/wiki/Features/PreUpgrade">preupgrade</a>.  Preupgrade takes some of the complexity out of upgrading your Fedora system.  But like any software, to keep running smoothly, it needs testing and maintenance.</p>
<p>For the past several releases, Fedora QA has hosted several test days (<a href="https://fedoraproject.org/wiki/Test_Day:2010-09-02_Preupgrade">F14</a> and <a href="https://fedoraproject.org/wiki/Test_Day:2010-04-29_Preupgrade">F13</a>) to shake out bugs related to system upgrades using the preupgrade tool.  Those same tests are also included in our regular <a href="https://fedoraproject.org/wiki/QA:Installation_validation_testing">release validation matrix</a>.  I&#8217;d like to think that regular, organized testing of preupgrade (and installer upgrades) contributes to a more reliable upgrade experience once Fedora <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Software_release_life_cycle#General_availability">GA&#8217;s</a>.  Thanks to Hurry for helping to organize these events. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Testing involves performing system upgrades using the latest <a href="http://koji.fedoraproject.org/koji/packageinfo?packageID=6045">preupgrade package</a>.  There are test instructions (including test cases) on the <a href="https://fedoraproject.org/wiki/Test_Day:2011-03-17_Preupgrade">wiki page</a>.  <a href="https://fedoraproject.org/wiki/QA">Fedora QA</a> and <a href="https://fedoraproject.org/wiki/User:Rhughes">Richard Hughes</a> (preupgrade maintainer) will be in <a href="irc://irc.freenode.net/fedora-test-day">the IRC channel #fedora-test-day on Freenode</a> all day to help with testing and answer any questions you might have.  If you&#8217;re not familiar with IRC, a <a href="http://webchat.freenode.net/?channels=fedora-test-day">web-based (WebIRC)</a> client is available.</p>
<p>To participate, you&#8217;ll need a Fedora 14, or Fedora 13 system ready for upgrade.  Test systems can be bare metal or virtualized guests, it doesn&#8217;t matter.  If you don&#8217;t have a previous release handy, don&#8217;t worry &#8230; <a href="http://fedoraproject.org/en/get-fedora-options">live images</a> for previous releases are a great way to quickly install a working desktop.</p>
<p>Unfortunately, preupgrade doesn&#8217;t test itself, so we need your help.  This is a good chance to get a head start on Fedora 15 Beta testing, and help identify preupgrade-related bugs early.    See you on Thursday!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=257&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/03/16/preupgrade-test-day-this-thursday-2011-03-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>

		<media:content url="//fedoraproject.org/w/uploads/7/72/Features_PreUpgrade_1-welcome.png" medium="image">
			<media:title type="html">preupgrade</media:title>
		</media:content>
	</item>
		<item>
		<title>FUDCon Tempe trip report</title>
		<link>http://jlaska.wordpress.com/2011/02/23/fudcon-tempe-trip-report/</link>
		<comments>http://jlaska.wordpress.com/2011/02/23/fudcon-tempe-trip-report/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 15:25:00 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=211</guid>
		<description><![CDATA[I arrived in Phoenix, AZ on Friday afternoon after an uneventful flight.  Which, when it comes to flying, is a good thing.  At the airport, I came to the realization that not only is Adam Williamson always online, but he&#8217;s &#8230; <a href="http://jlaska.wordpress.com/2011/02/23/fudcon-tempe-trip-report/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=211&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I arrived in Phoenix, AZ on Friday afternoon after an uneventful flight.  Which, when it comes to flying, is a good thing.  At the airport, I came to the realization that not only is <a href="http://www.happyassassin.net/">Adam Williamson</a> always online, but he&#8217;s also there whenever you go to pick-up your bags.  Which was convenient, since we were able to catch-up over the shuttle to the hotel and lunch.  Later in the day, I met up with <a href="http://mybravenewworld.wordpress.com">Lucas Rodrigues</a> (upstream maintainer for <a href="http://autotest.kernel.org">autotest</a>).  We were trying to get Lucas to FUDCon, and it didn&#8217;t work out until the last-minute.  I&#8217;m glad he was able to make the <strong>long</strong> trip, turns out &#8230; it was instrumental to some hacking.</p>
<h3>Day#1 &#8211; <a href="https://fedoraproject.org/wiki/FUDCon:Tempe_2011#General_schedule">Barcamp</a></h3>
<h4>Catching up with fenzi &#8230;</h4>
<p>During the first time slot, I spent some time catching up with familiar nicks/faces.  I spoke with Kevin Fenzi, who is always extremely helpful+approachable on irc and in-person, on the current state of the AutoQA project.  We discussed some of the challenges we&#8217;ve had soliciting contributors.  The consensus was that once we have tests+results that directly impact maintainers, we can expect more participation.  It&#8217;s <a href="https://fedoraproject.org/wiki/AutoQA_Roadmap">been a long time</a> since the last release of autoqa, but once <a href="https://fedoraproject.org/wiki/QA:Depcheck_Test_Case">depcheck</a> and <a href="https://fedoraproject.org/wiki/QA:Upgrade_Path_Test_Case">upgradepath</a> start posting results to bodhi, I&#8217;m sure maintainers will get excited (or at least agitated).</p>
<h4>What gives mockbuild?</h4>
<p>One test idea that Kevin suggested was to write a new <a href="http://rpmlint.zarb.org/">rpmlint</a> test to ensure that no files in a package are owned by the user: <em>mockbuild</em>.    You&#8217;ve probably seen such errors when installing a package.</p>
<pre>warning: user mockbuild does not exist - using root
warning: user mockbuild does not exist - using root
warning: user mockbuild does not exist - using root</pre>
<p>It looks sloppy, and it&#8217;s something we should be able to detect and prevent.</p>
<h4>AutoQA BarCamp talk</h4>
<p>Next, I hosted an <a href="https://fedoraproject.org/wiki/AutoQA">AutoQA</a> talk.  I prepared some <a href="https://fedoraproject.org/wiki/QA:Presentations">slides</a> to provide talking points, however I was hoping for a more interactive discussion.  I think the talk went well.  Both <a href="http://www.bangmoney.org/">Chris Lumens</a> and <a href="http://blogs.fedoraproject.org/wp/wwoods/">Will Woods</a> were in attendance and were able to provide more in-depth details on the installer unittests and depcheck test that will be landing in the next release (<code>autoqa-0.4.4</code>).</p>
<p>Several good test ideas surfaced, including Dave Malcolm&#8217;s ideas on <a href="https://fedorahosted.org/autoqa/ticket/150"><em>artificial ignorance</em></a>.  Dan Walsh asked if we could detect whenever dependencies might unintentionally change, and pull in undesired packages.  For example, accidentally including <code>xorg-x11-server-Xorg</code> on a <a href="http://fedoraproject.org/wiki/SIGs/Server">Server SIG</a> image, or increasing the size of Live images beyond the desired 700 Mib (or 1Gib).  <a href="http://overholt.ca/wp/">Andrew Overholt</a> discussed an <a href="https://fedorahosted.org/autoqa/ticket/264">eclipse test suite</a> that he&#8217;d like run for him after koji builds.  It&#8217;s a fairly comprehensive test suite, but early discussions seem like it shouldn&#8217;t be too much trouble to <a href="http://fedoraproject.org/wiki/Writing_AutoQA_Tests">wrap and run</a> using AutoQA. .  Finally, some of the installer folks were asking about <a href="https://fedoraproject.org/wiki/AutoQA_resultsdb_schema">resultsdb</a>, which is planned for a future autoqa release.  Hopefully more on that later.</p>
<h4>Other sessions&#8230;</h4>
<p>After the AutoQA talk, I attended the <em>Cloud: The future of computing</em> talk by Mike McGrath.  Good talk, with an active demonstration and screenshots.  We have some preliminary support in a branch of AutoQA for provisioning virtual test systems on the fly, so it&#8217;s neat to review other ways of solving this problem.  We&#8217;re always interested in any off-the-shelf solutions we can integrate with to dynamically allocate and connect to virtual test systems.  Obviously, for tests that need bare metal hardware &#8230; this wouldn&#8217;t work.  However, a large portion of our tests don&#8217;t have this requirement and work just as nice on virtual systems.</p>
<p>Next, I attended the <a href="http://tflink.fedorapeople.org/FUDConNA2011/MeetTheAnacondaTeam_FUDConNA2011_DavidCantrell_IRCtranscript.txt"><em>Meet the Anaconda team</em></a> talk by David Cantrell.  In Fedora QA, we work with them pretty closely during <a href="https://fedoraproject.org/wiki/QA:Installation_validation_testing">installation validation</a>, so it was really nice to get to know them a bit better.  Throughout the talk, each member of the team presented their current projects.  There is a lot of exciting work planned for the next 3-4 Fedora releases, and the good news is that the team <a href="https://fedoraproject.org/wiki/Anaconda/Features">documented their ideas on the wiki</a>.</p>
<p>After a few diversions, I attended <em>Using the SELinux Sandbox</em> by Dan Walsh.  SELinux sandbox allows administrators to take untrusted content, run it through one or  more SELinux filters, and have confidence that the content won&#8217;t damage to their system/files.  Since <a href="http://danwalsh.livejournal.com/28545.html">Dan&#8217;s initial blog post</a> on the subject, a lot has changed.  Dan demonstrated running an entire desktop session in a sandbox, including firefox, openoffice, evince and other desktop applications.  Pretty cool stuff.</p>
<h3>Day#2 &#8211; More <a href="https://fedoraproject.org/wiki/FUDCon:Tempe_2011#Sunday">Barcamp</a>, and some <a href="https://fedoraproject.org/wiki/FUDCon:Tempe_2011#Hackfests_-_Sunday_.26_Monday">hackfest</a></h3>
<h4>UI Mockups&#8230;</h4>
<p>I&#8217;ve always been slow when it comes to doing mock-ups.  The process usually involves the <a href="http://www.gimp.org/">gimp</a> (not the one that&#8217;s sleeping) and copy+pasting from screenshots to assemble something that looks somewhat decent.  It takes me a long time to make anything reasonable, which means &#8230; I don&#8217;t do it often.  Of course, this means it takes even longer the next time I try.  <a href="https://fedoraproject.org/w/uploads/5/5f/FUDCon-Toronto_2009-Presentations-DesigningUIMockupsinInkscape.pdf"><em>Designing UI mockups in Inkscape</em></a> by Máirín Duffy was really helpful to demonstrate an easier way to rapidly generate UI mock-ups.  I don&#8217;t think this was the first time she gave this talk, but it was the first time I attended.  Great demos and tons of examples.  I&#8217;ll start with inkscape next time.  And remember, d saves time!</p>
<p>I skipped the next session, and instead spent time catching up with fellow home brewer <a href="http://www.bangmoney.org/serendipity/index.php">Chris Lumens</a>.  His keg has a leak, and this must be stopped.</p>
<h4>What&#8217;s next for Fedora Engineering?</h4>
<p>The last talk of the day was <em>The Next Big Fedora Engineering Project</em> by <a href="https://fedoraproject.org/wiki/User:Spot">spot</a>.  Similar in structure to the anaconda team talk, members of Tom&#8217;s group presented ideas for future engineering projects.  The good news, was that all the ideas were interesting, and they all seemed to have wide support (by a show of hands in the room).  The bad news, was that all the ideas were interesting and seemed to have wide support.  Two that stood out to me were the Fedora message bus and several discussions on how to identify and present contributor metrics.  The most notable idea, was the <a href="https://fedoraproject.org/wiki/Fedora_RPG">Fedora RPG</a>.  I&#8217;m sure many different groups have this challenge, but in QA, we have no shortage of activities that generate data.  It&#8217;s impossible to manual monitor all the data points (bugs, TRAC tickets, bodhi feedback, mailing list, IRC and wiki contributions) so you can  give kudos where deserved.  The RPG concept offers a new twist on this metrics challenge.  I&#8217;d love to take advantage of this for QA so we have better insight on community contributions.</p>
<h4>Let the hacking begin &#8230;</h4>
<p>Lucas and I cornered spot for some ideas on how we can resolve the packaging challenges in autotest.  The current autotest package installs all content into the directory <code>/usr/share/autotest</code>.  This really works well for the autotest scheduler since it rsync&#8217;s <code>/usr/share/autotest/client</code> to all test client systems.  The directory has all it needs to run jobs and report results and works well across all distributions.  Unfortunately, it&#8217;s not likely we&#8217;ll get an exception for this format during <a href="https://fedoraproject.org/wiki/Package_Review_Process">Fedora package review</a>.  Lucas began the difficult work of adjusting autotest python and configuration files so it would function with content in <a href="https://fedoraproject.org/wiki/PackagingGuidelines#Filesystem_Layout">FHS friendly</a> locations (e.g. /etc, /var,  site-packages etc&#8230;).  I worked on the easier task of updating our existing autotest.spec to accommodate the new layout.  We made a good bit of progress, but there is still a <strong>lot</strong> of work remaining to ensure that autotest will continue operating.</p>
<h3>Day#3 &#8211; <a href="https://fedoraproject.org/wiki/FUDCon:Tempe_2011#Hackfests_-_Sunday_.26_Monday">Hackfest</a></h3>
<h4>More autotest please&#8230;</h4>
<p>After settling in, Lucas and I picked up right where we left off.  Autotest relies on an older version of Django that is no longer in Fedora.  Upstream plans to update to the latest Django release, but that&#8217;s not on the short-term horizon.  In the meantime, I package Django-1.0.4 <a href="http://repos.fedorapeople.org/repos/fedora-qa/autoqa/">privately</a>.  However, if we want autotest accepted into Fedora, I need to formally package this older Django in a manner where it can co-exist with the current Django.  <a href="https://fedoraproject.org/wiki/ToshioKuratomi">Toshio</a> and <a href="https://fedoraproject.org/wiki/LukeMacken">Luke </a>shared ideas they&#8217;ve used for packaging compat versions of CherryPy.  Those tricks were just what the doctor ordered.</p>
<p>I learned about using <a href="http://packages.python.org/distribute/setuptools.html">setuptools</a> (instead of distutils) to build and install the egg.  The egg installation doesn&#8217;t interfere with the regular Django package, and allows callers to use the compat version by specifying:</p>
<pre>__requires__ = 'Django==1.0.4'
import pkg_resources</pre>
<p>Compat-Django-1.0.4 is packaged and about ready for review, my remaining task is to review the <a href="http://www.djangoproject.com/weblog/2010/dec/22/security/">current Django security advisories</a> and patch as necessary.  Thanks to Steve Milner for the security guidance.</p>
<h4>GNOME Shell discussion</h4>
<p>I had a quick talk with Chris Aillon, J5 and Adam Williamson regarding test ideas for the upcoming <a href="https://fedoraproject.org/wiki/QA/Fedora_15_test_days">GNOME Shell Test Days</a>.  This was a really good conversation, and one that can only take place in person.  Always amazing how much you can cover in person, as opposed to IRC or email.  For more details, read Adam&#8217;s <a href="http://www.happyassassin.net/2011/02/03/fudcon-days-1-5-to-3-and-the-aftermath/">blog post</a> on the subject.</p>
<h4>Back to autotest&#8230;</h4>
<p>Throughout the day, Lucas continued hacking on autotest.  Like I said, this is a large change to the autotest code-base and will take some time to get right.  I helped where I could with small patches and brainstorming, but Lucas ran the show.  His changes are available for testing in <a href="https://github.com/lmr/autotest/tree/fudcon">github</a>.  I plan to revisit and test his branch once F15Alpha is behind us.  Once again, this would be nearly impossible to do over IRC/email.  Or at least, we wouldn&#8217;t have made this much progress in such a short time.  Kudos to Lucas for his work!</p>
<h4>Nitrate</h4>
<p>I <a href="https://jlaska.wordpress.com/2011/01/28/fudcon-tempe-plan/">posted earlier about my plans</a> for FUDCon Tempe.  I planned to talk with Samuel Greenfeld to understand his test case management system (TCMS) needs and use cases.  Time was running short on Monday, so we only managed to talk briefly.  Samuel has a good grasp on what other open-source TCMS offerings are available, and the benefits and drawbacks to each.  We talked about the current status of <a href="https://fedorahosted.org/nitrate/">nitrate</a>, and <a href="https://fedoraproject.org/wiki/User:Rhe">Hurry&#8217;s</a> plans to host a demo instance so we can further explore modelling test plans and gathering data.  If anyone is interested in helping, please ask questions on the <a href="https://fedorahosted.org/mailman/listinfo/nitrate-devel">nitrate-devel</a> list and take a look at the <a href="https://fedoraproject.org/wiki/Tcms_feature_requirements">TCMS requirements</a> Hurry is tracking.</p>
<p>I had a fun and productive time at FUDCon Tempe.  Too often, I under-estimate the value of face-to-face interaction with people I interact with on a regular basis.  You know, the whole <em>networking</em> thing.  Of course, when you call it that, I don&#8217;t want to do it.  Anyway, with FUDCon Tempe behind me, it&#8217;s time to get Fedora 15 Alpha out the door.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=211&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/02/23/fudcon-tempe-trip-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 15 Alpha release candidate in sight</title>
		<link>http://jlaska.wordpress.com/2011/02/14/fedora-15-alpha-release-candidate-in-sight/</link>
		<comments>http://jlaska.wordpress.com/2011/02/14/fedora-15-alpha-release-candidate-in-sight/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:00:42 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[qa]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=233</guid>
		<description><![CDATA[If you&#8217;ve been following the Fedora 15 schedule, you probably are aware that the Alpha is looming.  Getting the Alpha to line-up with the release criteria has always been a challenge.  There is only so much you can cram into &#8230; <a href="http://jlaska.wordpress.com/2011/02/14/fedora-15-alpha-release-candidate-in-sight/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=233&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been following the <a href="http://rbergero.fedorapeople.org/schedules/f-15/f-15-quality-tasks.html">Fedora 15 schedule</a>, you probably are aware that the Alpha is looming.  Getting the Alpha to line-up with the <a href="http://fedoraproject.org/wiki/Fedora_15_Alpha_Release_Criteria">release criteria</a> has always been a challenge.  There is only so much you can cram into a six month release schedule.  The QA team starts testing candidate builds <strong>before</strong> F15 has been <a href="http://fedoraproject.org/wiki/Mass_Branching_SOP">branched</a> from <a href="http://fedoraproject.org/wiki/Releases/Rawhide">rawhide</a>.  In addition, due to the <a href="http://fedoraproject.org/wiki/Features/GCC46">gcc-4.6</a> feature, all packages must be rebuilt.  Testing a moving target is &#8230; difficult.</p>
<p>In addition to daily rawhide/branched updates testing, we attempt to reduce the risk with several small early test runs (called <a href="http://fedoraproject.org/wiki/Test_Results:Fedora_15_Pre-Alpha_Rawhide_Acceptance_Test_1">rawhide acceptance test</a>), a simulated release candidate ISO drop (called the <em>test compose</em>), and we pepper the weeks leading up to a release candidate testing (<a href="https://fedoraproject.org/wiki/Category:Fedora_15_Alpha_TC_Test_Results">F-15-Alpha.TC1</a>), and <a href="http://fedoraproject.org/wiki/QA:SOP_Blocker_Bug_Meeting">blocker bug reviews</a>.  The first review was held <a href="http://meetbot.fedoraproject.org/fedora-bugzappers/2011-02-11/f15alpha-bug-review.2011-02-11-17.00.html">last Friday</a>, and another is planned for this Friday.</p>
<p><a href="http://www.flickr.com/photos/28481088@N00/4082889318/"><img title="Target on the door" src="http://farm3.static.flickr.com/2667/4082889318_0cd839ae78.jpg" alt="" width="350" height="275" /></a></p>
<h3>F15Alpha blocker bugs</h3>
<p>Proposing a blocker bug is easy.  Simply add the text <code>F15Alpha</code> to the <code><strong>Blocks</strong></code> field of any bugzilla.redhat.com bug.  It&#8217;s also helpful to provide  some impact statement as to what users or use cases are hindered by the  bug.  Often, we cut and paste from the <a href="http://fedoraproject.org/wiki/Fedora_15_Alpha_Release_Criteria">release criteria</a> to keep things simple.  You can find the <a href="http://fedoraproject.org/wiki/QA:SOP_blocker_bug_process">full details on the wiki</a>.  If you aren&#8217;t sure &#8230; send a message to <a href="mailto:test@lists.fedoraproject.org">test@lists.fedoraproject.org</a> with details.</p>
<p>The <a href="https://bugzilla.redhat.com/showdependencytree.cgi?id=657616&amp;hide_resolved=1">F15Alpha blocker list</a> is very manageable at the moment.  However, we have another test compose (TC2), and release candidate (RC) yet to test.  Fedora contributors perform miracles on a regular basis, so I wouldn&#8217;t be surprised if we manage to line up all the moving targets in time. If you&#8217;d like to help get Fedora 15 Alpha released on time (<a href="http://rbergero.fedorapeople.org/schedules/f-15/f-15-quality-tasks.html">QA sign-off is February 23</a>), please <a href="http://fedoraproject.org/wiki/Category:Fedora_15_Alpha_TC_Test_Results">contribute test feedback</a> or keep <a href="http://bit.ly/e7ITdO">approved blocker bugs</a> updated and accurate.</p>
<p>The current approved, but unresolved, blocker bugs are listed below for convenience &#8230;</p>
<ul>
<li><a href="http://bugzilla.redhat.com/676485">676485</a> (distribution) &#8211; repoclosure fails on 15-Alpha.TC1</li>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=674978">674978</a> (gdm) &#8211; GDM in autologon error loop</li>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=676904">676904</a> (livecd-tools) &#8211; osmin.img is sometimes not a valid squashfs on livecd images</li>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=672265">672265</a> (livecd-tools) &#8211; &#8220;Install to harddrive&#8221; fails with &#8220;not a live image&#8221;</li>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=670379">670379</a> (firstboot) &#8211; Unknown lvalue &#8216;ValidNoProcess&#8217; in section &#8216;Service&#8217;.</li>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=579838">579838</a> (binutils) &#8211; glibc not compatible with AMD Geode LX</li>
</ul>
<p><em><a href="http://www.flickr.com/photos/28481088@N00/4082889318/">Image by tanakawho via flickr</a> used under a <a href="http://creativecommons.org/licenses/by-nc/2.0/deed.en">Creative Commons license</a></em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=233&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/02/14/fedora-15-alpha-release-candidate-in-sight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2667/4082889318_0cd839ae78.jpg" medium="image">
			<media:title type="html">Target on the door</media:title>
		</media:content>
	</item>
		<item>
		<title>FUDCon Tempe plan</title>
		<link>http://jlaska.wordpress.com/2011/01/28/fudcon-tempe-plan/</link>
		<comments>http://jlaska.wordpress.com/2011/01/28/fudcon-tempe-plan/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 02:02:57 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[FUDCon]]></category>
		<category><![CDATA[qa]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=204</guid>
		<description><![CDATA[Busy week!  Fedora 15 Test Days started with a fairly visible change to network device names.  A fair amount of autoqa testing and review in preparation for the upcoming release.  And of course &#8230; FUDCon Tempe kicks off tomorrow morning.  Leading up &#8230; <a href="http://jlaska.wordpress.com/2011/01/28/fudcon-tempe-plan/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=204&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Busy week!  <a href="https://fedoraproject.org/wiki/QA/Fedora_15_test_days">Fedora 15 Test Days</a> started with a fairly visible change to <a href="https://fedoraproject.org/wiki/Test_Day:2011-01-27_Network_Device_Naming_With_Biosdevname">network device names</a>.  A fair amount of autoqa testing and review in preparation for the upcoming release.  And of course &#8230; <a href="http://fedoraproject.org/wiki/FUDCon:Tempe_2011">FUDCon Tempe</a> kicks off tomorrow morning.  Leading up to each event, I always experience some anxiety trying to figure out how best to make use of my time, and Red Hat&#8217;s dollars.  Like clockwork, that anxiety returned on the weeks leading up to FUDCon Tempe.  I thought I&#8217;d share my goals for the event before the fun gets started.  No sense in delaying further, the fun starts in the morning &#8230;</p>
<ul>
<li><a href="https://fedoraproject.org/wiki/AutoQA">AutoQA</a> talk &#8211; I&#8217;m assuming most of the users+developers in attendance have heard about the autoqa project before.  It has occupied many cycles, especially on the lead up to autoqa-0.4.4.  I&#8217;d like to pitch a talk to discuss where we are, roadblocks/challenges, what&#8217;s coming next, and the shameless solicitation for help</li>
<li><a href="https://fedoraproject.org/wiki/Autotest">Autotest</a> packaging &#8211; After an in depth search for reasonable flights, <a href="https://fedoraproject.org/wiki/User:Lmr">Lucas Rodrigues</a>, upstream autotest maintainer, arrived in Phoenix on Thursday.  With Lucas in town, we&#8217;d like to host a hackfest session to help package autotest so it is ready for package review.  The web front-ends in autotest are built using gwt, which has some java build requirements.  I&#8217;m no java expert, so one idea is package autotest without the web front-end.  A FUDCon hackfest session seems like a perfect place to work through the issues.</li>
<li>Test case management &#8211; A few weeks back, <a href="https://fedoraproject.org/wiki/User:Rhe">Hurry</a> began identifying Fedora QA workflows and use cases in an effort to determine if the <a href="https://fedorahosted.org/nitrate/">nitrate</a> project would be a good fit for our test events.  Samuel Greenfeld (OLPC) provided some feedback on the list and has been experimenting with nitrate as well as other test case management systems.  I&#8217;m anxious to talk with Samuel, document his experiences and use cases in the hope we can better understand our own needs.</li>
<li>QA &#8211; Fedora 15 is heating up.  This week it was the <a href="https://fedoraproject.org/wiki/Test_Day:2011-01-27_Network_Device_Naming_With_Biosdevname">Network Device renaming test day</a>, next week, the first of several <a href="https://fedoraproject.org/wiki/Test_Day:2011-02-03_GNOME3_Alpha">GNOME3 test days</a>.  I&#8217;d like to sync up with <a href="http://www.happyassassin.net/">Adam Williamson</a> and offer any help preparing tests for the upcoming test day.  GNOME3 is a <strong>huge</strong> change from what you might be used to.  It&#8217;s going to frighten some folks, it&#8217;s already angered others, but hopefully some people will welcome the change.  Either way it&#8217;s just that &#8230; a big change, and it&#8217;s going to need a lot of help filing bugs and identifying any gaps.</li>
</ul>
<p><span style="font-size:14px;line-height:23px;">Hope to see you at FUDCon Tempe!</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=204&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2011/01/28/fudcon-tempe-plan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>
	</item>
		<item>
		<title>Coming to an update near you &#8230;</title>
		<link>http://jlaska.wordpress.com/2010/12/10/coming-to-an-update-near-you/</link>
		<comments>http://jlaska.wordpress.com/2010/12/10/coming-to-an-update-near-you/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 18:38:11 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[autoqa]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=191</guid>
		<description><![CDATA[This week, Kamil Páral and Martin Krizek experimented with the bodhi feedback submission code landing in autoqa-0.4.4. This is a small, but significant step in integrating AutoQA test results with the bodhi update process. As Will Woods pointed out, there &#8230; <a href="http://jlaska.wordpress.com/2010/12/10/coming-to-an-update-near-you/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=191&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This week, <a href="http://fedoraproject.org/wiki/User:Kparal">Kamil Páral</a> and <a href="https://fedoraproject.org/wiki/User:Mkrizek">Martin Krizek</a> experimented with the bodhi feedback submission code landing in <a href="https://fedoraproject.org/wiki/AutoQA_Roadmap"><code>autoqa-0.4.4</code></a>.  This is a small, but significant step in integrating  <a href="https://fedoraproject.org/wiki/AutoQA">AutoQA</a> test results with the bodhi update process.  As <a href="http://qa-rockstar.livejournal.com/">Will Woods</a> pointed out, there are plenty of activities following this step.  But for now, it&#8217;s exciting to have some visual feedback for all the planning, patching and debate that&#8217;s occupied our cycles for some time.</p>
<a href="https://admin.stg.fedoraproject.org/updates/polkit-qt-0.96.1-3.fc14"><img class="size-medium wp-image-192" title="Bodhi AutoQA feedback" src="http://jlaska.files.wordpress.com/2010/12/autoqa2.png?w=500" alt="" /></a>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=191&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2010/12/10/coming-to-an-update-near-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>

		<media:content url="http://jlaska.files.wordpress.com/2010/12/autoqa2.png" medium="image">
			<media:title type="html">Bodhi AutoQA feedback</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora QA special thanks &#8230;</title>
		<link>http://jlaska.wordpress.com/2010/11/08/fedora-qa-special-thanks/</link>
		<comments>http://jlaska.wordpress.com/2010/11/08/fedora-qa-special-thanks/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 15:15:33 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[qa]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=169</guid>
		<description><![CDATA[During the Report and Summary section of the installation validation SOP, we outline a procedure for wrapping up a community test run. We have similar wrap-ups for test days and desktop validation. Typically, this involves highlighting the bugs encountered and &#8230; <a href="http://jlaska.wordpress.com/2010/11/08/fedora-qa-special-thanks/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=169&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the <a>Report and Summary</a> section of the <a href="//fedoraproject.org/wiki/Install_Test_SOP">installation validation SOP</a>, we outline a procedure for wrapping up a community test run.  We have similar wrap-ups for <a href="http://fedoraproject.org/wiki/QA/SOP_Test_Day_management#Do_a_post-event_review">test days</a> and <a href="http://fedoraproject.org/wiki/QA:Desktop_validation_testing">desktop validation</a>.  Typically, this involves highlighting the bugs encountered and calling out any issues worth noting (e.g. outstanding efforts or troublesome areas).  </p>
<p>We use the <a href="https://fedoraproject.org/wiki/">fedoraproject.org/wiki</a> to plan and track test events.  Using the wiki has a lot of benefits for us, primarily, it&#8217;s dead-simple to use and it&#8217;s integrated with <a href="https://admin.fedoraproject.org/accounts/">FAS</a>.  When in doubt on any particular wiki syntax, there is a huge mediawiki community available to provide guidance (irc, forums and docs).  One drawback with using the wiki is gathering metrics.  For example, it&#8217;s bugged me that we haven&#8217;t been able to call out special thanks to test event contributors during an event recap.  The good news is that the raw data is there, we just need some duck-tape to pull it together.  To demonstrate, see the command-line below (mind the <a href="http://www.gnu.org/software/bash/manual/bashref.html#Pipelines">pipes</a> please) &#8230; </p>
<pre>
# for PLAN in Install Desktop; do  \
   echo -e "\n== F-14-Final-RC1 Testers - $PLAN ==" ;  \
   curl --stderr /dev/null "https://fedoraproject.org/w/index.php?title=Test_Results:Fedora_14_Final_RC1_$PLAN&amp;action=raw" \
   | grep -A999999 "^=.*Test Matrix.*=$" \
   | sed -e "s|{{\(result[^}]*\)}}|\n\1 |g" | grep "^result" \
   | gawk 'BEGIN{FS="[| ]"} $3{print $3} !$3{print "UNTESTED"}' \
   | sort | uniq -c | sort -bgr ; done

== F-14-Final-RC1 Testers - Install ==
     53 robatino
     53 kparal
     37 rhe
     37 jlaska
     23 jkeating
      8 cyberpear
      6 mkrizek
      2 rspanton
      2 newgle1
      2 dramsey
      1 UNTESTED
      1 bcl

== F-14-Final-RC1 Testers - Desktop ==
     16 UNTESTED
     14 mkrizek
     12 Masami
      7 kparal
      7 jskladan
      7 jreznik
      4 dramsey
      2 jsmith
      2 jlaska
</pre>
<p>Certainly not the prettiest command-line, and as you can imagine, bash is <a href="http://mywiki.wooledge.org/BashPitfalls">notoriously easy to mess-up</a>.  I wonder if it would be better to scrub the <a href="https://fedoraproject.org/w/index.php?title=Test_Results:Fedora_14_Final_RC1_Install&amp;action=history">history</a> of a wiki page instead?  Or perhaps, use <a href="https://admin.fedoraproject.org/pkgdb/acls/name/python-mwlib">python-mwlib</a> for a more programmatic approach?</p>
<p>Ignoring the data collection method, I&#8217;d like to focus on what the data tells me&#8230;  </p>
<ol>
<li>First, along with <a href="http://www.happyassassin.net/2010/10/26/fedora-14-goes-gold/">Adam Williamson</a>, I&#8217;d like to send a special thanks to our <a href="http://fedoraproject.org/wiki/QA">QA</a> contributors listed above.  As our test efforts mature, one thing is certain &#8230; we can&#8217;t do much of anything without our community.  My impression has been that substantive discussion around quality topics on <a href="https://admin.fedoraproject.org/mailman/listinfo/test">test@lists.fedoraproject.org</a> has been on the increase in recent releases.  Additionally, with <a href="https://fedoraproject.org/wiki/QA/Join#Release_validation">release validation</a> and <a href="http://fedoraproject.org/wiki/Proven_tester">proventesters</a>, my sense has been that participation and engagement has been on the rise.  While this is just one data set, I hope that the metrics collection method discussed here can help explore my theory.</li>
<li>The data above is for <strong>only</strong> one test event (Fedora 14 Final Release Candidate #1), so there are many more contributors from previous events that I can&#8217;t list in a single blog.  It certainly isn&#8217;t my intent to exclude them, but going forward I&#8217;d like to include the above data in each of our test events (test days and release validation) so we can recognize contributions.</li>
<li>UNTESTED &#8211; Geez, we have quite a bit of UNTESTED results in the <a href="https://fedoraproject.org/wiki/Test_Results:Fedora_14_Final_RC1_Desktop">Desktop validation matrix</a>.  That&#8217;s not entirely a surprise since we focus primarily on ensuring the default desktop (GNOME) and KDE are tested.  For remaining <a href="http://fedoraproject.org/en/get-fedora-options#desktops">desktop spins</a>, we reach out to the appropriate spin to provide test feedback using the provided framework.  There are already some ideas on the <a href="http://fedoraproject.org/wiki/Fedora_14_QA_Retrospective">F-14 QA Retrospective</a> page on improving this coverage. </li>
</ol>
<p>I&#8217;m still thinking about the data, so I may have more ideas in the next few days.  In the meantime, feel free to contribute your comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=169&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2010/11/08/fedora-qa-special-thanks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>
	</item>
		<item>
		<title>Embedding mediawiki templates inside &lt;pre&gt;</title>
		<link>http://jlaska.wordpress.com/2010/10/14/embedding-mediawiki-templates-inside/</link>
		<comments>http://jlaska.wordpress.com/2010/10/14/embedding-mediawiki-templates-inside/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 14:39:27 +0000</pubDate>
		<dc:creator>jlaska</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mediawiki]]></category>

		<guid isPermaLink="false">http://jlaska.wordpress.com/?p=142</guid>
		<description><![CDATA[I&#8217;ve experimented with this a few times, but never found something that works.  My intent was to use some mediawiki templates inside code/file samples on the wiki. On the wiki, we typically use &#60;pre&#62; tags to properly format code/file samples. &#8230; <a href="http://jlaska.wordpress.com/2010/10/14/embedding-mediawiki-templates-inside/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=142&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve experimented with this a few times, but never found something that works.  My intent was to use some mediawiki templates inside code/file samples on the wiki.  On the wiki, we typically use &lt;pre&gt; tags to properly format code/file samples.  By definition, the <a href="http://www.w3schools.com/tags/tag_pre.asp">html &lt;pre&gt; tag</a> allows for pre-formatted text to be displayed as-is.  Meaning, most html tags inside &lt;pre&gt; will be displayed and not processed.  There are exceptions for some font mark-up tags, but I&#8217;m not fully aware of which html tags are explicitly allowed inside &lt;pre&gt;.  Let&#8217;s try an example using the following html markup &#8230;</p>
<pre>&lt;pre&gt;
This is &lt;strong&gt;bold &lt;span style="color: red;"&gt;red&lt;/span&gt;&lt;/strong&gt; text
&lt;a href="#link"&gt;This is a link&lt;/a&gt;
&lt;span style="color:green;
                font-size:xx-large;
                font-family:'Times New Roman', Times, serif;
                font-weight:bolder;"&gt;big and green times&lt;/span&gt;
&lt;/pre&gt;</pre>
<p>This will display in a browser as &#8230;</p>
<pre>This is <strong>bold <span style="color:red;">red</span></strong> text
<a href="#link">This is a link</a>
<span style="color:green;font-size:xx-large;font-family:'Times New Roman', Times, serif;font-weight:bolder;">big and green times</span></pre>
<p>Introducing mediawiki into the mix complicates things slightly.  By design (as security precaution I&#8217;d guess), mediawiki does not honor all HTML tags on a wiki page.  However, it does recognize and permit <a href="http://www.mediawiki.org/wiki/Help:Formatting#HTML_tags">some tags</a>, &lt;pre&gt; being one of them.  As noted previously, we use the &lt;pre&gt; quite a bit to call out command execution or file contents.</p>
<p>Where the wrinkle comes is trying to use mediawiki templates inside a &lt;pre&gt; block.  Well why would you want to do that?  Often, our command samples or file contents include Fedora release version specific information.  Since Fedora releases come out about every 6 months, for every wiki page that doesn&#8217;t need to reference an explicit Fedora release, someone would need to modify every wiki page that references a Fedora version.  At a <a href="https://fedoraproject.org/w/index.php?title=Special:WhatLinksHere/Template:FedoraVersion&amp;limit=500">quick glance</a>, that comes to about ~179 wiki pages.  As I mentioned, not all of those pages would need an update when a new release comes out, but it at least gives a rough estimate.</p>
<p>After some searching, I came across a <a href="http://www.gossamer-threads.com/lists/wiki/mediawiki/118688#118688">forum post</a> which recommends a solution that works.  To demonstrate using a mediawiki template inside a &lt;pre&gt; block, I&#8217;ll use the wiki page <a href="https://fedoraproject.org/wiki/QA/Test_Days/Live_Image#Creating_a_Test_Day_Live_Image">Creating_a_Test_Day_Live_Image</a>.  On that page, we recommend checking out a <a href="http://git.fedorahosted.org/git/?p=spin-kickstarts.git">git branch of spin-kickstarts</a> whose name matches the upcoming Fedora release.  I&#8217;d like to use the <a href="https://fedoraproject.org/wiki/Template:FedoraVersion">FedoraVersion</a> template so we don&#8217;t need to constantly update this page each time a new version of Fedora is released.</p>
<p>To make use of the <a href="https://fedoraproject.org/wiki/Template:FedoraVersion">FedoraVersion</a> mediawiki template inside a &lt;pre&gt; block, you would enter the following &#8230;</p>
<pre>&lt;pre&amp;lt;noinclude&amp;gt;&amp;lt;/noinclude&amp;gt;&gt;
git clone 'git://git.fedorahosted.org/spin-kickstarts.git' -b F-{{FedoraVersion|number|next}}
&lt;/pre&amp;lt;noinclude&amp;gt;&amp;lt;/noinclude&amp;gt;&gt;</pre>
<p>This instructs mediawiki to format the page as follows:</p>
<pre>git clone 'git://git.fedorahosted.org/spin-kickstarts.git' -b F-14</pre>
<p>I have no idea why the magic combination of <code>noinclude</code> mediawiki tags works.  Bonus points to anyone who can answer: <em>why does this work</em>?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jlaska.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jlaska.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jlaska.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jlaska.wordpress.com&amp;blog=4527493&amp;post=142&amp;subd=jlaska&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jlaska.wordpress.com/2010/10/14/embedding-mediawiki-templates-inside/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9bebca45940b28880433040921eb926c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jlaska</media:title>
		</media:content>
	</item>
	</channel>
</rss>
