mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Merge cc3d5d7aaf
into cc483e1877
This commit is contained in:
commit
ac3633b735
3 changed files with 37 additions and 11 deletions
|
@ -13,5 +13,5 @@ install: pip install -e .
|
||||||
before_script: pokedex setup -v
|
before_script: pokedex setup -v
|
||||||
script:
|
script:
|
||||||
- py.test
|
- py.test
|
||||||
- pokedex dump
|
- pokedex dump -l all
|
||||||
- git --no-pager diff --exit-code pokedex/data/csv/
|
- git --no-pager diff --exit-code pokedex/data/csv/
|
||||||
|
|
|
@ -470,22 +470,34 @@ def dump(session, tables=[], directory=None, verbose=False, langs=None):
|
||||||
writer = csv.writer(csvfile, lineterminator='\n')
|
writer = csv.writer(csvfile, lineterminator='\n')
|
||||||
columns = [col.name.encode('utf8') for col in table.columns]
|
columns = [col.name.encode('utf8') for col in table.columns]
|
||||||
|
|
||||||
# For name tables, always dump rows for official languages, as well as
|
# Tables always dump official languages.
|
||||||
# for those in `langs` if specified.
|
# If there were any `langs` passed, then the official languages plus
|
||||||
# For other translation tables, only dump rows for languages in `langs`
|
# the specified `langs` will be dumped from the tables that have a
|
||||||
# if specified, or for official languages by default.
|
# 'local_language_id' column.
|
||||||
# For non-translation tables, dump all rows.
|
# If the table doesn't have a 'local_language_id' column, then
|
||||||
|
# all the rows will be dumped.
|
||||||
if 'local_language_id' in columns:
|
if 'local_language_id' in columns:
|
||||||
|
# If 'pokedex dump' OR 'pokedex dump -l none' were passed
|
||||||
|
# Only columns with official languages will be dumped.
|
||||||
if langs is None:
|
if langs is None:
|
||||||
def include_row(row):
|
def include_row(row):
|
||||||
return languages[row.local_language_id].official
|
return languages[row.local_language_id].official
|
||||||
elif any(col.info.get('official') for col in table.columns):
|
|
||||||
|
# If 'pokedex dump -l all' was passed. All the columns will be
|
||||||
|
# dumped, no matter if the language is official or not.
|
||||||
|
elif langs == ['all']:
|
||||||
|
def include_row(row):
|
||||||
|
return True
|
||||||
|
|
||||||
|
# If there is a/multiple language codes passed, then all the columns that are
|
||||||
|
# those languages OR are official languages will be dumped.
|
||||||
|
else:
|
||||||
def include_row(row):
|
def include_row(row):
|
||||||
return (languages[row.local_language_id].official or
|
return (languages[row.local_language_id].official or
|
||||||
languages[row.local_language_id].identifier in langs)
|
languages[row.local_language_id].identifier in langs)
|
||||||
else:
|
|
||||||
def include_row(row):
|
# If there is no 'local_language_id' column in the table then all the rows
|
||||||
return languages[row.local_language_id].identifier in langs
|
# are dumped.
|
||||||
else:
|
else:
|
||||||
def include_row(row):
|
def include_row(row):
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -114,7 +114,7 @@ def create_parser():
|
||||||
help="directory to place the dumped CSV files")
|
help="directory to place the dumped CSV files")
|
||||||
cmd_dump.add_argument(
|
cmd_dump.add_argument(
|
||||||
'-l', '--langs', dest='langs', default=None,
|
'-l', '--langs', dest='langs', default=None,
|
||||||
help="comma-separated list of language codes to load, 'none', or 'all' (default: en)")
|
help=u"comma-separated list of language codes to load, 'none', or 'all' (default: none)")
|
||||||
cmd_dump.add_argument(
|
cmd_dump.add_argument(
|
||||||
'tables', nargs='*',
|
'tables', nargs='*',
|
||||||
help="list of database tables to load (default: all)")
|
help="list of database tables to load (default: all)")
|
||||||
|
@ -209,6 +209,20 @@ def command_dump(parser, args):
|
||||||
|
|
||||||
if args.langs is not None:
|
if args.langs is not None:
|
||||||
langs = [l.strip() for l in args.langs.split(',')]
|
langs = [l.strip() for l in args.langs.split(',')]
|
||||||
|
|
||||||
|
# If the `langs` code is 'none' then langs is None so only the official languages
|
||||||
|
# from the tables will be dumped. This is the same as if no `langs` were passed.
|
||||||
|
if len(langs) == 1 and langs[0] == 'none':
|
||||||
|
langs = None
|
||||||
|
|
||||||
|
# Check if either 'all' or 'none' codes are used along side other codes.
|
||||||
|
# If either code is used, an error message will be displayed and the program will close.
|
||||||
|
elif len(langs) > 1 and 'all' in langs:
|
||||||
|
print("\nERROR: The 'all' code should be used by itself.")
|
||||||
|
return
|
||||||
|
elif len(langs) > 1 and 'none' in langs:
|
||||||
|
print("\nERROR: The 'none' code should be used by itself.")
|
||||||
|
return
|
||||||
else:
|
else:
|
||||||
langs = None
|
langs = None
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue