├── chishop ├── conf │ ├── __init__.py │ └── default.py ├── media │ ├── __init__.py │ ├── dists │ │ └── __init__.py │ └── style │ │ └── djangopypi.css ├── __init__.py ├── templates │ ├── registration │ │ ├── activation_email_subject.txt │ │ ├── logout.html │ │ ├── registration_closed.html │ │ ├── activate.html │ │ ├── login.html │ │ ├── registration_complete.html │ │ ├── activation_email.txt │ │ ├── registration_form.html │ │ └── activation_complete.html │ ├── djangopypi │ │ ├── search.html │ │ ├── simple.html │ │ ├── show_version.html │ │ ├── show_links.html │ │ ├── pypi.html │ │ ├── search_results.html │ │ └── pypi_show_links.html │ ├── admin │ │ └── base_site.html │ ├── 404.html │ ├── base_site.html │ ├── 500.html │ └── base.html ├── production_example.py ├── settings.py ├── manage.py └── urls.py ├── djangopypi ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── loadclassifiers.py │ │ └── ppadd.py ├── templatetags │ ├── __init__.py │ └── safemarkup.py ├── __init__.py ├── admin.py ├── forms.py ├── urls.py ├── views │ ├── search.py │ ├── users.py │ ├── __init__.py │ └── dists.py ├── utils.py ├── http.py ├── models.py └── tests.py ├── MANIFEST.in ├── .gitignore ├── AUTHORS ├── TODO ├── LICENSE ├── Changelog ├── README ├── setup.py ├── index.html └── bootstrap.py /chishop/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chishop/media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chishop/media/dists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangopypi/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangopypi/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangopypi/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chishop/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = (0, 1, 1) 2 | __version__ = ".".join(map(str, VERSION)) 3 | -------------------------------------------------------------------------------- /djangopypi/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = (0, 2, 0) 2 | __version__ = ".".join(map(str, VERSION)) 3 | -------------------------------------------------------------------------------- /chishop/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | Account Activation - {{ site }} 2 | -------------------------------------------------------------------------------- /chishop/media/style/djangopypi.css: -------------------------------------------------------------------------------- 1 | .search { 2 | text-align:right; 3 | margin-right: 10px; 4 | } -------------------------------------------------------------------------------- /chishop/templates/registration/logout.html: -------------------------------------------------------------------------------- 1 | {% extends "base_site.html" %} 2 | 3 | {% block main_content %} 4 |
5 | {%trans "Logged out."%} 6 |
7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include AUTHORS 2 | include README 3 | include TODO 4 | include MANIFEST.in 5 | include LICENSE 6 | include Changelog 7 | recursive-include djangopypi * 8 | recursive-include chishop * 9 | -------------------------------------------------------------------------------- /chishop/templates/djangopypi/search.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /chishop/templates/registration/registration_closed.html: -------------------------------------------------------------------------------- 1 | {% extends "base_site.html" %} 2 | 3 | {% block content %} 4 |6 | Registration is disabled. 7 |
8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /chishop/templates/registration/activate.html: -------------------------------------------------------------------------------- 1 | {% extends "base_site.html" %} 2 | 3 | {% block content %} 4 |6 | Activation with key {{activation_key}} failed. 7 |
8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /djangopypi/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from djangopypi.models import Project, Release, Classifier 3 | 4 | admin.site.register(Project) 5 | admin.site.register(Release) 6 | admin.site.register(Classifier) 7 | -------------------------------------------------------------------------------- /chishop/templates/djangopypi/simple.html: -------------------------------------------------------------------------------- 1 |