<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Patch Queues</title><link>https://sourceforge.net/p/coils/wiki/Patch%2520Queues/</link><description>Recent changes to Patch Queues</description><atom:link href="https://sourceforge.net/p/coils/wiki/Patch%20Queues/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 27 Apr 2013 15:06:27 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/coils/wiki/Patch%20Queues/feed" rel="self" type="application/rss+xml"/><item><title>Patch Queues modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/Patch%2520Queues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -9,7 +9,7 @@
 ##To use a patch queue

   1. Enable the [MQ extension](http://mercurial.selenic.com/wiki/MqExtension).
-  1. Exit TortoiseHg, or whatever your version control tool is
+  1. Exit TortoiseHg, or whatever your version control tool is\
   1. Go in to the .hg [hidden] subfolder and clone the patch queue.

         cd .hg
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Sat, 27 Apr 2013 15:06:27 -0000</pubDate><guid>https://sourceforge.netc35dceab3753877558845c13ff141844314a7420</guid></item><item><title>WikiPage Patch Queues modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/Patch%2520Queues/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;a class="alink" href="/p/coils/wiki/Development/"&gt;[Development]&lt;/a&gt;&lt;/p&gt;
&lt;h1 id="patch-queues"&gt;Patch Queues&lt;/h1&gt;
&lt;p&gt;Several repositories exist which are for use with the Mercurial MQ extension &lt;span&gt;[which is supported in TortoiseHg with a new GUI]&lt;/span&gt;.  MQ provides "patch queues" that are quasi-subordinate repositories; patch queues are a nice way of storing, sharing, and exchanging change sets (patches).  Patches in a queue can be applied, unapplied, reordered, updated... without changes to the core repository - they are 'finished' to the core reposistory when they are finished. :)  This avoids the core repository being used as "Save As" and makes a commit == some-work-is-finished!  Which is what "commit" is supposed to mean.&lt;/p&gt;
&lt;p&gt;Everyone is free to continue to use their own branch any way they like, of course.  But patch queues should help us clean up how the commit log looks. It is also just much easier than having a whole bunch of 'personal' branches where one works on different stuff; as commit often tend to run across branches.&lt;/p&gt;
&lt;h2 id="to-use-a-patch-queue"&gt;To use a patch queue&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Enable the &lt;a class="" href="http://mercurial.selenic.com/wiki/MqExtension"&gt;MQ extension&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Exit TortoiseHg, or whatever your version control tool is&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Go in to the .hg &lt;span&gt;[hidden]&lt;/span&gt; subfolder and clone the patch queue.&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;cd&lt;/span&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;
&lt;span class="n"&gt;hg&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;YOURNAME&lt;/span&gt;&lt;span class="p"&gt;}@&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sf&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;net&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;p&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;coils&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;cmis&lt;/span&gt; &lt;span class="n"&gt;patches&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;CMIS&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Edit patches.queues, adding the name of the queue, like:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="c"&gt;# cat patches.queues&lt;/span&gt;
&lt;span class="n"&gt;patches&lt;/span&gt;
&lt;span class="n"&gt;CMIS&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start TortoiseHg, or whatever your version control tool is.  Start coding!&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;NOTE&lt;/strong&gt;: The "patches-" prefix is assumed on patch queue sub-folder -&amp;gt;  patch queue mapping.  The patches.queues is a list of the installed/available patch queues.  You can have none, one, some, or all the patch queues.  It is easiest, I think, to just do them all - but you only need to do the ones you want to do. Just always edit  this with your version control interface shutdown.&lt;/p&gt;
&lt;h2 id="opengroupware-coils-patch-queue-repositories"&gt;OpenGroupware Coils Patch Queue Repositories&lt;/h2&gt;
&lt;h3 id="patches"&gt;Patches&lt;/h3&gt;
&lt;p&gt;This patch queue is for patches that implement specific new features  or triage specific bugs.  Please one bug/feature per patch.&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;hg&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;YOURNAME&lt;/span&gt;&lt;span class="p"&gt;}@&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sf&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;net&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;p&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;coils&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;patches&lt;/span&gt; &lt;span class="n"&gt;patches&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;h3 id="cmis"&gt;CMIS&lt;/h3&gt;
&lt;p&gt;This queue is for implementation of the CMIS v1.0 protocol;  this will allow full interoperation with document management features of  LibreOffice and Microsoft Office.  And it is just a really good protocol with lots of miscelaneous implementations - and it very much already matches how OpenGroupware manages documents.   Each patch should be an implementation of some part of the protocol;  in the queue the patches are meant to be applied as a stack.  See the &lt;a class="" href="/p/coils/wiki/CMIS-REST/"&gt;CMIS Wiki page&lt;/a&gt;.&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;hg&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;YOURNAME&lt;/span&gt;&lt;span class="p"&gt;}@&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sf&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;net&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;p&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;coils&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;cmis&lt;/span&gt; &lt;span class="n"&gt;patches&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;CMIS&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;h3 id="async"&gt;Async:&lt;/h3&gt;
&lt;p&gt;This queue is for porting of the gnarly HTTP service provider to the Tornado HTTP engine.  I imagine it will be an entire stack of patches as this will make little touches to everything under coils/protocol and coils/net.&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;hg&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;YOURNAME&lt;/span&gt;&lt;span class="p"&gt;}@&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sf&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;net&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;p&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;coils&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;async&lt;/span&gt; &lt;span class="n"&gt;patches&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;Async&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;h3 id="oie"&gt;OIE&lt;/h3&gt;
&lt;p&gt;This queue is for enhancement and bug fixes to OIE (the workflow engine). Please one enhancement / fix per patch.&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;hg&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;YOURNAME&lt;/span&gt;&lt;span class="p"&gt;}@&lt;/span&gt;&lt;span class="n"&gt;hg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sf&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;net&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;p&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;coils&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;oie&lt;/span&gt; &lt;span class="n"&gt;patches&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;OIE&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Wed, 13 Mar 2013 11:25:20 -0000</pubDate><guid>https://sourceforge.net674dc6e9cb521d28a9dc4c8dd73c55cdc2aac5da</guid></item></channel></rss>