Bugzilla – Attachment 50906 Details for
Bug 10171
Add a header in Advanced Search (staff interface)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 10171: Add a search box include on advanced search and item search pages
PASSED-QA-Bug-10171-Add-a-search-box-include-on-ad.patch (text/plain), 4.99 KB, created by
Katrin Fischer
on 2016-04-28 12:29:43 UTC
(
hide
)
Description:
[PASSED QA] Bug 10171: Add a search box include on advanced search and item search pages
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2016-04-28 12:29:43 UTC
Size:
4.99 KB
patch
obsolete
>From 3bd8cfc53a818fd74f704e975ff388b95f4f8d5d Mon Sep 17 00:00:00 2001 >From: Aleisha <aleishaamohia@hotmail.com> >Date: Wed, 27 Apr 2016 03:34:07 +0000 >Subject: [PATCH] [PASSED QA] Bug 10171: Add a search box include on advanced > search and item search pages >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch creates a new file: adv-search.inc. This search include has >no catalog search (as it makes no sense to have the catalog search tab >on the advanced search page). >The item search page uses home-search.inc (with catalog search) as the >catalog search is different to the item search. > >To test: >1) Go to Search (advanced search) >2) Confirm search header is there with no catalog search tab and works > as expected >3) Go to item search >4) Confirm search header is there with catalog search tab and works as > expected > >Sponsored-by: Catalyst IT >Signed-off-by: Owen Leonard <oleonard@myacpl.org> > >Tested together with follow up patch, works as expected. >Signed-off-by: Marc Véron <veron@veron.ch> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../intranet-tmpl/prog/en/includes/adv-search.inc | 42 ++++++++++++++++++++++ > .../prog/en/modules/catalogue/advsearch.tt | 2 +- > .../prog/en/modules/catalogue/itemsearch.tt | 1 + > 3 files changed, 44 insertions(+), 1 deletion(-) > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc >new file mode 100644 >index 0000000..d081ed2 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc >@@ -0,0 +1,42 @@ >+<div class="gradient"> >+<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Main page Resident Search Box --> >+ >+<div id="header_search"> >+ [% INCLUDE 'patron-search-box.inc' %] >+[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %] >+<div id="checkin_search" class="residentsearch"> >+ <p class="tip">Scan a barcode to check in:</p> >+ <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off"> >+ <input name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" /> >+ <input value="Submit" class="submit" type="submit" /> >+ </form> >+</div> >+<div id="renew_search" class="residentsearch"> >+ <p class="tip">Scan a barcode to renew:</p> >+ <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off"> >+ <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" /> >+ <input value="Submit" class="submit" type="submit" /> >+ </form> >+ </div> >+[% END %] >+ >+[% IF ( CAN_user_borrowers ) %] >+<div id="patron_search" class="residentsearch"> >+ <p class="tip">Enter patron card number or partial name:</p> >+ <form action="/cgi-bin/koha/members/member.pl" method="post"> >+ <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text"/> >+ <input type="hidden" name="quicksearch" value="1" /> >+ <input value="Submit" class="submit" type="submit" /> >+ </form> >+</div>[% END %] >+ >+<ul> >+ [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(0)" href="#circ_search">Check out</a></li>[% END %] >+ [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(1)" href="#checkin_search">Check in</a></li>[% END %] >+ [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(2)" href="#renew_search">Renew</a></li>[% END %] >+ [% IF ( CAN_user_borrowers ) %]<li><a onclick="keep_text(3)" href="#patron_search">Search patrons</a></li>[% END %] >+</ul> >+ >+</div><!-- /header_search --> >+</div><!-- /gradient --> >+<!-- End Main page Resident Search Box --> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >index 6019f4c..1349a80 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >@@ -22,8 +22,8 @@ > </script> > </head> > <body id="catalog_advsearch" class="catalog"> >- > [% INCLUDE 'header.inc' %] >+[% INCLUDE 'adv-search.inc' %] > <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Advanced search</div> > > <div id="doc" class="yui-t7"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >index 09e6b84..9ce1427 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >@@ -356,6 +356,7 @@ > </head> > <body id="catalog_itemsearch" class="catalog"> > [% INCLUDE 'header.inc' %] >+ [% INCLUDE 'home-search.inc' %] > <div id="breadcrumbs"> > <a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › Item search > </div> >-- >1.9.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10171
:
50783
|
50858
|
50859
|
50874
|
50875
| 50906 |
50907
|
51112
|
51184