====== Aufbau des Projekt-Baumes ====== Das forth wiki beginnt mit der [[http://www.forth-ev.de/wiki/doku.php|start]] Seite. Der Namespace für Projekte im wiki lautet //projects//. Jedes Projekt wiederum hat darin seinen //eigenen// Namespace. Zum Beispiel: |projects:projects|Hier liegt das Inhaltsverzeichnis der Projekte.| |projects:r8c|Namespace für alles was mit dem r8c zu tun hat.| |projects:r8c:r8c_forth|"Forth für den r8c" ist ein Projekt im Namespace "r8c".| |projects:roboter:|Namespace für alle Robotic-Projekte.| |projects:roboter:forth_in_balance|1. Robotic-Projekt| |projects:roboter:forth_spielt_solitär|2. Robotic-Projekt| |projects:roboter:lego_forth|3. Robotic-Projekt| |projects:pic:|Namespace für PIC-Projekte.| |projects:pic:ag-pic|Eine Arbeitsgruppe die sich mit dem PIC von Microchip beschäftigt| Oder als Graph: digraph WikiHierarchy { node [style=rounded, fontsize=13]; edge [fontsize=11]; P [label=projects, shape=box, pin=true]; R8C [label=R8C, shape=box, pin=true]; ROB [label=Roboter, shape=box, pin=true]; PIC [label=pic, shape=box, pin=true]; P -> R8C; P -> ROB; P -> PIC; ROB -> forth_in_balance; ROB -> forth_spielt_solitaer; ROB -> lego_forth; PIC -> ag_pic; R8C -> r8c_forth; } ---- Habe das Info angefügt, weil ich selbst die Struktur erstmal falsch verstanden hatte. Aber wenn man sich das so ansieht, eigentlich klar, oder? Es lohnt sich halt etwas zu planen, bevor man was wohin hängt ;-)