beautiful_url 1.4.95

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of beautiful_url might be problematic. Click here for more details.

Files changed (35) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +47 -0
  3. data/beautiful_url.gemspec +59 -0
  4. data/bin/beautiful_url +9 -0
  5. data/doc/README.gen +45 -0
  6. data/lib/beautiful_url.rb +1 -0
  7. data/lib/beautiful_url/class/constants.rb +23 -0
  8. data/lib/beautiful_url/class/generate_tab_completion_for_bash_shell.rb +67 -0
  9. data/lib/beautiful_url/class/initialize.rb +149 -0
  10. data/lib/beautiful_url/class/misc.rb +473 -0
  11. data/lib/beautiful_url/class/reset.rb +50 -0
  12. data/lib/beautiful_url/class/run.rb +20 -0
  13. data/lib/beautiful_url/constants/base_constants.rb +221 -0
  14. data/lib/beautiful_url/constants/constants.rb +9 -0
  15. data/lib/beautiful_url/constants/encoding.rb +47 -0
  16. data/lib/beautiful_url/constants/misc.rb +14 -0
  17. data/lib/beautiful_url/constants/newline.rb +14 -0
  18. data/lib/beautiful_url/constants/tasks.rb +30 -0
  19. data/lib/beautiful_url/constants/time.rb +21 -0
  20. data/lib/beautiful_url/json_generator/json_generator.rb +85 -0
  21. data/lib/beautiful_url/requires/failsafe_require_of_beautiful_url.rb +9 -0
  22. data/lib/beautiful_url/requires/require_the_beautiful_url_project.rb +14 -0
  23. data/lib/beautiful_url/toplevel_methods/current_month.rb +32 -0
  24. data/lib/beautiful_url/toplevel_methods/local_menu.rb +1618 -0
  25. data/lib/beautiful_url/toplevel_methods/menu.rb +4657 -0
  26. data/lib/beautiful_url/toplevel_methods/misc.rb +18 -0
  27. data/lib/beautiful_url/toplevel_methods/moodle_menu.rb +135 -0
  28. data/lib/beautiful_url/toplevel_methods/return_location_of_the_menu_file.rb +27 -0
  29. data/lib/beautiful_url/toplevel_methods/roebe.rb +17 -0
  30. data/lib/beautiful_url/toplevel_methods/university_menu.rb +13926 -0
  31. data/lib/beautiful_url/version/version.rb +26 -0
  32. data/lib/beautiful_url/www/app.rb +168 -0
  33. data/test/testing_beautiful_url.rb +46 -0
  34. data/test/testing_the_base_constants.rb +26 -0
  35. metadata +100 -0
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'beautiful_url/requires/failsafe_require_of_beautiful_url.rb'
6
+ # =========================================================================== #
7
+ begin
8
+ require 'beautiful_url/requires/require_the_beautiful_url_project.rb'
9
+ rescue LoadError; end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'beautiful_url/requires/require_the_beautiful_url_project.rb'
6
+ # =========================================================================== #
7
+ require 'beautiful_url/constants/constants.rb'
8
+ require 'beautiful_url/version/version.rb'
9
+ require 'beautiful_url/json_generator/json_generator.rb'
10
+ require 'beautiful_url/toplevel_methods/local_menu.rb'
11
+ require 'beautiful_url/toplevel_methods/moodle_menu.rb'
12
+ require 'beautiful_url/toplevel_methods/return_location_of_the_menu_file.rb'
13
+ require 'beautiful_url/toplevel_methods/university_menu.rb'
14
+ require 'beautiful_url/class/initialize.rb'
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ module BeautifulUrl
6
+
7
+ require 'date'
8
+
9
+ # ========================================================================= #
10
+ # === BeautifulUrl.current_month?
11
+ #
12
+ # This will return e. g. "5".
13
+ # ========================================================================= #
14
+ def self.current_month?(
15
+ pad_with_zeroes = false
16
+ )
17
+ current_month = Date.today.month.to_s
18
+ case pad_with_zeroes
19
+ when :pad_with_zeroes
20
+ pad_with_zeroes = true
21
+ end
22
+ if pad_with_zeroes
23
+ current_month = current_month.rjust(2,'0')
24
+ end
25
+ return current_month
26
+ end
27
+
28
+ end
29
+
30
+ if __FILE__ == $PROGRAM_NAME
31
+ puts BeautifulUrl.current_month?
32
+ end
@@ -0,0 +1,1618 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'beautiful_url/toplevel_methods/local_menu.rb'
6
+ # =========================================================================== #
7
+ module BeautifulUrl
8
+
9
+ require 'beautiful_url/constants/base_constants.rb'
10
+
11
+ # ========================================================================= #
12
+ # === BeautifulUrl.local_menu
13
+ #
14
+ # This entry keeps local entries.
15
+ # ========================================================================= #
16
+ def self.local_menu(
17
+ i = :default
18
+ )
19
+ case i.to_s # case tag
20
+ # ======================================================================= #
21
+ # === rf audio
22
+ # ======================================================================= #
23
+ when 'audio',
24
+ 'aud',
25
+ 'au',
26
+ 'music','local_audio'
27
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/multimedia_paradise/lib/multimedia_paradise/www/audio.cgi"
28
+ # ======================================================================= #
29
+ # === rf taverne
30
+ # ======================================================================= #
31
+ when 'taverne',
32
+ 'local_taverne'
33
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/misc/taverne.cgi"
34
+ # ======================================================================= #
35
+ # === rf sarlem_monsters
36
+ # ======================================================================= #
37
+ when 'sarlem_monsters',
38
+ 'sarlemmonsters'
39
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/"\
40
+ "sarlem/monsters_found_in_sarlem.cgi"
41
+ # ======================================================================= #
42
+ # === rf sarlem
43
+ # ======================================================================= #
44
+ when 'sarlem','sar','sarl',
45
+ 'spielwelt',
46
+ 'local_die',
47
+ 'local_sarlem'
48
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/"\
49
+ "sarlem/sarlem.cgi"
50
+ # ======================================================================= #
51
+ # === rf part
52
+ # ======================================================================= #
53
+ when 'part',
54
+ 'participating'
55
+ "#{RUBY_SRC}studium/lib/studium/yaml/participating_in_these_courses.yml"
56
+ # ======================================================================= #
57
+ # === rf windows_cookbook
58
+ # ======================================================================= #
59
+ when /^windows(_|-| )?cookbook$/i
60
+ "#{RUBY_SRC}rbt/lib/rbt/yaml/windows_cookbook.yml"
61
+ # ======================================================================= #
62
+ # === rf taimap
63
+ # ======================================================================= #
64
+ when 'taimap'
65
+ RPG+'SARLEM/OSTREICH/TAI/TAI_MAPS/TAI_MAP.png'
66
+ # ======================================================================= #
67
+ # === rf contacts
68
+ # ======================================================================= #
69
+ when 'contacts',
70
+ 'cont',
71
+ 'contact',
72
+ 'con',
73
+ 'contactsyml',
74
+ 'contactsyaml'
75
+ MISC+'yaml/contacts.yml'
76
+ # ======================================================================= #
77
+ # === rf fotos
78
+ # ======================================================================= #
79
+ when 'fotos'
80
+ MISC+'fotogallerie.cgi'
81
+ # ======================================================================= #
82
+ # === rf local_dsa
83
+ # ======================================================================= #
84
+ when 'local_dsa',
85
+ 'dsa','ds','auge'
86
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/dsa/dsa.cgi"
87
+ # ======================================================================= #
88
+ # === dsa_computerspiele
89
+ # ======================================================================= #
90
+ when 'dsa_computerspiele','dsa_games','dsacomputerspiel',
91
+ 'dsacomputergame','dsagame','dsagames','dgame',
92
+ 'dsa_game',
93
+ 'local_dsa_computergame',
94
+ 'dsacomputerspiele',
95
+ /^dsa(_|-)?computerspiele$/i,
96
+ /^local(_|-)?dsa(_|-)?computerspiele$/i
97
+ "#{GAMES}dsa/dsa_computerspiele.cgi"
98
+ # ======================================================================= #
99
+ # === rf dsa_talente
100
+ # ======================================================================= #
101
+ when 'dsa_talente'
102
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/dsa/dsa_talente.cgi"
103
+ # ======================================================================= #
104
+ # === rf dnd
105
+ #
106
+ # A typical example for this entry-point would be the Symbol :local_dnd.
107
+ # ======================================================================= #
108
+ when 'dnd',
109
+ 'local_dnd'
110
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/dnd/dnd.cgi"
111
+ # ======================================================================= #
112
+ # === rf shadowrun
113
+ # ======================================================================= #
114
+ when 'shadowrun',
115
+ 'local_shadowrun',
116
+ 'sr'
117
+ "#{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/shadowrun/shadowrun.cgi"
118
+ # ======================================================================= #
119
+ # === rf hardware
120
+ # ======================================================================= #
121
+ when /^hardware$/i,
122
+ 'hware','kauf','h','hw','hward',
123
+ 'local_hardware'
124
+ "#{HARDWARE}my_hardware.cgi"
125
+ # ======================================================================= #
126
+ # === rf npcs_found_in_sarlem
127
+ # ======================================================================= #
128
+ when 'npcs_found_in_sarlem'
129
+ #{DATA}PROGRAMMING_LANGUAGES/RUBY/src/rpg_paradise/lib/rpg_paradise/sarlem/npcs_found_in_sarlem.cgi"
130
+ # ======================================================================= #
131
+ # === rf GIS
132
+ # ======================================================================= #
133
+ when /^-?-?GIS$/i
134
+ DATA+'video/GIS.cgi'
135
+ # ======================================================================= #
136
+ # === rf allgames
137
+ # ======================================================================= #
138
+ when 'gamesyml',
139
+ 'allgames',
140
+ 'gamesdatabank',
141
+ 'available_games'
142
+ DATA+'games/yaml/all_games.yml'
143
+ # ======================================================================= #
144
+ # === rf local_git
145
+ # ======================================================================= #
146
+ when 'local_git',
147
+ 'git'
148
+ PC+'GIT/git.cgi'
149
+ # ======================================================================= #
150
+ # === rf how2do
151
+ # ======================================================================= #
152
+ when 'how2do',
153
+ 'how','how2','html','howto','howtodo',
154
+ 'howtod','how2do_tutorial','local_how_to_do'
155
+ PC+'HOW2DO/HOW2DO.cgi'
156
+ # ======================================================================= #
157
+ # === rf powershell
158
+ # ======================================================================= #
159
+ when 'powershell'
160
+ "#{PC}OS/MS/powershell.cgi"
161
+ # ======================================================================= #
162
+ # === rf diamenu
163
+ # ======================================================================= #
164
+ when 'diamenu',
165
+ 'diasimpleactions',
166
+ 'diameni',
167
+ 'diamen',
168
+ 'diamnu'
169
+ RUBY_DIA+'core/menu.rb'
170
+ # ======================================================================= #
171
+ # === rf ruby_viewer
172
+ # ======================================================================= #
173
+ when /^ruby(_|-| )?viewer$/i,
174
+ /^-?-?viewer$/i
175
+ "#{MY_DATA}viewer/ruby_viewer.cgi"
176
+ # ======================================================================= #
177
+ # === rf good_windows_games
178
+ # ======================================================================= #
179
+ when /^good(_|-| )?windows(_|-| )?games$/i,
180
+ /^windows(_|-| )?games$/i
181
+ "#{MY_DATA}games/yaml/good_windows_games.yml"
182
+ # ======================================================================= #
183
+ # === rf good_dos_games
184
+ # ======================================================================= #
185
+ when /^good(_|-| )?dos(_|-| )?games$/i,
186
+ /^dos(_|-| )?games$/i
187
+ "#{MY_DATA}games/yaml/good_dos_games.yml"
188
+ # ======================================================================= #
189
+ # === rf appointment
190
+ # ======================================================================= #
191
+ when 'appointment','kalender','dates','appoint',
192
+ 'appointments','termine','termin','date',
193
+ 'app','local_calendar'
194
+ MISC+'YAML/appointment_dates.yml'
195
+ # ======================================================================= #
196
+ # === rf hardware_assembly
197
+ # ======================================================================= #
198
+ when /^hardware(_|-| )?assembly$/i,
199
+ /^local(_|-| )?hardware(_|-| )?assembly$/i
200
+ "#{HARDWARE}hardware_assembly.cgi"
201
+ # ======================================================================= #
202
+ # === rf batterien
203
+ # ======================================================================= #
204
+ when /^batterien$/i
205
+ "#{HARDWARE}/BATTERIEN.cgi"
206
+ # ======================================================================= #
207
+ # === rf bios
208
+ # ======================================================================= #
209
+ when 'bios'
210
+ "#{MISC}bios.cgi"
211
+ # ======================================================================= #
212
+ # === rf links
213
+ # ======================================================================= #
214
+ when 'links','personal_links'
215
+ "#{MISC}links.cgi"
216
+ # ======================================================================= #
217
+ # === banken
218
+ # ======================================================================= #
219
+ when /^banken$/i
220
+ "#{DATA}economy/banken/banken.cgi"
221
+ # ======================================================================= #
222
+ # === local_play_this_video_file
223
+ # ======================================================================= #
224
+ when /^local(_|-| )?play(_|-| )?this(_|-| )?video(_|-| )?file$/i,
225
+ /^play(_|-| )?this(_|-| )?video(_|-| )?file$/i,
226
+ /^play(_|-| )?video$/i
227
+ "#{DATA}video/play_this_video_file.cgi"
228
+ # ======================================================================= #
229
+ # === local_nim
230
+ # ======================================================================= #
231
+ when 'local_nim',
232
+ 'nimrod','nim'
233
+ "#{PROGL}NIM/nim.cgi"
234
+ # ======================================================================= #
235
+ # === local_training
236
+ # ======================================================================= #
237
+ when /^local(_|-)?training$/i,
238
+ 'training',
239
+ 'train'
240
+ "#{DATA}body_language/training.cgi"
241
+ # ======================================================================= #
242
+ # === science
243
+ # ======================================================================= #
244
+ when 'sci','science',
245
+ 'local_science'
246
+ "#{SCI}science.cgi"
247
+ # ======================================================================= #
248
+ # === local_bak
249
+ # ======================================================================= #
250
+ when 'martial','martialarts','fight','martial_arts','kampfsport',
251
+ 'ight','mart'
252
+ DATA+'body_language/martial_arts.cgi'
253
+ # ======================================================================= #
254
+ # === local_bak
255
+ # ======================================================================= #
256
+ when 'local_bak',
257
+ 'lokal_bak',
258
+ 'localbak',
259
+ 'local_BAK',
260
+ 'bak',
261
+ 'BAK'
262
+ "#{GAMES}betrayal_at_krondor/betrayal_at_krondor.cgi"
263
+ # ======================================================================= #
264
+ # rf local_scanner
265
+ # ======================================================================= #
266
+ when 'local_scanner'
267
+ "#{HARDWARE}/scanner.cgi"
268
+ # ======================================================================= #
269
+ # === rf admin
270
+ # ======================================================================= #
271
+ when 'admin','adm','ad','info','system','sys',
272
+ 'local_admin'
273
+ "#{PC}ADMIN/ADMIN.cgi"
274
+ # ======================================================================= #
275
+ # === rf alone_in_the_dark
276
+ # ======================================================================= #
277
+ when /^alone(_|-| )?in(_|-| )?the(_|-| )?dark$/i
278
+ "#{MY_DATA}games/alone_in_the_dark/alone_in_the_dark.cgi"
279
+ # ======================================================================= #
280
+ # === rf led
281
+ # ======================================================================= #
282
+ when /^leds?$/i,
283
+ 'led',
284
+ 'local_led'
285
+ "#{PC}LEDS/LEDS.cgi"
286
+ # ======================================================================= #
287
+ # === kabel
288
+ # ======================================================================= #
289
+ when 'kabel',
290
+ /^local(_|-| )?kabel(_|-| )?und(_|-| )?adaptoren$/i
291
+ "#{HARDWARE}kabel_und_adaptoren.cgi"
292
+ # ======================================================================= #
293
+ # === rf local_USB
294
+ # ======================================================================= #
295
+ when /^local(_|-)?USB$/i,
296
+ 'usb'
297
+ PC+'usb/USB.cgi'
298
+ # ======================================================================= #
299
+ # === rf webobject_tutorial
300
+ # ======================================================================= #
301
+ when 'webfoundationcgi','webfoundation_cgi',
302
+ 'cyberweb_cgi',
303
+ 'CyberWeb',
304
+ 'local_cyberweb',
305
+ 'webobject_cgi',
306
+ 'cyberwebcgi','cyberweb_tutorial',
307
+ 'webobject_tutorial'
308
+ RSRC+'web_object/doc/WEBOBJECT_TUTORIAL.cgi'
309
+ # ======================================================================= #
310
+ # === rf wlan
311
+ # ======================================================================= #
312
+ when 'wlan','wan','tech',
313
+ 'local_wlan',
314
+ 'lokal_wlan'
315
+ LINUX+'WLAN/WLAN.cgi'
316
+ # ======================================================================= #
317
+ # === rf lokal_misc
318
+ # ======================================================================= #
319
+ when 'si','sitemap','smap','map',
320
+ 'misc',
321
+ 'msic',
322
+ 'local_sitemap',
323
+ 'lokale_sitemap',
324
+ /^lokal(_|-)?misc$/i
325
+ "#{MISC}sitemap.cgi"
326
+ # ======================================================================= #
327
+ # === local_rpg
328
+ # ======================================================================= #
329
+ when 'local_rpg',
330
+ 'rpg'
331
+ "#{RPG}rpg.cgi"
332
+ # ======================================================================= #
333
+ # === sichtschirm
334
+ # ======================================================================= #
335
+ when 'sichtschirm',
336
+ 'dsa_sichtschirm'
337
+ RPG+'dsa/DSA_SICHTSCHIRM.cgi'
338
+ # ======================================================================= #
339
+ # === screenshots
340
+ # ======================================================================= #
341
+ when 'screenshot','screenshots','shots'
342
+ MISC+'screenshots.cgi'
343
+ # ======================================================================= #
344
+ # === video_collection
345
+ # ======================================================================= #
346
+ when 'videocollection','vcollection','vcol','favvid',
347
+ 'vidfav','filme','viddatabase','vidyaml','vidy','vidf',
348
+ 'tvchannels','vids','vidstore','vidcollection','videofav',
349
+ 'video_sammlung','videoyaml','vidcoll','videocol',
350
+ 'video_collection','vidcol','videocollectionyaml',
351
+ 'vidcollectionyaml'
352
+ "#{RUBY_SRC}multimedia_paradise/lib/multimedia_paradise/yaml/video_collection.yml"
353
+ # ======================================================================= #
354
+ # === rf local_video
355
+ # ======================================================================= #
356
+ when 'local_video',
357
+ 'vid','v','video','videos','lvid','local_videos'
358
+ "#{VIDEO}video.cgi"
359
+ # ======================================================================= #
360
+ # === rf economy
361
+ # ======================================================================= #
362
+ when 'eco','economy','local_economy'
363
+ "#{DATA}economy/economy.cgi"
364
+ # ======================================================================= #
365
+ # === rf bankencgi
366
+ # ======================================================================= #
367
+ when 'bankencgi',
368
+ 'lokal_banken'
369
+ DATA+'economy/banken.cgi'
370
+ # ======================================================================= #
371
+ # === rf whores
372
+ # ======================================================================= #
373
+ when 'whores','whore'
374
+ SCI+'economy/CORPORATE_SLAVE_NATION.cgi'
375
+ # ======================================================================= #
376
+ # === rf rpg_misc
377
+ # ======================================================================= #
378
+ when 'rpg_misc'
379
+ RPG+'misc.cgi'
380
+ # ======================================================================= #
381
+ # === rf big_scream
382
+ # ======================================================================= #
383
+ when 'big_scream',
384
+ 'scream','bigscream','bs'
385
+ RPG+'big_scream/NEW_BIG_SCREAM.cgi'
386
+ # ======================================================================= #
387
+ # === rf sarlemnpc
388
+ # ======================================================================= #
389
+ when 'sarlemnpc','sarlem_npc','npc'
390
+ RPG+'sarlem/SARLEM_NPC.cgi'
391
+ # ======================================================================= #
392
+ # === rf tai
393
+ # ======================================================================= #
394
+ when 'tai'
395
+ RPG+'sarlem/ostreich/TAI/TAI.cgi'
396
+ # ======================================================================= #
397
+ # === rf browser.yml
398
+ # ======================================================================= #
399
+ when 'browser.yml','browser'
400
+ "#{PC}yaml/browser.yml"
401
+ # ======================================================================= #
402
+ # === rf viewer
403
+ # ======================================================================= #
404
+ when 'viewer'
405
+ "#{DATA}viewer/ruby_viewer.cgi"
406
+ # ======================================================================= #
407
+ # === local_games_page
408
+ # ======================================================================= #
409
+ when 'games','gam','game','local_games','localgames',
410
+ /^local(_|-)?games(_|-)?page$/i
411
+ "#{DATA}games/games.cgi"
412
+ # ======================================================================= #
413
+ # === motivation
414
+ # ======================================================================= #
415
+ when 'moti','mot','motivation'
416
+ MISC+'motivation.cgi'
417
+ # ======================================================================= #
418
+ # === alsa
419
+ # ======================================================================= #
420
+ when 'alsa'
421
+ AUDIO+'alsa.cgi'
422
+ # ======================================================================= #
423
+ # === mswin
424
+ # ======================================================================= #
425
+ when 'mswin'
426
+ RSRC+'GUI/GTK/MSWIN/ms_sys_control.rb'
427
+ # ======================================================================= #
428
+ # === passwords
429
+ # ======================================================================= #
430
+ when /^passwords?$/i
431
+ "#{BASE_DIR}studium/YAML/passwords.yml"
432
+ # ======================================================================= #
433
+ # === bl wine
434
+ # ======================================================================= #
435
+ when 'wine',
436
+ 'wine_project','win','winehq','inwe'
437
+ PC+'wine/wine.cgi'
438
+ # ======================================================================= #
439
+ # === bl dictionaries
440
+ # ======================================================================= #
441
+ when 'dic','dict1','dictionaries','dictionarycgi'
442
+ SCI+'dictionaries.cgi'
443
+ # ======================================================================= #
444
+ # === bl libreoffice
445
+ # ======================================================================= #
446
+ when 'libreoffice'
447
+ BASE_DIR+'DATA/PC/OS/LINUX/LIBREOFFICE/LIBREOFFICE.cgi'
448
+ # ======================================================================= #
449
+ # === bl r
450
+ # ======================================================================= #
451
+ when 'r',
452
+ 'statistics',
453
+ 'statistic',
454
+ 'r_language',
455
+ 'local_r'
456
+ PROGL+'R/R.cgi'
457
+ # ======================================================================= #
458
+ # === bl kontakt
459
+ # ======================================================================= #
460
+ when 'kontakt',
461
+ 'kontaktiere_mich'
462
+ MISC+'kontakt.cgi'
463
+ # ======================================================================= #
464
+ # === bl technische_chemie
465
+ # ======================================================================= #
466
+ when 'technische_chemie_lokal',
467
+ 'lokal_technische_chemie',
468
+ 'lokal_tu_studium',
469
+ 'tustud',
470
+ 'local_tuwien','tuwienstud',
471
+ 'tuwien_stud',
472
+ 'lokaltuwien',
473
+ 'lokal_tuwien',
474
+ 'tuwien_studium',
475
+ 'local_tu_wien',
476
+ /technische(_| )?chemie/i,
477
+ 'lokal_tu',
478
+ 'tu_studium'
479
+ STUDIUM+'TU_WIEN/TECHNISCHE_CHEMIE.cgi'
480
+ # ======================================================================= #
481
+ # === bl ruby_todo
482
+ # ======================================================================= #
483
+ when /^ruby(_|-)?todo$/i
484
+ "#{DATA}todo/ruby.md"
485
+ # ======================================================================= #
486
+ # === stud
487
+ # ======================================================================= #
488
+ when 'stud','studium','stuzd','lokal_studium',
489
+ 'local_stud','localstud',
490
+ /^local(_|-)?studium$/i
491
+ STUDIUM+'STUDIUM.cgi'
492
+ # ======================================================================= #
493
+ # === rf gesundheit
494
+ # ======================================================================= #
495
+ when 'gesundheit',
496
+ 'health','medizin','hier','lokal_gesundheit',
497
+ 'lokalgesundheit'
498
+ "#{DATA}gesundheit/gesundheit.cgi"
499
+ # ======================================================================= #
500
+ # === local_ghost_bsd
501
+ # ======================================================================= #
502
+ when /^local_ghost_bsd$/
503
+ "#{PC}OS/BSD/GhostBSD.cgi"
504
+ # ======================================================================= #
505
+ # === rf indi3
506
+ # ======================================================================= #
507
+ when 'indi3'
508
+ "#{RSRC}/studium/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml"
509
+ # ======================================================================= #
510
+ # === rf computer_hardware
511
+ # ======================================================================= #
512
+ when /^comput?er(_|-)?hardware$/i,
513
+ 'chardware','chware','chwardware',
514
+ 'hwardedata','hardwaredata','hardwareyaml',
515
+ 'computerhardwareyaml','computerhardwareyml','hardwareyml',
516
+ 'hardware2','hwareyaml','hwareyml','computerhware',
517
+ 'cware',
518
+ /^computer(_|-)?yaml$/
519
+ "#{LINUX_YAML}computer_hardware.yml"
520
+ # ======================================================================= #
521
+ # === rbttodo
522
+ # ======================================================================= #
523
+ when 'rbttodo','gobotodo','gtodo','gobo_todo','rubybuildtoolstodo',
524
+ 'bttodo','rbt_todo','goboscriptstodo','rbtt',
525
+ 'rbtodo','rbtotod','rbttod','rbtoto','rbttood',
526
+ 'rbttoo','rbrto',
527
+ 'rbttdo',
528
+ 'rbttodod'
529
+ "#{RSRC}rbt/doc/todo/TODO_FOR_RBT.md"
530
+ # ======================================================================= #
531
+ # === rf chemistry
532
+ # ======================================================================= #
533
+ when 'chemistry','chemie','chem','local_chemistry'
534
+ "#{SCI}chemistry/chemistry.cgi"
535
+ # ======================================================================= #
536
+ # === weisheiten
537
+ # ======================================================================= #
538
+ when 'weisheiten','weis','weise'
539
+ "#{MISC}weisheiten.cgi"
540
+ # ======================================================================= #
541
+ # === RAM
542
+ # ======================================================================= #
543
+ when /^RAM$/i,
544
+ /^local(_|-| )?ram$/i
545
+ "#{PC}RAM/RAM.cgi"
546
+ # ======================================================================= #
547
+ # === videochannels
548
+ # ======================================================================= #
549
+ when 'videochannels','channel','channels'
550
+ VIDEO+'YAML/tv_channels.yml'
551
+ # ======================================================================= #
552
+ # === distribution
553
+ # ======================================================================= #
554
+ when 'dist','distributions','distributionen','linux_distributionen',
555
+ 'distr','lindist','linux_distributions','linuxdist',
556
+ 'distribution'
557
+ "#{LINUX}DISTRIBUTIONEN/LINUX_DISTRIBUTIONS.cgi"
558
+ # ======================================================================= #
559
+ # === hivelinux_distribution
560
+ # ======================================================================= #
561
+ when 'apt','aptenix','apten','hive','hiveos',
562
+ 'hivel','hivelin','distribution_hivelinux',
563
+ 'hivelinux_distribution','hivelinux'
564
+ "#{LINUX}DISTRIBUTIONEN/HIVEOS/HIVEOS.cgi"
565
+ # ======================================================================= #
566
+ # === rf palemoon
567
+ # ======================================================================= #
568
+ when 'palemoon', :default
569
+ "#{LHOST}PC/palemoon/palemoon.cgi"
570
+ # ======================================================================= #
571
+ # === yeast
572
+ # ======================================================================= #
573
+ when 'yeast'
574
+ "#{LHOST}science/yeast.cgi"
575
+ # ======================================================================= #
576
+ # === stdbiology
577
+ # ======================================================================= #
578
+ when 'stdbiology'
579
+ RSRC+'STD/std_biology.rb'
580
+ # ======================================================================= #
581
+ # === rf path
582
+ # ======================================================================= #
583
+ when 'path',
584
+ 'pathvar'
585
+ "#{RUBY_SRC}rcfiles/lib/rcfiles/yaml/path_variable.yml"
586
+ # ======================================================================= #
587
+ # === curricula
588
+ # ======================================================================= #
589
+ when /^curricula$/i
590
+ "http://localhost/DATA/PROGRAMMING_LANGUAGES/RUBY/src/studium/lib/studium/www/curricula_displayer.cgi"
591
+ # ======================================================================= #
592
+ # === indi2
593
+ # ======================================================================= #
594
+ when /^indi2$/i
595
+ "#{RUBY_SRC}studium/lib/studium/yaml/curricula/"\
596
+ "bachelor_bioinformatik_und_molekulare_biotechnologie_unter_berücksichtigung_medizinisch_immunologischer_aspekte.yml"
597
+ # ======================================================================= #
598
+ # === rf lecture_information
599
+ # ======================================================================= #
600
+ when /^lecture_?information$/,
601
+ /^file_?lectures\??/,
602
+ /^file_?information\??/,
603
+ 'file_lecture',
604
+ 'lecture_f',
605
+ 'file_l',
606
+ 'lecturei'
607
+ BASE_DIR+'DATA/PROGRAMMING_LANGUAGES/RUBY/src/studium/lib/studium/yaml/lecture_information.yml'
608
+ # ======================================================================= #
609
+ # === rf bachelor_vektor
610
+ # ======================================================================= #
611
+ when /^bachelor(_|-)?vektor$/i
612
+ BASE_DIR+'DATA/PROGRAMMING_LANGUAGES/RUBY/src/studium/lib/studium/yaml/curricula/'\
613
+ 'bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml'
614
+ # ======================================================================= #
615
+ # === rf project
616
+ # ======================================================================= #
617
+ when 'projects','project','project_page','projects_page',
618
+ 'projekte','projekt'
619
+ MISC+'projects.cgi'
620
+ # ======================================================================= #
621
+ # === rf individuelles_studium
622
+ # ======================================================================= #
623
+ when /^individuelles(_|-)?studium$/i,
624
+ 'indi',
625
+ 'individuell'
626
+ STUDIUM+'INDIVIDUELLE_STUDIEN/INDIVIDUELLE_STUDIEN.cgi'
627
+ # ======================================================================= #
628
+ # === rf Auflagen
629
+ # ======================================================================= #
630
+ when /Auflagen/i,
631
+ /anrechnungsmöglichkeiten_?uni_?wien/
632
+ STUDIUM+'UNI_WIEN/STUDIENPLAN_UND_CURRICULA//MASTER/'\
633
+ 'MAG_Molekulare_Mikrobiologie_-_mikrobielle_Oekologie_und_Immunbiologie_Stand_2018.pdf'
634
+ # ======================================================================= #
635
+ # === rf bachelorvektor
636
+ # ======================================================================= #
637
+ when /^bachelorvektor$/i
638
+ '/root/Studium/html/Bachelorcurriculum_Vector-based_strategies_in_Life_Sciences,_Molecular_Medicine_and_Biotechnology.html'
639
+ # ======================================================================= #
640
+ # === rf firefox
641
+ # ======================================================================= #
642
+ when 'firefox','ff','plugins','local_firefox',
643
+ 'fireox'
644
+ LHOST+'PC/FIREFOX/FIREFOX.cgi'
645
+ # ======================================================================= #
646
+ # === rf periodentabelle
647
+ # ======================================================================= #
648
+ when 'periodensystem','perioden','per','periodic_table',
649
+ 'periodic_elements',
650
+ /^periodentabelle$/
651
+ IMG+'SCIENCE/PERIODIC_ELEMENTS.png'
652
+ # ======================================================================= #
653
+ # === local_pulseaudio
654
+ # ======================================================================= #
655
+ when /^local(_|-)?pulseaudio$/i,
656
+ 'pulseaudio'
657
+ AUDIO+'pulseaudio.cgi'
658
+ # ======================================================================= #
659
+ # === graphviz
660
+ # ======================================================================= #
661
+ when /^local(_|-)?graphviz$/i,
662
+ 'graphviz'
663
+ "#{LINUX}graphviz/graphviz.cgi"
664
+ # ======================================================================= #
665
+ # === rf euphemismen
666
+ # ======================================================================= #
667
+ when 'euphemismen','werturteile','euphemismus','wurt',
668
+ 'euphemism','werturteil','euphemis'
669
+ SCI+'werturteile/werturteile.cgi'
670
+ # ======================================================================= #
671
+ # === rf local_haiku
672
+ # ======================================================================= #
673
+ when 'shopping',
674
+ /to(_|-)?shop/
675
+ DATA+'TODO/einkaufen.md'
676
+ # ======================================================================= #
677
+ # === rf local_haiku
678
+ # ======================================================================= #
679
+ when 'haiku','haik',
680
+ /^local(_|-)?haiku$/i
681
+ LHOST+'PC/HAIKU/HAIKU.cgi'
682
+ # ======================================================================= #
683
+ # === gewicht
684
+ # ======================================================================= #
685
+ when 'gewicht','food','ernaehrung',
686
+ 'lokal_ernährung','ern',
687
+ 'weight','lokal_gewicht',
688
+ 'gwicht',
689
+ 'local_ernährung','localernährung'
690
+ DATA+'body_language/ernährung.cgi'
691
+ # ======================================================================= #
692
+ # === local_html_colours
693
+ # ======================================================================= #
694
+ when /^local(_|-)?html(_|-)?colours/,'hcolours'
695
+ RSRC+'html_colours/lib/html_colours/yaml/html_colours.yml'
696
+ # ======================================================================= #
697
+ # === roebe_padrino
698
+ # ======================================================================= #
699
+ when /^roebe(_|-)?padrino$/i,
700
+ /^padrino$/i
701
+ 'http://localhost:10000/padrino'
702
+ # ======================================================================= #
703
+ # === router
704
+ # ======================================================================= #
705
+ when 'router',
706
+ 'buffalo'
707
+ 'http://192.168.0.1/'
708
+ # ======================================================================= #
709
+ # === roebe_documentation
710
+ # ======================================================================= #
711
+ when /^roebe(_|-)?documentation$/i,
712
+ /^sinatra$/i
713
+ 'http://localhost:10000/sinatra'
714
+ # ======================================================================= #
715
+ # === tiss_project
716
+ # ======================================================================= #
717
+ when /^tiss(_|-)?project$/i
718
+ 'http://localhost:5500/'
719
+ # ======================================================================= #
720
+ # === local_gtk
721
+ # ======================================================================= #
722
+ when /^local(_|-)?gtk$/i,
723
+ 'gtk','rgtk','ruby_gtk','gkt','ubygtk','gtkk','rubygnome',
724
+ 'gt','rubygtl','rubygkt','local_rubygtk','rubygtk',
725
+ 'gtk2'
726
+ 'http://localhost:10000/gtk'
727
+ # ======================================================================= #
728
+ # === ruby_docu
729
+ # ======================================================================= #
730
+ when /^ruby(_|-)?docu$/i
731
+ #"#{RUBY_SRC}roebe/lib/roebe/documentation/documentation.rb"
732
+ BASE_DIR+'DATA/PROGRAMMING_LANGUAGES/RUBY/src/roebe/lib/roebe/documentation/documentation.rb'
733
+ # ======================================================================= #
734
+ # === cd_aliases
735
+ # ======================================================================= #
736
+ when /cd(_|-)?aliases/
737
+ "#{RUBY_SRC}rcfiles/lib/rcfiles/yaml/cd_aliases.yml"
738
+ # ======================================================================= #
739
+ # === larry
740
+ # ======================================================================= #
741
+ when 'larry'
742
+ "#{DATA}games/leisure_suit_larry/larry.cgi"
743
+ # ======================================================================= #
744
+ # === web_images
745
+ # ======================================================================= #
746
+ when 'web_images','webimages','default','webimage','def',
747
+ 'htmlimages','webdefault','stdwebimages','stdimages'
748
+ "#{RSRC}cyberweb/lib/cyberweb/yaml/web_images.yml"
749
+ # ======================================================================= #
750
+ # === linux
751
+ # ======================================================================= #
752
+ when 'lin','linux','llin','busybox','linu','linb',
753
+ 'linx',/^local(_|-)?linux/
754
+ "#{LINUX}LINUX.cgi"
755
+ # ======================================================================= #
756
+ # === rhythmbox
757
+ # ======================================================================= #
758
+ when 'rhythmbox','rhythm'
759
+ "#{AUDIO}rhythmbox.cgi"
760
+ # ======================================================================= #
761
+ # === bsd
762
+ # ======================================================================= #
763
+ when 'bsd','pcbsd'
764
+ "#{PC}OS/BSD/BSD.cgi"
765
+ # ======================================================================= #
766
+ # === local_open_bsd
767
+ # ======================================================================= #
768
+ when /^local_open_bsd$/
769
+ "#{PC}OS/BSD/OpenBSD.cgi"
770
+ # ======================================================================= #
771
+ # === my_presentation
772
+ # ======================================================================= #
773
+ when /^my(_|-)?presentation$/
774
+ "#{STUDIUM}UNI_WIEN/301465_Current_Trends_in_Bioanalytical_Technologies/NATURE_s41592-018-0003-5.pdf"
775
+ # ======================================================================= #
776
+ # === montag
777
+ # ======================================================================= #
778
+ when 'montag','mowoch','mo','monday','monag'
779
+ STUDIUM+'YAML/SS2018/montag.yml'
780
+ # ======================================================================= #
781
+ # === dienstag
782
+ # ======================================================================= #
783
+ when 'dienstag','diwoch','di','die','tuesday'
784
+ STUDIUM+'YAML/SS2018/dienstag.yml'
785
+ # ======================================================================= #
786
+ # === mittwoch
787
+ # ======================================================================= #
788
+ when 'mittwoch','mwoch','mi','wednesday'
789
+ STUDIUM+'YAML/SS2018/mittwoch.yml'
790
+ # ======================================================================= #
791
+ # === donnerstag
792
+ # ======================================================================= #
793
+ when 'donnerstag','dwoch','do','thursday'
794
+ STUDIUM+'YAML/SS2018/donnerstag.yml'
795
+ # ======================================================================= #
796
+ # === freitag
797
+ # ======================================================================= #
798
+ when 'freitag','fwoch','fr','friday'
799
+ STUDIUM+'YAML/SS2018/freitag.yml'
800
+ # ======================================================================= #
801
+ # === samstag
802
+ # ======================================================================= #
803
+ when 'samstag','swoch','sa'
804
+ STUDIUM+'YAML/SS2018/samstag.yml'
805
+ # ======================================================================= #
806
+ # === rf exam1
807
+ # ======================================================================= #
808
+ when 'exam1',
809
+ 'exam2',
810
+ 'exam3',
811
+ 'exam4',
812
+ 'exam5',
813
+ 'exam6',
814
+ 'exam7',
815
+ 'exam8',
816
+ 'exam9',
817
+ 'exam10',
818
+ 'exam11',
819
+ 'exam12',
820
+ 'exam13',
821
+ 'exam14',
822
+ 'exam15',
823
+ 'exam16',
824
+ 'exam17',
825
+ 'exam18',
826
+ 'exam19',
827
+ 'exam20',
828
+ 'exam21',
829
+ 'exam22',
830
+ 'exam23',
831
+ 'exam24',
832
+ 'exam25',
833
+ 'exam26',
834
+ 'exam27',
835
+ 'exam28',
836
+ 'exam29',
837
+ 'exam30'
838
+ require 'studium/exams/open_exam_associated_url.rb'
839
+ Studium::Exams::OpenExamAssociatedUrl.new(i)
840
+ exit
841
+ when 'audio_dir','audiodir'
842
+ '/Depot/Audio'
843
+ when 'php','php_tutorial','phptutorial','phptut',
844
+ 'php_tut','local_php','localphp'
845
+ "#{PHP}TUTORIAL.php"
846
+ when 'cssfonts'
847
+ "#{CSS}FONTS.css"
848
+ when 'cssstd'
849
+ "#{CSS}STD.css"
850
+ when 'csscolours'
851
+ "#{CSS}COLOURS.css"
852
+ when 'conky'
853
+ "#{PC}OS/LINUX/CONKY/CONKY.cgi"
854
+ when 'terminals'
855
+ "#{LINUX}TERMINALS/TERMINALS.cgi"
856
+ when 'udev'
857
+ "#{LINUX}UDEV/UDEV.cgi"
858
+ when 'mrxvt','mrxvtrc'
859
+ "#{LINUX}MRXVT/mrxvtrc"
860
+ # ======================================================================= #
861
+ # === ftp
862
+ # ======================================================================= #
863
+ when 'ftp'
864
+ "#{LINUX}FTP/LINUX_FTP.cgi"
865
+ when 'dna_nucleotides'
866
+ "#{IMG}SCIENCE/CHEMISTRY/DNA_NUCLEOTIDES.jpg"
867
+ when 'law'
868
+ "#{SCIENCE}LAW/LAW.cgi"
869
+ # === rf curricula_displayer
870
+ when /curricula_?displayer/
871
+ PROGL+'RUBY/src/studium/lib/studium/www/curricula_displayer.cgi'
872
+ when 'local_virologie','viruses'
873
+ "#{SCIENCE}VIROLOGIE/VIROLOGIE.cgi"
874
+ when 'dirstructure','dstructure'
875
+ "#{LINUX}YAML/directory_structure.yml"
876
+ when 'linuxcmd','linc','commands','cmd','command','lincmd',
877
+ 'comands','linux_commands','linuxcommands','cmdlin',
878
+ 'linuxcm','cmds','com','linuxcommand','linux_cmd'
879
+ "#{LINUX}LINUX_COMMANDS.cgi"
880
+ when 'compilerb'
881
+ "#{RSRC}rbt/lib/rbt/compile.rb"
882
+ when 'elixir'
883
+ "#{PROGRAMMING_LANGUAGES}elixir/elixir.cgi"
884
+ when 'interesting'
885
+ BASE_DIR+'STUDIUM/YAML/WS2018/interesting_courses_for_WS2018.md'
886
+ when 'gobocompile','Compile.conf','Compile.'
887
+ '/Programs/Compile/Settings/Compile/Compile.conf'
888
+ when 'aliases','main_alias'
889
+ RUBY_SRC+'rcfiles/lib/rcfiles/yaml/aliases.yml'
890
+ when 'prog','program','paliases','program_aliases','programs_aliases'
891
+ RUBY_SRC+'rcfiles/lib/rcfiles/yaml/programs_aliases.yml'
892
+ when 'cd_knowledge'
893
+ PC+'CD/CD_KNOWLEDGE.cgi'
894
+ when 'linux_designing','linuxdesign','lind',
895
+ 'design','des','designing','desig','kdesign'
896
+ "#{LINUX}LINUX_DESIGNING.cgi"
897
+ when 'link','kernel','kern','local_kernel'
898
+ "#{LINUX}KERNEL/LINUX_KERNEL.cgi"
899
+ when 'xorg','x11','x','graphics','modularxorg',
900
+ 'linuxxorg','linxorg'
901
+ "#{LINUX}XORG/LINUX_XORG.cgi"
902
+ when 'kernel_yaml','kernelyaml'
903
+ "#{LINUX}YAML/kernel.yml"
904
+ when 'monitore','monitors','monitor','mon'
905
+ "#{LINUX}YAML/monitors.yml"
906
+ when 'systemd'
907
+ "#{LINUX}SYSTEMD/SYSTEMD.cgi"
908
+ when 'shells','shell','linux_shells','bash',
909
+ 'linuxshell'
910
+ "#{LINUX}SHELL/SHELLS.cgi"
911
+ when 'glycolysis'
912
+ IMG+'SCIENCE/CHEMISTRY/GLYCOLYSIS_DETAILED.png'
913
+ when 'net','netz','netwerk','networking','netzwork',
914
+ 'network','netzwerk','networ','linux_network'
915
+ "#{LINUX}NETWORKING/LINUX_NETWORKING.cgi"
916
+ when 'serving','serve','webserving','webserve','webserv',
917
+ 'websr','webs'
918
+ "#{PC}WEBSERVING/WEBSERVING.cgi"
919
+ when 'curriculum_vektoren'
920
+ BASE_DIR+'STUDIUM/UNI_WIEN/yaml/bachelor_individuelles_studium_biotechnologie_und_molekularsimulatorische_vektoren.yml'
921
+ when 'voice_recorders','voicerecorders'
922
+ PC+'VOICE_RECORDERS/VOICE_RECORDERS.cgi'
923
+ when 'apache','apa'
924
+ PC+'APACHE/APACHE.cgi'
925
+ when 'local_lighttpd','lighty','lighttpd'
926
+ PC+'LIGHTTPD/LIGHTTPD.cgi'
927
+ when 'citrat','citratzyklus'
928
+ IMG+'SCIENCE/CHEMISTRY/CITRATZYKLUS.png'
929
+ when 'rewrite_rules','rules','modrewrite','rewrite',
930
+ 'rewr','rwr'
931
+ PC+'APACHE/rewrite_rules.conf'
932
+ when 'kde','local_kde'
933
+ "#{LINUX}KDE/KDE.cgi"
934
+ when 'main_file','this_file','thisfile','std_text',
935
+ 'std_file','stdfile'
936
+ RSRC+'pipe/test/this_file'
937
+ when 'rpg_system'
938
+ RPG+'EGRM/PROS_AND_CONS_COLLECTED'
939
+ when 'main_avi','main_vid','mainvideo','main_video'
940
+ '/Depot/Video/236_TaxiDriver.avi'
941
+ when 'atomgewichte'
942
+ SCI+'YAML/atomgewichte.yml'
943
+ when 'windowsc','winc','windowscook','wincook'
944
+ COOKBOOK_DIR+'windows_cookbook.yml'
945
+ when 'chain','chainedprograms','cookbook2','cook2','cookchained',
946
+ 'cookchain','cchain','cchained'
947
+ PC+'COOKBOOKS/YAML/cookbook_chained_programs.yml'
948
+ when 'hosts'
949
+ '/etc/hosts'
950
+ when 'sysyaml'
951
+ "#{LINUX}YAML/system.yml"
952
+ when 'index'
953
+ DATA+'index.cgi'
954
+ when 'might_and_magic'
955
+ GAMES+'MIGHT_AND_MAGIC/MIGHT_AND_MAGIC.cgi'
956
+ when 'fallout1'
957
+ GAMES+'FALLOUT/FALLOUT1.cgi'
958
+ when 'fallout2'
959
+ GAMES+'FALLOUT/FALLOUT2.cgi'
960
+ when 'packages','lpackages','pack','pac','pa','debian','deb',
961
+ 'pkg'
962
+ "#{LINUX}LINUX_PACKAGES.cgi"
963
+ when 'distcc'
964
+ "#{LINUX}DISTCC/DISTCC.cgi"
965
+ when 'gnuplot','local_gnuplot','localgnuplot'
966
+ "#{LINUX}GNUPLOT/GNUPLOT.cgi"
967
+ when 'gobolinuxdist','gobolinuxd','gobolinuxdistribution',
968
+ 'gobod','goboweb','local_gobopage','realgobo',
969
+ 'gobolinux_distribution','gobodist','gobopage','gobolinux_dist',
970
+ 'gobolinuxpage','gobolin','gobo','gobodistribution',
971
+ 'local_gobolinux','gobolinux'
972
+ "#{LINUX}DISTRIBUTIONEN/GOBOLINUX/GOBOLINUX.cgi"
973
+ when 'io','iolang'
974
+ PROGL+'IO/IO.cgi'
975
+ when 'tcl','tclcgi'
976
+ PROGL+'TCL/TCL.cgi'
977
+ when 'mono','csharp'
978
+ PROGL+'MONO/MONO.cgi'
979
+ when 'glinux','glin','gobocgi','gcgi',
980
+ 'goboinstructions','instructions','hivelinuxscripts',
981
+ 'gobowebscripts','goboscriptscgi','goboscriptspage',
982
+ 'rbt','rbtcgi','defaultcgi','rubybuildtools',
983
+ 'maincgi','rbttutorial','rbtpage','rtbcgi','rbttut',
984
+ 'rbt_cgi','rbtdocu','rubycgi','rubyrbt',
985
+ 'local_rbt'
986
+ RSRC+'rbt/doc/www/RBT.cgi'
987
+ when 'rconfigure'
988
+ RUBY_BT+'rconfigure.rb'
989
+ when 'rsourcemaker','rsource'
990
+ RUBY_BT+'rsource_maker.rb'
991
+ when 'chained','rchained'
992
+ RUBY_BT+'chained.rb'
993
+ when 'installer'
994
+ RUBY_BT+'new_nstaller.rb'
995
+ when 'rnewconfigure'
996
+ RUBY_BT+'rconfigure.rb'
997
+ when 'sanitized_data','sanloader','sanitized_loader'
998
+ RUBY_BT+'sanitized_data.rb'
999
+ when 'radvancedsymlink','radvanced'
1000
+ RUBY_BT+'advanced_symlink.rb'
1001
+ when 'raccessor','accesor','accessor'
1002
+ RUBY_BT+'database_loader.rb'
1003
+ when 'installation','procedere','install','installation_procedere',
1004
+ 'iprocedere','iprocedure','installationprocedure','insta',
1005
+ 'installation_procedure'
1006
+ RUBY_RBT+'yaml/installation_procedere.yml'
1007
+ when 'usher'
1008
+ RSRC+'usher/lib/usher/usher.rb'
1009
+ when 'amm_witte'
1010
+ SCIENCE+'AMM/WITTE/AMM_WITTE_FRAGENKATALOG.rtf'
1011
+ when 'encoding','unicode','utf','utf8'
1012
+ PC+'ENCODINGS/ENCODINGS.cgi'
1013
+ when 'dichte'
1014
+ SCIENCE+'YAML/dichte.yml'
1015
+ when 'rcmake'
1016
+ RUBY_BT+'cmake_string.rb'
1017
+ when 'append_to_cookbook','appendtocookbook','append'
1018
+ RUBY_BT+'append_to_cookbook.rb'
1019
+ when 'haskell','hask'
1020
+ PROGL+'HASKELL/HASKELL.cgi'
1021
+ when 'rbtsharedcode','goboshared','gshared','rbtshared',
1022
+ 'sharedcode','rbt_base'
1023
+ RUBY_BT+'RBT_Base.rb'
1024
+ when 'rquery','querydatabase'
1025
+ RUBY_BT+'Query.rb'
1026
+ when 'core_ftp','stdftp','std_ftp'
1027
+ RSRC+'FTP/core_ftp.rb'
1028
+ when 'local_weechat','weechat'
1029
+ IRC+'WEECHAT/WEECHAT.cgi'
1030
+ when /irc_?yaml/,'irc','ircchannels','ircyml','ircchan',
1031
+ 'ircchannel','ircconnection','ircch'
1032
+ IRC+'YAML/channels_to_join.yml'
1033
+ when 'bot','irc_main','ircbot','local_irc'
1034
+ RSRC+'IRC/roebe_bot.rb'
1035
+ when 'botconfig'
1036
+ RSRC+'IRC/YAML/bot_config.yml'
1037
+ when 'mmedia'
1038
+ RSRC+'multimedia_paradise/lib/multimedia_paradise/multimedia_shared.rb'
1039
+ when 'multimedia_foundation','multimediafoundation',
1040
+ 'mcgi','local_multimedia','multimedia_paradise',
1041
+ 'multimediaparadise','multimedia_cgi'
1042
+ RSRC+'multimedia_paradise/lib/multimedia_paradise/documentation/MULTIMEDIA_PARADISE.cgi'
1043
+ when 'source_viewer'
1044
+ DATA+'VIEWER/SOURCE_VIEWER.cgi'
1045
+ when 'tasks','task','tas','tak','alltasks'
1046
+ DATA+'TODO/YAML/tasks.yml'
1047
+ when 'pctodo'
1048
+ DATA+'TODO/PC_TODOS'
1049
+ when 'mnemo','memo'
1050
+ DATA+'TODO/MNEMO'
1051
+ when 'rubytodo'
1052
+ DATA+'TODO/RUBY_TODOS'
1053
+ when 'script_runner'
1054
+ RSRC+'CGI/script_runner.cgi'
1055
+ when 'smalltalk','smallt'
1056
+ PC+'SMALLTALK/SMALLTALK.cgi'
1057
+ when 'lisp'
1058
+ PC+'LISP/LISP.cgi'
1059
+ when 'wings'
1060
+ PC+'WINGS3D/WINGS3D.cgi'
1061
+ when 'webrick','wrick','web'
1062
+ RUBY_DOCUMENTATION+'webrick.cgi'
1063
+ when 'regex','rubyregex'
1064
+ RUBY+'RUBY_REGEX.cgi'
1065
+ when 'woche','weeks','week','w'
1066
+ STUDIUM+'YAML/wochentage/woche.yml'
1067
+ when 'stundenplan','stunden','studienplan'
1068
+ STUDIUM+'YAML/stundenplan.yml'
1069
+ when 'stun','stu'
1070
+ SCI+'STUNDENPLAN/STUNDENPLAN.cgi'
1071
+ when 'lokal_organische_chemie','organischechemie','orgc'
1072
+ STUDIUM+'TU_WIEN/163.119_Organische_Chemie_I/ORGANISCHE_CHEMIE.cgi'
1073
+ when 'analytische_chemie','analytischechemie'
1074
+ STUDIUM+'TU_WIEN/ANALYTISCHE_CHEMIE/ANALYTISCHE_CHEMIE.cgi'
1075
+ when 'gimp','gim','gi'
1076
+ "#{LINUX}GIMP/GIMP.cgi"
1077
+ when 'ink','inkscape'
1078
+ "#{LINUX}INKSCAPE/INKSCAPE.cgi"
1079
+ when 'lilo'
1080
+ "#{LINUX}LILO/LILO.cgi"
1081
+ when 'grub','grbu'
1082
+ "#{LINUX}GRUB/GRUB.cgi"
1083
+ when 'keys','key'
1084
+ LINUX+'YAML/keys.yml'
1085
+ when 'display','display_settings'
1086
+ LINUX+'YAML/display_settings.yml'
1087
+ when 'trac'
1088
+ PC+'TRAC/TRAC.cgi'
1089
+ when 'direct','directfb'
1090
+ PC+'DIRECTFB/DIRECTFB.cgi'
1091
+ when 'opera'
1092
+ PC+'OPERA/OPERA.cgi'
1093
+ when 'test' # /home/x/DATA/PC/TEST/TEST.html
1094
+ PC+'TEST/TEST.html'
1095
+ when 'ogre','ogre3d'
1096
+ PC+'OGRE3D/OGRE3D.cgi'
1097
+ when 'threed','three','3d','povray','3D'
1098
+ PC+'3D/3D.cgi'
1099
+ when 'colour_wheel','colourwheel','cwheel','col'
1100
+ PC+'COLOURS/COLOUR_WHEEL.html'
1101
+ when 'ansicolours','ansicolors'
1102
+ PC+'COLOURS/ANSICOLOURS.html'
1103
+ when 'local_vim','vim','vi'
1104
+ PC+'EDITORS/vim/VIM.cgi'
1105
+ when 'mac','apple'
1106
+ PC+'APPLE/APPLE.cgi'
1107
+ when 'std_biolog','stdbiolog','std_bioruby'
1108
+ PC+'RUBY/SRC/BIO/std_biology.rb'
1109
+ when 'stdmod'
1110
+ PC+'RUBY/SRC/std/std_modules.rb'
1111
+ when 'emacs'
1112
+ PC+'EDITORS/EMACS/EMACS.cgi'
1113
+ when 'pc','xhtml'
1114
+ PC+'PC/PC.cgi'
1115
+ when 'cmake', 'local_cmake'
1116
+ PC+'CMAKE/CMAKE.cgi'
1117
+ when 'stdphp','sphp'
1118
+ PC+'PHP/std.php'
1119
+ when 'css','csshowto','lokale_css_seite','local_css_page',
1120
+ 'css_tutorial','csscgi','csstut','css_tut'
1121
+ PC+'CSS/CSS.cgi'
1122
+ when 'dosbox','dbox','dos'
1123
+ PC+'DOSBOX/DOSBOX.cgi'
1124
+ when 'jquery'
1125
+ SRC+'/JAVASCRIPT/jquery-1.6.2.js'
1126
+ when 'perl','perl_lokal','perl_tutorial','perltutorial'
1127
+ PERL+'perl.cgi'
1128
+ when 'javascript','js_tutorial','js','javatut',
1129
+ 'javascript_tutorial'
1130
+ PROGL+'JAVASCRIPT/JAVASCRIPT.cgi'
1131
+ when 'java'
1132
+ PROGL+'JAVA/JAVA.cgi'
1133
+ when 'crystal'
1134
+ PROGL+'CRYSTAL/CRYSTAL.cgi'
1135
+ when 'python','pyt','snake','py'
1136
+ PROGL+'PYTHON/PYTHON.cgi'
1137
+ when 'conary'
1138
+ PROGL+'PYTHON/CONARY.cgi'
1139
+ when 'cgtk'
1140
+ PROGL+'C/GTK.cgi'
1141
+ when 'cpp','cplusplus','c++','local_cpp'
1142
+ PROGL+'CPP/CPP.cgi'
1143
+ when 'c','c_page','cpage','c_language','clang','local_c_language',
1144
+ 'local_c','c_local','localc'
1145
+ PROGL+'C/C.cgi'
1146
+ when 'c_header','stddefines','std_defines','cheader',
1147
+ 'defines','sdef','sdefines'
1148
+ PROGL+'C/SRC/STD/std_defines.h'
1149
+ when 'diamondlanguage','diamond_language','perfect','dialang',
1150
+ 'perfectlang','dlanguage','dia_language'
1151
+ PROGL+'DIAMOND_LANGUAGE/DIAMOND_LANGUAGE.cgi'
1152
+ when 'sqlite','sqlite3','sql','sqlite_tutorial','sqlitetutorial',
1153
+ 'database','databases'
1154
+ DATABASES+'SQLITE/SQLITE_TUTORIAL.cgi'
1155
+ when 'postgre_content','postgresql_content'
1156
+ DATABASES+'POSTGRESQL/postgre_content'
1157
+ when 'mysql','local_database'
1158
+ DATABASES+'MYSQL/MYSQL.cgi'
1159
+ when 'postgre','postgresql','postgres','postgre2'
1160
+ DATABASES+'POSTGRESQL/POSTGRESQL.cgi'
1161
+ when 'ms','wind','windows','microsoft','local_windows_page'
1162
+ OS+'MS/MS.cgi'
1163
+ when 'reactos','rea','react'
1164
+ OS+'REACTOS/REACTOS.cgi'
1165
+ when 'ruby_tutorial2','ruby_tut2','rubytut2'
1166
+ PROGL+'RUBY/SRC/TUTORIAL/ruby_tutorial.cgi'
1167
+ when 'abiword'
1168
+ PC+'ABIWORD/ABIWORD.cgi'
1169
+ when 'custom','methods','custom_methods','custommethods',
1170
+ 'cmethods','roebe','roeb'
1171
+ RSRC+'roebe/lib/roebe/custom_methods/custom_methods.rb'
1172
+ when 'scitutorial'
1173
+ SCI+'TUTORIALS/TUTORIAL_CYTOLOGIE.cgi'
1174
+ when 'bioruby','bior','bio_ruby','local_bioruby'
1175
+ SCI+'BIORUBY/BIORUBY.cgi'
1176
+ when 'bioroebe_tutorial','bioroebetutorial','biocgi',
1177
+ 'biotut','bioroebecgi'
1178
+ RSRC+'bioroebe/doc/bioroebe_tutorial.cgi'
1179
+ when 'biomenu'
1180
+ RSRC+'bioroebe/lib/bioroebe/bioshell/menu.rb'
1181
+ when 'biotodo','bioroebe_todo','bioroebetodo','biototo',
1182
+ 'bioto','biodoto','bitodo','biodotod','biotod',
1183
+ 'biotodot','biatodo','biotdo','biodo'
1184
+ RSRC+'bioroebe/doc/TODO_FOR_THE_BIOROEBE_PROJECT.md'
1185
+ when 'mybioruby','bioroebe'
1186
+ RSRC+'bioroebe/lib/bioroebe/bioroebe.rb'
1187
+ when 'localnews'
1188
+ SCI+'NEWS/NEWS'
1189
+ when 'rgtkrecipe'
1190
+ RSRC+'GUI/GTK/RBT/RGTK2_RecipeMaker.rb'
1191
+ when 'local_tv','tv','fernsehen','webtv','fernseher',
1192
+ 'lokal_tv'
1193
+ VIDEO+'TV.cgi'
1194
+ when 'videoglossar','vglossar'
1195
+ VIDEO+'VIDEO_GLOSSAR.cgi'
1196
+ when 'local_ffmpeg','localffmpeg','lffmpeg','ffmpeg'
1197
+ VIDEO+'FFMPEG/FFMPEG.cgi'
1198
+ when 'avisynth'
1199
+ VIDEO+'AVISYNTH/AVISYNTH.cgi'
1200
+ when 'multimedia'
1201
+ VIDEO+'INFO.cgi'
1202
+ when 'cam','cameras'
1203
+ VIDEO+'CAMERAS.cgi'
1204
+ when 'self','sanitizeurl','sanitized','sanitize','san',
1205
+ 'sani','beautiful','menu','men','stdmenu',
1206
+ 'beautiful_menu'
1207
+ RSRC+'beautiful_url/lib/beautiful_url/toplevel_methods/menu.rb'
1208
+ when 'university'
1209
+ RSRC+'beautiful_url/lib/beautiful_url/toplevel_methods/university_menu.rb'
1210
+ when 'fox','rubyfox','foxruby','rbfox','ruby_fox'
1211
+ RUBY+'RUBY_FOX.cgi'
1212
+ when 'rb','ruby','src','docu','rubydocu','ruby_lokal',
1213
+ 'local_ruby_page','ruby_documentation','local_ruby',
1214
+ 'ruby_tutorial','rtutorial','rubytutorial','rubytut'
1215
+ RUBY_DOCUMENTATION+'ruby.cgi'
1216
+ when 'rubygames','rubygame','rubyg','ruby_game','rubysdl'
1217
+ RUBY+'RUBY_GAMES.cgi'
1218
+ when 'rails','ror','rail','rubyonrails','schiene',
1219
+ 'ruby_on_rails','local_ruby_on_rails'
1220
+ RUBY+'RUBY_ON_RAILS.cgi'
1221
+ when 'rubyc','embedded','rembedded','ruby_embedded',
1222
+ 'rubyembedded','redded','rubyext','local_ruby_c'
1223
+ RUBY+'RUBY_C.cgi'
1224
+ when 'rubyqt','qt','rqt','ruby_qt','tq','qtruby',
1225
+ 'kde_qt'
1226
+ RUBY+'RUBY_QT.cgi'
1227
+ when /ruby_?rmagick/,'rmagic','rmagick'
1228
+ RUBY+'RUBY_RMAGICK.cgi'
1229
+ when 'videotools','local_videotools'
1230
+ RSRC+'videotools/lib/videotools/mplayer_wrapper.rb'
1231
+ when 'boot','bootup','bootscripts','booting','ruby_bootscripts',
1232
+ 'bootup_scripts','boot_scripts'
1233
+ RUBY_SYS+'bootup/lib/bootup_scripts/bootup_scripts.rb'
1234
+ when 'htmlparser','html_parser'
1235
+ RSRC+'WWW/next_generation_html_parser.rb'
1236
+ when 'dummy','dummynpc','dummy_npc'
1237
+ RPG+'MUDS/GEAS/WIZARD/home/trolloc/npc/dummy.c'
1238
+ when 'mud','mudadmin','adminshell','my_ruby_mud'
1239
+ RSRC+'MUD/admin_shell.rb'
1240
+ when 'stdcombat'
1241
+ RSRC+'MUD/std_combat.rb'
1242
+ when 'stdsettlements','stdsettlement'
1243
+ RSRC+'MUD/std_settlements.rb'
1244
+ when 'mudenhancments','mud_enhancements','mudenhancements'
1245
+ RSRC+'MUD/std_ruby_enhancements.rb'
1246
+ when 'monster_factory','monsterfactory'
1247
+ RSRC+'MUD/monsters/monster_factory.rb'
1248
+ when 'mud_shared_data','mshareddata'
1249
+ RSRC+'MUD/shared_mud_data.rb'
1250
+ when 'roomserver','room_server'
1251
+ RSRC+'MUD/room_server.rb'
1252
+ when 'stdcontainer'
1253
+ RSRC+'MUD/std_container.rb'
1254
+ when 'stdobjects'
1255
+ RSRC+'MUD/std_objects.rb'
1256
+ when 'rubyt','tut','tutorial'
1257
+ RSRC+'TUT/ruby_tutorial.cgi'
1258
+ when 'mudclient','mudclients'
1259
+ RPG+'MUDS/CLIENTS/CLIENTS.cgi'
1260
+ when 'dshell','diamond_shell','diamond','diashell',
1261
+ 'user_input'
1262
+ RUBY_DIA+'user_input/process_user_input.rb'
1263
+ when 'diahelp'
1264
+ RUBY_DIA+'help/help.rb'
1265
+ when 'diafileactions','diacomplexactions'
1266
+ RUBY_DIA+'base/file_actions.rb'
1267
+ when 'diashow'
1268
+ RUBY_DIA+'base/show.rb'
1269
+ when 'diaopen'
1270
+ RUBY_DIA+'base/open.rb'
1271
+ when 'diagetcontent'
1272
+ RUBY_DIA+'base/show_directory_content.rb'
1273
+ when 'diainput','dia_input'
1274
+ RUBY_DIA+'user_input/user_input.rb'
1275
+ when 'diacomplex','diaact'
1276
+ RUBY_DIA+'ACTIONS/complex_actions.rb'
1277
+ when 'diasimple'
1278
+ RUBY_DIA+'ACTIONS/complex_actions.rb'
1279
+ when 'diarequire'
1280
+ RUBY_DIA+'YAML/requires.yml'
1281
+ when 'diatutorial','diacgi','diatut','diashellcgi','diacgitutorial',
1282
+ 'dia_tutorial','dia_shell_cgi','dia_shell','diatud',
1283
+ 'dia','local_diashell','dia_cgi'
1284
+ RSRC+'diamond_shell/doc/DIAMOND_SHELL_TUTORIAL.cgi'
1285
+ when 'diaaudio'
1286
+ RUBY_DIA+'base/audio.rb'
1287
+ when 'diatesting','dia_testing'
1288
+ RSRC+'diamond_shell/test/testing_diamond_shell.rb'
1289
+ when 'diatodo','diashelltodo','todo','diatod','tododia',
1290
+ 'diatodoa','diaodo'
1291
+ RSRC+'diamond_shell/doc/TODO/DIAMOND_SHELL_TODO.md'
1292
+ when 'diaconfig','diamondconfig','diaset','diasettings','diaconf'
1293
+ RSRC+'diamond_shell/doc/CONFIGURATION_README.md'
1294
+ when 'main'
1295
+ DATA+'index.cgi'
1296
+ when 'muds','allmuds'
1297
+ MUDS+'index.cgi'
1298
+ when 'stdmud','stdmudaliases','mudaliases'
1299
+ RPG+'MUDS/YAML/std_mud_aliases.yml'
1300
+ when 'art'
1301
+ DATA+'ART/ART.cgi'
1302
+ when 'fun','funny','funstuff'
1303
+ DATA+'FUNSTUFF/FUN.cgi'
1304
+ when 'witze'
1305
+ DATA+'FUNSTUFF/WITZE.cgi'
1306
+ when 'body_language','bodylanguage'
1307
+ DATA+'body_language/index.cgi'
1308
+ when 'dyna'
1309
+ DATA+'body_language/DYNAMIC_COMBAT.cgi'
1310
+ when 'führerschein'
1311
+ MISC+'FUEHRERSCHEIN.cgi'
1312
+ when 'jobs','lokale_jobs','lokal_jobs',
1313
+ 'local_jobs'
1314
+ MISC+'jobs.cgi'
1315
+ when 'bank','banken','bankenyaml','bankyml',
1316
+ 'tan','bankenyam'
1317
+ MISC+'YAML/banken.yml'
1318
+ when 'quotes','quote','zitat','zitate'
1319
+ MISC+'quotes.cgi'
1320
+ when 'slogan','slogans','slog','sog','sloga','lsog',
1321
+ 'yamlweisheiten','slogansyaml','slogansyml',
1322
+ 'sloganyml'
1323
+ MISC+'YAML/slogans.yml'
1324
+ when 'layout','lay'
1325
+ "#{MISC}layout.cgi"
1326
+ when 'lifestyle','lstyle'
1327
+ MISC+'LIFESTYLE.cgi'
1328
+ when 'beauty','bea','beau'
1329
+ DATA+'BEAUTY/BEAUTY.cgi'
1330
+ when 'sarlamar'
1331
+ RPG+'SARLEM/SARLAMAR/sarlamar.cgi'
1332
+ when 'sarlem_history','sarlemhistorie'
1333
+ RPG+'SARLEM/SARLEM_HISTORIE.cgi'
1334
+ when 'gamebook01','story1'
1335
+ RPG+'SARLEM/XML/short_story_nagaos_attack.xml'
1336
+ when 'enter_rpg'
1337
+ RPG+'ENTER_RPG_SITE.cgi'
1338
+ when 'reality','roboter'
1339
+ RPG+'SR/SR_GOES_REALITY.cgi'
1340
+ when 'dndchars','dchars','dnd_chars'
1341
+ RPG+'DnD/DnD_CHARS.cgi'
1342
+ when 'helden'
1343
+ RPG+'HELDEN/HELDEN.cgi'
1344
+ # ======================================================================= #
1345
+ # === rf rpg_forum
1346
+ # ======================================================================= #
1347
+ when 'rpg_forum','rpgforum'
1348
+ RPG+'FORUM/index.cgi'
1349
+ when 'rpglinks','rpkg','rpg_links'
1350
+ RPG+'RPG_LINKS.cgi'
1351
+ when 'tai_kanji','kanji'
1352
+ RPG+'SARLEM/OSTREICH/TAI/TAI_KANJI.cgi'
1353
+ when 'tai_npc','tai_npcs','tainpc'
1354
+ RPG+'SARLEM/OSTREICH/TAI/TAI_NPC.cgi'
1355
+ when 'tai_monsters'
1356
+ RPG+'SARLEM/OSTREICH/TAI/TAI_MONSTERS.cgi'
1357
+ when 'dsagruppe','dsa_gruppe'
1358
+ RPG+'dsa/DSA_ROEBE_GRUPPE.cgi'
1359
+ when 'dsa_formeln','dsaformeln','dsaformel'
1360
+ RPG+'dsa/DSA_FORMELN.cgi'
1361
+ when 'dsa_skt'
1362
+ RPG+'dsa/DSA_SKT.cgi'
1363
+ when 'seduction','seduction_city'
1364
+ DATA+'GAMES/SEDUCTION_CITY/index.cgi'
1365
+ when 'my_javascript_snippets','myjs','stdjs'
1366
+ DATA+'CODE/JS/STD.js'
1367
+ when 'eu','eusucks','eurocks','why'
1368
+ SCI+'WHY_THE_EU_SUCKS.cgi'
1369
+ when 'paradise','island','para'
1370
+ SCI+'PARADISE_ISLAND/PARADISE_ISLAND.cgi'
1371
+ when 'generate_dna','gdna'
1372
+ SCI+'GENERATING_DNA/GENERATING_DNA.cgi'
1373
+ when 'kuros_cell','kuros','local_kuros_page','mcell'
1374
+ SCI+'KUROS_CELL/KUROS_CELL.cgi'
1375
+ when 'ldigc','ldig'
1376
+ SCI+'LDIGC/LDIGC.cgi'
1377
+ when 'biochem','local_biochem'
1378
+ SCI+'BIOCHEMISTRY/BIOCHEM.cgi'
1379
+ when 'diashell_logo','diashelllogo','dialogo','diamond_logo',
1380
+ 'diamondlogo'
1381
+ IMG+'STD/DIAMOND_SHELL.png'
1382
+ when '5_methyl_cap'
1383
+ IMG+'SCIENCE/CHEMISTRY/5_METHYL_CAP.png'
1384
+ when 'chemische_struktur_dna'
1385
+ IMG+'SCIENCE/CHEMISTRY/WASSERSTOFF_BRUECKENBINDUNGEN.jpg'
1386
+ when 'aminoacids','acids','amino','ami','amin',
1387
+ 'aa','aminoacid','aminosäuren'
1388
+ IMG+'SCIENCE/CHEMISTRY/AMINO_ACIDS.png'
1389
+ when 'ameisen'
1390
+ SCI+'AMEISEN/AMEISEN.cgi'
1391
+ when 'sciencetodos','sciencetodo'
1392
+ DATA+'TODO/SCIENCE_TODOS'
1393
+ when 'awk','akw'
1394
+ SCI+'ENERGY/AKW/AKW.cgi'
1395
+ when 'tobuy'
1396
+ DATA+'TODO/TO_GET'
1397
+ when 'strat','strategeme','tactics','strag',
1398
+ 'strategem','local_strategeme'
1399
+ SCI+'STRATEGEME.cgi'
1400
+ when 'thinking','thinking_methods','think'
1401
+ SCI+'THINKING_METHODS.cgi'
1402
+ when 'dict','dictionary','english','trans',
1403
+ 'eng','dictyaml','englishyaml','englishdict',
1404
+ 'dictionaryyaml','yamldict','yamldictionary'
1405
+ SCI+'YAML/DICTIONARIES/english.yml'
1406
+ when 'italian','ita','itayaml'
1407
+ SCI+'YAML/DICTIONARIES/italian.yml'
1408
+ when 'spanish'
1409
+ SCI+'YAML/DICTIONARIES/spanish.yml'
1410
+ when 'enzymes','enzymesdata'
1411
+ SCI+'YAML/restriction_enzymes.yml'
1412
+ when 'local_restriction_enzymes','rest','restriktion','restriction'
1413
+ SCI+'ENZYMES/RESTRICTION_ENZYMES.cgi'
1414
+ when 'glossar','sciglossar','gloss','glos','ogloss'
1415
+ SCI+'GLOSSAR.cgi'
1416
+ when 'std','stdknowledge','wissen','knowledge','stdkk',
1417
+ 'std_knowledge','stdknow','stdknowledges','stdk','kb'
1418
+ SCI+'STD_KNOWLEDGE.cgi'
1419
+ when 'photo','ldigcs','photosynthese'
1420
+ SCI+'PHOTOSYNTHESE/PHOTOSYNTHESE.cgi'
1421
+ when 'capitals','capital'
1422
+ SCI+'YAML/world_capital_cities.yml'
1423
+ when 'examstime','examstimes','examst','stdstud','exam',
1424
+ 'exams2','examtime','examtimes','e',
1425
+ 'examsyaml','exams','exms'
1426
+ STUDIUM+'YAML/exams.yml'
1427
+ when 'current_exams'
1428
+ 'current_exams.rb'
1429
+ when 'fragen.rb','examquestions','examquestion','pruefung',
1430
+ 'pruefungsfragne','pfragen','pr','pruefungsfragen',
1431
+ 'prufung','pruefungs','p','b'
1432
+ STUDIUM+'YAML/statistics.yml'
1433
+ when 'fragen','fra','questions','fragn','frage',
1434
+ 'pruefungsfragen_cgi','pruefungsfragencgi'
1435
+ SCI+'PRUEFUNG_FRAGEN.cgi'
1436
+ when 'cols','colours','colo','std_colours','stdcolours'
1437
+ LHOST+'PC/STD/STD_COLOURS.cgi'
1438
+ when 'local_geas'
1439
+ RPG+'MUDS/GEAS/GEAS.cgi'
1440
+ when 'bio_lang','biolang','stdbio','stdbiolang','blang'
1441
+ BIOLANG_DIR+'bio_lang'
1442
+ when 'immuno_lang','immunolang'
1443
+ BIOLANG_DIR+'immuno_lang'
1444
+ when 'vir_lang','virlang','vlang','virus_lang'
1445
+ BIOLANG_DIR+'vir_lang'
1446
+ when 'inf','bioinformatik_lokal','bioin','bioi',
1447
+ 'bioinfo'
1448
+ BIOINFORMATIC+'BIOINFORMATIK.cgi'
1449
+ when 'funk'
1450
+ SCI+'FUNK/FUNK.cgi'
1451
+ when 'math'
1452
+ SCI+'MATH/MATH.cgi'
1453
+ when 'images'
1454
+ IMG
1455
+ when 'sarlem_magic_item','magicitems','magic_items','mag'
1456
+ RPG+'SARLEM/YAML/magical_items.yml'
1457
+ when 'abenteuer'
1458
+ RPG+'SARLEM/ABENTEUER.cgi'
1459
+ when 'local_magic','planeshift'
1460
+ LHOST+'IMG/GAMES/MAGIC/INVASION/PLANESHIFT/RED/index.php'
1461
+ when 'quests','quest'
1462
+ MUD+'XYLLOMER/QUESTS'
1463
+ when 'sarlemkarte','sarlemk','skarte','sarlemmap'
1464
+ IMG_RPG+'SARLEM/SARLEMKARTE.png'
1465
+ when 'union','unionfs','fs','uni','unio','unifs',
1466
+ 'local_aufs'
1467
+ LHOST+'PC/OS/LINUX/UNIONFS/UNIONFS.cgi'
1468
+ when 'firefox_extension','firefox_extensions'
1469
+ LHOST+'PC/FIREFOX/EXTENSIONS.cgi'
1470
+ when 'cyberweb_test','cybersprawl_test_page','cybertest',
1471
+ 'ctest','cybertut','cybertutorial'
1472
+ RSRC+'cyberweb/test/tests.cgi'
1473
+ when 'cybersprawl_requires'
1474
+ RSRC+'cyberweb/lib/cyberweb/requires/cybersprawl_requires.rb'
1475
+ when 'cybersprawl','webmin','cyber','cybersprawlcgi',
1476
+ 'cybercgi','cybersprawl_framework','my_webmin',
1477
+ 'cybersprawl_webmin','local_webmin','cyberwebtut'
1478
+ RSRC+'cyberweb/lib/cyberweb/webmin/webmin.cgi'
1479
+ when 'bioserver','biologyserver','bioserve','bio',
1480
+ 'biology','biologie_server','bio_serve','bio_server'
1481
+ RSRC+'cyberweb/lib/cyberweb/webmin_components/biology_server.cgi'
1482
+ when 'lua'
1483
+ PC+'LUA/LUA.cgi'
1484
+ when 'complex'
1485
+ SCI+'YAML/STUDIUM/pruefungsfragen_kombination.yml'
1486
+ when 'lpc','geaslpc','lpcchart','lpc_cchart'
1487
+ MUD+'GEAS/WIZARD/LPC_CODE_SHEET.md'
1488
+ when 'geastodo','todogeas','geas_todo2'
1489
+ MUD+'GEAS/TODO/TODOS_FOR_GEAS.md'
1490
+ when 'clients','client'
1491
+ MUD+'CLIENTS/CLIENTS.cgi'
1492
+ when 'std amino_acids'
1493
+ SCI+'STD_KNOWLEDGE.cgi#amino_acids'
1494
+ when 'fireftp'
1495
+ 'chrome://fireftp/content/fireftp.xul'
1496
+ when 'käse','kaese'
1497
+ SCI+'KAESE/KAESE.cgi'
1498
+ when 'local_wein'
1499
+ SCI+'WEIN/WEIN.cgi'
1500
+ when 'local_werturteile'
1501
+ SCI+'WERTURTEILE/WERTURTEILE.cgi'
1502
+ when 'main_stud','mainstud' # Local link for whatever I study for at the given time.
1503
+ STUDIUM+'TU_WIEN/ORGANISCHE_CHEMIE/ORGANISCHE_CHEMIE.cgi'
1504
+ when 'einfuehrung_in_die_biologische_chemie'
1505
+ STUDIUM+'TU_WIEN/EINFUEHRUNG_IN_DIE_BIOLOGISCHE_CHEMIE/INHALT'
1506
+ when 'my_songs'
1507
+ DATA+'AUDIO/play_songs.cgi'
1508
+ when 'cyberweb'
1509
+ RSRC+'cyberweb/doc/TODO_FOR_CYBERWEB.md'
1510
+ when 'webfoundation1'
1511
+ CYBERWEB+'web_object.rb'
1512
+ when 'cyberweb_logo','cyber_logo'
1513
+ RSRC+'cyberweb/images/cyberweb_logo.png'
1514
+ when 'webfoundation2','cyberfoundation'
1515
+ CYBERWEB+'web_foundation.rb'
1516
+ when 'webfoundation3'
1517
+ CYBERWEB+'constants.rb'
1518
+ when 'std_web','stdweb','webfoundation','webdef','webf',
1519
+ 'webfoundation4'
1520
+ CYBERWEB+'web_foundation.rb'
1521
+ when 'webfoundation5'
1522
+ CYBERWEB+'JAVASCRIPT/javascript_bundle.rb'
1523
+ when 'webfoundation6','webfoundation_css'
1524
+ CYBERWEB+'css.rb'
1525
+ when 'webfoundation7','webfoundation_todo','cybertodo',
1526
+ 'cyberwebtodo','ctodo','cybertotod'
1527
+ RSRC+'cyberweb/doc/TODO_FOR_CYBERWEB.md'
1528
+ when 'biotech'
1529
+ STUDIUM+'TU_WIEN/BIOTECHNOLOGIE/BIOTECHNOLOGIE.cgi'
1530
+ when 'config_settings','configsettings','goboc','gconfig',
1531
+ 'goboconfig','gobconfig','glinuxconfig','goboscriptsconfig',
1532
+ 'glinuxsettings','compileconfig','config','rbtconfig',
1533
+ 'rubyconfig','rubytoolsconfig','rbtconf','rbtyaml'
1534
+ RUBY_RBT+'yaml/configuration.yml'
1535
+ when 'phpinfo'
1536
+ PROGL+'PHP/phpinfo.php'
1537
+ when 'master_pipe_handler','master_snippets_handler',
1538
+ 'command_snippets_handler','command_handler',
1539
+ 'masterpipe','master_pipe'
1540
+ MASTER_PIPE+'master_pipe_handler.rb'
1541
+ when 'master_shared_code','mshared'
1542
+ MASTER_PIPE+'shared/shared.rb'
1543
+ when 'master_pipe_testing_commands'
1544
+ MASTER_PIPE+'array_testing_commands'
1545
+ when 'registered_actions','registeredactions',
1546
+ 'master_registered_actions'
1547
+ MASTER_PIPE+'YAML/registered_actions.yml'
1548
+ when 'master_pipe_todo'
1549
+ MASTER_PIPE+'TODO/MASTER_PIPE_TODO.md'
1550
+ when 'pipecgi','mastercgi','masterpipecgi','master_pipe_webpage',
1551
+ 'master_cgi','master_pipe_cgi','local_masterpipe'
1552
+ RSRC+'pipe_handler/doc/pipe_handler.cgi'
1553
+ when 'cell'
1554
+ SCIENCE+'CELLBIOLOGY/CELLBIOLOGY.cgi'
1555
+ when 'encodings'
1556
+ PC+'/ENCODINGS/ENCODINGS.cgi'
1557
+ when 'fstab'
1558
+ '/etc/fstab'
1559
+ when 'lokal_fh','lokalfh'
1560
+ STUDIUM+'FH_BIOENGINEERING/FH.cgi'
1561
+ when 'spacer'
1562
+ BASE_DIR+'DATA/images/STD/SPACER.png'
1563
+ when 'stadtplan_wien','stadtplanwien','swien'
1564
+ BASE_DIR+'DATA/IMG/WIEN/STADPLAN_WIEN.gif'
1565
+ when 'tanriel','life'
1566
+ BASE_DIR+'DATA/rpg/MUDS/GEAS/MY_CHARACTERS/TANRIEL/TANRIELS_LIFE'
1567
+ when 'bokuvids'
1568
+ BASE_DIR+'STUDIUM/BOKU_WIEN/VIDEOS/LINKS.md'
1569
+ when 'local_xorg.conf','genxorg','ruby_xorg','rubyxorg'
1570
+ RSRC+'generate_xorg_conf/lib/generate_xorg_conf/generate_xorg_conf.rb'
1571
+ when 'fluorescence'
1572
+ IMG+'SCIENCE/CHEMISTRY/FLUORESCENCE/The_2004_Palette_of_fluorescent_proteins.png'
1573
+ when 'njoy','njoy_dir'
1574
+ IMG+'NJOY/NJOY.cgi'
1575
+ when 'gina'
1576
+ IMG+'NJOY/GINA_CARANO.gif'
1577
+ when 'exams_cgi','exams_www','examscgi'
1578
+ RSRC+'exams/lib/exams/www/exams.cgi'
1579
+ when 'local_cookbooks'
1580
+ RSRC+'cookbooks/www/COOKBOOKS.cgi'
1581
+ when 'cookbooks_specification','cookbooksspecification'
1582
+ RSRC+'cookbooks/doc/COOKBOOK_CONVENTIONS.md'
1583
+ when 'songs','lieder'
1584
+ AUDIO+'SONGS.cgi'
1585
+ when 'favsongs','audfav','audiofav'
1586
+ AUDIO_YAML+'current_favourites.yml'
1587
+ when 'local_lame','local_lame_page'
1588
+ AUDIO+'LAME.cgi'
1589
+ when 'moo','orion','master_of_orion','masteroforion'
1590
+ BASE_DIR+'DATA/GAMES/master_of_orion/images/MASTER_OF_ORION_ALL_SHIPS.jpg'
1591
+ when 'warcraft3'
1592
+ GAMES+'WARCRAFT/WARCRAFT3.cgi'
1593
+ when 'aitd'
1594
+ GAMES+'AITD/AITD.cgi'
1595
+ when 'main_audio','mainaud','main_aud'
1596
+ '/Depot/Audio/WetWetWet_Loveisallaround.mp3'
1597
+ when 'local_decibel'
1598
+ AUDIO+'DECIBEL.cgi'
1599
+ when 'lyr'
1600
+ AUDIO+'LYRICS.cgi'
1601
+ when 'songtext','lyricsyaml','lyricsreal','lyricstext',
1602
+ 'lyrics2','lyrics'
1603
+ AUDIO_YAML+'lyrics.yml'
1604
+ when /ubahn_?wien/
1605
+ BASE_DIR+'DATA/IMG/WIEN/UBAHN_WIEN.gif'
1606
+ when /agrarbiotechnologie/
1607
+ '/Depot/Studium/Bachelor_Individuelles_Curriculum_Agrarbiotechnologie.html'
1608
+ else
1609
+ return i # Return the input in this case.
1610
+ end
1611
+ end
1612
+
1613
+ end
1614
+
1615
+ if __FILE__ == $PROGRAM_NAME
1616
+ puts BeautifulUrl.local_menu
1617
+ puts BeautifulUrl.local_menu('path')
1618
+ end