-
Notifications
You must be signed in to change notification settings - Fork 19
/
index-old.html
1409 lines (1387 loc) · 78.7 KB
/
index-old.html
1
2
3
4
5
6
7
8
9
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
/*****************************************************************************\
| Copyright (c) 2006 - 2014 Achim Hoffmann
|=============================================================================
| You may obtain a copy of the license at https://github.com/EnDe/EnDe
|=============================================================================
| This software is provided "as is", without warranty of any kind, express or
| implied, including but not limited to the warranties of merchantability,
| fitness for a particular purpose and noninfringement. In no event shall the
| authors or copyright holders be liable for any claim, damages or other
| liability, whether in an action of contract, tort or otherwise, arising
| from, out of or in connection with the software or the use or other
| dealings in the software.
|
| This software is licensed under GPLv2.
| Also note that some parts come with their own license (see below).
|
| GPL - The GNU General Public License, version 2
| as specified in: http://www.gnu.org/licenses/gpl-2.0
| or a copy of it https://github.com/EnDe/EnDe license.txt
| Permits anyone the right to use and modify the software without limitations
| as long as proper credits are given and the original and modified source
| code are included. Requires that the final product, software derivate from
| the original source or any software utilizing a GPL component, such as
| this, is also licensed under the same GPL license.
|
|=============================================================================
| For licenses of some used files see the files itself:
| aes.js - see http://www.movable-type.co.uk/scripts/aes.html (this file
| did not contain license information as copied on 20-jul-2007)
| des.js - see http://www.tero.co.uk/des/usage.php
| md4.js - see http://pajhome.org.uk/crypt/md5
| md5.js - see http://pajhome.org.uk/crypt/md5
| sha.js - see http://pajhome.org.uk/crypt/md5
| and http://anmar.eu.org/projects/jssha2/files/sha2.js
| sha512.js - see http://jssha.sourceforge.net/
| rmd.js - see http://www.ocf.berkeley.edu/~jjlin/jsotp/rmd160.html
| blowfish.js - http://github.com/drench/blowfish.js
| http://www.augustana.ab.ca/~mohrj/algorithms/checkdigit.html
| used for Verhoeff's Dihedral Group D5 Check in EnDeCheck.js
| (no license information but copyright as copied on 17-feb-2008)
| jsmin.c - see http://crockford.com/javascript/jsmin
| JsDecoder.js - see http://code.gosu.pl/dl/JsDecoder/demo/JsDecoder.js
| vkbeautify.js - see https://code.google.com/p/vkbeautify/downloads/list
|=============================================================================
| JsColorizer.js - see http://code.gosu.pl/dl/JsDecoder/demo/JsColorizer.js
| JSReq.js - see http://www.businessinfo.co.uk/labs/jsreg/JSReg.js
| CoreRules2Html.jar - see http://www.jwall.org/core-rules/index.jsp
| ModSecurity Core Rule Set v2.0
| - see http://www.owasp.org/index.php/Category:OWASP_ModSecurity_Core_Rule_Set_Project
|
| The original files can be found in the 3rd/ directory here or in the 3rd/
| directory at https://github.com/EnDe/EnDe
| Files as copied 07-apr-2007:
| aes.html
| md4.js
| md5.js
| sha1.js
| sha2.js
| rmd160.html
| Files as copied 08-jul-2008:
| sha512.js
| CoreRules2Html.jar
| Files as copied 08-sep-2008:
| JsDecoder.js
| JsColorizer.js
| Files as copied 17-jul-2009:
| JSReg.js
| modsecurity-core-rules_2.0.tar.gz
| OWASP-ValidationRegexRepository.xml
| Files as copied 06-jun-2011:
| blowfish.js
| Files as copied 06-jun-2012:
| des.js
| Files as copied 06-nov-2014:
| vkbeautify.js
|
| Files without license information as copied on 30-dec-2007, 20-dec-2010:
| xssAttacks.xml http://ha.ckers.org/xssAttacks.xml
| xss.mario.xml http://mario.heideri.ch/xss.xml
| default_filter.xml http://phpids.org/
| https://svn.php-ids.org/svn/trunk/lib/IDS/default_filter.xml
\*****************************************************************************/
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<title>EnDe </title>
<!-- link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" / -->
<meta name="DC.format" content="text/html" >
<meta name="DC.title" content="EnDe" >
<meta name="DC.subject" content="EnDe - Encoder, Decoder, Converter, Transformer, Calculator for various codings used in the wild wide web " >
<meta name="DC.description" content="EnDe - Encoder, Decoder, Converter, Transformer, Calculator for various codings used in the wild wide web " >
<meta name="DC.language" content="en" >
<meta name="DC.rights" content="https://github.com/EnDe/EnDe license.txt" >
<meta name="DC.license" content="https://github.com/EnDe/EnDe license.txt" >
<meta name="DC.modified" content="20/11/19" >
<meta name="DC.Source" content="@(#) EnDe.html 3.58 20/11/19 07:04:05" >
<meta name="DC.Date" content="07-apr-07" >
<meta name="DC.creator" content="Achim Hoffmann" >
<meta name="DC.Author" content="Achim Hoffmann, mailto: ??" >
<link rel="shortcut icon" href="img/EnDe.ico">
<link rel="stylesheet" type="text/css" charset="utf-8" href="EnDe-old.css" media="screen" title="most w3c-conform browsers" >
<!-- sequence of following files is important! -->
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDe.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeFile.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeMaps.gen.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="crc.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="md4.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="md5.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="aes.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="des.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="rmd.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="sha.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="sha512.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="blowfish.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeB64.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeIP.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeTS.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeMaps.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeVersion.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeText.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeTest.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeGUI.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeGUIx.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeUser.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeCheck.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeREMap.js"></script>
<script language="JavaScript1.3" type="text/javascript" charset="utf-8" src="EnDeRE.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeREGUI.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="JSReg.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="JsDecoder.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="JsColorizer.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="vkbeautify.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeForm.js"></script>
<script language="JavaScript1.5" type="text/javascript" charset="utf-8" src="EnDeSer.js"></script>
</head>
<body>
<noscript>
<hr><h1>** JavaScript required to use this page. **</h1><hr>
</noscript>
<img id="EnDeDOM.body" class="overlay" width="100%" height="100%" src="" >
<div id="EnDeDOM.SB"><span id="EnDeDOM.SB.status"><!-- status text added here --></span>
<div class="head">
<span class="sb">
<button id="EnDeDOM.SB.bp" onClick="return EnDeGUI.show(this);">v</button>
</span>
</div>
</div>
<div id="EnDeDOM.hide">
<form id="EnDeDOM" name="EnDeDOM" accept-charset="utf-8" action="#" enctype="multipart/form-data" method="post" >
<br>
<a id="EnDeDOM.icon" title="about" href="" onClick="return EnDeGUI.help('ABOUT');"><img src="img/ende-128x128.png" alt="EnDe Icon" width=28 height=28 ></a>
<a id="EnDeDOM.logo" title="sponsored by sic[!]sec GmbH" href="http://sicsec.de/" target="_sicsec"><img src="img/sicsec-87x26.png" alt="sic[!]sec" ></a>
<fieldset id="EnDeDOM.f.DBX">
<div id="EnDeDOM.DBX.bf" class="head">
<span>
<button id="EnDeDOM.DBX.bq" onClick="return EnDeGUI.show(this);" >-</button>
<button id="EnDeDOM.DBX.bh" onClick="return EnDeGUI.help('DBX');">?</button>
</span>
<h2><label for="EnDeDOM.DBX.bq">trace / debug</label></h2>
</div>
<div id="EnDeDOM.DBX.opt">
<label class="bold"> trace levels: </label>
<label for="EnDeDOM.DBX.Trace"><input id="EnDeDOM.DBX.Trace" type="checkbox" onClick="return EnDeGUI.settrace(this);"> trace</label>
<label for="EnDeDOM.DBX.EnDe"> <input id="EnDeDOM.DBX.EnDe" type="checkbox" onClick="return EnDeGUI.settrace(this);"> EnDe (API) </label>
<label for="EnDeDOM.DBX.Obj"> <input id="EnDeDOM.DBX.Obj" type="checkbox" onClick="return EnDeGUI.settrace(this);"> Obj </label>
<label for="EnDeDOM.DBX.txt"> <input id="EnDeDOM.DBX.txt" type="checkbox" onClick="return EnDeGUI.settrace(this);"> txt </label>
<label for="EnDeDOM.DBX.Menu"> <input id="EnDeDOM.DBX.Menu" type="checkbox" onClick="return EnDeGUI.settrace(this);"> Menu </label>
<label for="EnDeDOM.DBX.File"> <input id="EnDeDOM.DBX.File" type="checkbox" onClick="return EnDeGUI.settrace(this);"> File </label>
<label for="EnDeDOM.DBX.Text"> <input id="EnDeDOM.DBX.Text" type="checkbox" onClick="return EnDeGUI.settrace(this);"> Text </label>
<label for="EnDeDOM.DBX.Form"> <input id="EnDeDOM.DBX.Form" type="checkbox" onClick="return EnDeGUI.settrace(this);"> Form </label>
<label for="EnDeDOM.DBX.Maps"> <input id="EnDeDOM.DBX.Maps" type="checkbox" onClick="return EnDeGUI.settrace(this);"> Maps </label>
<label for="EnDeDOM.DBX.B64"> <input id="EnDeDOM.DBX.B64" type="checkbox" onClick="return EnDeGUI.settrace(this);"> B64 </label>
<label for="EnDeDOM.DBX.User"> <input id="EnDeDOM.DBX.User" type="checkbox" onClick="return EnDeGUI.settrace(this);"> User </label>
<!--
<br>
<label for="EnDeDOM.DBX.IP"> <input id="EnDeDOM.DBX.IP" type="checkbox" onClick="return EnDeGUI.settrace(this);"> IP </label>
<label for="EnDeDOM.DBX.TS"> <input id="EnDeDOM.DBX.TS" type="checkbox" onClick="return EnDeGUI.settrace(this);"> TS </label>
<label for="EnDeDOM.DBX.UCS"> <input id="EnDeDOM.DBX.UCS" type="checkbox" onClick="return EnDeGUI.settrace(this);"> UCS </label>
-->
<hr>
</div>
<div id="EnDeDOM.DBX">
<textarea id="EnDeDOM.DBX.text"></textarea>
  
<input id="EnDeDOM.DBX.bc" onClick="$('EnDeDOM.DBX.text').value='';return false;" type="button" class="button" value="-">
  
<button id="EnDeDOM.DBX.bl" onClick="return EnDeGUI.showFiles();">loaded files</button>
<button id="EnDeDOM.DBX.bm" onClick="return EnDeGUI.showMap();">constants and maps</button>
<button id="EnDeDOM.DBX.bo" onClick="return EnDeGUI.showArr();">raw maps</button>
<button id="EnDeDOM.DBX.bd" onClick="return EnDeGUI.showIds();">check tag IDs</button>
<button id="EnDeDOM.DBX.bi" onClick="return EnDeGUI.showSID();">show SIDs</button>
<button id="EnDeDOM.DBX.bu" onClick="return EnDeGUI.checkupdate();">check update</button>
<button id="EnDeDOM.DBX.bs" onClick="return EnDeGUI.scratch('DBX', $('EnDeDOM.DBX.text').value)" >Scratchpad ..</button>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.TST">
<div id="EnDeDOM.TST.bf" class="head">
<span>
<button id="EnDeDOM.TST.bq" onClick="return EnDeGUI.show(this);" >-</button>
<button id="EnDeDOM.TST.bh" onClick="return EnDeGUI.help('TST');">?</button>
</span>
<h2><label for="EnDeDOM.TST.bq">test</label></h2>
</div>
<div id="EnDeDOM.TST">
 
<button id="EnDeDOM.TST.b1" onClick="return EnDeGUI.test('-');">run tests from file</button>
<button id="EnDeDOM.TST.b2" onClick="return EnDeGUI.test('E');">run tests from input</button>
<input id="EnDeDOM.TST.str" type="text" value="" size="30" >
<input id="EnDeDOM.TST.toEN" type="button" value=">E" class="button" onClick="$('EnDeDOM.EN.text').value=$('EnDeDOM.TST.str').value;return false;" >
<input id="EnDeDOM.TST.bc" type="button" value="reset" class="button" onClick="$('EnDeDOM.TST.str').value='';return EnDeGUI.testClear();" >
<br>
 
<button id="EnDeDOM.TST.bd" onClick="return EnDeGUI.EN.dispatch(this,'test');" >dispatch(test)</button>
  |  
<a id="EnDeDOM.TST.ac" href="EnDeCheck-Test.html">Check-Test</a>  
<a id="EnDeDOM.TST.ah" href="EnDeHTTP-Test.html" >HTTP-Test</a>
<div id="EnDeDOM.TST.tst" class="test" ><!-- added by EnDeGUI.test() --></div>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.GUI" class="options">
<div id="EnDeDOM.GUI.bf" class="head">
<span>
<button id="EnDeDOM.GUI.bq" onClick="return EnDeGUI.show(this);" >-</button>
<button id="EnDeDOM.GUI.bh" onClick="return EnDeGUI.help('GUI');">?</button>
</span>
<h2><label for="EnDeDOM.GUI.bq">GUI Options</label></h2>
</div>
<div id="EnDeDOM.GUI">
<fieldset id="EnDeDOM.f.file"><legend>Load File</legend>
<label for="EnDeDOM.GUI.menu" class="bold">Menu:
<span id="EnDeDOM.GUI.menu" class="select popup"><!-- SELECT added by EnDeUser.ls() --></span>
</label> > 
<select id="EnDeDOM.GUI.obj">
<option value="EnDeDOM.f.GUI" title="create menu in GUI Options">GUI Options</option>
<option value="EnDeDOM.f.API" title="create menu in API Options">API Options</option>
<option value="EnDeDOM.EN.Edit" title="create menu in Encoding" selected> Encoding</option>
<option value="EnDeDOM.DE.Edit" title="create menu in Decoding"> Decoding</option>
<option value="EnDeDOM.f.IP" title="create menu in IP"> IP</option>
<option value="EnDeDOM.f.TS" title="create menu in Timestamp"> Timestamp</option>
<option value="EnDeDOM.RE.Edit" title="create menu in RegEx"> RegEx</option>
<option value="EnDeDOM.f.PW" title="create menu in Password"> Password</option>
<option value="EnDeDOM.f.FF" title="create menu in Functions"> Functions</option>
<option value="EnDeDOM.f.DBX" title="create menu in trace"> trace</option>
<option value="EnDeDOM.f.TST" title="create menu in Test"> Test</option>
</select>
<button id="EnDeDOM.GUI.bl" onClick="return EnDeGUI.makelist($('EnDeDOM.GUI.file').value);" >show payloads</button>
<button id="EnDeDOM.GUI.bx" onClick="return EnDeGUI.makemenu($('EnDeDOM.GUI.file').value);" >create menu</button>
<button id="EnDeDOM.GUI.br" onClick="return EnDeUser.file.reset();" class="blind" >EnDeUser.file.reset</button>
<br>
<label for="EnDeDOM.GUI.file" class="bold">File:
<input id="EnDeDOM.GUI.file" type="text" value="" class="browse file" ></label>
<label for="EnDeDOM.GUI.fake">
<input id="EnDeDOM.GUI.fake" type="file" value="" class="browse hide" onChange="EnDeGUI.setfile(this,'EnDeDOM.GUI.file');" ></label>
<input id="EnDeDOM.GUI.browse" type=button value="browse" class="browse fake" >
<input id="EnDeDOM.GUI.toEN" onClick="return EnDeGUI.readfile(this,$('EnDeDOM.GUI.file').value);" type="button" value=">Encoding" class="button" >
<input id="EnDeDOM.GUI.toDE" onClick="return EnDeGUI.readfile(this,$('EnDeDOM.GUI.file').value);" type="button" value=">Decoding" class="button" >
<input id="EnDeDOM.GUI.toRE" onClick="return EnDeGUI.readfile(this,$('EnDeDOM.GUI.file').value);" type="button" value=">RegEx" class="button" >
</fieldset>
<label class="bold">Info:</label>
<button id="EnDeDOM.GUI.DBX" onClick="return EnDeGUI.tool('EnDeDOM.f.DBX');">Trace</button>
<button id="EnDeDOM.GUI.TST" onClick="return EnDeGUI.tool('EnDeDOM.f.TST');">Test</button>
<button id="EnDeDOM.GUI.H" onClick="return EnDeGUI.tour(this);" hide="1">Tour</button>
<button id="EnDeDOM.GUI.SB" onClick="return EnDeGUI.show(this);">Status Bar</button>
<label for="EnDeDOM.GUI.cmt">Comments <input id="EnDeDOM.GUI.cmt" type="checkbox" ></label>
<br>
<label class="bold">Misc:</label>
<button id="EnDeDOM.GUI.be" onClick="return EnDeGUI.hidden(null);" >experimental</button>
<button id="EnDeDOM.GUI.bp" onClick="return EnDeGUI.pimp();" hide="1">pimp</button>
<button id="EnDeDOM.GUI.bj" onClick="return EnDeGUI.jokes(null);" >esoteric</button>
<button id="EnDeDOM.GUI.QQ" onClick="return EnDeGUI.show(this);">Browser Quirks</button>
<span id="EnDeDOM.GUI.Only" class="select" ><!-- SELECT added by init() --></span>
<br>
<!--
<label class="bold">    :</label>
-->
</div>
<span id="EnDeDOM.GUI.QB" class="quick head">
<span>  
<button id="EnDeDOM.GUI.qq" onClick="return EnDeGUI.show(this);">x</button>
<button id="EnDeDOM.GUI.qh" onClick="return EnDeGUI.help('GUI');">?</button>
</span>
<label for="EnDeDOM.GUI.append" >append <input id="EnDeDOM.GUI.append" type="checkbox" ></label>
<label for="EnDeDOM.GUI.select" >selection <input id="EnDeDOM.GUI.select" type="checkbox" ></label>
<button id="EnDeDOM.GUI.FF" onClick="return EnDeGUI.show(this);">Functions</button>
<button id="EnDeDOM.GUI.MP" onClick="return EnDeGUI.show(this);">Replace Map</button>
<button id="EnDeDOM.GUI.bS" onClick="return EnDeGUI.copy();" hide="1">Shuffle</button>
</span>
</fieldset>
<fieldset id="EnDeDOM.f.API" class="options">
<div id="EnDeDOM.API.bf" class="head">
<span>
<button id="EnDeDOM.API.bq" onClick="return EnDeGUI.show(this);" >-</button>
<button id="EnDeDOM.API.bh" onClick="return EnDeGUI.help('API');">?</button>
</span>
<h2><label for="EnDeDOM.API.bq">API Options</label></h2>
</div>
<div id="EnDeDOM.API">
<table cellspacing="0" class="opttable" >
<tr>
<th>User API Options</th><th>Values</th><th>Prefix</th><th>Suffix</th><th>Delimiter</th><th>Key/Cipher</th><th>Output Format</th><th hide="1">mode</th>
</tr>
<tr>
<td rowspan=2><div id="EnDeDOM.API.Menu" class="select" ><!-- class="middle" SELECT added by init() --></div><br></td>
<td>size <select id="EnDeDOM.API.size">
<option>1</option><option selected>2</option><option>3</option><option>4</option><option>5</option><option>6</option><option>7</option></select></td>
<td><input id="EnDeDOM.API.prefix" type="text" value="" size="4"></td>
<td><input id="EnDeDOM.API.suffix" type="text" value="" size="4"></td>
<td><input id="EnDeDOM.API.delimiter" type="text" value="," size="4"></td>
<td><input id="EnDeDOM.API.cipher" type="text" value="" size="13"></td>
<td><label for="EnDeDOM.API.wrapbreak">wrap
<input id="EnDeDOM.API.wrapbreak" type="text" value="76" size="4"></label></td>
<td hide="1" rowspan="2">
<label for="EnDeDOM.API.mode0">strict
<input id="EnDeDOM.API.mode0" type="radio" value="strict" name="mode" ></label><br>
<label for="EnDeDOM.API.mode1">lazy
<input id="EnDeDOM.API.mode1" type="radio" value="lazy" name="mode" checked="1" ></label><br>
<label for="EnDeDOM.API.mode2">verbose
<input id="EnDeDOM.API.mode2" type="radio" value="verbose" name="mode" ></label>
</td>
</tr>
<tr>
<td><label for="EnDeDOM.API.uppercase">uppercase
<input id="EnDeDOM.API.uppercase" type="checkbox" checked="1" ></label></td>
<td colspan="3">
<label for="EnDeDOM.API.ishex">values are hex
<input id="EnDeDOM.API.ishex" type="checkbox" ></label></td>
<td>Iterations
<input id="EnDeDOM.API.iteration" type="text" value="1" size="2"></td>
<td hide="1">typ <select id="EnDeDOM.API.typ">
<option>raw</option><option selected>hex</option><option>base64</option></select></td>
</tr>
<tr>
<td colspan="8"><fieldset id="EnDeDOM.API.JSReg"><legend>JSReg</legend>
<b>sandbox:   </b>
<label for="EnDeDOM.API.JSRcheck">runCheck():
<input id="EnDeDOM.API.JSRcheck" type="checkbox" checked="1" ></label>
  
<b>call eval: </b>
<label for="EnDeDOM.API.JSRcode">code:
<input id="EnDeDOM.API.JSRcode" type="checkbox" checked="1" ></label>
<label for="EnDeDOM.API.JSRfunc">function:
<input id="EnDeDOM.API.JSRfunc" type="checkbox" checked="1" ></label>
<label for="EnDeDOM.API.JSRmain">main:
<input id="EnDeDOM.API.JSRmain" type="checkbox" checked="1" ></label>
</fieldset>
</td>
</tr>
</table>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.MP" class="function">
<div id="EnDeDOM.MP.bf" class="head">
<span>
<button id="EnDeDOM.MP.bq" onClick="return EnDeGUI.show(this);" >x</button>
<button id="EnDeDOM.MP.bh" onClick="return EnDeGUI.help('MAP');">?</button>
</span>
<h2>Replace Characters Map</h2>
</div>
<div id="EnDeDOM.MP">
character encoding<br>
<!-- default setting must be hex, otherwise we cannot use all characters in menu definition -->
<input id="EnDeDOM.MP.see" type="hidden" value="hex" >
<label for="EnDeDOM.MP.chr">char
<input id="EnDeDOM.MP.chr" type="radio" value="chr" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="EnDeDOM.MP.oct">\ooo
<input id="EnDeDOM.MP.oct" type="radio" value="oct" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="EnDeDOM.MP.hex">\xHH
<input id="EnDeDOM.MP.hex" type="radio" value="hex" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" checked="1" ></label>
<label for="EnDeDOM.MP.url"> %HH
<input id="EnDeDOM.MP.url" type="radio" value="url" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="EnDeDOM.MP.uni">\uHHHH
<input id="EnDeDOM.MP.uni" type="radio" value="uni" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="EnDeDOM.MP.NCE">&#xHH;
<input id="EnDeDOM.MP.NCE" type="radio" value="NCE" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="EnDeDOM.MP.int">&#DDD;
<input id="EnDeDOM.MP.int" type="radio" value="int" onClick="EnDeGUI.MP.setFormat(this,this.value)" name="fmt" ></label>
<label for="dummy" style="float:none"> </label><br>
<br>
<sub>insert specified or selected character in selected field below</sub><br>
character : 
<input id="EnDeDOM.MP.oldC" type="text" value="" class="blind" >
<input id="EnDeDOM.MP.newC" type="text" value="" >
<input id="EnDeDOM.MP.add" type="button" value="add" onClick="EnDeGUI.MP.setChar(this,EnDeGUI.MP.getUnicode($('EnDeDOM.MP.see').value,$('EnDeDOM.MP.newC').value))" >
<div id="EnDeDOM.MP.Menu" class="select" >specials :  <!-- SELECT added by init() --></div>
<input id="EnDeDOM.MP.row" type="button" value="+" onClick="EnDeGUI.MP.newrow()" >
   |   
   |   
<input id="EnDeDOM.MP.swap" type="button" value="<>" onClick="EnDeGUI.MP.swap()" >
<div id="EnDeDOM.MP.list" class="select" ><!-- table added by init() --></div>
  <sub>^ checkboxes not yet used</sub>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.FF" class="function">
<div id="EnDeDOM.FF.bf" class="head">
<span>
<button id="EnDeDOM.FF.bq" onClick="return EnDeGUI.show(this);" >x</button>
<button id="EnDeDOM.FF.bh" onClick="return EnDeGUI.help('MODE');">?</button>
</span>
<h2>Functions</h2>
</div>
<div id="EnDeDOM.FF">
<div class="opt">
<label for="EnDeDOM.FF.varval0">
<input id="EnDeDOM.FF.varval0" type="radio" value="variable" name="varval" checked="1" >variable<br>
</label>
<label for="EnDeDOM.FF.varval1">
<input id="EnDeDOM.FF.varval1" type="radio" value="value" name="varval" >value
</label>
</div><!-- class="opt" // this comment mandatory for Makefile -->
<div class="select middle" id="EnDeDOM.FF.Actions"><!-- SELECT added by init() --></div>
<div class="left">
<textarea id="EnDeDOM.FF.text" accesskey="F"></textarea>
 
<input id="EnDeDOM.FF.isMem" type="hidden" value="isTxt" >
<input id="EnDeDOM.FF.isTxt" type="button" value="Text" class="tab" checked="1" onClick="return EnDeGUI.data(this,'EnDeDOM.FF')" >
<input id="EnDeDOM.FF.isHex" type="hidden" value="Hex" class="bat" >
<input id="EnDeDOM.FF.isURI" type="button" value="parsed" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.FF')" >
<input id="EnDeDOM.FF.doClr" type="button" value="-" class="button" onClick="return EnDeGUI.reset($('EnDeDOM.FF.text'));" >
  
<span id="EnDeDOM.FF.Menu" class="select popup"><!-- SELECT added by init() --></span>
  
<button id="EnDeDOM.FF.bw" onClick="return EnDeGUI.cont($('EnDeDOM.FF.text').value)" >Window ..</button>
<button id="EnDeDOM.FF.bs" onClick="return EnDeGUI.scratch('FF', $('EnDeDOM.FF.text').value)" >Scratchpad ..</button>
</div>
<label for="EnDeDOM.FF.file">
<input id="EnDeDOM.FF.file" type="file" value="" ></label>
<input id="EnDeDOM.FF.load" onClick="return EnDeGUI.readfile(this,$('EnDeDOM.FF.file').value);" type="button" value="load" class="button" >
</div>
<!-- EnDe functions SELECT added by init() -->
<!-- User functions SELECT added by init() -->
</fieldset>
<fieldset id="EnDeDOM.f.CH" class="borderbox">
<div id="EnDeDOM.CH.bf" class="head">
<span>
<button id="EnDeDOM.CH.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.CH.bh" onClick="return EnDeGUI.help('CH');">?</button>
</span>
<h2><label for="EnDeDOM.CH.bq">Character</label></h2>
</div>
<table cellspacing="0" id="EnDeDOM.CH" >
<tr>
<th>Special Unicode Characters</th>
<th>Char</th> <th>hex</th> <th>decimal</th><th>octal</th>
<th> </th>
<th>hex</th> <th>binary</th>
</tr>
<tr>
<td><div id="EnDeDOM.CH.Menu" class="select popup"><!-- SELECT added by init() --></div></td>
<td><input id="EnDeDOM.CH.chr" type="text" value="" class="chr" accesskey="C" onKeyup="return EnDeGUI.CH.set($('EnDeDOM.CH.chr').value.substr(-1));" >
<td><input id="EnDeDOM.CH.hex" type="text" value="" class="chr" onKeypress="return EnDeGUI.CH.dispatch(this,'hex');" >
<td><input id="EnDeDOM.CH.dec" type="text" value="" class="chr" onKeypress="return EnDeGUI.CH.dispatch(this,'dec');" >
<td><input id="EnDeDOM.CH.oct" type="text" value="" class="chr" onKeypress="return EnDeGUI.CH.dispatch(this,'oct');" >
<th>Unicode</th>
<td><input id="EnDeDOM.CH.ucs" type="text" value="" class="chr" onKeypress="return EnDeGUI.CH.dispatch(this,'hex');" >
<td><input id="EnDeDOM.CH.bin" type="text" value="" class="text" onKeypress="return EnDeGUI.CH.dispatch(this,'bin');" >
</tr>
<tr>
<td><button id="EnDeDOM.API.bl" onClick="return EnDeGUI.makechar();" >Special Characters</button></td>
<td colspan="4">
<input id="EnDeDOM.CH.toEN" type="button" value=">Encoding" class="button" onClick="$('EnDeDOM.EN.text').value+=$('EnDeDOM.CH.chr').value;return false;" >
<input id="EnDeDOM.CH.toDE" type="button" value=">Decoding" class="button" onClick="$('EnDeDOM.DE.text').value+=$('EnDeDOM.CH.chr').value;return false;" >
<input id="EnDeDOM.CH.toRE" type="button" value=">RegEx" class="button" onClick="$('EnDeDOM.RE.text').value+=$('EnDeDOM.CH.chr').value;return false;" >
</td>
<th>UTF-8</th>
<td><input id="EnDeDOM.CH.utf" type="text" value="" class="chr" onKeypress="return EnDeGUI.CH.dispatch(this,'utf');" ></td>
<td colspan="3">
<input id="EnDeDOM.CH.lng" type="text" value="" class="text" size="44" onKeypress="return EnDeGUI.CH.dispatch(this,'lng');" >
</td>
</tr>
<!--
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
-->
</table>
</fieldset>
<fieldset id="EnDeDOM.f.ED" class="borderbox">
<div class="head">
<span>
<button id="EnDeDOM.ED.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.ED.bh" onClick="return EnDeGUI.help('ED');">?</button>
</span>
<h2><label for="EnDeDOM.ED.bq">En- / Decoding</label></h2>
</div>
<div id="EnDeDOM.f.EDO">
<label class="bold"> append: </label>
<label for="EnDeDOM.ED.00"> <input id="EnDeDOM.ED.00" type="checkbox" > 0x00 </label>
<label for="EnDeDOM.ED.0a"> <input id="EnDeDOM.ED.0a" type="checkbox" > 0x0a </label>
<label for="EnDeDOM.ED.0d"> <input id="EnDeDOM.ED.0d" type="checkbox" > 0x0d </label>
<label for="EnDeDOM.ED.da"> <input id="EnDeDOM.ED.da" type="checkbox" > 0x0d0a</label>
<label for="EnDeDOM.ED.aa"> <input id="EnDeDOM.ED.aa" type="checkbox" > 0x1a </label>
<label class="bold" style="border-left:1px solid black"> en-/decode: </label>
<label for="EnDeDOM.ED.uri"><input id="EnDeDOM.ED.uri" type="checkbox" > URI/URL </label>
<label class="bold" style="border-left:1px solid black"> Sep. </label>
<label for="EnDeDOM.ED.su"> <input id="EnDeDOM.ED.su" type="radio" name="sep" value="&" checked="1" > & </label>
<label for="EnDeDOM.ED.sa"> <input id="EnDeDOM.ED.sa" type="radio" name="sep" value=":" > <b>:</b></label>
<label for="EnDeDOM.ED.sb"> <input id="EnDeDOM.ED.sb" type="radio" name="sep" value="|" > <b>|</b></label> <!-- bold for better visinility -->
<label for="EnDeDOM.ED.sn"> <input id="EnDeDOM.ED.sn" type="radio" name="sep" value="n" > \n </label>
<hr>
</div>
<fieldset id="EnDeDOM.f.EN"><legend> Encoding</legend>
<div id="EnDeDOM.EN">
<div id="EnDeDOM.EN.Actions" class="select left"><!-- SELECT added by init() --></div>
<div id="EnDeDOM.EN.Edit" class="middle">
<textarea id="EnDeDOM.EN.text" accesskey="E"></textarea>
 
<input id="EnDeDOM.EN.isMem" type="hidden" value="isTxt" >
<input id="EnDeDOM.EN.isTxt" type="button" value="Text" class="tab" checked="1" onClick="return EnDeGUI.data(this,'EnDeDOM.EN')" >
<input id="EnDeDOM.EN.isHex" type="button" value="Hex" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.EN')" >
<input id="EnDeDOM.EN.isURI" type="button" value="parsed" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.EN')" >
<input id="EnDeDOM.EN.doClr" type="button" value="-" class="button" onClick="return EnDeGUI.reset($('EnDeDOM.EN.text'));" >
 
<span id="EnDeDOM.EN.Menu" class="select popup"><!-- SELECT added by init() --></span>
 
<span id="EnDeDOM.EN.guess" class="select popup"><!-- SELECT added by init() --></span>
 
<button id="EnDeDOM.EN.bw" onClick="return EnDeGUI.cont($('EnDeDOM.EN.text').value)" >Window ..</button>
<button id="EnDeDOM.EN.bs" onClick="return EnDeGUI.scratch('EN', $('EnDeDOM.EN.text').value)" >Scratchpad ..</button>
</div>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.DE"><legend> Decoding</legend>
<div id="EnDeDOM.DE">
<div id="EnDeDOM.DE.Actions" class="select left"><!-- SELECT added by init() --></div>
<div id="EnDeDOM.DE.Edit" class="middle">
<textarea id="EnDeDOM.DE.text" accesskey="D"></textarea>
 
<input id="EnDeDOM.DE.isMem" type="hidden" value="isTxt" >
<input id="EnDeDOM.DE.isTxt" type="button" value="Text" class="tab" checked="1" onClick="return EnDeGUI.data(this,'EnDeDOM.DE')" >
<input id="EnDeDOM.DE.isHex" type="button" value="Hex" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.DE')" >
<input id="EnDeDOM.DE.isURI" type="button" value="parsed" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.DE')" >
<input id="EnDeDOM.DE.doClr" type="button" value="-" class="button" onClick="return EnDeGUI.reset($('EnDeDOM.DE.text'));" >
 
<span id="EnDeDOM.DE.Menu" class="select popup"><!-- SELECT added by init() --></span>
 
<span id="EnDeDOM.DE.guess" class="select popup"><!-- SELECT added by init() --></span>
 
<button id="EnDeDOM.DE.bw" onClick="return EnDeGUI.cont($('EnDeDOM.DE.text').value)" >Window ..</button>
<button id="EnDeDOM.DE.bs" onClick="return EnDeGUI.scratch('DE', $('EnDeDOM.DE.text').value)" >Scratchpad ..</button>
</div>
</div>
</fieldset>
</fieldset>
<fieldset id="EnDeDOM.f.IP" class="borderbox">
<div class="head">
<span>
<button id="EnDeDOM.IP.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.IP.bh" onClick="return EnDeGUI.help('IP');">?</button>
</span>
<h2><label for="EnDeDOM.IP.bq">IP</label></h2>
</div>
<div id="EnDeDOM.IP">
<div class="block">
<span style="width:14em" > </span>
<span hide="1">
<label for="EnDeDOM.IP.dot"><input id="EnDeDOM.IP.dot" type="checkbox" checked="1" >. as delimiter</label>
</span>
<label class="bold">Incomplete dotted IP:</label>
<label for="EnDeDOM.IP.add0"><input id="EnDeDOM.IP.add0" type="radio" name="add" value="none" checked="1" >none</label>
<label for="EnDeDOM.IP.add1"><input id="EnDeDOM.IP.add1" type="radio" name="add" value="lead" >prefix 0.</label>
<label for="EnDeDOM.IP.add2"><input id="EnDeDOM.IP.add2" type="radio" name="add" value="trail" >suffix .0</label>
<label for="EnDeDOM.IP.add3"><input id="EnDeDOM.IP.add3" type="radio" name="add" value="prefix">prefix</label>
<label for="EnDeDOM.IP.add4"><input id="EnDeDOM.IP.add4" type="radio" name="add" value="suffix">suffix</label>
</div>
<hr>
<div class="select left" id="EnDeDOM.IP.Actions"><!-- SELECT added by init() --></div>
<div class="middle">
<table cellspacing="0" id="EnDeDOM.IP.table" class="iptable" >
<tr><th> IP:</th><td><input id="EnDeDOM.IP.ip" type="text" accesskey="I" ></td>
<td align="center">
<input id="EnDeDOM.IP.bn" class="button" type="button" size="2" onClick="return EnDeGUI.IP.dispatch(this,'normal')" value=" < " >
<input id="EnDeDOM.IP.bx" class="button" type="button" size="2" onClick="return EnDeGUI.IP.dispatch(this,'swap')" value=" <> ">
<input id="EnDeDOM.IP.br" class="button" type="button" size="2" onClick="return EnDeGUI.IP.dispatch(this,'reverse')" value=" > " >
</td>
<td><input id="EnDeDOM.IP.rip" type="text"></td>
</tr>
<tr><th>  </th>
<td class="line">quad dotted value</td>
<td class="line">  plain value</td>
<td> </td></tr>
<tr><th> IPv6:</th>
<td> <input id="EnDeDOM.IP.ip6" type="text"></td>
<td>  <input id="EnDeDOM.IP.big" type="text"></td>
<td><b>: 64-bit int</b>  |  
<label for="EnDeDOM.IP.low">small int:
<input id="EnDeDOM.IP.low" type="checkbox">
</label>
</td></tr>
<tr><th> URL:</th>
<td> <input id="EnDeDOM.IP.url" type="text"></td>
<td>  <input id="EnDeDOM.IP.num" type="text"></td>
<td><b>: 32-bit int</b></td></tr>
<tr><th> hex:</th>
<td> <input id="EnDeDOM.IP.hex" type="text"></td>
<td>  <input id="EnDeDOM.IP.xeh" type="text"></td>
<td><b>: 0x prefixed hex</b></td></tr>
<tr><th> octal:</th>
<td> <input id="EnDeDOM.IP.oct" type="text"></td>
<td>  </td>
<td> </td></tr>
<tr><th> binary:</th>
<td> <input id="EnDeDOM.IP.bin" type="text"></td>
<td colspan="2"> 
<input id="EnDeDOM.IP.bit" type="text" style="width:25em;" ></td>
</tr>
<tr>
<td> <input id="EnDeDOM.IP.res" type="reset" value="reset" class="button" ></td><!-- // ToDo: button is contribution to buggy browsers -->
<td colspan="3">
  
<span id="EnDeDOM.IP.Menu" class="select popup"><!-- SELECT added by init() --></span>
  
<button id="EnDeDOM.IP.bg" onClick="return EnDeGUI.IP.dispatch(this,'guess')" disabled >guess</button>
<button id="EnDeDOM.IP.bw" onClick="return EnDeGUI.IP.dispatch(this,'show')" >Window ..</button>
<button id="EnDeDOM.IP.bs" onClick="return EnDeGUI.IP.dispatch(this,'scratch')" >Scratchpad ..</button>
</td>
</tr>
</table>
</div>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.TS" class="borderbox">
<div class="head">
<span>
<button id="EnDeDOM.TS.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.TS.bh" onClick="return EnDeGUI.help('TS');">?</button>
</span>
<h2><label for="EnDeDOM.TS.bq">Timestamp</label></h2>
</div>
<div id="EnDeDOM.TS">
<div class="Box">
<table class="tstable">
<tr>
<th><label class="bold">General Options:</label></th>
<th><input id="EnDeDOM.TS.yY" type="checkbox" ><br>2/4</th>
<th><input id="EnDeDOM.TS.mM" type="checkbox" ><br>Name</th>
<th><input id="EnDeDOM.TS.strict" type="checkbox" ><br>strict</th>
<th><input id="EnDeDOM.TS.hm" type="checkbox" ><br>now</th>
<th><input id="EnDeDOM.TS.ms" type="checkbox" ><br>ms</th>
<th><input id="EnDeDOM.TS.ns" type="checkbox" disabled><br>ns</th>
<th><input id="EnDeDOM.TS.GMT" type="checkbox" ><br>GMT</th>
<th><input id="EnDeDOM.TS.TZ" type="checkbox" disabled><br>TZ</th>
<th><input id="EnDeDOM.TS.neg" type="checkbox" disabled >>2001<br>is negative</th>
<td><input id="EnDeDOM.TS.isFmt" type="hidden" class="blind" value="2unix" >
<span id="EnDeDOM.TS.format" class="select popup"><!-- SELECT added by init() --></span>
</td>
<td><input id="EnDeDOM.TS.ff2" type="text" class="text" size="14" ><br>
<input id="EnDeDOM.TS.ff3" type="text" class="text" size="14" ></td>
</tr>
<tr><td colspan="11"><hr></td>
</tr>
<!-- not yet implemented
<tr>
<td rowspan="4"> </td>
<td rowspan="4">
<select id="EnDeDOM.TS.Action" size="5" onClick="return EnDeGUI.TS.dispatch(this,'compute');">
<option value="" disabled>Convert Formats:</option>
</select>
</td>
</tr>
-->
<tr>
<th> </th>
<th>Year</th>
<th>Month</th>
<th>Day</th>
<th>Hour</th>
<th>Min.</th>
<th>Sec.</th>
<td> </td>
<td> </td>
<th align="right">Ref. Time.:</th>
<td><input id="EnDeDOM.TS.reftime" type="text" class="text" size="14" ></td>
<td><input id="EnDeDOM.TS.ff4" type="text" class="text" size="14" ></td>
</tr>
<tr>
<th>Date | Time: </th>
<td> <input id="EnDeDOM.TS.year" type="text" class="text" size="4" ></td>
<td>. <input id="EnDeDOM.TS.mon" type="text" class="text" size="2" ></td>
<td>. <input id="EnDeDOM.TS.day" type="text" class="text" size="2" ></td>
<td>| <input id="EnDeDOM.TS.hour" type="text" class="text" size="2" ></td>
<td>: <input id="EnDeDOM.TS.min" type="text" class="text" size="2" ></td>
<td>: <input id="EnDeDOM.TS.sec" type="text" class="text" size="2" ></td>
<th> <input id="EnDeDOM.TS.toTS" type="button" class="button" value=" > " onClick="return EnDeGUI.TS.dispatch(this,'date2ts')" ></th>
<th> <input id="EnDeDOM.TS.toDT" type="button" class="button" value=" < " onClick="return EnDeGUI.TS.dispatch(this,'ts2date')" ></th>
<th align="right" >Timestamp: </th>
<td> <input id="EnDeDOM.TS.timestamp" type="text" class="text" size="14" ></td>
<td> <input id="EnDeDOM.TS.ff5" type="text" class="text" size="14" ></td>
</tr>
<tr>
<th>readable: </th>
<td colspan="5">
<input id="EnDeDOM.TS.human" type="text" class="text" size="29" accesskey="T" ></td>
<th><input id="EnDeDOM.TS.toTSC" type="button" class="button" value=" >> " onClick="return EnDeGUI.TS.dispatch(this,'compute')" ></th>
<th><input id="EnDeDOM.TS.toOf" type="button" class="button" size="2" value=" > " onClick="return EnDeGUI.TS.dispatch(this,'date2offset')" ></th>
<th><input id="EnDeDOM.TS.FromOf" type="button" class="button" size="2" value=" < " onClick="return EnDeGUI.TS.dispatch(this,'offset2date')" ></th>
<th><input id="EnDeDOM.TS.Add" type="button" class="button" size="3" value=" + " onClick="return EnDeGUI.TS.dispatch(this,'addOffset')" > Offset:</th>
<td><input id="EnDeDOM.TS.offset" type="text" class="text" size="14" ></td>
<td><input id="EnDeDOM.TS.ff6" type="text" class="text" size="14" ></td>
</tr>
<tr>
<th> </th>
<th><input id="EnDeDOM.TS.now" type="button" class="button" value="now" onClick="return EnDeGUI.TS.dispatch(this,'now')" ></th>
<td colspan="2">
 
<input id="EnDeDOM.TS.doClr" type="button" class="button" value="reset" onClick="EnDeGUI.TS.reset();return false;">
 
<span id="EnDeDOM.TS.Menu" class="popup">
<!-- // ToDo: quick&dirty as long as we have no more functions
- - onClick= as select attribute is contribution to buggy Safari
<select onClick="return EnDeGUI.TS.reset()"><option>clear</option></select>
-->
</span>
</td>
<td colspan="2">
 
<button id="EnDeDOM.TS.bg" onClick="return EnDeGUI.TS.dispatch(this,'guess')" >guess</button>
</td>
<td colspan="3">
 
<button id="EnDeDOM.TS.bm" onClick="return EnDeGUI.TS.dispatch(this,'scratch')">Scratchpad ..</button>
</td>
<td><input id="EnDeDOM.TS.isTimestamp" type="button" class="button" value="Ref + Offset" onClick="return EnDeGUI.TS.dispatch(this,'isTS')" ></td>
<td><input id="EnDeDOM.TS.isOffset"type="button" class="button" value="Ref - Timestamp" onClick="return EnDeGUI.TS.dispatch(this,'isOffset')" ></td>
<td><input id="EnDeDOM.TS.ff7" type="text" class="text" size="14" ></td>
</tr>
</table>
</div>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.RX" class="borderbox">
<div class="head">
<span>
<button id="EnDeDOM.RE.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.RE.bh" onClick="return EnDeGUI.help('RE');">?</button>
</span>
<h2><label for="EnDeDOM.RE.bq">RegEx - Regular Expressions</label></h2>
</div>
<div id="EnDeDOM.RE">
Prefix:
<label for="EnDeDOM.RE.prefix"><input id="EnDeDOM.RE.prefix" type="text" >   </label>
<label for="EnDeDOM.RE.raw"> <input id="EnDeDOM.RE.raw" type="checkbox" checked="1" >raw RegEx   </label>
<label for="EnDeDOM.RE.desc"> <input id="EnDeDOM.RE.desc" type="checkbox" checked="1" >description  </label>
<span hide="1">
<label for="EnDeDOM.RE.ere"> <input id="EnDeDOM.RE.ere" type="checkbox" >extended RegEx   </label>
</span>
<hr>
<div id="EnDeDOM.RE.Actions" class="select left"><br><!-- SELECT added by init() --></div>
<div id="EnDeDOM.RE.Edit" class="middle">
<fieldset id="EnDeDOM.f.RE"><legend> RegEx</legend>
<textarea id="EnDeDOM.RE.text" accesskey="R"></textarea>
 
<input id="EnDeDOM.RE.isMem" type="hidden" value="isTxt" >
<input id="EnDeDOM.RE.isTxt" type="button" value="Text" class="tab" checked="1" onClick="return EnDeGUI.data(this,'EnDeDOM.RE')" >
<input id="EnDeDOM.RE.isHex" type="button" value="Hex" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.RE')" >
<input id="EnDeDOM.RE.isURI" type="button" value="parsed" class="bat" onClick="return EnDeGUI.data(this,'EnDeDOM.RE')" >
<input id="EnDeDOM.RE.doClr" type="button" value="-" class="button" onClick="return EnDeGUI.reset($('EnDeDOM.RE.text'));" >
 
<span id="EnDeDOM.RE.Menu" class="select popup"><!-- SELECT added by init() --></span>
 
<button id="EnDeDOM.RE.bg" onClick="return EnDeGUI.RE.dispatch(this,'guess')" disabled>guess</button>
<button id="EnDeDOM.RE.bw" onClick="return EnDeGUI.RE.dispatch(this,'code')" >Window ..</button>
<button id="EnDeDOM.RE.bs" onClick="return EnDeGUI.RE.dispatch(this,'scratch')" >Scratchpad ..</button>
</fieldset>
<fieldset id="EnDeDOM.f.TE"><legend> Text ..</legend>
<textarea id="EnDeDOM.RE.str"></textarea>
</fieldset>
</div>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.PW" class="borderbox" hide="1" >
<div class="head">
<span>
<button id="EnDeDOM.PW.bq" onClick="return EnDeGUI.show(this);">-</button>
<button id="EnDeDOM.PW.bh" onClick="return EnDeGUI.help('PW');">?</button>
</span>
<h2><label for="EnDeDOM.PW.bq">Password Strength</label></h2>
</div>
<div id="EnDeDOM.PW">
<table cellspacing="0" id="EnDeDOM.PW.table" >
<!--
/*
* Ban particular words (tested case-insensitively).
*/
-->
<tr>
<th class="line">Score</th> <th class="line"> Value</th> <th class="line">Description</th>
<td class="line">|</td>
<th class="line">Score</th> <th class="line"> Value</th> <th class="line">Description</th>
</tr>
<tr><td><input id="EnDeDOM.PW.scoremin" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.min" value="8" class="em2" ></td>
<td><label for="EnDeDOM.PW.min">Minimum Length</label></td>
<td>|</td>
<td><input id="EnDeDOM.PW.scorelow" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.low" value="1" class="em2" ></td>
<td><label for="EnDeDOM.PW.low">Minimum number of lowercase characters</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scoremax" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.max" value="0" class="em2" ></td>
<td><label for="EnDeDOM.PW.max">Maximum Length (0 if unlimited)</label></td>
<td>|</td>
<td><input id="EnDeDOM.PW.scoreupp" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.upp" value="1" class="em2" ></td>
<td><label for="EnDeDOM.PW.upp">Minimum number of uppercase characters</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scoreidl" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.idl" value="2" class="em2" ></td>
<td><label for="EnDeDOM.PW.idl">Maximum sequence of identical characters</label></td>
<td>|</td>
<td><input id="EnDeDOM.PW.scorenum" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.num" value="1" class="em2" ></td>
<td><label for="EnDeDOM.PW.num">Minimum number of digits</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scorespc" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.spc" value="2" class="em2" ></td>
<td><label for="EnDeDOM.PW.spc">Maximum sequence of special characters</label></td>
<td>|</td>
<td><input id="EnDeDOM.PW.scorensp" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.nsp" value="1" class="em2" ></td>
<td><label for="EnDeDOM.PW.nsp">Minimum number special characters</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scorecnt" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.cnt" value="2" class="em2" ></td>
<td><label for="EnDeDOM.PW.cnt">Maximum sequence of continous characters</label></td>
<td>|</td>
<td><input id="EnDeDOM.PW.scorespn" value="1" class="em2" size="2" ></td>
<td><input id="EnDeDOM.PW.spn" value="0" class="em2" ></td>
<!--
<td><input id="EnDeDOM.PW.spn" value="0" class="chr" ></td>
-->
<td><label for="EnDeDOM.PW.spn">Maximum sequence of special characters</label></td>
</tr>
<!-- // ToDo: distinguish upper and lower case, uk and us, -->
<tr><td><input id="EnDeDOM.PW.scorehor" value="1" class="em2" size="2" ></td>
<td colspan="2"><input id="EnDeDOM.PW.key_h" class="text" size="45" >
<select id="EnDeDOM.PW.lan_h" onchange="document.getElementById('EnDeDOM.PW.key_h').value=this.value" >
<option value="^1234567890ß´qwertzuiopü+asdfghjklöä#<yxcvbnm,.-">de</option>
<option value="§1234567890'^qwertzuiopü~asdfghjklöä$<yxcvbnm,.-">ch</option>
<option value="º1234567890'¡qwertyuiop`+asdfghjklñ`ç<zxcvbnm,.-">es</option>
<option value="²1234567890à)qzertyuiop^$qsdfghjklmù*<wxcvbn,;:!" >fr</option>
<option value="`1234567890-=qwertyuiop[]asdfghjkl,./\zxcvbnm,./" >us</option>
</select>
</td>
<td> </td>
<td colspan="3"><label for="EnDeDOM.PW.key_h">horizontal character sequence (keyboard layout)</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scorever" value="1" class="em2" size="2" ></td>
<td colspan="2"><input id="EnDeDOM.PW.key_v" class="text" size="45" >
<select id="EnDeDOM.PW.lan_v" onchange="document.getElementById('EnDeDOM.PW.key_v').value=this.value" >
<option value="^< 1qay 2wsx 3edc 4rfv 5tgb 6yhn 7ujm 8ik, 9ol. 0pö- ßüä `+#" >de</option>
<option value="§< 1qay 2wsx 3edc 4rfv 5tgb 6yhn 7ujm 8ik, 9ol. 0pö- 'üä ^~$" >ch</option>
<option value="º> 1qaz 2wsx 3edc 4rfv 5tgb 6yhn 7ujm 8ik, 9ol. 0pñ- '`' i+Ç" >es</option>
<option value="²< &aqw ézsx "edc 'rfv (tgb -yhn èuj, _ik; çol: àpm! )^ù =$*" >fr</option>
<option value="`\ 1qaz 2wsx 3edc 4rfv 5tgb 6yhn 7ujm 8ik, 9ol. 0p:/ -[' =]\" >us</option>
</select>
<td> </td>
<td colspan="3"><label for="EnDeDOM.PW.key_v">vertical character sequence (keyboard layout)</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.scorerex" value="0" class="em2" size="2" ></td>
<td colspan="2"><input id="EnDeDOM.PW.rex" value="" class="text" size="50" ></td>
<td> </td>
<td colspan="3"><label for="EnDeDOM.PW.rex">user-defined regular expression (JavaScript syntax)</label></td>
</tr>
<tr><td><input id="EnDeDOM.PW.dumm" value="Test" class="em2" size="2" disabled ></td>
<td colspan="2"><input id="EnDeDOM.PW.text" value="" class="text" size="50"></td>
<td> </td>
<td colspan="3"><label for="EnDeDOM.PW.text"> </label></td>
</tr>
</table>
<br><br>
<input id="EnDeDOM.PW.res" value="Reset" type="reset">
<button id="EnDeDOM.PW.run" value="Test" onClick="return EnDeGUI.PW.dispatch(this,'pwd')">test</button>
<br><br>
</div>
</fieldset>
<fieldset id="EnDeDOM.f.QQ" class="function">
<div id="EnDeDOM.QQ.bf" class="head">
<span>
<button id="EnDeDOM.QQ.bq" onClick="return EnDeGUI.show(this);">x</button>
<button id="EnDeDOM.QQ.bh" onClick="return EnDeGUI.help('QQ');">?</button>
</span>
<h2>Browser Quirks</h2>
</div>
<div id="EnDeDOM.QQ" class="quirks" >
<span>
As descibed in <a href="EnDe.man.html#GENERAL_DESIGN_HINTS"
target="_help"> GENERAL DESIGN HINTS</a> the (browser) GUI of
<ende>EnDe</ende> is designed to work with just one click on all
buttons and menu items.<br>
Any form field should have a brief description showing up when
the mouse is over the field or menu item.<br>
Unfortunately there're some browsers in the wild which don't
comply to the standards and behave different. It's sometimes
difficult to get the expected functionality, sometimes even
impossible.<br>
The settings here provide some workarounds for these browsers.
Just choose the settings proper for your browser and reload
the page using the
<button id="EnDeDOM.QQ.qq" onClick="return EnDeGUI.quirks('');">reload</button>
button.<br>
</span>
<ul>
<li>privileges
<button id="EnDeDOM.QQ.rf" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalFileRead</button>
<button id="EnDeDOM.QQ.rb" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalBrowserRead</button>
<button id="EnDeDOM.QQ.rp" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalPreferencesRead</button>
<button id="EnDeDOM.QQ.xp" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalXPConnect</button>
<!--
<button id="EnDeDOM.QQ.wf" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalFileWrite</button>
<button id="EnDeDOM.QQ.wb" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalBrowserWrite</button>
<button id="EnDeDOM.QQ.wp" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalPreferencesWrite</button>
<button id="EnDeDOM.QQ.fa" onClick="return EnDeGUI.privilege(this.innerHTML);" >UniversalFileAccess</button>
-->
<!-- UniversalFileAccess probably Netscape only -->
<br>
<div>
Some browsers (i.e. all mozilla-based) need special privileges
for some actions, mainly reading files. These privileges are
not set automatically but only on demand.<br>
Each button sets the listed privilege. Watch out for exceptions.
<br><b>Buttons work immediately, no [reload] necessary</b>.
</div>
</li>
<li>
<label for="EnDeDOM.QQ.lp"><input id="EnDeDOM.QQ.lp" type="text" size="50" > path to local directory</label>
<br>
<div>
Due to good security reasons some browser restrict access to
the full path of the file given with the <tt>input type=file</tt>
tag. If we want to read such files from the local system
anyway, we need to provide a proper path to the directory.<br>
Default of this path is given in the URL, which is most likely
sufficient if <ende>EnDe</ende> is served from file:///.<br>
NOTE that the default will be a full URL with schema if it is
not file:///.
<br><b>Setting works immediately, no [reload] necessary</b>.
</div>
</li>
<!-- name+title
this menu may be tricky to read, if a browser does not support
the 'title=' attribute in OPTION tags
-->
<li>
<label for="EnDeDOM.QQ.fl"><input id="EnDeDOM.QQ.fl" type="checkbox" >flat menu</label>
<div>
Various problems (see below settings) exist in the behaviour
of standard HTML <tt>SELECT</tt> menus (the traditional popup
menus in one line and the pulldown arrow right).<br>
For example do all menus use the <tt>title=</tt> attribute to provide
additional descriptions, in particular most of the menus added
by the <b>Menu File</b>.<br>
Most <tt>SELECT</tt> menus in <ende>EnDe</ende> can be replaced with menus
build of <tt>UL</tt> and <tt>A</tt> (which support descriptions)
by checking this option. Using flat menus may result in strange
layouts in some sections. It's just an ugly workaround, though ...<br>
NOTE that these menus can be changed permanently by changing
the key <tt>html SELECT</tt> to <tt>html ANCHOR</tt> in
the corresponding menu file (i. e. <b>EnDeMenu.txt</b>).
</div>
</li>
<li>
<label for="EnDeDOM.QQ.ba"><input id="EnDeDOM.QQ.ba" type="radio" name="onclick" checked >onClick</label>
<div>
HTML's <tt>SELECT</tt> menu usualy needs a click on the selected
(<tt>OPTION</tt>) item.
This is necessary wether it is a single or multiline menu. As we
always want to have just one click, the selected item needs to
call the assigned handler when the "onClick" event is triggered.
This is the default setting as implemented in most browsers.
</div>
</li>
<li>
<label for="EnDeDOM.QQ.bb"><input id="EnDeDOM.QQ.bb" type="radio" name="onclick" >onChange</label>
<div>
HTML's <tt>SELECT</tt> menu usualy needs a click on the selected
(<tt>OPTION</tt>) item.
This is necessary wether it is a single or multiline menu. As we
always want to have just one click, the selected item needs to