Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: https://www.joachim-breitner.de/blog/feeds/categories/15-Darcs.rss

  1. <?xml version="1.0" encoding="utf-8" ?>
  2.  
  3. <rss version="2.0"
  4.   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  5.   xmlns:admin="http://webns.net/mvcb/"
  6.   xmlns:dc="http://purl.org/dc/elements/1.1/"
  7.   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8.   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  9.   xmlns:content="http://purl.org/rss/1.0/modules/content/"
  10.  
  11.   xmlns:atom="http://www.w3.org/2005/Atom">
  12. <channel>
  13.    
  14.    <title>nomeata’s mind shares - Darcs</title>
  15.    <link>http://www.joachim-breitner.de/blog/</link>
  16.    <description>Joachim Breitners Denkblogade</description>
  17.    <dc:language>de</dc:language>
  18.    <admin:errorReportsTo rdf:resource="mailto:mail@joachim-breitner.de" />
  19.    <generator>Serendipity 1.7 - http://www.s9y.org/</generator>
  20.    
  21.    <image>
  22.        <url>http://joachim-breitner.de/avatars/avatar_128.png</url>
  23.        <title>RSS: nomeata’s mind shares - Darcs - Joachim Breitners Denkblogade</title>
  24.        <link>http://www.joachim-breitner.de/blog/</link>
  25.        <width>128</width>
  26.        <height>128</height>
  27.    </image>
  28.  
  29. <item>
  30.    <title>ipatch on hackage</title>
  31.    <link>http://www.joachim-breitner.de/blog/archives/435-ipatch-on-hackage.html</link>
  32.            <category>Darcs</category>
  33.            <category>Haskell</category>
  34.    
  35.    <comments>http://www.joachim-breitner.de/blog/archives/435-ipatch-on-hackage.html#comments</comments>
  36.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=435</wfw:comment>
  37.  
  38.    <slash:comments>0</slash:comments>
  39.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=435</wfw:commentRss>
  40.    
  41.  
  42.    <author>mail@joachim-breitner.de (nomeata)</author>
  43.    <content:encoded>
  44.    &lt;p&gt;With the &lt;a href=&quot;http://hackage.haskell.org/package/darcs-beta-2.4.98.3&quot;&gt;Beta 3 release of Darcs 2.5&lt;/a&gt; on &lt;a href=&quot;http://hackage.haskell.org/&quot;&gt;Hackage&lt;/a&gt; (the Haskell library and program repository), &lt;a href=&quot;http://www.joachim-breitner.de/blog/archives/425-ipatch,-the-interactive-patch-editor.html&quot;&gt;the ipatch program I recently introduced&lt;/a&gt; could now be uploaded to hackage, too. If you use &lt;a href=&quot;http://haskell.org/cabal/download.html&quot;&gt;&lt;tt&gt;cabal-install&lt;/tt&gt;&lt;/a&gt;, you can now install and use it with a simple run of &amp;quot;&lt;tt&gt;cabal install ipatch&lt;/tt&gt;&amp;quot;.&lt;/p&gt;
  45. &lt;p&gt;I also made the program now handle patches that add or remove files, extended the help texts a bit and added a test suite. This means that you can actually make use of ipatch as of now, to split patches into several small patches and to apply a patch interactively. Of course it needs some more testing, and you might have feature wishes – in either case, let me know.&lt;/p&gt;
  46.    </content:encoded>
  47.  
  48.    <pubDate>Sun, 22 Aug 2010 21:05:13 +0200</pubDate>
  49.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/435-guid.html</guid>
  50.    
  51.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F435-ipatch-on-hackage.html&amp;user_id=nomeata" type="text/html" />
  52. </item>
  53. <item>
  54.    <title>ipatch, the interactive patch editor</title>
  55.    <link>http://www.joachim-breitner.de/blog/archives/425-ipatch,-the-interactive-patch-editor.html</link>
  56.            <category>Darcs</category>
  57.            <category>English</category>
  58.            <category>Haskell</category>
  59.    
  60.    <comments>http://www.joachim-breitner.de/blog/archives/425-ipatch,-the-interactive-patch-editor.html#comments</comments>
  61.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=425</wfw:comment>
  62.  
  63.    <slash:comments>2</slash:comments>
  64.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=425</wfw:commentRss>
  65.    
  66.  
  67.    <author>mail@joachim-breitner.de (nomeata)</author>
  68.    <content:encoded>
  69.    &lt;h3&gt;The problem: Splitting patches&lt;/h3&gt;
  70. &lt;p&gt;As a Debian maintainer, I often work with patches (files listing changes to text files), for example when tracking the modification I make to some software before I upload the&amp;#160; package to Debian. To manage these patches, &lt;a href=&quot;https://savannah.nongnu.org/projects/quilt&quot;&gt;quilt&lt;/a&gt; is a nice tool: It helps you maintain a stack of patches on top of the original code and encourages you to keep your variously modifications separate.&lt;/p&gt;
  71. &lt;p&gt;One use case is not supported by quilt at all: Splitting patches. One often has a large patch containing several independent changes. This might happen after you fix a few problems in the upstream code and then run &lt;tt&gt;dpkg-buildpackage&lt;/tt&gt;, which will create one patch of your changes and put it in &lt;tt&gt;debian/patches&lt;/tt&gt;. Before, I had to manually edit the patch and write the hunks, which are the building blocks of patches, into separate file.&lt;/p&gt;
  72. &lt;h3&gt;Where it already works&lt;/h3&gt;
  73. &lt;p&gt;There is no such problem when using a version control system, such as &lt;a href=&quot;http://darcs.net/&quot;&gt;Darcs&lt;/a&gt;. Especially Darcs is rightly famous for its user-friendly interface and powerful hunk-selection features. You can even split a single hunk (which could be a change to one line) into two separate steps! Have a look at the &lt;a href=&quot;http://wiki.darcs.net/HunkEditor&quot;&gt;HunkEditor&lt;/a&gt; page on the Darcs wiki to see how that works. &lt;br /&gt;&lt;/p&gt;
  74. &lt;h3&gt;Let’s steal a feature&lt;/h3&gt;
  75. &lt;p&gt;Well, it is not stealing if it is Free Software... Darcs has these nice capabilities and provides them in the context of version control systems, while we need them in the context of patch files. But Darcs is providing an API to its code, so shoudn’t it be possible to create a program that uses the Darcs code to split patch files? As a matter of fact, it is possible: You can see that program in action on this &lt;a href=&quot;http://www.joachim-breitner.de.nyud.net/various/ipatch-demo.ogv&quot;&gt;3min Ogg Theora-Video&lt;/a&gt; or directly here if your browser supports HTML5:&lt;/p&gt;
  76. &lt;div align=&quot;center&quot;&gt; &lt;video width=&quot;704&quot; height=&quot;448&quot; src=&quot;http://www.joachim-breitner.de.nyud.net/various/ipatch-demo.ogv&quot; controls=&quot;true&quot; tabindex=&quot;0&quot;&gt;Looks like your browser does not support HTML5&lt;/video&gt;&lt;/div&gt;
  77. &lt;h3&gt;Nice, can I use it?&lt;/h3&gt;
  78. &lt;p&gt;The code is a working proof of concept. What you see works. You do not see how it handles patches that create or delete files, patches that do not apply cleanly or are already applied or any kind of error handling. That does not work yet. If you still want to try it, you can grab the code from the Darcs repository at &lt;a href=&quot;http://darcs.nomeata.de/ipatch&quot;&gt;http://darcs.nomeata.de/ipatch&lt;/a&gt;, but you need to build the latest development state of the Darcs library first.&lt;/p&gt;
  79. &lt;p&gt;I think ipatch could become a very useful and powerful tool with applications in areas where nobody would think of using Darcs. I definitely want some integration into quilt, replacing the splitted patch in the series by the replacing patches automatically. Maybe even a git plugin could be created? But I don’t think I can push this project far enough on my own. So this is an invitation to join me and make ipatch a great tool. This invitation goes especially to the Darcs developers: Please have a look how the code uses the Darcs API and help to improve the collaboration here. I think we can use the &lt;a href=&quot;http://lists.osuosl.org/mailman/listinfo/darcs-users&quot;&gt;darcs-users&lt;/a&gt; mailing list until there is need for a dedicated mailing list.&lt;/p&gt;
  80.    </content:encoded>
  81.  
  82.    <pubDate>Tue, 03 Aug 2010 22:42:17 +0200</pubDate>
  83.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/425-guid.html</guid>
  84.    
  85.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F425-ipatch%2C-the-interactive-patch-editor.html&amp;user_id=nomeata" type="text/html" />
  86. </item>
  87. <item>
  88.    <title>Darcs Hacking Sprint: Mission Complete</title>
  89.    <link>http://www.joachim-breitner.de/blog/archives/350-Darcs-Hacking-Sprint-Mission-Complete.html</link>
  90.            <category>Darcs</category>
  91.            <category>English</category>
  92.            <category>Haskell</category>
  93.    
  94.    <comments>http://www.joachim-breitner.de/blog/archives/350-Darcs-Hacking-Sprint-Mission-Complete.html#comments</comments>
  95.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=350</wfw:comment>
  96.  
  97.    <slash:comments>0</slash:comments>
  98.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=350</wfw:commentRss>
  99.    
  100.  
  101.    <author>mail@joachim-breitner.de (nomeata)</author>
  102.    <content:encoded>
  103.    &lt;p&gt;The &lt;a href=&quot;http://wiki.darcs.net/Sprints/2009-11&quot;&gt;darcs hacking sprint&lt;/a&gt; is slowly nearing its end. As planned, I have worked on integrating &lt;a href=&quot;http://darcswatch.nomeata.de/&quot;&gt;DarcsWatch&lt;/a&gt; and &lt;a href=&quot;http://bugs.darcs.net/&quot;&gt;bugs.darcs.net&lt;/a&gt;, and I am satisfied so far. From now on, if someone submits a Darcs patch to patches@darcs.net, the patch will also be tracked by DarcsWatch. DarcsWatch will display a link to the entry on bugs.darcs.net, and also add a comment to the bugtracker with a link to the patch on DarcsWatch. And eventually, if the patch is included in the darcs.net repository, DarcsWatch will change the state of the ticket to accepted, removing one step of work for the Darcs maintainers. Currently, it checks the state of the repository three times per hour, so expect a delay after you applied the patch to the repository before the state is updated.&lt;/p&gt;
  104.    </content:encoded>
  105.  
  106.    <pubDate>Sun, 15 Nov 2009 17:15:30 +0100</pubDate>
  107.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/350-guid.html</guid>
  108.    
  109.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F350-Darcs-Hacking-Sprint-Mission-Complete.html&amp;user_id=nomeata" type="text/html" />
  110. </item>
  111. <item>
  112.    <title>Arrived at the Darcs hacking sprint</title>
  113.    <link>http://www.joachim-breitner.de/blog/archives/349-Arrived-at-the-Darcs-hacking-sprint.html</link>
  114.            <category>Darcs</category>
  115.            <category>English</category>
  116.            <category>Haskell</category>
  117.    
  118.    <comments>http://www.joachim-breitner.de/blog/archives/349-Arrived-at-the-Darcs-hacking-sprint.html#comments</comments>
  119.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=349</wfw:comment>
  120.  
  121.    <slash:comments>0</slash:comments>
  122.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=349</wfw:commentRss>
  123.    
  124.  
  125.    <author>mail@joachim-breitner.de (nomeata)</author>
  126.    <content:encoded>
  127.    &lt;p&gt;Today, my alarm clock was set to 4:30, as I was going to Vienna, to attend the &lt;a href=&quot;http://wiki.darcs.net/Sprints/2009-11&quot;&gt;Darcs hacking sprint&lt;/a&gt;. I’ll be working on &lt;a href=&quot;http://darcswatch.nomeata.de/&quot;&gt;DarcsWatch&lt;/a&gt;, making it a bit more modular and hopefully integegrate it better into bug tracking systems (especially &lt;a href=&quot;http://roundup.sourceforge.net/&quot;&gt;roundup&lt;/a&gt;, as that’s &lt;a href=&quot;http://bugs.darcs.net/&quot;&gt;used by the Darcs team&lt;/a&gt;). On Monday, I’ll be a tourist until I leave in the evening. If any Debianers or Haskellers want to meet for keysigning or sightseeing, just drop me a mail!&lt;/p&gt;
  128.    </content:encoded>
  129.  
  130.    <pubDate>Sat, 14 Nov 2009 09:32:05 +0100</pubDate>
  131.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/349-guid.html</guid>
  132.    
  133.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F349-Arrived-at-the-Darcs-hacking-sprint.html&amp;user_id=nomeata" type="text/html" />
  134. </item>
  135. <item>
  136.    <title>Announcing DarcsWatch</title>
  137.    <link>http://www.joachim-breitner.de/blog/archives/290-Announcing-DarcsWatch.html</link>
  138.            <category>Darcs</category>
  139.            <category>English</category>
  140.            <category>Haskell</category>
  141.    
  142.    <comments>http://www.joachim-breitner.de/blog/archives/290-Announcing-DarcsWatch.html#comments</comments>
  143.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=290</wfw:comment>
  144.  
  145.    <slash:comments>0</slash:comments>
  146.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=290</wfw:commentRss>
  147.    
  148.  
  149.    <author>mail@joachim-breitner.de (nomeata)</author>
  150.    <content:encoded>
  151.    &lt;p&gt;A lot of haskell-related projects use the &lt;a href=&quot;http://darcs.net/&quot;&gt;darcs&lt;/a&gt; version control system. Darcs has the nice feature that you can easily submit a patch by e-mail, usually sent to the project maintainer or a mailing list. What has bothered me in the past was that I had to manually check whether my patch was applied yet.&lt;/p&gt;
  152. &lt;p&gt;So this week, I wrote &lt;a href=&quot;http://darcswatch.nomeata.de/&quot;&gt;DarcsWatch&lt;/a&gt;. DarcsWatch receives submitted patches and compares them to the repositories it knows about, whether the patch is missing there or not. You either send your patches to DarcsWeb directly when submitting them, using CC, or DarcsWatch is subscribed to the project mailing list itself, which is the case for the &lt;a href=&quot;http://lists.osuosl.org/mailman/listinfo/darcs-devel&quot;&gt;darcs-devel&lt;/a&gt; and &lt;a href=&quot;http://www.haskell.org/mailman/listinfo/xmonad&quot;&gt;xmonad&lt;/a&gt; lists. Other than that, not much is to do, and you’ll find a nice overview of your patches, like this &lt;a href=&quot;http://darcswatch.nomeata.de/user_mail@joachim-breitner.de.html&quot;&gt;overview of my patches&lt;/a&gt;, with diffs and download links.&lt;/p&gt;
  153. &lt;p&gt;If you want to use DarcsWatch for your contributions to other projects, or for your own projects, have a look the &lt;a href=&quot;http://darcs.nomeata.de/darcswatch/documentation.html&quot;&gt;documentation&lt;/a&gt;. There are probably still bugs around, and the problem of marking patches as obsolete is not really solved yet, so if you have ideas about it, mail me, comment here, or come to #darcs on freenode. Patches are always welcome, you can get the source from &lt;a href=&quot;http://darcs.nomeata.de/darcswatch/&quot;&gt;DarcsWatch’s repository&lt;/a&gt;.&lt;/p&gt;
  154.    </content:encoded>
  155.  
  156.    <pubDate>Thu, 17 Apr 2008 19:25:15 +0200</pubDate>
  157.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/290-guid.html</guid>
  158.    
  159.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F290-Announcing-DarcsWatch.html&amp;user_id=nomeata" type="text/html" />
  160. </item>
  161. <item>
  162.    <title>A shelf for darcs</title>
  163.    <link>http://www.joachim-breitner.de/blog/archives/236-A-shelf-for-darcs.html</link>
  164.            <category>Darcs</category>
  165.            <category>Digital World</category>
  166.            <category>English</category>
  167.    
  168.    <comments>http://www.joachim-breitner.de/blog/archives/236-A-shelf-for-darcs.html#comments</comments>
  169.    <wfw:comment>http://www.joachim-breitner.de/blog/wfwcomment.php?cid=236</wfw:comment>
  170.  
  171.    <slash:comments>2</slash:comments>
  172.    <wfw:commentRss>http://www.joachim-breitner.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=236</wfw:commentRss>
  173.    
  174.  
  175.    <author>mail@joachim-breitner.de (nomeata)</author>
  176.    <content:encoded>
  177.    &lt;p&gt;I recently did my first experiments with &lt;a href=&quot;http://darcs.net/&quot;&gt;darcs&lt;/a&gt;: A friend of mine and I hacked on the same code, and by giving each other access to one’s darcs repository, we could easily exchange our new code.&lt;/p&gt;
  178. &lt;p&gt;One problem I had was that my friend recorded a patch that I did not want applied in my repository. Nothing else depended on it, so I could just say no everytime I use “darcs pull”, but it’s still a hassle. Also, imagine that I’m somewhere else and I suddently decide that I do want the patch?&lt;/p&gt;
  179. &lt;p&gt;A similar problem would be if I created some patches that I temporarily don’t want applied. I could branch, and then unpull them, but this is a bit too much work.&lt;/p&gt;
  180. &lt;p&gt;In both cases a “patch shelve” would be handy. A seperate storage for patches in my repository that are available, but not applied. I’d imagine that the “darcs pull” command would then allow me to “pull and put on the shelf”, and not offer me this patch again. There would also be “put on shelf” and “get from shelf” commands. So if anyone feels like hacking on darcs, this feature would be appreciated.&lt;/p&gt;
  181. &lt;p&gt;Also filed as a &lt;a href=&quot;http://bugs.darcs.net/issue447&quot;&gt;withlist bug&lt;/a&gt;.&lt;/p&gt;
  182.    </content:encoded>
  183.  
  184.    <pubDate>Tue, 01 May 2007 12:11:44 +0200</pubDate>
  185.    <guid isPermaLink="false">http://www.joachim-breitner.de/blog/archives/236-guid.html</guid>
  186.    
  187.    <atom:link rel="payment" href="https://flattr.com/submit/auto?url=http%3A%2F%2Fwww.joachim-breitner.de%2Fblog%2Farchives%2F236-A-shelf-for-darcs.html&amp;user_id=nomeata" type="text/html" />
  188. </item>
  189.  
  190. </channel>
  191. </rss>
  192.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://feedvalidator.org/check.cgi?url=https%3A//www.joachim-breitner.de/blog/feeds/categories/15-Darcs.rss

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda