├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .python-version ├── AUTHORS ├── CHANGES ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Procfile ├── Procfile.dev ├── README.rst ├── docker-compose.yml ├── docker ├── Procfile ├── entrypoint.sh └── uwsgi.ini ├── docs ├── Makefile ├── _build │ └── .gitignore ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── adding_users.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── how_it_works.rst ├── index.rst ├── installing.rst └── settings.rst ├── manage.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── localshop │ ├── __init__.py │ ├── apps │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth_urls.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_migrate_users.py │ │ │ ├── 0003_auto_20171116_2112.py │ │ │ ├── 0004_auto_20200612_1204.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── cidr.py │ │ │ ├── credentials.py │ │ │ ├── misc.py │ │ │ ├── package.py │ │ │ └── repository.py │ ├── packages │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_repository.py │ │ │ ├── 0003_default_repo.py │ │ │ ├── 0004_auto_20150517_1612.py │ │ │ ├── 0005_auto_20150525_1931.py │ │ │ ├── 0006_repository_upstream_pypi_url.py │ │ │ ├── 0007_auto_20150909_2245.py │ │ │ ├── 0008_auto_20171116_2112.py │ │ │ ├── 0009_package_name.py │ │ │ ├── 0010_auto_20200612_1204.py │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── pypi.py │ │ ├── tasks.py │ │ ├── urls.py │ │ ├── utils.py │ │ ├── views.py │ │ └── xmlrpc.py │ └── permissions │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_squashed_0002_remove_userena.py │ │ ├── 0002_auto_20150517_1857.py │ │ ├── 0002_remove_userena.py │ │ ├── 0003_auto_20171116_2112.py │ │ ├── 0004_auto_20200612_1204.py │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ └── utils.py │ ├── celery.py │ ├── http.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── create_default_user.py │ │ ├── init.py │ │ └── repository_refresh.py │ ├── runner.py │ ├── settings │ ├── __init__.py │ └── defaults.py │ ├── static │ └── localshop │ │ ├── css │ │ ├── main.css │ │ └── main.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── js │ │ ├── bootstrap.min.js │ │ └── jquery-2.1.4.min.js │ │ └── less │ │ ├── bootstrap │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ │ ├── custom.less │ │ └── main.less │ ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── accounts │ │ ├── accesskey_confirm_delete.html │ │ ├── accesskey_form.html │ │ ├── accesskey_list.html │ │ ├── base.html │ │ ├── profile.html │ │ ├── team_confirm_delete.html │ │ ├── team_detail.html │ │ ├── team_form.html │ │ └── team_list.html │ ├── dashboard │ │ ├── index.html │ │ ├── package_detail.html │ │ ├── repository_create.html │ │ ├── repository_detail.html │ │ └── repository_settings │ │ │ ├── base.html │ │ │ ├── cidr_confirm_delete.html │ │ │ ├── cidr_form.html │ │ │ ├── cidr_list.html │ │ │ ├── credential_confirm_delete.html │ │ │ ├── credential_form.html │ │ │ ├── credential_list.html │ │ │ ├── delete.html │ │ │ ├── edit.html │ │ │ └── teams.html │ ├── layout.base.html │ ├── layout.main.html │ ├── packages │ │ ├── package_list.html │ │ ├── simple_package_detail.html │ │ └── simple_package_list.html │ ├── partial │ │ ├── _form_field.html │ │ └── _form_fields.html │ └── registration │ │ ├── logged_out.html │ │ ├── login.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ └── password_reset_form.html │ ├── templatetags │ ├── __init__.py │ ├── forms.py │ └── permission_tags.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── wsgi.py ├── tests ├── __init__.py ├── apps │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ └── test_forms.py │ ├── dashboard │ │ ├── __init__.py │ │ └── test_forms.py │ ├── packages │ │ ├── __init__.py │ │ ├── test_fetch_package_task.py │ │ ├── test_models.py │ │ ├── test_pypi.py │ │ ├── test_tasks.py │ │ ├── test_utils.py │ │ ├── test_xmlrpc.py │ │ └── views │ │ │ ├── test_download_file.py │ │ │ ├── test_simple_detail.py │ │ │ └── test_simple_index.py │ └── permissions │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_utils.py ├── conftest.py ├── factories.py ├── management │ ├── __init__.py │ ├── test_command_init.py │ └── test_runner.py ├── pypi_data │ ├── minibar.json │ └── pyramid_debugtoolbar.json └── utils.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | public/ 2 | .git/ 3 | .tox/ 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.6.10 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn localshop.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/README.rst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docker/Procfile -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | localshop init 4 | exec honcho start 5 | -------------------------------------------------------------------------------- /docker/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docker/uwsgi.ini -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/_build/.gitignore -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/adding_users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/adding_users.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/how_it_works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/how_it_works.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/installing.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/setup.py -------------------------------------------------------------------------------- /src/localshop/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = __version__ = '0.9.2' 2 | -------------------------------------------------------------------------------- /src/localshop/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/admin.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/auth_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/auth_urls.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/forms.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/migrations/0002_migrate_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/migrations/0002_migrate_users.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/migrations/0003_auto_20171116_2112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/migrations/0003_auto_20171116_2112.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/migrations/0004_auto_20200612_1204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/migrations/0004_auto_20200612_1204.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/models.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/urls.py -------------------------------------------------------------------------------- /src/localshop/apps/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/accounts/views.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/forms.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/urls.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/__init__.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/cidr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/cidr.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/credentials.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/misc.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/package.py -------------------------------------------------------------------------------- /src/localshop/apps/dashboard/views/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/dashboard/views/repository.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/packages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/admin.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/forms.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0002_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0002_repository.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0003_default_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0003_default_repo.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0004_auto_20150517_1612.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0004_auto_20150517_1612.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0005_auto_20150525_1931.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0005_auto_20150525_1931.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0006_repository_upstream_pypi_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0006_repository_upstream_pypi_url.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0007_auto_20150909_2245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0007_auto_20150909_2245.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0008_auto_20171116_2112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0008_auto_20171116_2112.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0009_package_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0009_package_name.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/0010_auto_20200612_1204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/migrations/0010_auto_20200612_1204.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/packages/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/mixins.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/models.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/pypi.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/tasks.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/urls.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/utils.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/views.py -------------------------------------------------------------------------------- /src/localshop/apps/packages/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/packages/xmlrpc.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/permissions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/admin.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0001_squashed_0002_remove_userena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0001_squashed_0002_remove_userena.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0002_auto_20150517_1857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0002_auto_20150517_1857.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0002_remove_userena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0002_remove_userena.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0003_auto_20171116_2112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0003_auto_20171116_2112.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/0004_auto_20200612_1204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/migrations/0004_auto_20200612_1204.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/apps/permissions/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/mixins.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/models.py -------------------------------------------------------------------------------- /src/localshop/apps/permissions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/apps/permissions/utils.py -------------------------------------------------------------------------------- /src/localshop/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/celery.py -------------------------------------------------------------------------------- /src/localshop/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/http.py -------------------------------------------------------------------------------- /src/localshop/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/management/commands/create_default_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/management/commands/create_default_user.py -------------------------------------------------------------------------------- /src/localshop/management/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/management/commands/init.py -------------------------------------------------------------------------------- /src/localshop/management/commands/repository_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/management/commands/repository_refresh.py -------------------------------------------------------------------------------- /src/localshop/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/runner.py -------------------------------------------------------------------------------- /src/localshop/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .defaults import * # noqa 2 | -------------------------------------------------------------------------------- /src/localshop/settings/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/settings/defaults.py -------------------------------------------------------------------------------- /src/localshop/static/localshop/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/css/main.css -------------------------------------------------------------------------------- /src/localshop/static/localshop/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/css/main.css.map -------------------------------------------------------------------------------- /src/localshop/static/localshop/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/localshop/static/localshop/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/localshop/static/localshop/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/localshop/static/localshop/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/localshop/static/localshop/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/localshop/static/localshop/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/localshop/static/localshop/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/alerts.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/badges.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/button-groups.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/buttons.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/carousel.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/close.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/code.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/component-animations.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/forms.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/grid.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/input-groups.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/labels.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/list-group.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/media.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/modals.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/navbar.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/navs.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/normalize.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/pager.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/pagination.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/panels.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/popovers.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/print.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/tables.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/theme.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/tooltip.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/type.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/utilities.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/variables.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/bootstrap/wells.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/custom.less -------------------------------------------------------------------------------- /src/localshop/static/localshop/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/static/localshop/less/main.less -------------------------------------------------------------------------------- /src/localshop/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/403.html -------------------------------------------------------------------------------- /src/localshop/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/404.html -------------------------------------------------------------------------------- /src/localshop/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/500.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/accesskey_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/accesskey_confirm_delete.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/accesskey_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/accesskey_form.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/accesskey_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/accesskey_list.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/base.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/profile.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/team_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/team_confirm_delete.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/team_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/team_detail.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/team_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/team_form.html -------------------------------------------------------------------------------- /src/localshop/templates/accounts/team_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/accounts/team_list.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/index.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/package_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/package_detail.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_create.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_detail.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/base.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/cidr_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/cidr_confirm_delete.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/cidr_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/cidr_form.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/cidr_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/cidr_list.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/credential_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/credential_confirm_delete.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/credential_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/credential_form.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/credential_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/credential_list.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/delete.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/edit.html -------------------------------------------------------------------------------- /src/localshop/templates/dashboard/repository_settings/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/dashboard/repository_settings/teams.html -------------------------------------------------------------------------------- /src/localshop/templates/layout.base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/layout.base.html -------------------------------------------------------------------------------- /src/localshop/templates/layout.main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/layout.main.html -------------------------------------------------------------------------------- /src/localshop/templates/packages/package_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/packages/package_list.html -------------------------------------------------------------------------------- /src/localshop/templates/packages/simple_package_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/packages/simple_package_detail.html -------------------------------------------------------------------------------- /src/localshop/templates/packages/simple_package_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/packages/simple_package_list.html -------------------------------------------------------------------------------- /src/localshop/templates/partial/_form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/partial/_form_field.html -------------------------------------------------------------------------------- /src/localshop/templates/partial/_form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/partial/_form_fields.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/logged_out.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/login.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /src/localshop/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /src/localshop/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/localshop/templatetags/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templatetags/forms.py -------------------------------------------------------------------------------- /src/localshop/templatetags/permission_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/templatetags/permission_tags.py -------------------------------------------------------------------------------- /src/localshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/urls.py -------------------------------------------------------------------------------- /src/localshop/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/utils.py -------------------------------------------------------------------------------- /src/localshop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/views.py -------------------------------------------------------------------------------- /src/localshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/src/localshop/wsgi.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/accounts/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/accounts/test_forms.py -------------------------------------------------------------------------------- /tests/apps/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/dashboard/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/dashboard/test_forms.py -------------------------------------------------------------------------------- /tests/apps/packages/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/apps/packages/test_fetch_package_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_fetch_package_task.py -------------------------------------------------------------------------------- /tests/apps/packages/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_models.py -------------------------------------------------------------------------------- /tests/apps/packages/test_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_pypi.py -------------------------------------------------------------------------------- /tests/apps/packages/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_tasks.py -------------------------------------------------------------------------------- /tests/apps/packages/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_utils.py -------------------------------------------------------------------------------- /tests/apps/packages/test_xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/test_xmlrpc.py -------------------------------------------------------------------------------- /tests/apps/packages/views/test_download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/views/test_download_file.py -------------------------------------------------------------------------------- /tests/apps/packages/views/test_simple_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/views/test_simple_detail.py -------------------------------------------------------------------------------- /tests/apps/packages/views/test_simple_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/packages/views/test_simple_index.py -------------------------------------------------------------------------------- /tests/apps/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/permissions/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/permissions/test_models.py -------------------------------------------------------------------------------- /tests/apps/permissions/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/apps/permissions/test_utils.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/management/__init__.py -------------------------------------------------------------------------------- /tests/management/test_command_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/management/test_command_init.py -------------------------------------------------------------------------------- /tests/management/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/management/test_runner.py -------------------------------------------------------------------------------- /tests/pypi_data/minibar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/pypi_data/minibar.json -------------------------------------------------------------------------------- /tests/pypi_data/pyramid_debugtoolbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/pypi_data/pyramid_debugtoolbar.json -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/localshop/HEAD/tox.ini --------------------------------------------------------------------------------