New search bar, toggle advanced options new style

Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Callan Barrett 2008-12-22 23:32:57 +09:00 committed by Loui Chang
parent 520d1e2a35
commit 3288805d2d
3 changed files with 139 additions and 184 deletions

View file

@ -452,4 +452,15 @@ textarea.vLargeTextField {
border-collapse: separate; border-collapse: separate;
border-spacing: 0 15px; border-spacing: 0 15px;
} }
#search_box {
margin: 5px;
text-align: center;
font-size: 11px;
}
#advanced li {
background-color: #f3f3f3;
list-style: none;
display: inline;
padding: 15px;
text-decoration: none;
}

View file

@ -61,11 +61,11 @@ span.warning /* Content Text */
font-size: 12px; font-size: 12px;
} }
/* Font Attribute Change (#6c83b0)*/ /* Font Attribute Change (#6c83b0)*/
span.blue { color: #6c83b0; } .blue { color: #6c83b0; }
span.white { color: #fff; } .white { color: #fff; }
span.black { color: #000; } .black { color: #000; }
span.green { color: #6db06d; } .green { color: #6db06d; }
span.link .link
{ {
color: #6c83b0; color: #6c83b0;
font-weight: bold; font-weight: bold;

View file

@ -1,188 +1,132 @@
<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 print __("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'> <div id="search_box" class="blue">
<tr> <label><?php print __("Keywords"); ?></label>
<td align='right'> <input type='text' name='K' size='20' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
<span class='f5'> <?php if (!$_GET['detail']): ?><input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' /><?php endif; ?>
<span class='blue'> <a href="packages.php?<?php print mkurl('detail=' . (($_GET['detail']) ? 0 : 1) ) ?>">Advanced</a>
<?php print __("Location"); ?> <?php if ($_GET['detail']): ?>
</span> <div id="advanced">
</span> <input type="hidden" name="detail" value="1" />
<br /> <ul>
<select name='L'> <li>
<option value=0><?php print __("Any"); ?></option> <label><?php print __("Location"); ?></label>
<?php <select name='L'>
while (list($id, $loc) = each($locs)) { <option value=0><?php print __("Any"); ?></option>
if (intval($_REQUEST["L"]) == $id) { <?php
?> while (list($id, $loc) = each($locs)):
<option value="<?php print $id; ?>" selected="selected"><?php print $loc; ?></option> if (intval($_REQUEST["L"]) == $id):
<?php } else { ?> ?>
<option value="<?php print $id; ?>"><?php print $loc; ?></option> <option value="<?php print $id; ?>" selected="selected"><?php print $loc; ?></option>
<?php <?php else: ?>
} <option value="<?php print $id; ?>"><?php print $loc; ?></option>
} <?php
?> endif;
</select> endwhile;
</td> ?>
<td align='right'> </select>
<span class='f5'> </li>
<span class='blue'> <li>
<?php print __("Category"); ?> <label><?php print __("Category"); ?></label>
</span> <select name='C'>
</span> <option value='0'><?php print __("Any"); ?></option>
<br /> <?php
<select name='C'> while (list($id, $cat) = each($cats)):
<option value='0'><?php print __("Any"); ?></option> if (intval($_REQUEST["C"]) == $id):
<?php ?>
while (list($id, $cat) = each($cats)) { <option value="<?php print $id ?>" selected="selected"><?php print $cat; ?></option>
if (intval($_REQUEST["C"]) == $id) { <?php else: ?>
?> <option value="<?php print $id ?>"><?php print $cat; ?></option>
<option value="<?php print $id ?>" selected="selected"><?php print $cat; ?></option> <?php
<?php } else { ?> endif;
<option value="<?php print $id ?>"><?php print $cat; ?></option> endwhile;
<?php ?>
} </select>
} </li>
?> <li>
</select> <label><?php print __("Search by"); ?></label>
</td> <select name='SeB'>
<td align='right'> <?php
<span class='f5'> $searchby = array('nd' => 'Name', 'm' => 'Maintainer', 's' => 'Submitter');
<span class='blue'> foreach ($searchby as $k => $v):
<?php print __("Keywords"); ?> if ($_REQUEST['SeB'] == $k):
</span> ?>
</span> <option value="<?php print $k; ?>" selected="selected"><?php print __($v); ?></option>
<br /> <?php else: ?>
<input type='text' name='K' size='20' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' /> <option value="<?php print $k; ?>"><?php print __($v); ?></option>
</td> <?php
<td align='right'> endif;
<span class='f5'> endforeach;
<span class='blue'> ?>
<?php print __("Search by"); ?> </select>
</span> </li>
</span> <li>
<br /> <label><?php print __("Sort by"); ?></label>
<select name='SeB'> <select name='SB'>
<?php <?php
$searchby = array('nd' => 'Name' $sortby = array('n' => 'Name', 'c' => 'Category', 'l' => 'Location', 'v' => 'Votes', 'm' => 'Maintainer', 'a' => 'Age');
,'m' => 'Maintainer' foreach ($sortby as $k => $v):
,'s' => 'Submitter' if ($_REQUEST['SB'] == $k):
); ?>
<option value='<?php print $k; ?>' selected="selected"><?php print __($v); ?></option>
foreach ($searchby as $k => $v) { <?php else: ?>
if ($_REQUEST['SeB'] == $k) { <option value='<?php print $k; ?>'><?php print __($v); ?></option>
?> <?php
<option value="<?php print $k; ?>" selected="selected"><?php print __($v); ?></option> endif;
<?php } else { ?> endforeach;
<option value="<?php print $k; ?>"><?php print __($v); ?></option> ?>
<?php </select>
} </li>
} <li>
?> <label><?php print __("Sort order"); ?></label>
</select> <select name='SO'>
</td> <?php
<td align='right'> $orderby = array('a' => 'Ascending', 'd' => 'Descending');
<span class='f5'> foreach ($orderby as $k => $v):
<span class='blue'> if ($_REQUEST['SO'] == $k):
<?php print __("Sort by"); ?> ?>
</span> <option value='<?php print $k; ?>' selected="selected"><?php print __($v); ?></option>
</span> <?php else: ?>
<br /> <option value='<?php print $k; ?>'><?php print __($v); ?></option>
<select name='SB'> <?php
<?php endif;
$sortby = array('n' => 'Name' endforeach;
,'c' => 'Category' ?>
,'l' => 'Location' </select>
,'v' => 'Votes' </li>
,'m' => 'Maintainer' <li>
,'a' => 'Age' <label><?php print __("Per page"); ?></label>
); <select name='PP'>
<?php
foreach ($sortby as $k => $v) { $pages = array(25, 50, 75, 100);
if ($_REQUEST['SB'] == $k) { foreach ($pages as $i):
?> if ($PP == $i):
<option value='<?php print $k; ?>' selected="selected"><?php print __($v); ?></option> ?>
<?php } else { ?> <option value="<?php print $i; ?>" selected="selected"><?php print $i; ?></option>
<option value='<?php print $k; ?>'><?php print __($v); ?></option> <?php else: ?>
<?php <option value="<?php print $i; ?>"><?php print $i; ?></option>
} <?php
} endif;
?> endforeach;
</select> ?>
</td> </select>
<td align='right'> </li>
<span class='f5'> </ul>
<span class='blue'> <input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
<?php print __("Sort order"); ?> <input type='submit' style='width:80px' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
</span> </div>
</span> <?php endif; ?>
<br /> </div>
<select name='SO'> </td>
<?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>
</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>
</tr> </tr>
</table> </table>
</center> </center>