Handle hostnames with upper-case letters
[webmin.git] / acl / schema.cgi
1 #!/usr/local/bin/perl
2 # Just display the Webmin LDAP schema
3
4 require './acl-lib.pl';
5 $access{'pass'} || &error($text{'sql_ecannot'});
6
7 &ui_print_unbuffered_header(undef, $text{'schema_title'}, "");
8
9 print $text{'schema_desc'},"<p>\n";
10 print &ui_table_start(undef, undef, 2);
11 print &ui_table_row(undef,
12         "<pre>".&html_escape(&read_file_contents("webmin.schema"))."</pre>", 2);
13 print &ui_table_end();
14 print &text('schema_download', 'webmin.schema'),"<p>\n";
15
16 &ui_print_footer("", $text{'index_return'});
17