Go to file
rjtanner 35b3adf8e7 Word spacing and punctuation corrections to message text in Tower of Demonology Ground Level (quests/peterm/Demonology/GroundLevel) in Wilderness.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@17471 282e977c-c81d-0410-88c4-b93c2d0d6712
2012-03-12 05:05:32 +00:00
Info
animations/maps/navar_city
azumauindo Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
brest Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
darcap Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
dragonisland Removed forced line breaks in message text to Dreadful house (dragonisland/house7) in Stoneville. 2012-02-02 05:37:32 +00:00
dungeons Removed forced line breaks in message text to Zombie Training (dungeons/train/zombie) in Wilderness. 2012-02-03 05:32:26 +00:00
editor
euthville Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
inn_and_outpost Removed forced line breaks and punctuation correction in message text to DF Outpost 6 (inn_and_outpost/treehouse_df6) in Inn and Outpost. 2012-02-04 05:25:29 +00:00
lake_country Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
marksel Capitalization and punctuation corrections in message text to Sages Tower (marksel/wizard) in Marksel. 2012-02-11 03:27:41 +00:00
mlab Word spacing changes in message text to Trader Joe's Trademarket (mlab/citydeclouds/shops/cwdctrademarket). 2012-02-14 06:38:04 +00:00
navar_city Word spacing correction in message text to Troll Canyon (navar_city/troll_canyon/troll_canyon.1) in Navar. 2012-02-20 05:44:10 +00:00
planes Technical change, no function changes. Updated formatting of creation and modified time stamps to Guild Bigchest (planes/bigchest). 2012-02-20 05:51:11 +00:00
port_joseph Remvoed forced line breaks and word spacing corrections in message text to Underground Tavern (port_joseph/town/underground_tavern) in Port Joseph. 2012-02-22 05:46:27 +00:00
pup_land Word spacing and punctuation corrections to message text in To-jyo's Hut (pup_land/s_f/to-jyo) in Pup Land. 2012-03-09 06:09:17 +00:00
python
quests Word spacing and punctuation corrections to message text in Tower of Demonology Ground Level (quests/peterm/Demonology/GroundLevel) in Wilderness. 2012-03-12 05:05:32 +00:00
santo_dominion Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
scorn Quest: Dark Forest east of Scorn, with the glowing crystal. 2012-03-11 10:39:54 +00:00
sisters
start Explain with reading is important. 2012-03-11 09:57:44 +00:00
styles
teamarena
templates Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
test
under_world Sentence structure correction in Navar to Darcap Tunnel (under_world/uworld_120_109). 2012-01-21 02:42:58 +00:00
unlinked
whalingoutpost Fix exit destination. 2012-01-22 18:47:37 +00:00
wolfsburg Push changes made in rev #17073. Guild map Main Floor exit is now activated by all movements types instead of just walk. 2012-02-14 06:42:52 +00:00
world
.emergency
COPYING
ChangeLog
HallOfDMs
HallOfSelection
README
regions.reg
world.quests

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.