<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/svncl/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/svncl/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 03 Feb 2015 12:55:53 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/svncl/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Michael Mayer</title><link>https://sourceforge.net/p/svncl/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,127 @@
-Welcome to your wiki!
+generate a GNU compilant ChangeLog file from the svn log messages
+-----------------------------------------------------------------

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+**Usage:** `svn log -v --xml | svncl.pl &amp;gt; ChangeLog`

-The wiki uses [Markdown](/p/svncl/wiki/markdown_syntax/) syntax.
+A very simple Perl script to generate a neat ChangeLog file from the svn log messages.

-[[members limit=20]]
-[[download_button]]
+Unlike some other existing tools for the same task the resulting ChangeLog file is more processed for a more comprehensive output. This improves the readability for situations with frequent commits. Easy installation, no complicated external dependencies, easy and totally optional configuration.
+
+All consecutive log entries from the same author on the same day are unified to only one ChangeLog entry to avoid generating a longish sequence of one line entries for developers who prefer to do many small commits instead of few big one.
+
+The other point are the author names. svn only lists the login names of the committing project members, but a fully-fledged changelog should list the full names and email adresses. svncl.pl automatically replaces all known names by using a configurable internal list.                 
+
+The third difference is its simpicity. No big external dependencies, very easy (and totally optional) configuration.
+
+
+
+Installation
+------------
+
+Actually, there is no installation. Just unpack and copy svncl.pl somewhere in your path. Later you can add a list of known full names to make your ChangeLogs more complete (see configuation below)
+
+No bulky dependencies, only a working perl enviroment with the `LWP` and `HTML::Browser` packages are needed. These come preinstalled as a standard part of almost every perl distribution.
+
+
+
+Usage
+-----
+
+Just give a verbose svn logfile in xml as input on stdin or as a file name argument and you will get a nicely sorted ChangeLog:
+
+   $&amp;gt; svn log -v --xml | svncl.pl &amp;gt; ChangeLog
+
+Or if prefer to separate the two steps:
+
+   $&amp;gt; svn log -v --xml &amp;gt; log.xml
+   $&amp;gt; svncl.pl log.xml &amp;gt; ChangeLog
+
+
+Due to the log entry unification and the name replacement a version history like this:
+
+~~~~
+------------------------------------------------------------------------
+r1922 | tenbaht | 2010-06-18 15:18:15 +0700 (Fri, 18 Jun 2010) | 1 line
+Changed paths:
+   D /trunk/gcstar/lib/gcstar/GCPlugins/GCfilms/GCDVDSpot.pm
+
+[GCDVDSpot.pm] removed the plugin as dvdspot.com was shut down Okt. 2008
+------------------------------------------------------------------------
+r1921 | tenbaht | 2010-06-18 14:56:15 +0700 (Fri, 18 Jun 2010) | 1 line
+Changed paths:
+   M /trunk/gcstar/lib/gcstar/GCPlugins/GCfilms/GCMediadis.pm
+
+[GCMediadis.pm] added rating, added director+actor to search window, fixed actors name mangling and more minor changes 
+------------------------------------------------------------------------
+r1920 | tenbaht | 2010-06-18 11:21:25 +0700 (Fri, 18 Jun 2010) | 1 line
+Changed paths:
+   M /trunk/gcstar/lib/gcstar/GCPlugins/GCfilms/GCFilmAffinityEN.pm
+   M /trunk/gcstar/lib/gcstar/GCPlugins/GCfilms/GCFilmAffinityES.pm
+
+[GCFilmAffinityEN] add rating, sync both GCFilmAffinityE* files
+------------------------------------------------------------------------
+r1919 | tenbaht | 2010-06-18 11:08:13 +0700 (Fri, 18 Jun 2010) | 1 line
+Changed paths:
+   M /trunk/gcstar/lib/gcstar/GCPlugins/GCfilms/GCAnimeNfoA.pm
+
+[GCAnimeNfoA.pm] added rating
+------------------------------------------------------------------------
+~~~~
+
+results in a ChangeLog entry like this:
+
+~~~~
+2010-06-18  Michael Mayer (tenbaht)  &amp;lt;michael-mayer@gmx.de&amp;gt;
+
+    * GCDVDSpot.pm: removed the plugin as dvdspot.com was shut down Okt. 2008
+
+    * GCMediadis.pm: added rating, added director+actor to search window, fixed
+      actors name mangling and more minor changes
+
+    * GCFilmAffinityEN.pm, GCFilmAffinityES.pm: add rating, sync both
+      GCFilmAffinityE* files
+
+    * GCAnimeNfoA.pm: added rating
+~~~~
+
+
+
+Configuration
+-------------
+
+If you like to use the address translation you have to enter the full names and email addresses first. Currently this translation table is hardwired in the sources. Maybe a little bit too simple, I know. But it works. And it is reliable.
+
+Just edit svncl.pl in function 'start' at line 156 and add all the names you want to be replaced. Using a config file would be easy as well, but I am lazy. It is a simple task, so I like to use a simple tool for it.
+
+
+
+other tools that do the same job
+--------------------------------
+
+I am sure this list is not complete, but I know at least of these two:
+
+**svn2cl: Subversion ChangeLog generator**
+by Arthur De Jong, http://arthurdejong.org/svn2cl/
+It a xsl stylesheet with a bash script wrapper. Easy to use but it did't
+unify multiple commits on the same day.
+
+**svn2log**
+http://freshmeat.net/projects/svn2log/
+Written in python. I couldn't get it running even after installing all
+python libs.
+
+
+
+Format of the resulting ChangeLog
+---------------------------------
+
+In the conversion process text enclosed in '[]' at the beginning of a log messages is discarded, as this is supposed to be the filename which will be included anyway. If the contributers full name or email adress is known to the programm it is included in the log entry as well.
+
+The resulting file is not exactly in GNU format, but very close. The two differences are:
+
+  - If the full name is known, the login name is added in parenthes, separated
+    from the full name by one space.
+  - for multi line messages the following lines are indended by 6 spaces, not
+    4 like the gnu format.
+
+Both deviations should not break anything if you use other tools or editors for further log file processing as name and email adress are still seperated by two spaces, the full name and login by only one.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Mayer</dc:creator><pubDate>Tue, 03 Feb 2015 12:55:53 -0000</pubDate><guid>https://sourceforge.netae31e299799707021f50d0b9da6b4c0e475267e2</guid></item><item><title>Home modified by Michael Mayer</title><link>https://sourceforge.net/p/svncl/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/svncl/wiki/markdown_syntax"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/tenbahrt"&gt;Michael Mayer&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-54d0bbf6b9363c503563d2ed" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Mayer</dc:creator><pubDate>Tue, 03 Feb 2015 12:15:50 -0000</pubDate><guid>https://sourceforge.netfe523d731f94bf737c9b30119dcd30146e21bf46</guid></item></channel></rss>