[Codestriker-commits] CVS update: codestriker CHANGELOG
Brought to you by:
sits
From: <si...@us...> - 2008-08-11 03:58:12
|
User: sits Date: 08/08/10 20:58:11 Modified: lib Codestriker.pm doc codestriker.sgml . CHANGELOG Log: * Created another Subversion post-commit script which is an extension of the standard commit-email.pl script which ships with Subversion. The email sent also includes an additional line, which is the URL to the auto-created topic. Index: Codestriker.pm =================================================================== RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker.pm,v retrieving revision 1.109 retrieving revision 1.110 diff -u -r1.109 -r1.110 --- Codestriker.pm 8 Aug 2008 06:53:07 -0000 1.109 +++ Codestriker.pm 11 Aug 2008 03:58:11 -0000 1.110 @@ -36,7 +36,7 @@ ); # Version of Codestriker. -$Codestriker::VERSION = "1.9.6"; +$Codestriker::VERSION = "1.9.7"; # Default title to display on each Codestriker screen. $Codestriker::title = "Codestriker $Codestriker::VERSION"; Index: codestriker.sgml =================================================================== RCS file: /cvsroot/codestriker/codestriker/doc/codestriker.sgml,v retrieving revision 1.69 retrieving revision 1.70 diff -u -r1.69 -r1.70 --- codestriker.sgml 8 Aug 2008 06:10:13 -0000 1.69 +++ codestriker.sgml 11 Aug 2008 03:58:11 -0000 1.70 @@ -1886,7 +1886,8 @@ </para> <para> It is possible to create Codestriker topics automatically after - each Subversion commit, via the bin/subversion-post-commit.pl script. + each Subversion commit, via the + <filename>bin/subversion-post-commit.pl</filename> script. Once the appropriate configuration is set at the start of the file, simply add it to your Subversion <filename>repos/hooks/post-commit</filename> the path to the file as follows: @@ -1894,6 +1895,25 @@ /path/to/codestriker/bin/subversion-post-commit.pl "$REPOS" "$REV" </programlisting> </para> + <para> + Another option is to use the standard <filename>commit-email.pl</filename> + script that ships with Subversion which sends out email diffs from + each commit. It has been updated to also allow the possibility of + creating a Codestriker topic automatically as well. This updated + script is available in <filename>bin/commit-email-codestriker.pl</filename>. + The email sent out will contain an additional + line, which is the URL to the Codestriker topic. All Codestriker + configuration is passed via the command line, as this example shows: +<programlisting> + /path/to/codestriker/bin/commit-email-codestriker.pl -h company.com + --codestriker-url http://company.com/codestriker/codestriker.pl + --codestriker-project "Subversion Commits" + --codestriker-repository "svn://hostname/var/svn/repos/fbi2/trunk" + --codestriker-reviewers "eng...@co..." + --codestriker-install-dir /var/www/codestriker + "$REPOS" "$REV" eng...@co... +</programlisting> + </para> </sect2> <sect2> <title>Creating Perforce Diff Topics</title> Index: CHANGELOG =================================================================== RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v retrieving revision 1.257 retrieving revision 1.258 diff -u -r1.257 -r1.258 --- CHANGELOG 8 Aug 2008 05:41:10 -0000 1.257 +++ CHANGELOG 11 Aug 2008 03:58:11 -0000 1.258 @@ -1,6 +1,13 @@ *** When upgrading, don't forget to: "cd bin ; ./install.pl" *** *** Also, it is _highly_ advisable to backup your data before upgrading *** +Version 1.9.7 + +* Created another Subversion post-commit script which is an extension + of the standard commit-email.pl script which ships with Subversion. + The email sent also includes an additional line, which is the URL to + the auto-created topic. + Version 1.9.6 * Ability to create Codestriker topics automatically from a Subversion |