[Zope-Checkins] CVS: Zope/doc - CHANGES.txt:1.589 ENVIRONMENT.txt:1.21

Andreas Jung andreas@andreas-jung.com
Wed, 22 Jan 2003 09:22:55 -0500


Update of /cvs-repository/Zope/doc
In directory cvs.zope.org:/tmp/cvs-serv1515

Modified Files:
	CHANGES.txt ENVIRONMENT.txt 
Log Message:
merge from ajung-european-datetime-support-branch

=== Zope/doc/CHANGES.txt 1.588 => 1.589 ===
--- Zope/doc/CHANGES.txt:1.588	Tue Jan 21 09:49:56 2003
+++ Zope/doc/CHANGES.txt	Wed Jan 22 09:22:52 2003
@@ -22,6 +22,14 @@
        support for obtaining a more useful value from other headers if a
        front-end proxy is in use. See doc/ENVIRONMENT.txt for details.
 
+     - DateTime module: added support to parse international dateformats. The
+       Datetime constructor has a new "datefmt" parameter to enforce the
+       parsing of a date as "us" or "international" date. The new field        
+       descriptor field descriptor "date_international" can be used to
+       enforce this behaviour inside the ZPublisher. See also 
+       doc/ENVIRONMENT.txt to check with the DATETIME_FORMAT 
+ 
+
     Bugs Fixed
 
      - Collector #771: ZCatalog failed to index DTML Document if the name


=== Zope/doc/ENVIRONMENT.txt 1.20 => 1.21 ===
--- Zope/doc/ENVIRONMENT.txt:1.20	Thu Jan  2 15:29:56 2003
+++ Zope/doc/ENVIRONMENT.txt	Wed Jan 22 09:22:52 2003
@@ -199,12 +199,12 @@
     ZSP_OWNEROUS_SKIP
 
         If set, will cause the Zope Security Policy to skip checks relating
-	to ownership, for servers on which ownership is not important.
+        to ownership, for servers on which ownership is not important.
 
     ZSP_AUTHENTICATED_SKIP
 
         If set, will cause the Zope Security Policy to skip checks relating
-	to authentication, for servers which serve only anonymous content.
+        to authentication, for servers which serve only anonymous content.
 
     DISALLOW_LOCAL_PRODUCTS
 
@@ -272,11 +272,9 @@
 
     STX_DEFAULT_LEVEL
 
-       Set this variable to change the default level for <Hx> elements.
-       The default level is 3.
-
-
-DTML
+        Set this variable to change the default level for <Hx> elements.
+        The default level is 3.
+        
 
     ZOPE_DTML_REQUEST_AUTOQUOTE
 
@@ -288,6 +286,15 @@
         HTML quoted when interpolated with a <dtml-var> or &dtml-;
         construct.
 
+DateTime
+
+    DATETIME_FORMAT 
+
+        Set this variable either to "us" or "international" to force
+        the DateTime module to parse date strings either with
+        month before days before year or days before month before
+        year. If unset the default behaviour of DateTime is untouched
+        and parses ambigious date formats as US date.
 
 Esoteric