<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page launchpad 
             and everything recently tagged launchpad -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>launchpad on SWiK</title>
        <doap:name>launchpad</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/launchpad</link>
        <doap:homepage></doap:homepage>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>BzrVsGit - Bazaar Version Control</title>
            <link>http://swik.net/git/del.icio.us+tag%2Fgit/BzrVsGit+-+Bazaar+Version+Control/cby5u</link>
            <description></description>
            
            <pubDate>Fri, 08 Aug 2008 13:07:53 -0700</pubDate>
        </item>
            
        <item>
            <title>Kubuntu Team&#039;s package bug reports</title>
            <link>http://swik.net/Kubuntu/del.icio.us%2Ftag%2Fkubuntu/Kubuntu+Team%27s+package+bug+reports/cavow</link>
            <description>Bug statistics and list of bugs by package for all packages Kubuntu Team subscribes to.</description>
            
            <pubDate>Sun, 20 Jul 2008 09:46:45 -0700</pubDate>
        </item>
            
        <item>
            <title>Kubuntu Members - KDE 4 Repository in Launchpad</title>
            <link>http://swik.net/Kubuntu/del.icio.us%2Ftag%2Fkubuntu/Kubuntu+Members+-+KDE+4+Repository+in+Launchpad/cajpo</link>
            <description></description>
            
            <pubDate>Wed, 16 Jul 2008 13:43:12 -0700</pubDate>
        </item>
            
        <item>
            <title>SubDownloader : Find Subtitles for your Videos</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/SubDownloader+%3A+Find+Subtitles+for+your+Videos/b97yh</link>
            <description></description>
            
            <pubDate>Mon, 14 Jul 2008 05:45:51 -0700</pubDate>
        </item>
            
        <item>
            <title>Bazaar branches of zifr</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Bazaar+branches+of+zifr/b67xu</link>
            <description></description>
            
            <pubDate>Wed, 11 Jun 2008 21:17:07 -0700</pubDate>
        </item>
            
        <item>
            <title>5.0 journal: various issues, replication prefetching, our branch</title>
            <link>http://swik.net/MySQL/Planet+MySQL/5.0+journal%3A+various+issues%2C+replication+prefetching%2C+our+branch/b6udg</link>
            <description>&lt;p&gt;First of all, I have to apologize about some of my previous remark on 5.0 performance. I passed &amp;#8216;-g&amp;#8217; CFLAGS to my build, and that replaced default &amp;#8216;-O2&amp;#8242;. Compiling MySQL without -O2 or -O3 makes it slower. Apparently, much slower.&lt;/p&gt;
&lt;p&gt;Few migration notes - once I loaded the schema with character set set to binary (because we treat it as such), all VARCHAR fields were converted to VARBINARY, what I expected, but more annoying was CHAR converted to BINARY - which pads data with \0 bytes. Solution was converting everything into VARBINARY - as actually it doesn&amp;#8217;t have much overhead. &lt;code&gt;TRIM(&#039;\0&#039; FROM field)&lt;/code&gt; eventually helped too.&lt;/p&gt;
&lt;p&gt;The other problem I hit was paramy operation issue. One table definition failed, so paramy exited immediately - though it had few more queries remaining in the queue - so most recent data from some table was not inserted. The cheap workaround was adding -f option, which just ignores errors. Had to reload all data though&amp;#8230;&lt;/p&gt;
&lt;p&gt;I had real fun experimenting with auto-inc locking. As it was major problem for initial paramy tests, I hacked InnoDB not to acquire auto-inc table-level lock (that was just commenting out few lines in ha_innodb.cc). After that change CPU use went to &gt;300% instead of ~100% - so I felt nearly like I&amp;#8217;ve done the good thing. Interesting though - profile showed that quite a lot of CPU time was spent in synchronization - mutexes and such - so I hit SMP contention at just 4 cores. Still, the import was faster (or at least the perception), and I already have in mind few cheap tricks to make it faster (like disabling mempool). The easiest way to make it manageable is simply provide a global variable for auto-inc behavior, though elegant solutions would attach to &amp;#8216;ALTER TABLE &amp;#8230; ENABLE KEYS&amp;#8217; or something similar. &lt;/p&gt;
&lt;p&gt;Once loaded, catching up on replication was another task worth few experiments. As the data image was already quite a few days old, I had at least few hours to try to speed up replication. Apparently, Jay Janssen&amp;#8217;s prefetcher has disappeared from the internets, so the only one left was &lt;a href=&quot;http://maatkit.org&quot;&gt;maatkit&amp;#8217;s&lt;/a&gt; mk-slave-prefetch. It rewrites UPDATEs into simple SELECTs, but executes them just on single thread, so the prefetcher was just few seconds ahead of SQL thread - and speedup was less than 50%. I made a &lt;a href=&quot;http://dammit.lt/snippets/quick-mkprefetch-hack.txt&quot;&gt;quick hack&lt;/a&gt; that parallelized the task, and it managed to double replication speed. &lt;/p&gt;
&lt;p&gt;Still, there&amp;#8217;re few problems with the concept - it preheats just one index, used for lookup, and doesn&amp;#8217;t work on secondary indexes. Actually analyzing the query, identifying what and where changes, and sending a select with UNIONs, preheating every index affected by write query could be more efficient. Additionally it would make adaptive hash or insert buffers useless - as all buffer pool pages required would be already in memory - thus leading to less spots of mutex contention. &lt;/p&gt;
&lt;p&gt;We also managed to hit few optimizer bugs too, related to casting changes in 5.0. Back in 4.0 it was safe to pass all constants as strings, but 5.0 started making poor solutions then (like filesorting, instead of using existing ref lookup index, etc). I will have to review why this happens, does it make sense, and if not - file a bug. For now, we have some workarounds, and don&amp;#8217;t seem to be bitten too much by the behavior. &lt;/p&gt;
&lt;p&gt;Anyway, in the end I directed half of &lt;a href=&quot;http://en.wikipedia.org&quot;&gt;this site&amp;#8217;s&lt;/a&gt; core database off-peak load to this machine, and it was still keeping up with replication at ~8000 queries per second. The odd thing  yet is that though 5.0 eats ~30% more CPU, it shows up on profiling as faster-responding box. I guess we&amp;#8217;re just doing something wrong. &lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve published our MySQL branch at &lt;a href=&quot;https://code.launchpad.net/~wikimedia/mysql/mysql-5.0&quot;&gt;launchpad&lt;/a&gt;. Do note, release process is somewhat ad-hoc (or non-existing), and engineer doing it is clueless newbie. :)&lt;/p&gt;
&lt;p&gt;I had plans to do some more scalability tests today, but apparently the server available is just two-core machine, so there&amp;#8217;s nothing much I can do on it. I guess another option is grabbing some 8-core application server and play with it. :)&lt;/p&gt;</description>
            
            <pubDate>Sat, 07 Jun 2008 02:02:11 -0700</pubDate>
        </item>
            
        <item>
            <title>Universal Mind</title>
            <link>http://swik.net/RIA/del.icio.us%2Ftag%2FRIA/Universal+Mind/b3q60</link>
            <description></description>
            
            <pubDate>Tue, 18 Mar 2008 10:54:06 -0700</pubDate>
        </item>
            
        <item>
            <title>Bazaar branches related to Mythbuntu</title>
            <link>http://swik.net/MythTV/del.icio.us%2Ftag%2Fmythtv/Bazaar+branches+related+to+Mythbuntu/b1wu2</link>
            <description></description>
            
            <pubDate>Thu, 31 Jan 2008 12:45:51 -0800</pubDate>
        </item>
            
        <item>
            <title>Apps/Xubuntu/PPA for Xubuntu Team</title>
            <link>http://swik.net/Xfce/del.icio.us%2Ftag%2Fxfce/Apps%2FXubuntu%2FPPA+for+Xubuntu+Team/bzvkh</link>
            <description></description>
            
            <pubDate>Tue, 08 Jan 2008 11:20:26 -0800</pubDate>
        </item>
            
        <item>
            <title>Inkscape&#039;s first two weeks with Launchpad | infinite knots</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/Inkscape%27s+first+two+weeks+with+Launchpad+%7C+infinite+knots/bzqv7</link>
            <description>Bug-hunting easier now than at Sourceforge. &amp;quot;The change would have been easier if Launchpad was open source, but I feel confident that Canonical&#039;s commitment to opening it is genuine.&amp;quot;</description>
            
            <pubDate>Sat, 05 Jan 2008 14:12:54 -0800</pubDate>
        </item>
            
        <item>
            <title>Bug #121653 in linux-restricted-modules-2.6.22 (Ubuntu): &quot;[gutsy] fglrx breaks over suspend/resume&quot;</title>
            <link>http://swik.net/Hibernate/del.icio.us+tag%2Fhibernate/Bug+%23121653+in+linux-restricted-modules-2.6.22+%28Ubuntu%29%3A+%22%5Bgutsy%5D+fglrx+breaks+over+suspend%2Fresume%22/bxw2e</link>
            <description></description>
            
            <pubDate>Wed, 19 Dec 2007 05:53:00 -0800</pubDate>
        </item>
            
        <item>
            <title>Ubuntu in Launchpad</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Ubuntu+in+Launchpad/bvurk</link>
            <description></description>
            
            <pubDate>Mon, 03 Dec 2007 03:31:05 -0800</pubDate>
        </item>
            
        <item>
            <title>PPAs for everyone, faster Translations - Launchpad 1.1.11</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/PPAs+for+everyone%2C+faster+Translations+-+Launchpad+1.1.11/bvcaf</link>
            <description>&lt;p&gt;The Launchpad team have released Launchpad 1.1.11! There are two big pieces of news this month!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Personal Package Archives are now out of beta and available to all Launchpad users and teams. Find out more in the quick-start guide at &lt;a href=&quot;https://help.launchpad.net/PPAQuickStart&quot;&gt;help.launchpad.net/PPAQuickStart&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://translations.launchpad.net/&quot;&gt;Launchpad Translations&lt;/a&gt; is now much quicker and rock-solid. The Launchpad team say to expect exports and imports in half the time and next to no timeouts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;See the &lt;a href=&quot;http://news.launchpad.net/releases/launchpad-1111-released&quot;&gt;Launchpad News blog for full details&lt;/a&gt; of the release.&lt;/p&gt;
</description>
            
            <pubDate>Sun, 25 Nov 2007 15:38:58 -0800</pubDate>
        </item>
            
        <item>
            <title>Inkscape moving to Launchpad! at Launchpad blog</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/Inkscape+moving+to+Launchpad%21+at+Launchpad+blog/buwgh</link>
            <description>Inkscape - the free software vector drawing tool - moving bug tracker to Canonical&#039;s Launchpad.</description>
            
            <pubDate>Wed, 21 Nov 2007 13:25:46 -0800</pubDate>
        </item>
            
        <item>
            <title>Ubuntu Personal Package Archives</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/Ubuntu+Personal+Package+Archives/bul5g</link>
            <description></description>
            
            <pubDate>Mon, 19 Nov 2007 13:28:23 -0800</pubDate>
        </item>
            
        <item>
            <title>Launchpad</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Launchpad/btx9t</link>
            <description></description>
            
            <pubDate>Wed, 14 Nov 2007 01:55:25 -0800</pubDate>
        </item>
            
        <item>
            <title>Launchpad</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Launchpad/brqp1</link>
            <description></description>
            
            <pubDate>Sun, 28 Oct 2007 08:33:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Learn PPA and Ubuntu packaging basics</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/Learn+PPA+and+Ubuntu+packaging+basics/bmsef</link>
            <description>&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;event-start&quot;&gt;Start: 2007-09-13 15:00&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;event-end&quot;&gt;End: 2007-09-13 16:00&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;event-tz&quot;&gt;Timezone: Etc/GMT&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Personal Package Archives is Launchpad&amp;#8217;s new beta feature that builds and hosts Ubuntu .deb packages in your very own apt repository.&lt;/p&gt;
&lt;p&gt;At 15.00 UTC on Thursday 13th September, the Launchpad and &lt;a href=&quot;https://wiki.ubuntu.com/MOTU&quot;&gt;Ubuntu MOTU&lt;/a&gt; teams are jointly hosting &lt;strong&gt;&lt;a href=&quot;https://help.launchpad.net/PPA101&quot;&gt;PPA and Packaging 101&lt;/a&gt;&lt;/strong&gt;. This IRC session in #launchpad will introduce you to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the basics of packaging for Ubuntu&lt;/li&gt;
&lt;li&gt;solving your dependencies from the relevant Ubuntu section - i.e. the ogre model&lt;/li&gt;
&lt;li&gt;version consistency between PPA and Ubuntu&amp;#8217;s primary archive.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;#8217;s also your opportunity to ask questions about PPA and get answers from the Launchpad and MOTU teams. If you want to see a particular topic covered, add it to the &lt;a href=&quot;https://help.launchpad.net/PPA101&quot;&gt;class&amp;#8217;s agenda&lt;/a&gt; on the Launchpad help wiki.&lt;br/&gt;
See you there!&lt;/p&gt;
</description>
            
            <pubDate>Tue, 11 Sep 2007 09:44:28 -0700</pubDate>
        </item>
            
        <item>
            <title>Ubufox Extension&#039;s Bazaar branches registered in Launchpad</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Ubufox+Extension%27s+Bazaar+branches+registered+in+Launchpad/blj17</link>
            <description>Ubuntu Firefox Extension</description>
            
            <pubDate>Sun, 02 Sep 2007 19:23:49 -0700</pubDate>
        </item>
            
        <item>
            <title>Ubuntu in Launchpad</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Ubuntu+in+Launchpad/bk99x</link>
            <description></description>
            
            <pubDate>Fri, 31 Aug 2007 10:23:44 -0700</pubDate>
        </item>
            
        <item>
            <title>Contributing to projects on Launchpad.net with Bazaar | Muffin Research Labs by Stuart Colville</title>
            <link>http://swik.net/User:osdeinfo/del.icio.us%2Fosde.info/Contributing+to+projects+on+Launchpad.net+with+Bazaar+%7C+Muffin+Research+Labs+by+Stuart+Colville/bkfq0</link>
            <description></description>
            
            <pubDate>Sat, 25 Aug 2007 11:10:41 -0700</pubDate>
        </item>
            
        <item>
            <title>Launchpad 1.1.8 released!</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/Launchpad+1.1.8+released%21/bj6go</link>
            <description>&lt;p&gt;This week the Launchpad team released version 1.1.8 of &lt;a href=&quot;https://launchpad.net/&quot;&gt;Launchpad&lt;/a&gt;. There&amp;#8217;s a lot in this release to excite the Ubuntu community!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; The &lt;a href=&quot;https://help.launchpad.net/PPAQuickStart&quot;&gt;Personal Package Archives&lt;/a&gt; beta will soon be available to all members of the &lt;a href=&quot;https://help.launchpad.net/JoiningLaunchpadBetaTesters&quot;&gt;Launchpad Beta Testers team&lt;/a&gt; who have signed the Ubuntu Code of Conduct.&lt;/li&gt;
&lt;li&gt;You can now see your &lt;a href=&quot;https://translations.launchpad.net/people/+me/+imports&quot;&gt;individual translation import queue&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;If you host code branches with Launchpad, you can now specify which branch, if any, you intend to merge the code into.&lt;/li&gt;
&lt;li&gt;The bug tracker&amp;#8217;s &lt;a href=&quot;https://help.launchpad.net/UsingMaloneEmail&quot;&gt;email interface&lt;/a&gt; now lets you set a bug&amp;#8217;s tag.&lt;/li&gt;
&lt;li&gt;Also in the bug tracker, bug notification email headers now state which milestone the bug is targeted to.&lt;/li&gt;
&lt;li&gt;Work is underway to enable you to file bugs against packages in Canonical&amp;#8217;s commercial repository.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Other highlights include a new &amp;#8220;Deactivate your account&amp;#8221; option, Trac bug statuses are correctly interpreted and the bug filing page has been overhauled.&lt;/p&gt;
&lt;p&gt;One important note: searching in bug comments has been temporarily suspended, as it was causing timeouts. As soon as the problem is fixed, bug comment searching will return! &lt;/p&gt;
&lt;p&gt;You can find out more in the &lt;a href=&quot;https://lists.ubuntu.com/archives/launchpad-users/2007-August/001998.html&quot;&gt;Launchpad 1.1.8 in the release notes&lt;/a&gt;.&lt;/p&gt;
</description>
            
            <pubDate>Thu, 23 Aug 2007 11:16:45 -0700</pubDate>
        </item>
            
        <item>
            <title>We are sailing...</title>
            <link>http://swik.net/avant-window-navigator/Neil+Patel%27s+Blog/We+are+sailing.../bgz9m</link>
            <description>...across the shore from code.google.com to launchpad.net!&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Why?&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;Don&#039;t get me wrong, Google Code is great, and I still use it for Affinity and other projects, but Awn is getting larger and larger, in community and developers, and this needs some proper structure. Launchpad provides that structure incredibly well, with excellent road-mapping/bug reporting/feature requests/translation infrastructure, and we hope to make the most of it!&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Show me the source!&lt;/span&gt;&lt;br/&gt;&lt;span&gt;&lt;br/&gt;&lt;a href=&quot;http://www.launchpad.net/awn&quot;&gt;http://www.launchpad.net/awn&lt;/a&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;is the new home of Awn. Over the past few days, those belonging to the &lt;a href=&quot;http://www.launchpad.net/%7Eawn-core&quot;&gt;awn-core&lt;/a&gt; team have helped me move everything over to launchpad.&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Development of Awn will be in Launchpad from now on&lt;/span&gt;, bug reports, feature requests (blueprints) and translations should be directed there too.  The &lt;a href=&quot;http://www.launchpad.net/awn&quot;&gt;Awn page&lt;/a&gt; in launchpad has instructions on how to download the development version.&lt;br/&gt;&lt;br/&gt;I am working on transferring the existing bugs from code.google.com to launchpad. If you have previously opened/commentated on a bug, and would like to help me out, you can create the corresponding bug in launchpad, and just leave a comment in the original bug report that you have done so :-D.&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;What now?&lt;br/&gt;&lt;/span&gt;&lt;br/&gt;Well, there&#039;s been a burst of activity on the&lt;a href=&quot;http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&quot;&gt; Awn forum&lt;/a&gt;, with patches coming at me left, right and center. Consequently, Awn has gained some new developers and bug-people, and we are working towards a 0.2 release, with a ton of ideas for 0.3! I&#039;ll make an other post outlining the new devels and their contributions soon.&lt;br/&gt;&lt;br/&gt;Also, Awn currently has an universal &lt;a href=&quot;http://aarobone.blogspot.com/2007/07/awn-applet-dialog-test-case.html&quot;&gt;applet menu-system&lt;/a&gt;, a &lt;a href=&quot;http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&amp;action=g_reply&amp;amp;ID=493&amp;page=1&amp;amp;isLive=true&quot;&gt;brand new preferences application&lt;/a&gt;, &lt;a href=&quot;http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&amp;action=g_reply&amp;amp;ID=496&amp;page=1&amp;amp;isLive=true&quot;&gt;mac-stacks applet&lt;/a&gt; and many more applets in development in the forum, with updates everyday! I am currently working on a way to get everyone working in the same place, so we can have a awn-applets release along side the main Awn release, but more on that later.&lt;br/&gt;&lt;br/&gt;I think that&#039;s it for now :-).&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;/span&gt;</description>
            
            <pubDate>Tue, 31 Jul 2007 14:32:36 -0700</pubDate>
        </item>
            
        <item>
            <title>FAQs in Launchpad and more new features</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/FAQs+in+Launchpad+and+more+new+features/bfbe5</link>
            <description>&lt;p&gt;Every project has frequently asked questions. Now, with the release of Launchpad 1.1.7, the Answer Tracker makes it easy to create and find answers to Ubuntu&amp;#8217;s most common questions.&lt;/p&gt;
&lt;p&gt;There are two ways to use FAQ in the Answer Tracker:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You&amp;#8217;re looking for help:&lt;/strong&gt; you can search and browse FAQ answers to find help with your problem.&lt;br/&gt;
&lt;strong&gt;You&amp;#8217;re an Ubuntu answer contact:&lt;/strong&gt; you can mark an answer as an FAQ and then create an answer that will be available to anyone else using the Answer Tracker.&lt;/p&gt;
&lt;p&gt;The idea behind the FAQ feature is pretty simple: knowledge about Ubuntu is spread across the wiki, forums, third-party websites and the Answer Tracker. FAQ can draw on all that knowledge to offer Ubuntu users a canonical answer, at the same time as making life a little easier for answer contacts.&lt;/p&gt;
&lt;p&gt;FAQ are available to all projects who use the Answer Tracker, not just Ubuntu. Find more about FAQ in the Answer Tracker in our &lt;a href=&quot;https://help.launchpad.net/FrequentlyAskedQuestions&quot;&gt;FAQ quick-start guide&lt;/a&gt;!&lt;/p&gt;
&lt;h2&gt;Also in Launchpad 1.1.7&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Larger font size:&lt;/strong&gt; visit launchpad.net and you&amp;#8217;ll see that we&amp;#8217;ve increased the size of the text used on the site, making it easier to read Launchpad&amp;#8217;s default text size.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New remote bug tracker support:&lt;/strong&gt; Launchpad can now track bugs in the Mantis bug tracker. (&lt;a href=&quot;https://help.launchpad.net/Mantis&quot;&gt;Find out more&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Improved duplicate bug handling:&lt;/strong&gt; if someone has already reported the bug you&amp;#8217;ve encountered it&amp;#8217;s now much easier to select that report rather than create a duplicate.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Teams can now set their default language:&lt;/strong&gt; teams can become an answer contact for a specific language.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Branch associations:&lt;/strong&gt; you can now see all bugs, blueprints and subscribers associated with a branch on its branch associations page.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For full details of Launchpad 1.1.7, take a look at the &lt;a href=&quot;https://lists.ubuntu.com/archives/launchpad-users/2007-July/001760.html&quot;&gt;release notes&lt;/a&gt;. And keep an eye on the &lt;a href=&quot;http://news.launchpad.net/&quot;&gt;Launchpad News&lt;/a&gt; blog to stay up to date with Launchpad!&lt;/p&gt;
</description>
            
            <pubDate>Fri, 20 Jul 2007 07:14:00 -0700</pubDate>
        </item>
            
        <item>
            <title>Canonical open-sources first Launchpad component</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Canonical+open-sources+first+Launchpad+component/bej7t</link>
            <description></description>
            
            <pubDate>Sun, 15 Jul 2007 19:31:55 -0700</pubDate>
        </item>
            
        <item>
            <title>New bug statuses and more in Launchpad 1.1.6</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/New+bug+statuses+and+more+in+Launchpad+1.1.6/bb891</link>
            <description>&lt;p&gt;One of the agenda items at UDS Sevilla was to improve the efficiency of Ubuntu&amp;#8217;s bug workflow. If you work with Ubuntu bugs, you may already have noticed that some of the bug status names have changed:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;New:&lt;/strong&gt; was &lt;em&gt;Unconfirmed&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Incomplete:&lt;/strong&gt; was &lt;em&gt;Needs Info&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Invalid:&lt;/strong&gt; was &lt;em&gt;Rejected&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The meaning of these statuses hasn&amp;#8217;t changed. However, there are two new bug statuses:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Triaged:&lt;/strong&gt; this bug has a complete report, has been confirmed and is ready to be fixed.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Won&amp;#8217;t Fix:&lt;/strong&gt; this bug has been confirmed but, for whatever reason, won&amp;#8217;t be fixed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These two new statuses are available only to either a project&amp;#8217;s owners or members of its Bug Contact team. So, in Ubuntu&amp;#8217;s case it&amp;#8217;s available to members of the Ubuntu Drivers and Ubuntu Bugs teams. This means that developers can view the &lt;em&gt;Triaged&lt;/em&gt; queue knowing that an experienced triager considers those bug reports complete.&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;Confirmed&lt;/em&gt; status still works, though, so it&amp;#8217;s down to each project&amp;#8217;s bug workflow policy to decide whether to use &lt;em&gt;Triaged&lt;/em&gt; and &lt;em&gt;Won&amp;#8217;t Fix&lt;/em&gt;.&lt;/p&gt;
&lt;h2&gt;More people can nominate bugs&lt;/h2&gt;
&lt;p&gt;To relieve the bottle-neck caused by Ubuntu drivers being the only people able to nominate bugs for release, now anyone with the relevant upload permissions for a component can also nominate bugs in that component. For example: if a developer has upload permissions for universe, she can also nominate universe bugs for release.&lt;/p&gt;
&lt;h2&gt;Other highlights for the Ubuntu community&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Answer contacts will now receive notification of new questions in their preferred languages only.&lt;/li&gt;
&lt;li&gt;Team members can now renew their own memberships, when their membership is close to expiry if the team is set-up with an on-demand policy.&lt;/li&gt;
&lt;li&gt;Teams can now only join other teams with the approval of the first team’s administrator.&lt;/li&gt;
&lt;li&gt;It is now possible to see how many and which translations diverge from upstream.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Find out more&lt;/h2&gt;
&lt;p&gt;There&amp;#8217;s plenty more to Launchpad 1.1.6, including the fabulous new &lt;a href=&quot;http://news.launchpad.net/&quot;&gt;Launchpad News blog&lt;/a&gt;! You can find the &lt;a href=&quot;https://lists.ubuntu.com/archives/launchpad-users/2007-June/001611.html&quot;&gt;full release notes on the launchpad-users&lt;/a&gt; mailing list.&lt;/p&gt;
</description>
            
            <pubDate>Thu, 21 Jun 2007 08:55:15 -0700</pubDate>
        </item>
            
        <item>
            <title>TreeMagic Content Management System in Launchpad</title>
            <link>http://swik.net/User:osdeinfo/del.icio.us%2Fosde.info/TreeMagic+Content+Management+System+in+Launchpad/bapl3</link>
            <description></description>
            
            <pubDate>Mon, 11 Jun 2007 04:47:59 -0700</pubDate>
        </item>
            
        <item>
            <title>Og så alligevel… » Blog Archive » Why Launchpad isn’t taking off just yet</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Og+s%C3%A5+alligevel%E2%80%A6+%C2%BB+Blog+Archive+%C2%BB+Why+Launchpad+isn%E2%80%99t+taking+off+just+yet/7dy6</link>
            <description>&amp;quot;What is Canonical’s intended purpose with Launchpad, and why isn’t it Free Software?&amp;quot;</description>
            
            <pubDate>Tue, 15 May 2007 01:56:00 -0700</pubDate>
        </item>
            
        <item>
            <title>Mentoring comes to Launchpad</title>
            <link>http://swik.net/Ubuntu/Ubuntu+Fridge/Mentoring+comes+to+Launchpad/5nlw</link>
            <description> &lt;p&gt;There&amp;#8217;s something new in Launchpad this week: mentoring.&lt;/p&gt;
&lt;p&gt;The Ubuntu community is proof that free software works best when we work together. It&amp;#8217;s not always easy for new participants to get started, though.&lt;/p&gt;
&lt;p&gt;Launchpad&amp;#8217;s new mentoring framework is a simple way to help new community members learn the ropes. With it you can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Offer to mentor people who want to fix a bug or implement a blueprint.&lt;/li&gt;
&lt;li&gt;Provide a list of items that are relevant to your project and for which mentorship is available.&lt;/li&gt;
&lt;li&gt;Provide a list of items that would be a good starting point for someone who wants to join one of your teams&lt;/li&gt;
&lt;li&gt;See what mentorship offers individuals are currently making.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Anyone who is a member of at least one Launchpad team can offer mentorship and there&amp;#8217;s no admin for project or team leaders as it&amp;#8217;s entirely based on commitments made by individuals.&lt;/p&gt;
&lt;p&gt;You can find out more in the Launchpad &lt;a href=&quot;https://help.launchpad.net/MentoringManagement&quot;&gt;guide to mentoring management&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The Launchpad team have been busy elsewhere, too! With three new code release recently, there&amp;#8217;s a whole load of new features and bug fixes. Full details are in the &lt;a href=&quot;https://lists.ubuntu.com/archives/launchpad-users/2007-May/001392.html&quot;&gt;release notes&lt;/a&gt;.&lt;/p&gt;
 </description>
            
            <pubDate>Wed, 02 May 2007 07:49:39 -0700</pubDate>
        </item>
            
        <item>
            <title>Bugs in Ubuntu</title>
            <link>http://swik.net/User:osdeinfo/del.icio.us%2Fosde.info/Bugs+in+Ubuntu/37f7</link>
            <description></description>
            
            <pubDate>Thu, 19 Apr 2007 04:54:23 -0700</pubDate>
        </item>
                </channel>
</rss>
