django-pfx 1.4.dev52__tar.gz → 1.4.dev54__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/PKG-INFO +1 -1
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/django_pfx.egg-info/PKG-INFO +1 -1
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/locale/fr/LC_MESSAGES/django.po +2 -2
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/rest_views.py +46 -4
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/.gitignore +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/.gitlab-ci.yml +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/.pre-commit-config.yaml +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/LICENSE +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/MANIFEST.in +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/README.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/django_pfx.egg-info/SOURCES.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/django_pfx.egg-info/dependency_links.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/django_pfx.egg-info/requires.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/django_pfx.egg-info/top_level.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/Makefile +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/conf.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/index.rst +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/api.views.rst +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/authentication.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/decorator.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/generate_openapi.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/getting_started.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/internationalisation.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/model.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/pfx_views.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/profiling.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/settings.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/doc/source/testing.md +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/img/pfx.png +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/img/pfx.svg +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/make_messages +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/manage.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/apidoc/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/apidoc/parameters.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/apidoc/schema.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/apidoc/tags.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/apps.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/decorator/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/decorator/rest.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/default_settings.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/exceptions.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/http/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/http/json_response.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/locale/fr/LC_MESSAGES/django.mo +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/management/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/management/commands/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/management/commands/makeapidoc.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/management/commands/profile.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/middleware/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/middleware/authentication.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/middleware/locale.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/middleware/profiling.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/migrations/0001_initial.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/migrations/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/abstract_pfx_base_user.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/cache_mixins.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/login_ban.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/not_null_fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/otp_user_mixin.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/pfx_models.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/pfx_user.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/user_filtered_queryset_mixin.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/serializers/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/serializers/json.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/settings.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/shortcuts.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/storage/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/storage/s3_storage.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/otp_code_email.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/otp_code_subject.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/password_reset_email.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/password_reset_subject.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/welcome_email.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/welcome_subject.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/test.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/urls.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/authentication_views.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/filters_views.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/locale_views.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/date_format.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/groups.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/list_count.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/list_items.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/list_mode.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/list_order.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/list_search.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/media_redirect.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/meta_fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/meta_filters.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/meta_orders.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_limit.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_offset.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_page.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_page_size.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_page_subset.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/settings/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/settings/dev.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pyproject.toml +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/requirements.txt +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/serve-doc +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/setup.cfg +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/setup.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/locale/fr/LC_MESSAGES/django.po +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/models.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/ci.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/common.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/dev.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/dev_custom_example.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/settings/dev_default.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/__init__.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/basic_api_errors.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/basic_api_test.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_api_doc.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_api_doc_search.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_auth_api.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_body_mixin.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_cache.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_client.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_filters.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_locale_api.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_perm_tests.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_perms_api.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_profiling_middleware.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_settings.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_shortcuts.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_timezone_middleware.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_tools.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_user_queryset.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_view_decorators.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/tests/test_view_fields.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/urls.py +0 -0
- {django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/tests/views.py +0 -0
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: \n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date: 2024-
|
|
10
|
+
"POT-Creation-Date: 2024-08-20 12:22+0200\n"
|
|
11
11
|
"PO-Revision-Date: 2021-06-22 23:31+0200\n"
|
|
12
12
|
"Last-Translator: \n"
|
|
13
13
|
"Language-Team: \n"
|
|
@@ -280,6 +280,6 @@ msgstr "{model} {obj} modifié."
|
|
|
280
280
|
msgid "{model} {obj} deleted."
|
|
281
281
|
msgstr "{model} {obj} supprimé."
|
|
282
282
|
|
|
283
|
-
#: views/rest_views.py:
|
|
283
|
+
#: views/rest_views.py:1169 views/rest_views.py:1209
|
|
284
284
|
msgid "Unexpected storage error"
|
|
285
285
|
msgstr "Erreur de stockage inattendue"
|
|
@@ -1124,11 +1124,41 @@ class MediaRestViewMixin(ModelMixin):
|
|
|
1124
1124
|
---
|
|
1125
1125
|
get:
|
|
1126
1126
|
summary: Get upload URL
|
|
1127
|
-
description:
|
|
1127
|
+
description: |
|
|
1128
|
+
Get upload URL for a `MediaField` field.
|
|
1129
|
+
|
|
1130
|
+
You can upload a file ont the received URL. When the upload
|
|
1131
|
+
query is done, you have to confirm the process with an
|
|
1132
|
+
update request (`PUT`) on {model}. The body of this request
|
|
1133
|
+
must contain the name of the `MediaField` with the contents
|
|
1134
|
+
of the `file` value in the response of this request.
|
|
1135
|
+
|
|
1136
|
+
1. `GET /<int:pk>/<str:field>/upload-url/<str:filename>`
|
|
1137
|
+
→ `data`
|
|
1138
|
+
2. `PUT data.url aFile Content-Type: aFile.type`
|
|
1139
|
+
3. `PUT /<int:pk> {{field: data.file}}`
|
|
1128
1140
|
parameters extras:
|
|
1129
|
-
pk:
|
|
1130
|
-
field:
|
|
1131
|
-
|
|
1141
|
+
pk: The {model} pk.
|
|
1142
|
+
field: The {model} field name. Must be the name of
|
|
1143
|
+
a `MediaField` field.
|
|
1144
|
+
filename: The desired filename.
|
|
1145
|
+
responses:
|
|
1146
|
+
200:
|
|
1147
|
+
description: The upload URL
|
|
1148
|
+
content:
|
|
1149
|
+
application/json:
|
|
1150
|
+
schema:
|
|
1151
|
+
properties:
|
|
1152
|
+
url:
|
|
1153
|
+
type: string
|
|
1154
|
+
format: uri
|
|
1155
|
+
file:
|
|
1156
|
+
type: object
|
|
1157
|
+
properties:
|
|
1158
|
+
name:
|
|
1159
|
+
type: string
|
|
1160
|
+
key:
|
|
1161
|
+
type: string
|
|
1132
1162
|
"""
|
|
1133
1163
|
obj = self.get_object(pk=pk)
|
|
1134
1164
|
try:
|
|
@@ -1158,6 +1188,18 @@ class MediaRestViewMixin(ModelMixin):
|
|
|
1158
1188
|
parameters extras:
|
|
1159
1189
|
pk: the {model} pk
|
|
1160
1190
|
field: the {model} field name
|
|
1191
|
+
responses:
|
|
1192
|
+
200:
|
|
1193
|
+
description: The file URL, if `redirect` is `false`.
|
|
1194
|
+
content:
|
|
1195
|
+
application/json:
|
|
1196
|
+
schema:
|
|
1197
|
+
properties:
|
|
1198
|
+
url:
|
|
1199
|
+
type: string
|
|
1200
|
+
format: uri
|
|
1201
|
+
302:
|
|
1202
|
+
description: The redirect, if `redirect` is `true`.
|
|
1161
1203
|
"""
|
|
1162
1204
|
obj = self.get_object(pk=pk)
|
|
1163
1205
|
try:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/models/user_filtered_queryset_mixin.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/otp_code_email.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/welcome_email.txt
RENAMED
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/templates/registration/welcome_subject.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/media_redirect.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_page_size.py
RENAMED
|
File without changes
|
{django_pfx-1.4.dev52 → django_pfx-1.4.dev54}/pfx/pfxcore/views/parameters/subset_page_subset.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|