Add 'bin' category[1], move category-selection to "popup_menu" and add some
hints about formatting[2]. Suggested by: dds[1], julian[2] Approved by: simon
This commit is contained in:
parent
6fd6801024
commit
c656edf3c8
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=24268
1 changed files with 11 additions and 14 deletions
|
@ -5,7 +5,6 @@ require "./cgi-style.pl";
|
||||||
use CGI qw(:all);
|
use CGI qw(:all);
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
|
||||||
my $Submit = param("Submit");
|
my $Submit = param("Submit");
|
||||||
my $debug = param("debug") || "";
|
my $debug = param("debug") || "";
|
||||||
|
|
||||||
|
@ -191,22 +190,18 @@ print
|
||||||
(html_header("Submitting a FreeBSD Project Status Report"),
|
(html_header("Submitting a FreeBSD Project Status Report"),
|
||||||
hr,
|
hr,
|
||||||
join("<BR>\n", @messages, ""),
|
join("<BR>\n", @messages, ""),
|
||||||
p,
|
p("To submit status information about a FreeBSD project, fill out the",
|
||||||
"To submit status information about a FreeBSD project, fill out the following:",
|
" following:"),
|
||||||
br,
|
|
||||||
start_form(),
|
start_form(),
|
||||||
|
|
||||||
h3("Project:"),
|
h3("Project:"),
|
||||||
textfield(-name => "Project", -size => "32"),
|
textfield(-name => "Project", -size => "32"),
|
||||||
|
|
||||||
h3("Category:"),
|
h3("Category:"),
|
||||||
scrolling_list(-name => "Category", -values => ['proj', 'docs', 'kern',
|
popup_menu(-name => "Category",
|
||||||
'arch', 'ports', 'vendor', 'misc'], -default => ['proj'], -size => 7,
|
-values => ['proj', 'docs', 'kern', 'bin', 'arch', 'ports', 'vendor',
|
||||||
-multiple => 'false', -lables => {'proj'=> 'Projects (non-specific)',
|
'misc'], -default => 'proj'),
|
||||||
'docs' => 'Documentation', 'kern' => 'Kernel', 'arch' => 'Architectures',
|
|
||||||
'ports' => 'Ports', 'vendor' => 'Vendor / 3rd party software',
|
|
||||||
'misc' => 'Miscellaneous' }),
|
|
||||||
|
|
||||||
h3("Developers:"),
|
h3("Developers:"),
|
||||||
blockquote(table({"BORDER" => 0,
|
blockquote(table({"BORDER" => 0,
|
||||||
"COLS" => 3,
|
"COLS" => 3,
|
||||||
|
@ -215,7 +210,7 @@ print
|
||||||
td("Family Name"),
|
td("Family Name"),
|
||||||
td("Email address")),
|
td("Email address")),
|
||||||
@DeveloperTable)),
|
@DeveloperTable)),
|
||||||
|
|
||||||
h3("Links:"),
|
h3("Links:"),
|
||||||
blockquote(table({"BORDER" => 0,
|
blockquote(table({"BORDER" => 0,
|
||||||
"COLS" => 2,
|
"COLS" => 2,
|
||||||
|
@ -223,8 +218,10 @@ print
|
||||||
TR(td("Url"),
|
TR(td("Url"),
|
||||||
td("Description (optional)")),
|
td("Description (optional)")),
|
||||||
@LinksTable)),
|
@LinksTable)),
|
||||||
|
|
||||||
h3("Present status:"),
|
h3("Present status:"),
|
||||||
|
p("You can use "simple" HTML tags (e.g. <p>, ",
|
||||||
|
"<em>, <strong> and <a href=... >) to format."),
|
||||||
blockquote(textarea(-name => "SubmittedInfo",
|
blockquote(textarea(-name => "SubmittedInfo",
|
||||||
-rows => 7,
|
-rows => 7,
|
||||||
-cols => 60)),
|
-cols => 60)),
|
||||||
|
|
Loading…
Reference in a new issue