componentsDjangoType 2.1.1__tar.gz → 2.1.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {componentsdjangotype-2.1.1/componentsDjangoType.egg-info → componentsdjangotype-2.1.2}/PKG-INFO +1 -1
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2/componentsDjangoType.egg-info}/PKG-INFO +1 -1
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authenticator_configurator.py +2 -2
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/setup.py +1 -1
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/LICENSE +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/MANIFEST.in +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/README.md +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/commands/createApp.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/__init__.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authentication/auth.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authentication/forms.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/copy_source.py +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/css/authentication.css +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/js/alertErrors.js +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/home.html +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/layouts/index.html +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/logged.html +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/login.html +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/signup.html +0 -0
- {componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/setup.cfg +0 -0
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authenticator_configurator.py
RENAMED
@@ -158,7 +158,7 @@ urlpatterns = [
|
|
158
158
|
auth_code = source_file.read()
|
159
159
|
|
160
160
|
with open(form_source_path, 'r') as source_file:
|
161
|
-
form_code = source_file.read
|
161
|
+
form_code = source_file.read()
|
162
162
|
|
163
163
|
# Escribir el contenido en el nuevo archivo 'authentication.py'
|
164
164
|
with open(authentication_path, 'w') as dest_file:
|
@@ -259,7 +259,7 @@ urlpatterns = [
|
|
259
259
|
files_to_copy = [
|
260
260
|
("services.utils.js", "alertErrors.js", os.path.join(js_dir, "alertErrors.js")),
|
261
261
|
("services.utils.css", "authentication.css", os.path.join(css_dir, "authentication.css")),
|
262
|
-
("services.utils.css.user", "aside.css", os.path.join(user_dir_css, "
|
262
|
+
("services.utils.css.user", "aside.css", os.path.join(user_dir_css, "aside.css")),
|
263
263
|
("services.utils.views.layouts", "index.html", os.path.join(layouts_dir, "index.html")),
|
264
264
|
("services.utils.views", "home.html", os.path.join(templates_dir, "home.html")),
|
265
265
|
("services.utils.views", "signup.html", os.path.join(templates_dir, "signup.html")),
|
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
|
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/componentsDjangoType.egg-info/requires.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/authentication/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/css/authentication.css
RENAMED
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.1.1 → componentsdjangotype-2.1.2}/services/utils/views/layouts/index.html
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|