componentsDjangoType 1.0.2__tar.gz → 1.0.3__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.
- {componentsdjangotype-1.0.2/componentsDjangoType.egg-info → componentsdjangotype-1.0.3}/PKG-INFO +1 -1
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/createApp.py +19 -10
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3/componentsDjangoType.egg-info}/PKG-INFO +1 -1
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/setup.py +1 -1
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/LICENSE +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/MANIFEST.in +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/README.md +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/css/authentication.css +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/js/alertErrors.js +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/layouts/index.html +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/pages/home.html +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/pages/logged.html +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/pages/login.html +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType/management/commands/utils/pages/singup.html +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/setup.cfg +0 -0
@@ -1,6 +1,7 @@
|
|
1
1
|
import os
|
2
2
|
from django.core.management.base import BaseCommand
|
3
3
|
from django.core.management import call_command
|
4
|
+
import componentsDjangoType.management.commands.utils as utils
|
4
5
|
|
5
6
|
|
6
7
|
class Command(BaseCommand):
|
@@ -8,6 +9,7 @@ class Command(BaseCommand):
|
|
8
9
|
|
9
10
|
def handle(self, *args, **kwargs):
|
10
11
|
# Nombre de la aplicación a crear
|
12
|
+
|
11
13
|
app_name = "Home"
|
12
14
|
|
13
15
|
# Paso 1: Solicitar el nombre de la aplicación principal al usuario
|
@@ -160,6 +162,9 @@ class Command(BaseCommand):
|
|
160
162
|
css_dir = os.path.join(static_dir, 'css')
|
161
163
|
js_dir = os.path.join(static_dir, 'js')
|
162
164
|
|
165
|
+
# Ruta base para `utils`
|
166
|
+
utils_base_path = os.path.dirname(utils.__file__)
|
167
|
+
|
163
168
|
# Crear los directorios necesarios
|
164
169
|
os.makedirs(js_dir, exist_ok=True)
|
165
170
|
os.makedirs(css_dir, exist_ok=True)
|
@@ -167,28 +172,32 @@ class Command(BaseCommand):
|
|
167
172
|
os.makedirs(templates_dir, exist_ok=True)
|
168
173
|
os.makedirs(static_dir, exist_ok=True)
|
169
174
|
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
+
css_source_path = os.path.join(
|
176
|
+
utils_base_path, 'css', 'authentication.css')
|
177
|
+
js_source_path = os.path.join(utils_base_path, 'js', 'alertErrors.js')
|
178
|
+
index_page_source = os.path.join(
|
179
|
+
utils_base_path, 'layouts', 'index.html')
|
180
|
+
home_page = os.path.join(utils_base_path, 'pages', 'home.html')
|
181
|
+
signup_page = os.path.join(utils_base_path, 'pages', 'signup.html')
|
182
|
+
login_page = os.path.join(utils_base_path, 'pages', 'login.html')
|
183
|
+
logged_page = os.path.join(utils_base_path, 'pages', 'logged.html')
|
175
184
|
|
176
185
|
# Crear archivos si no existen
|
177
|
-
if not os.path.exists(
|
186
|
+
if not os.path.exists(css_source_path):
|
178
187
|
try:
|
179
188
|
with open(css_source_path, 'r') as source_file:
|
180
189
|
css_content = source_file.read()
|
181
190
|
with open(js_source_path, 'r') as source_file:
|
182
191
|
js_content = source_file.read()
|
183
192
|
|
184
|
-
with open(
|
193
|
+
with open(css_source_path, 'w') as f:
|
185
194
|
f.write(css_content)
|
186
|
-
with open(
|
195
|
+
with open(js_source_path, 'w') as f:
|
187
196
|
f.write(js_content)
|
188
197
|
|
189
198
|
print(f"Archivo CSS creado exitosamente en {
|
190
|
-
|
191
|
-
print(f"Archivo JS creado exitosamente en {
|
199
|
+
js_source_path}")
|
200
|
+
print(f"Archivo JS creado exitosamente en {js_source_path}")
|
192
201
|
except FileNotFoundError as e:
|
193
202
|
print(f"Archivo fuente no encontrado: {e}")
|
194
203
|
except Exception as e:
|
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
|
{componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-1.0.2 → componentsdjangotype-1.0.3}/componentsDjangoType.egg-info/requires.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|