summaryrefslogtreecommitdiff
path: root/lib/settings.html
blob: 26279d77cac298f3f417de6fd33ad0c90d9bee33 (plain)
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
<div id='setting_bar'>
  <a class="setting_button" href="#general">General</a>
  <a class="setting_button" href="#session">Network &amp Session</a>
  <a class="setting_button" href="#fonts">Fonts</a>
  <a class="setting_button" href="#colors">Colors</a>
  <a class="setting_button" href="#lt">Layout</a>
  <a class="setting_button" href="#hints">Hints</a>
  <a class="setting_button" href="#plugins">Plugins &amp Scripts</a>
  <a class="setting_button" href="#completion">Completion</a>
  <a class="setting_button" href="#misc">Miscellaneous</a>
</div>
<div id='dwb_settings_panel'>
  <div class='dwb_settings_headline'><a name='general'>General</a></div><!--{{{-->
  <div class='dwb_line0'>
    <div class='dwb_attr'>auto-load-images</div>
    <div style='float:right;'>
      <label for='auto-load-images' class='dwb_desc'>Load images automatically</label>
      <input id='auto-load-images' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>auto-resize-window</div>
    <div style='float:right;'>
      <label for='auto-resize-window' class='dwb_desc'>Autoresize the window</label>
      <input id='auto-resize-window' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>auto-shrink-images</div>
    <div style='float:right;'>
      <label for='auto-shrink-images' class='dwb_desc'>Automatically shrink standalone images to fit</label>
      <input id='auto-shrink-images' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-private-browsing</div>
    <div style='float:right;'>
      <label for='enable-private-browsing' class='dwb_desc'>Whether to enable private browsing mode</label>
      <input id='enable-private-browsing' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-spell-checking</div>
    <div style='float:right;'>
      <label for='enable-spell-checking' class='dwb_desc'>Whether to enable spell checking</label>
      <input id='enable-spell-checking' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>resizable-text-areas</div>
    <div style='float:right;'>
      <label for='resizable-text-areas' class='dwb_desc'>Whether to enable private browsing mode</label>
      <input id='resizable-text-areas' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>full-content-zoom</div>
    <div style='float:right;'>
      <label for='full-content-zoom' class='dwb_desc'>Whether the full content is scaled when zooming</label>
      <input id='full-content-zoom' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>default-encoding</div>
    <div style='float:right;'>
      <label for='default-encoding' class='dwb_desc'>Default encoding used to display text</label>
      <input id='default-encoding' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>history-length</div>
    <div style='float:right;'>
      <label for='history-length' class='dwb_desc'>Length of browsing history</label>
      <input id='history-length' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>scroll-step</div>
    <div style='float:right;'>
      <label for='scroll-step' class='dwb_desc'>Scroll step</label>
      <input id='scroll-step' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>spell-checking-languages</div>
    <div style='float:right;'>
      <label for='spell-checking-languages' class='dwb_desc'>Languages used for spell checking, seperated by commas</label>
      <input id='spell-checking-languages' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>startpage</div>
    <div style='float:right;'>
      <label for='startpage' class='dwb_desc'>The default homepage</label>
      <input id='startpage' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>zoom-level</div>
    <div style='float:right;'>
      <label for='zoom-level' class='dwb_desc'>The default zoom level</label>
      <input id='zoom-level' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>zoom-step</div>
    <div style='float:right;'>
      <label for='zoom-step' class='dwb_desc'>The zoom step</label>
      <input id='zoom-step' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='session'>Network &amp Session</a></div><!--{{{-->
  <div class='dwb_line0'>
    <div class='dwb_attr'>cookies</div>
    <div style='float:right;'>
      <label for='cookies' class='dwb_desc'>Whether to allow all cookies</label>
      <input id='cookies' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-dns-prefetching</div>
    <div style='float:right;'>
      <label for='enable-dns-prefetching' class='dwb_desc'>Whether webkit prefetches domain names</label>
      <input id='enable-dns-prefetching' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>proxy</div>
    <div style='float:right;'>
      <label for='proxy' class='dwb_desc'>Whether to use a HTTP-proxy</label>
      <input id='proxy' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>single-instance</div>
    <div style='float:right;'>
      <label for='single-instance' class='dwb_desc'>Whether to have only one instance</label>
      <input id='single-instance' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>save-session</div>
    <div style='float:right;'>
      <label for='save-session' class='dwb_desc'>Whether to Automatically save sessions</label>
      <input id='save-session' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>proxy-url</div>
    <div style='float:right;'>
      <label for='proxy-url' class='dwb_desc'>The HTTP-proxy url</label>
      <input id='proxy-url' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>user-agent</div>
    <div style='float:right;'>
      <label for='user-agent' class='dwb_desc'>The user agent string</label>
      <input id='user-agent' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='fonts'>Fonts</a></div><!--{{{-->
  <div class='dwb_line1'>
    <div class='dwb_attr'>font</div>
    <div style='float:right;'>
      <label for='font' class='dwb_desc'>Default font used for the ui</label>
      <input id='font' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>font-inactive</div>
    <div style='float:right;'>
      <label for='font-inactive' class='dwb_desc'>Font for views without focus</label>
      <input id='font-inactive' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>font-completion</div>
    <div style='float:right;'>
      <label for='font-completion' class='dwb_desc'>Font for tab-completion</label>
      <input id='font-completion' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>font-entry</div>
    <div style='float:right;'>
      <label for='font-entry' class='dwb_desc'>Font for the addressbar</label>
      <input id='font-entry' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>cursive-font-family</div>
    <div style='float:right;'>
      <label for='cursive-font-family' class='dwb_desc'>Cursive font family used to display text</label>
      <input id='cursive-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>default-font-family</div>
    <div style='float:right;'>
      <label for='default-font-family' class='dwb_desc'>Default font family used to display text</label>
      <input id='default-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>default-font-size</div>
    <div style='float:right;'>
      <label for='default-font-size' class='dwb_desc'>Default font size used to display text</label>
      <input id='default-font-size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>default-monospace-font-size</div>
    <div style='float:right;'>
      <label for='default-monospace-font-size' class='dwb_desc'>Default monospace font size used to display text</label>
      <input id='default-monospace-font-size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>fantasy-font-family</div>
    <div style='float:right;'>
      <label for='fantasy-font-family' class='dwb_desc'>Fantasy font family used to display text</label>
      <input id='fantasy-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>minimum-font-size</div>
    <div style='float:right;'>
      <label for='minimum-font-size' class='dwb_desc'>Minimum font size used to display text</label>
      <input id='minimum-font-size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>monospace-font-family</div>
    <div style='float:right;'>
      <label for='monospace-font-family' class='dwb_desc'>Monospace font family used to display text</label>
      <input id='monospace-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>minimum-logical-font-size</div>
    <div style='float:right;'>
      <label for='minimum-logical-font-size' class='dwb_desc'>Minimum logical font size used to display text</label>
      <input id='minimum-logical-font-size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>sans-serif-font-family</div>
    <div style='float:right;'>
      <label for='sans-serif-font-family' class='dwb_desc'>Sans serif font family used to display text</label>
      <input id='sans-serif-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>serif-font-family</div>
    <div style='float:right;'>
      <label for='serif-font-family' class='dwb_desc'>Serif font family used to display text</label>
      <input id='serif-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='colors'>Colors</a></div><!--{{{-->
  <div class='dwb_line1'>
    <div class='dwb_attr'>active-fg-color</div>
    <div style='float:right;'>
      <label for='active-fg-color' class='dwb_desc'>Foreground color of the active view</label>
      <input id='active-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>active-bg-color</div>
    <div style='float:right;'>
      <label for='active-bg-color' class='dwb_desc'>Background color of the active view</label>
      <input id='active-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>normal-fg-color</div>
    <div style='float:right;'>
      <label for='normal-fg-color' class='dwb_desc'>Foreground color of the normal view</label>
      <input id='normal-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>normal-bg-color</div>
    <div style='float:right;'>
      <label for='normal-bg-color' class='dwb_desc'>Background color of the normal view</label>
      <input id='normal-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>tab-active-fg-color</div>
    <div style='float:right;'>
      <label for='tab-active-fg-color' class='dwb_desc'>Foreground color of the active tab</label>
      <input id='tab-active-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>tab-active-bg-color</div>
    <div style='float:right;'>
      <label for='tab-active-bg-color' class='dwb_desc'>Background color of the active tab</label>
      <input id='tab-active-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>tab-normal-fg-color</div>
    <div style='float:right;'>
      <label for='tab-normal-fg-color' class='dwb_desc'>Foreground color of the normal tab</label>
      <input id='tab-normal-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>tab-normal-bg-color</div>
    <div style='float:right;'>
      <label for='tab-normal-bg-color' class='dwb_desc'>Background color of the normal tab</label>
      <input id='tab-normal-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>tab-number-color</div>
    <div style='float:right;'>
      <label for='tab-number-color' class='dwb_desc'>Color of the tabnumber</label>
      <input id='tab-number-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>active-completion-fg-color</div>
    <div style='float:right;'>
      <label for='active-completion-fg-color' class='dwb_desc'>Foreground color of the active completion item</label>
      <input id='active-completion-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>active-completion-bg-color</div>
    <div style='float:right;'>
      <label for='active-completion-bg-color' class='dwb_desc'>Background color of the active completion item</label>
      <input id='active-completion-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>normal-completion-fg-color</div>
    <div style='float:right;'>
      <label for='normal-completion-fg-color' class='dwb_desc'>Foreground color of normal completion items</label>
      <input id='normal-completion-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>normal-completion-bg-color</div>
    <div style='float:right;'>
      <label for='normal-completion-bg-color' class='dwb_desc'>Background color of normal completion items</label>
      <input id='normal-completion-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>ssl-trusted-color</div>
    <div style='float:right;'>
      <label for='ssl-trusted-color' class='dwb_desc'>Color for encrypted sites, trusted certificate</label>
      <input id='ssl-trusted-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>ssl-untrusted-color</div>
    <div style='float:right;'>
      <label for='ssl-untrusted-color' class='dwb_desc'>Color for encrypted sites, untrusted certificate</label>
      <input id='ssl-untrusted-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>insertmode-fg-color</div>
    <div style='float:right;'>
      <label for='insertmode-fg-color' class='dwb_desc'>Foreground color of the statusbar in insertmode</label>
      <input id='insertmode-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>insertmode-bg-color</div>
    <div style='float:right;'>
      <label for='insertmode-bg-color' class='dwb_desc'>Background color of the statusbar in insertmode</label>
      <input id='insertmode-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>status-allowed-color</div>
    <div style='float:right;'>
      <label for='status-allowed-color' class='dwb_desc'>Color for script blocker, status allowed</label>
      <input id='status-allowed-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>status-blocked-color</div>
    <div style='float:right;'>
      <label for='status-blocked-color' class='dwb_desc'>Color for script blocker, status blocked</label>
      <input id='status-blocked-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>error-color</div>
    <div style='float:right;'>
      <label for='error-color' class='dwb_desc'>Color for error messages</label>
      <input id='error-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='lt'>Layout</a></div><!--{{{-->
  <div class='dwb_line1'>
    <div class='dwb_attr'>background-tabs</div>
    <div style='float:right;'>
      <label for='background-tabs' class='dwb_desc'>Whether to open tabs in background</label>
      <input id='background-tabs' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-frame-flattening</div>
    <div style='float:right;'>
      <label for='enable-frame-flattening' class='dwb_desc'>Whether to enable frame flattening</label>
      <input id='enable-frame-flattening' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enforce-96-dpi</div>
    <div style='float:right;'>
      <label for='enforce-96-dpi' class='dwb_desc'>Enforce a resolution of 96 dpi</label>
      <input id='enforce-96-dpi' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>tabbed-brosing</div>
    <div style='float:right;'>
      <label for='tabbed-browsing' class='dwb_desc'>Whether to enable tabbed browsing</label>
      <input id='tabbed-browsing' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>default-width</div>
    <div style='float:right;'>
      <label for='default-width' class='dwb_desc'>Default width of the window</label>
      <input id='default-width' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>default-height</div>
    <div style='float:right;'>
      <label for='default-height' class='dwb_desc'>Default height of the window</label>
      <input id='default-height' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>factor</div>
    <div style='float:right;'>
      <label for='factor' class='dwb_desc'>Zoom factor of the tiling area</label>
      <input id='factor' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hide-tabbar</div>
    <div style='float:right;'>
      <label for='hide-tabbar' class='dwb_desc'>Whether to hide the tabbar  (never, always, tiled)</label>
      <input id='hide-tabbar' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>layout</div>
    <div style='float:right;'>
      <label for='layout' class='dwb_desc'>The default layout (Normal, Bottomstack, Maximized)</label>
      <input id='layout' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>message-delay</div>
    <div style='float:right;'>
      <label for='message-delay' class='dwb_desc'>Time messages are shown,
        in seconds</label>
      <input id='message-delay' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>size</div>
    <div style='float:right;'>
      <label for='size' class='dwb_desc'>Tiling area size in percent</label>
      <input id='size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>user-stylesheet-uri</div>
    <div style='float:right;'>
      <label for='user-stylesheet-uri' class='dwb_desc'>The uri of a stylesheet applied to every page</label>
      <input id='user-stylesheet-uri' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='hints'>Hints</a></div><!--{{{-->
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-letter-seq</div>
    <div style='float:right;'>
      <label for='hint-letter-seq' class='dwb_desc'>Letter sequence for letter hints</label>
      <input id='hint-letter-seq' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hint-style</div>
    <div style='float:right;'>
      <label for='hint-style' class='dwb_desc'>Whether to use 'number' or 'letter' hints</label>
      <input id='hint-style' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-font-size</div>
    <div style='float:right;'>
      <label for='hint-font-size' class='dwb_desc'>Font size of hints</label>
      <input id='hint-font-size' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hint-font-weight</div>
    <div style='float:right;'>
      <label for='hint-font-weight' class='dwb_desc'>Font weight of hints</label>
      <input id='hint-font-weight' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-font-family</div>
    <div style='float:right;'>
      <label for='hint-font-family' class='dwb_desc'>Font family of hints</label>
      <input id='hint-font-family' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hint-fg-color</div>
    <div style='float:right;'>
      <label for='hint-fg-color' class='dwb_desc'>Foreground color of hints</label>
      <input id='hint-fg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-bg-color</div>
    <div style='float:right;'>
      <label for='hint-bg-color' class='dwb_desc'>Background color of hints</label>
      <input id='hint-bg-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hint-active-color</div>
    <div style='float:right;'>
      <label for='hint-active-color' class='dwb_desc'>Color of active links in hintmode</label>
      <input id='hint-active-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-normal-color</div>
    <div style='float:right;'>
      <label for='hint-normal-color' class='dwb_desc'>Color of inactive links in hintmode</label>
      <input id='hint-normal-color' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>hint-border</div>
    <div style='float:right;'>
      <label for='hint-border' class='dwb_desc'>Border used for hints</label>
      <input id='hint-border' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>hint-opacity</div>
    <div style='float:right;'>
      <label for='hint-opacity' class='dwb_desc'>Opacity used for hints</label>
      <input id='hint-opacity' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='plugins'>Plugins &amp Scripts</a></div><!--{{{-->
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-java-applet</div>
    <div style='float:right;'>
      <label for='enable-java-applet' class='dwb_desc'>Whether to enable java applets</label>
      <input id='enable-java-applet' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-plugins</div>
    <div style='float:right;'>
      <label for='enable-plugins' class='dwb_desc'>Whether to enable plugins</label>
      <input id='enable-plugins' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-scripts</div>
    <div style='float:right;'>
      <label for='enable-scripts' class='dwb_desc'>Enable embedded scripting languages</label>
      <input id='enable-scripts' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>javascript-can-access-clipboard</div>
    <div style='float:right;'>
      <label for='javascript-can-access-clipboard' class='dwb_desc'>Whether javascript can access the clipboard</label>
      <input id='javascript-can-access-clipboard' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>javascript-can-open-windows-automatically</div>
    <div style='float:right;'>
      <label for='javascript-can-open-windows-automatically' class='dwb_desc'>Whether javascript can open windows</label>
      <input id='javascript-can-open-windows-automatically' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>adblocker</div>
    <div style='float:right;'>
      <label for='adblocker' class='dwb_desc'>Whether to block advertisements via a filterlist</label>
      <input id='adblocker' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='completion'>Completion</a></div><!--{{{-->
  <div class='dwb_line0'>
    <div class='dwb_attr'>auto-completion</div>
    <div style='float:right;'>
      <label for='auto-completion' class='dwb_desc'>Whether to show possible shortcuts</label>
      <input id='auto-completion' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>complete-bookmarks</div>
    <div style='float:right;'>
      <label for='complete-bookmarks' class='dwb_desc'>Whether to enable tabcompletion for bookmarks</label>
      <input id='complete-bookmarks' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>complete-commands</div>
    <div style='float:right;'>
      <label for='complete-commands' class='dwb_desc'>Whether to enable tabcompletion for command history</label>
      <input id='complete-commands' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>complete-history</div>
    <div style='float:right;'>
      <label for='complete-history' class='dwb_desc'>Whether to enable tabcompletion for browsing history</label>
      <input id='complete-history' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>complete-searchengines</div>
    <div style='float:right;'>
      <label for='complete-searchengines' class='dwb_desc'>Whether to enable tabcompletion for searchengines</label>
      <input id='complete-searchengines' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>complete-userscripts</div>
    <div style='float:right;'>
      <label for='complete-userscripts' class='dwb_desc'>Whether to enable tabcompletion for userscripts</label>
      <input id='complete-userscripts' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
  <div class='dwb_settings_headline'><a name='misc'>Miscellaneous</a></div><!--{{{-->
  <div class='dwb_line0'>
    <div class='dwb_attr'>editable</div>
    <div style='float:right;'>
      <label for='editable' class='dwb_desc'>Whether content can be modified</label>
      <input id='editable' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-caret-browsing</div>
    <div style='float:right;'>
      <label for='enable-caret-browsing' class='dwb_desc'>Whether to enable caret browsing</label>
      <input id='enable-caret-browsing' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-default-context-menu</div>
    <div style='float:right;'>
      <label for='enable-default-context-menu' class='dwb_desc'>Whether to enable the right click context menu</label>
      <input id='enable-default-context-menu' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-developer-extras</div>
    <div style='float:right;'>
      <label for='enable-developer-extras' class='dwb_desc'>Whether developer extensions should be enabled</label>
      <input id='enable-developer-extras' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-dom-paste</div>
    <div style='float:right;'>
      <label for='enable-dom-paste' class='dwb_desc'>Whether to enable DOM paste</label>
      <input id='enable-dom-paste' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-file-access-from-file-uris</div>
    <div style='float:right;'>
      <label for='enable-file-access-from-file-uris' class='dwb_desc'>Whether file access from file uris is allowed</label>
      <input id='enable-file-access-from-file-uris' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-html5-database</div>
    <div style='float:right;'>
      <label for='enable-html5-database' class='dwb_desc'>Enable HTML5 client side SQL-database support</label>
      <input id='enable-html5-database' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-html5-local-storage</div>
    <div style='float:right;'>
      <label for='enable-html5-local-storage' class='dwb_desc'>Enable HTML5 local storage</label>
      <input id='enable-html5-local-storage' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-offline-web-application-cache</div>
    <div style='float:right;'>
      <label for='enable-offline-web-application-cache' class='dwb_desc'>Enable HTML5 offline web application cache</label>
      <input id='enable-offline-web-application-cache' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-page-cache</div>
    <div style='float:right;'>
      <label for='enable-page-cache' class='dwb_desc'>Enable page cache</label>
      <input id='enable-page-cache' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-site-specific-quirks</div>
    <div style='float:right;'>
      <label for='enable-site-specific-quirks' class='dwb_desc'>Enable site specific compatibility workarounds</label>
      <input id='enable-site-specific-quirks' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-spatial-navigation</div>
    <div style='float:right;'>
      <label for='enable-spatial-navigation' class='dwb_desc'>Enable spatial
        navigation</label>
      <input id='enable-spatial-navigation' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>enable-universal-access-from-file-uris</div>
    <div style='float:right;'>
      <label for='enable-universal-access-from-file-uris' class='dwb_desc'>Whether to allow files loaded through file: </label>
      <input id='enable-universal-access-from-file-uris' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>enable-xss-auditor</div>
    <div style='float:right;'>
      <label for='enable-xss-auditor' class='dwb_desc'>Whether to enable the xss auditor</label>
      <input id='enable-xss-auditor' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>download-use-external-program</div>
    <div style='float:right;'>
      <label for='download-use-external-program' class='dwb_desc'>Whether to use an external download helper</label>
      <input id='download-use-external-program' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>print-backgrounds</div>
    <div style='float:right;'>
      <label for='print-backgrounds' class='dwb_desc'>Whether background images should be printed</label>
      <input id='print-backgrounds' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>tab-key-cycles-through-elements</div>
    <div style='float:right;'>
      <label for='tab-key-cycles-through-elements' class='dwb_desc'>Tab cycles through elements in insert mode</label>
      <input id='tab-key-cycles-through-elements' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>use-fifo</div>
    <div style='float:right;'>
      <label for='use-fifo' class='dwb_desc'>Create a fifo for communication</label>
      <input id='use-fifo' type='checkbox'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>custom-encoding</div>
    <div style='float:right;'>
      <label for='custom-encoding' class='dwb_desc'>The custom encoding of the view</label>
      <input id='custom-encoding' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>download-external-command</div>
    <div style='float:right;'>
      <label for='download-external-command' class='dwb_desc'>External application used for downloads</label>
      <input id='download-external-command' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>history-length</div>
    <div style='float:right;'>
      <label for='history-length' class='dwb_desc'>Length of the browsing history</label>
      <input id='history-length' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line1'>
    <div class='dwb_attr'>mail-client</div>
    <div style='float:right;'>
      <label for='mail-client' class='dwb_desc'>Application used for mailto:-urls</label>
      <input id='mail-client' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div>
  <div class='dwb_line0'>
    <div class='dwb_attr'>ftp-client</div>
    <div style='float:right;'>
      <label for='ftp-client' class='dwb_desc'>Application used for ftp</label>
      <input id='ftp-client' type='text'> 
    </div>
    <div style='clear:both;'></div>
  </div><!--}}}-->
</div>