Go to file
kts of kettek 40e9b42c71 Remove most dumb road-to/from-Brest hazards 2017-03-22 03:11:56 -07:00
Info Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
animations/maps/navar_city Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
azumauindo Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
brest Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
darcap Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
disabled/mlab Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
dragonisland Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
dungeons Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
editor Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
euthville Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
inn_and_outpost Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
lake_country Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
marksel Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
navar_city Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
planes Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
port_joseph Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
pup_land Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
python Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
quests Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
santo_dominion Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
scorn Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
sisters Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
start Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
styles Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
teamarena Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
templates Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
test Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
under_world Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
unlinked Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
whalingoutpost Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
wolfsburg Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
world Remove most dumb road-to/from-Brest hazards 2017-03-22 03:11:56 -07:00
.emergency Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
COPYING Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
ChangeLog Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
HallOfDMs Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
HallOfSelection Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
README Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00
regions.reg Add 1.12 with HallOfSelection Ranger modifications 2017-03-20 09:16:04 -07:00

README

==============================================================================
ChangeLog
==============================================================================

The ChangeLog file has been built with svn2cl 0.7 and 0.9 as obtained fromm
http://ch.tudelft.nl/~arthur/svn2cl/downloads.html.  Do not use version 0.6
or older as it appears to generate incompatible ChangeLog formats.

These instructions presume an installation of the tarball similar to this.
The actual paths may be different for each developer, but these are used for
sake of example.  There is no requirement to use the example paths.

  $ cd ~
  $ tar -xzf svn2cl-0.9.tar.gz

To update the ChangeLog, a command sequence like this is generally possible
with one caveat.  Do not check in the results without checking the the changes
with svn diff to avoid throwing away someone's comments that are more verbose
than the svn commit comment.

  $ cd /home/data/svn/crossfire/maps/trunk
  $ ~/svn2cl-0.9/svn2cl.sh

The following may be safer, but also may not entirely regenerate missing
entries if manual edits have been made.  Again, never check in updates without
checking differences and merging any manual edits developers may have made.

1) Only generate portion of the ChangeLog since the last svn2cl run.

   Determine the date of the last svn2cl run by looking at the top of the
   ChangeLog.  For this example, presume 2007-12-20 is the last svn2cl
   notation, and that today is 2007-12-30.

   $ cd /home/data/svn/crossfire/maps/trunk
   $ ~/svn2cl-0.9/svn2cl.sh -o ChangeLog.New -r "{2007-12-30}:{2007-12-20}"

   Note that the day of the last svn2cl is used in case new entries were made
   that day following the svn2cl run.

   Place the contents of ChangeLog.New at the top of the ChangeLog file, but
   make sure to delete any redundant entries.  If manual entries have been
   made, merge any additional content with the appropriate svn2cl generated
   entries.

2) Regenerate the entire log, but generate a patch file.

  $ cd /home/data/svn/crossfire/maps/trunk
  $ ~/svn2cl-0.9/svn2cl.sh --output=ChangeLog.New
  $ diff -u ChangeLog ChangeLog.New >ChangeLog.patch

  Verify the ChangeLog.patch file and remove any patch hunks that would remove
  information prior to patching up the ChangeLog file for commit.