_('Available version'), 'Type' => _('Package type'), 'Name' => _('Package content'), 'Description' => _('Description'), 'Author' => _('Author'), 'Homepage' => _('Home page'), 'Maintenance' => _('Package maintainer'), 'InstallPath' => _('Installation path'), 'Depends' => _('Minimal software versions'), 'RTLDir' => _('Right to left'), 'Encoding' => _('Charset encoding') ); $pkg = get_package_info($_GET['id'], null, $filter); display_heading(sprintf(_("Content information for package '%s'"), $_GET['id'])); br(); start_table(TABLESTYLE2, "width=80%"); $th = array(_("Property"), _("Value")); table_header($th); foreach ($pkg as $field => $value) { if ($value == '') continue; start_row(); label_cells($field, nl2br(htmlentities(is_array($value) ? implode("\n", $value) :$value)), "class='tableheader2'"); end_row(); } end_table(1); end_page(true);