[Checkins] SVN: z3c.recipe.i18n/trunk/ - The ``excludeDefaultDomain`` option actually works now.

Christian Zagrodnick cz at gocept.com
Fri May 15 06:41:16 EDT 2009


Log message for revision 99973:
  - The ``excludeDefaultDomain`` option actually works now.
  
  

Changed:
  U   z3c.recipe.i18n/trunk/CHANGES.txt
  U   z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18nextract.py

-=-
Modified: z3c.recipe.i18n/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.i18n/trunk/CHANGES.txt	2009-05-15 10:38:35 UTC (rev 99972)
+++ z3c.recipe.i18n/trunk/CHANGES.txt	2009-05-15 10:41:16 UTC (rev 99973)
@@ -8,6 +8,8 @@
 - Fix bug where i18ncompile miscalculated domains containing ".", everything
   after the "." was ignored.
 
+- The ``excludeDefaultDomain`` option actually works now.
+
 0.5.3 (2009-03-12)
 ------------------
 

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18nextract.py
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18nextract.py	2009-05-15 10:38:35 UTC (rev 99972)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18nextract.py	2009-05-15 10:41:16 UTC (rev 99973)
@@ -73,7 +73,8 @@
         opts, args = getopt.getopt(
             argv[1:],
             'hed:s:i:m:p:o:x:',
-            ['help', 'domain=', 'site_zcml=', 'path=', 'python-only'])
+            ['help', 'domain=', 'site_zcml=', 'path=', 'python-only',
+             'exclude-default-domain'])
     except getopt.error, msg:
         usage(1, msg)
 



More information about the Checkins mailing list