summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@gmail.com>2014-05-01 14:03:24 +0700
committerLoic Bistuer <loic.bistuer@gmail.com>2014-05-02 23:07:17 +0700
commitd1799233f46c39379fe429a4ece128d96b128006 (patch)
treecba5ad052c1fc9a8ee8b0d2b5ac4c9a2d8817b17
parent0dce44e16be2d4850120cd333380ab9171c5964a (diff)
Fixed clash caused by the newly introduced -e shorthand for makemessages --exclude.
This fixes a regression caused by 0707b82. Refs #22328.
-rw-r--r--django/core/management/commands/compilemessages.py2
-rw-r--r--django/core/management/commands/makemessages.py2
-rw-r--r--docs/man/django-admin.12
-rw-r--r--docs/ref/django-admin.txt12
-rw-r--r--tests/i18n/test_compilation.py14
-rw-r--r--tests/i18n/test_extraction.py13
6 files changed, 35 insertions, 10 deletions
diff --git a/django/core/management/commands/compilemessages.py b/django/core/management/commands/compilemessages.py
index d4b311bdd9..50cc1c9c93 100644
--- a/django/core/management/commands/compilemessages.py
+++ b/django/core/management/commands/compilemessages.py
@@ -34,7 +34,7 @@ class Command(BaseCommand):
make_option('--locale', '-l', dest='locale', action='append', default=[],
help='Locale(s) to process (e.g. de_AT). Default is to process all. Can be '
'used multiple times.'),
- make_option('--exclude', '-e', dest='exclude', action='append', default=[],
+ make_option('--exclude', '-x', dest='exclude', action='append', default=[],
help='Locales to exclude. Default is none. Can be used multiple times.'),
)
help = 'Compiles .po files to .mo files for use with builtin gettext support.'
diff --git a/django/core/management/commands/makemessages.py b/django/core/management/commands/makemessages.py
index 2b3afe3f4f..570e94c2a2 100644
--- a/django/core/management/commands/makemessages.py
+++ b/django/core/management/commands/makemessages.py
@@ -163,7 +163,7 @@ class Command(NoArgsCommand):
make_option('--locale', '-l', default=[], dest='locale', action='append',
help='Creates or updates the message files for the given locale(s) (e.g. pt_BR). '
'Can be used multiple times.'),
- make_option('--exclude', '-e', default=[], dest='exclude', action='append',
+ make_option('--exclude', '-x', default=[], dest='exclude', action='append',
help='Locales to exclude. Default is none. Can be used multiple times.'),
make_option('--domain', '-d', default='django', dest='domain',
help='The domain of the message files (default: "django").'),
diff --git a/docs/man/django-admin.1 b/docs/man/django-admin.1
index fd254d5268..621d37c554 100644
--- a/docs/man/django-admin.1
+++ b/docs/man/django-admin.1
@@ -176,7 +176,7 @@ output a full stack trace whenever an exception is raised.
.I \-l, \-\-locale=LOCALE
The locale to process when using makemessages or compilemessages.
.TP
-.I \-e, \-\-exclude=LOCALE
+.I \-x, \-\-exclude=LOCALE
The locale to exclude from processing when using makemessages or compilemessages.
.TP
.I \-d, \-\-domain=DOMAIN
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 7cf5e4ff18..7ceddb9cc2 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -143,7 +143,7 @@ specify the locale(s) to process. If not provided, all locales are processed.
.. versionadded:: 1.8
-Use the :djadminopt:`--exclude` option (or its shorter version ``-e``) to
+Use the :djadminopt:`--exclude` option (or its shorter version ``-x``) to
specify the locale(s) to exclude from processing. If not provided, no locales
are excluded.
@@ -155,8 +155,8 @@ Example usage::
django-admin.py compilemessages -l pt_BR -l fr
django-admin.py compilemessages --exclude=pt_BR
django-admin.py compilemessages --exclude=pt_BR --exclude=fr
- django-admin.py compilemessages -e pt_BR
- django-admin.py compilemessages -e pt_BR -e fr
+ django-admin.py compilemessages -x pt_BR
+ django-admin.py compilemessages -x pt_BR -x fr
createcachetable
----------------
@@ -563,7 +563,7 @@ specify the locale(s) to process.
.. versionadded:: 1.8
-Use the :djadminopt:`--exclude` option (or its shorter version ``-e``) to
+Use the :djadminopt:`--exclude` option (or its shorter version ``-x``) to
specify the locale(s) to exclude from processing. If not provided, no locales
are excluded.
@@ -575,8 +575,8 @@ Example usage::
django-admin.py makemessages -l pt_BR -l fr
django-admin.py makemessages --exclude=pt_BR
django-admin.py makemessages --exclude=pt_BR --exclude=fr
- django-admin.py makemessages -e pt_BR
- django-admin.py makemessages -e pt_BR -e fr
+ django-admin.py makemessages -x pt_BR
+ django-admin.py makemessages -x pt_BR -x fr
.. versionchanged:: 1.7
diff --git a/tests/i18n/test_compilation.py b/tests/i18n/test_compilation.py
index 325c597aa9..49ea2d0dc1 100644
--- a/tests/i18n/test_compilation.py
+++ b/tests/i18n/test_compilation.py
@@ -1,9 +1,10 @@
import os
import shutil
import stat
+import sys
import unittest
-from django.core.management import call_command, CommandError
+from django.core.management import call_command, CommandError, execute_from_command_line
from django.core.management.utils import find_command
from django.test import SimpleTestCase
from django.test import override_settings
@@ -138,6 +139,17 @@ class ExcludedLocaleCompilationTests(MessageCompilationTests):
shutil.copytree('canned_locale', 'locale')
self.addCleanup(self._rmrf, os.path.join(self.test_dir, 'locale'))
+ def test_command_help(self):
+ old_stdout, old_stderr = sys.stdout, sys.stderr
+ sys.stdout, sys.stderr = StringIO(), StringIO()
+ try:
+ # `call_command` bypasses the parser; by calling
+ # `execute_from_command_line` with the help subcommand we
+ # ensure that there are no issues with the parser itself.
+ execute_from_command_line(['django-admin', 'help', 'compilemessages'])
+ finally:
+ sys.stdout, sys.stderr = old_stdout, old_stderr
+
def test_one_locale_excluded(self):
call_command('compilemessages', exclude=['it'], stdout=StringIO())
self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
diff --git a/tests/i18n/test_extraction.py b/tests/i18n/test_extraction.py
index 717ece6c9d..3e004acb9b 100644
--- a/tests/i18n/test_extraction.py
+++ b/tests/i18n/test_extraction.py
@@ -5,12 +5,14 @@ import io
import os
import re
import shutil
+import sys
import time
from unittest import SkipTest, skipUnless
import warnings
from django.conf import settings
from django.core import management
+from django.core.management import execute_from_command_line
from django.core.management.utils import find_command
from django.test import SimpleTestCase
from django.test import override_settings
@@ -565,6 +567,17 @@ class ExcludedLocaleExtractionTests(ExtractorTests):
self._set_times_for_all_po_files()
self.addCleanup(self._rmrf, os.path.join(self.test_dir, 'locale'))
+ def test_command_help(self):
+ old_stdout, old_stderr = sys.stdout, sys.stderr
+ sys.stdout, sys.stderr = StringIO(), StringIO()
+ try:
+ # `call_command` bypasses the parser; by calling
+ # `execute_from_command_line` with the help subcommand we
+ # ensure that there are no issues with the parser itself.
+ execute_from_command_line(['django-admin', 'help', 'makemessages'])
+ finally:
+ sys.stdout, sys.stderr = old_stdout, old_stderr
+
def test_one_locale_excluded(self):
management.call_command('makemessages', exclude=['it'], stdout=StringIO())
self.assertRecentlyModified(self.PO_FILE % 'en')