X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=PciIds%2FHtml%2FList.pm;h=b2f3df058e57f9050306c5c4643baf68133236c5;hb=d2935a5e76ef0e5a2f3a15e80b2649a2913581e5;hp=bc5866a3c89dd9a5648b1ae2104f7d06d897122f;hpb=5ddb6a85bed19f1416d86a059c24ab098f905bd6;p=pciids.git diff --git a/PciIds/Html/List.pm b/PciIds/Html/List.pm index bc5866a..b2f3df0 100644 --- a/PciIds/Html/List.pm +++ b/PciIds/Html/List.pm @@ -43,10 +43,9 @@ sub list( $$$$ ) { my $id = $address->top()->pretty(); genHtmlHead( $req, $id, "\n" ); print "
\n"; - genMenu( $req, $address, $args, $auth, [ [ 'Help', 'help', 'list' ], $address->helpName() ? [ 'ID syntax', 'help', $address->helpName() ] : (), [ '', 'jump' ] ] ); - print '

'.encode( $id ).'

'; - print "
\n"; - print ""; + genMenu( $req, $address, $args, $auth, [ [ 'Help', 'help', 'list' ], $address->helpName() ? [ 'ID syntax', 'help', $address->helpName() ] : () ] ); + print '

The PCI ID Repository

The home of the pci.ids file

'; + print "
\n"; genPath( $req, $address, 0 ); print htmlDiv( 'name', '

Name: '.encode( $name ) ) if defined $name && $name ne ''; print htmlDiv( 'note', '

Note: '.encode( $note ) ) if defined $note && $note ne ''; @@ -97,7 +96,7 @@ sub list( $$$$ ) { genTableTail(); print "

Add item\n"; } - genHtmlTail(); + genHtmlFooter( 1, $req, $args ); return OK; }