mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Rewrite pkg_search_form.php
Adds back sort by options and cleans up html and php everywhere Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
This commit is contained in:
parent
8867ad0372
commit
800aca0eeb
1 changed files with 184 additions and 117 deletions
|
@ -1,123 +1,190 @@
|
||||||
|
<form action='/packages.php' method='get'>
|
||||||
<form action='packages.php' method='get'>
|
|
||||||
<input type='hidden' name='O' value='0'>
|
<input type='hidden' name='O' value='0'>
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
<table cellspacing='3' class='boxSoft'>
|
<table cellspacing='3' class='boxSoft'>
|
||||||
<tr>
|
<tr>
|
||||||
<td class='boxSoftTitle' align='right'>
|
<td class='boxSoftTitle' align='right'>
|
||||||
<span class='f3'><?php echo __('Search Criteria'); ?></span>
|
<span class='f3'><?php print __("Search Criteria"); ?></span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class='boxSoft'>
|
<td class='boxSoft'>
|
||||||
<table style='width: 100%' align='center'>
|
<table style='width: 100%' align='center'>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='right'>
|
<td align='right'>
|
||||||
<span class='f5'><span class='blue'><?php echo __('Location'); ?>
|
<span class='f5'>
|
||||||
</span></span><br />
|
<span class='blue'>
|
||||||
|
<?php print __("Location"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
<select name='L'>
|
<select name='L'>
|
||||||
<option value='0'><?php echo __('Any'); ?>
|
<option value=0><?php print __("Any"); ?></option>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// The search form - XXX: split into own function?
|
|
||||||
//
|
|
||||||
// FIXME: highly fugly. whoever makes this use
|
|
||||||
// less print statements gets a cookie
|
|
||||||
// FIXME: ugly html. whoever un-tables this gets
|
|
||||||
// another cookie
|
|
||||||
while (list($id, $loc) = each($locs)) {
|
while (list($id, $loc) = each($locs)) {
|
||||||
if (intval($_REQUEST["L"]) == $id) {
|
if (intval($_REQUEST["L"]) == $id) {
|
||||||
print " <option value=".$id." selected> ".$loc."\n";
|
?>
|
||||||
} else {
|
<option value="<?php print $id; ?>" selected="selected"><?php print $loc; ?></option>
|
||||||
print " <option value=".$id."> ".$loc."\n";
|
<?php } else { ?>
|
||||||
|
<option value="<?php print $id; ?>"><?php print $loc; ?></option>
|
||||||
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print " </select>\n";
|
?>
|
||||||
print "</td>\n";
|
</select>
|
||||||
|
</td>
|
||||||
print "<td align='right'>\n";
|
<td align='right'>
|
||||||
print " <span class='f5'><span class='blue'>".__("Category");
|
<span class='f5'>
|
||||||
print "</span></span><br />\n";
|
<span class='blue'>
|
||||||
print " <select name='C'>\n";
|
<?php print __("Category"); ?>
|
||||||
print " <option value=0> ".__("Any")."\n";
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<select name='C'>
|
||||||
|
<option value='0'><?php print __("Any"); ?></option>
|
||||||
|
<?php
|
||||||
while (list($id, $cat) = each($cats)) {
|
while (list($id, $cat) = each($cats)) {
|
||||||
if (intval($_REQUEST["C"]) == $id) {
|
if (intval($_REQUEST["C"]) == $id) {
|
||||||
print " <option value=".$id." selected> ".$cat."\n";
|
|
||||||
} else {
|
|
||||||
print " <option value=".$id."> ".$cat."\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
print " </select>\n";
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
print "<td align='right'>\n";
|
|
||||||
print " <span class='f5'><span class='blue'>".__("Keywords");
|
|
||||||
print "</span></span><br />\n";
|
|
||||||
print " <input type='text' name='K' size='20'";
|
|
||||||
|
|
||||||
$K = trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES));
|
|
||||||
print " value=\"".stripslashes($K)."\" maxlength='35'>\n";
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
print "<td align='right'>\n";
|
|
||||||
print " <span class='f5'><span class='blue'>".__("Search by");
|
|
||||||
print "</span></span><br />\n";
|
|
||||||
|
|
||||||
print " <select name='SeB'>\n";
|
|
||||||
# by name/description
|
|
||||||
print " <option value=nd";
|
|
||||||
$_REQUEST["SeB"] == "nd" ? print " selected> " : print "> ";
|
|
||||||
print __("Name")."</option>\n";
|
|
||||||
# by maintainer
|
|
||||||
print " <option value=m";
|
|
||||||
$_REQUEST["SeB"] == "m" ? print " selected> " : print "> ";
|
|
||||||
print __("Maintainer")."</option>\n";
|
|
||||||
print " <option value=s";
|
|
||||||
$_REQUEST["SeB"] == "s" ? print " selected> " : print "> ";
|
|
||||||
print __("Submitter")."</option>\n";
|
|
||||||
|
|
||||||
print " </select>\n";
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
print "<td align='right'>\n";
|
|
||||||
print " <span class='f5'><span class='blue'>".__("Per page");
|
|
||||||
print "</span></span><br />\n";
|
|
||||||
print " <select name='PP'>\n";
|
|
||||||
print " <option value=25";
|
|
||||||
$PP == 25 ? print " selected> 25\n" : print "> 25\n";
|
|
||||||
print " <option value=50";
|
|
||||||
$PP == 50 ? print " selected> 50\n" : print "> 50\n";
|
|
||||||
print " <option value=75";
|
|
||||||
$PP == 75 ? print " selected> 75\n" : print "> 75\n";
|
|
||||||
print " <option value=100";
|
|
||||||
$PP == 100 ? print " selected> 100\n" : print "> 100\n";
|
|
||||||
print " </select>\n";
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
// Added to break put the buttons in a new line
|
|
||||||
?>
|
?>
|
||||||
</tr></table><center><table><tr>
|
<option value="<?php print $id ?>" selected="selected"><?php print $cat; ?></option>
|
||||||
|
<?php } else { ?>
|
||||||
<td align='right' valign='bottom'>
|
<option value="<?php print $id ?>"><?php print $cat; ?></option>
|
||||||
<input type='submit' style='width:80px' class='button' name='do_Search'
|
<?php
|
||||||
value='<?php echo __('Go'); ?>'>
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
<td align='right'>
|
||||||
<td align='right' valign='bottom'>
|
<span class='f5'>
|
||||||
<input type='submit' style='width:80px' class='button' name='do_Orphans'
|
<span class='blue'>
|
||||||
value='<?php echo __('Orphans'); ?>'>
|
<?php print __("Keywords"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<input type='text' name='K' size='20' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
|
||||||
</td>
|
</td>
|
||||||
|
<td align='right'>
|
||||||
|
<span class='f5'>
|
||||||
|
<span class='blue'>
|
||||||
|
<?php print __("Search by"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<select name='SeB'>
|
||||||
|
<?php
|
||||||
|
$searchby = array('nd' => 'Name'
|
||||||
|
,'m' => 'Maintainer'
|
||||||
|
,'s' => 'Submitter'
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach ($searchby as $k => $v) {
|
||||||
|
if ($_REQUEST['SeB'] == $k) {
|
||||||
|
?>
|
||||||
|
<option value="<?php print $k; ?>" selected="selected"><?php print __($v); ?></option>
|
||||||
|
<?php } else { ?>
|
||||||
|
<option value="<?php print $k; ?>"><?php print __($v); ?></option>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td align='right'>
|
||||||
|
<span class='f5'>
|
||||||
|
<span class='blue'>
|
||||||
|
<?php print __("Sort by"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<select name='SB'>
|
||||||
|
<?php
|
||||||
|
$sortby = array('n' => 'Name'
|
||||||
|
,'c' => 'Category'
|
||||||
|
,'l' => 'Location'
|
||||||
|
,'v' => 'Votes'
|
||||||
|
,'m' => 'Maintainer'
|
||||||
|
,'a' => 'Age'
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach ($sortby as $k => $v) {
|
||||||
|
if ($_REQUEST['SB'] == $k) {
|
||||||
|
?>
|
||||||
|
<option value='<?php print $k; ?>' selected="selected"><?php print __($v); ?></option>
|
||||||
|
<?php } else { ?>
|
||||||
|
<option value='<?php print $k; ?>'><?php print __($v); ?></option>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td align='right'>
|
||||||
|
<span class='f5'>
|
||||||
|
<span class='blue'>
|
||||||
|
<?php print __("Sort order"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<select name='SO'>
|
||||||
|
<?php
|
||||||
|
$orderby = array('a' => 'Ascending'
|
||||||
|
,'d' => 'Descending'
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach ($orderby as $k => $v) {
|
||||||
|
if ($_REQUEST['SO'] == $k) {
|
||||||
|
?>
|
||||||
|
<option value='<?php print $k; ?>' selected="selected"><?php print __($v); ?></option>
|
||||||
|
<?php } else { ?>
|
||||||
|
<option value='<?php print $k; ?>'><?php print __($v); ?></option>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td align='right'>
|
||||||
|
<span class='f5'>
|
||||||
|
<span class='blue'>
|
||||||
|
<?php print __("Per page"); ?>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
|
<select name='PP'>
|
||||||
|
<?php
|
||||||
|
$pages = array(25, 50, 75, 100);
|
||||||
|
foreach ($pages as $i) {
|
||||||
|
if ($PP == $i) {
|
||||||
|
?>
|
||||||
|
<option value="<?php print $i; ?>" selected="selected"><?php print $i; ?></option>
|
||||||
|
<?php } else { ?>
|
||||||
|
<option value="<?php print $i; ?>"><?php print $i; ?></option>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td align='right' valign='bottom'>
|
||||||
|
<input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
|
||||||
|
</td>
|
||||||
|
<td align='right' valign='bottom'>
|
||||||
|
<input type='submit' style='width:80px' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</center>
|
</center>
|
||||||
</form>
|
</form>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue