Go to file
akirschbaum 772638b98d Run MapNormalizer script on all maps.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@9176 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-05-30 07:32:24 +00:00
Info
animations/maps/navar_city Add a new professor to the university, and associated scripts (only Lorkas lore, for now). Fix some lights and wrong desks. 2008-05-20 22:02:01 +00:00
azumauindo Resize some Azumauindo maps that were mostly a lot of empty space. 2008-05-29 09:36:39 +00:00
brest Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
darcap Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
dragonisland More fixes for redundant patterns in @match (it is case insensitive, but a lot of maps treated it as if it was case sensitive). Also fix some broken dialogs (missing the match part of @match and other such typos). 2008-05-23 09:49:20 +00:00
dungeons Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
editor Run 'Shrink Map Size' function from MapNormalizer editor script. 2008-05-30 06:23:54 +00:00
euthville Link the Scorn Royalty maps together. 2008-03-24 09:04:38 +00:00
inn_and_outpost Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
lake_country Even more fixes for redundant patterns in @match (it is case insensitive, but a lot of maps treated it as if it was case sensitive). Mostly done with grep + sed. Also add @question to two pupland maps and fix a typo on a lake country map. 2008-05-23 22:30:19 +00:00
marksel Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
mlab Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
navar_city Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
planes Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
port_joseph Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
pup_land Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
python Fix wrong price of objects in help for IPO. 2008-05-22 21:26:18 +00:00
quests Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
santo_dominion Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
scorn Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
sisters Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
start Even more fixes for redundant patterns in @match (it is case insensitive, but a lot of maps treated it as if it was case sensitive). Mostly done with grep + sed. Also add @question to two pupland maps and fix a typo on a lake country map. 2008-05-23 22:30:19 +00:00
styles Update spellcasting objects to use inventory objects. 2007-11-04 19:05:10 +00:00
teamarena The @match expression in npc dialog is case insensitive, but a lot of map treated it as if it was case sensitive, fixing a lot of them (there may be more left, that the grep didn't find). 2008-05-23 08:11:20 +00:00
templates Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
test Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
under_world Unify Created: and Modified: map headers. 2007-11-02 22:49:56 +00:00
unlinked Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
whalingoutpost Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
wolfsburg Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
world First pass to add lore to the town. 2008-05-29 22:02:22 +00:00
.emergency
COPYING
ChangeLog Make coloured mail work in the Scorn armour shop 2008-05-21 06:33:44 +00:00
HallOfDMs Unify Created: and Modified: map headers. 2007-11-02 22:49:56 +00:00
HallOfSelection Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
README - Change the order of the dates when using -r with svn2cl so that the log 2007-12-30 05:37:41 +00:00
regions Added description for Stoneville in the regions file 2008-01-22 06:15:34 +00: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.