ncdc 1.10 released + added installation instructions
This commit is contained in:
parent
e11c9d17e6
commit
d1f18971cb
10 changed files with 254 additions and 70 deletions
|
|
@ -12,6 +12,8 @@ BEGIN { ($ROOT = abs_path $0) =~ s{index\.cgi$}{}; }
|
|||
|
||||
|
||||
my @changes = (
|
||||
[ '2012-05-03', '/ncdc/install', 'Added installation instructions for ncdc.' ],
|
||||
[ '2012-05-03', '/ncdc', 'ncdc 1.10 released.' ],
|
||||
[ '2012-04-10', undef, 'Minor site re-style: ncdu/ncdc/tuwf now have their own menu.' ],
|
||||
[ '2012-03-30', '/dump', 'Updated ncdc-share-report for Go 1' ],
|
||||
[ '2012-03-24', '/ncdu/bug', 'Moved ncdu bug tracker from sourceforge to this site' ],
|
||||
|
|
@ -65,6 +67,7 @@ TUWF::register(
|
|||
qr{ncdc/faq} => sub { podpage(shift, 'ncdc-faq', 'ncdc', 'faq', 'Ncdc Q&A', 1) },
|
||||
qr{ncdc/scr} => sub { podpage(shift, 'ncdc-scr', 'ncdc', 'scr', 'Ncdc Screenshots') },
|
||||
qr{ncdc/man} => sub { podpage(shift, 'ncdc-man', 'ncdc', 'man', 'Ncdc Manual', 1) },
|
||||
qr{ncdc/install} => sub { podpage(shift, 'ncdc-install', 'ncdc', 'install', 'Ncdc Installation Instructions', 1) },
|
||||
qr{ncdc/changes} => sub { changelog(shift, 'ncdc-changelog', 'ncdc', 'ncdc', 'changes', 'Ncdc Changelog') },
|
||||
qr{tuwf} => sub { podpage(shift, 'tuwf', 'tuwf', '', 'The Ultimate Website Framework') },
|
||||
qr{tuwf/man(?:/(db|misc|request|response|xml))?} => \&tuwfmanual,
|
||||
|
|
@ -441,6 +444,7 @@ sub htmlMenu {
|
|||
$m->('/ncdu/bug', 'Bug tracker', $o{sec} eq 'bug');
|
||||
} elsif($o{page} eq 'ncdc') {
|
||||
$m->('/ncdc', 'Info', !$o{sec});
|
||||
$m->('/ncdc/install', 'Installation',$o{sec} eq 'install');
|
||||
$m->('/ncdc/faq', 'Q&A', $o{sec} eq 'faq');
|
||||
$m->('/ncdc/man', 'Manual', $o{sec} eq 'man');
|
||||
$m->('/ncdc/changes', 'Changelog', $o{sec} eq 'changes');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue