From df6574a8cb5e47d95fb7166f6819309542c46ac9 Mon Sep 17 00:00:00 2001 From: arantuna Date: Tue, 20 May 2025 22:24:41 -0600 Subject: [PATCH] se elimina debug_paths.py --- i18n-docu/debug_paths.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 i18n-docu/debug_paths.py diff --git a/i18n-docu/debug_paths.py b/i18n-docu/debug_paths.py deleted file mode 100644 index dd57ddc..0000000 --- a/i18n-docu/debug_paths.py +++ /dev/null @@ -1,30 +0,0 @@ -import os -import sys - -# Directorio base desde donde se ejecuta mkdocs -base_dir = os.getcwd() -print(f"Directorio base: {base_dir}\n") - -# Rutas a comprobar -snippet_paths = [ - "sections/oggui-grupos.md", - "sections/oggui-acciones.md", - "sections/oggui-cierre.md" -] - -# Posibles directorios base para los snippets -base_paths = [ - base_dir, - os.path.join(base_dir, "docs"), - os.path.join(base_dir, "docs/es/administration"), - os.path.join(base_dir, "docs/en/administration"), - # Añade más rutas si es necesario -] - -print("Comprobando rutas de snippets:") -for base_path in base_paths: - print(f"\nDesde base: {base_path}") - for snippet in snippet_paths: - full_path = os.path.join(base_path, snippet) - exists = os.path.exists(full_path) - print(f" - {full_path} {'EXISTE' if exists else 'NO EXISTE'}")