diff options
Diffstat (limited to 'httemplate/config/config-view.cgi')
-rw-r--r-- | httemplate/config/config-view.cgi | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 138ec4737..917cc7316 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -8,6 +8,19 @@ shell mail radius apache BIND ), '', 'deprecated') { %> + <FONT SIZE="-2"> + <% foreach my $nav_section ( qw(required billing username password UI session + shell mail radius apache BIND + ), + '', 'deprecated') { %> + <% if ( $section eq $nav_section ) { %> + [<A NAME="not<%= $nav_section || 'unclassified' %>" style="background-color: #cccccc"><%= ucfirst($nav_section || 'unclassified') %></A>] + <% } else { %> + [<A HREF="#<%= $nav_section %>"><%= ucfirst($nav_section || 'unclassified') %></A>] + <% } %> + <% } %> + </FONT><BR> + <A NAME="<%= $section || 'unclassified' %>"></A> <%= table("#cccccc", 2) %> <tr> <th colspan="2" bgcolor="#dcdcdc"> @@ -24,7 +37,7 @@ my $n = 0; %> <% if ( $type eq '' ) { %> <tr><td><font color="#ff0000">no type</font></td></tr> - <% } elsif ( $type eq 'textarea' ) { %> + <% } elsif ( $type eq 'textarea' || $type eq 'editlist' ) { %> <tr><td bgcolor="#ffffff"> <pre> <%= encode_entities(join("\n", $conf->config($i->key) ) ) %> |