App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Static Public Attributes | List of all members
google.appengine._internal.django.core.management.commands.makemessages.Command Class Reference
Inheritance diagram for google.appengine._internal.django.core.management.commands.makemessages.Command:
google.appengine._internal.django.core.management.base.BaseCommand

Public Member Functions

def handle
 
- Public Member Functions inherited from google.appengine._internal.django.core.management.base.BaseCommand
def __init__
 
def get_version
 
def usage
 
def create_parser
 
def print_help
 
def run_from_argv
 
def execute
 
def validate
 
def handle
 

Static Public Attributes

tuple option_list
 
string help = "Runs over the entire source tree of the current directory and pulls out all strings marked for translation. It creates (or updates) a message file in the conf/locale (in the django tree) or locale (for project and application) directory."
 
 requires_model_validation = False
 
 can_import_settings = False
 
- Static Public Attributes inherited from google.appengine._internal.django.core.management.base.BaseCommand
tuple option_list
 
string help = ''
 
string args = ''
 
 can_import_settings = True
 
 requires_model_validation = True
 
 output_transaction = False
 

Additional Inherited Members

- Public Attributes inherited from google.appengine._internal.django.core.management.base.BaseCommand
 style
 
 stdout
 
 stderr
 

Member Data Documentation

tuple google.appengine._internal.django.core.management.commands.makemessages.Command.option_list
static
Initial value:
1 = BaseCommand.option_list+(
2  make_option('--locale', '-l', default=None, dest='locale',
3  help='Creates or updates the message files only for the given locale (e.g. pt_BR).'),
4  make_option('--domain', '-d', default='django', dest='domain',
5  help='The domain of the message files (default: "django").'),
6  make_option('--all', '-a', action='store_true', dest='all',
7  default=False, help='Reexamines all source code and templates for new translation strings and updates all message files for all available languages.'),
8  make_option('--extension', '-e', dest='extensions',
9  help='The file extension(s) to examine (default: ".html", separate multiple extensions with commas, or use -e multiple times)',
10  action='append'),
11  make_option('--symlinks', '-s', action='store_true', dest='symlinks',
12  default=False, help='Follows symlinks to directories when examining source code and templates for translation strings.'),
13  make_option('--ignore', '-i', action='append', dest='ignore_patterns',
14  default=[], metavar='PATTERN', help='Ignore files or directories matching this glob-style pattern. Use multiple times to ignore more.'),
15  make_option('--no-default-ignore', action='store_false', dest='use_default_ignore_patterns',
16  default=True, help="Don't ignore the common glob-style patterns 'CVS', '.*' and '*~'."),
17  )

The documentation for this class was generated from the following file: