\n"; } else { # Flag the packages in $ids array, and unflag any other # packages listed in $_REQUEST["All_IDs"] # print "flagging
\n"; # After flagging, show the search page again (or maybe print out # a message and give the user a link to resume where they were # in the search # pkg_search_page($_COOKIE["AURSID"]); } } elseif (isset($_REQUEST["do_Disown"])) { if ($atype == "User" || $atype == "") { print __("You do not have access to disown packages."); print "
\n"; } else { # Disown the packages in $ids array # print "disowning
\n"; # After disowning, show the search page again (or maybe print out # a message and give the user a link to resume where they were # in the search # pkg_search_page($_COOKIE["AURSID"]); } } elseif (isset($_REQUEST["do_Adopt"])) { if ($atype == "User" || $atype == "") { print __("You do not have access to adopt packages."); print "
\n"; } else { # Adopt the packages in $ids array # print "adopting
\n"; # After adopting, show the search page again (or maybe print out # a message and give the user a link to resume where they were # in the search # pkg_search_page($_COOKIE["AURSID"]); } } elseif (isset($_REQUEST["do_Vote"])) { if (!$atype) { print __("You must be logged in before you can vote for packages."); print "
\n"; } else { # vote on the packages in $ids array. 'unvote' for any packages # listed in the $_REQUEST["All_IDs"] array. # print "voting
\n"; # After voting, show the search page again (or maybe print out # a message and give the user a link to resume where they were # in the search # pkg_search_page($_COOKIE["AURSID"]); } } elseif (isset($_REQUEST["do_Details"])) { # give a link to 'manage', and another to return to search # results. # print "details for package
\n"; } else { # do_More/do_Less/do_Search/do_MyPackages - just do a search # pkg_search_page($_COOKIE["AURSID"]); } html_footer("\$Id$"); ?>