Index: monthly.cgi =================================================================== RCS file: /usr/store/mlaier/fcvs/www/en/cgi/monthly.cgi,v retrieving revision 1.1 diff -u -r1.1 monthly.cgi --- monthly.cgi 9 Apr 2005 12:45:52 -0000 1.1 +++ monthly.cgi 10 Apr 2005 22:09:37 -0000 @@ -5,7 +5,6 @@ use CGI qw(:all); use strict; - my $Submit = param("Submit"); my $debug = param("debug") || ""; @@ -191,22 +190,18 @@ (html_header("Submitting a FreeBSD Project Status Report"), hr, join("
\n", @messages, ""), - p, - "To submit status information about a FreeBSD project, fill out the following:", - br, + p("To submit status information about a FreeBSD project, fill out the", + " following:"), start_form(), - + h3("Project:"), textfield(-name => "Project", -size => "32"), h3("Category:"), - scrolling_list(-name => "Category", -values => ['proj', 'docs', 'kern', - 'arch', 'ports', 'vendor', 'misc'], -default => ['proj'], -size => 7, - -multiple => 'false', -lables => {'proj'=> 'Projects (non-specific)', - 'docs' => 'Documentation', 'kern' => 'Kernel', 'arch' => 'Architectures', - 'ports' => 'Ports', 'vendor' => 'Vendor / 3rd party software', - 'misc' => 'Miscellaneous' }), - + popup_menu(-name => "Category", + -values => ['proj', 'docs', 'kern', 'bin', 'arch', 'ports', 'vendor', + 'misc'], -default => 'proj'), + h3("Developers:"), blockquote(table({"BORDER" => 0, "COLS" => 3, @@ -215,7 +210,7 @@ td("Family Name"), td("Email address")), @DeveloperTable)), - + h3("Links:"), blockquote(table({"BORDER" => 0, "COLS" => 2, @@ -223,8 +218,10 @@ TR(td("Url"), td("Description (optional)")), @LinksTable)), - + h3("Present status:"), + p("You can use "simple" HTML tags (e.g. <p>, ", + "<em>, <strong> and <a href=... >) to format."), blockquote(textarea(-name => "SubmittedInfo", -rows => 7, -cols => 60)),