Revision 2 (by moose, 2006/07/10 13:21:14) initial import
#!/usr/bin/perl

use strict;
use warnings;
use CGI::Carp qw/fatalsToBrowser/;
use SVNAdmin;

print
	http_header() .
	start_page(-style => 'style.css', -title => 'SVN Groups') .
		start_menu() .
		end_menu() .
		start_content() .
			'nothing' .
		end_content() . 
	end_page();