-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.html
1418 lines (1378 loc) · 69.4 KB
/
configuration.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="Joomla! - Open Source Content Management">
<title>Testing Admin - Administration - Control Panel</title>
<link href="/administrator/templates/isis/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="assets/css/chosen.css" type="text/css">
<link rel="stylesheet" href="assets/css/modal.css" type="text/css">
<link rel="stylesheet" href="assets/css/template.css" type="text/css">
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/jquery-noconflict.js" type="text/javascript"></script>
<script src="assets/js/jquery-migrate.min.js" type="text/javascript"></script>
<script src="assets/js/tabs-state.js" type="text/javascript"></script>
<script src="assets/js/mootools-core.js" type="text/javascript"></script>
<script src="assets/js/core.js" type="text/javascript"></script>
<script src="assets/js/punycode.js" type="text/javascript"></script>
<script src="assets/js/validate.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/chosen.jquery.min.js" type="text/javascript"></script>
<script src="assets/js/html5fallback.js" type="text/javascript"></script>
<script src="assets/js/mootools-more.js" type="text/javascript"></script>
<script src="assets/js/modal.js" type="text/javascript"></script>
<script src="assets/js/helpsite.js" type="text/javascript"></script>
<script src="assets/js/cms.js" type="text/javascript"></script>
<script src="assets/js/template.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.hasTooltip').tooltip({"html": true,"container": "body"});
});
jQuery(document).ready(function (){
jQuery('select').chosen({"disable_search_threshold":10,"allow_single_deselect":true,"placeholder_text_multiple":"Select some options","placeholder_text_single":"Select an option","no_results_text":"No results match"});
});
jQuery(function($) {
SqueezeBox.initialize({});
SqueezeBox.assign($('a.modal').get(), {
parse: 'rel'
});
});
function jInsertFieldValue(value, id) {
var $ = jQuery.noConflict();
var old_value = $("#" + id).val();
if (old_value != value) {
var $elem = $("#" + id);
$elem.val(value);
$elem.trigger("change");
if (typeof($elem.get(0).onchange) === "function") {
$elem.get(0).onchange();
}
jMediaRefreshPreview(id);
}
}
function jMediaRefreshPreview(id) {
var $ = jQuery.noConflict();
var value = $("#" + id).val();
var $img = $("#" + id + "_preview");
if ($img.length) {
if (value) {
$img.attr("src", "http://localjoomla/" + value);
$("#" + id + "_preview_empty").hide();
$("#" + id + "_preview_img").show()
} else {
$img.attr("src", "")
$("#" + id + "_preview_empty").show();
$("#" + id + "_preview_img").hide();
}
}
}
function jMediaRefreshPreviewTip(tip)
{
var $ = jQuery.noConflict();
var $tip = $(tip);
var $img = $tip.find("img.media-preview");
$tip.find("div.tip").css("max-width", "none");
var id = $img.attr("id");
id = id.substring(0, id.length - "_preview".length);
jMediaRefreshPreview(id);
$tip.show();
}
jQuery(function($) {
$('.hasTipPreview').each(function() {
var title = $(this).attr('title');
if (title) {
var parts = title.split('::', 2);
$(this).data('tip:title', parts[0]);
$(this).data('tip:text', parts[1]);
}
});
var JTooltips = new Tips($('.hasTipPreview').get(), {"maxTitleChars": 50,"fixed": false,"onShow": jMediaRefreshPreviewTip});
});
var helpsite_base = "http://localjoomla/";
</script>
<!-- Template color -->
<!-- Template header color -->
<!-- Sidebar background color -->
<!--[if lt IE 9]>
<script src="../media/jui/js/html5.js"></script>
<![endif]-->
</head>
<body class="admin com_cpanel view- layout- task- itemid-" data-spy="scroll" data-target=".subhead" data-offset="87">
<!-- Top Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="admin-logo" href="/administrator"><span class="icon-joomla"></span></a>
<a class="brand hidden-desktop hidden-tablet" href="http://localjoomla/" title="Preview Testing Admin" target="_blank">Testing Admin <span class="icon-out-2 small"></span></a>
<div class="nav-collapse">
<ul id="menu" class="nav ">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">System <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="menu-cpanel" href="#">Control Panel</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-config" href="#">Global Configuration</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-checkin" href="#">Global Check-in</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-clear" href="#">Clear Cache</a></li>
<li><a class="menu-purge" href="#">Purge Expired Cache</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-info" href="#">System Information</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Users <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-toggle menu-user" data-toggle="dropdown" href="#">User Manager</a>
<ul id="menu-com-users-users" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New User</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-groups" data-toggle="dropdown" href="#">Groups</a>
<ul id="menu-com-users-groups" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Group</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-levels" data-toggle="dropdown" href="#">Access Levels</a>
<ul id="menu-com-users-levels" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Access Level</a></li>
</ul>
</li>
<li class="divider"><span></span></li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-user-note" data-toggle="dropdown" href="#">User Notes</a>
<ul id="menu-com-users-notes" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add User Note</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-category" data-toggle="dropdown" href="#">User Note Categories</a>
<ul id="menu-com-categories-categories-com-users" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Category</a></li>
</ul>
</li>
<li class="divider"><span></span></li>
<li><a class="menu-massmail" href="#">Mass Mail Users</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Menus <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-toggle menu-menumgr" data-toggle="dropdown" href="#">Menu Manager</a>
<ul id="menu-com-menus-menus" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Menu</a></li>
</ul>
</li>
<li class="divider"><span></span></li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-menu" data-toggle="dropdown" href="#">Main Menu <i class="icon-home"></i></a>
<ul id="menu-com-menus-items-mainmenu" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Menu Item</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-menu" data-toggle="dropdown" href="#">Author Menu</a>
<ul id="menu-com-menus-items-authormenu" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Menu Item</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-menu" data-toggle="dropdown" href="#">Bottom Menu</a>
<ul id="menu-com-menus-items-bottommenu" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Menu Item</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Content <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-toggle menu-article" data-toggle="dropdown" href="#">Article Manager</a>
<ul id="menu-com-content" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Article</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-category" data-toggle="dropdown" href="#">Category Manager</a>
<ul id="menu-com-categories-com-content" class="dropdown-menu menu-component">
<li><a class="menu-newarticle" href="#">Add New Category</a></li>
</ul>
</li>
<li><a class="menu-featured" href="#">Featured Articles</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-media" href="#">Media Manager</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Components <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-toggle menu-banners" data-toggle="dropdown" href="#">Banners</a>
<ul id="menu-com-banners" class="dropdown-menu menu-component">
<li><a class="menu-banners" href="#">Banners</a></li>
<li><a class="menu-banners-cat" href="#">Categories</a></li>
<li><a class="menu-banners-clients" href="#">Clients</a></li>
<li><a class="menu-banners-tracks" href="#">Tracks</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-contact" data-toggle="dropdown" href="#">Contacts</a>
<ul id="menu-com-contact" class="dropdown-menu menu-component">
<li><a class="menu-contact" href="#">Contacts</a></li>
<li><a class="menu-contact-cat" href="#">Categories</a></li>
</ul>
</li>
<li><a class="menu-joomlaupdate" href="#">Joomla! Update</a></li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-messages" data-toggle="dropdown" href="#">Messaging</a>
<ul id="menu-com-messages" class="dropdown-menu menu-component">
<li><a class="menu-messages-add" href="#">New Private Message</a></li>
<li><a class="menu-messages-read" href="#">Read Private Messages</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-newsfeeds" data-toggle="dropdown" href="#">Newsfeeds</a>
<ul id="menu-com-newsfeeds" class="dropdown-menu menu-component">
<li><a class="menu-newsfeeds" href="#">Feeds</a></li>
<li><a class="menu-newsfeeds-cat" href="#">Categories</a></li>
</ul>
</li>
<li><a class="menu-postinstall" href="#">Post-installation Messages</a></li>
<li><a class="menu-redirect" href="#">Redirect</a></li>
<li><a class="menu-search" href="#">Search</a></li>
<li><a class="menu-finder" href="#">Smart Search</a></li>
<li><a class="menu-tags" href="#">Tags</a></li>
<li class="dropdown-submenu"><a class="dropdown-toggle menu-weblinks" data-toggle="dropdown" href="#">Weblinks</a>
<ul id="menu-com-weblinks" class="dropdown-menu menu-component">
<li><a class="menu-weblinks" href="#">Links</a></li>
<li><a class="menu-weblinks-cat" href="#">Categories</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Extensions <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="menu-install" href="#">Extension Manager</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-module" href="#">Module Manager</a></li>
<li><a class="menu-plugin" href="#">Plugin Manager</a></li>
<li><a class="menu-themes" href="#">Template Manager</a></li>
<li><a class="menu-language" href="#">Language Manager</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Help <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="menu-help" href="#">Joomla! Help</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-help-forum" href="#" target="_blank">Official Support Forum</a></li>
<li><a class="menu-help-docs" href="#" target="_blank">Documentation Wiki</a></li>
<li class="divider"><span></span></li>
<li><a class="menu-help-jed" href="#" target="_blank">Joomla! Extensions</a></li>
<li><a class="menu-help-trans" href="#" target="_blank">Joomla! Translations</a></li>
<li><a class="menu-help-jrd" href="#" target="_blank">Joomla! Resources</a></li>
<li><a class="menu-help-community" href="#" target="_blank">Community Portal</a></li>
<li><a class="menu-help-security" href="#" target="_blank">Security Center</a></li>
<li><a class="menu-help-dev" href="#" target="_blank">Developer Resources</a></li>
<li><a class="menu-help-shop" href="#" target="_blank">Joomla! Shop</a></li>
</ul>
</li>
</ul>
<ul class="nav nav-user pull-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"><span class="icon-cog"></span>
<b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<span>
<span class="icon-user"></span>
<strong>{User Name}</strong>
</span>
</li>
<li class="divider"></li>
<li class="">
<a href="#">Edit Account</a>
</li>
<li class="divider"></li>
<li class="">
<a href="#">Logout</a>
</li>
</ul>
</li>
</ul>
<a class="brand visible-desktop visible-tablet" href="#" title="Preview {Website Title}" target="_blank">{Website Title}<span class="icon-out-2 small"></span></a>
</div>
<!--/.nav-collapse -->
</div>
</div>
</nav>
<!-- Header -->
<header class="header">
<div class="container-logo">
<img src="assets/images/logo.png" class="logo" alt="Testing Admin">
</div>
<div class="container-title">
<h1 class="page-title"><span class="icon-home-2 cpanel"></span>Control Panel</h1>
</div>
</header>
<a class="btn btn-subhead" data-toggle="collapse" data-target=".subhead-collapse">Toolbar<i class="icon-wrench"></i></a>
<div class="subhead-collapse collapse">
<div class="subhead">
<div class="container-fluid">
<div id="container-collapse" class="container-collapse"></div>
<div class="row-fluid">
<div class="span12">
<div class="btn-toolbar" id="toolbar">
<div class="btn-wrapper" id="toolbar-apply">
<button onclick="Joomla.submitbutton('config.save.application.apply')" class="btn btn-small btn-success">
<span class="icon-apply icon-white"></span>
Save</button>
</div>
<div class="btn-wrapper" id="toolbar-save">
<button onclick="Joomla.submitbutton('config.save.application.save')" class="btn btn-small">
<span class="icon-save"></span>
Save & Close</button>
</div>
<div class="btn-wrapper" id="toolbar-cancel">
<button onclick="Joomla.submitbutton('config.cancel.application')" class="btn btn-small">
<span class="icon-cancel"></span>
Cancel</button>
</div>
<div class="btn-wrapper" id="toolbar-help">
<button onclick="Joomla.popupWindow('http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help33:Site_Global_Configuration', 'Help', 700, 500, 1)" rel="help" class="btn btn-small">
<span class="icon-question-sign"></span>
Help</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- container-fluid -->
<div class="container-fluid container-main">
<section id="content">
<!-- Begin Content -->
<div class="row-fluid">
<div class="span12">
<div id="system-message-container">
</div>
<div class="row-fluid">
<!-- Begin Sidebar -->
<div id="sidebar" class="span2">
<div class="sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">System</li>
<li class=""><a href="#">Global Configuration</a></li>
<li class="divider"></li>
<li class="nav-header">Component</li>
<li><a href="#">Banners</a></li>
<li><a href="#">Cache Manager</a></li>
<li><a href="#">Check-in</a></li>
<li><a href="#">Contacts</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Smart Search</a></li>
<li><a href="#">Installation Manager</a></li>
<li><a href="#">Joomla! Update</a></li>
<li><a href="#">Language Manager</a></li>
<li><a href="#">Media Manager</a></li>
<li><a href="#">Menus Manager</a></li>
<li><a href="#">Messaging</a></li>
<li><a href="#">Module Manager</a></li>
<li><a href="#">Newsfeeds</a></li>
<li><a href="#">Plugins Manager</a></li>
<li><a href="#">Post-installation Messages</a></li>
<li><a href="#">Redirect</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Tags</a></li>
<li><a href="#">Template Manager</a></li>
<li><a href="#">Users Manager</a></li>
<li><a href="#">Weblinks</a></li>
</ul>
</div>
</div>
<!-- End Sidebar -->
<!-- Begin Content -->
<div class="span10">
<ul class="nav nav-tabs">
<li class="active"><a href="#page-site" data-toggle="tab">Site</a></li>
<li><a href="#page-permissions" data-toggle="tab">Permissions</a></li>
<li><a href="#page-filters" data-toggle="tab">Text Filters</a></li>
</ul>
<div id="config-document" class="tab-content">
<div id="page-site" class="tab-pane active">
<div class="row-fluid">
<div class="span6">
<fieldset class="form-horizontal">
<legend>Site Settings</legend>
<div class="control-group">
<div class="control-label">
<label id="jform_sitename-lbl" for="jform_sitename" class="hasTooltip required" title="" data-original-title="<strong>Site Name</strong><br />Enter the name of your Web site. This will be used in various locations (e.g. the backend browser title bar and <em>Site Offline</em> pages).">
Site Name<span class="star"> *</span></label>
</div>
<div class="controls"><input type="text" name="jform[sitename]" id="jform_sitename" value="Testing Admin" class="required" size="50" required="required" aria-required="true"></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_offline-lbl" for="jform_offline" class="hasTooltip" title="" data-original-title="<strong>Site Offline</strong><br />Select whether access to the Site frontend is available. If Yes, the frontend will display or not a message depending on the settings below.">
Site Offline</label></div>
<div class="controls"><fieldset id="jform_offline" class="radio btn-group btn-group-yesno"><input type="radio" id="jform_offline0" name="jform[offline]" value="1"><label for="jform_offline0">Yes</label><input type="radio" id="jform_offline1" name="jform[offline]" value="0" checked="checked"><label for="jform_offline1" class="btn-danger">No</label></fieldset></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_display_offline_message-lbl" for="jform_display_offline_message" class="hasTooltip" title="" data-original-title="<strong>Offline Message</strong><br />Display or not a frontend message when the site is offline. The custom offline message uses the value defined in the 'Custom message' field. The language offline message uses the value defined in the site language ini file.">
Offline Message</label></div>
<div class="controls">
<select id="jform_display_offline_message" name="jform[display_offline_message]" class="chzn-done" style="display: none;">
<option value="0">Hide</option>
<option value="1" selected="selected">Use Custom Message</option>
<option value="2">Use Site Language Default Message</option>
</select>
</div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_offline_message-lbl" for="jform_offline_message" class="hasTooltip" title="" data-original-title="<strong>Custom Message</strong><br />The custom offline message will be used if the 'Offline Message' field is set to 'Use custom message'.">
Custom Message</label></div>
<div class="controls"><textarea name="jform[offline_message]" id="jform_offline_message" cols="60" rows="2">This site is down for maintenance.<br /> Please check back again soon.</textarea></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_offline_image-lbl" for="jform_offline_image" class="hasTooltip" title="" data-original-title="<strong>Offline Image</strong><br />An optional image to be displayed on the default offline page. Make sure the image is less than 400px wide.">
Offline Image</label></div>
<div class="controls">
<div class="input-prepend input-append">
<div class="media-preview add-on"><span class="hasTipPreview" title=""><i class="icon-eye"></i></span></div>
<input type="text" name="jform[offline_image]" id="jform_offline_image" value="" readonly="readonly" class="input-small">
<a class="modal btn" title="Select" href="modal.html" rel="{handler: 'iframe', size: {x: 800, y: 500}}">Select</a><a class="btn hasTooltip" title="" href="#" onclick="jInsertFieldValue('', 'jform_offline_image');return false;" data-original-title="Clear"><i class="icon-remove"></i></a>
</div>
</div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_feed_email-lbl" for="jform_feed_email" class="hasTooltip" title="" data-original-title="<strong>Feed email</strong><br />The RSS and Atom newsfeeds include the author's email address. Select Author Email to use each author's email (from the User Manager) in the news feed. Select Site Email to include the site 'Mail from' email address for each article.">
Feed email</label></div>
<div class="controls">
<select id="jform_feed_email" name="jform[feed_email]" class="chzn-done" style="display: none;">
<option value="author" selected="selected">Author Email</option>
<option value="site">Site Email</option>
<option value="none">No Email</option>
</select>
</div>
</div>
</fieldset>
</div>
<div class="span6">
<fieldset class="form-horizontal">
<legend>SEO Settings</legend>
<div class="control-group">
<div class="control-label"><label id="jform_sef-lbl" for="jform_sef" class="hasTooltip" title="" data-original-title="<strong>Search Engine Friendly URLs</strong><br />Select whether or not the URLs are optimised for Search Engines.">
Search Engine Friendly URLs</label></div>
<div class="controls"><fieldset id="jform_sef" class="radio btn-group btn-group-yesno"><input type="radio" id="jform_sef0" name="jform[sef]" value="1" checked="checked"><label for="jform_sef0" class="btn btn-success">Yes</label><input type="radio" id="jform_sef1" name="jform[sef]" value="0"><label for="jform_sef1" class="btn">No</label></fieldset></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_sef_rewrite-lbl" for="jform_sef_rewrite" class="hasTooltip" title="" data-original-title="<strong>Use URL rewriting</strong><br />Select to use a server's rewrite engine to catch URLs that meet specific conditions and rewrite them as directed. Available for IIS 7 and Apache. <br /><strong>Apache users only!</strong><br /> Rename htaccess.txt to .htaccess before activating.<br /><strong>IIS 7 users only!</strong><br /> Rename web.config.txt to web.config and install IIS URL Rewrite Module before activating.<br />">
Use URL rewriting</label></div>
<div class="controls"><fieldset id="jform_sef_rewrite" class="radio btn-group btn-group-yesno"><input type="radio" id="jform_sef_rewrite0" name="jform[sef_rewrite]" value="1"><label for="jform_sef_rewrite0" class="btn">Yes</label><input type="radio" id="jform_sef_rewrite1" name="jform[sef_rewrite]" value="0" checked="checked"><label for="jform_sef_rewrite1" class="btn btn-danger">No</label></fieldset></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_sef_suffix-lbl" for="jform_sef_suffix" class="hasTooltip" title="" data-original-title="<strong>Adds Suffix to URL</strong><br />If yes, the system will add a suffix to the URL based on the document type.">
Adds Suffix to URL</label></div>
<div class="controls"><fieldset id="jform_sef_suffix" class="radio btn-group btn-group-yesno"><input type="radio" id="jform_sef_suffix0" name="jform[sef_suffix]" value="1"><label for="jform_sef_suffix0" class="btn">Yes</label><input type="radio" id="jform_sef_suffix1" name="jform[sef_suffix]" value="0" checked="checked"><label for="jform_sef_suffix1" class="btn btn-danger">No</label></fieldset></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_unicodeslugs-lbl" for="jform_unicodeslugs" class="hasTooltip" title="" data-original-title="<strong>Unicode Aliases</strong><br />Choose between transliteration and unicode aliases. Transliteration is default.">
Unicode Aliases</label></div>
<div class="controls"><fieldset id="jform_unicodeslugs" class="radio btn-group btn-group-yesno"><input type="radio" id="jform_unicodeslugs0" name="jform[unicodeslugs]" value="1"><label for="jform_unicodeslugs0" class="btn">Yes</label><input type="radio" id="jform_unicodeslugs1" name="jform[unicodeslugs]" value="0" checked="checked"><label for="jform_unicodeslugs1" class="btn btn-danger">No</label></fieldset></div>
</div>
<div class="control-group">
<div class="control-label"><label id="jform_sitename_pagetitles-lbl" for="jform_sitename_pagetitles" class="hasTooltip" title="" data-original-title="<strong>Include Site Name in Page Titles</strong><br />Begin or end all Page Titles with the site name (for example, My Site Name - My Article Name).">
Include Site Name in Page Titles</label></div>
<div class="controls">
<select id="jform_sitename_pagetitles" name="jform[sitename_pagetitles]" class="chzn-done" style="display: none;">
<option value="2">After</option>
<option value="1">Before</option>
<option value="0" selected="selected">No</option>
</select>
</div>
</div>
</fieldset>
</div>
</div>
</div>
<div id="page-permissions" class="tab-pane">
<div class="row-fluid">
<fieldset class="form-vertical">
<legend>Permission Settings</legend>
<div class="control-group">
<div class="controls"><p class="rule-desc">Manage the permission settings for the user groups below. See notes at the bottom.</p>
<div id="permissions-sliders" class="tabbable tabs-left">
<ul class="nav nav-tabs">
<li class="active"><a href="#permission-1" data-toggle="tab">Public</a></li>
<li class=""><a href="#permission-9" data-toggle="tab"><span class="level">–</span> Guest</a></li>
<li class=""><a href="#permission-6" data-toggle="tab"><span class="level">–</span> Manager</a></li>
<li class=""><a href="#permission-7" data-toggle="tab"><span class="level">–</span> <span class="level">–</span> Administrator</a></li>
<li class=""><a href="#permission-2" data-toggle="tab"><span class="level">–</span> Registered</a></li>
<li class=""><a href="#permission-3" data-toggle="tab"><span class="level">–</span> <span class="level">–</span> Author</a></li>
<li class=""><a href="#permission-4" data-toggle="tab"><span class="level">–</span> <span class="level">–</span> <span class="level">–</span> Editor</a></li>
<li class=""><a href="#permission-5" data-toggle="tab"><span class="level">–</span> <span class="level">–</span> <span class="level">–</span> <span class="level">–</span> Publisher</a></li>
<li class=""><a href="#permission-8" data-toggle="tab"><span class="level">–</span> Super Users</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="permission-1">
<table class="table table-striped">
<thead>
<tr>
<th class="actions" id="actions-th1">
<span class="acl-action">Action</span>
</th>
<th class="settings" id="settings-th1">
<span class="acl-action">Select New Setting <sup>1</sup></span>
</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.login.site_1" class="hasTooltip" title="" data-original-title="Site Login Allows users in the group to login to the frontend site.">Site Login</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.login.site][1]" id="jform_rules_core.login.site_1" title="Allow or deny Site Login for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.login.admin_1" class="hasTooltip" title="" data-original-title="Admin Login Allows users in the group to login to the backend administrator site.">Admin Login</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.login.admin][1]" id="jform_rules_core.login.admin_1" title="Allow or deny Admin Login for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.login.offline_1" class="hasTooltip" title="" data-original-title="Offline Access Allows users in the group to access to the frontend site when site is offline.">Offline Access</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.login.offline][1]" id="jform_rules_core.login.offline_1" title="Allow or deny Offline Access for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.admin_1" class="hasTooltip" title="" data-original-title="Super User Allows users in the group to perform any action over the whole site regardless of any other permission settings.">Super User</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.admin][1]" id="jform_rules_core.admin_1" title="Allow or deny Super User for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.manage_1" class="hasTooltip" title="" data-original-title="Access Administration Interface Allows users in the group to access all of the administration interface except Global Configuration">Access Administration Interface</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.manage][1]" id="jform_rules_core.manage_1" title="Allow or deny Access Administration Interface for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.create_1" class="hasTooltip" title="" data-original-title="Create Allows users in the group to create any content in any extension.">Create</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.create][1]" id="jform_rules_core.create_1" title="Allow or deny Create for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.delete_1" class="hasTooltip" title="" data-original-title="Delete Allows users in the group to delete any content in any extension.">Delete</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.delete][1]" id="jform_rules_core.delete_1" title="Allow or deny Delete for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.edit_1" class="hasTooltip" title="" data-original-title="Edit Allows users in the group to edit any content in any extension">Edit</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.edit][1]" id="jform_rules_core.edit_1" title="Allow or deny Edit for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.edit.state_1" class="hasTooltip" title="" data-original-title="Edit State Allows users in the group to edit the state of any content in any extension">Edit State</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.edit.state][1]" id="jform_rules_core.edit.state_1" title="Allow or deny Edit State for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
<tr>
<td headers="actions-th1">
<label for="jform_rules_core.edit.own_1" class="hasTooltip" title="" data-original-title="Edit Own Allows users in the group to edit any content they own in any extension">Edit Own</label>
</td>
<td headers="settings-th1">
<select class="input-small chzn-done" name="jform[rules][core.edit.own][1]" id="jform_rules_core.edit.own_1" title="Allow or deny Edit Own for users in the Public group" style="display: none;">
<option value="" selected="selected">Not Set</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane" id="permission-9">
<table class="table table-striped">
<thead>
<tr>
<th class="actions" id="actions-th9"><span class="acl-action">Action</span></th>
<th class="settings" id="settings-th9"><span class="acl-action">Select New Setting <sup>1</sup></span></th>
<th id="aclactionth9"><span class="acl-action">Calculated Setting <sup>2</sup></span></th>
</tr>
</thead>
<tbody>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.login.site_9" class="hasTooltip" title="" data-original-title="Site Login Allows users in the group to login to the frontend site.">Site Login</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.login.site][9]" id="jform_rules_core.login.site_9" title="Allow or deny Site Login for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9"><span class="label label-important">Not Allowed</span></td>
</tr>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.login.admin_9" class="hasTooltip" title="" data-original-title="Admin Login Allows users in the group to login to the backend administrator site.">Admin Login</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.login.admin][9]" id="jform_rules_core.login.admin_9" title="Allow or deny Admin Login for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9"><span class="label label-important">Not Allowed</span></td>
</tr>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.login.offline_9" class="hasTooltip" title="" data-original-title="Offline Access Allows users in the group to access to the frontend site when site is offline.">Offline Access</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.login.offline][9]" id="jform_rules_core.login.offline_9" title="Allow or deny Offline Access for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.admin_9" class="hasTooltip" title="" data-original-title="Super User Allows users in the group to perform any action over the whole site regardless of any other permission settings.">Super User</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.admin][9]" id="jform_rules_core.admin_9" title="Allow or deny Super User for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.delete_9" class="hasTooltip" title="" data-original-title="Delete Allows users in the group to delete any content in any extension.">Delete</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.delete][9]" id="jform_rules_core.delete_9" title="Allow or deny Delete for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th9">
<label for="jform_rules_core.edit.own_9" class="hasTooltip" title="" data-original-title="Edit Own Allows users in the group to edit any content they own in any extension">
Edit Own
</label>
</td>
<td headers="settings-th9">
<select class="input-small chzn-done" name="jform[rules][core.edit.own][9]" id="jform_rules_core.edit.own_9" title="Allow or deny Edit Own for users in the Guest group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth9">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane" id="permission-3">
<table class="table table-striped">
<thead>
<tr>
<th class="actions" id="actions-th3"><span class="acl-action">Action</span></th>
<th class="settings" id="settings-th3"><span class="acl-action">Select New Setting <sup>1</sup></span></th>
<th id="aclactionth3"><span class="acl-action">Calculated Setting <sup>2</sup></span></th>
</tr>
</thead>
<tbody>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.login.site_3" class="hasTooltip" title="" data-original-title="Site Login Allows users in the group to login to the frontend site.">
Site Login
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.login.site][3]" id="jform_rules_core.login.site_3" title="Allow or deny Site Login for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-success">Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.login.admin_3" class="hasTooltip" title="" data-original-title="Admin Login Allows users in the group to login to the backend administrator site.">
Admin Login
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.login.admin][3]" id="jform_rules_core.login.admin_3" title="Allow or deny Admin Login for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.login.offline_3" class="hasTooltip" title="" data-original-title="Offline Access Allows users in the group to access to the frontend site when site is offline.">
Offline Access
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.login.offline][3]" id="jform_rules_core.login.offline_3" title="Allow or deny Offline Access for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.admin_3" class="hasTooltip" title="" data-original-title="Super User Allows users in the group to perform any action over the whole site regardless of any other permission settings.">
Super User
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.admin][3]" id="jform_rules_core.admin_3" title="Allow or deny Super User for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.manage_3" class="hasTooltip" title="" data-original-title="Access Administration Interface Allows users in the group to access all of the administration interface except Global Configuration">
Access Administration Interface
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.manage][3]" id="jform_rules_core.manage_3" title="Allow or deny Access Administration Interface for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.create_3" class="hasTooltip" title="" data-original-title="Create Allows users in the group to create any content in any extension.">
Create
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.create][3]" id="jform_rules_core.create_3" title="Allow or deny Create for users in the Author group" style="display: none;">
<option value="">Inherited</option>
<option value="1" selected="selected">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-success">Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.delete_3" class="hasTooltip" title="" data-original-title="Delete Allows users in the group to delete any content in any extension.">
Delete
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.delete][3]" id="jform_rules_core.delete_3" title="Allow or deny Delete for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.edit_3" class="hasTooltip" title="" data-original-title="Edit Allows users in the group to edit any content in any extension">
Edit
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.edit][3]" id="jform_rules_core.edit_3" title="Allow or deny Edit for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.edit.state_3" class="hasTooltip" title="" data-original-title="Edit State Allows users in the group to edit the state of any content in any extension">
Edit State
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.edit.state][3]" id="jform_rules_core.edit.state_3" title="Allow or deny Edit State for users in the Author group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-important">Not Allowed</span>
</td>
</tr>
<tr>
<td headers="actions-th3">
<label for="jform_rules_core.edit.own_3" class="hasTooltip" title="" data-original-title="Edit Own Allows users in the group to edit any content they own in any extension">
Edit Own
</label>
</td>
<td headers="settings-th3">
<select class="input-small chzn-done" name="jform[rules][core.edit.own][3]" id="jform_rules_core.edit.own_3" title="Allow or deny Edit Own for users in the Author group" style="display: none;">
<option value="">Inherited</option>
<option value="1" selected="selected">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth3">
<span class="label label-success">Allowed</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane" id="permission-8">
<table class="table table-striped">
<thead>
<tr>
<th class="actions" id="actions-th8">
<span class="acl-action">Action</span>
</th>
<th class="settings" id="settings-th8">
<span class="acl-action">Select New Setting <sup>1</sup></span>
</th>
<th id="aclactionth8">
<span class="acl-action">Calculated Setting <sup>2</sup></span>
</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="actions-th8">
<label for="jform_rules_core.login.site_8" class="hasTooltip" title="" data-original-title="Site Login Allows users in the group to login to the frontend site.">
Site Login
</label>
</td>
<td headers="settings-th8">
<select class="input-small chzn-done" name="jform[rules][core.login.site][8]" id="jform_rules_core.login.site_8" title="Allow or deny Site Login for users in the Super Users group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth8">
<span class="label label-success"><i class="icon-lock icon-white"></i> Allowed (Super User)</span>
</td>
</tr>
<tr>
<td headers="actions-th8">
<label for="jform_rules_core.login.admin_8" class="hasTooltip" title="" data-original-title="Admin Login Allows users in the group to login to the backend administrator site.">
Admin Login
</label>
</td>
<td headers="settings-th8">
<select class="input-small chzn-done" name="jform[rules][core.login.admin][8]" id="jform_rules_core.login.admin_8" title="Allow or deny Admin Login for users in the Super Users group" style="display: none;">
<option value="" selected="selected">Inherited</option>
<option value="1">Allowed</option>
<option value="0">Denied</option>
</select>
</td>
<td headers="aclactionth8">
<span class="label label-success"><i class="icon-lock icon-white"></i> Allowed (Super User)</span>