lists.arthurdejong.org
RSS feed

svn2cl commit: r146 - svn2cl

[Date Prev][Date Next] [Thread Prev][Thread Next]

svn2cl commit: r146 - svn2cl



Author: arthur
Date: Sat Oct 23 13:59:12 2010
New Revision: 146
URL: http://arthurdejong.org/viewvc/svn2cl?view=rev&revision=146

Log:
get files ready for 0.13 release

Modified:
   svn2cl/ChangeLog
   svn2cl/NEWS
   svn2cl/README
   svn2cl/svn2cl.1
   svn2cl/svn2cl.sh
   svn2cl/svn2cl.xsl
   svn2cl/svn2html.xsl

Modified: svn2cl/ChangeLog
==============================================================================
--- svn2cl/ChangeLog    Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/ChangeLog    Sat Oct 23 13:59:12 2010        (r146)
@@ -1,3 +1,32 @@
+2010-08-13 09:39  arthur
+
+       * [r145] svn2cl.sh: also pass -g, --use-merge-history, -c,
+         --change, -l, --trust-server-cert and --config-option to svn
+         commands
+
+2010-08-13 08:07  arthur
+
+       * [r144] README: direct bugreports to the svn2cl-users mailing list
+
+2010-08-13 07:24  arthur
+
+       * [r143] svn2cl.xsl: fix typo in comment
+
+2010-05-06 21:11  arthur
+
+       * [r142] svn2cl.sh: properly quote $0 (thanks Vincent Lefevre)
+
+2010-03-03 21:02  arthur
+
+       * [r141] ChangeLog, svn2cl.1, svn2cl.sh, svn2html.xsl: implement
+         ticket-highlighting with a --ticket-link option, based on a patch
+         by Neil Whitworth <NeilWhitworth@commontime.com>
+
+2010-03-03 20:55  arthur
+
+       * [r140] svn2html.xsl: switch to a mechanism to more easily perform
+         more message log highlighting
+
 2010-03-03 19:54  arthur
 
        * [r139] svn2html.xsl: also perform correct line-highlighing for

Modified: svn2cl/NEWS
==============================================================================
--- svn2cl/NEWS Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/NEWS Sat Oct 23 13:59:12 2010        (r146)
@@ -1,3 +1,14 @@
+changes from 0.12 to 0.13
+-------------------------
+
+* add a --ticket-link option for the HTML output that replaces anything
+  that looks like a ticket reference (e.g. #123) with a link (thanks Neil
+  Whitworth)
+* properly quote $0 in shell script (thanks Vincent Lefevre)
+* also pass through -g, --use-merge-history, -c, --change, -l,
+  --trust-server-cert and --config-option options to svn log command
+
+
 changes from 0.11 to 0.12
 -------------------------
 

Modified: svn2cl/README
==============================================================================
--- svn2cl/README       Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/README       Sat Oct 23 13:59:12 2010        (r146)
@@ -42,9 +42,9 @@
 INSTALLING SVN2CL
 =================
 
-Just unpack the tarball in some directory (e.g. /opt/svn2cl-0.12)
+Just unpack the tarball in some directory (e.g. /opt/svn2cl-0.13)
 and symlink the svn2cl.sh script in your path somewhere (e.g.
-ln -s /opt/svn2cl-0.12/svn2cl.sh /usr/local/bin/svn2cl).
+ln -s /opt/svn2cl-0.13/svn2cl.sh /usr/local/bin/svn2cl).
 
 Note: Be sure to keep the svn2cl.xsl file in the same directory as the
 svn2cl.sh script as the script looks for it there (symlinking is ok).

Modified: svn2cl/svn2cl.1
==============================================================================
--- svn2cl/svn2cl.1     Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/svn2cl.1     Sat Oct 23 13:59:12 2010        (r146)
@@ -24,7 +24,7 @@
 .\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.TH "svn2cl" "1" "Apr 2008" "Version 0.12" "User Commands"
+.TH "svn2cl" "1" "Oct 2010" "Version 0.13" "User Commands"
 .nh
 .SH "NAME"
 svn2cl - Create a ChangeLog from a subversion log.

Modified: svn2cl/svn2cl.sh
==============================================================================
--- svn2cl/svn2cl.sh    Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/svn2cl.sh    Sat Oct 23 13:59:12 2010        (r146)
@@ -36,7 +36,7 @@
 set -u
 
 # svn2cl version
-VERSION="0.12"
+VERSION="0.13"
 
 # set default parameters
 PWD=`pwd`

Modified: svn2cl/svn2cl.xsl
==============================================================================
--- svn2cl/svn2cl.xsl   Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/svn2cl.xsl   Sat Oct 23 13:59:12 2010        (r146)
@@ -5,7 +5,7 @@
    svn2cl.xsl - xslt stylesheet for converting svn log to a normal
                 changelog
 
-   version 0.12
+   version 0.13
 
    Usage (replace ++ with two minus signs which aren't allowed
    inside xml comments):

Modified: svn2cl/svn2html.xsl
==============================================================================
--- svn2cl/svn2html.xsl Fri Aug 13 11:39:56 2010        (r145)
+++ svn2cl/svn2html.xsl Sat Oct 23 13:59:12 2010        (r146)
@@ -5,7 +5,7 @@
    svn2html.xsl - xslt stylesheet for converting svn log to a normal
                   changelog fromatted in html
 
-   version 0.12
+   version 0.13
 
    Usage (replace ++ with two minus signs):
      svn ++verbose ++xml log | \
@@ -103,7 +103,7 @@
      </xsl:choose>
     </ul>
     <p class="changelog_footer">
-     <xsl:text>Generated by </xsl:text><a 
href="http://arthurdejong.org/svn2cl/">svn2cl 0.12</a>
+     <xsl:text>Generated by </xsl:text><a 
href="http://arthurdejong.org/svn2cl/">svn2cl 0.13</a>
     </p>
    </body>
   </html>
--
To unsubscribe send an email to
svn2cl-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/svn2cl-commits