New features: - ContentBackup class with ZIP backup/restore and git versioning - Admin backup & restore page (content-backup.twig) with git init/commit/log/restore - Plugin type system: system (blue) vs content (green) with visual badges - PluginAPIInterface + AdminPluginAPI for plugin architecture - Essential plugin flag (cannot edit/deactivate/delete) Improvements: - Consolidated enabled_plugins config (removed plugins.enabled) - Removed Analytics/Logging toggles from admin config page - Fixed Dashboard plugin Twig comments rendered as text - Updated 20 guide files (NL+EN): configuratie, plugins, plugin-development, core-classes, theme-json, layouts, scss-styling, admin-beheerder, nieuw-thema, architectuur - Improved accessibility test script (grep -E, min/max checks) Cleanup: - Removed unused classes: ARIAComponents, AccessibilityManager, ContentSecurityPolicy, etc. - Removed vendor packages: mustache/mustache, php-mqtt/client - Removed old templates: logs.twig, statistics.twig (now plugins) - Moved language files to language/ directory Tests: - Pentest: 30/30 passed, 0 vulnerabilities - WCAG 2.1 AA: 25/25 passed, 100% compliance
49 lines
684 B
Plaintext
49 lines
684 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Build outputs
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Cache & Storage
|
|
.cache/
|
|
.sass-cache/
|
|
admin/storage/cache/
|
|
admin/storage/geoip/
|
|
admin/storage/stats.json
|
|
var/
|
|
|
|
# Runtime-compiled theme assets
|
|
public/themes/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.bak/
|
|
|
|
# Local configuration & credentials
|
|
config.json
|
|
config.*.json
|
|
!config.json.example
|
|
admin/config/admin.json
|
|
|
|
# No content (per-domain content dirs included)
|
|
content/
|
|
content-*/
|
|
!content/.gitkeep
|
|
|
|
# Test results
|
|
pentest_results.*
|
|
accessibility-test-results.*
|
|
enhanced-test-results.*
|
|
cli/test/functional/test-report*.md
|
|
cli/test/functional/function-test.md
|