2 4 4 13 0 0 0

Die durch den Linkaufbau automatisch generierte Linkabbildung

Das ist die Abbildung der Datei directory.htx, die durch PHP-Code geschrieben wird und im nav-Element inkludiert wird.

Ok, optisch aufbereitet ist das nicht. Die Schichten haben keine Einzüge erhalten. Für die Funktionalität spielt es keine Rolle. Einzüge in den Code zu integrieren, würde sogar massiv die Linkanzeige deformieren. Aber ich habe ja eine Zeilennummerierung.

Ob hier etwas zu erklären ist, weiß ich nicht. Etwas Kenntnis über den Aufbau von <ul>-Listen setze ich mal voraus. Aufmerksam möchte ich auf den Query-string machen. Dort wird im Anhang ogr=1 oder ogr=2 der Zusammenhang zur Ebene (level1 || level2) deutlich. Handelt es sich nun um einen Ordner oder einen Unterordner. Das a-tag beinhaltet nur die Klasse 'current dir', hat aber kein href zur Formatierung mit den Dreiecken ▼ und ►.

01
<li><a tabindex='1' class='current dir'>HTML</a>

#nav > li > a:not([href]):not([class="current page"]):before { 
   float:right; 
   content:"\25be";  /* Pfeil runter */
   padding-left:0; 
}

Hat das Listenelement <li> und das a-tag die Klasse 'current page' und im url og='1', wird auf eine Datei verwiesen, die ihren Link direkt im ersten Level hat.

03
04
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 01) ?  "href=?k=1&s=1&ogr=1&fnr=01 " "" ?>
  class='<?php echo ($dirL != || $fz !=01 )?"current":"done";?> page'>allgemeines</a></li>

Hat das Listenelement <li> und das a-tag die Klasse 'current page' und im url og='2', wird auf eine Datei verwiesen, die ihren Link im Level2 hat, also einem Unterodner.

12
13
14
15
16
<li><a tabindex='1' class='current dir'>Elementares</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 11) ? 
  
"href=?k=1&s=4&ogr=2&fnr=11 " "" ?>
  class='<?php echo ($dirL != || $fz !=11 )?"current":"done";?> page'>HTML5 Elemente</a></li>
29
</ul></li>

In 5: ist <ul class='level2'> definiert, womit das Listenelement in 4: als Zusatz ► erhält. Es weist auf weitere Verweise in seinem Elementenraum hin. Nun noch die Elementeigenschaft:


#nav ul a:not([href]):not([class="current page"]):before { 
   float:right;  
   content:"\25b8";  /* Pfeil rechts */
   padding-left:3px; 
}

Ich muss schon sagen, dass das eine ganz schön abgefahrene Kiste ist. Ich verstehe wie es funktioniert, da ich es ja sehen kann, aber ach du meine Jüte: Wie kommt man auf sowas?
Hier die ganze directory.htx Datei:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<ul id='nav'>
<li><a tabindex='1' class='current dir'>HTML</a>
<ul class='level1'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 01) ? 
  
"href=?k=1&s=1&ogr=1&fnr=01 " "" ?>
  class='<?php echo ($dirL != || $fz !=01 )?"current":"done";?> page'>allgemeines</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 02) ? 
  
"href=?k=1&s=2&ogr=1&fnr=02 " "" ?>
  class='<?php echo ($dirL != || $fz !=02 )?"current":"done";?> page'>CMS</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 03) ? 
  
"href=?k=1&s=3&ogr=1&fnr=03 " "" ?>
  class='<?php echo ($dirL != || $fz !=03 )?"current":"done";?> page'>Guter Stil</a></li>
<li><a tabindex='1' class='current dir'>Elementares</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 11) ? 
  
"href=?k=1&s=4&ogr=2&fnr=11 " "" ?>
  class='<?php echo ($dirL != || $fz !=11 )?"current":"done";?> page'>HTML5 Elemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 12) ? 
  
"href=?k=1&s=5&ogr=2&fnr=12 " "" ?>
  class='<?php echo ($dirL != || $fz !=12 )?"current":"done";?> page'>HTML Elemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 13) ? 
  
"href=?k=1&s=6&ogr=2&fnr=13 " "" ?>
  class='<?php echo ($dirL != || $fz !=13 )?"current":"done";?> page'>ProjektKonventionen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 14) ? 
  
"href=?k=1&s=7&ogr=2&fnr=14 " "" ?>
  class='<?php echo ($dirL != || $fz !=14 )?"current":"done";?> page'>Farbbezeichnungen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 15) ? 
  
"href=?k=1&s=8&ogr=2&fnr=15 " "" ?>
  class='<?php echo ($dirL != || $fz !=15 )?"current":"done";?> page'>Übergroße Inhalte</a></li>
</ul></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 21) ? 
  
"href=?k=1&s=9&ogr=1&fnr=21 " "" ?>
  class='<?php echo ($dirL != || $fz !=21 )?"current":"done";?> page'>iFrame</a></li>
<li><a tabindex='1' class='current dir'>Textgestaltung</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 31) ? 
  
"href=?k=1&s=10&ogr=2&fnr=31 " "" ?>
  class='<?php echo ($dirL != || $fz !=31 )?"current":"done";?> page'>Beschreibungslisten</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 33) ? 
  
"href=?k=1&s=11&ogr=2&fnr=33 " "" ?>
  class='<?php echo ($dirL != || $fz !=33 )?"current":"done";?> page'>Listendarstellung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 34) ? 
  
"href=?k=1&s=12&ogr=2&fnr=34 " "" ?>
  class='<?php echo ($dirL != || $fz !=34 )?"current":"done";?> page'>Verweise</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Hintergründe</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 41) ? 
  
"href=?k=1&s=13&ogr=2&fnr=41 " "" ?>
  class='<?php echo ($dirL != || $fz !=41 )?"current":"done";?> page'>Hintergrundbilder</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 42) ? 
  
"href=?k=1&s=14&ogr=2&fnr=42 " "" ?>
  class='<?php echo ($dirL != || $fz !=42 )?"current":"done";?> page'>Hintergrundbild bewegen T1</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 43) ? 
  
"href=?k=1&s=15&ogr=2&fnr=43 " "" ?>
  class='<?php echo ($dirL != || $fz !=43 )?"current":"done";?> page'>Hintergrundbild bewegen T2</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Canvas</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 51) ? 
  
"href=?k=1&s=16&ogr=2&fnr=51 " "" ?>
  class='<?php echo ($dirL != || $fz !=51 )?"current":"done";?> page'>Erklärung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 52) ? 
  
"href=?k=1&s=17&ogr=2&fnr=52 " "" ?>
  class='<?php echo ($dirL != || $fz !=52 )?"current":"done";?> page'>Kurvendarstellung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 53) ? 
  
"href=?k=1&s=18&ogr=2&fnr=53 " "" ?>
  class='<?php echo ($dirL != || $fz !=53 )?"current":"done";?> page'>bezierCurveTo</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 54) ? 
  
"href=?k=1&s=19&ogr=2&fnr=54 " "" ?>
  class='<?php echo ($dirL != || $fz !=54 )?"current":"done";?> page'>Kerzenflamme</a></li>
</ul></li>
</ul></li>
<li><a tabindex='1' class='current dir'>CSS</a>
<ul class='level1'>
<li><a tabindex='1' class='current dir'>Grundlagen</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 11) ? 
  
"href=?k=2&s=1&ogr=2&fnr=11 " "" ?>
  class='<?php echo ($dirL != || $fz !=11 )?"current":"done";?> page'>Formatierungen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 12) ? 
  
"href=?k=2&s=2&ogr=2&fnr=12 " "" ?>
  class='<?php echo ($dirL != || $fz !=12 )?"current":"done";?> page'>Boxmodell</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Eigenschaften</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 21) ? 
  
"href=?k=2&s=3&ogr=2&fnr=21 " "" ?>
  class='<?php echo ($dirL != || $fz !=21 )?"current":"done";?> page'>Textgestaltung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 23) ? 
  
"href=?k=2&s=4&ogr=2&fnr=23 " "" ?>
  class='<?php echo ($dirL != || $fz !=23 )?"current":"done";?> page'>Rahmengestaltung</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Anzeige und Positionierung</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 31) ? 
  
"href=?k=2&s=5&ogr=2&fnr=31 " "" ?>
  class='<?php echo ($dirL != || $fz !=31 )?"current":"done";?> page'>Zeileneinzug</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 32) ? 
  
"href=?k=2&s=6&ogr=2&fnr=32 " "" ?>
  class='<?php echo ($dirL != || $fz !=32 )?"current":"done";?> page'>Silbentrennung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 33) ? 
  
"href=?k=2&s=7&ogr=2&fnr=33 " "" ?>
  class='<?php echo ($dirL != || $fz !=33 )?"current":"done";?> page'>Kolumnen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 34) ? 
  
"href=?k=2&s=8&ogr=2&fnr=34 " "" ?>
  class='<?php echo ($dirL != || $fz !=34 )?"current":"done";?> page'>Anzeige</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 35) ? 
  
"href=?k=2&s=9&ogr=2&fnr=35 " "" ?>
  class='<?php echo ($dirL != || $fz !=35 )?"current":"done";?> page'>Filter</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 36) ? 
  
"href=?k=2&s=10&ogr=2&fnr=36 " "" ?>
  class='<?php echo ($dirL != || $fz !=36 )?"current":"done";?> page'>Transformationen</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Selektoren</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 51) ? 
  
"href=?k=2&s=11&ogr=2&fnr=51 " "" ?>
  class='<?php echo ($dirL != || $fz !=51 )?"current":"done";?> page'>Selektoren</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 52) ? 
  
"href=?k=2&s=12&ogr=2&fnr=52 " "" ?>
  class='<?php echo ($dirL != || $fz !=52 )?"current":"done";?> page'>Kombinatoren</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 53) ? 
  
"href=?k=2&s=13&ogr=2&fnr=53 " "" ?>
  class='<?php echo ($dirL != || $fz !=53 )?"current":"done";?> page'>Pseudoelemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 54) ? 
  
"href=?k=2&s=14&ogr=2&fnr=54 " "" ?>
  class='<?php echo ($dirL != || $fz !=54 )?"current":"done";?> page'>Pseudoklassen</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Anwendung und Praxis</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 71) ? 
  
"href=?k=2&s=15&ogr=2&fnr=71 " "" ?>
  class='<?php echo ($dirL != || $fz !=71 )?"current":"done";?> page'>Positionierung mit CSS</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 72) ? 
  
"href=?k=2&s=16&ogr=2&fnr=72 " "" ?>
  class='<?php echo ($dirL != || $fz !=72 )?"current":"done";?> page'>Initialen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 73) ? 
  
"href=?k=2&s=17&ogr=2&fnr=73 " "" ?>
  class='<?php echo ($dirL != || $fz !=73 )?"current":"done";?> page'>Bilderbuch</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 74) ? 
  
"href=?k=2&s=18&ogr=2&fnr=74 " "" ?>
  class='<?php echo ($dirL != || $fz !=74 )?"current":"done";?> page'>Farbverläufe</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 75) ? 
  
"href=?k=2&s=19&ogr=2&fnr=75 " "" ?>
  class='<?php echo ($dirL != || $fz !=75 )?"current":"done";?> page'>Animationen</a></li>
</ul></li>
</ul></li>
<li><a tabindex='1' class='current dir'>JavaScript</a>
<ul class='level1'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 01) ? 
  
"href=?k=3&s=1&ogr=1&fnr=01 " "" ?>
  class='<?php echo ($dirL != || $fz !=01 )?"current":"done";?> page'>Vorwort</a></li>
<li><a tabindex='1' class='current dir'>Grundlagen</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 11) ? 
  
"href=?k=3&s=2&ogr=2&fnr=11 " "" ?>
  class='<?php echo ($dirL != || $fz !=11 )?"current":"done";?> page'>Arrays und Iterationen</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Betrachtungen</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 21) ? 
  
"href=?k=3&s=3&ogr=2&fnr=21 " "" ?>
  class='<?php echo ($dirL != || $fz !=21 )?"current":"done";?> page'>Query-String</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 22) ? 
  
"href=?k=3&s=4&ogr=2&fnr=22 " "" ?>
  class='<?php echo ($dirL != || $fz !=22 )?"current":"done";?> page'>style vs setAttribute</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 23) ? 
  
"href=?k=3&s=5&ogr=2&fnr=23 " "" ?>
  class='<?php echo ($dirL != || $fz !=23 )?"current":"done";?> page'>Style-Notation</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 24) ? 
  
"href=?k=3&s=6&ogr=2&fnr=24 " "" ?>
  class='<?php echo ($dirL != || $fz !=24 )?"current":"done";?> page'>Event-Handler</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 25) ? 
  
"href=?k=3&s=7&ogr=2&fnr=25 " "" ?>
  class='<?php echo ($dirL != || $fz !=25 )?"current":"done";?> page'>Ajax</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Praxis</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 41) ? 
  
"href=?k=3&s=8&ogr=2&fnr=41 " "" ?>
  class='<?php echo ($dirL != || $fz !=41 )?"current":"done";?> page'>Funktionsrückgabe</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 43) ? 
  
"href=?k=3&s=9&ogr=2&fnr=43 " "" ?>
  class='<?php echo ($dirL != || $fz !=43 )?"current":"done";?> page'>Timeout und Intervall</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 44) ? 
  
"href=?k=3&s=10&ogr=2&fnr=44 " "" ?>
  class='<?php echo ($dirL != || $fz !=44 )?"current":"done";?> page'>requestAnimationFrame</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Spielereien</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 61) ? 
  
"href=?k=3&s=11&ogr=2&fnr=61 " "" ?>
  class='<?php echo ($dirL != || $fz !=61 )?"current":"done";?> page'>Mausposition</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 62) ? 
  
"href=?k=3&s=12&ogr=2&fnr=62 " "" ?>
  class='<?php echo ($dirL != || $fz !=62 )?"current":"done";?> page'>Farbiges Licht T1</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 63) ? 
  
"href=?k=3&s=13&ogr=2&fnr=63 " "" ?>
  class='<?php echo ($dirL != || $fz !=63 )?"current":"done";?> page'>Farbiges Licht T2</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 64) ? 
  
"href=?k=3&s=14&ogr=2&fnr=64 " "" ?>
  class='<?php echo ($dirL != || $fz !=64 )?"current":"done";?> page'>Farbspielerei</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 65) ? 
  
"href=?k=3&s=15&ogr=2&fnr=65 " "" ?>
  class='<?php echo ($dirL != || $fz !=65 )?"current":"done";?> page'>Laufzeitberechnung</a></li>
</ul></li>
</ul></li>
<li><a tabindex='1' class='current dir'>PHP</a>
<ul class='level1'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 01) ? 
  
"href=?k=4&s=1&ogr=1&fnr=01 " "" ?>
  class='<?php echo ($dirL != || $fz !=01 )?"current":"done";?> page'>vorweg</a></li>
<li><a tabindex='1' class='current dir'>Auto-Verweise</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 11) ? 
  
"href=?k=4&s=2&ogr=2&fnr=11 " "" ?>
  class='<?php echo ($dirL != || $fz !=11 )?"current":"done";?> page'>Struktur auslesen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 12) ? 
  
"href=?k=4&s=3&ogr=2&fnr=12 " "" ?>
  class='<?php echo ($dirL != || $fz !=12 )?"current":"done";?> page'>Linkbildung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 13) ? 
  
"href=?k=4&s=4&ogr=2&fnr=13 " "" ?>
  class='<?php echo ($dirL != || $fz !=13 )?"current":"done";?> page'>Darstellung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 14) ? 
  
"href=?k=4&s=5&ogr=2&fnr=14 " "" ?>
  class='<?php echo ($dirL != || $fz !=14 )?"current":"done";?> page'>Verzeichnisabbildung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 15) ? 
  
"href=?k=4&s=6&ogr=2&fnr=15 " "" ?>
  class='<?php echo ($dirL != || $fz !=15 )?"current":"done";?> page'>Bedingungen</a></li>
</ul></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 21) ? 
  
"href=?k=4&s=7&ogr=1&fnr=21 " "" ?>
  class='<?php echo ($dirL != || $fz !=21 )?"current":"done";?> page'>MetaDaten per PHP</a></li>
<li><a tabindex='1' class='current dir'>Bilder präsentieren</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 31) ? 
  
"href=?k=4&s=8&ogr=2&fnr=31 " "" ?>
  class='<?php echo ($dirL != || $fz !=31 )?"current":"done";?> page'>Viele Wege Teil1</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 32) ? 
  
"href=?k=4&s=9&ogr=2&fnr=32 " "" ?>
  class='<?php echo ($dirL != || $fz !=32 )?"current":"done";?> page'>Viele Wege Teil2</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 33) ? 
  
"href=?k=4&s=10&ogr=2&fnr=33 " "" ?>
  class='<?php echo ($dirL != || $fz !=33 )?"current":"done";?> page'>Viele Wege Teil3</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 34) ? 
  
"href=?k=4&s=11&ogr=2&fnr=34 " "" ?>
  class='<?php echo ($dirL != || $fz !=34 )?"current":"done";?> page'>EXIF-Daten auslesen</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Gesammeltes</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 41) ? 
  
"href=?k=4&s=12&ogr=2&fnr=41 " "" ?>
  class='<?php echo ($dirL != || $fz !=41 )?"current":"done";?> page'>Datumsausgabe März</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 42) ? 
  
"href=?k=4&s=13&ogr=2&fnr=42 " "" ?>
  class='<?php echo ($dirL != || $fz !=42 )?"current":"done";?> page'>PHP definiertes CSS</a></li>
</ul></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 61) ? 
  
"href=?k=4&s=14&ogr=1&fnr=61 " "" ?>
  class='<?php echo ($dirL != || $fz !=61 )?"current":"done";?> page'>Inhaltsverzeichnis</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 62) ? 
  
"href=?k=4&s=15&ogr=1&fnr=62 " "" ?>
  class='<?php echo ($dirL != || $fz !=62 )?"current":"done";?> page'>noch eine Navigation</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>SVG</a>
<ul class='level1'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 01) ? 
  
"href=?k=5&s=1&ogr=1&fnr=01 " "" ?>
  class='<?php echo ($dirL != || $fz !=01 )?"current":"done";?> page'>Allgemeines</a></li>
<li><a tabindex='1' class='current dir'>Elemente</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 21) ? 
  
"href=?k=5&s=2&ogr=2&fnr=21 " "" ?>
  class='<?php echo ($dirL != || $fz !=21 )?"current":"done";?> page'>Elementstruktur</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 22) ? 
  
"href=?k=5&s=3&ogr=2&fnr=22 " "" ?>
  class='<?php echo ($dirL != || $fz !=22 )?"current":"done";?> page'>ContainerElemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 23) ? 
  
"href=?k=5&s=4&ogr=2&fnr=23 " "" ?>
  class='<?php echo ($dirL != || $fz !=23 )?"current":"done";?> page'>Grundformen</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 24) ? 
  
"href=?k=5&s=5&ogr=2&fnr=24 " "" ?>
  class='<?php echo ($dirL != || $fz !=24 )?"current":"done";?> page'>GrafikElemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 26) ? 
  
"href=?k=5&s=6&ogr=2&fnr=26 " "" ?>
  class='<?php echo ($dirL != || $fz !=26 )?"current":"done";?> page'>Verlaufselemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 27) ? 
  
"href=?k=5&s=7&ogr=2&fnr=27 " "" ?>
  class='<?php echo ($dirL != || $fz !=27 )?"current":"done";?> page'>Filterelemente</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 28) ? 
  
"href=?k=5&s=8&ogr=2&fnr=28 " "" ?>
  class='<?php echo ($dirL != || $fz !=28 )?"current":"done";?> page'>Musterelement</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Attribute</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 31) ? 
  
"href=?k=5&s=9&ogr=2&fnr=31 " "" ?>
  class='<?php echo ($dirL != || $fz !=31 )?"current":"done";?> page'>Übersicht</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 32) ? 
  
"href=?k=5&s=10&ogr=2&fnr=32 " "" ?>
  class='<?php echo ($dirL != || $fz !=32 )?"current":"done";?> page'>viewBox</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 33) ? 
  
"href=?k=5&s=11&ogr=2&fnr=33 " "" ?>
  class='<?php echo ($dirL != || $fz !=33 )?"current":"done";?> page'>Transformation</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 34) ? 
  
"href=?k=5&s=12&ogr=2&fnr=34 " "" ?>
  class='<?php echo ($dirL != || $fz !=34 )?"current":"done";?> page'>Strich und Füllung</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Effekte</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 41) ? 
  
"href=?k=5&s=13&ogr=2&fnr=41 " "" ?>
  class='<?php echo ($dirL != || $fz !=41 )?"current":"done";?> page'>Definition</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 43) ? 
  
"href=?k=5&s=14&ogr=2&fnr=43 " "" ?>
  class='<?php echo ($dirL != || $fz !=43 )?"current":"done";?> page'>Beschneidungspfad Maskierung</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 44) ? 
  
"href=?k=5&s=15&ogr=2&fnr=44 " "" ?>
  class='<?php echo ($dirL != || $fz !=44 )?"current":"done";?> page'>SpecularLighting</a></li>
</ul></li>
<li><a tabindex='1' class='current dir'>Praktische Spielereien</a>
<ul class='level2'>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 51) ? 
  
"href=?k=5&s=16&ogr=2&fnr=51 " "" ?>
  class='<?php echo ($dirL != || $fz !=51 )?"current":"done";?> page'>Animation mit JavaScript</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 52) ? 
  
"href=?k=5&s=17&ogr=2&fnr=52 " "" ?>
  class='<?php echo ($dirL != || $fz !=52 )?"current":"done";?> page'>animateMotion</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 53) ? 
  
"href=?k=5&s=18&ogr=2&fnr=53 " "" ?>
  class='<?php echo ($dirL != || $fz !=53 )?"current":"done";?> page'>Analoguhr Praxis</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 54) ? 
  
"href=?k=5&s=19&ogr=2&fnr=54 " "" ?>
  class='<?php echo ($dirL != || $fz !=54 )?"current":"done";?> page'>LCD Ziffern</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 55) ? 
  
"href=?k=5&s=20&ogr=2&fnr=55 " "" ?>
  class='<?php echo ($dirL != || $fz !=55 )?"current":"done";?> page'>animateMotion T2</a></li>
<li><a tabindex='1' <?php echo ($dirL != || $filenrL != 56) ? 
  
"href=?k=5&s=21&ogr=2&fnr=56 " "" ?>
  class='<?php echo ($dirL != || $fz !=56 )?"current":"done";?> page'>Kreisberechnungen und Rotation</a></li>
</ul></li>
</ul></li>
<li><a tabindex='1' href='?k=6&s=0&ogr=0' class='current dir'>Hinweis</a></li>

</ul>

Wenn ich jedesmal, wenn ein neues Dokument zugefügt, wieder entfernt oder umbenannt wird, dies hier von Hand texten müsste, hätte ich mir wohl eine andere Beschäftigung gesucht.


Dokument geändert am: 05. Aug. 2016 20:06