howdy,

I've found some errors in the message resources (content section) and 
am including the fix.

basically the argument order for the Revision* exceptions was wrong, 
which results in messages like:
 "Revision /users/john of object 1.0 not found"
instead of
 "Revision 1.0 of object /users/john not found"

patchfile attached.

-chris
________________________________________________________________
[EMAIL PROTECTED]

Index: src/share/org/apache/slide/util/resources/messages.properties
===================================================================
RCS file: 
/home/cvspublic/jakarta-slide/src/share/org/apache/slide/util/resources/messages.properties,v
retrieving revision 1.8
diff -u -r1.8 messages.properties
--- src/share/org/apache/slide/util/resources/messages.properties       2001/02/26 
00:57:44     1.8
+++ src/share/org/apache/slide/util/resources/messages.properties       2001/06/24 
+14:46:06
@@ -127,13 +127,13 @@
 # Messages produced by content
 #
 org.apache.slide.content.RevisionAlreadyExistException=\
-        Revision {0} already exists on object {1}
+        Revision {1} already exists on object {0}
 org.apache.slide.content.RevisionNotFoundException=\
-        Revision {0} of object {1} not found
+        Revision {1} of object {0} not found
 org.apache.slide.content.RevisionDescriptorNotFoundException=\
         No revision descriptor found on object {0}
 org.apache.slide.content.RevisionContentNotFoundException=\
-        Revision {0} of object {1} content not found
+        Revision {1} of object {0} content not found
 org.apache.slide.content.BranchNotFoundException=\
         Branch {1} of object {0} not found
 org.apache.slide.content.NodeNotVersionedException=\

Reply via email to