#!/usr/local/bin/perl # edit_pack.cgi # Displays the details of an existing package, with links to uninstall and # other options require './software-lib.pl'; &ReadParse(); @pinfo = &package_info($in{'package'}, $in{'version'}); $pinfo[0] || &error($text{'edit_egone'}); &ui_print_header(undef, $text{'edit_title'}, "", "edit_pack"); print "
| $text{'edit_details'} | ||||||||||||||||
| ||||||||||||||||
\n"; print "
\n"; if ($in{'search'}) { &ui_print_footer("search.cgi?search=$in{'search'}", $text{'search_return'}); } else { &ui_print_footer("tree.cgi#$pinfo[1]", $text{'index_treturn'}); }