- Simplified architecture: ONE central documentation page per equipment
- Wiki ID generation from equipment name (e.g., 'sabako-laser')
- Namespace structure: werkstatt:ausruestung:doku:{name}
- View pages by area: werkstatt:ausruestung:{area}:{name}
- Smart page protection: central doku only created once, not overwritten
- View pages update on each sync (shows current Odoo metadata)
- Template detection: distinguishes real content from DokuWiki auto-templates
- JSONB multilingual name field handling
- Include Plugin integration for embedded content display
- Automatic sync option via write() override
- Configuration via System Parameters (url, user, password)
- Settings page in General Settings for easy credential management
9 lines
253 B
Python
9 lines
253 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
def post_init_hook(env):
|
|
"""
|
|
Hook der nach der Modul-Installation ausgeführt wird.
|
|
Initialisiert die DokuWiki-Parameter falls sie nicht existieren.
|
|
"""
|
|
env['res.config.settings']._init_dokuwiki_parameters()
|