├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── goals.rst ├── granola.rst ├── history.rst ├── index.rst ├── installation.rst ├── migratingfromtower.rst ├── puente_logo.jpg └── release.rst ├── puente ├── __init__.py ├── commands.py ├── ext.py ├── extract.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── extract.py │ │ └── merge.py ├── settings.py └── utils.py ├── puente_logo.jpg ├── pytest.ini ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── test_project_django_jinja ├── manage.py └── test_project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── tests ├── __init__.py ├── test_ext.py ├── test_extract.py ├── test_merge.py └── test_utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/goals.rst -------------------------------------------------------------------------------- /docs/granola.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/granola.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/migratingfromtower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/migratingfromtower.rst -------------------------------------------------------------------------------- /docs/puente_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/puente_logo.jpg -------------------------------------------------------------------------------- /docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/docs/release.rst -------------------------------------------------------------------------------- /puente/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/__init__.py -------------------------------------------------------------------------------- /puente/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/commands.py -------------------------------------------------------------------------------- /puente/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/ext.py -------------------------------------------------------------------------------- /puente/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/extract.py -------------------------------------------------------------------------------- /puente/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puente/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puente/management/commands/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/management/commands/extract.py -------------------------------------------------------------------------------- /puente/management/commands/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/management/commands/merge.py -------------------------------------------------------------------------------- /puente/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/settings.py -------------------------------------------------------------------------------- /puente/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente/utils.py -------------------------------------------------------------------------------- /puente_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/puente_logo.jpg -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/setup.py -------------------------------------------------------------------------------- /test_project_django_jinja/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/test_project_django_jinja/manage.py -------------------------------------------------------------------------------- /test_project_django_jinja/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project_django_jinja/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/test_project_django_jinja/test_project/settings.py -------------------------------------------------------------------------------- /test_project_django_jinja/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/test_project_django_jinja/test_project/urls.py -------------------------------------------------------------------------------- /test_project_django_jinja/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/test_project_django_jinja/test_project/wsgi.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/tests/test_ext.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/tests/test_merge.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/puente/HEAD/tox.ini --------------------------------------------------------------------------------