From srdjan at catalyst.net.nz Tue Oct 1 01:15:09 2013 From: srdjan at catalyst.net.nz (Srdjan) Date: Tue, 1 Oct 2013 12:15:09 +1300 Subject: [Koha-patches] [PATCH] [SIGNED-OFF] Bug 10843: the DateTime->add method takes a scalar, not undef Message-ID: <1380582909-3988-1-git-send-email-srdjan@catalyst.net.nz> From: Jonathan Druart Test plan: 1) set an empty string for the ReservesMaxPickUpDelay pref 2) place a hold on an item 3) check in the item 4) click on "Print and confirm" 5) an error occurs > The 'days' parameter (undef) to DateTime::Duration::new was an 'undef' 6) apply the patch 7) repeat steps 1 to 4 8) the error does not occur anymore. Signed-off-by: Srdjan --- C4/Letters.pm | 2 +- t/Letters.t | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/C4/Letters.pm b/C4/Letters.pm index 93bc34d..24b8a43 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -613,7 +613,7 @@ sub _parseletter { my @waitingdate = split /-/, $values->{'waitingdate'}; my $dt = dt_from_string(); - $dt->add( days => C4::Context->preference('ReservesMaxPickUpDelay') ); + $dt->add( days => C4::Context->preference('ReservesMaxPickUpDelay') || 0); $values->{'expirationdate'} = output_pref( $dt, undef, 1 ); $values->{'waitingdate'} = output_pref( dt_from_string( $values->{'waitingdate'} ), undef, 1 ); diff --git a/t/Letters.t b/t/Letters.t index 2d5f557..4d21bc2 100755 --- a/t/Letters.t +++ b/t/Letters.t @@ -3,11 +3,11 @@ # This Koha test module is a stub! # Add more tests here!!! -use strict; -use warnings; +use Modern::Perl; +use DBI; use Test::MockModule; -use Test::More tests => 2; - +use Test::More tests => 4; +use t::lib::Mocks; my $module = new Test::MockModule('C4::Context'); $module->mock( '_new_dbh', @@ -32,3 +32,14 @@ $dbh->{mock_add_resultset} = $mock_letters; my $letters = C4::Letters::GetLetters(); is( $letters->{ISBN}, 'book', 'HASH ref of ISBN is book' ); + +# Regression test for bug 10843 +# $dt->add takes a scalar, not undef +my $letter; +t::lib::Mocks::mock_preference('ReservesMaxPickUpDelay', undef); +$letter = C4::Letters::_parseletter( undef, 'reserves', {waitingdate => "2013-01-01"} ); +is( ref($letter), 'HASH'); +t::lib::Mocks::mock_preference('ReservesMaxPickUpDelay', 1); +$letter = C4::Letters::_parseletter( undef, 'reserves', {waitingdate => "2013-01-01"} ); +is( ref($letter), 'HASH'); + -- 1.8.1.2 From srdjan at catalyst.net.nz Tue Oct 1 01:39:58 2013 From: srdjan at catalyst.net.nz (Srdjan) Date: Tue, 1 Oct 2013 12:39:58 +1300 Subject: [Koha-patches] [PATCH] bug_10781: Removed ILSDI::Utility Message-ID: <1380584398-7306-1-git-send-email-srdjan@catalyst.net.nz> Test: This should be a noop. Regression testing required: /cgi-bin/koha/ilsdi.pl functioanality, in particuler: GetAvailability - ?service=Describe&verb=GetAvailability AuthenticatePatron - ?service=Describe&verb=AuthenticatePatron ILS-DI syspref must be turned on --- C4/ILSDI/Services.pm | 37 +++++++++++++++++- C4/ILSDI/Utility.pm | 107 --------------------------------------------------- t/ILSDI_Utility.t | 14 ------- 3 files changed, 35 insertions(+), 123 deletions(-) delete mode 100644 C4/ILSDI/Utility.pm delete mode 100755 t/ILSDI_Utility.t diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm index 7941a70..1a189e6 100644 --- a/C4/ILSDI/Services.pm +++ b/C4/ILSDI/Services.pm @@ -29,7 +29,6 @@ use C4::Biblio; use C4::Reserves qw(AddReserve CancelReserve GetReservesFromBiblionumber GetReservesFromBorrowernumber CanBookBeReserved CanItemBeReserved); use C4::Context; use C4::AuthoritiesMarc; -use C4::ILSDI::Utility; use XML::Simple; use HTML::Entities; use CGI; @@ -115,7 +114,7 @@ sub GetAvailability { foreach my $id ( split( / /, $cgi->param('id') ) ) { if ( $cgi->param('id_type') eq "item" ) { - my ( $biblionumber, $status, $msg, $location ) = Availability($id); + my ( $biblionumber, $status, $msg, $location ) = _availability($id); $out .= " \n"; $out .= " \n"; @@ -764,4 +763,38 @@ sub CancelHold { return { code => 'Canceled' }; } +=head2 _availability + +Returns, for an itemnumber, an array containing availability information. + + my ($biblionumber, $status, $msg, $location) = _availability($id); + +=cut + +sub _availability { + my ($itemnumber) = @_; + my $item = GetItem( $itemnumber, undef, undef ); + + if ( not $item->{'itemnumber'} ) { + return ( undef, 'unknown', 'Error: could not retrieve availability for this ID', undef ); + } + + my $biblionumber = $item->{'biblioitemnumber'}; + my $location = GetBranchName( $item->{'holdingbranch'} ); + + if ( $item->{'notforloan'} ) { + return ( $biblionumber, 'not available', 'Not for loan', $location ); + } elsif ( $item->{'onloan'} ) { + return ( $biblionumber, 'not available', 'Checked out', $location ); + } elsif ( $item->{'itemlost'} ) { + return ( $biblionumber, 'not available', 'Item lost', $location ); + } elsif ( $item->{'wthdrawn'} ) { + return ( $biblionumber, 'not available', 'Item withdrawn', $location ); + } elsif ( $item->{'damaged'} ) { + return ( $biblionumber, 'not available', 'Item damaged', $location ); + } else { + return ( $biblionumber, 'available', undef, $location ); + } +} + 1; diff --git a/C4/ILSDI/Utility.pm b/C4/ILSDI/Utility.pm deleted file mode 100644 index b56e1fa..0000000 --- a/C4/ILSDI/Utility.pm +++ /dev/null @@ -1,107 +0,0 @@ -package C4::ILSDI::Utility; - -# Copyright 2009 SARL Biblibre -# Copyright 2011 software.coop and MJ Ray -# -# This file is part of Koha. -# -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -use strict; -use warnings; - -use C4::Members; -use C4::Items; -use C4::Circulation; -use C4::Biblio; -use C4::Reserves qw(GetReservesFromBorrowernumber CanBookBeReserved); -use C4::Context; -use C4::Branch qw/GetBranchName/; -use Digest::MD5 qw(md5_base64); - -use vars qw($VERSION @ISA @EXPORT); - -BEGIN { - - # set the version for version checking - $VERSION = 3.07.00.049; - require Exporter; - @ISA = qw(Exporter); - @EXPORT = qw( - &BorrowerExists &Availability - ); -} - -=head1 NAME - -C4::ILS-DI::Utility - ILS-DI Utilities - -=cut - -=head2 BorrowerExists - -Checks, for a given userid and password, if the borrower exists. - - if ( BorrowerExists($userid, $password) ) { - # Do stuff - } - -=cut - -sub BorrowerExists { - my ( $userid, $password ) = @_; - $password = md5_base64($password); - my $dbh = C4::Context->dbh; - my $sth = $dbh->prepare("SELECT COUNT(*) FROM borrowers WHERE userid =? and password=? "); - $sth->execute( $userid, $password ); - return $sth->fetchrow; -} - -=head2 Availability - -Returns, for an itemnumber, an array containing availability information. - - my ($biblionumber, $status, $msg, $location) = Availability($id); - -=cut - -sub Availability { - my ($itemnumber) = @_; - my $item = GetItem( $itemnumber, undef, undef ); - - if ( not $item->{'itemnumber'} ) { - return ( undef, 'unknown', 'Error: could not retrieve availability for this ID', undef ); - } - - my $biblionumber = $item->{'biblioitemnumber'}; - my $location = GetBranchName( $item->{'holdingbranch'} ); - - if ( $item->{'notforloan'} ) { - return ( $biblionumber, 'not available', 'Not for loan', $location ); - } elsif ( $item->{'onloan'} ) { - return ( $biblionumber, 'not available', 'Checked out', $location ); - } elsif ( $item->{'itemlost'} ) { - return ( $biblionumber, 'not available', 'Item lost', $location ); - } elsif ( $item->{'withdrawn'} ) { - return ( $biblionumber, 'not available', 'Item withdrawn', $location ); - } elsif ( $item->{'damaged'} ) { - return ( $biblionumber, 'not available', 'Item damaged', $location ); - } else { - return ( $biblionumber, 'available', undef, $location ); - } - - die Data::Dumper::Dumper($item); -} - -1; diff --git a/t/ILSDI_Utility.t b/t/ILSDI_Utility.t deleted file mode 100755 index c06209b..0000000 --- a/t/ILSDI_Utility.t +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/perl -# -# This Koha test module is a stub! -# Add more tests here!!! - -use strict; -use warnings; - -use Test::More tests => 1; - -BEGIN { - use_ok('C4::ILSDI::Utility'); -} - -- 1.8.1.2 From colin.campbell at ptfs-europe.com Wed Oct 2 11:09:13 2013 From: colin.campbell at ptfs-europe.com (Colin Campbell) Date: Wed, 2 Oct 2013 10:09:13 +0100 Subject: [Koha-patches] [PATCH] Bug 10983: Remove unused private subroutines from C4::Budgets Message-ID: <1380704953-5984-1-git-send-email-colin.campbell@ptfs-europe.com> The subroutine _filter_fields is not used by the module and the sub _columns is only used by it Remove the dead code, and any associated bugs --- C4/Budgets.pm | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/C4/Budgets.pm b/C4/Budgets.pm index a648773..f3b82d4 100644 --- a/C4/Budgets.pm +++ b/C4/Budgets.pm @@ -956,37 +956,6 @@ sub ConvertCurrency { return ( $price / $cur ); } -=head2 _columns - -returns an array containing fieldname followed by PRI as value if PRIMARY Key - -=cut - -sub _columns(;$) { - my $tablename=shift||"aqbudgets"; - return @{C4::Context->dbh->selectcol_arrayref("SHOW columns from $tablename",{Columns=>[1,4]})}; -} - -sub _filter_fields{ - my $budget=shift; - my $tablename=shift; - my @keys; - my @values; - my %columns= _columns($tablename); - #Filter Primary Keys of table - my $elements=join "|",grep {$columns{$_} ne "PRI"} keys %columns; - foreach my $field (grep {/\b($elements)\b/} keys %$budget){ - $$budget{$field}=format_date_in_iso($$budget{$field}) if ($field=~/date/ && $$budget{$field} !~C4::Dates->regexp("iso")); - my $strkeys= " $field = ? "; - if ($field=~/branch/){ - $strkeys="( $strkeys OR $field='' OR $field IS NULL) "; - } - push @values, $$budget{$field}; - push @keys, $strkeys; - } - return (\@keys,\@values); -} - END { } # module clean-up code here (global destructor) 1; -- 1.8.3.1 From tomascohen at gmail.com Wed Oct 2 17:52:52 2013 From: tomascohen at gmail.com (Tomas Cohen Arazi) Date: Wed, 2 Oct 2013 12:52:52 -0300 Subject: [Koha-patches] [PATCH 1/3] Bug 10691: 5xx not properly linked by authid in authority search result list Message-ID: <1380729174-17825-1-git-send-email-tomascohen@gmail.com> This patch changes the URL and data used to show the 'see also' links on the OPAC's authority search results page. Bonus points: makes some strings translatable. To test: - On your dev setup (master) create some authority records (i created personal name authorities). - Pick one of them and link 400$a to another one, do the same with 500$a - Add some other 400$a and 500$a without linking (i.e. plain text) - Make sure zebra is running and changes got indexed. - In the OPAC search for the authority that is linked to the others. - Check the 'see also:' link points to an authority search - Apply the patch - Reload/re-do the search - Check the 'see also:' link points to the authority id in the case of linked authorities, and to an authority search in the case of plain text names. Regards To+ Sponsored-by: Universidad Nacional de Cordoba --- .../en/includes/authorities-search-results.inc | 60 ++++++++++++++------ .../en/modules/opac-authoritiessearchresultlist.tt | 58 +++++++++---------- 2 files changed, 71 insertions(+), 47 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc index b113049..9a2ffde 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc @@ -1,4 +1,6 @@ [% BLOCK showreference %] + [% SET authidurl = '/cgi-bin/koha/opac-authoritiesdetail.pl?authid=' %] + [% SET searchurl = '/cgi-bin/koha/opac-authorities-home.pl?op=do_search&type=opac&operatorc=contains&marclistc=mainentry&and_orc=and&orderby=HeadingAsc&value=' %] [% IF marcflavour == 'UNIMARC' %] [% SWITCH type %] [% CASE 'broader' %] @@ -11,24 +13,39 @@ RT: [% heading | html %] [% END %] [% ELSE %] - [% IF ( label ) %][% SWITCH label %] - [% CASE 'see also:' %]see also: - [% CASE 'used for/see from:' %]used for/see from: - [% END %][% END %] + + [% IF ( type=='seefrom' ) %] + used for/see from: + [% ELSIF ( type=='seealso' ) %] + see also: + [% END %] + - [% IF ( linkpath && search ) %][% heading | html %] - [% ELSE %][% heading | html %][% END %] + [% IF ( type=='seealso' ) %] + [% IF ( authid ) %] + [% heading | html %] + [% ELSE %] + [% heading | html %] + [% END %] + [% ELSE %] + [% heading | html %] + [% END %] - [% UNLESS ( type=='seefrom' || type=='seealso' ) %][% SWITCH type %] - [% CASE 'earlier' %](Earlier heading) - [% CASE 'later' %](Later heading) - [% CASE 'acronym' %](Acronym) - [% CASE 'musical' %](Musical composition) - [% CASE 'broader' %](Broader heading) - [% CASE 'narrower' %](Narrower heading) - [% CASE 'parent' %](Immediate parent body) - [% CASE %][% IF type %]([% type | html %])[% END %] - [% END %][% END %] + [% UNLESS ( type=='seefrom' || type=='seealso' ) %] + + [% SWITCH type %] + [% CASE 'earlier' %](Earlier heading) + [% CASE 'later' %](Later heading) + [% CASE 'acronym' %](Acronym) + [% CASE 'musical' %](Musical composition) + [% CASE 'broader' %](Broader heading) + [% CASE 'narrower' %](Narrower heading) + [% CASE 'parent' %](Immediate parent body) + [% CASE %][% IF type %]([% type | html %]) + [% END %] + [% END %] + + [% END %] [% END %] [% END %] [% BLOCK authresult %] @@ -68,14 +85,21 @@ [% IF ( summary.seefrom ) %] [% FOREACH seefro IN summary.seefrom %]
- [% PROCESS showreference heading=seefro.heading label="used for/see from:" type=seefro.type search='' %] + [% PROCESS showreference + heading=seefro.heading + type=seefro.type + %]
[% END %] [% END %] [% IF ( summary.seealso ) %] [% FOREACH seeals IN summary.seealso %]
- [% PROCESS showreference heading=seeals.heading label="see also:" type=seeals.type linkpath=link search=seeals.search %] + [% PROCESS showreference + heading=seeals.heading + type=seeals.type + authid=seeals.authid + %]
[% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt index 71ad40e..7f80fe0 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt @@ -44,35 +44,35 @@ [% IF ( total ) %]
- - - - - [% UNLESS ( isEDITORS ) %] - - [% END %] - - - [% FOREACH resul IN result %] - [% UNLESS ( loop.odd ) %] - - [% ELSE %] - - [% END %] - - - [% UNLESS ( resul.isEDITORS ) %] - - [% END %] - - - [% END %] -
Authorized headingsType of headingBiblio recordsFull heading
[% PROCESS authresult summary=resul.summary link="/cgi-bin/koha/opac-authorities-home.pl?op=do_search&type=opac&operatorc=contains&marclistc=mainentry&and_orc=and&orderby=HeadingAsc&valuec=" %][% resul.authtype %] - [% resul.used %] biblios - - View full heading -
-
+ + + + + [% UNLESS ( isEDITORS ) %] + + [% END %] + + +[% FOREACH resul IN result %] + [% UNLESS ( loop.odd ) %] + + [% ELSE %] + + [% END %] + + + [% UNLESS ( resul.isEDITORS ) %] + + [% END %] + + +[% END %] +
Authorized headingsType of headingBiblio recordsFull heading
[% PROCESS authresult summary=resul.summary %][% resul.authtype %] + [% resul.used %] biblios + + View full heading +
+
[% IF ( displayprev ) %] << -- 1.7.9.5 From tomascohen at gmail.com Wed Oct 2 17:52:53 2013 From: tomascohen at gmail.com (Tomas Cohen Arazi) Date: Wed, 2 Oct 2013 12:52:53 -0300 Subject: [Koha-patches] [PATCH 2/3] Bug 10691: 5xx not properly linked by authid in authority search result list [Staff] In-Reply-To: <1380729174-17825-1-git-send-email-tomascohen@gmail.com> References: <1380729174-17825-1-git-send-email-tomascohen@gmail.com> Message-ID: <1380729174-17825-2-git-send-email-tomascohen@gmail.com> This patch changes the URL and data used to show the 'see also' links on the Staff's authority search results page. Bonus points: makes some strings translatable. To test: - On your dev setup (master) create some authority records (i created personal name authorities). - Pick one of them and link 400$a to another one, do the same with 500$a - Add some other 400$a and 500$a entries with plain text (i.e. no linking) - Make sure zebra is running and changes got indexed. - In the staff interface search for the authority that is linked to the others. - Check the 'see also:' link points to an authority search - Apply the patch - Reload/re-do the search - Check the 'see also:' link points to the authority id for linked authorities, and to an authority search result in the case of plain text entries. - Check that the authority search from the cataloguing interface still works as usual. Regards To+ Sponsored-by: Universidad Nacional de Cordoba --- .../en/includes/authorities-search-results.inc | 111 ++++++++++++-------- .../en/modules/authorities/searchresultlist.tt | 2 +- 2 files changed, 71 insertions(+), 42 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc index 366c695..2ee15db 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -1,4 +1,7 @@ [% BLOCK showreference %] + [% SET authidurl = '/cgi-bin/koha/authorities/detail.pl?authid=' %] + [% SET searchurl = '/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&marclist=any&operator=contains&orderby=HeadingAsc&value=' %] + [% IF marcflavour == 'UNIMARC' %] [% SWITCH type %] [% CASE 'broader' %] @@ -11,69 +14,94 @@ RT: [% heading | html %] [% END %] [% ELSE %] - [% IF ( label ) %][% label | html %][% END %] + + [% IF ( type=='seefrom' ) %] + used for/see from: + [% ELSIF ( type=='seealso' ) %] + see also: + [% END %] + - [% IF ( linkpath && search ) %][% heading | html %] - [% ELSE %][% heading | html %][% END %] + [% IF ( type=='seealso' ) %] + [% IF ( authid ) %] + [% heading | html %] + [% ELSE %] + [% heading | html %] + [% END %] + [% ELSIF ( type=='seealso' ) %] + [% heading | html %] + [% END %] - [% UNLESS ( type=='seefrom' || type=='seealso' ) %][% SWITCH type %] - [% CASE 'earlier' %](Earlier heading) - [% CASE 'later' %](Later heading) - [% CASE 'acronym' %](Acronym) - [% CASE 'musical' %](Musical composition) - [% CASE 'broader' %](Broader heading) - [% CASE 'narrower' %](Narrower heading) - [% CASE 'parent' %](Immediate parent body) - [% CASE %][% IF type %]([% type | html %])[% END %] - [% END %][% END %] + [% UNLESS ( type=='seefrom' || type=='seealso' ) %] + + [% SWITCH type %] + [% CASE 'earlier' %](Earlier heading) + [% CASE 'later' %](Later heading) + [% CASE 'acronym' %](Acronym) + [% CASE 'musical' %](Musical composition) + [% CASE 'broader' %](Broader heading) + [% CASE 'narrower' %](Narrower heading) + [% CASE 'parent' %](Immediate parent body) + [% CASE %][% IF type %]([% type | html %]) + [% END %] + [% END %] + + [% END %] [% END %] [% END %] [% BLOCK authresult %] [% IF ( summary.summary ) %][% summary.summary | html %]:[% END %] [% UNLESS ( summary.summaryonly ) %]
- [% FOREACH authorize IN summary.authorized %] - [% authorize.heading | html %] - [% END %] + [% FOREACH authorize IN summary.authorized %] + [% authorize.heading | html %] + [% END %]
[% IF ( marcflavour == 'UNIMARC' ) %] - [% IF summary.notes %] -
- [% FOREACH note IN summary.notes %] - [% note.note | html %] - [% END %] -
- [% END %] - [% IF summary.seealso %] -
- [% FOREACH see IN summary.seealso %] - [% PROCESS showreference heading=see.heading label="" type=see.type search='' %] - [% IF ! loop.last %] ; [% END %] + [% IF summary.notes %] +
+ [% FOREACH note IN summary.notes %] + [% note.note | html %] + [% END %] +
[% END %] -
- [% END %] - [% IF summary.otherscript %] -
- [% FOREACH other IN summary.otherscript %] - [% PROCESS language lang=other.lang | trim %]: - [% other.term %] - [% IF ! loop.last %] ; [% END %] + [% IF summary.seealso %] +
+ [% FOREACH see IN summary.seealso %] + [% PROCESS showreference heading=see.heading label="" type=see.type search='' %] + [% IF ! loop.last %] ; [% END %] + [% END %] +
+ [% END %] + [% IF summary.otherscript %] +
+ [% FOREACH other IN summary.otherscript %] + [% PROCESS language lang=other.lang | trim %]: + [% other.term %] + [% IF ! loop.last %] ; [% END %] + [% END %] +
[% END %] -
- [% END %] - [% ELSE %] [% IF ( summary.seefrom ) %] [% FOREACH seefro IN summary.seefrom %]
- [% PROCESS showreference heading=seefro.heading label="used for/see from:" type=seefro.type search='' %] + [% PROCESS showreference + heading=seefro.heading + type=seefro.type + authid=seefro.authid + %]
[% END %] [% END %] [% IF ( summary.seealso ) %] [% FOREACH seeals IN summary.seealso %]
- [% PROCESS showreference heading=seeals.heading label="see also:" type=seeals.type linkpath=link search=seeals.search %] + [% PROCESS showreference + heading=seeals.heading + type=seeals.type + authid=seeals.authid + %]
[% END %] [% END %] @@ -90,3 +118,4 @@ [% CASE %][% lang %] [% END %] [% END %] + diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt index ea16505..808881a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt @@ -77,7 +77,7 @@ function searchauthority() { [% ELSE %] [% END %] - [% PROCESS authresult summary=resul.summary link="/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&marclist=any&operator=contains&orderby=HeadingAsc&value=" %] + [% PROCESS authresult summary=resul.summary %] Details [% UNLESS ( resul.isEDITORS ) %] -- 1.7.9.5 From tomascohen at gmail.com Wed Oct 2 17:52:54 2013 From: tomascohen at gmail.com (Tomas Cohen Arazi) Date: Wed, 2 Oct 2013 12:52:54 -0300 Subject: [Koha-patches] [PATCH 3/3] Bug 10691: Small glitch fixed In-Reply-To: <1380729174-17825-1-git-send-email-tomascohen@gmail.com> References: <1380729174-17825-1-git-send-email-tomascohen@gmail.com> Message-ID: <1380729174-17825-3-git-send-email-tomascohen@gmail.com> A small glitch prevented 'see from' headings to show. Sponsored-by: Universidad Nacional de C?rdoba --- .../en/includes/authorities-search-results.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc index 2ee15db..10559d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -28,7 +28,7 @@ [% ELSE %] [% heading | html %] [% END %] - [% ELSIF ( type=='seealso' ) %] + [% ELSE %] [% heading | html %] [% END %] -- 1.7.9.5 From tomascohen at gmail.com Wed Oct 2 20:57:53 2013 From: tomascohen at gmail.com (Tomas Cohen Arazi) Date: Wed, 2 Oct 2013 15:57:53 -0300 Subject: [Koha-patches] [PATCH] Bug 10987: Too many 'see also' and 'see from' labels occurences Message-ID: <1380740273-18683-1-git-send-email-tomascohen@gmail.com> If an authority record has more than one 4xx$a (or 5xx$a) entries the corresponding labels 'see also' and 'used for/see from' are repeated. To test: - Have authority records with more than one entry on the 4xx (or 5xx) fields. - Do a search, check "see also:" (or 'used for/see from') appear more than once. - Apply the patch - Reload and check it looks nicer :-D - Repeat for: staff auth search, opac using ccsr, opac using prog - Signoff Regards To+ Sponsored-by: Universidad Nacional de Cordoba --- .../intranet-tmpl/prog/en/css/staff-global.css | 8 +++++--- .../en/includes/authorities-search-results.inc | 21 ++++++++++---------- koha-tmpl/opac-tmpl/ccsr/en/css/opac.css | 6 ++++-- koha-tmpl/opac-tmpl/prog/en/css/opac.css | 6 ++++-- .../en/includes/authorities-search-results.inc | 21 ++++++++++---------- 5 files changed, 33 insertions(+), 29 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css index 308e3a0..64d2f97 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -2258,11 +2258,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { - font-style: italic; +.seefrom, .seealso { + font-style: italic; + text-indent: 2em; } #authfinderops { diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc index 10559d6..5d8819b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -14,13 +14,6 @@ RT: [% heading | html %] [% END %] [% ELSE %] - - [% IF ( type=='seefrom' ) %] - used for/see from: - [% ELSIF ( type=='seealso' ) %] - see also: - [% END %] - [% IF ( type=='seealso' ) %] [% IF ( authid ) %] @@ -83,9 +76,11 @@
[% END %] [% ELSE %] - [% IF ( summary.seefrom ) %] + [% IF ( summary.seefrom.size > 1 ) %] +
+ used for/see from: [% FOREACH seefro IN summary.seefrom %] -
+
[% PROCESS showreference heading=seefro.heading type=seefro.type @@ -93,10 +88,13 @@ %]
[% END %] +
[% END %] - [% IF ( summary.seealso ) %] + [% IF ( summary.seealso.size > 1 ) %] +
+ see also: [% FOREACH seeals IN summary.seealso %] -
+
[% PROCESS showreference heading=seeals.heading type=seeals.type @@ -104,6 +102,7 @@ %]
[% END %] +
[% END %] [% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css index 0901d6b..f0b8744 100644 --- a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css +++ b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css @@ -2640,11 +2640,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { +.seefrom, .seealso { font-style: italic; + text-indent: 2em; } .authstanza { diff --git a/koha-tmpl/opac-tmpl/prog/en/css/opac.css b/koha-tmpl/opac-tmpl/prog/en/css/opac.css index c2902c1..c977b62 100644 --- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css +++ b/koha-tmpl/opac-tmpl/prog/en/css/opac.css @@ -2779,11 +2779,13 @@ ul.ui-tabs-nav li { } .authref { - text-indent: 2em; + font-style: normal; + text-indent: 4em; } -.authref .label { +.seefrom, .seealso { font-style: italic; + text-indent: 2em; } .authstanza { diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc index 9a2ffde..5406de3 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc @@ -13,13 +13,6 @@ RT: [% heading | html %] [% END %] [% ELSE %] - - [% IF ( type=='seefrom' ) %] - used for/see from: - [% ELSIF ( type=='seealso' ) %] - see also: - [% END %] - [% IF ( type=='seealso' ) %] [% IF ( authid ) %] @@ -82,19 +75,24 @@
[% END %] [% ELSE %] - [% IF ( summary.seefrom ) %] + [% IF ( summary.seefrom.size > 1 ) %] +
+ used for/see from: [% FOREACH seefro IN summary.seefrom %] -
+
[% PROCESS showreference heading=seefro.heading type=seefro.type %]
[% END %] +
[% END %] - [% IF ( summary.seealso ) %] + [% IF ( summary.seealso.size > 1 ) %] +
+ see also: [% FOREACH seeals IN summary.seealso %] -
+
[% PROCESS showreference heading=seeals.heading type=seeals.type @@ -102,6 +100,7 @@ %]
[% END %] +
[% END %] [% END %] [% END %] -- 1.7.9.5 From srdjan at catalyst.net.nz Thu Oct 3 02:56:17 2013 From: srdjan at catalyst.net.nz (Srdjan) Date: Thu, 3 Oct 2013 13:56:17 +1300 Subject: [Koha-patches] [PATCH] Bug 10890 - Autobarcode "yymm00001" Fails in Acquisitions When Receiving Item Message-ID: <1380761777-24123-1-git-send-email-srdjan@catalyst.net.nz> From: David Cook This patch adds the name "f" to the form that adds items when placing or receiving an order in Acquisitions. This is needed so that the autobarcode code (which uses document.f.field_name) will work properly when the system preference is set to "yymm00001". AcqCreateItem "placing an order" "receiving an order" TEST PLAN 1) Set the autobarcode system preference to "yymm00001" 2) Set the AcqCreateItem system preference to "placing an order" 3) Plan an order 4) Try to add a barcode to the item in the AJAX form 5) Note that no barcode appears. Depending on your browser, you might receive a Javascript error popup message or a error icon at the bottom of your screen. You might receive no error message at all and it will fail seemingly silently. 6) Set the AcqCreateItem system preference to "receiving an order" 7) Receive the order 8) Try to add a barcode to the item in the AJAX form 9) See step 5. No barcode will appear and you might get an error message. 10) Apply the patch 11) Repeat steps 2, 3, 4, 6, 7, and 8 again. That is, try to add barcodes when placing an order and receiving an order. 12) Note that a barcode now appears with the pattern of yymm00001 Signed-off-by: Srdjan --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt index c261530..519e8e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt @@ -207,7 +207,7 @@ $(document).ready(function()
[% END %] -
+
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt index 67999e4..9cae32c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt @@ -130,7 +130,7 @@

Receive items from : [% name %] [% IF ( invoice ) %][[% invoice %]] [% END %] (order #[% ordernumber %])

[% IF ( count ) %] - +
-- 1.8.1.2 From srdjan at catalyst.net.nz Thu Oct 3 03:53:37 2013 From: srdjan at catalyst.net.nz (Srdjan) Date: Thu, 3 Oct 2013 14:53:37 +1300 Subject: [Koha-patches] [PATCH] Bug 10794 - Sorting on billing date column in invoices table doesn't work Message-ID: <1380765217-30593-1-git-send-email-srdjan@catalyst.net.nz> From: Owen Leonard This patch adds the sorting by title string option to the table of invoices. This allows column data to be sorted based on the ISO-formatted date rather than the formatted-for-display date. A "blank" (0000-00-00) date is added to cells which contain no date data. To test, view the Acquisitions Invoices page (acqui/invoices.pl) and confirm that the "Billing date" column is sorted correctly regardless of the dateformat system preference. http://bugs.koha-community.org/show_bug.cgi?id=10749 Signed-off-by: Srdjan --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt index 40114ad..965fec5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt @@ -9,14 +9,11 @@ diff --git a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less index c95d82a..8fb8bf2 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less +++ b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less @@ -745,6 +745,9 @@ fieldset { margin-bottom : 1em; } } + table { + font-size: 100%; + } } div.rows+div.rows { @@ -2226,4 +2229,40 @@ td img { } } +#holds { + margin : 0 auto; + max-width: 800px; +} +.holdrow { + clear : both; + padding: 0 1em 1em 1em; + border-bottom:1px solid #CCC; + margin-bottom:.5em; + fieldset { + border : 0; + margin : 0; + float: none; + .label { + font-size: 14px; + } + } + label { + display: inline; + } +} +.hold-options { + clear : both; +} +.toggle-hold-options { + background-color: #eee; + clear : both; + display : block; + font-weight : bold; + margin: 1em 0; + padding: .5em; +} +.copiesrow { + clear : both; +} + @import "responsive.less"; -- 1.7.9.5 From dpk at randomnotes.org Tue Oct 29 03:22:50 2013 From: dpk at randomnotes.org (Doug Kingston) Date: Mon, 28 Oct 2013 19:22:50 -0700 Subject: [Koha-patches] [PATCH 3/3] Bug 11078 rebuild-zebra can lose updates, QA patch 1 Message-ID: <1383013370-8078-1-git-send-email-dpk@randomnotes.org> Add lockdir to the debian config template. --- debian/templates/koha-conf-site.xml.in | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in index 71de9fb..e15e249 100644 --- a/debian/templates/koha-conf-site.xml.in +++ b/debian/templates/koha-conf-site.xml.in @@ -265,6 +265,7 @@ /usr/share/koha/opac/htdocs/opac-tmpl /usr/share/koha/intranet/htdocs/intranet-tmpl /usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/includes/ + /var/lock /var/log/koha/__KOHASITE__ /usr/share/doc/koha-common /var/spool/koha/__KOHASITE__ -- 1.7.9.5 From dpk at randomnotes.org Tue Oct 29 07:33:36 2013 From: dpk at randomnotes.org (Doug Kingston) Date: Mon, 28 Oct 2013 23:33:36 -0700 Subject: [Koha-patches] [PATCH 4/4] Bug 11078 Add locking to rebuild_zebra (QA Patch 2 10/28) Message-ID: <1383028416-10195-1-git-send-email-dpk@randomnotes.org> In the event lockdir is not specified in the koha-conf.xml file which will occur for old installations, default the lockdir to a sensible default (/var/lock). --- misc/migration_tools/rebuild_zebra.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/misc/migration_tools/rebuild_zebra.pl b/misc/migration_tools/rebuild_zebra.pl index e18725c..8b77686 100755 --- a/misc/migration_tools/rebuild_zebra.pl +++ b/misc/migration_tools/rebuild_zebra.pl @@ -143,7 +143,9 @@ my ($biblioitemnumbertagfield,$biblioitemnumbertagsubfield) = &GetMarcFromKohaFi # We need to create our own lock directory which incorporates the database instance # we are indexing to facilitate multiple instances on the same machine. -my $lockdir = C4::Context->config("lockdir") . "/koha_rebuild_zebra_" . C4::Context->config("database"); +my $lockdir = C4::Context->config("lockdir"); +$lockdir = "/var/lock" if $lockdir == ""; +$lockdir .= ("/koha_rebuild_zebra_" . C4::Context->config("database")); mkpath($lockdir, 0, 0755) unless (-d $lockdir); my $lockfile = $lockdir . "/lock"; -- 1.7.9.5 From colin.campbell at ptfs-europe.com Tue Oct 29 14:02:30 2013 From: colin.campbell at ptfs-europe.com (Colin Campbell) Date: Tue, 29 Oct 2013 13:02:30 +0000 Subject: [Koha-patches] [PATCH] Bug 11158 In searching starts with needs to apply to heading Message-ID: <1383051750-9355-1-git-send-email-colin.campbell@ptfs-europe.com> starts with was being applied to all tokens within the heading needs to apply to the heading as a whole otherwise results are indistinguishable to contains. The problem manifests if ICU is being used for tokenization (although there are a couple of anomalous cases that have cropped up using the old chr mappings) --- C4/AuthoritiesMarc.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/AuthoritiesMarc.pm b/C4/AuthoritiesMarc.pm index 7443f36..2ece257 100644 --- a/C4/AuthoritiesMarc.pm +++ b/C4/AuthoritiesMarc.pm @@ -172,8 +172,8 @@ sub SearchAuthorities { $attr .= " \@attr 4=107 "; #Number Exact match } elsif ( @$operator[$i] eq "start" ) { - $attr .= " \@attr 3=2 \@attr 4=1 \@attr 5=1 " - ; #Firstinfield Phrase, Right truncated + $attr .= ' \@attr 3=1 \@attr 6=3 \@attr 4=1 \@attr 5=1 '; + # First_in_field, complete_field phrase Right truncation } elsif ( @$operator[$i] eq "exact" ) { $attr .= " \@attr 4=1 \@attr 5=100 \@attr 6=3 " -- 1.8.3.1 From dpk at randomnotes.org Wed Oct 30 05:19:12 2013 From: dpk at randomnotes.org (Doug Kingston) Date: Tue, 29 Oct 2013 21:19:12 -0700 Subject: [Koha-patches] [PATCH 5/5] Bug 11078 Add locking to rebuild_zebra (QA Patch 3 10/29) Message-ID: <1383106752-20094-1-git-send-email-dpk@randomnotes.org> A final tweak to the debian packages template to ensure the lock file is under /var/lock/koha/INSTANCENAME. Its not ideal but this work for all legacy and new instalations. --- debian/templates/koha-conf-site.xml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in index e15e249..bae4bf8 100644 --- a/debian/templates/koha-conf-site.xml.in +++ b/debian/templates/koha-conf-site.xml.in @@ -265,7 +265,7 @@ /usr/share/koha/opac/htdocs/opac-tmpl /usr/share/koha/intranet/htdocs/intranet-tmpl /usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/includes/ - /var/lock + /var/lock/koha/__KOHASITE__ /var/log/koha/__KOHASITE__ /usr/share/doc/koha-common /var/spool/koha/__KOHASITE__ -- 1.7.9.5 From nengard at bywatersolutions.com Sat Oct 26 02:11:18 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 20:11:18 -0400 Subject: [Koha-patches] [PATCH] Bug 10671: Update Cataloging Help Message-ID: <1382746278-2970-1-git-send-email-nengard@bywatersolutions.com> This patch updates the links to the manual in the cataloging help files. To test: * Visit cataloging pages and click the help * confirm links work --- .../prog/en/modules/help/cataloguing/addbiblio.tt | 2 +- .../prog/en/modules/help/cataloguing/addbooks.tt | 2 +- .../prog/en/modules/help/cataloguing/additem.tt | 2 +- .../prog/en/modules/help/cataloguing/linkitem.tt | 2 +- .../prog/en/modules/help/cataloguing/merge.tt | 2 +- .../prog/en/modules/help/cataloguing/moveitem.tt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbiblio.tt index 0fbb72f..ca65d2f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbiblio.tt @@ -89,6 +89,6 @@

If you would like to merge together multiple records you can do that via the Lists tool.

-

See the full documentation for Cataloging in the manual (online).

+

See the full documentation for Cataloging in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbooks.tt index 02d1fa1..65d0983 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbooks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/addbooks.tt @@ -30,7 +30,7 @@

Once you've opened a blank framework or imported a record via Z39.50 you will be presented with the form to continue cataloging

-

See the full documentation for Cataloging in the manual (online).

+

See the full documentation for Cataloging in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/additem.tt index 85ed076..192a8fc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/additem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/additem.tt @@ -74,6 +74,6 @@

Finally you can use the batch delete tool to delete a batch of items.

-

See the full documentation for Adding/Editing Items in the manual (online).

+

See the full documentation for Adding/Editing Items in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/linkitem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/linkitem.tt index fe9f091..d79b2a8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/linkitem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/linkitem.tt @@ -27,6 +27,6 @@

You can also see the analytics attached to this record by clicking the 'Show Analytic' link towards the top of the record in the normal view.

-

See the full documentation for Analytics in the manual (online).

+

See the full documentation for Analytics in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/merge.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/merge.tt index 0c7d905..d101e72 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/merge.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/merge.tt @@ -18,6 +18,6 @@

Important: It is important to rebuild your zebra index immediately after merging records. If a search is performed for a record which has been deleted Koha will present the patrons with an error in the OPAC.

-

See the full documentation for Merging Items in the manual (online).

+

See the full documentation for Merging Items in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/moveitem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/moveitem.tt index 89edfe8..188f6a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/moveitem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/moveitem.tt @@ -10,6 +10,6 @@

If you want to move all items to a new record creating only one bibliographic record you can use the 'Merge records' tool instead.

-

See the full documentation for Moving Items in the manual (online).

+

See the full documentation for Moving Items in the manual (online).

[% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 02:32:09 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 20:32:09 -0400 Subject: [Koha-patches] [PATCH] Bug 10671: Update Serials Help Message-ID: <1382747529-3089-1-git-send-email-nengard@bywatersolutions.com> This patch updates the links to the manual in the serials help files. To test: * Visit serials pages and click the help * confirm links work --- .../en/modules/help/serials/checkexpiration.tt | 2 +- .../prog/en/modules/help/serials/claims.tt | 2 +- .../prog/en/modules/help/serials/routing.tt | 2 +- .../en/modules/help/serials/serials-collection.tt | 2 +- .../prog/en/modules/help/serials/serials-edit.tt | 2 +- .../prog/en/modules/help/serials/serials-home.tt | 2 +- .../en/modules/help/serials/subscription-add.tt | 2 +- .../en/modules/help/serials/subscription-detail.tt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/checkexpiration.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/checkexpiration.tt index cc30fb1..71aa917 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/checkexpiration.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/checkexpiration.tt @@ -8,6 +8,6 @@

In your results you will see all subscriptions that will expire before the date you entered. From there you can choose to view the subscription further or renew it in one click.

-

See the full documentation for Checking Serial Expiration in the manual (online).

+

See the full documentation for Checking Serial Expiration in the manual (online).

[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/claims.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/claims.tt index 33116a8..1da2bd0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/claims.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/claims.tt @@ -12,7 +12,7 @@

From the list of late issues you can choose which ones you want to send a claim email to by clicking the checkbox to the left of late issue, choosing the notice template to use and clicking the 'Send notification' button.

-

See the full documentation for Serial Claims in the manual (online).

+

See the full documentation for Serial Claims in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/routing.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/routing.tt index 644baae..1f3989f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/routing.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/routing.tt @@ -18,6 +18,6 @@

To see a list of all of the routing lists a specific patron is on visit the Routing Lists tab on their patron record.

-

See the full documentation for Routing Lists in the manual (online).

+

See the full documentation for Routing Lists in the manual (online).

[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-collection.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-collection.tt index 5854817..1806fa7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-collection.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-collection.tt @@ -10,6 +10,6 @@

If you are adding multiple issues at once or if the latest expected issue is late, you can click the 'Generate Next' button to generate the next issue based on the subscription pattern.

-

See the full documentation for Serials in the manual (online).

+

See the full documentation for Serials in the manual (online).

[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-edit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-edit.tt index 4b0c596..b6fd187 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-edit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-edit.tt @@ -24,6 +24,6 @@

Clicking this button will generate the next issue for you and mark the previously expected issue as 'Late' automatically. You can then check the 'Edit' box to the right of each issue and edit the status on multiple issues at once.

-

See the full documentation for Receiving a Serial in the manual (online).

+

See the full documentation for Receiving a Serial in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-home.tt index 6b56d41..8c2cfa4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/serials-home.tt @@ -6,7 +6,7 @@

You can search for existing subscriptions by using the search box at the top of the page. You can search for any part of the serial title or ISSN.

-

See the full documentation for Serials in the manual (online).

+

See the full documentation for Serials in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-add.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-add.tt index a5d99b6..947c4c7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-add.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-add.tt @@ -83,7 +83,7 @@

Click 'Save Subscription' to save the information you have entered.

-

See the full documentation for Adding a Subscription in the manual (online).

+

See the full documentation for Adding a Subscription in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-detail.tt index ae0c07b..ce9008a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-detail.tt @@ -6,6 +6,6 @@

From here you can edit your subscription, renew it and/or recieve issues.

-

See the full documentation for Serials in the manual (online).

+

See the full documentation for Serials in the manual (online).

[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 02:43:26 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 20:43:26 -0400 Subject: [Koha-patches] [PATCH] Bug 10671: Update Tools Help Files Message-ID: <1382748206-3183-1-git-send-email-nengard@bywatersolutions.com> This patch updates the links to the manual in the tool help files. To test: * Visit tool pages and click the help * confirm links work --- .../prog/en/modules/help/tools/batchMod.tt | 2 +- .../prog/en/modules/help/tools/cleanborrowers.tt | 2 +- .../prog/en/modules/help/tools/csv-profiles.tt | 2 +- .../prog/en/modules/help/tools/export.tt | 2 +- .../prog/en/modules/help/tools/holidays.tt | 2 +- .../prog/en/modules/help/tools/import_borrowers.tt | 2 +- .../prog/en/modules/help/tools/inventory.tt | 2 +- .../prog/en/modules/help/tools/koha-news.tt | 2 +- .../prog/en/modules/help/tools/letter.tt | 2 +- .../en/modules/help/tools/manage-marc-import.tt | 2 +- .../prog/en/modules/help/tools/modborrowers.tt | 2 +- .../prog/en/modules/help/tools/overduerules.tt | 2 +- .../prog/en/modules/help/tools/picture-upload.tt | 2 +- .../prog/en/modules/help/tools/quotes-upload.tt | 2 +- .../prog/en/modules/help/tools/quotes.tt | 2 +- .../prog/en/modules/help/tools/scheduler.tt | 2 +- .../en/modules/help/tools/stage-marc-import.tt | 2 +- .../prog/en/modules/help/tools/tools-home.tt | 2 +- .../en/modules/help/tools/upload-cover-image.tt | 2 +- .../prog/en/modules/help/tools/viewlog.tt | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batchMod.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batchMod.tt index 63c60b6..2139408 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batchMod.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batchMod.tt @@ -30,6 +30,6 @@

If the items can be deleted they will be and you will be presented with a confirmation of your deletion.

-

See the full documentation for Batch Item Modifications and Batch Item Deletions in the manual (online).

+

See the full documentation for Batch Item Modifications and Batch Item Deletions in the manual (online).

[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/cleanborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/cleanborrowers.tt index c5e2a40..c6f5895 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/cleanborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/cleanborrowers.tt @@ -21,6 +21,6 @@
  • Clicking 'Finish' will delete or anonymize your data
  • -

    See the full documentation for Anonymizing Patrons in the manual (online).

    +

    See the full documentation for Anonymizing Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt index 3dcb37e..dd1543e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt @@ -52,6 +52,6 @@

    Your CSV Profiles will appear on the export list or cart menu under the 'Download' button in both the staff client and the OPAC

    -

    See the full documentation for CSV Profiles in the manual (online).

    +

    See the full documentation for CSV Profiles in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt index 261164a..bad8822 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt @@ -59,6 +59,6 @@
  • Click 'Export authority records'
  • -

    See the full documentation for Exporting MARC Records in the manual (online).

    +

    See the full documentation for Exporting MARC Records in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/holidays.tt index 5b3ad48..a86ccc9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/holidays.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/holidays.tt @@ -65,7 +65,7 @@

    When adding or editing events you can get additional help by clicking on the question mark next to various different options on the form

    -

    See the full documentation for the Calendar in the manual (online).

    +

    See the full documentation for the Calendar in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tt index 0ef671d..ce4153a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tt @@ -55,6 +55,6 @@ -

    See the full documentation for Patron Import in the manual (online).

    +

    See the full documentation for Patron Import in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/inventory.tt index f6f8d2f..7dc1124 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/inventory.tt @@ -16,6 +16,6 @@

    Choose the text file and the date you want to mark all times as seen and click 'Submit.'

    -

    See the full documentation for Inventory in the manual (online).

    +

    See the full documentation for Inventory in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/koha-news.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/koha-news.tt index 4b05dbd..dcf236f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/koha-news.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/koha-news.tt @@ -22,6 +22,6 @@
  • News on the circulation receipts will appear below the items that are checked out
  • -

    See the full documentation for News in the manual (online).

    +

    See the full documentation for News in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/letter.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/letter.tt index c490504..edb0ee6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/letter.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/letter.tt @@ -157,6 +157,6 @@ -

    See the full documentation for Notices in the manual (online).

    +

    See the full documentation for Notices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt index 0d53d86..09e0b99 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt @@ -40,7 +40,7 @@ -

    See the full documentation for the Managing Staged MARC Records in the manual (online).

    +

    See the full documentation for the Managing Staged MARC Records in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/modborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/modborrowers.tt index 8debfb4..b18d715 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/modborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/modborrowers.tt @@ -14,6 +14,6 @@

    Once you have made the changes you want, you can click 'Save' and Koha will present you with the changed patron records.

    -

    See the full documentation for Batch Patron Modification in the manual (online).

    +

    See the full documentation for Batch Patron Modification in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt index 90f5430..77a00f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt @@ -41,7 +41,7 @@

    Sincerely, Library Staff

    -

    See the full documentation for the Overdue Notice/Status Triggers in the manual (online).

    +

    See the full documentation for the Overdue Notice/Status Triggers in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt index 9c5cc07..e001d95 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt @@ -20,6 +20,6 @@

    Important: There is a limit of 520K on the size of the picture uploaded and it is recommended that the image be 200x300 pixels, but smaller images will work as well.

    -

    See the full documentation for the Patron Image Uploader in the manual (online).

    +

    See the full documentation for the Patron Image Uploader in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes-upload.tt index 6f27ca8..90a9fca 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes-upload.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes-upload.tt @@ -40,6 +40,6 @@ -

    See the full documentation for the Quote of the Day Uploader in the manual (online).

    +

    See the full documentation for the Quote of the Day Uploader in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt index 6672663..cc11e5d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt @@ -38,6 +38,6 @@ -

    See the full documentation for the Quote of the Day Editor in the manual (online).

    +

    See the full documentation for the Quote of the Day Editor in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt index 1b06d8a..cb86bf7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt @@ -23,6 +23,6 @@

    Task scheduler will not work if the user the web server runs as doesn't have the permission to use it. To find out if the right user has the permissions necessary, check /etc/at.allow to see what users are in it. If you don't have that file, check etc/at.deny. If at.deny exists but is blank, then every user can use it. Talk to your system admin about adding the user to the right place to make the task scheduler work.

    -

    See the full documentation for the Task Scheduler in the manual (online).

    +

    See the full documentation for the Task Scheduler in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt index 77315e7..c5ed964 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt @@ -27,6 +27,6 @@ records
  • To complete the process continue to the Managed Staged MARC Records Tool
  • -

    See the full documentation for the MARC Import in the manual (online).

    +

    See the full documentation for the MARC Import in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/tools-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/tools-home.tt index eb18b4c..22f39b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/tools-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/tools-home.tt @@ -4,6 +4,6 @@

    Tools in Koha all perform some sort of action. Often many of the items listed under Tools in Koha are referred to as 'Reports' in other library management systems.

    -

    See the full documentation for Tools in the manual (online).

    +

    See the full documentation for Tools in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/upload-cover-image.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/upload-cover-image.tt index 7422c7f..b35954b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/upload-cover-image.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/upload-cover-image.tt @@ -40,6 +40,6 @@

    In the OPAC the cover images will also appear in the images tab, as well as next to the title and on the search results.

    -

    See the full documentation for Uploading Cover Images in the manual (online).

    +

    See the full documentation for Uploading Cover Images in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/viewlog.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/viewlog.tt index 73b5c04..ce4de86 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/viewlog.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/viewlog.tt @@ -8,6 +8,6 @@

    You will note that real names do not appear on the log, only identifying numbers. You need to use the identifying numbers when searching the logs as well.

    -

    See the full documentation for the Log Viewer in the manual (online).

    +

    See the full documentation for the Log Viewer in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 03:05:31 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 21:05:31 -0400 Subject: [Koha-patches] =?utf-8?q?=5BPATCH=5D_Bug_10671=3A_Update_Admin_He?= =?utf-8?q?lp_Files?= Message-ID: <1382749531-3346-1-git-send-email-nengard@bywatersolutions.com> This patch updates the links to the manual in the help files. It also updates the text a bit in a few. To test: * Visit admin pages * Check the help files on each * Make sure links and text appears --- .../prog/en/modules/help/admin/admin-home.tt | 2 +- .../prog/en/modules/help/admin/aqbudgetperiods.tt | 2 +- .../prog/en/modules/help/admin/aqbudgets.tt | 2 +- .../prog/en/modules/help/admin/aqplan.tt | 2 +- .../modules/help/admin/auth_subfields_structure.tt | 2 +- .../en/modules/help/admin/auth_tag_structure.tt | 14 +++--- .../en/modules/help/admin/authorised_values.tt | 2 +- .../prog/en/modules/help/admin/authtypes.tt | 2 +- .../prog/en/modules/help/admin/biblio_framework.tt | 2 +- .../modules/help/admin/branch_transfer_limits.tt | 2 +- .../prog/en/modules/help/admin/branches.tt | 2 +- .../prog/en/modules/help/admin/categorie.tt | 2 +- .../prog/en/modules/help/admin/checkmarc.tt | 2 +- .../prog/en/modules/help/admin/cities.tt | 2 +- .../prog/en/modules/help/admin/classsources.tt | 2 +- .../prog/en/modules/help/admin/currency.tt | 2 +- .../prog/en/modules/help/admin/didyoumean.tt | 2 +- .../prog/en/modules/help/admin/fieldmapping.tt | 2 +- .../modules/help/admin/item_circulation_alerts.tt | 2 +- .../prog/en/modules/help/admin/itemtypes.tt | 2 +- .../prog/en/modules/help/admin/koha2marclinks.tt | 2 +- .../modules/help/admin/marc_subfields_structure.tt | 2 +- .../prog/en/modules/help/admin/marctagstructure.tt | 2 +- .../prog/en/modules/help/admin/matching-rules.tt | 2 +- .../prog/en/modules/help/admin/oai_set_mappings.tt | 2 +- .../prog/en/modules/help/admin/oai_sets.tt | 2 +- .../en/modules/help/admin/patron-attr-types.tt | 2 +- .../prog/en/modules/help/admin/preferences.tt | 2 +- .../prog/en/modules/help/admin/printers.tt | 11 ----- .../prog/en/modules/help/admin/roadtype.tt | 2 +- .../prog/en/modules/help/admin/smart-rules.tt | 2 +- .../prog/en/modules/help/admin/stopwords.tt | 15 ------- .../en/modules/help/admin/systempreferences.tt | 2 +- .../en/modules/help/admin/transport-cost-matrix.tt | 2 +- .../prog/en/modules/help/admin/z3950servers.tt | 40 +++++++++++++++---- 35 files changed, 69 insertions(+), 73 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/stopwords.tt diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/admin-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/admin-home.tt index b34f20d..90cc810 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/admin-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/admin-home.tt @@ -30,6 +30,6 @@

    This list of parameters includes functionalities that didn't fit in any other category. These items are optional and may not need to be altered, depending on your library's needs.

    -

    See the full documentation for system Administration in the manual (online).

    +

    See the full documentation for system Administration in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgetperiods.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgetperiods.tt index 462dfc5..2b89722 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgetperiods.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgetperiods.tt @@ -34,6 +34,6 @@

    Once you have made your edits, click the 'Save Changes' button. You will be brought to a list of your existing budgets.

    -

    See the full documentation for Budgets in the manual (online).

    +

    See the full documentation for Budgets in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgets.tt index 0feeff4..296d997 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqbudgets.tt @@ -31,6 +31,6 @@

    To the right of each fund you will find the 'Edit,' 'Delete,' and 'Add Child Fund' options. A Child Fund a sub-fund of the parent fund. For example, one might have a parent fund for 'Fiction,' and Child Funds for 'New Releases' and 'Science Fiction.' It is an optional way to further organize your finances.

    -

    See the full documentation for Funds in the manual (online).

    +

    See the full documentation for Funds in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqplan.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqplan.tt index 4c2ba3a..158c26e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqplan.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/aqplan.tt @@ -12,6 +12,6 @@

    Once your changes are made, click the 'Save' button. If you would like to export your data as a CSV file you can do so by entering a file name in the 'Output to a file named' field and clicking the 'Output' button.

    -

    See the full documentation for Budget Planning in the manual (online).

    +

    See the full documentation for Budget Planning in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_subfields_structure.tt index 1fd0d85..54479b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_subfields_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_subfields_structure.tt @@ -63,6 +63,6 @@
  • To save your changes, click the 'Save Changes' button at the top of the screen.
  • -

    See the full documentation for Authorities in the manual (online).

    +

    See the full documentation for Authorities in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_tag_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_tag_structure.tt index fb44a26..6833b6d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_tag_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/auth_tag_structure.tt @@ -7,18 +7,18 @@

    Enter the information about your new tag:

      -
    • The 'Tag' is the MARC field number.
    • -
    • The 'Label for lib' is the text that will appear in the staff client when in the cataloging module.
    • -
    • The 'Label for OPAC' is the text that will appear in the OPAC when viewing the MARC version of the record.
    • -
    • If this field can be repeated, check the 'Repeatable' box.
    • -
    • If this field is mandatory, check the 'Mandatory' box.
    • -
    • If you want this field to be a drop-down menu with limited possible answers, choose which 'Authorized value' list you want to use.
    • +
    • The 'Tag' is the MARC field number.
    • +
    • The 'Label for lib' is the text that will appear in the staff client when in the cataloging module.
    • +
    • The 'Label for OPAC' is the text that will appear in the OPAC when viewing the MARC version of the record.
    • +
    • If this field can be repeated, check the 'Repeatable' box.
    • +
    • If this field is mandatory, check the 'Mandatory' box.
    • +
    • If you want this field to be a drop-down menu with limited possible answers, choose which 'Authorized value' list you want to use.

    When you're finished, click 'Save Changes' and you will be presented with your new field.

    To the right of the new field is a link to 'Subfields.' You will need to add subfields before this tag will appear in your MARC editor.

    -

    See the full documentation for Authorities in the manual (online).

    +

    See the full documentation for Authorities in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authorised_values.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authorised_values.tt index ce50907..1a6ee51 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authorised_values.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authorised_values.tt @@ -90,6 +90,6 @@ to show images for authorized values you can choose the image under 'Choose an i -

    See the full documentation for Authorized Values in the manual (online).

    +

    See the full documentation for Authorized Values in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authtypes.tt index a75dcdc..3282912 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authtypes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/authtypes.tt @@ -6,6 +6,6 @@

    Koha comes with many of the necessary Authority frameworks already installed.

    -

    See the full documentation for Authorities in the manual (online).

    +

    See the full documentation for Authorities in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/biblio_framework.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/biblio_framework.tt index 190b774..7000d85 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/biblio_framework.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/biblio_framework.tt @@ -34,6 +34,6 @@

    To make edits to the fields associated with the Framework you must first click 'MARC Structure' and then follow the instructions for editing subfields

    -

    See the full documentation for Frameworks in the manual (online).

    +

    See the full documentation for Frameworks in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branch_transfer_limits.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branch_transfer_limits.tt index 6f74312..bdadbac 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branch_transfer_limits.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branch_transfer_limits.tt @@ -16,6 +16,6 @@

    In the above example, Centerville library will allow patrons to return items from all libraries except Liberty and Franklin to their library.

    -

    See the full documentation for Library Transfer Limits in the manual (online).

    +

    See the full documentation for Library Transfer Limits in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branches.tt index 021c403..f568904 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branches.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/branches.tt @@ -47,6 +47,6 @@

    Properties are then applied to libraries via the add or edit library form.

    -

    See the full documentation for Libraries & Groups in the manual (online).

    +

    See the full documentation for Libraries & Groups in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/categorie.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/categorie.tt index efffab7..15156f1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/categorie.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/categorie.tt @@ -86,6 +86,6 @@ -

    See the full documentation for Patron Categories in the manual (online).

    +

    See the full documentation for Patron Categories in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/checkmarc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/checkmarc.tt index bc83cc5..bfdcce4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/checkmarc.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/checkmarc.tt @@ -6,6 +6,6 @@

    If you change your MARC Bibliographic framework it's recommended that you run this tool to test for errors in your definition.

    -

    See the full documentation for the MARC Bibliographic Framework Test in the manual (online).

    +

    See the full documentation for the MARC Bibliographic Framework Test in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/cities.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/cities.tt index 42c77cb..a969984 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/cities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/cities.tt @@ -18,6 +18,6 @@

    This will allow for easy entry of local cities into the patron record without risking the potential for typos or mistaken zip/postal codes.

    -

    See the full documentation for Cities and Towns in the manual (online).

    +

    See the full documentation for Cities and Towns in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/classsources.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/classsources.tt index bf5c9c6..0f7db0b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/classsources.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/classsources.tt @@ -53,6 +53,6 @@
  • Choose an appropriate filing routine - dewey, generic or lcc
  • -

    See the full documentation for Classification Sources in the manual (online).

    +

    See the full documentation for Classification Sources in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/currency.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/currency.tt index 679570b..95cf8df 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/currency.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/currency.tt @@ -8,6 +8,6 @@

    The active currency is the main currency you use in your library. Your active currency will have a check mark in the 'Active' column. If you don't have an active currency you will see an error message telling you to choose an active currency.

    -

    See the full documentation for Currencies and Exchange Rates in the manual (online).

    +

    See the full documentation for Currencies and Exchange Rates in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/didyoumean.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/didyoumean.tt index 4304b91..4979b7d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/didyoumean.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/didyoumean.tt @@ -17,6 +17,6 @@

    If you want one plugin to take priority over another you simply drag it above the other.

    -

    See the full documentation for the Did you mean? feature in the manual (online).

    +

    See the full documentation for the Did you mean? feature in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/fieldmapping.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/fieldmapping.tt index 308f158..82728f1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/fieldmapping.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/fieldmapping.tt @@ -20,6 +20,6 @@

    Future developments will include additional keyword assigned fields.

    -

    See the full documentation for Keyword to MARC Mapping in the manual (online).

    +

    See the full documentation for Keyword to MARC Mapping in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/item_circulation_alerts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/item_circulation_alerts.tt index 5534661..25bb266 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/item_circulation_alerts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/item_circulation_alerts.tt @@ -19,6 +19,6 @@
  • By default all item types and all patrons are notified of check ins and check outs. To change this, click on the item/patron type combo that you would like to stop notices for.
  • -

    See the full documentation for Item Circulation Alerts in the manual (online).

    +

    See the full documentation for Item Circulation Alerts in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/itemtypes.tt index 081cae9..0046ab8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/itemtypes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/itemtypes.tt @@ -57,6 +57,6 @@

    You will not be able to delete item types that are being used by items within your system.

    -

    See the full documentation for Item Types in the manual (online).

    +

    See the full documentation for Item Types in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/koha2marclinks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/koha2marclinks.tt index a7c2abc..ecc1c8e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/koha2marclinks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/koha2marclinks.tt @@ -12,6 +12,6 @@

    Important: At this time you can map only 1 MARC field to 1 Koha field. This means that you won't be able to map both the 100a and the 700a to the author field, you need to choose one or the other.

    -

    See the full documentation for Koha to MARC Mapping in the manual (online).

    +

    See the full documentation for Koha to MARC Mapping in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marc_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marc_subfields_structure.tt index 3307318..c9fc6d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marc_subfields_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marc_subfields_structure.tt @@ -127,6 +127,6 @@ To edit the subfields associated with the tag, click 'Subfields' to the right of
  • To save your changes simply click the 'Save Changes' button at the top of the screen
  • -

    See the full documentation for MARC Frameworks in the manual (online).

    +

    See the full documentation for MARC Frameworks in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marctagstructure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marctagstructure.tt index c126094..59db5e2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marctagstructure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/marctagstructure.tt @@ -21,6 +21,6 @@

    To the right of the new field is a link to 'Subfields,' you will need to add subfields before this tag will appear in your MARC editor.

    -

    See the full documentation for MARC Frameworks in the manual (online).

    +

    See the full documentation for MARC Frameworks in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/matching-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/matching-rules.tt index 46dae8d..c760bf1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/matching-rules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/matching-rules.tt @@ -46,6 +46,6 @@
  • Required Match checks: none (remove the blank one)
  • -

    See the full documentation for Record Matching Rules in the manual (online).

    +

    See the full documentation for Record Matching Rules in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_set_mappings.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_set_mappings.tt index 1566523..6a08e6e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_set_mappings.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_set_mappings.tt @@ -18,6 +18,6 @@

    And it is case sensitive : a record having 999$9 = 'xxx' will not belong to a set where condition is 999$9 = 'XXX'.

    -

    See the full documentation for OAI Sets in the manual (online).

    +

    See the full documentation for OAI Sets in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_sets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_sets.tt index 9bb7736..2804ba9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_sets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/oai_sets.tt @@ -29,6 +29,6 @@

    Once you have configured all your sets, you have to build the sets. This is done by calling the script misc/migration_tools/build_oai_sets.pl.

    -

    See the full documentation for OAI Sets in the manual (online).

    +

    See the full documentation for OAI Sets in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/patron-attr-types.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/patron-attr-types.tt index 18d1733..6e62db0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/patron-attr-types.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/patron-attr-types.tt @@ -70,6 +70,6 @@

    You will be unable to delete an attribute if it's in use.

    -

    See the full documentation for Patron Attribute Types in the manual (online).

    +

    See the full documentation for Patron Attribute Types in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/preferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/preferences.tt index de954e9..d1e39e3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/preferences.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/preferences.tt @@ -33,6 +33,6 @@
  • Web Services: includes preferences related to services like OAI-PMH.
  • -

    See the full documentation for System Preferences in the manual (online).

    +

    See the full documentation for System Preferences in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt deleted file mode 100644 index 5874a98..0000000 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt +++ /dev/null @@ -1,11 +0,0 @@ -[% INCLUDE 'help-top.inc' %] - -

    Printer Administration

    - -

    If you are going to be using a printer (or several printers) that are attached to your Koha server for producing statistical and operations reports, then you need to give each printer a name and tell Koha how to access it. You do this by telling Koha which print queue to use.

    - -

    (In linux, each printer configuration in your printcap file defines a print queue. The default print queue is "lp," but if you use more than one printer you will have other queues, probably with names like "text" or "postscript." Tell Koha which printer queue(s) you want to use for printing reports directly from the server.)

    - -

    Note that you can always print Koha screens directly to a printer attached to your workstation just by using your web browser's Print function.

    - -[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/roadtype.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/roadtype.tt index e07eaef..2626479 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/roadtype.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/roadtype.tt @@ -10,6 +10,6 @@

    When adding or editing a patron, if you have road types defined, there will be a pull down to choose the road type from.

    -

    See the full documentation for Road Types in the manual (online).

    +

    See the full documentation for Road Types in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt index c5cd892..fc67d63 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt @@ -133,6 +133,6 @@
  • Item floats: The item will not be transferred from the library it was checked in at, instead it will remain there until transferred manually or checked in at another library
  • -

    See the full documentation for Circulation and Fine Rules in the manual (online).

    +

    See the full documentation for Circulation and Fine Rules in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/stopwords.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/stopwords.tt deleted file mode 100644 index b6e0782..0000000 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/stopwords.tt +++ /dev/null @@ -1,15 +0,0 @@ -[% INCLUDE 'help-top.inc' %] - -

    Stop Words

    - -

    Stop words are words that you want the search system to ignore.

    - -

    Koha comes with a standard list of stop words that can be edited by visiting the Stop Word administration area.

    - -

    To add a new stop word to the list, click the 'New Stop Word' button and add the word you'd like ignored

    - -

    Important: If you change something in this table, ask your administrator to run misc/batchRebuildBiblioTables.pl script.

    - -

    See the full documentation for Stop Words in the manual (online).

    - -[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/systempreferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/systempreferences.tt index a21594e..f9af56b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/systempreferences.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/systempreferences.tt @@ -8,6 +8,6 @@

    Always contains Version preference, please do not change it manually. -

    See the full documentation for System Preferences in the manual (online).

    +

    See the full documentation for System Preferences in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/transport-cost-matrix.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/transport-cost-matrix.tt index ab24e92..5573ce9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/transport-cost-matrix.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/transport-cost-matrix.tt @@ -10,6 +10,6 @@

    After entering in your cost, hit 'Enter' on your keyboard or click the 'Save' button at the bottom of the matrix to save your changes.

    -

    See the full documentation for the Transport Cost Matrix in the manual (online).

    +

    See the full documentation for the Transport Cost Matrix in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt index 189a24d..2683a44 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt @@ -2,31 +2,44 @@

    Z39.50 Servers

    -

    Koha has a powerful copy cataloging tool. Using Koha you can connect to any Z39.50 target that is publicly available or that you have the log in information to.

    +

    Z39.50 is a client?server protocol for searching and retrieving information from remote computer databases, in short it's a tool used for copy cataloging. Using Koha you can connect to any Z39.50 target that is publicly available or that you have the log in information to and copy both bibliographic and/or authority records from that source.

    -

    Koha comes with a default list of Z39.50 targets set up that you can add to, edit or delete.

    +

    Koha comes with a default list of Z39.50 targets set up that you can add to, edit or delete

    -

    To find additional targets you use IndexData's IRSpy: http://irspy.indexdata.com

    +

    To find additional targets you use IndexData's IRSpy: http://irspy.indexdata.com

    Add a Z39.50 Target

    + +
      +
    • From the main Z39.50 page, click 'New Z39.50 Server'
        -
      • From the main Z39.50 page, click 'New Z39.50 Server' +
      • 'Z39.50 server' should be populated with a name that will help you identify the source (such as the library name).
      • +
      • 'Hostname' will be the address to the Z39.50 target.
      • +
      • 'Port' tells Koha what port to listen on to get results from this target.
      • +
      • 'Userid' and 'Password' are only required for servers that are password protected.
      • +
      • Check the 'Checked' box if you want this target to always be selected by default.
      • +
      • 'Rank' lets you enter where in the list you'd like this target to appear.
          -
        • Userid and Password are only required for servers that are password protected
        • +
        • If this is left blank the targets will be in alphabetical order.
        • +
        +
      • +
      • 'Syntax' is the MARC flavor you use.
      • +
      • 'Encoding' tells the system how to read special characters.
      • +
      • 'Timeout' is helpful for targets that take a long while. You can set the timeout so that it doesn't keep trying the target if results aren't found in a reasonable amount of time.
      • +
      • 'Record type' lets you define if this is a bibliographic or an authority target.
    -

    Suggested Z39.50 Targets

    +

    Suggested Bibliographic Z39.50 Targets

    The following targets have been used successfully by other Koha libraries (in the Americas):

    -
    • CUYAHOGA COUNTY PUBLIC webcat.cuyahoga.lib.oh.us:210 INNOPAC
    • GREATER SUDBURY PUBLIC 216.223.90.51:210 INNOPAC
    • HALIFAX PUBLIC catalogue.halifaxpubliclibraries.ca:210 horizon
    • HALTON HILLS PUBLIC cat.hhpl.on.ca:210 halton_hills
    • -
    • LIBRARY OF CONGRESS lx2.loc.gov:210 LCDB
    • +
    • LIBRARY OF CONGRESS lx2.loc.gov: 210 LCDB
    • LONDON PUBLIC LIBRARY catalogue.londonpubliclibrary.ca:210 INNOPAC
    • MANITOBA PUBLIC library.gov.mb.ca:210 horizon
    • MILTON PL cat.mpl.on.ca:210 horizon
    • @@ -36,6 +49,15 @@
    • VANCOUVER PUBLIC LIBRARY z3950.vpl.ca:210 Horizon
    -

    See the full documentation for Z39.50 Servers in the manual (online).

    +

    Suggested Authority Z39.50 Targets

    + +

    The following targets have been used successfully by other Koha libraries:

    + +
      +
    • LIBRARIESAUSTRALIA AUTHORITIES z3950-test.librariesaustralia.nla.gov.au:210 AuthTraining Userid: ANLEZ / Password: z39.50
    • +
    • LIBRARY OF CONGRESS NAME AUTHORITIES lx2.loc.gov:210 NAF
    • +
    • LIBRARY OF CONGRESS SUBJECT AUTHORITIES lx2.loc.gov:210 SAF
    • +
    +

    See the full documentation for Z39.50 Servers in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 03:28:29 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 21:28:29 -0400 Subject: [Koha-patches] [PATCH] Bug 10671: Update patron help files Message-ID: <1382750909-3506-1-git-send-email-nengard@bywatersolutions.com> This patch updates the text and links in the patron related help files. To test: * visit all patron pages * Click help * confirm test and links --- .../prog/en/modules/help/members/boraccount.tt | 2 +- .../prog/en/modules/help/members/files.tt | 2 +- .../prog/en/modules/help/members/mancredit.tt | 2 +- .../prog/en/modules/help/members/maninvoice.tt | 2 +- .../prog/en/modules/help/members/member-flags.tt | 4 +- .../en/modules/help/members/member-password.tt | 2 +- .../prog/en/modules/help/members/member.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/memberentry.tt | 2 +- .../prog/en/modules/help/members/members-home.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/members-update.tt | 2 +- .../prog/en/modules/help/members/moremember.tt | 2 +- .../prog/en/modules/help/members/notices.tt | 2 +- .../prog/en/modules/help/members/pay.tt | 2 +- .../prog/en/modules/help/members/paycollect.tt | 2 +- .../prog/en/modules/help/members/readingrec.tt | 2 +- .../prog/en/modules/help/members/routing-lists.tt | 2 +- .../prog/en/modules/help/members/statistics.tt | 2 +- 17 files changed, 60 insertions(+), 46 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt index ce326dd..1d6ebb5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt @@ -19,6 +19,6 @@

    To the right of each account line there is a print link. Clicking that link will print an invoice for the line item that includes the date and description of the line item along with the total outstanding on the account.

    -

    See the full documentation for Patron Fines in the manual (online).

    +

    See the full documentation for Patron Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt index 375ebfc..9f76fb8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt @@ -8,6 +8,6 @@

    All files that are uploaded will appear above a form where additional files can be uploaded from.

    -

    See the full documentation for Patron Files in the manual (online).

    +

    See the full documentation for Patron Files in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt index ebe6ad0..564b7e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt @@ -11,6 +11,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Credits in the manual (online).

    +

    See the full documentation for Creating Manual Credits in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt index 6be07b1..71fca1d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt @@ -14,6 +14,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Invoices in the manual (online).

    +

    See the full documentation for Creating Manual Invoices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt index afdbdcf..975ac07 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt @@ -333,7 +333,7 @@
    • batch_upload_patron_images
        -
      • Upload patron images in a batch or one at a time
      • +
      • Upload patron images in batch or one at a time
      • Access to the Image Upload Tool
    • @@ -472,6 +472,6 @@
    -

    See the full documentation for Patron Permissions in the manual (online).

    +

    See the full documentation for Patron Permissions in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt index 762b6ec..54c011e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt @@ -11,7 +11,7 @@

    The default minimum password length is 3 characters long. To change this value, update your system preferences.

    -

    See the full documentation for Editing Patrons in the manual (online).

    +

    See the full documentation for Editing Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt index b05ff82..828c81e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt @@ -2,45 +2,52 @@

    Patron search

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for Patron Search in the manual (online).

    +

    See the full documentation for Patron Search in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt index 2a8595c..bef4768 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt @@ -86,6 +86,6 @@

    Remember to assign your staff secure usernames and passwords since these will be used to log into the staff client.

    -

    See the full documentation for Adding Patrons in the manual (online).

    +

    See the full documentation for Adding Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt index 93b1f7d..2f16a66 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt @@ -4,45 +4,52 @@

    The Patrons module stores the information you add about your patrons.

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for the Patrons module in the manual (online).

    +

    See the full documentation for the Patrons module in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt index 525d308..ec3512a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt @@ -8,6 +8,6 @@

    From here you can 'Approve' and apply the changes to the patron record, 'Delete' and remove the changes or 'Ignore' and keep the changes pending to review later.

    -

    See the full documentation for Updating patron records in the manual (online).

    +

    See the full documentation for Updating patron records in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt index 79d941e..2c547b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt @@ -109,6 +109,6 @@
  • You will be brought to your new patron
  • -

    See the full documentation for the Patron Details in the manual (online).

    +

    See the full documentation for the Patron Details in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt index cd0d3bd..25caae2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt @@ -6,6 +6,6 @@

    Clicking on the message title will expand the view to show you the full text of the message that was sent.

    -

    See the full documentation for Patron Notices in the manual (online).

    +

    See the full documentation for Patron Notices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt index a66ad3e..11f32c0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt @@ -8,6 +8,6 @@

    This will generate a text file with one barcode per line.

    -

    See the full documentation for Circulation History in the manual (online).

    +

    See the full documentation for Circulation History in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt index aa79334..6981b3a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt @@ -6,6 +6,6 @@

    On this tab you will be able to see and edit all of the routing lists that this patron is on.

    -

    See the full documentation for Patron routing lists in the manual (online).

    +

    See the full documentation for Patron routing lists in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt index 0f0e087..ce65fcf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt @@ -4,6 +4,6 @@

    Depending on what you set for the values of your StatisticsFields system preference, you can see statistics for one patron's circulation actions.

    -

    See the full documentation for Patron Statistics in the manual (online).

    +

    See the full documentation for Patron Statistics in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 03:36:14 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 21:36:14 -0400 Subject: [Koha-patches] [PATCH] Bug 10671: Update Acq Help Files Message-ID: <1382751374-3587-1-git-send-email-nengard@bywatersolutions.com> This patch updates the Acq help file links to the manual. To test: * visit acq pages * confirm manual links are right --- .../prog/en/modules/help/acqui/acqcontract.tt | 2 +- .../prog/en/modules/help/acqui/acqui-home.tt | 2 +- .../prog/en/modules/help/acqui/addorderiso2709.tt | 2 +- .../prog/en/modules/help/acqui/basket.tt | 2 +- .../prog/en/modules/help/acqui/basketgroup.tt | 2 +- .../prog/en/modules/help/acqui/basketheader.tt | 2 +- .../prog/en/modules/help/acqui/booksellers.tt | 2 +- .../prog/en/modules/help/acqui/histsearch.tt | 2 +- .../prog/en/modules/help/acqui/invoice.tt | 2 +- .../prog/en/modules/help/acqui/invoices.tt | 2 +- .../prog/en/modules/help/acqui/lateorders.tt | 2 +- .../prog/en/modules/help/acqui/neworderbiblio.tt | 2 +- .../prog/en/modules/help/acqui/neworderempty.tt | 2 +- .../en/modules/help/acqui/newordersuggestion.tt | 2 +- .../prog/en/modules/help/acqui/orderreceive.tt | 2 +- .../prog/en/modules/help/acqui/parcel.tt | 2 +- .../prog/en/modules/help/acqui/parcels.tt | 2 +- .../prog/en/modules/help/acqui/supplier.tt | 2 +- .../prog/en/modules/help/acqui/uncertainprice.tt | 2 +- .../prog/en/modules/help/acqui/z3950_search.tt | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqcontract.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqcontract.tt index 803af36..07264f9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqcontract.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqcontract.tt @@ -16,6 +16,6 @@

    It will also be an option when creating a basket.

    -

    See the full documentation for Vendor Contracts in the manual (online).

    +

    See the full documentation for Vendor Contracts in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqui-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqui-home.tt index 7376641..dc1473b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqui-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/acqui-home.tt @@ -10,6 +10,6 @@

    First, set your Acquisitions System Preferences and Acquisitions Administration to match your library's workflow.

    -

    See the full documentation for Acquisitions in the manual (online).

    +

    See the full documentation for Acquisitions in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/addorderiso2709.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/addorderiso2709.tt index c716c38..74aa249 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/addorderiso2709.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/addorderiso2709.tt @@ -19,6 +19,6 @@ -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basket.tt index 1e5e4cd..5497442 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basket.tt @@ -111,6 +111,6 @@

    Clicking 'Print' below your order will generate a PDF for printing, which will have all of your library information followed by the items in your order.

    -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketgroup.tt index 52488bf..1779490 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketgroup.tt @@ -8,7 +8,7 @@

    A basket group is simply a group of baskets. In some libraries, you have several staff members who create baskets, and, at the end of a period of time, someone then groups them together to send to the vendor in bulk. That said, it is possible to have one basket in a basket group if that's the workflow used in your library.

    -

    See the full documentation for Basket Groups in the manual (online).

    +

    See the full documentation for Basket Groups in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketheader.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketheader.tt index e01d650..894923e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketheader.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/basketheader.tt @@ -18,7 +18,7 @@

    After creating your basket, you can edit the name of the basket, the billing place, delivery place, the notes and the contract you're ordering against.

    -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/booksellers.tt index 50c0fcf..fbe0939 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/booksellers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/booksellers.tt @@ -14,6 +14,6 @@

    Clicking Advanced Search to the right of the search button will give you all of the order search options available.

    -

    See the full documentation for Acquisitions Searching in the manual (online).

    +

    See the full documentation for Acquisitions Searching in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/histsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/histsearch.tt index 50c0fcf..fbe0939 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/histsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/histsearch.tt @@ -14,6 +14,6 @@

    Clicking Advanced Search to the right of the search button will give you all of the order search options available.

    -

    See the full documentation for Acquisitions Searching in the manual (online).

    +

    See the full documentation for Acquisitions Searching in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoice.tt index bfce1b0..3d12198 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoice.tt @@ -8,6 +8,6 @@

    From the results you can click the 'Details' link to see the full invoice or 'Close' to note that the invoice is closed/paid for.

    -

    See the full documentation for Invoices in the manual (online).

    +

    See the full documentation for Invoices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoices.tt index bfce1b0..3d12198 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/invoices.tt @@ -8,6 +8,6 @@

    From the results you can click the 'Details' link to see the full invoice or 'Close' to note that the invoice is closed/paid for.

    -

    See the full documentation for Invoices in the manual (online).

    +

    See the full documentation for Invoices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/lateorders.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/lateorders.tt index f24922e..4a3e0dd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/lateorders.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/lateorders.tt @@ -16,6 +16,6 @@

    There is a default acquisitions cliam letter. If you would rather use a different one, you can create that in the notices module and choose it from the menu above the list of late items.

    -

    See the full documentation for Claims and Late Orders in the manual (online).

    +

    See the full documentation for Claims and Late Orders in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderbiblio.tt index 00d6add..7d52605 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderbiblio.tt @@ -9,6 +9,6 @@
  • All of the details associated with the item will already be listed under 'Catalog details'
  • -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderempty.tt index fd70bc0..df148b7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderempty.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/neworderempty.tt @@ -8,6 +8,6 @@
  • You will be presented with an empty form to fill in all of the necessary details about the item.
  • -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/newordersuggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/newordersuggestion.tt index 11ff29a..d0a350f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/newordersuggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/newordersuggestion.tt @@ -14,6 +14,6 @@
  • Orders added to the basket in this way will notify the patron via email that their suggestion has been ordered and will update the patron's 'My purchase suggestions' page in the OPAC.
  • -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/orderreceive.tt index 7b418cf..340a59a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/orderreceive.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/orderreceive.tt @@ -18,6 +18,6 @@

    You will also see that the item is received and/or cancelled if you view the basket.

    -

    See the full documentation for Receiving Orders in the manual (online).

    +

    See the full documentation for Receiving Orders in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcel.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcel.tt index 7b418cf..340a59a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcel.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcel.tt @@ -18,6 +18,6 @@

    You will also see that the item is received and/or cancelled if you view the basket.

    -

    See the full documentation for Receiving Orders in the manual (online).

    +

    See the full documentation for Receiving Orders in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcels.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcels.tt index 7b418cf..340a59a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcels.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/parcels.tt @@ -18,6 +18,6 @@

    You will also see that the item is received and/or cancelled if you view the basket.

    -

    See the full documentation for Receiving Orders in the manual (online).

    +

    See the full documentation for Receiving Orders in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/supplier.tt index b41b25e..5acee92 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/supplier.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/supplier.tt @@ -51,6 +51,6 @@

    If the vendor has no baskets attached to it, a 'Delete' button will also be visible, allowing the vendor to be deleted.

    -

    See the full documentation for managing Vendors in the manual (online).

    +

    See the full documentation for managing Vendors in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/uncertainprice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/uncertainprice.tt index 51dd481..34e0430 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/uncertainprice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/uncertainprice.tt @@ -4,6 +4,6 @@

    The Uncertain Prices page is independent of the basket. It is linked to the vendor so you will see all items on order with uncertain prices for that vendor.

    -

    See the full documentation for Uncertain prices in the manual (online).

    +

    See the full documentation for Uncertain prices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/z3950_search.tt index d3d9b98..11ead87 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/z3950_search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/acqui/z3950_search.tt @@ -14,6 +14,6 @@
  • In the order form that pops up, you will not be able to edit the catalog details
  • -

    See the full documentation for Ordering in the manual (online).

    +

    See the full documentation for Ordering in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 05:47:35 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 23:47:35 -0400 Subject: [Koha-patches] [PATCH 1/2] Bug 10671: Update patron help files Message-ID: <1382759256-4148-1-git-send-email-nengard@bywatersolutions.com> This patch updates the text and links in the patron related help files. To test: * visit all patron pages * Click help * confirm test and links --- .../prog/en/modules/help/members/boraccount.tt | 2 +- .../prog/en/modules/help/members/files.tt | 2 +- .../prog/en/modules/help/members/mancredit.tt | 2 +- .../prog/en/modules/help/members/maninvoice.tt | 2 +- .../prog/en/modules/help/members/member-flags.tt | 4 +- .../en/modules/help/members/member-password.tt | 2 +- .../prog/en/modules/help/members/member.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/memberentry.tt | 2 +- .../prog/en/modules/help/members/members-home.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/members-update.tt | 2 +- .../prog/en/modules/help/members/moremember.tt | 2 +- .../prog/en/modules/help/members/notices.tt | 2 +- .../prog/en/modules/help/members/pay.tt | 2 +- .../prog/en/modules/help/members/paycollect.tt | 2 +- .../prog/en/modules/help/members/readingrec.tt | 2 +- .../prog/en/modules/help/members/routing-lists.tt | 2 +- .../prog/en/modules/help/members/statistics.tt | 2 +- 17 files changed, 60 insertions(+), 46 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt index ce326dd..1d6ebb5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt @@ -19,6 +19,6 @@

    To the right of each account line there is a print link. Clicking that link will print an invoice for the line item that includes the date and description of the line item along with the total outstanding on the account.

    -

    See the full documentation for Patron Fines in the manual (online).

    +

    See the full documentation for Patron Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt index 375ebfc..9f76fb8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt @@ -8,6 +8,6 @@

    All files that are uploaded will appear above a form where additional files can be uploaded from.

    -

    See the full documentation for Patron Files in the manual (online).

    +

    See the full documentation for Patron Files in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt index ebe6ad0..564b7e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt @@ -11,6 +11,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Credits in the manual (online).

    +

    See the full documentation for Creating Manual Credits in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt index 6be07b1..71fca1d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt @@ -14,6 +14,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Invoices in the manual (online).

    +

    See the full documentation for Creating Manual Invoices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt index afdbdcf..975ac07 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt @@ -333,7 +333,7 @@
    • batch_upload_patron_images
        -
      • Upload patron images in a batch or one at a time
      • +
      • Upload patron images in batch or one at a time
      • Access to the Image Upload Tool
    • @@ -472,6 +472,6 @@
    -

    See the full documentation for Patron Permissions in the manual (online).

    +

    See the full documentation for Patron Permissions in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt index 762b6ec..54c011e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt @@ -11,7 +11,7 @@

    The default minimum password length is 3 characters long. To change this value, update your system preferences.

    -

    See the full documentation for Editing Patrons in the manual (online).

    +

    See the full documentation for Editing Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt index b05ff82..828c81e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt @@ -2,45 +2,52 @@

    Patron search

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for Patron Search in the manual (online).

    +

    See the full documentation for Patron Search in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt index 2a8595c..bef4768 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt @@ -86,6 +86,6 @@

    Remember to assign your staff secure usernames and passwords since these will be used to log into the staff client.

    -

    See the full documentation for Adding Patrons in the manual (online).

    +

    See the full documentation for Adding Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt index 93b1f7d..2f16a66 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt @@ -4,45 +4,52 @@

    The Patrons module stores the information you add about your patrons.

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for the Patrons module in the manual (online).

    +

    See the full documentation for the Patrons module in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt index 525d308..ec3512a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt @@ -8,6 +8,6 @@

    From here you can 'Approve' and apply the changes to the patron record, 'Delete' and remove the changes or 'Ignore' and keep the changes pending to review later.

    -

    See the full documentation for Updating patron records in the manual (online).

    +

    See the full documentation for Updating patron records in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt index 79d941e..2c547b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt @@ -109,6 +109,6 @@
  • You will be brought to your new patron
  • -

    See the full documentation for the Patron Details in the manual (online).

    +

    See the full documentation for the Patron Details in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt index cd0d3bd..25caae2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt @@ -6,6 +6,6 @@

    Clicking on the message title will expand the view to show you the full text of the message that was sent.

    -

    See the full documentation for Patron Notices in the manual (online).

    +

    See the full documentation for Patron Notices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt index a66ad3e..11f32c0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt @@ -8,6 +8,6 @@

    This will generate a text file with one barcode per line.

    -

    See the full documentation for Circulation History in the manual (online).

    +

    See the full documentation for Circulation History in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt index aa79334..6981b3a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt @@ -6,6 +6,6 @@

    On this tab you will be able to see and edit all of the routing lists that this patron is on.

    -

    See the full documentation for Patron routing lists in the manual (online).

    +

    See the full documentation for Patron routing lists in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt index 0f0e087..ce65fcf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt @@ -4,6 +4,6 @@

    Depending on what you set for the values of your StatisticsFields system preference, you can see statistics for one patron's circulation actions.

    -

    See the full documentation for Patron Statistics in the manual (online).

    +

    See the full documentation for Patron Statistics in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 05:47:53 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 23:47:53 -0400 Subject: [Koha-patches] [PATCH 1/2] Bug 10671: Update patron help files Message-ID: <1382759274-4182-1-git-send-email-nengard@bywatersolutions.com> This patch updates the text and links in the patron related help files. To test: * visit all patron pages * Click help * confirm test and links --- .../prog/en/modules/help/members/boraccount.tt | 2 +- .../prog/en/modules/help/members/files.tt | 2 +- .../prog/en/modules/help/members/mancredit.tt | 2 +- .../prog/en/modules/help/members/maninvoice.tt | 2 +- .../prog/en/modules/help/members/member-flags.tt | 4 +- .../en/modules/help/members/member-password.tt | 2 +- .../prog/en/modules/help/members/member.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/memberentry.tt | 2 +- .../prog/en/modules/help/members/members-home.tt | 37 ++++++++++++-------- .../prog/en/modules/help/members/members-update.tt | 2 +- .../prog/en/modules/help/members/moremember.tt | 2 +- .../prog/en/modules/help/members/notices.tt | 2 +- .../prog/en/modules/help/members/pay.tt | 2 +- .../prog/en/modules/help/members/paycollect.tt | 2 +- .../prog/en/modules/help/members/readingrec.tt | 2 +- .../prog/en/modules/help/members/routing-lists.tt | 2 +- .../prog/en/modules/help/members/statistics.tt | 2 +- 17 files changed, 60 insertions(+), 46 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt index ce326dd..1d6ebb5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/boraccount.tt @@ -19,6 +19,6 @@

    To the right of each account line there is a print link. Clicking that link will print an invoice for the line item that includes the date and description of the line item along with the total outstanding on the account.

    -

    See the full documentation for Patron Fines in the manual (online).

    +

    See the full documentation for Patron Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt index 375ebfc..9f76fb8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/files.tt @@ -8,6 +8,6 @@

    All files that are uploaded will appear above a form where additional files can be uploaded from.

    -

    See the full documentation for Patron Files in the manual (online).

    +

    See the full documentation for Patron Files in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt index ebe6ad0..564b7e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/mancredit.tt @@ -11,6 +11,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Credits in the manual (online).

    +

    See the full documentation for Creating Manual Credits in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt index 6be07b1..71fca1d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/maninvoice.tt @@ -14,6 +14,6 @@
  • In the amount field, do not enter currency symbols, only numbers and decimals
  • -

    See the full documentation for Creating Manual Invoices in the manual (online).

    +

    See the full documentation for Creating Manual Invoices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt index afdbdcf..975ac07 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt @@ -333,7 +333,7 @@
    • batch_upload_patron_images
        -
      • Upload patron images in a batch or one at a time
      • +
      • Upload patron images in batch or one at a time
      • Access to the Image Upload Tool
    • @@ -472,6 +472,6 @@
    -

    See the full documentation for Patron Permissions in the manual (online).

    +

    See the full documentation for Patron Permissions in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt index 762b6ec..54c011e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-password.tt @@ -11,7 +11,7 @@

    The default minimum password length is 3 characters long. To change this value, update your system preferences.

    -

    See the full documentation for Editing Patrons in the manual (online).

    +

    See the full documentation for Editing Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt index b05ff82..828c81e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member.tt @@ -2,45 +2,52 @@

    Patron search

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for Patron Search in the manual (online).

    +

    See the full documentation for Patron Search in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt index 2a8595c..bef4768 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/memberentry.tt @@ -86,6 +86,6 @@

    Remember to assign your staff secure usernames and passwords since these will be used to log into the staff client.

    -

    See the full documentation for Adding Patrons in the manual (online).

    +

    See the full documentation for Adding Patrons in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt index 93b1f7d..2f16a66 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-home.tt @@ -4,45 +4,52 @@

    The Patrons module stores the information you add about your patrons.

    -

    From here you can search for a patron by using the search boxes at the top of the page.

    +

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron by any part of their name or their card number.

    -

    Clicking on the link to the Patron module will bring you to a search/browse screen for patrons. From here you can search for a patron.

    +

    Clicking the small plus sign [+] to the right of the search box will open up an advanced patron search with more filters including the ability to limit to a specific category and/or library.

    Depending on what you have chosen for the 'Search fields' you can search for patrons in various different ways.

      -
    • Standard: +
    • Standard:
        -
      • Enter any part of their name, username, email address or barcode
      • +
      • Enter any part of their name, username, email address or barcode
    • -
    • Email: +
    • Email:
        -
      • Enter any part of their email address.
      • +
      • Enter any part of their email address and choose 'Contains' instead of 'Starts with'
    • -
    • Borrower number: +
    • Borrower number:
        -
      • Enter the Koha borrower number
      • +
      • Enter the Koha borrower number
    • -
    • Phone number: +
    • Phone number:
        -
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • -
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
      • +
      • Enter the phone number exactly as it is in the system or by using spaces between each batch of numbers.
      • +
      • Example: To find (212) 555-1212 you can search for it exactly as it was entered or by searching for 212 555 1212
    • -
    • Street address: +
    • Street address:
        -
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      • Enter any part of the patron's address (includes all address fields) and choose 'Contains' instead of 'Starts with' to find the string anywhere in the address
      • +
      +
    • +
    • Date of birth +
        +
      • A tooltip will appear telling you how to enter the date of birth, most libraries will be entering MM/DD/YYYY for the birthday search
    -

    If you want to filter your results to a specific library or category, you can click the plus sign [+] to the right of the search box.

    +

    You can also choose to either search for fields that start with the string you entered or contain the string. Choosing 'Contains' will work like a wildcard search.

    + +

    You can also choose how your results will be sorted by using the 'Order by' pull down menu at the end of the form.

    You can also browse through the patron records by clicking on the linked letters across the top.

    -

    See the full documentation for the Patrons module in the manual (online).

    +

    See the full documentation for the Patrons module in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt index 525d308..ec3512a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/members-update.tt @@ -8,6 +8,6 @@

    From here you can 'Approve' and apply the changes to the patron record, 'Delete' and remove the changes or 'Ignore' and keep the changes pending to review later.

    -

    See the full documentation for Updating patron records in the manual (online).

    +

    See the full documentation for Updating patron records in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt index 79d941e..2c547b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/moremember.tt @@ -109,6 +109,6 @@
  • You will be brought to your new patron
  • -

    See the full documentation for the Patron Details in the manual (online).

    +

    See the full documentation for the Patron Details in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt index cd0d3bd..25caae2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/notices.tt @@ -6,6 +6,6 @@

    Clicking on the message title will expand the view to show you the full text of the message that was sent.

    -

    See the full documentation for Patron Notices in the manual (online).

    +

    See the full documentation for Patron Notices in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/pay.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt index f0bdd94..a0be70a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/paycollect.tt @@ -57,6 +57,6 @@ -

    See the full documentation for Paying Fines in the manual (online).

    +

    See the full documentation for Paying Fines in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt index a66ad3e..11f32c0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt @@ -8,6 +8,6 @@

    This will generate a text file with one barcode per line.

    -

    See the full documentation for Circulation History in the manual (online).

    +

    See the full documentation for Circulation History in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt index aa79334..6981b3a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/routing-lists.tt @@ -6,6 +6,6 @@

    On this tab you will be able to see and edit all of the routing lists that this patron is on.

    -

    See the full documentation for Patron routing lists in the manual (online).

    +

    See the full documentation for Patron routing lists in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt index 0f0e087..ce65fcf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/statistics.tt @@ -4,6 +4,6 @@

    Depending on what you set for the values of your StatisticsFields system preference, you can see statistics for one patron's circulation actions.

    -

    See the full documentation for Patron Statistics in the manual (online).

    +

    See the full documentation for Patron Statistics in the manual (online).

    [% INCLUDE 'help-bottom.inc' %] -- 1.7.2.3 From nengard at bywatersolutions.com Sat Oct 26 05:47:54 2013 From: nengard at bywatersolutions.com (Nicole C. Engard) Date: Fri, 25 Oct 2013 23:47:54 -0400 Subject: [Koha-patches] [PATCH 2/2] Bug 10671: Update patron help files [ FOLLOW-UP ] In-Reply-To: <1382759274-4182-1-git-send-email-nengard@bywatersolutions.com> References: <1382759274-4182-1-git-send-email-nengard@bywatersolutions.com> Message-ID: <1382759274-4182-2-git-send-email-nengard@bywatersolutions.com> This patch adds two new permissions that were just pushed to the related patron help files. It is a follow up to the previous patch that updated the patron help file. To test: Apply the patron help patch Apply this patch Visit the patron permissions page Confirm that help is there and right --- .../prog/en/modules/help/members/member-flags.tt | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt index 975ac07..8a79b7a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/member-flags.tt @@ -254,6 +254,11 @@
  • Manage orders and baskets
  • +
  • order_manage_all +
      +
    • Manage all orders and baskets, regardless of restrictions on them
    • +
    +
  • order_receive
    • Manage orders and baskets
    • @@ -324,6 +329,11 @@
    • Manage routing lists
  • +
  • superserials +
      +
    • Manage subscriptions from any branch (only applies when IndependentBranches is used)
    • +
    +
  • Granular Tools Permissions

    -- 1.7.2.3