added UPGRADING tips
authormh <mh>
Sat, 22 Jun 2002 09:52:46 +0000 (09:52 +0000)
committermh <mh>
Sat, 22 Jun 2002 09:52:46 +0000 (09:52 +0000)
doc/INSTALL.mir
doc/UPGRADING.mir [new file with mode: 0755]

index f359b5e..190efc9 100755 (executable)
@@ -245,6 +245,9 @@ will allow searching based off of media type.  (This is possible
 because the standard templates will include META keywords like
 hasAudio, hasVideo, etc.)  
 
+UPGRADING
+
+see the UPGRADING.mir file.
 
 TROUBLESHOOTING
 
diff --git a/doc/UPGRADING.mir b/doc/UPGRADING.mir
new file mode 100755 (executable)
index 0000000..92d3d83
--- /dev/null
@@ -0,0 +1,23 @@
+MIR UPGRADING HOWTO
+----------------------------------------------------------------
+
+Due to weaknesses of the current Mir configuration system, many folks get
+bitten after doing an update of their cvs tree. Suddenly Mir starts throwing
+weird exceptions, etc.. The cause is usually a new config option in the
+source/config.properties-dist that is missing from your
+source/config.properties file (the one that is actually used).
+
+a good way to check for this is to do the following (in the mir/ directory):
+
+cd source
+diff -u config.properties config.properties-dist
+
+for this unfamiliar with the diff(1) program, you'll see a bunch of lines, some
+starting with a "+" or "-". Look for a bunch of consecutive "+" symbols not
+immeadiately followed by a "-". that usually is a new config option that you
+should copy/paste (without the "+"'s of course) over to your existing
+config.properties file and modify if necessary.
+
+----------------------------------------------------------------
+
+2002 - the Mir coders