r624 - packages/libcgi-xmlapplication-perl/trunk

Luk Claes luk-guest@costa.debian.org
Tue, 18 Jan 2005 16:02:52 +0100


Author: luk-guest
Date: 2005-01-18 16:02:51 +0100 (Tue, 18 Jan 2005)
New Revision: 624

Modified:
   packages/libcgi-xmlapplication-perl/trunk/XMLApplication.pm
Log:
Some UTF minus issues


Modified: packages/libcgi-xmlapplication-perl/trunk/XMLApplication.pm
===================================================================
--- packages/libcgi-xmlapplication-perl/trunk/XMLApplication.pm	2005-01-18 14:52:34 UTC (rev 623)
+++ packages/libcgi-xmlapplication-perl/trunk/XMLApplication.pm	2005-01-18 15:02:51 UTC (rev 624)
@@ -730,19 +730,19 @@
 
 =over 4
 
-=item -1
+=item /-1
 
 Stylesheet missing
 
-=item -2
+=item /-2
 
 Stylesheet not available
 
-=item -3
+=item /-3
 
 Event not implemented
 
-=item -4
+=item /-4
 
 Application panic
 
@@ -864,7 +864,7 @@
 
      ... your error handling code goes ...
 
-     return -4 if $panic;  # just for illustration
+     return /-4 if $panic;  # just for illustration
      return 0;
   }
 
@@ -1120,7 +1120,7 @@
 still causes the error page but does not send any error message.
 
 The current implementation send the 404 status to the client if any
-low level errors occour ( e.g. panic levels > -4 aka Application
+low level errors occour ( e.g. panic levels > \-4 aka Application
 Panic).  Commonly this really shows a "Not Found" on the application
 Level. Application Panics will set the 500 error state. This makes
 this implementation work perfect with a mod_perl installation.