Go to file
rjtanner d7cbad3825 Spelling correction (enscription -> inscription) in message text to Snake Pit, Level 1 (lake_country/snake_pit/snakepit_1) in Lake Country.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@17647 282e977c-c81d-0410-88c4-b93c2d0d6712
2012-03-23 04:17:46 +00:00
Info
animations/maps/navar_city
azumauindo Spelling corrections to the mainfloor map to all Guilds. No functional changes. 2012-03-16 03:22:34 +00:00
brest Spelling correction (invoque -> invoke) and word spacing updates in message text to Underground, Level 1 (brest/underground) in Brest. 2012-03-21 04:27:39 +00:00
darcap Spelling correction (pyhon -> python) in message text to Darcap's Manor - white zone (darcap/darcap/manor.white) in Darcap. 2012-03-22 03:38:15 +00:00
dragonisland Spelling correction (coffe -> coffee) in message text to Adventurers Guild, 3rd Floor (dragonisland/advguild3) in Stoneville. 2012-03-22 04:26:48 +00:00
dungeons Grammar change (seeings -> sightings) to message text in Old Mineshaft (dungeons/xyzzy-mines) in Wilderness. 2012-03-19 05:22:59 +00:00
editor
euthville Spelling corrections to the mainfloor map to all Guilds. No functional changes. 2012-03-16 03:22:34 +00:00
inn_and_outpost Spelling correction (jewelery -> jewelry) to multiple maps. 2012-03-16 03:58:37 +00:00
lake_country Spelling correction (enscription -> inscription) in message text to Snake Pit, Level 1 (lake_country/snake_pit/snakepit_1) in Lake Country. 2012-03-23 04:17:46 +00:00
marksel Split up laughter words in message text for various maps. 2012-03-15 04:24:57 +00:00
mlab Spelling correction (devowered -> devoured) in message text to Guest of the Marquis (mlab/citydeclouds/cwdcguestofmarquis1) in City de Clouds. 2012-03-22 04:33:11 +00:00
navar_city Spelling correction (rumbilings -> rumblings) in message text to Western Navar Tower, Level 26 (navar_city/mlab/ttower26) in Navar. 2012-03-22 04:48:22 +00:00
planes
port_joseph Spelling correction (plantlife -> plant life) to message text in Moogly Bill's Tomb (port_joseph/pirates/mbgrave2) in Port Joseph. 2012-03-18 05:22:31 +00:00
pup_land Spelling correction (Restistance -> Resistance) in item text to Gothwolte's Castle, Level 6 (pup_land/ancient/castle/castle.6) in Pup Land. 2012-03-23 04:12:49 +00:00
python
quests Spelling correction (collegues -> colleagues) in message text to Fire Temple, Third Floor (quests/peterm/FireTemple/ThirdFloor) in Wilderness. 2012-03-21 04:31:15 +00:00
santo_dominion Spelling corrections (senced -> sensed) in message text to Temple Naive, Level 2 (santo_dominion/temple_naive/templenaive.2) in Santo Dominion. 2012-03-21 04:25:19 +00:00
scorn Spelling correction (Demlich -> Demilich) in message text to Old City (scorn/oldcity/oldcity6) in Scorn. 2012-03-18 05:01:32 +00:00
sisters
start Give some faces to various quests. 2012-03-17 11:05:32 +00:00
styles
teamarena
templates Spelling corrections to the mainfloor map to all Guilds. No functional changes. 2012-03-16 03:22:34 +00:00
test
under_world
unlinked Spelling correction (succesful -> successful) to message text in Greyshield maps. 2012-03-19 05:50:20 +00:00
whalingoutpost
wolfsburg Give some faces to some quests. 2012-03-17 13:24:06 +00:00
world Quest: ruins of Narcopin. 2012-03-18 12:34:52 +00:00
.emergency
COPYING
ChangeLog Run svn2cl to update ChangeLog 2012-03-18 06:08:48 +00:00
HallOfDMs
HallOfSelection Remove double word refernce (other other -> other) to the Hall Of Selection maps. 2012-03-15 04:11:43 +00:00
README
regions.reg Spelling correction (wonderous -> wondrous) to two maps and the regions.reg file. 2012-03-14 05:22:51 +00:00
world.quests Quest: ruins of Narcopin. 2012-03-18 12:34:52 +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.