From dcd1f5d48c758aee17b6c6f069c6146b42efe117 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 23 Jan 2015 13:18:54 +0100 Subject: [PATCH] Bug 13618: Add html filters to all the variables Here we go, next step then. As we did not fix the performance issue when autofiltering the variables (see bug 20975), the only solution we have is to add the filters explicitely. This patch has been autogenerated (using add_html_filters.pl, see next pathces) and add the html filter to all the variables displayed in the template. Exceptions are made (using the new 'raw' TT filter) to the variable we already listed in the previous versions of this patch. To test: - Use t/db_dependent/Koha/Patrons.t to populate your DB with autogenerated data which contain \ No newline at end of file + diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc index e2270b858f..4385125153 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc @@ -11,16 +11,16 @@ [% DEFAULT class = '' size = 20 %] [% IF avs %] - [% IF all %][% END %] [% FOR av IN avs %] [% IF av.authorised_value == default %] - + [% ELSE %] - + [% END %] [% END %] [% ELSE %] - + [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-default-view.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-default-view.inc index db85cddf22..a79fab3f5f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-default-view.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-default-view.inc @@ -1 +1 @@ -[% IF ( BiblioDefaultViewmarc ) %][% ELSIF ( BiblioDefaultViewlabeled_marc ) %][% ELSIF ( BiblioDefaultViewisbd ) %][% ELSE %][% END %] \ No newline at end of file +[% IF ( BiblioDefaultViewmarc ) %][% ELSIF ( BiblioDefaultViewlabeled_marc ) %][% ELSIF ( BiblioDefaultViewisbd ) %][% ELSE %][% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc index f0b2a8fa93..9f5c0cb9e2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -25,13 +25,13 @@ [% IF ( moredetailview ) %]
  • [% ELSE %]
  • [% END %] Items
  • [% IF ( CAN_user_reserveforothers ) %] - [% IF ( holdsview ) %]
  • [% ELSE %]
  • [% END %]Holds ([% Biblio.HoldsCount( biblio_object_id ) %])
  • + [% IF ( holdsview ) %]
  • [% ELSE %]
  • [% END %]Holds ([% Biblio.HoldsCount( biblio_object_id ) | html %])
  • [% END %] [% IF ( EasyAnalyticalRecords ) %][% IF ( analyze ) %]
  • [% ELSE %]
  • [% END %]Analytics
  • [% END %] [% IF Koha.Preference('ArticleRequests') %] [% IF ( article_requests_view ) %]
  • [% ELSE %]
  • [% END %] - Article requests ([% Biblio.ArticleRequestsActiveCount( biblio_object_id ) %])
  • + Article requests ([% Biblio.ArticleRequestsActiveCount( biblio_object_id ) | html %]) [% END %] [% IF ( subscriptionsnumber ) %]
  • Subscription(s)
  • [% END %] @@ -42,4 +42,3 @@ [% IF ( CAN_user_tools_view_system_logs ) %][% IF ( logview ) %]
  • [% ELSE %]
  • [% END %]Modification log
  • [% END %] - diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc index 1cbe84ffa8..0da49d03a7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc @@ -3,11 +3,11 @@ [% IF fines and fines > 0 %]
  • Fees & Charges: - Patron has outstanding fees & charges of [% fines | $Price %]. + Patron has outstanding fees & charges of [% fines | $Price | html %]. [% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %] Checkouts are BLOCKED because fine balance is OVER THE LIMIT. [% END %] - Make payment - Pay all fines
  • + Make payment + Pay all fines [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/blocking_errors.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/blocking_errors.inc index 0ab6738260..410ce1ed51 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/blocking_errors.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/blocking_errors.inc @@ -7,9 +7,9 @@
    This bibliographic record does not exist.
    [% CASE 'unknown_item' %]
    This item does not exist.
    - [% CASE %][% blocking_error %] + [% CASE %][% blocking_error | html %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] - [% STOP %] [%# Will stop gracefully without processing any more of the template document.%] + [% STOP | html %] [%# Will stop gracefully without processing any more of the template document.%] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc index 92dda54b34..b49fd5d045 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc @@ -1,3 +1,4 @@ +[% USE raw %]
    [% IF ( not debarments.defined || debarments.size < 1 ) %]

    Patron is currently unrestricted.

    @@ -31,16 +32,16 @@ [% IF d.comment.search('OVERDUES_PROCESS') %] - Restriction added by overdues process [% d.comment.remove('OVERDUES_PROCESS ') %] + Restriction added by overdues process [% d.comment.remove('OVERDUES_PROCESS ') | $raw %] [% ELSE %] - [% d.comment %] + [% d.comment | $raw %] [% END %] [% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] Indefinite [% END %] [% d.created | $KohaDates %] [% IF CAN_user_borrowers_edit_borrowers && CAN_user_circulate_manage_restrictions %] - + Remove @@ -53,7 +54,7 @@ [% IF CAN_user_borrowers_edit_borrowers && CAN_user_circulate_manage_restrictions %]

    Add manual restriction

    - +
    Add manual restriction diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc index b91ecc2b6f..6aea85b547 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc @@ -1,8 +1,8 @@ [%# First check to see if we have anything selected, otherwise we select all %] -[% selectall = 1 %] +[% selectall = 1 | html %] [% FOREACH branch IN branches %] [% IF branch.selected %] - [% selectall = 0 %] + [% selectall = 0 | html %] [% END %] [% END %]
    @@ -11,12 +11,12 @@ [% FOREACH branch IN branches %]
    [% IF branch.selected || (selectall == 1) %] - + [% ELSE %] - + [% END %] - +
    [% IF loop.count() % 4 == 0 && !loop.last() %]
    diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc index 8754cc0f1c..ca14976e14 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc @@ -1,6 +1,6 @@ [% IF ( currency ) %] [% IF ( not hide ) %] -

    Currency = [% currency %]

    +

    Currency = [% currency | html %]

    [% END %] [% ELSE %]
    diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc index 3399ce9405..812f226f8f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc @@ -1,25 +1,25 @@ [% USE Koha %] [% USE Branches %]
    -

    [% LibraryName %]

    +

    [% LibraryName | html %]

    @@ -30,26 +30,26 @@ [% ELSE %]
  • [% END %] - Plan by months
  • + Plan by months [% IF ( CAN_user_acquisition_planning_manage ) %]
  • [% ELSE %]
  • [% END %] - Plan by libraries
  • + Plan by libraries [% IF ( CAN_user_acquisition_planning_manage ) %]
  • [% ELSE %]
  • [% END %] - Plan by item types
  • + Plan by item types [% FOREACH auth_cats_loo IN auth_cats_loop %] [% IF ( CAN_user_acquisition_planning_manage ) %]
  • [% ELSE %]
  • [% END %] - Plan by [% auth_cats_loo %] + Plan by [% auth_cats_loo | html %]
  • [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc index f13a1fa4a5..653221e4a9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc @@ -2,8 +2,8 @@ -[% Asset.js("js/datatables.js") %] +[% Asset.js("js/datatables.js") | $raw %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close-receipt.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close-receipt.inc index a380870023..7643694262 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close-receipt.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close-receipt.inc @@ -1,5 +1,5 @@ +[% USE raw %] [% USE Asset %] - -[% Asset.css("css/print.css", { media = "print" }) %] - + +[% Asset.css("css/print.css", { media = "print" }) | $raw %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc index a0722f203f..8be66b2804 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE String %] @@ -9,20 +10,20 @@ [% END %] - + -[% Asset.css("lib/jquery/jquery-ui-1.11.4.min.css") %] -[% Asset.css("lib/bootstrap/bootstrap.min.css") %] -[% Asset.css("lib/bootstrap/bootstrap-theme.min.css") %] -[% Asset.css("lib/font-awesome/css/font-awesome.min.css") %] -[% Asset.css("css/print.css", { media = "print" }) %] +[% Asset.css("lib/jquery/jquery-ui-1.11.4.min.css") | $raw %] +[% Asset.css("lib/bootstrap/bootstrap.min.css") | $raw %] +[% Asset.css("lib/bootstrap/bootstrap-theme.min.css") | $raw %] +[% Asset.css("lib/font-awesome/css/font-awesome.min.css") | $raw %] +[% Asset.css("css/print.css", { media = "print" }) | $raw %] [% INCLUDE intranetstylesheet.inc %] -[% IF ( bidi ) %][% Asset.css("css/right-to-left.css") %][% END %] +[% IF ( bidi ) %][% Asset.css("css/right-to-left.css").raw %][% END %] [% IF ( login ) %] - [% Asset.css("css/login.css") %] + [% Asset.css("css/login.css") | $raw %] [% END %] -[% IF ( IntranetUserCSS ) %][% END %] +[% IF ( IntranetUserCSS ) %][% END %] [% UNLESS ( footerjs ) %] [% INCLUDE js_includes.inc %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc index 59e6d53ef7..bfa90f461a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc @@ -1,5 +1,5 @@ - + [% USE Koha %] [% IF Koha.Preference('DumpTemplateVarsIntranet') %] @@ -9,7 +9,7 @@ ', '- ->') %] - [% Dumper.dump( Stash.stash() ) %] + [% Dumper.dump( Stash.stash() ) | html %] [% END %] [% END %] --> @@ -21,5 +21,5 @@ [% END %] [% END %] -[% IF ( bidi ) %][% ELSE %][% END %] +[% IF ( bidi ) %][% ELSE %][% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc index fcf3aff611..e70b4a78c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc @@ -1 +1 @@ -[% '' %] +[% '' | html %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc index eeb97ac0f6..450197f597 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc @@ -4,14 +4,14 @@

    Refine your search

      -
    • Availability - [% IF ( related ) %]
    • (related searches: [% FOREACH relate IN related %][% relate.related_search %][% END %])
    • [% END %] +
    • Availability + [% IF ( related ) %]
    • (related searches: [% FOREACH relate IN related %][% relate.related_search | html %][% END %])
    • [% END %] [% FOREACH facets_loo IN facets_loop %] [% IF facets_loo.facets.size > 0 %] -
    • -[% facets_loo.type_label %] +
    • +[% facets_loo.type_label | html %] [% IF facets_loo.type_label_Authors %]Authors[% END %] [% IF facets_loo.type_label_Titles %]Titles[% END %] [% IF facets_loo.type_label_Topics %]Topics[% END %] @@ -25,27 +25,27 @@
        [% SET url = "/cgi-bin/koha/catalogue/search.pl?" _ query_cgi _ limit_cgi %] [% IF ( sort_by ) %] - [% url = BLOCK %][% url %][% "&sort_by=" _ sort_by |url %][% END %] + [% url = BLOCK | html %][% url | html %][% "&sort_by=" _ sort_by |url %][% END %] [% END %] [% FOREACH facet IN facets_loo.facets %] [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,0) || facet.facet_label_value %][% END %]
      • [% IF facet.active %] [% SET local_url = url _ "&nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %] - [% facet.facet_label_value %] - [x] + [% facet.facet_label_value | html %] + [x] [% ELSE %] [% SET local_url = url _ "&limit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %] - [% facet.facet_label_value %] + [% facet.facet_label_value | html %] [% IF ( displayFacetCount ) %] - ([% facet.facet_count %]) + ([% facet.facet_count | html %]) [% END %] [% END %]
      • [% END %] [% IF ( facets_loo.expandable ) %]
      • - Show more + Show more
      • [% END %]
    • diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/form-blocks.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/form-blocks.inc index 8c307d59af..6d1d7f6353 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/form-blocks.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/form-blocks.inc @@ -1,5 +1,5 @@ [% BLOCK selectoptionopen %] - [% IF value == selected %]
    [% END %] @@ -270,8 +271,8 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] - [% Asset.js("js/acq.js") %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] + [% Asset.js("js/acq.js") | $raw %] - [% Asset.js("js/audio_alerts.js") %] + [% Asset.js("js/audio_alerts.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt index 8e6e6d3acb..28a39a46c5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -10,18 +11,18 @@ [% INCLUDE 'prefs-admin-search.inc' %] @@ -34,60 +35,60 @@ [% IF ( add_form ) %]

    [% IF ( use_heading_flags_p ) %] - [% IF ( heading_edit_subfields_p ) %]Edit MARC subfields constraints for field [% tagfield | html %] authority [% authtypecode |html%][% END %] - [% ELSE %][% action %][% END %]

    -
    + [% IF ( heading_edit_subfields_p ) %]Edit MARC subfields constraints for field [% tagfield | html %] authority [% authtypecode | html %][% END %] + [% ELSE %][% action | html %][% END %] + - +
    Cancel
    [% FOREACH loo IN loop %] -
    +
      [% IF ( loo.new_subfield ) %]
    1. - - + +
    2. [% ELSE %]
    3. - +
    4. [% END %]
    5. - + [% IF loo.repeatable %] - + [% ELSE %] - + [% END %]
    6. - + [% IF loo.mandatory %] - + [% ELSE %] - + [% END %]
    7. -
    8. -
    9. -
    10. -
    11. +
    12. +
    13. + @@ -109,8 +110,8 @@
      Display
        -
      1. - [%- IF ( loo.ohidden == 0 ) -%] @@ -129,17 +130,17 @@ Advanced constraints:
        1. - + [% IF loo.isurl %] - + [% ELSE %] - + [% END %] (if checked, it means that the subfield is a URL and can be clicked)
        2. - - + +
      @@ -148,65 +149,65 @@
      Help input
      1. - - [%- FOREACH value IN loo.kohafields %] [% IF ( value == loo.kohafield && value.length>0 ) -%] - + [%- ELSIF ( value == loo.kohafield ) -%] - + [%- ELSIF ( value.length==0 ) -%] - + [%- ELSE -%] - + [%- END -%] [%- END %]
      2. - - [%- FOREACH value IN loo.authorised_values %] [% IF ( value == loo.authorised_value && value.length>0 ) -%] - + [%- ELSIF ( value == loo.authorised_value ) -%] - + [%- ELSIF ( value.length==0 ) -%] - + [%- ELSE -%] - + [%- END -%] [%- END %]
      3. - - [%- FOREACH value IN loo.frameworkcodes %] [% IF ( value == loo.frameworkcode && value.length>0 ) -%] - + [%- ELSIF ( value == loo.frameworkcode ) -%] - + [%- ELSIF ( value.length==0 ) -%] - + [%- ELSE -%] - + [%- END -%] [%- END %]
      4. - - [%- FOREACH value IN loo.value_builders %] [% IF ( value == loo.value_builder && value.length>0 ) -%] - + [%- ELSIF ( value == loo.value_builder ) -%] - + [%- ELSIF ( value.length==0 ) -%] - + [%- ELSE -%] - + [%- END -%] [%- END %] @@ -224,25 +225,25 @@ [% IF ( delete_confirm ) %]
        -

        Delete subfield '[% tagsubfield %]'?

        - +

        Delete subfield '[% tagsubfield | html %]'?

        + - +
        Subfield: [% tagsubfield %]
        Subfield: [% tagsubfield | html %]
        Description: [% liblibrarian | html_entity %]
        - - + + -
        - + + - - + +
        @@ -251,7 +252,7 @@ [% IF ( delete_confirmed ) %]

        Data deleted

        -
        +
        @@ -259,7 +260,7 @@ [% IF ( else ) %] -

        Authority MARC subfield structure admin for [% tagfield | html %] (authority: [% authtypecode | html%])

        +

        Authority MARC subfield structure admin for [% tagfield | html %] (authority: [% authtypecode | html %])

        This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

        The column 'Koha field' shows that the subfield is linked with a Koha field.

        @@ -272,7 +273,7 @@ [% FOREACH loo IN loop %] - [% loo.tagsubfield %] + [% loo.tagsubfield | html %] [% IF ( loo.subfield_ignored ) %] [% loo.liblibrarian | html_entity %] @@ -284,8 +285,8 @@ [% IF ( loo.subfield_ignored ) %] subfield ignored [% ELSE %] - Tab:[% loo.tab %], - [% IF ( loo.kohafield ) %] | Koha field: [% loo.kohafield %], [% END %] + Tab:[% loo.tab | html %], + [% IF ( loo.kohafield ) %] | Koha field: [% loo.kohafield | html %], [% END %] [% IF ( loo.repeatable ) %]Repeatable, [% ELSE %]Not repeatable, [% END %] [% IF ( loo.mandatory ) %]Mandatory, [% ELSE %]Not mandatory, @@ -294,33 +295,33 @@ [% END %] [% IF ( loo.isurl ) %]is a url, [% END %] - [% IF ( loo.authorised_value ) %] | Auth value:[% loo.authorised_value %], + [% IF ( loo.authorised_value ) %] | Auth value:[% loo.authorised_value | html %], [% END %] - [% IF ( loo.frameworkcode ) %] | Authority:[% loo.frameworkcode %], + [% IF ( loo.frameworkcode ) %] | Authority:[% loo.frameworkcode | html %], [% END %] - [% IF ( loo.value_builder ) %] | Plugin:[% loo.value_builder %],[% END %] + [% IF ( loo.value_builder ) %] | Plugin:[% loo.value_builder | html %],[% END %] [% END %] - Delete + Delete [% END %] -
        +
        - - + + Cancel
        [% IF ( previous ) %] - + [% END %] [% IF ( next ) %] - [% next %] - + [% next | html %] + [% END %] @@ -334,7 +335,7 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("js/admin-menu.js") %] + [% Asset.js("js/admin-menu.js") | $raw %] - [% Asset.js("js/biblio_framework.js") %] + [% Asset.js("js/biblio_framework.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt index 3dd10b8001..e0019ab9e8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt @@ -1,10 +1,11 @@ +[% USE raw %] [% USE Asset %] [% USE Branches %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Administration › Library checkin and transfer policy [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -20,7 +21,7 @@
    -

    Library [% branchcode %] - [% Branches.GetName( branchcode ) %] Checkin and transfer policy

    +

    Library [% branchcode | html %] - [% Branches.GetName( branchcode ) | html %] Checkin and transfer policy

    + [% ELSE %] - + [% END %] @@ -72,7 +73,7 @@
    - + Cancel
    @@ -86,9 +87,9 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("js/admin-menu.js") %] + [% Asset.js("js/admin-menu.js") | $raw %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] - [% Asset.js("js/categories.js") %] + [% Asset.js("js/categories.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt index db49419b1f..6b95db3d09 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt @@ -1,8 +1,9 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Administration › MARC check -[% IF ( total ) %] :[% total %] errors found[% ELSE %] : Configuration OK![% END %] +[% IF ( total ) %] :[% total | html %] errors found[% ELSE %] : Configuration OK![% END %] [% INCLUDE 'doc-head-close.inc' %] @@ -10,7 +11,7 @@ [% INCLUDE 'prefs-admin-search.inc' %] +[% IF ( total ) %]: [% total | html %] errors found[% ELSE %] : Configuration OK![% END %]
    @@ -55,7 +56,7 @@ [% IF ( itemtags ) %] Item tag - There is more than 1 MARC tag related to items tab (10) : [% itemtags %] + There is more than 1 MARC tag related to items tab (10) : [% itemtags | html %] [% ELSE %] @@ -170,14 +171,14 @@ [% FOREACH tab_inf IN tab_info %] - [% tab_inf.frameworkcode %] + [% tab_inf.frameworkcode | html %] [% IF ( tab_inf.frameworkcode ) %] - [% tab_inf.frameworktext %] + [% tab_inf.frameworktext | html %] [% ELSE %] Default framework [% END %] - [% tab_inf.tagfield %] - [% tab_inf.tabs %] + [% tab_inf.tagfield | html %] + [% tab_inf.tabs | html %] [% END %] @@ -204,15 +205,15 @@ [% FOREACH authtypecode_inf IN authtypecode_info %] - [% authtypecode_inf.frameworkcode %] + [% authtypecode_inf.frameworkcode | html %] [% IF ( authtypecode_inf.frameworkcode ) %] - [% authtypecode_inf.frameworktext %] + [% authtypecode_inf.frameworktext | html %] [% ELSE %] Default framework [% END %] - [% authtypecode_inf.tagfield %] - [% authtypecode_inf.tagsubfield %] - [% authtypecode_inf.authtypecode %] + [% authtypecode_inf.tagfield | html %] + [% authtypecode_inf.tagsubfield | html %] + [% authtypecode_inf.authtypecode | html %] [% END %] @@ -238,14 +239,14 @@ [% FOREACH mapped_perm_loc IN mapped_permanent_location %] - [% mapped_perm_loc.frameworkcode %] + [% mapped_perm_loc.frameworkcode | html %] [% IF ( mapped_perm_loc.frameworkcode ) %] - [% mapped_perm_loc.frameworktext %] + [% mapped_perm_loc.frameworktext | html %] [% ELSE %] Default framework [% END %] - [% mapped_perm_loc.tagfield %] - [% mapped_perm_loc.tagsubfield %] + [% mapped_perm_loc.tagfield | html %] + [% mapped_perm_loc.tagsubfield | html %] [% END %] @@ -262,7 +263,7 @@ [% IF ( total ) %] TOTAL - You have [% total %] error(s) in your MARC configuration. Please fix them before using Koha + You have [% total | html %] error(s) in your MARC configuration. Please fix them before using Koha [% ELSE %] @@ -280,6 +281,6 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("js/admin-menu.js") %] + [% Asset.js("js/admin-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt index f7daa3ca2e..f41a6cd4ff 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt @@ -1,9 +1,10 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Administration › [% IF op =='add_form' %]Cities › [% IF city.cityid %] Modify city[% ELSE %] New city[% END %][% ELSE %][% IF op == 'delete_confirm' %]Cities › Confirm deletion of city[% ELSE %] Cities[% END %][% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -28,7 +29,7 @@
    [% FOR m IN messages %] -
    +
    [% SWITCH m.code %] [% CASE 'error_on_update' %] An error occurred when updating this city. Perhaps it already exists. @@ -45,7 +46,7 @@ [% CASE 'already_exists' %] This city already exists. [% CASE %] - [% m.code %] + [% m.code | html %] [% END %]
    [% END %] @@ -59,28 +60,28 @@ - +
      [% IF city %] -
    1. City ID: [% city.cityid %]
    2. +
    3. City ID: [% city.cityid | html %]
    4. [% END %]
    5. - Required + Required
    6. - +
    7. - Required + Required
    8. - +
    @@ -94,27 +95,27 @@ [% IF op == 'delete_confirm' %]
    -

    Delete city "[% city.city_name %]?"

    +

    Delete city "[% city.city_name | html %]?"

    - + - + - + - + - +
    City id[% city.cityid %][% city.cityid | html %]
    City[% city.city_name %][% city.city_name | html %]
    State[% city.city_state %][% city.city_state | html %]
    ZIP/Postal code[% city.city_zipcode %][% city.city_zipcode | html %]
    Country[% city.city_country %][% city.city_country | html %]
    - +
    @@ -131,7 +132,7 @@

    Cities

    [% IF searchfield %] - Searching: [% searchfield |html %] + Searching: [% searchfield | html %] [% END %] [% IF cities.count %] @@ -147,14 +148,14 @@ [% FOREACH city IN cities %] - [% city.cityid %] - [% city.city_name %] - [% city.city_state %] - [% city.city_zipcode %] - [% city.city_country %] + [% city.cityid | html %] + [% city.city_name | html %] + [% city.city_state | html %] + [% city.city_zipcode | html %] + [% city.city_country | html %] - Edit - Delete + Edit + Delete [% END %] @@ -175,7 +176,7 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("js/admin-menu.js") %] + [% Asset.js("js/admin-menu.js") | $raw %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("js/item_search_fields.js") %] + [% Asset.js("js/item_search_fields.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt index 526ea9c2d2..5e82aaf40e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE AuthorisedValues %] @@ -6,16 +7,16 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Administration › Item types [% IF op == 'add_form' %]› [% IF ( itemtype ) %] -Modify item type '[% itemtype.itemtype %]' +Modify item type '[% itemtype.itemtype | html %]' [% ELSE %] Add item type [% END %] [% END %] [% IF op == 'delete_confirm' %]› [% IF ( total ) %] -Cannot delete item type '[% itemtype.itemtype %]' +Cannot delete item type '[% itemtype.itemtype | html %]' [% ELSE %] -Delete item type '[% itemtype.itemtype %]'? +Delete item type '[% itemtype.itemtype | html %]'? [% END %] [% END %] [% IF op == 'delete_confirmed' %]› @@ -23,7 +24,7 @@ Data deleted [% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] [% IF ( stylesheet ) %] - + [% END %] [% FOREACH message IN messages %]
    -
    [% message.content %]
    +
    [% message.content | html %]
    [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt index e292c145e1..08ff9e5ed4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -26,7 +27,7 @@
    [% IF ( unknownbiblionumber ) %] -
    The record you requested does not exist ([% biblionumber %]).
    +
    The record you requested does not exist ([% biblionumber | html %]).
    [% ELSE %]
    @@ -34,10 +35,10 @@ [% INCLUDE 'cat-toolbar.inc' %] [% IF ( ocoins ) %] - + [% END %]
    - [% ISBD %] + [% ISBD | $raw %]
    @@ -49,11 +50,11 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'catalog-strings.inc' %] - [% Asset.js("js/catalog.js") %] + [% Asset.js("js/catalog.js") | $raw %] [% INCLUDE 'browser-strings.inc' %] - [% Asset.js("js/browser.js") %] + [% Asset.js("js/browser.js") | $raw %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt index 3b7c161553..4b0ef797f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -20,14 +21,14 @@ [% IF ( unknownbiblionumber ) %] Unknown record [% ELSE %] - MARC Details for [% bibliotitle |html %] + MARC Details for [% bibliotitle | html %] [% END %]
    [% IF ( unknownbiblionumber ) %] -
    The record you requested does not exist ([% biblionumber %]).
    +
    The record you requested does not exist ([% biblionumber | html %]).
    [% ELSE %]
    @@ -35,7 +36,7 @@ [% INCLUDE 'cat-toolbar.inc' %] [% UNLESS ( popup ) %] -

    MARC biblio : [% biblionumber %] ( [% bibliotitle |html %] )

    +

    MARC biblio : [% biblionumber | html %] ( [% bibliotitle | html %] )

    [% END %] @@ -44,29 +45,29 @@ [% FOREACH framework IN frameworks %] [% IF framework.frameworkcode == frameworkcode %] - + [% ELSE %] - + [% END %] [% END %]

    [% IF ( ocoins ) %] - + [% END %] [% BLOCK show_tab_html %] -
    +
    [% FOREACH tab0X IN tab_data %] [% IF ( tab0X.tag ) %]
    - [% tab0X.tag %] + [% tab0X.tag | html %] [% IF ( tab0X.tag_ind ) %] - [% tab0X.tag_ind.substr(0, 1) %][% tab0X.tag_ind.substr(1, 1) %] + [% tab0X.tag_ind.substr(0, 1) | html %][% tab0X.tag_ind.substr(1, 1) | html %] [% END %] - [% IF (tab0X.tag_desc) %] - [% tab0X.tag_desc %][% END %] + [% IF (tab0X.tag_desc) %] - [% tab0X.tag_desc | html %][% END %]
    [% ELSE %]
    @@ -74,16 +75,16 @@ [% FOREACH subfiel IN tab0X.subfield %]

      - [% UNLESS ( subfiel.hide_marc ) %][% subfiel.marc_subfield %][% END %] - [% subfiel.short_desc %] - [% IF ( subfiel.is_url ) %][% subfiel.marc_value |html %][% ELSE %][% subfiel.marc_value |html %][% END %] + [% UNLESS ( subfiel.hide_marc ) %][% subfiel.marc_subfield | html %][% END %] + [% subfiel.short_desc | html %] + [% IF ( subfiel.is_url ) %][% subfiel.marc_value | html %][% ELSE %][% subfiel.marc_value | html %][% END %] [% IF ( subfiel.link ) %] - - Search on [% subfiel.marc_value |html %] + + Search on [% subfiel.marc_value | html %] [% END %] [% IF ( subfiel.authority ) %] - Auth + Auth [% END %]

    [% END %] @@ -154,13 +155,13 @@ [% FOREACH header IN item_header_loop %] - + [% END %] [% FOREACH item IN item_loop %] [% FOREACH sf_code IN item_subfield_codes %] - + [% END %] [% END %] @@ -178,11 +179,11 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'catalog-strings.inc' %] - [% Asset.js("js/catalog.js") %] + [% Asset.js("js/catalog.js") | $raw %] [% INCLUDE 'browser-strings.inc' %] - [% Asset.js("js/browser.js") %] + [% Asset.js("js/browser.js") | $raw %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt index 5be1aa54c8..321edb43fe 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Branches %] [% SET footerjs = 1 %] @@ -37,7 +38,7 @@ [% END %] @@ -50,7 +51,7 @@
    Select local databases [% FOREACH local_servers_loo IN local_servers_loop %] -[% IF ( local_servers_loo.checked ) %][% ELSE %][% END %][% END %] +[% IF ( local_servers_loo.checked ) %][% ELSE %][% END %][% END %]
    [% END %] @@ -60,8 +61,8 @@
    Select remote databases [% FOREACH outer_servers_loo IN outer_servers_loop %] - [% IF ( outer_servers_loo.checked ) %][% ELSE %][% END %] - + [% IF ( outer_servers_loo.checked ) %][% ELSE %][% END %] + [% END %]
    @@ -101,8 +102,8 @@
    [% header %][% header | html %]
    [% item.$sf_code %][% item.$sf_code | $raw %]
    [% FOREACH itemtypeloo IN advsearchloo.code_loop %] - + [% IF ( loop.last ) %][% ELSE %][% UNLESS ( loop.count % 5 ) %][% END %][% END %] [% END %]
    @@ -143,9 +144,9 @@ [% FOREACH search_languages_loo IN search_languages_loop %] [% IF ( search_languages_loo.selected ) %] - + [% ELSE %] - + [% END %] [% END %] @@ -252,7 +253,7 @@ [% FOREACH sg IN search_groups %] [% UNLESS sg.branchcode %] - + [% END %] [% END %] @@ -277,7 +278,7 @@
    [% MACRO jsinclude BLOCK %] - [% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") %] + [% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") | $raw %] [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && ( normalized_isbn || normalized_upc ) ) %] - [% Asset.js("https://imageserver.ebscohost.com/novelistselect/ns2init.js") %] + [% Asset.js("https://imageserver.ebscohost.com/novelistselect/ns2init.js") | $raw %] [% END %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") %] + [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %] [% INCLUDE 'browser-strings.inc' %] [% INCLUDE 'columns_settings.inc' %] - [% Asset.js("js/browser.js") %] - [% Asset.js("js/table_filters.js") %] + [% Asset.js("js/browser.js") | $raw %] + [% Asset.js("js/table_filters.js") | $raw %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt index 026e14f1cb..119bd110e8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE Branches %] @@ -12,7 +13,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] - +
    @@ -23,56 +24,56 @@
    -

    [% title |html %]

    - [% IF ( subtitle ) %]

    [% FOREACH subtitl IN subtitle %] [% subtitl.subfield|html %][% END %]

    [% END %] +

    [% title | html %]

    + [% IF ( subtitle ) %]

    [% FOREACH subtitl IN subtitle %] [% subtitl.subfield | html %][% END %]

    [% END %] [% IF ( author ) %]

    by [% author | html %]

    [% END %]
      -
    1. Biblionumber: [% biblionumber %] 
    2. +
    3. Biblionumber: [% biblionumber | html %] 
    4. [% UNLESS ( item_level_itypes ) %] -
    5. Item type: [% itemtypename %] 
    6. +
    7. Item type: [% itemtypename | html %] 
    8. [% END %] - [% IF ( rentalcharge ) %]
    9. Rental charge:[% rentalcharge %] 
    10. [% END %] + [% IF ( rentalcharge ) %]
    11. Rental charge:[% rentalcharge | html %] 
    12. [% END %]
    13. ISBN: [% isbn | html %] 
    14. -
    15. Publisher:[% place %] [% publishercode |html %] [% publicationyear %] 
    16. - [% IF ( volumeddesc ) %]
    17. Volume: [% volumeddesc %]
    18. [% END %] -
    19. Physical details: [% pages %] [% illus %] [% size %] 
    20. - [% IF ( bnotes ) %]
    21. Notes: [% bnotes %]
    22. [% END %] -
    23. No. of items: [% count %] [% IF ( hiddencount ) %]total ([% showncount %] shown / [% hiddencount %] hidden) -Show all items[% END %]
    24. +
    25. Publisher:[% place | html %] [% publishercode | html %] [% publicationyear | html %] 
    26. + [% IF ( volumeddesc ) %]
    27. Volume: [% volumeddesc | html %]
    28. [% END %] +
    29. Physical details: [% pages | html %] [% illus | html %] [% size | html %] 
    30. + [% IF ( bnotes ) %]
    31. Notes: [% bnotes | html %]
    32. [% END %] +
    33. No. of items: [% count | html %] [% IF ( hiddencount ) %]total ([% showncount | html %] shown / [% hiddencount | html %] hidden) +Show all items[% END %]

    [% IF ( ONLY_ONE ) %] -
    You are only viewing one item. View All
    +
    You are only viewing one item. View All
    [% END %] [% FOREACH ITEM_DAT IN ITEM_DATA %]
    -

    Barcode [% ITEM_DAT.barcode %] [% IF ( ITEM_DAT.notforloantext ) %][% ITEM_DAT.notforloantext %] [% END %]

    +

    Barcode [% ITEM_DAT.barcode | html %] [% IF ( ITEM_DAT.notforloantext ) %][% ITEM_DAT.notforloantext | html %] [% END %]

    Item information [% IF ( CAN_user_editcatalogue_edit_catalogue ) %][% UNLESS ( ITEM_DAT.nomod ) %] [% IF ( CAN_user_editcatalogue_edit_items ) %] - [Edit Item] + [Edit Item] [% END %] [% END %][% END %]

      -
    1. Home library: [% Branches.GetName( ITEM_DAT.homebranch ) %] 
    2. +
    3. Home library: [% Branches.GetName( ITEM_DAT.homebranch ) | html %] 
    4. [% IF ( item_level_itypes ) %] -
    5. Item type: [% ITEM_DAT.itype %] 
    6. +
    7. Item type: [% ITEM_DAT.itype | html %] 
    8. [% END %] - [% IF ( ITEM_DAT.collection ) %]
    9. Collection: [% ITEM_DAT.collection %]
    10. [% END %] -
    11. Item callnumber: [% ITEM_DAT.itemcallnumber %] 
    12. - [% IF ( ITEM_DAT.displaycopy ) %]
    13. Copy number: [% ITEM_DAT.copyvol %] 
    14. [% END %] - [% IF ( ITEM_DAT.replacementprice ) %]
    15. Replacement price: [% ITEM_DAT.replacementprice %] 
    16. [% END %] - [% IF ITEM_DAT.materials %]
    17. Materials specified: [% ITEM_DAT.materials %]
    18. [% END %] + [% IF ( ITEM_DAT.collection ) %]
    19. Collection: [% ITEM_DAT.collection | html %]
    20. [% END %] +
    21. Item callnumber: [% ITEM_DAT.itemcallnumber | html %] 
    22. + [% IF ( ITEM_DAT.displaycopy ) %]
    23. Copy number: [% ITEM_DAT.copyvol | html %] 
    24. [% END %] + [% IF ( ITEM_DAT.replacementprice ) %]
    25. Replacement price: [% ITEM_DAT.replacementprice | html %] 
    26. [% END %] + [% IF ITEM_DAT.materials %]
    27. Materials specified: [% ITEM_DAT.materials | html %]
    28. [% END %]

    Statuses [% IF ( ITEM_DAT.status_advisory ) %]( - [% IF ( ITEM_DAT.notforloantext ) %][% ITEM_DAT.notforloantext %] [% END %] + [% IF ( ITEM_DAT.notforloantext ) %][% ITEM_DAT.notforloantext | html %] [% END %] [% IF ( ITEM_DAT.itemlost ) %]Lost[% END %] [% IF ( ITEM_DAT.damaged ) %]Damaged[% END %] [% IF ( ITEM_DAT.withdrawn ) %]Withdrawn[% END %] )[% END %]

      -
    1. Current location: [% Branches.GetName( ITEM_DAT.holdingbranch ) %] 
    2. +
    3. Current location: [% Branches.GetName( ITEM_DAT.holdingbranch ) | html %] 
    4. Checkout status: [% IF ( ITEM_DAT.issue ) %]Checked out to [% INCLUDE 'patron-title.inc' patron => ITEM_DAT.patron hide_patron_infos_if_needed=1 %] @@ -86,31 +87,31 @@ [% END %] [% END %]  
    5. -
    6. Current renewals: [% ITEM_DAT.renewals %] 
    7. +
    8. Current renewals: [% ITEM_DAT.renewals | html %] 
    9. [% IF itemlostloop %]
    10. Lost status: [% IF ( CAN_user_circulate ) %] - - - + + + - - + + [% ELSE %] [% FOREACH itemlostloo IN itemlostloop %] [% IF ( itemlostloo.selected ) %] - [% itemlostloo.lib %] + [% itemlostloo.lib | html %] [% END %] [% END %]   @@ -124,26 +125,26 @@
    11. Damaged status: [% IF ( CAN_user_circulate ) %]
      - - - + + + - - + +
      [% ELSE %] [% FOREACH itemdamagedloo IN itemdamagedloop %] [% IF ( itemdamagedloo.selected ) %] - [% itemdamagedloo.lib %] + [% itemdamagedloo.lib | html %] [% END %] [% END %]   @@ -158,26 +159,26 @@
    12. Withdrawn status: [% IF ( CAN_user_circulate ) %]
      - - - + + + - - + +
      [% ELSE %] [% FOREACH itemwithdrawn IN itemwithdrawnloop %] [% IF itemwithdrawn.authorised_value == ITEM_DAT.withdrawn %] - [% itemwithdrawn.lib %] + [% itemwithdrawn.lib | html %] [% END %] [% END %]   @@ -195,20 +196,20 @@ [% IF ITEM_DAT.basketno %]
    13. Order date: [% IF ( CAN_user_acquisition_order_manage ) %] - [% ITEM_DAT.orderdate | $KohaDates %] + [% ITEM_DAT.orderdate | $KohaDates %] [% ELSE %] [% ITEM_DAT.orderdate | $KohaDates %] [% END %]
    14. Vendor: - [% ITEM_DAT.vendor %] + [% ITEM_DAT.vendor | html %]
    15. [% END %] [% IF ITEM_DAT.dateaccessioned %]
    16. Accession date: [% IF ( CAN_user_acquisition_order_receive && ITEM_DAT.invoiceid ) %] - [% ITEM_DAT.dateaccessioned | $KohaDates %] + [% ITEM_DAT.dateaccessioned | $KohaDates %] [% ELSE %] [% ITEM_DAT.dateaccessioned | $KohaDates %] [% END %] @@ -216,33 +217,33 @@ [% END %] [% IF ( ITEM_DAT.invoicenumber ) %]
    17. Invoice number: - [% ITEM_DAT.invoicenumber %] + [% ITEM_DAT.invoicenumber | html %]
    18. [% END %] -
    19. Total checkouts:[% IF ( ITEM_DAT.issues ) %][% ITEM_DAT.issues %][% ELSE %]0[% END %] (View item's checkout history)
    20. +
    21. Total checkouts:[% IF ( ITEM_DAT.issues ) %][% ITEM_DAT.issues | html %][% ELSE %]0[% END %] (View item's checkout history)
    22. Last seen:[% IF ( ITEM_DAT.datelastseen ) %][% ITEM_DAT.datelastseen | $KohaDates %] [%END %] 
    23. Last borrowed:[% IF (ITEM_DAT.datelastborrowed ) %][% ITEM_DAT.datelastborrowed | $KohaDates %][% END %] 
    24. [% IF Koha.Preference('StoreLastBorrower') && ITEM_DAT.object.last_returned_by %] -
    25. Last returned by: [% ITEM_DAT.object.last_returned_by.cardnumber %] 
    26. +
    27. Last returned by: [% ITEM_DAT.object.last_returned_by.cardnumber | html %] 
    28. [% END %] - [% IF ( ITEM_DAT.card0 ) %]
    29. Last borrower: [% ITEM_DAT.card0 %] 
    30. [% END %] - [% IF ( ITEM_DAT.card1 ) %]
    31. Previous borrower: [% ITEM_DAT.card1 %] 
    32. [% END %] - [% IF ( ITEM_DAT.card2 ) %]
    33. Previous borrower: [% ITEM_DAT.card2 %] 
    34. [% END %] - [% IF ( ITEM_DAT.paidfor ) %]
    35. Paid for?: [% ITEM_DAT.paidfor %] 
    36. [% END %] + [% IF ( ITEM_DAT.card0 ) %]
    37. Last borrower: [% ITEM_DAT.card0 | html %] 
    38. [% END %] + [% IF ( ITEM_DAT.card1 ) %]
    39. Previous borrower: [% ITEM_DAT.card1 | html %] 
    40. [% END %] + [% IF ( ITEM_DAT.card2 ) %]
    41. Previous borrower: [% ITEM_DAT.card2 | html %] 
    42. [% END %] + [% IF ( ITEM_DAT.paidfor ) %]
    43. Paid for?: [% ITEM_DAT.paidfor | html %] 
    44. [% END %] - [% IF ( ITEM_DAT.enumchron ) %]
    45. Serial enumeration: [% ITEM_DAT.enumchron %] 
    46. [% END %] + [% IF ( ITEM_DAT.enumchron ) %]
    47. Serial enumeration: [% ITEM_DAT.enumchron | html %] 
    48. [% END %]
    49. Public note: [% IF ( CAN_user_editcatalogue_edit_items ) %] -
      - - + + +
      [% ELSE %] - [% ITEM_DAT.itemnotes %] + [% ITEM_DAT.itemnotes | html %]   [% END %]
    50. @@ -250,12 +251,12 @@
    51. Non-public note: [% IF ( CAN_user_editcatalogue_edit_items ) %] -
      - - + + +
      [% ELSE %] - [% ITEM_DAT.itemnotes_nonpublic %] + [% ITEM_DAT.itemnotes_nonpublic | html %]   [% END %]
    52. @@ -274,11 +275,11 @@
    [% MACRO jsinclude BLOCK %] [% INCLUDE 'catalog-strings.inc' %] - [% Asset.js("js/catalog.js") %] + [% Asset.js("js/catalog.js") | $raw %] [% INCLUDE 'browser-strings.inc' %] - [% Asset.js("js/browser.js") %] + [% Asset.js("js/browser.js") | $raw %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt index 0b7c63d17f..7024546f9e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE Biblio %] @@ -25,7 +26,7 @@
    @@ -43,7 +44,7 @@ @@ -53,7 +54,7 @@ [% IF ( total ) %]

    - [% total %] result(s) found [% IF ( query_desc ) %]for '[% query_desc |html %]'[% END %][% IF limit_desc %] with limit(s): '[% limit_desc | html %]'[% END %][% IF ( LibraryName ) %] in [% LibraryName %] Catalog[% END %]. + [% total | html %] result(s) found [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF limit_desc %] with limit(s): '[% limit_desc | html %]'[% END %][% IF ( LibraryName ) %] in [% LibraryName | html %] Catalog[% END %].

    @@ -85,10 +86,10 @@ [% FOREACH s IN add_to_some_private_shelves %] [% IF shelfnumber != s.shelfnumber %]
  • - [% s.shelfname |html %] + [% s.shelfname | html %]
  • [% SET number_of_private_shelves = number_of_private_shelves + 1 %] - [% IF number_of_private_shelves == 10 %][% LAST %][% END %] + [% IF number_of_private_shelves == 10 %][% LAST | html %][% END %] [% END %] [% END %] [% END %] @@ -98,10 +99,10 @@ [% FOREACH s IN add_to_some_public_shelves %] [% IF shelfnumber != s.shelfnumber %]
  • - [% s.shelfname |html %] + [% s.shelfname | html %]
  • [% SET number_of_public_shelves = number_of_public_shelves + 1 %] - [% IF number_of_public_shelves == 10 %][% LAST %][% END %] + [% IF number_of_public_shelves == 10 %][% LAST | html %][% END %] [% END %] [% END %] [% END %] @@ -128,9 +129,9 @@
    [% ELSE %] @@ -146,10 +147,10 @@ [% IF ( searchdesc ) %] [% BLOCK sort_search_query ~%] [%~ FOREACH QUERY_INPUT IN QUERY_INPUTS ~%] - &[% QUERY_INPUT.input_name |html %]=[% QUERY_INPUT.input_value |html %] + &[% QUERY_INPUT.input_name | html %]=[% QUERY_INPUT.input_value | html %] [%~ END ~%] [%~ FOREACH LIMIT_INPUT IN LIMIT_INPUTS ~%] - &[% LIMIT_INPUT.input_name |html %]=[% LIMIT_INPUT.input_value |html %] + &[% LIMIT_INPUT.input_name | html %]=[% LIMIT_INPUT.input_value | html %] [%~ END ~%] [%~ END %] [% END %] @@ -255,7 +256,7 @@

    No results found

    [% IF ( searchdesc ) %]

    - No results match your search [% IF ( query_desc ) %]for '[% query_desc |html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% IF ( LibraryName ) %] in [% LibraryName %] Catalog[% END %]. + No results match your search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% IF ( LibraryName ) %] in [% LibraryName | html %] Catalog[% END %].

    [% ELSE %]

    You did not specify any search criteria.

    @@ -264,7 +265,7 @@ [% END %] [% IF ( query_error ) %] -

    Error: [% query_error %]

    +

    Error: [% query_error | html %]

    [% END %] @@ -325,10 +326,10 @@ [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] - [% SEARCH_RESULT.title |html %] + [% SEARCH_RESULT.title | html %] - [% SEARCH_RESULT.author %] + [% SEARCH_RESULT.author | html %] [% END %] @@ -342,10 +343,10 @@
    [% IF ( searchdesc ) %] [% FOREACH QUERY_INPUT IN QUERY_INPUTS %] - + [% END %] [% FOREACH LIMIT_INPUT IN LIMIT_INPUTS %] - + [% END %] [% END %] @@ -363,16 +364,16 @@ [% IF ( AmazonCoverImages || LocalCoverImages ) %] [% IF ( LocalCoverImages) %] - - + + [% END %] [% IF ( AmazonCoverImages ) %] [% IF ( SEARCH_RESULT.normalized_isbn ) %] - - + + [% ELSIF ( !LocalCoverImages ) %] - + [% END %] @@ -380,58 +381,58 @@ [% END %] - + [% UNLESS ( item_level_itypes ) %]
    [% IF !noItemTypeImages && SEARCH_RESULT.imageurl %] - [% SEARCH_RESULT.description %] + [% SEARCH_RESULT.description | html %] [% END %] - [% SEARCH_RESULT.description %] + [% SEARCH_RESULT.description | html %]
    [% END %] [% IF ( SEARCH_RESULT.XSLTResultsRecord ) %] - [% SEARCH_RESULT.result_number %]. - [% SEARCH_RESULT.XSLTResultsRecord %] + [% SEARCH_RESULT.result_number | html %]. + [% SEARCH_RESULT.XSLTResultsRecord | $raw %] [% ELSE %] -

    [% SEARCH_RESULT.result_number %]. - [% biblionumber = SEARCH_RESULT.biblionumber %] +

    [% SEARCH_RESULT.result_number | html %]. + [% biblionumber = SEARCH_RESULT.biblionumber | html %] [% INCLUDE 'biblio-default-view.inc' %] - [% IF ( SEARCH_RESULT.title ) %][% SEARCH_RESULT.title |html %][% ELSE %]No title[% END %] + [% IF ( SEARCH_RESULT.title ) %][% SEARCH_RESULT.title | html %][% ELSE %]No title[% END %] - [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield %][% END %] - [% IF ( SEARCH_RESULT.seriestitle ) %][% SEARCH_RESULT.seriestitle %][% END %] - [% IF ( SEARCH_RESULT.volume ) %][% SEARCH_RESULT.volume %][% END %] [% IF ( SEARCH_RESULT.volumeddesc ) %], [% SEARCH_RESULT.volumeddesc %][% END %] + [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield | html %][% END %] + [% IF ( SEARCH_RESULT.seriestitle ) %][% SEARCH_RESULT.seriestitle | html %][% END %] + [% IF ( SEARCH_RESULT.volume ) %][% SEARCH_RESULT.volume | html %][% END %] [% IF ( SEARCH_RESULT.volumeddesc ) %], [% SEARCH_RESULT.volumeddesc | html %][% END %]

    [% IF ( SEARCH_RESULT.summary ) %] [% IF ( SEARCH_RESULT.author ) %] - [% SEARCH_RESULT.author %] + [% SEARCH_RESULT.author | html %] [% ELSE %]   [% END %] -

    [% SEARCH_RESULT.summary %]

    +

    [% SEARCH_RESULT.summary | html %]

    [% ELSE %]

    [% IF ( SEARCH_RESULT.author ) %] - [% SEARCH_RESULT.author %] + [% SEARCH_RESULT.author | html %] [% ELSE %]   [% END %] Description: - [% IF ( SEARCH_RESULT.place ) %][% SEARCH_RESULT.place %] [% END %] - [% IF ( SEARCH_RESULT.publishercode ) %][% SEARCH_RESULT.publishercode %][% END %] [% IF ( SEARCH_RESULT.publicationyear ) %] [% SEARCH_RESULT.publicationyear %] [% ELSIF ( SEARCH_RESULT.copyrightdate ) %] [% SEARCH_RESULT.copyrightdate %][% END %] - [% IF ( SEARCH_RESULT.edition ) %]Edition: [% SEARCH_RESULT.edition %][% END %] - [% IF ( SEARCH_RESULT.pages ) %]: [% SEARCH_RESULT.pages %][% END %] - [% IF ( SEARCH_RESULT.size ) %] ; [% SEARCH_RESULT.size %][% END %] [% IF ( SEARCH_RESULT.isbn ) %]ISBN: [% SEARCH_RESULT.isbn | replace('\s\|', ', ')%][% END %] - [% SEARCH_RESULT.description %] - [% IF ( SEARCH_RESULT.timestamp ) %] (modified on [% SEARCH_RESULT.timestamp %])[% END %] - [% IF ( SEARCH_RESULT.cn_class ) %][[% SEARCH_RESULT.cn_class %]][% END %] + [% IF ( SEARCH_RESULT.place ) %][% SEARCH_RESULT.place | html %] [% END %] + [% IF ( SEARCH_RESULT.publishercode ) %][% SEARCH_RESULT.publishercode | html %][% END %] [% IF ( SEARCH_RESULT.publicationyear ) %] [% SEARCH_RESULT.publicationyear | html %] [% ELSIF ( SEARCH_RESULT.copyrightdate ) %] [% SEARCH_RESULT.copyrightdate | html %][% END %] + [% IF ( SEARCH_RESULT.edition ) %]Edition: [% SEARCH_RESULT.edition | html %][% END %] + [% IF ( SEARCH_RESULT.pages ) %]: [% SEARCH_RESULT.pages | html %][% END %] + [% IF ( SEARCH_RESULT.size ) %] ; [% SEARCH_RESULT.size | html %][% END %] [% IF ( SEARCH_RESULT.isbn ) %]ISBN: [% SEARCH_RESULT.isbn | replace('\s\|', ', ') | html %][% END %] + [% SEARCH_RESULT.description | html %] + [% IF ( SEARCH_RESULT.timestamp ) %] (modified on [% SEARCH_RESULT.timestamp | html %])[% END %] + [% IF ( SEARCH_RESULT.cn_class ) %][[% SEARCH_RESULT.cn_class | html %]][% END %]

    - [% IF ( SEARCH_RESULT.searchhighlightblob ) %]

    [% SEARCH_RESULT.searchhighlightblob %]

    [% END %] + [% IF ( SEARCH_RESULT.searchhighlightblob ) %]

    [% SEARCH_RESULT.searchhighlightblob | html %]

    [% END %] [% END %] [% END %] @@ -441,35 +442,35 @@ No holds allowed [% ELSE %] [% IF CAN_user_reserveforothers_place_holds %] - Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) %]) - [% IF ( holdfor ) %] | Place hold for [% holdfor_firstname %] [% holdfor_surname %] ([% holdfor_cardnumber %])[% END %] + Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %]) + [% IF ( holdfor ) %] | Place hold for [% holdfor_firstname | html %] [% holdfor_surname | html %] ([% holdfor_cardnumber | html %])[% END %] [% ELSE %] - Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) %]) + Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %]) [% END %] [% END %] [% IF Koha.Preference('intranetbookbag') == 1 %] [% IF ( SEARCH_RESULT.incart ) %] - | In your cart (remove) + | In your cart (remove) [% ELSE %] - | Add to cart + | Add to cart [% END %] [% END # / IF intranetbookbag %] [% IF Koha.Preference('ArticleRequests') %] - | Request article + | Request article [% END %] [% IF ( CAN_user_editcatalogue_edit_catalogue ) %] - | Edit record + | Edit record [% END %] [% IF ( CAN_user_editcatalogue_edit_items ) %] - | Edit items + | Edit items [% END %] [% IF ( OPACBaseURL ) %] - | OPAC view + | OPAC view [% END %] @@ -483,7 +484,7 @@ [% END %] - [% SEARCH_RESULT.items_count %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %] + [% SEARCH_RESULT.items_count | html %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount | html %] available:[% ELSE %], None available[% END %] [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %] @@ -496,16 +497,16 @@ [% IF item_level_itypes && !noItemTypeImages && available_items_loo.imageurl %]
  • - [% available_items_loo.description %] + [% available_items_loo.description | html %] [% ELSE %]
  • [% END %] - [% IF ( available_items_loo.branchname ) %][% available_items_loo.branchname %][% END %] - [% IF ( available_items_loo.location ) %][% available_items_loo.location %][% END %] - [% IF ( available_items_loo.itemcallnumber ) %][[% available_items_loo.itemcallnumber %]][% END %] - ([% available_items_loo.count %]) + [% IF ( available_items_loo.branchname ) %][% available_items_loo.branchname | html %][% END %] + [% IF ( available_items_loo.location ) %][% available_items_loo.location | html %][% END %] + [% IF ( available_items_loo.itemcallnumber ) %][[% available_items_loo.itemcallnumber | html %]][% END %] + ([% available_items_loo.count | html %]) [% IF item_level_itypes && available_items_loo.description %] -
    [% available_items_loo.description %] +
    [% available_items_loo.description | html %] [% END %]
  • [% END %] @@ -513,21 +514,21 @@ [% END %] [% IF ( SEARCH_RESULT.onloancount ) %] - [% SEARCH_RESULT.onloancount %] on loan: + [% SEARCH_RESULT.onloancount | html %] on loan:
      [% FOREACH onloan_items_loo IN SEARCH_RESULT.onloan_items_loop %] [% IF item_level_itypes && !noItemTypeImages && onloan_items_loo.imageurl %]
    • - [% onloan_items_loo.description %] + [% onloan_items_loo.description | html %] [% ELSE %]
    • [% END %] - [% IF ( onloan_items_loo.branchname ) %][% onloan_items_loo.branchname %][% END %] - [% IF ( onloan_items_loo.location ) %][% onloan_items_loo.location %][% END %] - [% IF ( onloan_items_loo.itemcallnumber ) %][[% onloan_items_loo.itemcallnumber %]][% END %] - ([% onloan_items_loo.count %][% IF ( onloan_items_loo.longoverdue ) %], [% onloan_items_loo.longoverdue %] long overdue[% END %]) date due: [% onloan_items_loo.due_date | $KohaDates %] + [% IF ( onloan_items_loo.branchname ) %][% onloan_items_loo.branchname | html %][% END %] + [% IF ( onloan_items_loo.location ) %][% onloan_items_loo.location | html %][% END %] + [% IF ( onloan_items_loo.itemcallnumber ) %][[% onloan_items_loo.itemcallnumber | html %]][% END %] + ([% onloan_items_loo.count | html %][% IF ( onloan_items_loo.longoverdue ) %], [% onloan_items_loo.longoverdue | html %] long overdue[% END %]) date due: [% onloan_items_loo.due_date | $KohaDates %] [% IF item_level_itypes && onloan_items_loo.description %] -
      [% onloan_items_loo.description %] +
      [% onloan_items_loo.description | html %] [% END %]
    • [% END %] @@ -535,27 +536,27 @@ [% END %] [% IF ( SEARCH_RESULT.othercount ) %] - [% SEARCH_RESULT.othercount %] unavailable: + [% SEARCH_RESULT.othercount | html %] unavailable:
        [% FOREACH other_items_loo IN SEARCH_RESULT.other_items_loop %] [% IF item_level_itypes && !noItemTypeImages && other_items_loo.imageurl %]
      • - [% other_items_loo.description %] + [% other_items_loo.description | html %] [% ELSE %]
      • [% END %] - [% IF ( other_items_loo.branchname ) %][% other_items_loo.branchname %][% END %] - [% IF ( other_items_loo.location ) %][% other_items_loo.location %][% END %] - [% IF ( other_items_loo.itemcallnumber ) %][[% other_items_loo.itemcallnumber %]][% END %] - [% IF ( other_items_loo.withdrawn ) %]([% AuthorisedValues.GetByCode( 'WITHDRAWN', other_items_loo.withdrawn ) %])[% END %] - [% IF ( other_items_loo.itemlost ) %]([% AuthorisedValues.GetByCode( 'LOST', other_items_loo.itemlost ) %])[% END %] - [% IF ( other_items_loo.damaged ) %]([% AuthorisedValues.GetByCode( 'DAMAGED', other_items_loo.damaged ) %])[% END %] + [% IF ( other_items_loo.branchname ) %][% other_items_loo.branchname | html %][% END %] + [% IF ( other_items_loo.location ) %][% other_items_loo.location | html %][% END %] + [% IF ( other_items_loo.itemcallnumber ) %][[% other_items_loo.itemcallnumber | html %]][% END %] + [% IF ( other_items_loo.withdrawn ) %]([% AuthorisedValues.GetByCode( 'WITHDRAWN', other_items_loo.withdrawn ) | html %])[% END %] + [% IF ( other_items_loo.itemlost ) %]([% AuthorisedValues.GetByCode( 'LOST', other_items_loo.itemlost ) | html %])[% END %] + [% IF ( other_items_loo.damaged ) %]([% AuthorisedValues.GetByCode( 'DAMAGED', other_items_loo.damaged ) | html %])[% END %] [% IF ( other_items_loo.intransit ) %](In transit)[% END %] [% IF ( other_items_loo.onhold ) %](On hold)[% END %] - [% IF ( other_items_loo.notforloan ) %][% other_items_loo.notforloan %][% END %] - ([% other_items_loo.count %]) + [% IF ( other_items_loo.notforloan ) %][% other_items_loo.notforloan | html %][% END %] + ([% other_items_loo.count | html %]) [% IF item_level_itypes && other_items_loo.description %] -
        [% other_items_loo.description %] +
        [% other_items_loo.description | html %] [% END %]
      • [% END %] @@ -566,7 +567,7 @@ Other holdings:
          [% FOREACH ALTERNATEHOLDING IN SEARCH_RESULT.ALTERNATEHOLDINGS %] -
        • [% ALTERNATEHOLDING.holding %]
        • +
        • [% ALTERNATEHOLDING.holding | html %]
        • [% END %]
        [% ELSE %] @@ -591,9 +592,9 @@ [% FOREACH outer_sup_results_loo IN outer_sup_results_loop %] [% IF ( outer_sup_results_loo.inner_sup_results_loop ) %] - [% outer_sup_results_loo.servername %] + [% outer_sup_results_loo.servername | html %] [% FOREACH inner_sup_results_loo IN outer_sup_results_loo.inner_sup_results_loop %] - + [% END %] [% END %] @@ -624,9 +625,9 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'browser-strings.inc' %] - [% Asset.js("js/browser.js") %] - [% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("js/browser.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt index ba8b175e44..f82f1a3b47 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -5,7 +6,7 @@ [% USE KohaDates %] Koha › Catalog › Search history [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -54,10 +55,10 @@ [% FOREACH s IN current_biblio_searches %] - - [% s.time |$KohaDates with_hours => 1 %] - [% s.query_desc |html %] - [% s.total %] + + [% s.time |$KohaDates with_hours => 1 | html %] + [% s.query_desc | html %] + [% s.total | html %] [% END %] @@ -91,10 +92,10 @@ [% FOREACH s IN previous_biblio_searches %] - - [% s.time |$KohaDates with_hours => 1 %] - [% s.query_desc |html %] - [% s.total %] + + [% s.time |$KohaDates with_hours => 1 | html %] + [% s.query_desc | html %] + [% s.total | html %] [% END %] @@ -134,10 +135,10 @@ [% FOREACH s IN current_authority_searches %] - - [% s.time |$KohaDates with_hours => 1 %] - [% s.query_desc |html %] - [% s.total %] + + [% s.time |$KohaDates with_hours => 1 | html %] + [% s.query_desc | html %] + [% s.total | html %] [% END %] @@ -171,10 +172,10 @@ [% FOREACH s IN previous_authority_searches %] - - [% s.time |$KohaDates with_hours => 1 %] - [% s.query_desc |html %] - [% s.total %] + + [% s.time |$KohaDates with_hours => 1 | html %] + [% s.query_desc | html %] + [% s.total | html %] [% END %] @@ -192,7 +193,7 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] -[% Asset.css("css/addbiblio.css") %] +[% Asset.css("css/addbiblio.css") | $raw %] [% INCLUDE 'select2.inc' %] [% IF ( bidi ) %] - [% Asset.css("css/right-to-left.css") %] + [% Asset.css("css/right-to-left.css") | $raw %] [% END %] @@ -411,7 +412,7 @@ function Changefwk() { [% INCLUDE 'header.inc' %] - +
        @@ -420,7 +421,7 @@ function Changefwk() {

        -[% IF ( biblionumber ) %]Editing [% title |html %] (Record number [% biblionumber %]) +[% IF ( biblionumber ) %]Editing [% title | html %] (Record number [% biblionumber | html %]) [% ELSE %]Add MARC record [% IF (circborrowernumber) %](fast cataloging)[% END %] [% END %]

        @@ -430,12 +431,12 @@ function Changefwk() { [% IF ( duplicatebiblionumber ) %]

        Duplicate record suspected

        -

        Is this a duplicate of [% duplicatetitle %] ?

        +

        Is this a duplicate of [% duplicatetitle | html %] ?

        [% IF ( CAN_user_editcatalogue_edit_items ) %] - + [% ELSE %]
        - +
        [% END %]
        @@ -447,8 +448,8 @@ function Changefwk() { [% IF ( done ) %] [% ELSE %] @@ -513,13 +514,13 @@ function Changefwk() { [% FOREACH framework IN frameworks%]
      • - + [% IF framework.frameworkcode == frameworkcode %] [% ELSE %]   [% END %] - [% framework.frameworktext %] + [% framework.frameworktext | html %]
      • [% END %] @@ -561,76 +562,76 @@ function Changefwk() { [% END %] - - - + + +
        [% FOREACH BIG_LOO IN BIG_LOOP %] -
        +
        [% FOREACH innerloo IN BIG_LOO.innerloop %] [% IF ( innerloo.tag ) %] -
        -
        +
        +
        [% IF advancedMARCEditor %] - [% innerloo.tag %] + [% innerloo.tag | html %] [% ELSE %] - [% innerloo.tag %] - [% IF marcflavour != 'NORMARC' %] ?[% END %] + [% innerloo.tag | html %] + [% IF marcflavour != 'NORMARC' %] ?[% END %] [% END %] [% IF ( innerloo.fixedfield ) %] + value="[% innerloo.indicator1 | html %]" /> + value="[% innerloo.indicator2 | html %]" /> [% ELSE %] + value="[% innerloo.indicator1 | html %]" /> + value="[% innerloo.indicator2 | html %]" /> [% END %] - [% UNLESS advancedMARCEditor %] - [% innerloo.tag_lib %] + [% innerloo.tag_lib | html %] [% END %] [% IF ( innerloo.repeatable ) %] - - Repeat this Tag + + Repeat this Tag [% END %] - - Delete this Tag + + Delete this Tag @@ -638,25 +639,25 @@ function Changefwk() { [% FOREACH subfield_loo IN innerloo.subfield_loop %] -
        +
        [% UNLESS advancedMARCEditor %] - [% IF ( subfield_loo.fixedfield ) %]
        [%# Fields for fast cataloging %] - - - - - + + + + + [%# End of fields for fast cataloging %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt index fd2d8ba97b..ce3bf76f5b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Koha %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -26,7 +27,7 @@
        @@ -39,7 +40,7 @@
        @@ -58,10 +59,10 @@ [% IF ( total ) %]
        - [% total %] result(s) found in catalog, - [% breeding_count %] result(s) found in reservoir + [% total | html %] result(s) found in catalog, + [% breeding_count | html %] result(s) found in reservoir
        -
        [% pagination_bar %]
        +
        [% pagination_bar | $raw %]
        @@ -72,29 +73,29 @@ [% FOREACH resultsloo IN resultsloop %] - + @@ -102,13 +103,13 @@ [% IF ( resultsloo.available_items_loop ) %] [% FOREACH items_loo IN resultsloo.available_items_loop %] - [% items_loo.count %] [% items_loo.branchname %] + [% items_loo.count | html %] [% items_loo.branchname | html %] - [% IF ( items_loo.location ) %][% items_loo.location %][% END %] - [% IF ( items_loo.itemcallnumber ) %][% items_loo.itemcallnumber %][% END %] + [% IF ( items_loo.location ) %][% items_loo.location | html %][% END %] + [% IF ( items_loo.itemcallnumber ) %][% items_loo.itemcallnumber | html %][% END %] [% IF ( items_loo.classification ) %] - [% items_loo.classification %] + [% items_loo.classification | html %] [% END %] @@ -117,23 +118,23 @@ [% END %] - [% IF ( resultsloo.onloancount ) %] Checked out ([% resultsloo.onloancount %]),
        [% END %] - [% IF ( resultsloo.withdrawncount ) %] Withdrawn ([% resultsloo.withdrawncount %]),
        [% END %] - [% IF ( resultsloo.itemlostcount ) %] Lost ([% resultsloo.itemlostcount %])
        [% END %] - [% IF ( resultsloo.orderedcount ) %] On order ([% resultsloo.orderedcount %])
        [% END %] - [% IF ( resultsloo.notforloancount ) %] Not for loan ([% resultsloo.notforloancount %])[% END %] + [% IF ( resultsloo.onloancount ) %] Checked out ([% resultsloo.onloancount | html %]),
        [% END %] + [% IF ( resultsloo.withdrawncount ) %] Withdrawn ([% resultsloo.withdrawncount | html %]),
        [% END %] + [% IF ( resultsloo.itemlostcount ) %] Lost ([% resultsloo.itemlostcount | html %])
        [% END %] + [% IF ( resultsloo.orderedcount ) %] On order ([% resultsloo.orderedcount | html %])
        [% END %] + [% IF ( resultsloo.notforloancount ) %] Not for loan ([% resultsloo.notforloancount | html %])[% END %]
        @@ -145,7 +146,7 @@ [% IF ( query ) %] [% IF ( error ) %]
        [% END %]No results found [% IF ( error ) %] - Error: [% error %]
        + Error: [% error | html %] [% END %] [% END %] [% END %] @@ -165,22 +166,22 @@ [% FOREACH breeding_loo IN breeding_loop %] - - - - - + + + + + [% FOREACH item_header IN item_header_loop %] [% IF item_header.column_name %] - [% END %] @@ -190,15 +191,15 @@ function confirm_deletion() { [% FOREACH item_loo IN item_loop %] [% IF ( item_loo.itemnumber == itemnumber) %] [% IF item_loo.nomod %] - + [% ELSE %] - + [% END %] [% ELSE %] [% IF item_loo.nomod %] - + [% ELSE %] - + [% END %] [% END %] [% IF ( item_loo.nomod ) %] @@ -206,32 +207,32 @@ function confirm_deletion() { [% ELSE %] [% END %] [% FOREACH item_valu IN item_loo.item_value %] - + [% END %] [% END %] @@ -247,83 +248,83 @@ function confirm_deletion() {
        - + [% IF (popup) %] [% END %] - + [% IF ( opisadd ) %]

        Add item [% IF (circborrowernumber) %](fast cataloging)[% END %]

        [% ELSE %] -

        Edit Item #[% itemnumber %][% IF ( barcode ) %] / Barcode [% barcode %][% END %]

        +

        Edit Item #[% itemnumber | html %][% IF ( barcode ) %] / Barcode [% barcode | html %][% END %]

        [% END %]
          [% FOREACH ite IN item %] -
        1. +
        2. [% IF ( ite.mandatory ) %] - + [% ELSE %] - + [% END %] [% SET mv = ite.marc_value %] [% IF ( mv.type == 'hidden' ) %] - + [% ELSIF ( mv.type == 'select' ) %] [% IF ( mv.readonly ) %] - [% ELSE %] - [% END %] [% FOREACH aval IN mv.values %] [% IF aval == mv.default %] - + [% ELSE %] - + [% END %] [% END %] [% ELSIF ( mv.type == 'text_auth' ) %] [% IF mv.readonly %] - + [% ELSE %] - + [% SET dopop = "Dopop('/cgi-bin/koha/authorities/auth_finder.pl?authtypecode=\"${mv.authtypecode}\"&index=${mv.id}','${mv.id}')" %] - ... + ... [% END %] [% ELSIF ( mv.type == 'text_plugin' ) %] [% IF mv.readonly %] - + [% ELSE %] - + [% IF ( mv.nopopup ) %] - ... + ... [% ELSE %] - ... + ... [% END %] - [%- mv.javascript -%] + [%- mv.javascript.raw -%] [% END %] [% ELSIF ( mv.type == 'text' ) %] [% IF mv.readonly %] - + [% ELSE %] - + [% END %] [% ELSIF ( mv.type == 'textarea' ) %] [% IF mv.readonly %] - + [% ELSE %] - + [% END %] [% END %] - - - + + + [% IF ( ite.repeatable ) %] - Clone + Clone [% END %] [% IF ( ite.mandatory ) %] Required[% END %] @@ -333,7 +334,7 @@ function confirm_deletion() {
        - +
        [% IF ( opisadd ) %] @@ -356,19 +357,19 @@ function confirm_deletion() {
        [% ELSE %] - - - + + + - Cancel + Cancel [% END %] [%# Fields for fast cataloging %] - - - - + + + + [%# End fields for fast cataloging %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt index 8abcdc53cc..b282489e27 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt @@ -1,15 +1,16 @@ +[% USE raw %] [% USE Asset %] [% INCLUDE 'doc-head-open.inc' %] Koha › Cataloging › Editor [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/cateditor.css") %] -[% Asset.css("css/datatables.css") %] -[% Asset.css("lib/codemirror/codemirror.css") %] -[% Asset.css("css/humanmsg.css") %] -[% Asset.js("js/cataloging.js") %] -[% Asset.js("lib/jquery/plugins/humanmsg.js") %] +[% Asset.css("css/cateditor.css") | $raw %] +[% Asset.css("css/datatables.css") | $raw %] +[% Asset.css("lib/codemirror/codemirror.css") | $raw %] +[% Asset.css("css/humanmsg.css") | $raw %] +[% Asset.js("js/cataloging.js") | $raw %] +[% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %] [% IF ( bidi ) %] - [% Asset.css("css/right-to-left.css") %] + [% Asset.css("css/right-to-left.css") | $raw %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt index 98ad4d15b5..6fc19a5cc0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt @@ -5,7 +5,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] - +
        @@ -18,14 +18,14 @@
        - + [% ELSE %] [% IF ( success ) %] -
        The item has successfully been linked to [% bibliotitle |html %].
        +
        The item has successfully been linked to [% bibliotitle | html %].
        - + [% ELSE %] [% IF ( missingparameter ) %] @@ -37,17 +37,17 @@ [% ELSE %] - + [% END %] [% IF ( missingbarcode ) %]
        - +
        Enter item barcode:
        [% ELSE %] - + [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt index c94d88de30..a1f8482fb9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% PROCESS 'merge-record.inc' %] @@ -30,9 +31,9 @@ div#result { margin-top: 1em; } [% FOREACH error IN errors %]
        [% IF error.code == 'CANNOT_MOVE' %] - The following items could not be moved from the old record to the new one: [% error.value %] + The following items could not be moved from the old record to the new one: [% error.value | html %] [% ELSE %] - [% error %] + [% error | html %] [% END %]
        Therefore, the record to be merged has not been deleted. @@ -40,21 +41,21 @@ div#result { margin-top: 1em; } [% END %] [% ELSE %] -

        The merge was successful. Click here to see the merged record.

        +

        The merge was successful. Click here to see the merged record.

        Report

        - [% resultsloo.title |html %] - [% FOREACH subtitl IN resultsloo.subtitle %][% subtitl.subfield %][% END %]

        + [% resultsloo.title | html %] + [% FOREACH subtitl IN resultsloo.subtitle %][% subtitl.subfield | html %][% END %]

        [% IF ( resultsloo.summary ) %] -

        [% resultsloo.summary %]

        +

        [% resultsloo.summary | html %]

        [% ELSE %]

        [% IF ( resultsloo.author ) %] - [% resultsloo.author %] + [% resultsloo.author | html %] [% ELSE %]   [% END %] - [% IF ( resultsloo.isbn ) %] - [% resultsloo.isbn %] [% END %] - [% IF ( resultsloo.publicationyear ) %] - [% resultsloo.publicationyear %][% END %] - [% IF ( resultsloo.publishercode ) %]- [% resultsloo.publishercode %][% END %] - [% IF ( resultsloo.copyrightdate ) %] - [% resultsloo.copyrightdate %][% END %] - [% IF ( resultsloo.edition ) %]Edition: [% resultsloo.edition %][% END %] - [% IF ( resultsloo.place ) %] ; [% resultsloo.place %][% END %] - [% IF ( resultsloo.pages ) %] - [% resultsloo.pages %][% END %] - [% IF ( resultsloo.item('size') ) %] ; [% resultsloo.item('size') %][% END %] - [% IF ( resultsloo.timestamp ) %] (modified on [% resultsloo.timestamp %])[% END %] + [% IF ( resultsloo.isbn ) %] - [% resultsloo.isbn | html %] [% END %] + [% IF ( resultsloo.publicationyear ) %] - [% resultsloo.publicationyear | html %][% END %] + [% IF ( resultsloo.publishercode ) %]- [% resultsloo.publishercode | html %][% END %] + [% IF ( resultsloo.copyrightdate ) %] - [% resultsloo.copyrightdate | html %][% END %] + [% IF ( resultsloo.edition ) %]Edition: [% resultsloo.edition | html %][% END %] + [% IF ( resultsloo.place ) %] ; [% resultsloo.place | html %][% END %] + [% IF ( resultsloo.pages ) %] - [% resultsloo.pages | html %][% END %] + [% IF ( resultsloo.item('size') ) %] ; [% resultsloo.item('size') | html %][% END %] + [% IF ( resultsloo.timestamp ) %] (modified on [% resultsloo.timestamp | html %])[% END %]

        [% END %]
        - + Actions -
        [% breeding_loo.title |html %] - [% breeding_loo.author %][% breeding_loo.isbn %][% breeding_loo.copyrightdate %][% breeding_loo.edition %][% breeding_loo.file %][% breeding_loo.title | html %] + [% breeding_loo.author | html %][% breeding_loo.isbn | html %][% breeding_loo.copyrightdate | html %][% breeding_loo.edition | html %][% breeding_loo.file | html %]
        - + Actions -
        @@ -202,7 +203,7 @@

        Preview

          + [% ELSE %] [% END %] - [% item_header.header_value %] + [% item_header.header_value | html %]
        [% item_valu.field |html %][% item_valu.field | html %]
        [% FOREACH key IN report_header.keys.sort %] - [% tag = key.substr(0, 3) %] - [% code = key.substr(3, 1) %] + [% tag = key.substr(0, 3) | html %] + [% code = key.substr(3, 1) | html %] [% IF code == '@' %] - [% header = tag %] + [% header = tag | html %] [% ELSE %] - [% header = tag _ '$' _ code %] + [% header = tag _ '$' _ code | html %] [% END %] - + [% END %] @@ -62,17 +63,17 @@ div#result { margin-top: 1em; } [% FOREACH record IN report_records %] [% FOREACH key IN report_header.keys.sort %] + value="[% f1 | html %]" /> + value="[% f2 | html %]" /> + value="[% f3 | html %]" />
        Biblionumber[% header %][% header | html %]
        - [% record.biblionumber %] + [% record.biblionumber | html %] [% IF loop.first %] (record kept) [% END %] - [% values = record.fields.$key %] + [% values = record.fields.$key | html %] [% IF values %] [% FOREACH value IN record.fields.$key %] - [% value %] + [% value | html %] [% UNLESS loop.last %]
        [% END %] [% END %] [% END %] @@ -95,16 +96,16 @@ div#result { margin-top: 1em; } [% FOREACH record IN records %]
      • [% IF loop.first %] - + [% ELSE %] - + [% END %] -
      • [% END %] @@ -114,14 +115,14 @@ div#result { margin-top: 1em; } [% FOREACH record IN records %] - + [% END %]
        @@ -137,7 +138,7 @@ div#result { margin-top: 1em; }

        Preview

        - + [% FOREACH record IN records %] - + [% END %] - +
        - + (Example: "001,245ab,600")
        @@ -187,7 +188,7 @@ div#result { margin-top: 1em; } [% MACRO jsinclude BLOCK %] - [% Asset.js("js/merge-record.js") %] + [% Asset.js("js/merge-record.js") | $raw %] [% INCLUDE 'merge-record-strings.inc' %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt index 6d3e5d1226..54b7c90bdd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt @@ -78,7 +78,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt index c8200789b8..c826dcf227 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt @@ -133,7 +133,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt index a2b5eebbdd..e7ef1b3ff2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt @@ -37,7 +37,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt index 44261c184d..611f79abb6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt @@ -38,7 +38,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt index 2a6aab2433..aad141c6d7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt @@ -112,7 +112,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt index effdf26d20..d19031d398 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt @@ -73,7 +73,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt index 10056b9390..e66c64e7c6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt @@ -139,7 +139,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt index feea0b169c..d9cb372e8a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt @@ -132,7 +132,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt index 253c899590..36ae907655 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt @@ -1033,7 +1033,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt index 075c63391c..e67ae40a43 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt @@ -176,7 +176,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_127.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_127.tt index 5e8adc2b8d..4dc7aef0aa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_127.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_127.tt @@ -12,15 +12,15 @@
        Cancel
        @@ -38,7 +38,7 @@ document.f_pop.f3.value=document.f_pop.f3.value.substring(0,2); var doc = opener.document; - var field = doc.getElementById("[% index %]"); + var field = doc.getElementById("[% index | html %]"); field.value = document.f_pop.f1.value+document.f_pop.f2.value+document.f_pop.f3.value; self.close(); @@ -47,4 +47,4 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt index bba00eb818..8930ad10aa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt @@ -370,10 +370,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt index e92cbb6538..5ebcff035d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt @@ -466,10 +466,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt index d5aa78d651..59004941a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt @@ -460,10 +460,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt index b486896273..138435d2bb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt @@ -197,7 +197,7 @@ +value="[% f5 | html %]" /> @@ -330,12 +330,12 @@ value="[% f5 %]" /> [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt index cd106f7ae8..e1a73ab0c1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt @@ -61,10 +61,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt index c1eaf92349..33df179167 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt @@ -1726,10 +1726,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt index 6b1d6d246d..a4a3252e2b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt @@ -369,10 +369,10 @@ [% MACRO jsinclude BLOCK %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt index 31797ada8e..c4970e5976 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% PROCESS 'authorities-search-results.inc' %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] @@ -13,10 +14,10 @@ - - + + - + @@ -32,7 +33,7 @@ - + @@ -43,11 +44,11 @@ [% IF ( total ) %]

        Authority search results

        - [% pagination_bar %] + [% pagination_bar | $raw %]
        [% END %]

        [% IF ( total ) %] -  Results [% from %] to [% to %] of [% total %]

        +  Results [% from | html %] to [% to | html %] of [% total | html %]

        [% ELSE %]   No results found
        [% END %] @@ -63,10 +64,10 @@ [% FOREACH resul IN result %] [% PROCESS authresult summary=resul.summary %] - [% resul.used %] times + [% resul.used | html %] times [% IF ( resul.to_report ) %] - choose + choose [% END %] @@ -76,7 +77,7 @@ [% END %] [% IF ( total ) %]

        - [% pagination_bar %] + [% pagination_bar | $raw %]
        [% END %] @@ -84,7 +85,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c_bis.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c_bis.tt index 76b3ffcb9e..c989fec235 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c_bis.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c_bis.tt @@ -28,7 +28,7 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt index 68a2ff2a45..efa16fc819 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt @@ -13,9 +13,9 @@ @@ -31,7 +31,7 @@ [% INCLUDE 'z3950_search.inc' %] - [% Asset.js("js/z3950_search.js") %] + [% Asset.js("js/z3950_search.js") | $raw %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt index 3e22aca738..b52a2833d4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt @@ -1,9 +1,10 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Z39.50/SRU search results [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -22,7 +23,7 @@
        1. -
        2. +
        3. @@ -42,11 +43,11 @@ [% FOREACH serverloo IN serverloop %]

          [% IF ( serverloo.checked ) %] - + [% ELSE %] - + [% END %] - +

          [% END %] @@ -81,10 +82,10 @@
            [% FOREACH errcon IN errconn %] - [% IF ( errcon.error == '10000' ) %]
          • Connection failed to [% errcon.server %]
          • - [% ELSIF ( errcon.error == '10007' ) %]
          • Connection timeout to [% errcon.server %]
          • - [% ELSIF errcon.error.match( '^XSLTH' ) %]
          • [% errcon.server %] record [% errcon.seq %]: [% PROCESS 'xslt-handler.inc' code=errcon.error %]
          • - [% ELSE %]
          • [% errcon.server %] record [% errcon.seq %]: [% errcon.error %]
          • + [% IF ( errcon.error == '10000' ) %]
          • Connection failed to [% errcon.server | html %]
          • + [% ELSIF ( errcon.error == '10007' ) %]
          • Connection timeout to [% errcon.server | html %]
          • + [% ELSIF errcon.error.match( '^XSLTH' ) %]
          • [% errcon.server | html %] record [% errcon.seq | html %]: [% PROCESS 'xslt-handler.inc' code=errcon.error %]
          • + [% ELSE %]
          • [% errcon.server | html %] record [% errcon.seq | html %]: [% errcon.error | html %]
          • [% END %] [% END %]
          @@ -106,24 +107,24 @@ [% FOREACH breeding_loo IN breeding_loop %] [% IF ( breeding_loo.breedingid ) %] - - [% breeding_loo.server %] - [% breeding_loo.title |html %] - [% breeding_loo.author %] - [% breeding_loo.date %] - [% breeding_loo.edition %] - [% breeding_loo.isbn %] - [% breeding_loo.lccn %] + + [% breeding_loo.server | html %] + [% breeding_loo.title | html %] + [% breeding_loo.author | html %] + [% breeding_loo.date | html %] + [% breeding_loo.edition | html %] + [% breeding_loo.isbn | html %] + [% breeding_loo.lccn | html %] @@ -140,7 +141,7 @@

          Preview

        @@ -149,7 +150,7 @@
        - + @@ -163,17 +164,17 @@ [% FOREACH server IN servers %] - + [% END %] [% IF ( show_prevbutton ) %] - + [% END %] - Page [% current_page %] / [% total_pages %] + Page [% current_page | html %] / [% total_pages | html %] [% IF ( show_nextbutton ) %] - + [% END %] -
        Go to page : +
        Go to page :
        [% ELSE %] @@ -185,11 +186,11 @@
        -[% IF ( numberpending ) %]

        Still [% numberpending %] servers to search

        [% END %] +[% IF ( numberpending ) %]

        Still [% numberpending | html %] servers to search

        [% END %] [% MACRO jsinclude BLOCK %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] - [% Asset.js("js/z3950_search.js") %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] + [% Asset.js("js/z3950_search.js") | $raw %] [% INCLUDE 'datatables.inc' %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index 7bfcd0095d..37b34adc50 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Branches %] [% USE KohaDates %] @@ -12,7 +13,7 @@ [% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -49,7 +50,7 @@ [% END %] [% IF charges_guarantees %]
      • - Fees & Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %]. + Fees & Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price | html %].
      • Checkouts are BLOCKED because fine balance is OVER THE LIMIT. @@ -77,8 +78,8 @@
        - - + +
        @@ -90,7 +91,7 @@

        Batch checkout confirmation [% IF patron %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]

        [% ELSE %] -

        Batch checkout information [% IF patron.borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] |[% batch %]|[% END %]

        +

        Batch checkout information [% IF patron.borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] |[% batch | html %]|[% END %]

        [% END %] @@ -109,19 +110,19 @@ [% IF confirmation_needed && CAN_user_circulate_force_checkout %] [% END %] - + [% IF ( reserveloo.borrowernumber ) %] - - - - + + + + [% ELSE %] @@ -89,31 +90,31 @@ [% END %] - - - + + + @@ -61,11 +61,11 @@ @@ -106,16 +106,16 @@ [% IF offset_accountline %] - - - + + + - - - - + + + + - + [% END %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt index e615ba030c..3307a3189e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Koha %] [% USE Asset %] [% SET footerjs = 1 %] @@ -25,8 +26,8 @@

        API keys for [% INCLUDE 'patron-title.inc' %]

        - - + +
        Generate new client id/secret pair @@ -59,22 +60,22 @@
        [% FOREACH key IN api_keys %] - - - + + + [% ELSIF key == 'branchcode' %] - - + + [% ELSE %] - - + + [% END %] [% END %] @@ -155,7 +156,7 @@ [% FOREACH attribute_group IN borrowers.$borrowernumber.modified_attributes %] - + @@ -167,8 +168,8 @@

        Patron's address in doubt

        The Gone no address flag is set for this patron. If this modification request resolves the issue, please unset the flag.

        - - + +
        [% END %] @@ -188,7 +189,7 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt index ec72e85524..ffac4d766c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE AuthorisedValues %] @@ -5,7 +6,7 @@ [% USE Price %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Patrons › Pay Fines for [% patron.firstname |html %] [% patron.surname |html %] +Koha › Patrons › Pay Fines for [% patron.firstname | html %] [% patron.surname | html %] [% INCLUDE 'doc-head-close.inc' %] @@ -13,7 +14,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'patron-search.inc' %] - +
        [% IF checkout_info.NEEDSCONFIRMATION %] - + [% END %] [% checkout_info.barcode %][% checkout_info.barcode | html %] - [% checkout_info.biblio.title |html %][% FOREACH subtitle IN checkout_info.biblio.subtitles %] [% subtitle.subfield %][% END %][% IF checkout_info.biblio.author %], by [% checkout_info.biblio.author %][% END %][% IF ( checkout_info.item.itemnotes ) %]- [% checkout_info.item.itemnotes %][% END %] [% checkout_info.item.barcode %] + [% checkout_info.biblio.title | html %][% FOREACH subtitle IN checkout_info.biblio.subtitles %] [% subtitle.subfield | html %][% END %][% IF checkout_info.biblio.author %], by [% checkout_info.biblio.author | html %][% END %][% IF ( checkout_info.item.itemnotes ) %]- [% checkout_info.item.itemnotes | html %][% END %] [% checkout_info.item.barcode | html %] [% IF checkout_info.NEEDSCONFIRMATION %]
          [% IF checkout_info.AGE_RESTRICTION %] -
        • Age restriction [% checkout_info.AGE_RESTRICTION %].
        • +
        • Age restriction [% checkout_info.AGE_RESTRICTION | html %].
        • [% END %] [% IF checkout_info.RENEW_ISSUE %]
        • This item is currently checked out to this patron. Renew?
        • @@ -142,7 +143,7 @@
        • Too many checked out.
        • [% END %] [% IF checkout_info.BORRNOTSAMEBRANCH %] -
        • This patron is from a different library ([% Branches.GetName( checkout_info.BORRNOTSAMEBRANCH ) %]).
        • +
        • This patron is from a different library ([% Branches.GetName( checkout_info.BORRNOTSAMEBRANCH ) | html %]).
        • [% END %] [% IF checkout_ino.PATRON_CANT %]
        • This patron can't check out this item per library circulation policy.
        • @@ -151,23 +152,23 @@ [% IF checkout_info.itemtype_notforloan %]
        • Item type is normally not for loan.
        • [% ELSIF checkout_info.item_notforloan %] - [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, checkout_info.item_notforloan, 0 ) %] -
        • Item is normally not for loan [% IF item_notforloan_lib %]([% item_notforloan_lib %])[% END %].
        • + [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, checkout_info.item_notforloan, 0 ) | html %] +
        • Item is normally not for loan [% IF item_notforloan_lib %]([% item_notforloan_lib | html %])[% END %].
        • [% END %] [% END %] [% IF checkout_info.USERBLOCKEDOVERDUE %] -
        • Patron has [% checkout_info.USERBLOCKEDOVERDUE %] overdue item(s).
        • +
        • Patron has [% checkout_info.USERBLOCKEDOVERDUE | html %] overdue item(s).
        • [% END %] [% IF checkout_info.ITEM_LOST %] -
        • This item has been lost with a status of "[% checkout_info.ITEM_LOST %]."
        • +
        • This item has been lost with a status of "[% checkout_info.ITEM_LOST | html %]."
        • [% END %] [% IF checkout_info.HIGHHOLDS %] -
        • High demand item. Loan period shortened to [% checkout_info.HIGHHOLDS.duration %] days (due [% checkout_info.HIGHHOLDS.returndate %]).
        • +
        • High demand item. Loan period shortened to [% checkout_info.HIGHHOLDS.duration | html %] days (due [% checkout_info.HIGHHOLDS.returndate | html %]).
        • [% END %] [% IF checkout_info.HIGHHOLDS %] [% END %] @@ -188,10 +189,10 @@ [% IF checkout_info.alert.ITEM_LOST || checkout_info.alert.OTHER_CHARGES %]
            [% IF checkout_info.alert.ITEM_LOST %] -
          • This item has been lost with a status of "[% checkout_info.alert.ITEM_LOST %]."
          • +
          • This item has been lost with a status of "[% checkout_info.alert.ITEM_LOST | html %]."
          • [% END %] [% IF checkout_info.alert.OTHER_CHARGES %] -
          • The patron has unpaid charges for holds, rentals etc of [% checkout_info.alert.OTHER_CHARGES %].
          • +
          • The patron has unpaid charges for holds, rentals etc of [% checkout_info.alert.OTHER_CHARGES | html %].
          • [% END %]
          [% END %] @@ -207,8 +208,8 @@ [% IF checkout_info.itemtype_notforloan %]
        • Item type not for loan.
        • [% ELSIF checkout_info.item_notforloan %] - [% item_notforloan_lib = AuthorisedValues.GetByCode( checkout_info.authvalcode_notforloan, checkout_info.item_notforloan, 0 ) %] -
        • Item not for loan [% IF checkout_info.item_notforloan_lib %]([% checkout_info.item_notforloan_lib %])[% END %].
        • + [% item_notforloan_lib = AuthorisedValues.GetByCode( checkout_info.authvalcode_notforloan, checkout_info.item_notforloan, 0 ) | html %] +
        • Item not for loan [% IF checkout_info.item_notforloan_lib %]([% checkout_info.item_notforloan_lib | html %])[% END %].
        • [% END %] [% END %] [% IF checkout_info.WTHDRAWN %] @@ -233,10 +234,10 @@
        • Patron's card is expired.
        • [% END %] [% IF checkout_info.ITEMNOTSAMEBRANCH %] -
        • This item belongs to [% Branches.GetName( checkout_info.itemhomebranch ) %] and cannot be checked out from this location.
        • +
        • This item belongs to [% Branches.GetName( checkout_info.itemhomebranch ) | html %] and cannot be checked out from this location.
        • [% END %] [% IF checkout_info.USERBLOCKEDREMAINING %] -
        • Patron has had overdue items and is blocked for [% checkout_info.USERBLOCKEDREMAINING %] day(s).
        • +
        • Patron has had overdue items and is blocked for [% checkout_info.USERBLOCKEDREMAINING | html %] day(s).
        • [% END %] [% IF checkout_info.USERBLOCKEDOVERDUE %]
        • Checkouts are BLOCKED because patron has overdue items.
        • @@ -245,10 +246,10 @@
        • Too many checked out.
        • [% END %] [% IF checkout_info.UNKNOWN_BARCODE %] -
        • The barcode was not found [% checkout_info.barcode |html %].
        • +
        • The barcode was not found [% checkout_info.barcode | html %].
        • [% END %] [% IF checkout_info.DEBT %] -
        • The patron has a debt of [% checkout_info.DEBT | $Price %].
        • +
        • The patron has a debt of [% checkout_info.DEBT | $Price | html %].
        • [% END %]

          [% END %] @@ -265,10 +266,10 @@ [% IF confirmation_needed && CAN_user_circulate_force_checkout %]
          Please confirm checkout - + - +
          @@ -292,7 +293,7 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'calendar.inc' %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("lib/jquery/plugins/jquery-ui-timepicker-addon.min.js") %] + [% Asset.js("lib/jquery/plugins/jquery-ui-timepicker-addon.min.js") | $raw %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline-mf.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline-mf.tt index 27dfd71f70..e5f9a9b8a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline-mf.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline-mf.tt @@ -1,35 +1,35 @@ CACHE MANIFEST -# [% cookie %] +# [% cookie | html %] # Explicitly cached 'master entries'. CACHE: /cgi-bin/koha/circ/offline.pl -[% interface %]/lib/bootstrap/bootstrap.min.css -[% interface %]/lib/bootstrap/bootstrap-theme.min.css -[% interface %]/lib/bootstrap/bootstrap.min.js -[% interface %]/lib/jquery/images/ui-icons_222222_256x240.png -[% interface %]/lib/jquery/images/ui-icons_454545_256x240.png -[% interface %]/lib/jquery/jquery-ui-1.11.4.min.css -[% interface %]/lib/jquery/jquery-ui-1.11.4.min.js -[% interface %]/lib/jquery/jquery-2.2.3.min.js -[% interface %]/lib/jquery/jquery-migrate-1.3.0.min.js -[% interface %]/lib/jquery/plugins/jquery.cookie.min.js -[% interface %]/lib/jquery/plugins/jquery.highlight-3.js -[% interface %]/lib/shortcut/shortcut.js -[% interface %]/lib/jquery/plugins/jquery.indexeddb.js -[% interface %]/lib/jquery/plugins/jquery.validate.min.js -[% interface %]/[% theme %]/css/print.css -[% interface %]/[% theme %]/css/staff-global.css -[% interface %]/[% theme %]/js/basket.js -[% interface %]/[% theme %]/js/offlinecirc.js -[% interface %]/[% theme %]/js/staff-global.js -[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js -[% themelang %]/lib/yui/reset-fonts-grids.css -[% interface %]/prog/img/cart-small.gif -[% interface %]/prog/img/koha-logo-medium.png -[% interface %]/prog/img/loading.gif -[% interface %]/prog/sound/beep.ogg -[% interface %]/prog/sound/critical.ogg +[% interface | html %]/lib/bootstrap/bootstrap.min.css +[% interface | html %]/lib/bootstrap/bootstrap-theme.min.css +[% interface | html %]/lib/bootstrap/bootstrap.min.js +[% interface | html %]/lib/jquery/images/ui-icons_222222_256x240.png +[% interface | html %]/lib/jquery/images/ui-icons_454545_256x240.png +[% interface | html %]/lib/jquery/jquery-ui-1.11.4.min.css +[% interface | html %]/lib/jquery/jquery-ui-1.11.4.min.js +[% interface | html %]/lib/jquery/jquery-2.2.3.min.js +[% interface | html %]/lib/jquery/jquery-migrate-1.3.0.min.js +[% interface | html %]/lib/jquery/plugins/jquery.cookie.min.js +[% interface | html %]/lib/jquery/plugins/jquery.highlight-3.js +[% interface | html %]/lib/shortcut/shortcut.js +[% interface | html %]/lib/jquery/plugins/jquery.indexeddb.js +[% interface | html %]/lib/jquery/plugins/jquery.validate.min.js +[% interface | html %]/[% theme | html %]/css/print.css +[% interface | html %]/[% theme | html %]/css/staff-global.css +[% interface | html %]/[% theme | html %]/js/basket.js +[% interface | html %]/[% theme | html %]/js/offlinecirc.js +[% interface | html %]/[% theme | html %]/js/staff-global.js +[% interface | html %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js +[% themelang | html %]/lib/yui/reset-fonts-grids.css +[% interface | html %]/prog/img/cart-small.gif +[% interface | html %]/prog/img/koha-logo-medium.png +[% interface | html %]/prog/img/loading.gif +[% interface | html %]/prog/sound/beep.ogg +[% interface | html %]/prog/sound/critical.ogg # Resources that require the user to be online. NETWORK: diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt index fd701cacaa..be7c32674b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt @@ -1,13 +1,14 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% IF (AllowOfflineCirculation) %] [% SET manifestattr = 'manifest="/cgi-bin/koha/circ/offline-mf.pl"' %] [% END %] -[% IF ( bidi && AllowOfflineCirculation ) %] -[% ELSIF ( bidi ) %] -[% ELSIF ( AllowOfflineCirculation ) %] -[% ELSE %][% END %] +[% IF ( bidi && AllowOfflineCirculation ) %] +[% ELSIF ( bidi ) %] +[% ELSIF ( AllowOfflineCirculation ) %] +[% ELSE %][% END %] Koha › Circulation [% INCLUDE 'doc-head-close.inc' %] @@ -26,8 +27,8 @@
          - - + +
          @@ -130,7 +131,7 @@
          Specify due date [% INCLUDE 'date-format.inc' %]:
          - + @@ -217,9 +218,9 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'calendar.inc' %] - [% Asset.js("lib/jquery/plugins/jquery.indexeddb.js") %] - [% Asset.js("js/offlinecirc.js") %] - [% Asset.js("lib/jquery/plugins/jquery-ui-timepicker-addon.min.js") %] + [% Asset.js("lib/jquery/plugins/jquery.indexeddb.js") | $raw %] + [% Asset.js("js/offlinecirc.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery-ui-timepicker-addon.min.js") | $raw %] [% INCLUDE 'timepicker.inc' %] - + +
          - +
          [% ELSE %] - + [% END %] [% IF ( patron_attr_filter_loo.repeatable ) %] Add @@ -152,8 +153,8 @@
        • diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt index fe979112b0..137deea951 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE KohaDates %] @@ -9,7 +10,7 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Circulation › Holds to pull [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -25,7 +26,7 @@
          [% FOR m IN messages %] -
          +
          [% SWITCH m.code %] [% CASE 'letter_enqueued' %] The notice has been correctly enqueued. @@ -38,7 +39,7 @@ [% CASE 'hold_placed_at_biblio_level' %] The hold has been placed on biblio level. It is not possible to determine the item to mark as lost. [% CASE %] - [% m.code %] + [% m.code | html %] [% END %]
          [% END %] @@ -70,15 +71,15 @@ [% FOREACH reserveloo IN reserveloop %]

        [% reserveloo.pullcount %]

        [% reserveloo.count %][% reserveloo.rcount %][% reserveloo.firstname %] [%reserveloo.surname %]

        [% reserveloo.pullcount | html %]

        [% reserveloo.count | html %][% reserveloo.rcount | html %][% reserveloo.firstname | html %] [% reserveloo.surname | html %]

        [% INCLUDE 'biblio-default-view.inc' biblionumber = reserveloo.biblionumber %] - [% reserveloo.title |html %] [% FOREACH s IN reserveloo.subtitle %] [% s %][% END %]

        - [% IF ( reserveloo.author ) %]

        by [% reserveloo.author %]

        [% END %] + [% reserveloo.title | html %] [% FOREACH s IN reserveloo.subtitle %] [% s | html %][% END %]

        + [% IF ( reserveloo.author ) %]

        by [% reserveloo.author | html %]

        [% END %]
        " [% FOREACH holdingbranch IN reserveloo.holdingbranches %] - [% Branches.GetName ( holdingbranch ) %] + [% Branches.GetName ( holdingbranch ) | html %] [% END %]

        [% reserveloo.itemcallnumber %]

        [% reserveloo.copyno %]

        [% reserveloo.enumchron %]

        [% reserveloo.itemcallnumber | html %]

        [% reserveloo.copyno | html %]

        [% reserveloo.enumchron | html %]

        [% FOREACH itemType IN reserveloo.itemTypes %] - [% ItemTypes.GetDescription( itemType ) %] + [% ItemTypes.GetDescription( itemType ) | html %] [% END %] [% FOREACH loc IN reserveloo.locations %] - [% AuthorisedValues.GetByCode('LOC', loc) %] + [% AuthorisedValues.GetByCode('LOC', loc) | html %] [% END %] - [% reserveloo.reservedate | $KohaDates %] in [% Branches.GetName ( reserveloo.branch ) %] + [% reserveloo.reservedate | $KohaDates %] in [% Branches.GetName ( reserveloo.branch ) | html %] - + [% IF reserveloo.holdingbranch != reserveloo.homebranch %] - + [% ELSE %] [% END %] @@ -122,7 +123,7 @@ [% IF Koha.Preference('CanMarkHoldsToPullAsLost') != 'do_not_allow' %] [% IF reserveloo.itemnumber %] - + [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %] @@ -184,9 +185,9 @@ [% IF ( HoldsToPullEndDate ) %] -

        (Inclusive, default is [% HoldsToPullStartDate %] days ago to [% HoldsToPullEndDate %] days ahead. Set other date ranges as needed.)

        +

        (Inclusive, default is [% HoldsToPullStartDate | html %] days ago to [% HoldsToPullEndDate | html %] days ahead. Set other date ranges as needed.)

        [% ELSE %] -

        (Inclusive, default is [% HoldsToPullStartDate %] days ago to today. Set other date ranges as needed.)

        +

        (Inclusive, default is [% HoldsToPullStartDate | html %] days ago to today. Set other date ranges as needed.)

        [% END %]
        @@ -203,7 +204,7 @@ [% INCLUDE 'columns_settings.inc' %] [% INCLUDE intranetstylesheet.inc %] -[% Asset.css("css/help.css") %] +[% Asset.css("css/help.css") | $raw %]

        Online Help

        [% IF ( error ) %] -
        [% error %]
        +
        [% error | html %]
        [% END %] - - - + + +
        Cancel
        - - diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-batch.tt index 1e42a621e8..fd1716d57c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-batch.tt @@ -22,6 +22,6 @@

        After saving your file, simply print to the blank labels you have in your library.

        -

        See the full documentation for Label Batches in the manual (online).

        +

        See the full documentation for Label Batches in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-layout.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-layout.tt index 6aafb22927..3bc7442fe8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-layout.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-layout.tt @@ -12,6 +12,6 @@

        After saving, your layouts will appear on the 'Manage Layouts' page.

        -

        See the full documentation for Label Layouts in the manual (online).

        +

        See the full documentation for Label Layouts in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-profile.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-profile.tt index 2d1837e684..8d6cac84a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-profile.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-profile.tt @@ -28,6 +28,6 @@

        Once you have saved your new profile, you can return to the list of templates and choose to edit the template that this profile is for.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-template.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-template.tt index 805c127469..a23c534dad 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-template.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-edit-template.tt @@ -30,6 +30,6 @@

        After saving, your templates will appear on the 'Manage Templates' page.

        -

        See the full documentation for Label Templates in the manual (online).

        +

        See the full documentation for Label Templates in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-home.tt index 26acab4e49..069e0fd273 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-home.tt @@ -41,6 +41,6 @@

        Batches are made up of the barcodes you would like to print. Once in this tool you can search for the item records you would like to print out labels for.

        -

        See the full documentation for the Label Creator in the manual (online).

        +

        See the full documentation for the Label Creator in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt index dfefeebe87..52dd410ce1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt @@ -14,7 +14,7 @@

        After saving, your layouts will appear on the 'Manage Layouts' page.

        -

        See the full documentation for Label Layouts in the manual (online).

        +

        See the full documentation for Label Layouts in the manual (online).

        Templates

        @@ -46,7 +46,7 @@

        After saving, your templates will appear on the 'Manage Templates' page.

        -

        See the full documentation for Label Templates in the manual (online).

        +

        See the full documentation for Label Templates in the manual (online).

        Profiles

        @@ -76,7 +76,7 @@

        Once you have saved your new profile, you can return to the list of templates and choose to edit the template that this profile is for.

        -

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

        +

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

        Batches

        @@ -100,6 +100,6 @@

        After saving your file, simply print to the blank labels you have in your library.

        -

        See the full documentation for Label Batches in the manual (online).

        +

        See the full documentation for Label Batches in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/spinelabel-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/spinelabel-home.tt index ccd0368fd4..dccb9c6805 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/spinelabel-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/spinelabel-home.tt @@ -6,11 +6,11 @@
        • Define the fields you want to print on the spine label in the SpineLabelFormat system preference
        • -
        • Format your label printing by editing spinelabel.css found in [% interface %]/[% theme %]/css/
        • +
        • Format your label printing by editing spinelabel.css found in [% interface | html %]/[% theme | html %]/css/

        To use this tool you simply need the barcode for the book you'd like to print the spine label for.

        -

        See the full documentation for Quick Spine Label Creator in the manual (online).

        +

        See the full documentation for Quick Spine Label Creator in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/mainpage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/mainpage.tt index ff2d1e2f70..5543e19f85 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/mainpage.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/mainpage.tt @@ -23,8 +23,8 @@

        IMPORTANT: Your online help will be overwritten by the new Help when there is an upgrade. If you want to keep a copy of your online help, you should instruct your System Administrator to upgrade the Online Help directory in the Koha file tree.

        -

        The online help directory is:

        [% themelang %]/modules/help

        +

        The online help directory is:

        [% themelang | html %]/modules/help

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] 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 0cc0ab1b05..eed45bba02 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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/discharge.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/discharge.tt index 91648ff3e2..ed1181933a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/discharge.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/discharge.tt @@ -16,6 +16,6 @@

        Once the letter is generated you will have a PDF to download

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] 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 ca519a057c..176e0df9a6 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 830ea26942..c00c431f04 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' %] 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 63b646c0d2..670a030834 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' %] 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 41c8127bec..e5b0c58478 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 @@ -522,6 +522,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 213d677a3e..0380a19a00 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,6 +11,6 @@

        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 b3a23a4b27..481a3454ce 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 @@ -60,6 +60,6 @@

        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' %] 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 252217a350..35db294b9f 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 aa28ba7ca7..7a26f45d0e 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 @@ -62,6 +62,6 @@

        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' %] 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 79ad891a93..32d5108498 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' %] 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 d88102fc99..71d2fded1c 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 @@ -139,6 +139,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' %] 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 f6967b7171..633a55e545 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' %] 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 06797856ac..13886efcf3 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 06797856ac..13886efcf3 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/purchase-suggestions.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/purchase-suggestions.tt index 2de7889adb..ead5c18afd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/purchase-suggestions.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/purchase-suggestions.tt @@ -8,6 +8,6 @@

        Learn more about Purchase suggestions in the Acquisitions chapter of the manual.

        -

        See the full documentation for the Patron's Purchase Suggestions in the manual (online).

        +

        See the full documentation for the Patron's Purchase Suggestions 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 b92f7e9ef7..0065865899 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 b1ef42e87d..e6d413726b 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 a71b4680a1..d0cf866b3d 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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/nohelp.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/nohelp.tt index e8e69e4cb8..443a7d01dc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/nohelp.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/nohelp.tt @@ -2,10 +2,10 @@

        Online help

        -

        Sorry, there is no help available for this topic, please refer to the Koha [% helpVersion %] manual (online).

        +

        Sorry, there is no help available for this topic, please refer to the Koha [% helpVersion | html %] manual (online).

        - +
        diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/list.tt index be1a307490..e3b24f7c09 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/list.tt @@ -20,6 +20,6 @@
      • Once finished you will have a summary of all of your transactions
      • -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/process_koc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/process_koc.tt index 995fe602dc..3e91a92e38 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/process_koc.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/offline_circ/process_koc.tt @@ -16,6 +16,6 @@

        You can also tend to pending circulation actions by going to Circulation > Pending offline circulation actions.

        -

        See the full documentation for Uploading the Offline Circulation File in the manual (online).

        +

        See the full documentation for Uploading the Offline Circulation File in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patron_lists/lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patron_lists/lists.tt index bba8901d3f..2789257b9f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patron_lists/lists.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patron_lists/lists.tt @@ -14,6 +14,6 @@

        Once you have all of the patrons you would like to add you can click the 'Update' button to save them to the list.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-batch.tt index 9b7e0fbf6b..ed8e85685c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-batch.tt @@ -8,6 +8,6 @@

        To add a new batch, you want to click on the 'Batches' button at the top of your page and choose 'New Batch'

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-layout.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-layout.tt index eb4ca0cac1..fe076163cd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-layout.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-layout.tt @@ -31,6 +31,6 @@

        After saving, your layouts will appear on the 'Manage Layouts' page.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-profile.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-profile.tt index 7b54484436..bc4c320e12 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-profile.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-profile.tt @@ -28,6 +28,6 @@

        Once you have saved your new profile, you can return to the list of templates and choose to edit the template that this profile is for.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-template.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-template.tt index ad01b313dc..e129a5beed 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-template.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/edit-template.tt @@ -25,6 +25,6 @@ After saving, your templates will appear on the 'Manage Templates' page. -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/home.tt index 8dd2f4ff38..789a7b5f9f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/home.tt @@ -17,6 +17,6 @@

        The developers of the Patron Card Creator module hope you will find this an extremely useful tool. You are encouraged to submit any enhancement requests as well as any bugs via Koha Project Bugzilla.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/image-manage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/image-manage.tt index 2553774ea7..efbe348072 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/image-manage.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/image-manage.tt @@ -20,6 +20,6 @@

        To replace an image, delete it, upload a new file and give it the same image name.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/manage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/manage.tt index baa73d05d5..0aea6a6d37 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/manage.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/patroncards/manage.tt @@ -17,6 +17,6 @@

        A batch is a collection of patrons for whom you want to generate cards.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-home.tt index 1f715ac255..d5c7d31345 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-home.tt @@ -6,6 +6,6 @@

        The plugin system needs to be turned on by a system administrator and should only managed by those who understand Perl and the way data connects within Koha.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-upload.tt index 76d943187f..2310e0698f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-upload.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/plugins/plugins-upload.tt @@ -6,6 +6,6 @@

        Important: Only install plugins from trusted sources.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/acquisitions_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/acquisitions_stats.tt index 477e270ec7..3908fe579d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/acquisitions_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/acquisitions_stats.tt @@ -12,6 +12,6 @@

        Choosing amount will change your results to appear as the sum of the amounts spent.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/bor_issues_top.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/bor_issues_top.tt index 803651db2c..c060d71c5a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/bor_issues_top.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/bor_issues_top.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Patrons with the most Checkouts report in the manual (online).

        +

        See the full documentation for the Patrons with the most Checkouts report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_out.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_out.tt index b1709d6720..17b0425d29 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_out.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_out.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Patrons with no Checkouts report in the manual (online).

        +

        See the full documentation for the Patrons with no Checkouts report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt index 46b1ce1b46..4a1ff5ee7a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt @@ -8,6 +8,6 @@

        Based on your selections, you may see some query information above your results table. You can also choose to export to a file that you can manipulate to your needs.

        -

        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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/cat_issues_top.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/cat_issues_top.tt index fecad38eb8..01215f4698 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/cat_issues_top.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/cat_issues_top.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Most Circulation Items report in the manual (online).

        +

        See the full documentation for the Most Circulation Items report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_out.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_out.tt index ad67588e64..028a5f34e2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_out.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_out.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Items with no Checkouts report in the manual (online).

        +

        See the full documentation for the Items with no Checkouts report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_stats.tt index 490e067b0c..7341bccbea 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/catalogue_stats.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/dictionary.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/dictionary.tt index 81156faf60..2939679981 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/dictionary.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/dictionary.tt @@ -18,6 +18,6 @@

        Then when generating reports on the module you created the value for you will see an option to limit by the definition at the bottom of the usual filters.

        -

        See the full documentation for the Reports Dictionary in the manual (online).

        +

        See the full documentation for the Reports Dictionary in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt index 03e15220ee..4ab933663e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt @@ -195,6 +195,6 @@
      • 8 = Stopped
      • -

        See the full documentation for Custom Reports in the manual (online).

        +

        See the full documentation for Custom Reports in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_avg_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_avg_stats.tt index 0fc656a65b..00eb6196d1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_avg_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_avg_stats.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Average Loan Time report in the manual (online).

        +

        See the full documentation for the Average Loan Time report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_stats.tt index d871b33510..b27b4761a6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/issues_stats.tt @@ -19,6 +19,6 @@
      • For a single day, an example would be: 11/15/2009 to 11/16/2009 to find what circulated on the 15th
      • -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/itemslost.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/itemslost.tt index a38a986ec0..324e7227d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/itemslost.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/itemslost.tt @@ -16,6 +16,6 @@ -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/manager.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/manager.tt index 74ef806fad..d97b9f4431 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/manager.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/manager.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

        See the full documentation for the Catalog by Item type report in the manual (online).

        +

        See the full documentation for the Catalog by Item type report in the manual (online).

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reports-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reports-home.tt index b2f5afc40d..51d6a3e2e2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reports-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reports-home.tt @@ -19,6 +19,6 @@ -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reserves_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reserves_stats.tt index db53c1d33a..c24035f836 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reserves_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/reserves_stats.tt @@ -10,6 +10,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/serials_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/serials_stats.tt index 35688dc1d9..675fae96aa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/serials_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/serials_stats.tt @@ -8,6 +8,6 @@

        You can also choose to export to a file that you can manipulate to your needs.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reserve/request.tt index 7224437e62..eb5f921590 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reserve/request.tt @@ -60,6 +60,6 @@

        If a patron asks to have their hold suspended you can do so by clicking the Suspend button to far right. If the patron gives you a date for the items to become unsuspended you can enter that in the date box and click the 'Update hold(s)' button to save your changes.

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reviews/reviewswaiting.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reviews/reviewswaiting.tt index 218316816e..29535468bc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reviews/reviewswaiting.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/reviews/reviewswaiting.tt @@ -10,6 +10,6 @@

        You can also review and unapprove comments you have approved in the past by choosing the 'Approved comments' tab

        -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/rotating_collections/rotatingCollections.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/rotating_collections/rotatingCollections.tt index be676b763c..33d1812cd2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/rotating_collections/rotatingCollections.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/rotating_collections/rotatingCollections.tt @@ -4,7 +4,7 @@

        Rotating Collections is a tool for managing collections of materials that frequently get shifted from library to library. It adds the ability to store not only an item's home library and current location, but also information about where it is supposed to be transferred to next to ensure that all items in the collection are sent to the correct library. When an item in a rotating collection is checked in, library staff are notified that the item is part of a rotating collection and which branch it should be sent to if it is not at the correct one.

        -

        Important: AutomaticItemReturn (system preference) must be set to "Don't automatically transfer items to their home library when they are returned" for Rotating Collections to function properly.

        +

        Important: AutomaticItemReturn (system preference) must be set to "Don't automatically transfer items to their home library when they are returned" for Rotating Collections to function properly.

          To create a new rotating collection, click the "New Collection" button, fill in the Title and Description, and click Submit. Once submitted you'll see "Collection Name added successfully"; click "Return to rotating collections home" to return to the main Rotating Collections management page (or click Rotating Collections in the sidebar). @@ -32,6 +32,6 @@

          If an item in a rotating collection is checked in at a library other than the one it is supposed to be transferred to, a notification will appear notifying library staff that the item is part of a rotating collection, also letting them know where the item needs to be sent.

          -

          See the full documentation for Rotating Collections in the manual (online).

          +

          See the full documentation for Rotating Collections in the manual (online).

          [% INCLUDE 'help-bottom.inc' %] 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 8171ec2880..c9dac83dc1 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' %] 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 39818a2c6b..1edf8615c0 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,6 +12,6 @@

          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 d8497ac05f..e6592c6ca6 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' %] 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 14709de4ab..bf7abca91c 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' %] 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 7d8f4eb291..e19a57cfa5 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 1b83e14172..e014987856 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,6 +6,6 @@

          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 ffacfd428b..361cf40283 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 @@ -102,6 +102,6 @@ Once that data is filled in you can click 'Next' to enter the prediction pattern

          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 4f72f4ae1d..363f6c376a 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 receive 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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-frequencies.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-frequencies.tt index 6c17d6285e..b190b55394 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-frequencies.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-frequencies.tt @@ -6,6 +6,6 @@

          From this page you can view all of the existing frequencies in your system and create new ones.

          -

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

          +

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

          [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-numberpatterns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-numberpatterns.tt index 2af51eb8d9..3fe0283593 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-numberpatterns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-numberpatterns.tt @@ -8,6 +8,6 @@

          It will also allow you to create a new numbering pattern without first adding a subscription. To add a new pattern click 'New numbering pattern' at the top of the list of patterns.

          -

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

          +

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

          [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/suggestion/suggestion.tt index 84a025eea1..e6352210b4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/suggestion/suggestion.tt @@ -38,6 +38,6 @@

          Customization: You can create additional custom suggestion statuses by creating new authorized values of the category SUGGEST_STATUS.

          -

          See the full documentation for Purchase Suggestions in the manual (online).

          +

          See the full documentation for Purchase Suggestions in the manual (online).

          [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/list.tt index 270a72d92f..00adfadb0d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/list.tt @@ -6,6 +6,6 @@

          To remove a tag from a specific title, simply click the 'Remove tag' button to the right of the title.

          -

          See the full documentation for Tag Moderation in the manual (online).

          +

          See the full documentation for Tag Moderation in the manual (online).

          [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/review.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/review.tt index 70e430a0fd..468fc45a37 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/review.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tags/review.tt @@ -20,6 +20,6 @@

          To check terms against the approved and rejected lists (and possibly against the dictionary you have assigned for tag moderation) simply enter the term into the search box on the bottom right of the screen to see the status of the term.

          -

          See the full documentation for Tag Moderation in the manual (online).

          +

          See the full documentation for Tag Moderation in the manual (online).

          [% INCLUDE 'help-bottom.inc' %] 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 49654e84f1..2802ee27be 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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_delete_records.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_delete_records.tt index 0ea11b535e..ff20499ebb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_delete_records.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_delete_records.tt @@ -10,6 +10,6 @@

          Check the records you want to delete and click the 'Delete selected records' button to finish the process.

          -

          See the full documentation for Batch Delete Records in the manual (online).

          +

          See the full documentation for Batch Delete Records in the manual (online).

          [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_record_modification.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_record_modification.tt index d217496d15..bae08f7c10 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_record_modification.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_record_modification.tt @@ -25,6 +25,6 @@

          Once you're sure everything is the way you want you can click the 'Modify selected records' button and your records will be modified.

          -

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

          +

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

          [% INCLUDE 'help-bottom.inc' %] 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 3bc9b36c90..36fa06b90a 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' %] 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 b2f54205b7..599be17ed4 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 @@ -108,36 +108,36 @@ }

        The indicators can be accessible using the 'indicator' key.

        -

        Example: [% fields.245.0.indicator.1 %] is the indicator 1 for the first 245 field.

        +

        Example: [% fields.245.0.indicator.1 | html %] is the indicator 1 for the first 245 field.

        Some examples:

        • Display all 245$a and 245$c into the same column:

          [% FOREACH field IN fields.245 %] - [% field.a.join(' ') %] [% field.c.join(' ') %] + [% field.a.join(' ') | html %] [% field.c.join(' ') | html %] [% END %]

        • Display 650$a if indicator 2 for 650 is set

          - Subject=[% FOREACH field IN fields.650 %][% IF field.indicator.2 %][% field.a.0 %][% END %][% END %] + Subject=[% FOREACH field IN fields.650 %][% IF field.indicator.2 %][% field.a.0 | html %][% END %][% END %]

        • Display the language from the control field 008

          - Language=[% fields.008.0.substr( 28, 3 ) %] + Language=[% fields.008.0.substr( 28, 3 ) | html %]

        • Display the first subfield a for first field 245 if indicator 1 for field 100 is set

          - Title=[% IF fields.100.0.indicator.1 %][% fields.245.0.a.0 %][% END %] + Title=[% IF fields.100.0.indicator.1 %][% fields.245.0.a.0 | html %][% END %]

        Note that the authorized values won't be replaced by their descriptions.

        [- TAGS default -] -

        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' %] 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 e8fb6e407a..335bbd9b9b 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 @@ -61,6 +61,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' %] 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 e3902271c1..cc10ceede7 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,6 +65,6 @@

        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 2bda1d54b1..e7c98ff931 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 6288c6fd45..fd95551dd6 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' %] 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 534e335c7f..b2f9ed4fe3 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 @@ -24,6 +24,6 @@
      • The system preference 'NewsAuthorDisplay' can be used to hide or show the author for news item.
      • -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] 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 29ed6ecab9..e50e45d0e4 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 @@ -292,6 +292,6 @@ Barcode: <<items.barcode>> , Checkout date: -

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

        +

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

        [% INCLUDE 'help-bottom.inc' %] 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 80433a6627..923707805f 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 @@ -41,6 +41,6 @@ -

        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/marc_modification_templates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/marc_modification_templates.tt index 57c0cd9ae0..bc0626ce14 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/marc_modification_templates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/marc_modification_templates.tt @@ -58,6 +58,6 @@

        Once your template is saved you will be able to pick it when using the Stage MARC Records for Import tool.

        -

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

        +

        See the full documentation for MARC Modification Templates 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 269d0c20ce..29cdd6ff7f 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' %] 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 5b239dc532..6654b6ae82 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 @@ -45,6 +45,6 @@

        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 5347d5bb03..f39852a186 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 d3793e5934..7289099e47 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 f3404b94f2..4a95c9f641 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 37e4812d62..1c6483eb80 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 7af7419e0f..5c34b27ab9 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 @@ -35,7 +35,7 @@ -

        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' %] 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 2968dc6d21..79de790eea 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' %] 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 30ecdac6da..d1d326c902 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' %] 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 ac9b16539d..de7d41fbfe 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 @@ -6,6 +6,6 @@

        Choosing different combinations of menu options will produce the log file for that query.

        -

        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' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/virtualshelves/shelves.tt index a2f5789fa4..35e6240932 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/virtualshelves/shelves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/virtualshelves/shelves.tt @@ -62,6 +62,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 Lists in the manual (online).

        +

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

        [% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index b869b5f524..8bc9268364 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Branches %] [% USE Koha %] @@ -6,8 +7,8 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › ILL requests › [% INCLUDE 'doc-head-close.inc' %] -[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] -[% Asset.css("css/datatables.css") %] +[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] +[% Asset.css("css/datatables.css") | $raw %] [% INCLUDE 'datatables.inc' %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt index 92e01eb9dd..1ffd01ec69 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt @@ -11,7 +11,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'patron-search.inc' %] - +
        @@ -38,21 +38,21 @@
        - [% accountline.date |$KohaDates %] + [% accountline.date |$KohaDates %] [%- INCLUDE 'accounttype.inc' account => accountline -%] [%- IF accountline.payment_type -%] - , [% AuthorisedValues.GetByCode('PAYMENT_TYPE', accountline.payment_type) %] + , [% AuthorisedValues.GetByCode('PAYMENT_TYPE', accountline.payment_type) | html %] [%- END =%] [%- IF accountline.description -%] - , [% accountline.description %] + , [% accountline.description | html %] [%- END -%]   [% IF ( accountline.itemnumber ) %] [% SET biblio = accountline.item.biblio %] - [% biblio.title |html %] + [% biblio.title | html %] [% END %] - [% accountline.amount | $Price %] + [% accountline.amount | $Price | html %] - [% accountline.amountoutstanding | $Price %] + [% accountline.amountoutstanding | $Price | html %]
        [% offset_accountline.date | $KohaDates %][% offset_accountline.timestamp | $KohaDates with_hours => 1 %][% offset_accountline.amount | $Price %][% offset_accountline.amountoutstanding | $Price %][% offset_accountline.timestamp | $KohaDates with_hours => 1 | html %][% offset_accountline.amount | $Price | html %][% offset_accountline.amountoutstanding | $Price | html %] [% INCLUDE 'accounttype.inc' account => offset_accountline %][% offset_accountline.note %][% IF offset_accountline.manager_id %][% offset_accountline.manager_id %][% END %][% ao.created_on | $KohaDates with_hours => 1 %][% ao.amount | $Price %][% offset_accountline.note | html %][% IF offset_accountline.manager_id %][% offset_accountline.manager_id | html %][% END %][% ao.created_on | $KohaDates with_hours => 1 | html %][% ao.amount | $Price | html %] [% INCLUDE 'account_offset_type.inc' account_offset => ao %] Details Details
        [% key.description %][% key.client_id %][% key.secret %][% key.description | html %][% key.client_id | html %][% key.secret | html %] [% IF key.active %]Yes[% ELSE %]No[% END %] - - - + + +
        - - - + + + [% IF key.active %] @@ -101,7 +102,7 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt index 68e36a1988..e935fbb3d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE Branches %] @@ -23,16 +24,16 @@
        - - + +
        Manual credit
          @@ -46,7 +47,7 @@
        1. Example: 5.00
        -
        Cancel
        +
        Cancel
        @@ -61,7 +62,7 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] - [% Asset.js("js/members.js") %] - [% Asset.js("js/messaging-preference-form.js") %] + [% Asset.js("js/members.js") | $raw %] + [% Asset.js("js/messaging-preference-form.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt index 26667e220c..687afdee93 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE AuthorisedValues %] [% USE Branches %] @@ -62,7 +63,7 @@ [% CASE 'altcontactphone' %]Alternate contact: Phone [% CASE 'smsalertnumber' %]SMS alert number [% CASE 'extended_attributes' %]Additional attributes and identifiers -[% CASE %][% field %] +[% CASE %][% field | html %] [% END %] [% END %] @@ -80,9 +81,9 @@ [% BLOCK display_attribute %] [% IF type.authorised_value_category %] - [% AuthorisedValues.GetByCode(type.authorised_value_category,attr.attribute) %] + [% AuthorisedValues.GetByCode(type.authorised_value_category,attr.attribute) | html %] [% ELSE %] - [% attr.attribute %] + [% attr.attribute | html %] [% END %] [% END %] @@ -98,18 +99,18 @@
        [% borrowers.$borrowernumber.$key | $KohaDates %] [% pm.$key | $KohaDates %][% Branches.GetName( borrowers.$borrowernumber.$key ) %][% Branches.GetName( pm.$key ) %][% Branches.GetName( borrowers.$borrowernumber.$key ) | html %][% Branches.GetName( pm.$key ) | html %][% borrowers.$borrowernumber.$key %][% pm.$key %][% borrowers.$borrowernumber.$key | html %][% pm.$key | html %]
        [% attribute_group.type.description %][% attribute_group.type.description | html %] [% PROCESS display_extended_attributes attrs=attribute_group.before type=attribute_group.type %] [% PROCESS display_extended_attributes attrs=attribute_group.after type=attribute_group.type %]
        @@ -51,7 +52,7 @@ - + @@ -59,21 +60,21 @@ - - - - + + + + [% END %] [% IF ( account_grp.total ) %] - + [% END %] @@ -122,11 +123,11 @@ [% IF CAN_user_updatecharges_writeoff %][% END %] -Cancel +Cancel [% ELSE %] -

        [% patron.firstname |html %] [% patron.surname |html %] has no outstanding fines.

        +

        [% patron.firstname | html %] [% patron.surname | html %] has no outstanding fines.

        [% END %] @@ -139,8 +140,8 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("js/members-menu.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] [% IF ( SUCCESS ) %] [% END %] [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") %] + [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/enqueue_koc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/enqueue_koc.tt index dee915750d..b93aeb59f3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/enqueue_koc.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/enqueue_koc.tt @@ -18,7 +18,7 @@ [% FOREACH message IN messages %] [% IF ( message.message ) %] [% IF ( message.ERROR_file_version ) %] -

        Warning: This file is version [% message.upload_version %], but I only know how to import version [% message.current_version %]. I'll try my best.

        +

        Warning: This file is version [% message.upload_version | html %], but I only know how to import version [% message.current_version | html %]. I'll try my best.

        [% END %] [% END %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt index c5803ae91c..9c66a85627 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE "doc-head-open.inc" %] @@ -35,9 +36,9 @@
        [% FOREACH operation IN pending_operations %] - - - + + + - + [% END %] @@ -88,7 +89,7 @@ [% MACRO jsinclude BLOCK %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] + @@ -35,13 +35,13 @@
        1. - + Required
        2. - + Required
        3. @@ -102,7 +102,7 @@
        4. [% IF category.enrolmentperiod %] - + [% ELSE %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt index 51ed7f0e7f..b96c30dfb3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt @@ -4,7 +4,7 @@ [% INCLUDE 'installer-doc-head-close.inc' %] [% INCLUDE 'validator-strings.inc' %] [% INCLUDE 'installer-strings.inc' %] - + @@ -27,12 +27,12 @@
          1. - + Required
          2. - + Required
          @@ -53,7 +53,7 @@ Required @@ -62,7 +62,7 @@ Required

          @@ -83,12 +83,12 @@
          1. - + Required
          2. - + Required
          3. diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt index ec9c7b6d9e..54274c08b8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt @@ -3,7 +3,7 @@ [% INCLUDE 'installer-doc-head-close.inc' %] [% INCLUDE 'validator-strings.inc' %] [% INCLUDE 'installer-strings.inc' %] - + @@ -28,13 +28,13 @@
            1. - + Required
            2. - + Required
            diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt index dfae544472..d6eb24e7fc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt @@ -9,7 +9,7 @@ [% INCLUDE 'installer-doc-head-close.inc' %] [% INCLUDE 'validator-strings.inc' %] [% INCLUDE 'installer-strings.inc' %] - + @@ -42,7 +42,7 @@ [% FOREACH library IN libraries %] - + [% END %] Required @@ -53,7 +53,7 @@ [% FOREACH category IN categories %] - + [%END%] Required @@ -65,7 +65,7 @@ [% FOREACH item IN itemtypes %] -
        [% FOREACH data IN datas %] - - - - - - - + + + + + + + + [% END %] [% IF itemdata_enumchron %] [% END %]
        Total due:[% total | $Price %][% total | $Price | html %]
        [% IF ( line.amountoutstanding > 0 ) %] - + [% END %] [% IF ( line.amountoutstanding > 0 ) %] - - [% IF CAN_user_updatecharges_writeoff %][% END %] + + [% IF CAN_user_updatecharges_writeoff %][% END %] [% END %] - - - - - - - + + + + + + + [% SWITCH line.accounttype %] @@ -97,22 +98,22 @@ [% CASE 'WO' %]Writeoff [% CASE 'C' %]Credit [% CASE 'CR' %]Credit - [% CASE %][% line.accounttype %] + [% CASE %][% line.accounttype | html %] [%- END -%] - [%- IF line.description %], [% line.description %][% END %] - [% IF line.title %]([% line.title %])[% END %] + [%- IF line.description %], [% line.description | html %][% END %] + [% IF line.title %]([% line.title | html %])[% END %] [% line.accounttype %][% line.amount | $Price %][% line.amountoutstanding | $Price %][% line.accounttype | html %][% line.amount | $Price | html %][% line.amountoutstanding | $Price | html %]
        Sub total:[% account_grp.total | $Price %][% account_grp.total | $Price | html %]
        [% operation.timestamp %]
        [% operation.timestamp | html %] [% SWITCH ( operation.action ) -%] [% CASE "issue" -%] @@ -47,26 +48,26 @@ [% CASE "payment" -%] Payment [% CASE # default case -%] - [% operation.action %] + [% operation.action | html %] [% END -%] [% IF ( operation.biblionumber ) %] - [% operation.barcode %] + [% operation.barcode | html %] [% ELSE %] - [% operation.barcode %] + [% operation.barcode | html %] [% END %] [% IF ( operation.actionissue || operation.actionpayment) %] [% IF ( operation.borrowernumber ) %] - [% operation.cardnumber %] + [% operation.cardnumber | html %] [% ELSE %] - [% operation.cardnumber %] + [% operation.cardnumber | html %] [% END %] [% END %] [% operation.amount %][% operation.amount | html %]
        [% data.name %][% data.title |html %][% data.subscriptionid %][% Branches.GetName( data.branchcode ) %][% data.callnumber %][% data.startdate | $KohaDates %][% data.enddate | $KohaDates %][% data.name | html %][% data.title | html %][% data.subscriptionid | html %][% Branches.GetName( data.branchcode ) | html %][% data.callnumber | html %][% data.startdate | $KohaDates %][% data.enddate | $KohaDates %] [% IF data.closed %] Closed @@ -73,7 +74,7 @@
      • @@ -106,15 +107,15 @@ @@ -124,7 +125,7 @@
        - +
        diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt index 2b435d27cd..212c205f5d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE KohaDates %] @@ -7,12 +8,12 @@ [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] [% UNLESS ( multi_hold ) %] - Koha › Circulation › Holds › Place a hold on [% title |html %] + Koha › Circulation › Holds › Place a hold on [% title | html %] [% ELSE %] Koha › Circulation › Holds › Confirm holds [% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -20,7 +21,7 @@ [% INCLUDE 'circ-search.inc' %] [% UNLESS ( multi_hold ) %] - + [% ELSE %] [% END %] @@ -42,8 +43,8 @@ [% IF ( messagetransfert ) %]
        -

        Hold found for ([% nextreservtitle %]), please transfer

        -

        Hold placed by : [% nextreservsurname %] [% nextreservfirstname %] at : [% branchname %] , Please transfer this item. +

        Hold found for ([% nextreservtitle | html %]), please transfer

        +

        Hold placed by : [% nextreservsurname | html %] [% nextreservfirstname | html %] at : [% branchname | html %] , Please transfer this item.

        @@ -52,7 +53,7 @@ [% END %] [% UNLESS ( multi_hold ) %] -

        Place a hold on [% INCLUDE 'biblio-default-view.inc' %][% title |html %]

        +

        Place a hold on [% INCLUDE 'biblio-default-view.inc' %][% title | html %]

        [% ELSE %]

        Confirm holds

        [% END %] @@ -61,7 +62,7 @@ [% IF ( messageborrower ) %]

        Patron not found

        No patron with this name, please, try another

        [% END %] - +
        [% UNLESS borrowers %] @@ -70,10 +71,10 @@ [% IF multi_hold %] - - + + [% ELSE %] - + [% END %]
        [% ELSE %] @@ -82,8 +83,8 @@ [% END %] [% IF ( multi_hold ) %] - - + + [% END %]
        [% ELSIF NOT noitems %] @@ -95,29 +96,29 @@

        Cannot place hold

        [% ELSE %]

        Cannot place hold on some items

        [% IF ( exceeded_maxreserves ) %] -
      • Too many holds: [% patron.firstname %] [% patron.surname %] can place [% new_reserves_allowed %] of the requested [% new_reserves_count %] holds for a maximum of [% maxreserves %] total holds.
      • +
      • Too many holds: [% patron.firstname | html %] [% patron.surname | html %] can place [% new_reserves_allowed | html %] of the requested [% new_reserves_count | html %] holds for a maximum of [% maxreserves | html %] total holds.
      • [% ELSIF ( exceeded_holds_per_record ) %] [% FOREACH biblioloo IN biblioloop %] [% IF (biblioloo.tooManyHoldsForThisRecord) %] -
      • Too many holds for [% biblioloo.title %]: [% patron.firstname %] [% patron.surname %] can only place a maximum of [% max_holds_for_record %] hold(s) on this record.
      • +
      • Too many holds for [% biblioloo.title | html %]: [% patron.firstname | html %] [% patron.surname | html %] can only place a maximum of [% max_holds_for_record | html %] hold(s) on this record.
      • [% END %] [% END %] [% END %] @@ -129,19 +130,19 @@ [% IF ( expiry || diffbranch || patron.is_debarred || ( amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') ) ) %]
        @@ -159,27 +160,27 @@
        [% END %] - + [% IF ( multi_hold ) %] - - + + [% FOREACH biblioloo IN biblioloop %] - - + + [% END %] [% ELSE %] - - - + + + [% END %]
        1. Patron: [% IF ( patron.borrowernumber ) %] - [% patron.firstname %] [% patron.surname %] ([% patron.cardnumber %]) + [% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %]) [% ELSE %] Not defined yet [% END %] @@ -187,7 +188,7 @@ [% UNLESS ( multi_hold ) %]
        2. Estimated priority: - [% fixedRank %] + [% fixedRank | html %]
        3. [% END %]
        4. @@ -208,7 +209,7 @@
        5. @@ -239,14 +240,14 @@ [% ELSE %] [% END %] - - + + [% IF remaining_holds_for_record > 1 %]
        6. - +
        7. [% ELSE %] @@ -269,10 +270,10 @@ [% FOREACH bibitemloo IN bibitemloop %]
            [% UNLESS ( item_level_itypes ) %] -
          1. Item type: [% bibitemloo.description %]
          2. +
          3. Item type: [% bibitemloo.description | html %]
          4. [% END %] - [% IF ( bibitemloo.publicationyear ) %]
          5. Publication year: [% bibitemloo.publicationyear %]
          6. [% END %] + [% IF ( bibitemloo.publicationyear ) %]
          7. Publication year: [% bibitemloo.publicationyear | html %]
          8. [% END %]

          @@ -303,7 +304,7 @@ [% SET selected = 0 %] [% FOREACH itemloo IN bibitemloo.itemloop %] [% UNLESS ( itemloo.hide ) %] -

        [% IF itemloo.force_hold_level == 'record' # Patron has placed a record level hold previously for this record %] @@ -311,9 +312,9 @@ Hold must be record level [% ELSIF ( itemloo.available ) %] - + [% ELSIF ( itemloo.override ) %] - + [% ELSE %] @@ -334,7 +335,7 @@ [% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] Patron already has hold for this item [% ELSE %] - [% itemloo.not_holdable %] + [% itemloo.not_holdable | html %] [% END %] [% END %] @@ -343,40 +344,40 @@ [% IF ( item_level_itypes ) %] [% UNLESS ( noItemTypeImages ) %] - [% IF ( itemloo.imageurl ) %]
        [% END %] + [% IF ( itemloo.imageurl ) %]
        [% END %] [% END %] - [% itemloo.itypename %] + [% itemloo.itypename | html %]
        - [% itemloo.barcode %] + [% itemloo.barcode | html %] - [% Branches.GetName( itemloo.homebranch ) %] + [% Branches.GetName( itemloo.homebranch ) | html %] - [% Branches.GetName( itemloo.holdingbranch ) %] + [% Branches.GetName( itemloo.holdingbranch ) | html %] - [% itemloo.itemcallnumber %] + [% itemloo.itemcallnumber | html %] - [% IF ( itemloo.copynumber ) %][% itemloo.copynumber %][% ELSE %] [% END %] + [% IF ( itemloo.copynumber ) %][% itemloo.copynumber | html %][% ELSE %] [% END %] - [% itemloo.enumchron %] + [% itemloo.enumchron | html %] [% IF ( itemloo.onloan ) %] - Due [% itemloo.date_due | $KohaDates as_due_date => 1 %] + Due [% itemloo.date_due | $KohaDates as_due_date => 1 | html %] [% ELSE %] [% IF ( itemloo.transfertwhen ) %] - In transit from [% Branches.GetName( itemloo.transfertfrom ) %], - to [% Branches.GetName( itemloo.transfertto ) %], since [% itemloo.transfertwhen %] + In transit from [% Branches.GetName( itemloo.transfertfrom ) | html %], + to [% Branches.GetName( itemloo.transfertto ) | html %], since [% itemloo.transfertwhen | html %] [% END %] [% END %] @@ -385,7 +386,7 @@ [% END %] [% IF ( itemloo.notforloan ) %] - Not for loan ([% itemloo.notforloanvalue %]) + Not for loan ([% itemloo.notforloanvalue | html %]) [% END %] [% IF ( itemloo.reservedate ) %] @@ -393,9 +394,9 @@ Can't be cancelled when item is in transit [% ELSE %] [% IF ( itemloo.waitingdate ) %]Waiting[% ELSE %]On hold[% END %] - [% IF ( itemloo.canreservefromotherbranches ) %]for [% itemloo.ReservedFor.firstname %] [% itemloo.ReservedFor.surname %][% END %] [% IF ( itemloo.waitingdate ) %]at[% ELSE %]expected at[% END %] [% Branches.GetName( itemloo.ExpectedAtLibrary ) %] + [% IF ( itemloo.canreservefromotherbranches ) %]for [% itemloo.ReservedFor.firstname | html %] [% itemloo.ReservedFor.surname | html %][% END %] [% IF ( itemloo.waitingdate ) %]at[% ELSE %]expected at[% END %] [% Branches.GetName( itemloo.ExpectedAtLibrary ) | html %] since - [% IF ( itemloo.waitingdate ) %][% itemloo.waitingdate | $KohaDates %][% ELSE %][% IF ( itemloo.reservedate ) %][% itemloo.reservedate %][% END %][% END %]. Cancel hold + [% IF ( itemloo.waitingdate ) %][% itemloo.waitingdate | $KohaDates %][% ELSE %][% IF ( itemloo.reservedate ) %][% itemloo.reservedate | html %][% END %][% END %]. Cancel hold [% END %] [% ELSE %] @@ -418,7 +419,7 @@
        [% IF ( bibitemloo.hiddencount ) %] -

        Show all items ([% bibitemloo.hiddencount %] hidden)

        +

        Show all items ([% bibitemloo.hiddencount | html %] hidden)

        [% END %] [% END %] @@ -442,23 +443,23 @@ [% END %] [% UNLESS ( biblioloo.warn ) %] - + [% ELSE %] - + [% END %] [% UNLESS ( item_level_itypes ) %] - [% biblioloo.itypename %] + [% biblioloo.itypename | html %] [% END %] - [% biblioloo.rank %] + [% biblioloo.rank | html %] [% IF ( biblioloo.alreadyres ) %]
          @@ -469,7 +470,7 @@ [% END %] [% IF ( biblioloo.alreadyres ) %] -
        • [% patron.firstname %] [% patron.surname %] already has a hold on this item
        • +
        • [% patron.firstname | html %] [% patron.surname | html %] already has a hold on this item
        • [% END %] [% IF ( biblioloo.none_avail ) %]
        • No items are available to be placed on hold
        • @@ -507,10 +508,10 @@ [% UNLESS ( patron ) %] [% IF ( reserveloop ) %] -
          + [% IF ( multi_hold ) %] - + [% END %]
          @@ -521,7 +522,7 @@ [% IF ( biblioloo.reserveloop ) %] [% IF ( multi_hold ) %] - + [% END %] [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] @@ -537,7 +538,7 @@ [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] - + [% END %] [% IF SuspendHoldsIntranet %][% END %] @@ -545,9 +546,9 @@ [% FOREACH reserveloo IN biblioloo.reserveloop %] [% END %] @@ -595,23 +596,23 @@ - - - + + + [% END %] [% IF SuspendHoldsIntranet %] [% FOR field IN fields %] - - - + + + [% END %] @@ -112,7 +113,7 @@
        • - +
        • @@ -126,7 +127,7 @@
          [% IF field %] - + [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt index a828f7012e..cc10ebb617 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt @@ -51,7 +51,7 @@ [% IF ( subscriptions_loop ) %]

          - [% numsubscription %] subscription(s) + [% numsubscription | html %] subscription(s) [% IF ( title ) %] with title matching [% title | html %] [% IF ( issn ) %]and [% END %] @@ -86,33 +86,33 @@ [% FOREACH subscriptions_loo IN subscriptions_loop %]

        • [% IF can_change_library %][% END %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt index 8f5f54700f..ba71129f77 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE AuthorisedValues %] [% USE Branches %] @@ -5,7 +6,7 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Serials › Claims [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -28,7 +29,7 @@ [% ELSIF error_claim == 'bad_or_missing_sender' %]
          Bad or missing sender address; check your branch email address or preference KohaAdminEmailAddress.
          [% ELSE %] -
          [% error_claim %]
          +
          [% error_claim | html %]
          [% END %] [% END %] [% IF info_claim %] @@ -47,12 +48,12 @@ @@ -69,9 +70,9 @@
          1. - + - + [% INCLUDE 'date-format.inc' %] Clear filter @@ -96,7 +97,7 @@
          [% FOR field IN additional_fields_for_subscription %] - + [% END %] @@ -113,7 +114,7 @@ [% FOR field IN additional_fields_for_subscription %] - + [% END %] @@ -121,18 +122,18 @@ - + - - + + - + [% FOR field IN additional_fields_for_subscription %] [% IF field.authorised_value_category %] - + [% ELSE %] - + [% END %] [% END %] @@ -174,7 +175,7 @@ Download selected claims @@ -185,11 +186,11 @@ - + [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt index b8131b1777..6b0b0bffeb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt @@ -9,7 +9,7 @@
          [% IF ( total ) %] -

          Search results from [% from %] to [% to %] of [% total %]

          +

          Search results from [% from | html %] to [% to | html %] of [% total | html %]

          [% biblioloo.title |html %][% biblioloo.title | html %]
          Pickup library DetailsToggle set to lowest priorityToggle set to lowest priority  
          - - - + + + @@ -574,20 +575,20 @@ [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] - - Go up + + Go up - - Go top + + Go top - - Go bottom + + Go bottom - - Go down + + Go down [% INCLUDE 'patron-title.inc' patron=reserveloo.patron hide_patron_infos_if_needed=1 %] [% reserveloo.notes %][% reserveloo.date %][% reserveloo.expirationdate %][% reserveloo.notes | html %][% reserveloo.date | html %][% reserveloo.expirationdate | html %] [% IF ( reserveloo.found ) %] [% IF ( reserveloo.atdestination ) %] [% IF ( reserveloo.found ) %] - Item waiting at [% reserveloo.wbrname %] since [% reserveloo.waiting_date | $KohaDates %] + Item waiting at [% reserveloo.wbrname | html %] since [% reserveloo.waiting_date | $KohaDates %] [% ELSE %] - Waiting to be pulled + Waiting to be pulled [% END %] [% ELSE %] - Item being transferred to [% reserveloo.wbrname %] + Item being transferred to [% reserveloo.wbrname | html %] [% END %] [% ELSE %] [% IF Koha.Preference('IndependentBranches') && Branches.all().size == 1 %] - [% Branches.GetName(reserveloo.branchcode) %] + [% Branches.GetName(reserveloo.branchcode) | html %] [% ELSE %] [% IF ( reserveloo.found ) %] - + [% IF ( reserveloo.barcodenumber ) %] - [% reserveloo.barcodenumber %] - + [% reserveloo.barcodenumber | html %] + [% ELSE %] No barcode [% END %] @@ -632,10 +633,10 @@ [% ELSE %] [% IF ( reserveloo.item_level_hold ) %] Only item - + [% IF ( reserveloo.barcodenumber ) %] - [% reserveloo.barcodenumber %] - + [% reserveloo.barcodenumber | html %] + [% ELSE %] No barcode [% END %] @@ -643,7 +644,7 @@ [% ELSE %] [% IF reserveloo.itemtype %] - Next available [% ItemTypes.GetDescription( reserveloo.itemtype ) %] item + Next available [% ItemTypes.GetDescription( reserveloo.itemtype ) | html %] item [% ELSE %] Next available [% END %] @@ -654,33 +655,33 @@ [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] - + [% IF ( reserveloo.lowestPriority ) %] - Unset lowest priority + Unset lowest priority [% ELSE %] - Set to lowest priority + Set to lowest priority [% END %] - - Cancel + + Cancel [% UNLESS ( reserveloo.found ) %] - + [% IF AutoResumeSuspendedHolds %] - - - Clear date + + + Clear date [% ELSE %] - + [% END %] [% ELSE %] @@ -716,14 +717,14 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'datatables.inc' %] [% INCLUDE 'calendar.inc' %] - [% Asset.js("js/circ-patron-search-results.js") %] + [% Asset.js("js/circ-patron-search-results.js") | $raw %] [% END %] -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/add_fields.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/add_fields.tt index d93cc20c31..25670589f8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/add_fields.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/add_fields.tt @@ -1,3 +1,4 @@ +[% USE raw %] [% USE Asset %] [% USE AuthorisedValues %] [% SET footerjs = 1 %] @@ -11,7 +12,7 @@ [% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -72,15 +73,15 @@
          [% field.name %][% field.authorised_value_category %][% field.marcfield %][% field.name | html %][% field.authorised_value_category | html %][% field.marcfield | html %] [% IF field.searchable %]Yes[% ELSE %]No[% END %] - Edit - Delete + Edit + Delete
          - + - [% subscriptions_loo.issn %] + [% subscriptions_loo.issn | html %] [% IF ( subscriptions_loo.title ) %] - [% subscriptions_loo.title |html %] + [% subscriptions_loo.title | html %] [% ELSE %] | [% END %] - [% Branches.GetName( subscriptions_loo.branchcode ) %] + [% Branches.GetName( subscriptions_loo.branchcode ) | html %] - [% subscriptions_loo.notes %] + [% subscriptions_loo.notes | html %] - [% subscriptions_loo.internalnotes %] + [% subscriptions_loo.internalnotes | html %] [% subscriptions_loo.expirationdate | $KohaDates %] - Edit - Renew + Edit + Renew
          Claims count Claim date[% field.name %][% field.name | html %]
          [% UNLESS missingissue.cannot_claim %] - + [% END %] [% missingissue.name %][% missingissue.name | html %] - [% Branches.GetName( missingissue.branchcode ) %] + [% Branches.GetName( missingissue.branchcode ) | html %] - [% missingissue.title |html %] + [% missingissue.title | html %] [% missingissue.issn %][% missingissue.serialseq %][% missingissue.issn | html %][% missingissue.serialseq | html %] [% IF ( missingissue.status1 ) %]Expected[% END %] [% IF ( missingissue.status3 ) %]Late[% END %] @@ -145,24 +146,24 @@ [% IF ( missingissue.planneddate ) %] - [% missingissue.planneddate %] + [% missingissue.planneddate | html %] [% ELSE %] [% END %] [% missingissue.claims_count %][% missingissue.claims_count | html %] [% IF ( missingissue.claimdate ) %] - [% missingissue.claimdate %] + [% missingissue.claimdate | html %] [% ELSE %] [% END %] [% AuthorisedValues.GetByCode( field.authorised_value_category, missingissue.additional_fields.${field.name} ) %][% AuthorisedValues.GetByCode( field.authorised_value_category, missingissue.additional_fields.${field.name} ) | html %][% missingissue.additional_fields.${field.name} %][% missingissue.additional_fields.${field.name} | html %]
          @@ -21,28 +21,28 @@ [% FOREACH resultsloo IN resultsloop %] - - + [% END %]
          Title
          [% resultsloo.title |html %] [% resultsloo.subtitle |html %] + [% resultsloo.title | html %] [% resultsloo.subtitle | html %] - [% resultsloo.author |html %] + [% resultsloo.author | html %] - [% resultsloo.publishercode |html %] + [% resultsloo.publishercode | html %] - [% resultsloo.publicationyear |html %] + [% resultsloo.publicationyear | html %] - [% resultsloo.issn |html %] + [% resultsloo.issn | html %] ChooseChoose
          [% ELSE %]
          -

          No results found for [% query %]

          +

          No results found for [% query | html %]

          [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt index 5739534fba..98f7548489 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt @@ -12,10 +12,10 @@ - + - + @@ -23,15 +23,15 @@ [% FOREACH memberloo IN memberloop %] - + [% END %]

          [% libraryname %]

          [% libraryname | html %]

          Title: [% title |html %]
          [% issue %]
          Title: [% title | html %]
          [% issue | html %]
          Name
          [% memberloo.name %][% memberloo.name | html %]  
          -

          [% generalroutingnote %]

          -

          [% routingnotes %]

          +

          [% generalroutingnote | html %]

          +

          [% routingnotes | html %]

          diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tt index 7fb8410b1b..cf956e2afa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tt @@ -8,7 +8,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'serials-search.inc' %] - +
          @@ -16,21 +16,21 @@
          -

          Preview routing list for [% title |html %]

          +

          Preview routing list for [% title | html %]

          - - + +
            -
          1. Issue:[% issue %]
          2. +
          3. Issue:[% issue | html %]
          4. List member: [% FOREACH memberloo IN memberloop %] - + [% END %]
            Name
            [% memberloo.surname %], [% memberloo.firstname %]
            [% memberloo.surname | html %], [% memberloo.firstname | html %]
          5. -
          6. Notes:[% routingnotes %]
          7. +
          8. Notes:[% routingnotes | html %]
          diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt index f42656a264..3b9083dded 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt @@ -1,13 +1,13 @@ [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Serials › [% title |html %] › [% IF ( op ) %]Create routing list[% ELSE %]Edit routing list[% END %] +Koha › Serials › [% title | html %] › [% IF ( op ) %]Create routing list[% ELSE %]Edit routing list[% END %] [% INCLUDE 'doc-head-close.inc' %] [% INCLUDE 'header.inc' %] [% INCLUDE 'serials-search.inc' %] - +
          @@ -17,22 +17,22 @@ [% IF ( op ) %] -

          Create routing list for [% title |html %]

          +

          Create routing list for [% title | html %]

          [% ELSE %] -

          Edit routing list for [% title |html %]

          +

          Edit routing list for [% title | html %]

          [% END %] - +
          1. [% issue %]
          2. + [% issue | html %]
          3. Recipients: @@ -44,20 +44,20 @@ [% USE m_loop = iterator(memberloop) %] [% FOREACH member IN m_loop %] - [% member.name %] + [% member.name | html %] - + [% rankings = [1 .. m_loop.size] | html %] [% FOREACH r IN rankings %] [% IF r == member.ranking %] - + [% ELSE %] - + [% END %] [% END %] - Delete + Delete [% END %] @@ -66,12 +66,12 @@

            Add recipients [% IF memberloop %] - Delete all + Delete all [% END %]

          4. -
          5. +
          @@ -114,7 +114,7 @@ } function add_user(borrowernumber) { - var myurl = "routing.pl?subscriptionid="+[% subscriptionid %]+"&borrowernumber="+borrowernumber+"&op=add"; + var myurl = "routing.pl?subscriptionid="+[% subscriptionid | html %]+"&borrowernumber="+borrowernumber+"&op=add"; window.location.href = myurl; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt index 8ba726417a..8bee8c4ae2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt @@ -1,19 +1,20 @@ +[% USE raw %] [% USE Asset %] [% USE AuthorisedValues %] [% USE Branches %] [% USE KohaDates %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Serials › Serial collection information for [% bibliotitle %] +Koha › Serials › Serial collection information for [% bibliotitle | html %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] [% INCLUDE 'header.inc' %] [% INCLUDE 'serials-search.inc' %] - +
          @@ -26,9 +27,9 @@ [% UNLESS ( popup ) %] [% INCLUDE 'serials-toolbar.inc' %] -

          Serial collection information for [% bibliotitle %] - [% IF location %] ([% AuthorisedValues.GetByCode( 'LOC', location ) %]) [% END %] - [% IF ( callnumber ) %]callnumber: [% callnumber %][% END %]

          +

          Serial collection information for [% bibliotitle | html %] + [% IF location %] ([% AuthorisedValues.GetByCode( 'LOC', location ) | html %]) [% END %] + [% IF ( callnumber ) %]callnumber: [% callnumber | html %][% END %]

          [% END %] [% IF ( subscriptions ) %] @@ -49,12 +50,12 @@ [% FOREACH subscription IN subscriptions %] - # [% subscription.subscriptionid %] - [% subscription.frequency.description %] - [% subscription.numberpattern.label %] - [% IF subscription.branchcode %][% Branches.GetName( subscription.branchcode ) %][% END %] - [% subscription.callnumber %] - [% subscription.notes %] + # [% subscription.subscriptionid | html %] + [% subscription.frequency.description | html %] + [% subscription.numberpattern.label | html %] + [% IF subscription.branchcode %][% Branches.GetName( subscription.branchcode ) | html %][% END %] + [% subscription.callnumber | html %] + [% subscription.notes | html %] [% UNLESS subscription.closed %] [% IF ( subscription.subscriptionexpired ) %]
          Subscription expired @@ -67,14 +68,14 @@ [% UNLESS subscription.closed %] [% IF ( routing && CAN_user_serials_routing ) %] [% IF ( subscription.hasRouting ) %] - Edit routing list + Edit routing list [% ELSE %] - Create routing list + Create routing list [% END %] [% END %] - [% IF ( subscription.abouttoexpire ) %] Renew + [% IF ( subscription.abouttoexpire ) %] Renew [% ELSE %] - [% IF ( subscription.subscriptionexpired ) %] Renew + [% IF ( subscription.subscriptionexpired ) %] Renew [% ELSE %]   [% END %] @@ -87,7 +88,7 @@ [% END %] [% IF ( subscr ) %] [% IF ( subscriptioncount > 1 ) %] - See any subscription attached to this biblio + See any subscription attached to this biblio [% END %] [% END %] @@ -103,19 +104,19 @@ [% IF year.year == 'manage' %]
        • Manage
        • [% ELSE %] -
        • [% year.year %]
        • +
        • [% year.year | html %]
        • [% END %] [% END %] [% END %]
        [% FOREACH year IN years %] -
        +
        [% IF ( CAN_user_serials_receive_serials ) %]

        [% UNLESS subscription.closed %] -
        +
        [% IF ( subscriptions.size == 1 and !serialsadditems ) %] 
        [% END %] @@ -123,10 +124,10 @@

        [% END %] - Select all + Select all | - Clear all + Clear all @@ -161,22 +162,22 @@ disabled [% ELSE %] [% IF ( serial.subscriptionexpired ) %] - + [% ELSE %] [% IF ( serial.checked ) %] - + [% ELSE %] - + [% END %] [% END %] [% END %] [% END %] [% IF ( subscriptions.size > 1 ) %] - + [% END %] [% IF ( routing ) %] [% END %] @@ -252,7 +253,7 @@
        [% serial.subscriptionid %][% serial.subscriptionid | html %] - + [% IF serial.publisheddate %] [% serial.publisheddate | $KohaDates %] [% ELSE %] @@ -186,13 +187,13 @@ [% IF serial.publisheddatetext %] - - [% serial.publisheddatetext %] + + [% serial.publisheddatetext | html %] [% END %] - + [% IF serial.planneddate %] [% serial.planneddate | $KohaDates %] [% ELSE %] @@ -202,23 +203,23 @@ [% IF ( matches = serial.serialseq.match('(.*)Spring(.*)') ) %] - [% matches.0 %]Spring[% matches.1 %] + [% matches.0 | html %]Spring[% matches.1 | html %] [% ELSIF ( matches = serial.serialseq.match('(.*)Summer(.*)') ) %] - [% matches.0 %]Summer[% matches.1 %] + [% matches.0 | html %]Summer[% matches.1 | html %] [% ELSIF ( matches = serial.serialseq.match('(.*)Fall(.*)') ) %] - [% matches.0 %]Fall[% matches.1 %] + [% matches.0 | html %]Fall[% matches.1 | html %] [% ELSIF ( matches = serial.serialseq.match('(.*)Winter(.*)') ) %] - [% matches.0 %]Winter[% matches.1 %] + [% matches.0 | html %]Winter[% matches.1 | html %] [% ELSIF ( matches = prediction.number.match('(.*)Spr(.*)') ) %] - [% matches.0 %]Spr[% matches.1 %] + [% matches.0 | html %]Spr[% matches.1 | html %] [% ELSIF ( matches = prediction.number.match('(.*)Sum(.*)') ) %] - [% matches.0 %]Sum[% matches.1 %] + [% matches.0 | html %]Sum[% matches.1 | html %] [% ELSIF ( matches = prediction.number.match('(.*)Fal(.*)') ) %] - [% matches.0 %]Fal[% matches.1 %] + [% matches.0 | html %]Fal[% matches.1 | html %] [% ELSIF ( matches = prediction.number.match('(.*)Win(.*)') ) %] - [% matches.0 %]Win[% matches.1 %] + [% matches.0 | html %]Win[% matches.1 | html %] [% ELSE %] - [% serial.serialseq %] + [% serial.serialseq | html %] [% END %] @@ -236,14 +237,14 @@ [% IF ( serial.status8 ) %]Stopped[% END %] - [% serial.notes %] + [% serial.notes | html %] - [% Branches.GetName( serial.branchcode ) %] + [% Branches.GetName( serial.branchcode ) | html %] - Print list + Print list
        [% END %] - +
        @@ -269,13 +270,13 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("js/serials-toolbar.js") %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("js/serials-toolbar.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] - [% Asset.js("js/serials-toolbar.js") %] + [% Asset.js("js/serials-toolbar.js") | $raw %] - [% Asset.js("js/subscription-add.js") %] - [% Asset.js("js/showpredictionpattern.js") %] + [% Asset.js("js/subscription-add.js") | $raw %] + [% Asset.js("js/showpredictionpattern.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-batchedit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-batchedit.tt index ccd899a141..b2e72a81f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-batchedit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-batchedit.tt @@ -46,15 +46,15 @@ [% FOREACH subscription IN subscriptions %] - [% subscription.biblio.biblioitem.issn %] - [% subscription.biblio.title %] (#[% subscription.subscriptionid %]) - [% subscription.vendor.name |html %] - [% AuthorisedValues.GetByCode('LOC', subscription.location) %] - [% Branches.GetName(subscription.branchcode) %] - [% ItemTypes.GetDescription( subscription.itemtype ) %] - [% subscription.notes %] - [% subscription.internalnotes %] - [% subscription.callnumber %] + [% subscription.biblio.biblioitem.issn | html %] + [% subscription.biblio.title | html %] (#[% subscription.subscriptionid | html %]) + [% subscription.vendor.name | html %] + [% AuthorisedValues.GetByCode('LOC', subscription.location) | html %] + [% Branches.GetName(subscription.branchcode) | html %] + [% ItemTypes.GetDescription( subscription.itemtype ) | html %] + [% subscription.notes | html %] + [% subscription.internalnotes | html %] + [% subscription.callnumber | html %] [% IF subscription.serialsadditems %] Yes @@ -71,10 +71,10 @@
        [% FOREACH subscription IN subscriptions %] - + [% END %] [% IF referrer %] - + [% END %]
          @@ -83,7 +83,7 @@ @@ -92,7 +92,7 @@ @@ -101,7 +101,7 @@ @@ -110,7 +110,7 @@ @@ -137,16 +137,16 @@ [% FOREACH field IN additional_fields %]
        1. - + [% IF field.authorised_value_category %] - [% FOREACH av IN AuthorisedValues.Get(field.authorised_value_category) %] - + [% END %] [% ELSE %] - + [% END %]
        2. [% END %] @@ -155,7 +155,7 @@
          - Cancel + Cancel
      • diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt index fc710c9f8b..59a88ecc00 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt @@ -24,8 +24,8 @@ @@ -36,8 +36,8 @@ @@ -50,4 +50,4 @@ -[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' popup_window=1 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt index ac4b8f8a83..7f8b219aad 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt @@ -1,10 +1,11 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE Branches %] [% USE AuthorisedValues %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Serials › Details for subscription #[% subscriptionid %] +Koha › Serials › Details for subscription #[% subscriptionid | html %] [% INCLUDE 'doc-head-close.inc' %] @@ -12,7 +13,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'serials-search.inc' %] - +
        @@ -21,10 +22,10 @@
        [% INCLUDE 'serials-toolbar.inc' %] -

        Subscription for [% bibliotitle%] [% IF closed %](closed)[% END %]

        +

        Subscription for [% bibliotitle | html %] [% IF closed %](closed)[% END %]

        [% IF ( abouttoexpire ) %] [% UNLESS closed %] -
        Subscription will expire [% enddate %]. Renew this subscription.
        +
        Subscription will expire [% enddate | html %]. Renew this subscription.
        [% END %] [% END %] [% IF ( NEEDSCONFIRMATION ) %] @@ -37,13 +38,13 @@ [% IF ( LINKEDITEMS ) %]
      • The subscription has linked items
        Those items won't be deleted
      • [% END %]
      - +
      - +
      @@ -63,17 +64,17 @@
        -
      1. Subscription ID: [% subscriptionid %]
      2. -
      3. Librarian identity: [% librarian %]
      4. -
      5. Vendor: [% aqbooksellername |html %]
      6. -
      7. Biblio: [% bibliotitle %] ([% bibnum %])
      8. +
      9. Subscription ID: [% subscriptionid | html %]
      10. +
      11. Librarian identity: [% librarian | html %]
      12. +
      13. Vendor: [% aqbooksellername | html %]
      14. +
      15. Biblio: [% bibliotitle | html %] ([% bibnum | html %])
      16. [% IF ( OPACBaseURL ) %]
      17. OPAC view: - Open in new window. + Open in new window.
      18. [% END %] -[% IF ( branchcode ) %]
      19. Library: [% Branches.GetName( branchcode ) %]
      20. [% END %] +[% IF ( branchcode ) %]
      21. Library: [% Branches.GetName( branchcode ) | html %]
      22. [% END %] [% IF ( serialsadditems ) %]
      23. Items: Serial receipt creates an item record.
      24. [% ELSE %] @@ -87,21 +88,21 @@ Serial number is kept when an irregularity is found. [% END %] -
      25. Grace period: [% graceperiod %]
      26. +
      27. Grace period: [% graceperiod | html %]
        - [% IF ( location ) %]
      1. Location: [% location %]
      2. [% END %] - [% IF ( callnumber ) %]
      3. Call number: [% callnumber |html %]
      4. [% END %] - [% IF ( staffdisplaycount ) %]
      5. Number of issues to display to staff:[% staffdisplaycount %]
      6. [% END %] - [% IF ( opacdisplaycount ) %]
      7. Number of issues to display in OPAC:[% opacdisplaycount %]
      8. [% END %] + [% IF ( location ) %]
      9. Location: [% location | html %]
      10. [% END %] + [% IF ( callnumber ) %]
      11. Call number: [% callnumber | html %]
      12. [% END %] + [% IF ( staffdisplaycount ) %]
      13. Number of issues to display to staff:[% staffdisplaycount | html %]
      14. [% END %] + [% IF ( opacdisplaycount ) %]
      15. Number of issues to display in OPAC:[% opacdisplaycount | html %]
      16. [% END %] [% IF ( letter ) %]
      17. - Patron notification: [% letter %] - (subscribers) + Patron notification: [% letter | html %] + (subscribers)
      18. [% END %] [% IF ( hasRouting ) %]
      19. Routing: yes
      20. [% END %] @@ -118,11 +119,11 @@
          [% FOR field IN additional_fields_for_subscription %]
        1. - [% field.name %]: + [% field.name | html %]: [% IF field.authorised_value_category %] - [% AuthorisedValues.GetByCode( field.authorised_value_category, additional_fields.${field.name} ) %] + [% AuthorisedValues.GetByCode( field.authorised_value_category, additional_fields.${field.name} ) | html %] [% ELSE %] - [% additional_fields.${field.name} %] + [% additional_fields.${field.name} | html %] [% END %]
        2. [% END %] @@ -137,64 +138,64 @@
            -
          1. Beginning date: [% startdate %] +
          2. Beginning date: [% startdate | html %]
          3. Frequency: - [% frequency.description %] + [% frequency.description | html %]
          4. Manual history: [% IF ( manualhistory ) %] - Enabled Edit history + Enabled Edit history [% ELSE %] Disabled [% END %]
          5. Number pattern: - [% numberpattern.label %] + [% numberpattern.label | html %]
          6. [% IF (has_X) %] - + [% END %] [% IF (has_Y) %] - + [% END %] [% IF (has_Z) %] - + [% END %] [% IF (has_X) %] - + [% END %] [% IF (has_Y) %] - + [% END %] [% IF (has_Z) %] - + [% END %]
            Starting with:[% lastvalue1 %][% lastvalue1 | html %][% lastvalue2 %][% lastvalue2 | html %][% lastvalue3 %][% lastvalue3 | html %]
            Rollover:[% numberpattern.whenmorethan1 %][% numberpattern.whenmorethan1 | html %][% numberpattern.whenmorethan2 %][% numberpattern.whenmorethan2 | html %][% numberpattern.whenmorethan3 %][% numberpattern.whenmorethan3 | html %]
          7. [% IF ( irregular_issues ) %] -
          8. Irregularity: [% irregular_issues %] issues +
          9. Irregularity: [% irregular_issues | html %] issues
          10. [% END %] -
          11. First arrival: [% firstacquidate %] +
          12. First arrival: [% firstacquidate | html %]
          13. - [% IF ( numberlength ) %]
          14. Number of issues: [% numberlength %]
          15. [% END %] - [% IF ( weeklength ) %]
          16. Number of weeks: [% weeklength %]
          17. [% END %] - [% IF ( monthlength ) %]
          18. Number of months: [% monthlength %]
          19. [% END %] + [% IF ( numberlength ) %]
          20. Number of issues: [% numberlength | html %]
          21. [% END %] + [% IF ( weeklength ) %]
          22. Number of weeks: [% weeklength | html %]
          23. [% END %] + [% IF ( monthlength ) %]
          24. Number of months: [% monthlength | html %]
          25. [% END %]
      @@ -265,24 +266,24 @@ [% FOREACH serialslis IN serialslist %] - [% serialslis.serialseq %] + [% serialslis.serialseq | html %] [% IF serialslis.planneddate %] - [% serialslis.planneddate %] + [% serialslis.planneddate | html %] [% ELSE %] Unknown [% END %] [% IF serialslis.publisheddate %] - [% serialslis.publisheddate %] + [% serialslis.publisheddate | html %] [% ELSE %] Unknown [% END %] - [% serialslis.publisheddatetext %] + [% serialslis.publisheddatetext | html %] [% IF ( serialslis.status1 ) %]Expected[% END %] @@ -298,7 +299,7 @@ [% IF ( serialslis.status7 ) %] Claimed [% IF ( serialslis.claimdate ) %] - [% serialslis.claimdate %] + [% serialslis.claimdate | html %] [% END %] [% END %] [% IF ( serialslis.status8 ) %]Stopped[% END %] @@ -311,16 +312,16 @@
        -
      1. Start date: [% startdate %]
      2. -
      3. End date: [% enddate %]
      4. -
      5. History start date: [% histstartdate %]
      6. -
      7. History end date: [% histenddate %]
      8. -
      9. Received issues:[% recievedlist %]
      10. -
      11. Missing issues:[% missinglist %]
      12. -
      13. Nonpublic note:[% internalnotes FILTER html_line_break |html %]
      14. -
      15. Public note:[% notes FILTER html_line_break |html %]
      16. -
      17. History staff note:[% librariannote FILTER html_line_break %]
      18. -
      19. History OPAC note:[% opacnote FILTER html_line_break %]
      20. +
      21. Start date: [% startdate | html %]
      22. +
      23. End date: [% enddate | html %]
      24. +
      25. History start date: [% histstartdate | html %]
      26. +
      27. History end date: [% histenddate | html %]
      28. +
      29. Received issues:[% recievedlist | html %]
      30. +
      31. Missing issues:[% missinglist | html %]
      32. +
      33. Nonpublic note:[% internalnotes FILTER html_line_break | html %]
      34. +
      35. Public note:[% notes FILTER html_line_break | html %]
      36. +
      37. History staff note:[% librariannote FILTER html_line_break | html %]
      38. +
      39. History OPAC note:[% opacnote FILTER html_line_break | html %]
      @@ -337,23 +338,23 @@ Ordered amount - [% value_tax_excluded_ordered %] - [% value_tax_included_ordered %] - [% budget_name_ordered %] + [% value_tax_excluded_ordered | html %] + [% value_tax_included_ordered | html %] + [% budget_name_ordered | html %] [% IF ( ordered_exists ) %] - See basket information + See basket information [% END %] Spent amount - [% value_tax_excluded_spent %] - [% value_tax_included_spent %] - [% budget_name_spent %] + [% value_tax_excluded_spent | html %] + [% value_tax_included_spent | html %] + [% budget_name_spent | html %] [% IF ( spent_exists ) %] - See invoice information + See invoice information [% END %] @@ -374,12 +375,12 @@ [% MACRO jsinclude BLOCK %] - [% Asset.js("js/serials-toolbar.js") %] + [% Asset.js("js/serials-toolbar.js") | $raw %] [% END %] - [% Asset.js("js/acq.js") %] - [% Asset.js("js/acquisitions-menu.js") %] + [% Asset.js("js/acq.js") | $raw %] + [% Asset.js("js/acquisitions-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] - diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt index e1ced5b598..648a846ec0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt @@ -1,9 +1,10 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Tags › [% IF ( do_it ) %]Review › [% ELSE %]Review tags[% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -12,14 +13,14 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] - +
      [% IF ( titles ) %] -

      Titles tagged with the term [% tag %]

      +

      Titles tagged with the term [% tag | html %]

      @@ -29,35 +30,35 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : [% FOREACH title IN titles %] - - + [% END %]
      Title
      [% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title |html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield %][% END %] - [% title.author %] -

      [% IF ( title.publishercode ) %]- [% title.publishercode|html %] - [% IF ( title.place ) %] [% title.place %][% END %][% END %] - [% IF ( title.pages ) %] - [% title.pages %][% IF ( title.size ) %] [% title.size %] +

      [% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title | html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield | html %][% END %] + [% title.author | html %] +

      [% IF ( title.publishercode ) %]- [% title.publishercode | html %] + [% IF ( title.place ) %] [% title.place | html %][% END %][% END %] + [% IF ( title.pages ) %] - [% title.pages | html %][% IF ( title.size ) %] [% title.size | html %] [% END %] [% END %]

      [% IF ( title.notes ) %] -

      [% title.notes |html%]

      [% END %] +

      [% title.notes | html %]

      [% END %] [% IF ( title.TagLoop ) %]

      Tagged with: [% FOREACH TagLoo IN title.TagLoop %] - [% TagLoo.term |html %] ([% TagLoo.weight_total %])[% IF ( loop.last ) %][% ELSE %], [% END %] + [% TagLoo.term | html %] ([% TagLoo.weight_total | html %])[% IF ( loop.last ) %][% ELSE %], [% END %] [% END %]

      [% END %]
      [% IF ( title.items ) %]
        [% FOREACH item IN title.items %]
      • - [% item.branchname %] [% item.location_description %] + [% item.branchname | html %] [% item.location_description | html %] [% IF ( item.itemcallnumber ) %] - ([% item.itemcallnumber %]) + ([% item.itemcallnumber | html %]) [% END %]
      • [% END %]
      [% ELSE %]This record has no items.[% END %]
      [% ELSE %] -
      There are no titles tagged with the term [% tag %]
      +
      There are no titles tagged with the term [% tag | html %]
      [% END %]
      diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt index d2e5167601..f783f4805a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt @@ -1,10 +1,11 @@ +[% USE raw %] [% USE Asset %] [% USE KohaDates %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Tags › [% IF ( do_it ) %]Review › [% ELSE %]Review tags[% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -73,13 +74,13 @@
      - - + + - + [% IF biblionumber %] - + [% END %] [% IF ( item_loop ) %] @@ -88,7 +89,7 @@

      Show/hide columns: [% FOREACH item_header_loo IN item_header_loop %] - + [% END %]

      @@ -98,14 +99,14 @@ [% IF ( show ) %] [% END %] Title [% FOREACH item_header_loo IN item_header_loop %] - [% item_header_loo.header_value %] + [% item_header_loo.header_value | html %] [% END %] - [% FOREACH item_loo IN item_loop %] [% IF ( show ) %][% IF ( item_loo.nomod ) %] Cannot edit[% ELSE %][% END %][% END %] - - [% FOREACH item_valu IN item_loo.item_value %] [% item_valu.field |html %] + [% FOREACH item_loo IN item_loop %] [% IF ( show ) %][% IF ( item_loo.nomod ) %] Cannot edit[% ELSE %][% END %][% END %] + + [% FOREACH item_valu IN item_loo.item_value %] [% item_valu.field | html %] [% END %] [% END %] @@ -117,7 +118,7 @@ @@ -127,15 +128,15 @@ [% IF ( show ) %] [% IF ( too_many_items ) %] -

      Too many items ([% too_many_items %]) to display individually.

      +

      Too many items ([% too_many_items | html %]) to display individually.

      [% FOREACH itemnumber IN itemnumbers_array %] - + [% END %] [% END %] [% IF ( itemresults ) %]
      - +

      This will delete [% IF ( too_many_items ) %]all the[% ELSE %]the selected[% END %] items.

      @@ -158,19 +159,19 @@ [% IF ( action ) %]
      -

      [% deleted_items %] item(s) deleted.

      - [% IF delete_records %]

      [% deleted_records %] record(s) deleted.

      [% END %] +

      [% deleted_items | html %] item(s) deleted.

      + [% IF delete_records %]

      [% deleted_records | html %] record(s) deleted.

      [% END %] [% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%] - Return to the record + Return to the record [% ELSIF src %] - Return to where you were + Return to where you were [% ELSE %] Return to batch item deletion [% END %]
      [% IF ( not_deleted_items ) %]
      -

      [% not_deleted_items %] item(s) could not be deleted: [% FOREACH not_deleted_itemnumber IN not_deleted_itemnumbers %][% not_deleted_itemnumber.itemnumber %][% END %]

      +

      [% not_deleted_items | html %] item(s) could not be deleted: [% FOREACH not_deleted_itemnumber IN not_deleted_itemnumbers %][% not_deleted_itemnumber.itemnumber | html %][% END %]

      [% IF ( not_deleted_loop ) %] @@ -183,8 +184,8 @@ [% FOREACH not_deleted_loo IN not_deleted_loop %] - - + + [% END %] @@ -196,9 +197,9 @@

      [% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%] - Return to the record + Return to the record [% ELSIF src %] - Return to where you were + Return to where you were [% ELSE %] Return to batch item deletion [% END %] @@ -207,14 +208,14 @@ [% MACRO jsinclude BLOCK %] - [% Asset.js("js/tools-menu.js") %] + [% Asset.js("js/tools-menu.js") | $raw %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("js/pages/batchMod.js") %] - [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] + [% Asset.js("js/pages/batchMod.js") | $raw %] + [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] [% END %] - [% Asset.js("lib/tiny_mce/tiny_mce.js") %] + [% Asset.js("lib/tiny_mce/tiny_mce.js") | $raw %] - [% Asset.js("js/letter.js") %] + [% Asset.js("js/letter.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt index cff595afcf..c29dafe931 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -1,13 +1,14 @@ +[% USE raw %] [% USE Asset %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Manage staged MARC records [% IF ( import_batch_id ) %] - › Batch [% import_batch_id %] + › Batch [% import_batch_id | html %] [% END %] [% INCLUDE 'doc-head-close.inc' %] -[% Asset.css("css/datatables.css") %] +[% Asset.css("css/datatables.css") | $raw %] @@ -247,9 +248,9 @@ [% MACRO jsinclude BLOCK %] - [% Asset.js("js/tools-menu.js") %] + [% Asset.js("js/tools-menu.js") | $raw %] [% INCLUDE 'datatables.inc' %] - [% Asset.js("js/file-upload.js") %] + [% Asset.js("js/file-upload.js") | $raw %] -[% Asset.js("js/datatables.js") %] \ No newline at end of file +[% Asset.js("js/datatables.js") | $raw %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc index 06eb4fc568..480b5a545e 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc @@ -1,58 +1,59 @@ +[% USE raw %] [%- USE KohaPlugins -%] [% USE Asset %] - + - + [% IF ( bidi ) %] - [% Asset.css("lib/bootstrap/css/bootstrap-rtl.min.css") %] + [% Asset.css("lib/bootstrap/css/bootstrap-rtl.min.css") | $raw %] [% ELSE %] - [% Asset.css("lib/bootstrap/css/bootstrap.min.css") %] + [% Asset.css("lib/bootstrap/css/bootstrap.min.css") | $raw %] [% END %] [% IF ( bidi ) %] - [% Asset.css("lib/jquery/jquery-ui-rtl.css") %] + [% Asset.css("lib/jquery/jquery-ui-rtl.css") | $raw %] [% ELSE %] - [% Asset.css("lib/jquery/jquery-ui.css") %] + [% Asset.css("lib/jquery/jquery-ui.css") | $raw %] [% END %] [% SET opaclayoutstylesheet='opac.css' UNLESS opaclayoutstylesheet %] [% IF (opaclayoutstylesheet.match('^https?:|^\/')) %] - + [% ELSE %] - [% Asset.css("css/" _ opaclayoutstylesheet) %] + [% Asset.css("css/" _ opaclayoutstylesheet) | $raw %] [% END %] [% IF ( OpacAdditionalStylesheet ) %] [% IF (OpacAdditionalStylesheet.match('^https?:|^\/')) %] - + [% ELSE %] - + [% END %] [% END %] [% IF ( opac_css_override ) %] - + [% END %] -[% Asset.css("css/print.css", { media = "print" }) %] +[% Asset.css("css/print.css", { media = "print" }) | $raw %] [% IF ( bidi ) %] - [% Asset.css("css/right-to-left.css") %] + [% Asset.css("css/right-to-left.css") | $raw %] [% END %] -[% IF ( OPACUserCSS ) %][% END %] +[% IF ( OPACUserCSS ) %][% END %] [% IF SCO_login %] [% SET SCOUserCSS = Koha.Preference('SCOUserCSS') %] [% IF SCOUserCSS %] - + [% END %] [% END %] - + [% PROCESS cssinclude %] -[% Asset.js("lib/modernizr.min.js") %] -[% Asset.css("lib/font-awesome/css/font-awesome.min.css") %] +[% Asset.js("lib/modernizr.min.js") | $raw %] +[% Asset.css("lib/font-awesome/css/font-awesome.min.css") | $raw %] [% PROCESS 'html_helpers.inc' %] -[% KohaPlugins.get_plugins_opac_head %] +[% KohaPlugins.get_plugins_opac_head | html %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc index 06e68a3688..292b7251c4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc @@ -1,5 +1,5 @@ - + [% USE Koha %] [% IF Koha.Preference('DumpTemplateVarsOpac') %] @@ -9,7 +9,7 @@ ', '- ->') %] - [% Dumper.dump( Stash.stash() ) %] + [% Dumper.dump( Stash.stash() ) | html %] [% END %] [% END %] --> @@ -21,5 +21,5 @@ [% END %] [% END %] -[% IF ( bidi ) %][% ELSE %][% END %] +[% IF ( bidi ) %][% ELSE %][% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/greybox.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/greybox.inc index 44ea957a5c..2c303db698 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/greybox.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/greybox.inc @@ -1,8 +1,9 @@ +[% USE raw %] [% USE Asset %] -[% Asset.js("lib/greybox/AJS.js") %] -[% Asset.js("lib/greybox/AJS_fx.js") %] -[% Asset.js("lib/greybox/gb_scripts.js") %] -[% Asset.css("lib/greybox/gb_styles.css") %] +[% Asset.js("lib/greybox/AJS.js") | $raw %] +[% Asset.js("lib/greybox/AJS_fx.js") | $raw %] +[% Asset.js("lib/greybox/gb_scripts.js") | $raw %] +[% Asset.css("lib/greybox/gb_styles.css") | $raw %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc index 1d383828b5..2c7d34934b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc @@ -1,9 +1,9 @@ [% BLOCK options_for_libraries %] [% FOREACH l IN libraries %] [% IF l.selected %] - + [% ELSE %] - + [% END%] [% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc index 7fd4fd2869..55474da7a8 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc @@ -8,9 +8,9 @@ [% IF ( item.itemlost ) %] [% SET itemavailable = 0 %] - [% av_lib_include = AuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %] + [% av_lib_include = AuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) | html %] [% IF ( av_lib_include ) %] - [% av_lib_include %] + [% av_lib_include | html %] [% ELSE %] Item lost [% END %] @@ -27,13 +27,13 @@ [% SET itemavailable = 0 %] [% IF onsite_checkout %] [% IF ( OPACShowCheckoutName ) %] - Currently in local use by [% item.firstname %] [% item.surname %] [% IF ( item.cardnumber ) %]([% item.cardnumber %])[% END %] + Currently in local use by [% item.firstname | html %] [% item.surname | html %] [% IF ( item.cardnumber ) %]([% item.cardnumber | html %])[% END %] [% ELSE %] Currently in local use [% END %] [% ELSE %] [% IF ( OPACShowCheckoutName ) %] - Checked out to [% item.firstname %] [% item.surname %] [% IF ( item.cardnumber ) %]([% item.cardnumber %])[% END %] + Checked out to [% item.firstname | html %] [% item.surname | html %] [% IF ( item.cardnumber ) %]([% item.cardnumber | html %])[% END %] [% ELSE %] Checked out [% END %] @@ -42,8 +42,8 @@ [% IF NOT ( item.isa('Koha::Item') ) AND item.transfertwhen %] [%# transfertwhen is set in C4::Search, do not have it for course reserves %] [% SET itemavailable = 0 %] - In transit from [% Branches.GetName( item.transfertfrom ) %] - to [% Branches.GetName( item.transfertto ) %] since [% item.transfertwhen | $KohaDates %] + In transit from [% Branches.GetName( item.transfertfrom ) | html %] + to [% Branches.GetName( item.transfertto ) | html %] since [% item.transfertwhen | $KohaDates %] [% END %] [% IF NOT( item.isa('Koha::Item') ) AND item.waiting %] [%# Not sure where does come from this waiting flag %] @@ -53,9 +53,9 @@ [% IF ( item.withdrawn ) %] [% SET itemavailable = 0 %] - [% av_lib_include = AuthorisedValues.GetByCode( 'WITHDRAWN', item.withdrawn, 1 ) %] + [% av_lib_include = AuthorisedValues.GetByCode( 'WITHDRAWN', item.withdrawn, 1 ) | html %] [% IF av_lib_include %] - [% av_lib_include %] + [% av_lib_include | html %] [% ELSE %] Item withdrawn [% END %] @@ -65,20 +65,20 @@ [% IF NOT ( item.isa('Koha::Item') ) AND item.itemnotforloan %] [% SET itemavailable = 0 %] [% IF ( item.notforloanvalueopac ) %] - [% item.notforloanvalueopac %] [% IF ( item.restrictedopac ) %]([% item.restrictedopac %])[% END %] + [% item.notforloanvalueopac | html %] [% IF ( item.restrictedopac ) %]([% item.restrictedopac | html %])[% END %] [% ELSE %] - Not for loan [% IF ( item.restrictedopac ) %]([% item.restrictedopac %])[% END %] + Not for loan [% IF ( item.restrictedopac ) %]([% item.restrictedopac | html %])[% END %] [% END %] [% ELSIF NOT ( item.isa('Koha::Item') ) AND item.notforloan_per_itemtype %] [% SET itemavailable = 0 %] - Not for loan [% IF ( item.restrictedopac ) %]([% item.restrictedopac %])[% END %] + Not for loan [% IF ( item.restrictedopac ) %]([% item.restrictedopac | html %])[% END %] [% END %] [% IF ( item.damaged ) %] [% SET itemavailable = 0 %] - [% av_lib_include = AuthorisedValues.GetByCode( 'DAMAGED', item.damaged, 1 ) %] + [% av_lib_include = AuthorisedValues.GetByCode( 'DAMAGED', item.damaged, 1 ) | html %] [% IF av_lib_include %] - [% av_lib_include %] + [% av_lib_include | html %] [% ELSE %] Item damaged [% END %] @@ -91,5 +91,5 @@ [% IF ( itemavailable ) %] [% IF NOT item.isa('Koha::Item') %][% SET restrictedopac = item.restrictedopac %][% END %] - Available [% IF restrictedopac %]([% restrictedopac %])[% END %] + Available [% IF restrictedopac %]([% restrictedopac | html %])[% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-langmenu.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-langmenu.inc index 4bd7b21541..e0723be281 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-langmenu.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-langmenu.inc @@ -9,18 +9,18 @@ [% FOREACH sublanguages_loo IN languages_loo.sublanguages_loop %] [% IF ( sublanguages_loo.enabled ) %] [% IF ( sublanguages_loo.sublanguage_current ) %] -

    • [% sublanguages_loo.native_description %] [% sublanguages_loo.script_description %] [% sublanguages_loo.region_description %] [% sublanguages_loo.variant_description %] 
    • +
    • [% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %] 
    • [% ELSE %] -
    • [% sublanguages_loo.native_description %] [% sublanguages_loo.script_description %] [% sublanguages_loo.region_description %] [% sublanguages_loo.variant_description %]
    • +
    • [% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %]
    • [% END %] [% END # / IF sublanguages_loo.enabled %] [% END # / FOREACH sublanguages_loo %] [% ELSE %] [% IF ( languages_loo.group_enabled ) %] [% IF ( languages_loo.current ) %] -
    • [% IF ( languages_loo.native_description ) %][% languages_loo.native_description %][% ELSE %][% languages_loo.rfc4646_subtag %][% END %] 
    • +
    • [% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %] 
    • [% ELSE %] -
    • [% IF ( languages_loo.native_description ) %][% languages_loo.native_description %][% ELSE %][% languages_loo.rfc4646_subtag %][% END %]
    • +
    • [% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %]
    • [% END %] [% END # / IF languages_loo.current %] [% END # / IF ( languages_loo.plural ) %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc index e2d707bdd3..5b18006415 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc @@ -1,10 +1,11 @@ +[% USE raw %] [% USE Koha %] [% SET OpacLangSelectorMode = Koha.Preference('OpacLangSelectorMode') %]
      [% FOREACH serialcollection IN serialcollections %] - - - + + + [% END %] @@ -633,26 +634,26 @@
      [% IF too_many_items %] -

      This record has many physical items ([% items_count %]). Click here to view them all.

      +

      This record has many physical items ([% items_count | html %]). Click here to view them all.

      [% ELSIF ( itemloop.size ) %] [% INCLUDE items_table items=itemloop tab="holdings" table_id="holdingst" %] [% IF Koha.Preference('OPACAcquisitionDetails') and acquisition_details.total_quantity > 0 %] [% IF acquisition_details.total_quantity == 1 %] 1 item is on order. [% ELSE %] - [% acquisition_details.total_quantity %] items are on order. + [% acquisition_details.total_quantity | html %] items are on order. [% END %] [% END %] [% IF holds_count.defined || priority %]
      [% IF holds_count.defined %] - Total holds: [% holds_count %] + Total holds: [% holds_count | html %] [% END %] [% IF priority %] [% IF holds_count.defined %] - (priority [% priority %]) + (priority [% priority | html %]) [% ELSE %] - Overall queue priority: [% priority %] + Overall queue priority: [% priority | html %] [% END %] [% END %]
      @@ -660,14 +661,14 @@ [% ELSE %] [% IF ( ALTERNATEHOLDINGS ) %] [% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %] -
      Holdings: [% ALTERNATEHOLDING.holding %]
      +
      Holdings: [% ALTERNATEHOLDING.holding | html %]
      [% END %] [% ELSE %] [% IF Koha.Preference('OPACAcquisitionDetails') and acquisition_details.total_quantity > 0 %] [% IF acquisition_details.total_quantity == 1 %] 1 item is on order. [% ELSE %] - [% acquisition_details.total_quantity %] items are on order. + [% acquisition_details.total_quantity | html %] items are on order. [% END %] [% ELSE %]
      No physical items for this record
      @@ -696,7 +697,7 @@ [% IF ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY ) %]

      Enhanced descriptions from Syndetics:

      -

      [% SYNDETICS_SUMMARY %]

      +

      [% SYNDETICS_SUMMARY | html %]

      [% END %] [% IF ( MARCNOTES ) %] @@ -704,16 +705,16 @@ [% FOREACH MARCNOTE IN MARCNOTES %]

      [% IF MARCNOTE.marcnote.match('^https?://\S+$') %] - [% MARCNOTE.marcnote %] + [% MARCNOTE.marcnote | html %] [% ELSE %] - [% MARCNOTE.marcnote FILTER html_line_break %] + [% MARCNOTE.marcnote FILTER html_line_break | html %] [% END %]

      [% END %]
      [% ELSE %] [% IF ( notes ) %] -

      [% notes %]

      +

      [% notes | html %]

      [% END %] [% END %] @@ -728,7 +729,7 @@

      Table of contents provided by Syndetics

        [% FOREACH SYNDETICS_TO IN SYNDETICS_TOC %] -
      • [% SYNDETICS_TO.l %] [% SYNDETICS_TO.t %][% IF ( SYNDETICS_TO.p ) %] ([% SYNDETICS_TO.p %])[% END %]
      • +
      • [% SYNDETICS_TO.l | html %] [% SYNDETICS_TO.t | html %][% IF ( SYNDETICS_TO.p ) %] ([% SYNDETICS_TO.p | html %])[% END %]
      • [% END %]
      @@ -739,7 +740,7 @@

      Excerpt provided by Syndetics

      - [% SYNDETICS_EXCERPT %] + [% SYNDETICS_EXCERPT | html %]
      [% END # / IF SyndeticsExcerpt && SYNDETICS_EXCERPT %] @@ -750,11 +751,11 @@

      Reviews provided by Syndetics

      [% FOREACH SYNDETICS_REVIEW IN SYNDETICS_REVIEWS %] [% IF ( SYNDETICS_REVIEW.title ) %] -

      [% SYNDETICS_REVIEW.title %]

      +

      [% SYNDETICS_REVIEW.title | html %]

      [% FOREACH review IN SYNDETICS_REVIEW.reviews %] [% IF ( review.content ) %] - [% review.content %] + [% review.content | html %] [% END %] [% END %] @@ -770,7 +771,7 @@

      Author notes provided by Syndetics

      [% FOREACH SYNDETICS_ANOTE IN SYNDETICS_ANOTES %] [% IF ( SYNDETICS_ANOTE.content ) %] - [% SYNDETICS_ANOTE.content %] + [% SYNDETICS_ANOTE.content | html %] [% END %] [% END %] @@ -780,51 +781,51 @@ [% IF ( NovelistSelectProfile && NovelistSelectView == 'tab' && (normalized_isbn || normalized_upc) ) %]
      -
      +
      [% END # / IF NovelistSelectProfile && NovelistSelectView == 'tab' %] [% IF ( subscriptionsnumber ) %]

      This is a serial

      -

      There are [% subscriptionsnumber %] subscription(s) associated with this title.

      +

      There are [% subscriptionsnumber | html %] subscription(s) associated with this title.

      [% FOREACH subscription IN subscriptions %] [% IF ( subscription.branchcode ) %] -

      At library: [% Branches.GetName( subscription.branchcode ) %]

      +

      At library: [% Branches.GetName( subscription.branchcode ) | html %]

      [% ELSE %] [% IF ( subscription.branchcode ) %] -

      At library: [% subscription.branchcode %]

      +

      At library: [% subscription.branchcode | html %]

      [% END %] [% END %] [% IF ( subscription.closed ) %]

      This subscription is closed.

      [% END %] [% IF ( subscription.callnumber ) %] -

      Call number: [% subscription.callnumber %]

      +

      Call number: [% subscription.callnumber | html %]

      [% END %] [% IF ( subscription.subscriptionnotes ) %] -

      [% subscription.subscriptionnotes FILTER html_line_break %]

      +

      [% subscription.subscriptionnotes FILTER html_line_break | html %]

      [% END %]

      Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]

      [% IF ( subscription.letter ) %][% END %] [% IF ( subscription.missinglist ) %] -

      Missing issues: [% subscription.missinglist %]

      +

      Missing issues: [% subscription.missinglist | html %]

      [% END %] [% IF ( subscription.opacnote ) %] -

      [% subscription.opacnote FILTER html_line_break %]

      +

      [% subscription.opacnote FILTER html_line_break | html %]

      [% END %] [% IF ( subscription.latestserials ) %] -

      The [% subscription.opacdisplaycount %] latest issues for this subscription:

      +

      The [% subscription.opacdisplaycount | html %] latest issues for this subscription:

      [% not_deleted_loo.itemnumber %][% IF ( CAN_user_editcatalogue_edit_items ) %][% not_deleted_loo.barcode %][% ELSE %][% not_deleted_loo.barcode %][% END %][% not_deleted_loo.itemnumber | html %][% IF ( CAN_user_editcatalogue_edit_items ) %][% not_deleted_loo.barcode | html %][% ELSE %][% not_deleted_loo.barcode | html %][% END %] [% IF ( not_deleted_loo.book_on_loan ) %]Item is checked out[% ELSIF ( not_deleted_loo.book_reserved ) %]Item has a waiting hold[% END %]
      [% serialcollection.branch %][% serialcollection.text %][% serialcollection.itemcallnumber %][% serialcollection.branch | html %][% serialcollection.text | html %][% serialcollection.itemcallnumber | html %]
      @@ -838,9 +839,9 @@ [% FOREACH latestserial IN subscription.latestserials %] - - - + + + - + [% END # / FOREACH latestserials %]
      [% latestserial.serialseq %][% latestserial.publisheddate %][% latestserial.planneddate %][% latestserial.serialseq | html %][% latestserial.publisheddate | html %][% latestserial.planneddate | html %] [% IF (latestserial.status1 ) %]Expected[% END %] [% IF (latestserial.status2 ) %]Arrived[% END %] @@ -855,14 +856,14 @@ [% IF (latestserial.status7 ) %]Claimed[% END %] [% IF (latestserial.status8 ) %]Stopped[% END %] [% latestserial.notes %][% latestserial.notes | html %]
      [% END # / IF subscription.latestserials %] [% END # / FOREACH subscriptions %] -

      More details

      +

      More details

      [% END # IF subscriptionsnumber %] @@ -893,9 +894,9 @@ [% IF ( reviews ) %] [% FOREACH review IN reviews %] [% IF borrowernumber && review.borrowernumber == borrowernumber %] -
      +
      [% IF ( review.avatarurl ) %] - + [% END %] [% IF review.approved %]
      Your comment
      @@ -905,9 +906,9 @@ [% review.datereviewed | $KohaDates %]

      [% FILTER html_break %] - [% review.review |html %] + [% review.review | html %] [% END %] - Edit + Edit

      [% ELSE %] @@ -915,19 +916,19 @@ [% IF ( ShowReviewer != "none" && review.patron) %] [% IF ( review.avatarurl ) %] - + [% END %] [% SWITCH ShowReviewer %] [% CASE 'full' %] -
      Comment by [% review.patron.title %] [% review.patron.firstname %] [% review.patron.surname %]
      +
      Comment by [% review.patron.title | html %] [% review.patron.firstname | html %] [% review.patron.surname | html %]
      [% CASE 'first' %] -
      Comment by [% review.patron.firstname %]
      +
      Comment by [% review.patron.firstname | html %]
      [% CASE 'surname' %] -
      Comment by [% review.patron.surname %]
      +
      Comment by [% review.patron.surname | html %]
      [% CASE 'firstandinitial' %] -
      Comment by [% review.patron.firstname %] [% review.patron.surname|truncate(2,'.') %]
      +
      Comment by [% review.patron.firstname | html %] [% review.patron.surname|truncate(2,'.') | html %]
      [% CASE 'username' %] -
      Comment by [% review.patron.userid %]
      +
      Comment by [% review.patron.userid | html %]
      [% END %] [% review.datereviewed | $KohaDates %] @@ -936,7 +937,7 @@ [% END # / IF ShowReviewer != "none" && review.patron %]

      [% FILTER html_break %] - [% review.review |html %] + [% review.review | html %] [% END %]

      @@ -948,7 +949,7 @@ [% IF ( loggedinusername ) %] [% UNLESS ( loggedincommenter ) %] -
      + [% END %] @@ -966,12 +967,12 @@ [% IF ( OPACAmazonCoverImages ) %] - + [% END %] [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %] [% IF ( XISBN.content_identifier_exists ) %] - + [% ELSE %] No cover image available [% END # / IF XISBN.content_identifier_exists %] @@ -979,16 +980,16 @@ [% UNLESS ( item_level_itypes ) %] - [% XISBN.description %] + [% XISBN.description | html %] [% END %] - [% XISBN.title |html %] - [% IF ( XISBN.author ) %] by [% XISBN.author |html %][% END %] - [% IF ( XISBN.copyrightdate ) %] ©[% XISBN.copyrightdate %][% END %] + [% XISBN.title | html %] + [% IF ( XISBN.author ) %] by [% XISBN.author | html %][% END %] + [% IF ( XISBN.copyrightdate ) %] ©[% XISBN.copyrightdate | html %][% END %] [% IF ( XISBN.publishercode ) %] -

      [% XISBN.publishercode |html %] - [% IF ( XISBN.place ) %]([% XISBN.place %])[% END %] - [% IF ( XISBN.publicationyear ) %][% ', ' _ XISBN.publicationyear %][% END %] - [% IF ( XISBN.pages ) %][% XISBN.pages %] [% XISBN.illus %] [% XISBN.size %][% END %] +

      [% XISBN.publishercode | html %] + [% IF ( XISBN.place ) %]([% XISBN.place | html %])[% END %] + [% IF ( XISBN.publicationyear ) %][% ', ' _ XISBN.publicationyear | html %][% END %] + [% IF ( XISBN.pages ) %][% XISBN.pages | html %] [% XISBN.illus | html %] [% XISBN.size | html %][% END %]

      [% END %] @@ -1003,10 +1004,10 @@ [% FOREACH HTML5MediaSet IN HTML5MediaSets %]

      [% SET ctrl_preload = ' controls preload=none' #translatability %] - <[% HTML5MediaParent _ ctrl_preload %] > - <[% HTML5MediaSet.child _ ' src="' _ HTML5MediaSet.srcblock _'"' _ HTML5MediaSet.typeblock %] /> - [[% HTML5MediaParent %] tag not supported by your browser.] - + <[% HTML5MediaParent _ ctrl_preload | html %] > + <[% HTML5MediaSet.child _ ' src="' _ HTML5MediaSet.srcblock _'"' _ HTML5MediaSet.typeblock | html %] /> + [[% HTML5MediaParent | html %] tag not supported by your browser.] +

      [% END %]
      @@ -1017,7 +1018,7 @@

      Click on an image to view it in the image viewer

      [% FOREACH image IN localimages %] [% IF image %] - + [% END %] [% END %]
      @@ -1034,7 +1035,7 @@ [% IF ( NovelistSelectProfile && NovelistSelectView == 'below' && ( normalized_isbn || normalized_upc ) ) %]

      Novelist Select

      -
      +
      [% END %] @@ -1073,16 +1074,16 @@
      • [% IF ( previousBiblionumber ) %] - « Previous + « Previous [% ELSE %] Previous [% END %]
      • [%# busc is already URI encoded %] -
      • Back to results
      • +
      • Back to results
      • [% IF ( nextBiblionumber ) %] - Next » + Next » [% ELSE %] Next [% END %] @@ -1107,7 +1108,7 @@ [% IF ( NovelistSelectProfile && NovelistSelectView == 'right' && ( normalized_isbn || normalized_upc ) ) %]

        Novelist Select

        -
        +
        [% END %] @@ -1125,7 +1126,7 @@
        - +
      [% END %]
      @@ -1133,9 +1134,9 @@
      [% IF ( LibraryThingForLibrariesID ) %] - + + here. [% END %] [% IF ( NovelistSelectProfile && ( normalized_isbn || normalized_upc ) ) %] @@ -1143,7 +1144,7 @@ [% END %] [% IF ( Babeltheque ) %] - + [% END %]
      @@ -1154,7 +1155,7 @@ [%# End of template %] [% BLOCK items_table %] - +
      [% IF ( item_level_itypes ) %] @@ -1199,10 +1200,10 @@ [% END %] [% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' ) %] @@ -1211,15 +1212,15 @@ [% IF ( ITEM_RESULT.branchurl ) %] - [% ITEM_RESULT.branchname %] + [% ITEM_RESULT.branchname | html %] [% ELSE %] - [% ITEM_RESULT.branchname %] + [% ITEM_RESULT.branchname | html %] [% END %] -
      [% ITEM_RESULT.holding_branch_opac_info %]
      +
      [% ITEM_RESULT.holding_branch_opac_info | $raw %]
      [% IF ( Koha.Preference('OpacLocationOnDetail') == 'holding' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %] - [% ITEM_RESULT.location_description %] + [% ITEM_RESULT.location_description | html %] [% END %] @@ -1231,41 +1232,41 @@ [% IF Branches.GetURL( ITEM_RESULT.homebranch ) %] - [% home_branch_url = Branches.GetURL( ITEM_RESULT.homebranch ) %] + [% home_branch_url = Branches.GetURL( ITEM_RESULT.homebranch ) | html %] [% IF ( home_branch_url ) %] - [% Branches.GetName( ITEM_RESULT.homebranch ) %] + [% Branches.GetName( ITEM_RESULT.homebranch ) | html %] [% ELSE %] - [% Branches.GetName( ITEM_RESULT.homebranch ) %] + [% Branches.GetName( ITEM_RESULT.homebranch ) | html %] [% END %] [% ELSE %] - [% Branches.GetName( ITEM_RESULT.homebranch ) %] + [% Branches.GetName( ITEM_RESULT.homebranch ) | html %] [% END %] -
      [% ITEM_RESULT.home_branch_opac_info %]
      +
      [% ITEM_RESULT.home_branch_opac_info | $raw %]
      [% IF ( Koha.Preference('OpacLocationOnDetail') == 'home' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %] - [% ITEM_RESULT.location_description %] + [% ITEM_RESULT.location_description | html %] [% END %] [% END %] [% IF ( itemdata_ccode ) %] - + [% END %] [% IF ( Koha.Preference('OpacLocationOnDetail') == 'column' && itemdata_location ) %] - + [% END %] [% END %] - [% IF ( itemdata_copynumber ) %][% END %] + [% IF ( itemdata_copynumber ) %][% END %] - [% IF ( itemdata_itemnotes ) %][% END %] - - + [% IF ( itemdata_itemnotes ) %][% END %] + + [% IF holds_count.defined || show_priority %] @@ -1331,11 +1332,11 @@ [% FOREACH r IN ITEM_RESULT.course_reserves %] [% IF r.course.enabled == 'yes' %]

      - - [% r.course.course_name %] - - [% IF r.course.section %] [% r.course.section %] [% END %] - [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term ) %] [% END %] + + [% r.course.course_name | html %] + + [% IF r.course.section %] [% r.course.section | html %] [% END %] + [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term ) | html %] [% END %]

      [% END %] @@ -1355,28 +1356,28 @@ [% IF ( SocialNetworks ) %] // [% END %] -[% IF ( OpacStarRatings != 'disable' ) %][% Asset.js("lib/jquery/plugins/jquery.rating.js") %][% END %] +[% IF ( OpacStarRatings != 'disable' ) %][% Asset.js("lib/jquery/plugins/jquery.rating.js") | $raw %][% END %] -[% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js") %][% END %] +[% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js").raw %][% END %] + [% END %] -[% IF ( OpacStarRatings == 'all' || Koha.Preference('Babeltheque') ) %][% Asset.js("lib/jquery/plugins/jquery.rating.js") %][% END %] -[% IF ( OverDriveEnabled ) %][% Asset.js("js/overdrive.js") %][% END %] -[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] -[% Asset.js("js/authtoresults.js") %] -[% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js") %] +[% IF ( OpacStarRatings == 'all' || Koha.Preference('Babeltheque') ) %][% Asset.js("lib/jquery/plugins/jquery.rating.js") | $raw %][% END %] +[% IF ( OverDriveEnabled ) %][% Asset.js("js/overdrive.js") | $raw %][% END %] +[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] +[% Asset.js("js/authtoresults.js") | $raw %] +[% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js").raw %] [% END %] [% IF Koha.Preference('OverDriveCirculation') %] - [% Asset.js("js/overdrive.js") %] + [% Asset.js("js/overdrive.js") | $raw %] -[% Asset.js("lib/modernizr.min.js") %] +[% Asset.js("lib/modernizr.min.js") | $raw %] @@ -50,7 +51,7 @@ [% FOREACH success_line IN success %] - + [% END %] [% FOREACH error IN errors %] - + [% END %] @@ -170,7 +171,7 @@ [% IF ( Koha.Preference('SelfCheckInMainUserBlock') ) %] -
      [% Koha.Preference('SelfCheckInMainUserBlock' ) %]
      +
      [% Koha.Preference('SelfCheckInMainUserBlock' ) | $raw %]
      [% END %] @@ -260,7 +261,7 @@ function timerIncrement() { if ( $("#sci_finish_button").is(":visible") || $("#sci_refresh_button").is(":visible") ) { idleTime = idleTime + 1; - idleTimeout = [% refresh_timeout %]; + idleTimeout = [% refresh_timeout | html %]; if (idleTime >= idleTimeout ) { location.href = '/cgi-bin/koha/sci/sci-main.pl'; } @@ -268,5 +269,5 @@ } - [% IF ( Koha.Preference('SelfCheckInUserJS') ) %][% END %] + [% IF ( Koha.Preference('SelfCheckInUserJS') ) %][% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt index 0497dbdb37..ca8ad5f5b5 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt @@ -1,22 +1,23 @@ +[% USE raw %] [% USE Asset %] [% USE KohaDates %] [% INCLUDE 'doc-head-open.inc' %] -[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha [% END %] › Self checkout help +[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %] › Self checkout help - - - [% Asset.css("lib/bootstrap/css/bootstrap.min.css") %] -[% Asset.css("lib/jquery/jquery-ui.css") %] -[% Asset.css("css/sco.css") %] -[% IF ( OPACUserCSS ) %][% END %] -[% IF ( SCOUserCSS ) %][% END %] + + + [% Asset.css("lib/bootstrap/css/bootstrap.min.css") | $raw %] +[% Asset.css("lib/jquery/jquery-ui.css") | $raw %] +[% Asset.css("css/sco.css") | $raw %] +[% IF ( OPACUserCSS ) %][% END %] +[% IF ( SCOUserCSS ) %][% END %] -[% Asset.js("lib/modernizr.min.js") %] +[% Asset.js("lib/modernizr.min.js") | $raw %] [% INCLUDE 'masthead-sco.inc' %] @@ -29,7 +30,7 @@ [% IF ( SelfCheckHelpMessage ) %]
      -[% SelfCheckHelpMessage %] +[% SelfCheckHelpMessage | $raw %]
      [% END %] @@ -48,7 +49,7 @@ The Submit button only needs to be clicked if you enter the barcode manually.

      Step three: Click the 'Finish' button

      If you do not click the 'Finish' button, your session will automatically expire in -[% SelfCheckTimeout %] seconds.

      +[% SelfCheckTimeout | html %] seconds.

      Return to the self-checkout @@ -62,5 +63,5 @@ The Submit button only needs to be clicked if you enter the barcode manually.

      [% SCOUserJS %][% END %] +[% IF ( SCOUserJS ) %][% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt index 191548a7c9..d090809859 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt @@ -1,17 +1,18 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] -[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha [% END %] › Self checkout › Print Receipt for [% borrowernumber %] +[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %] › Self checkout › Print Receipt for [% borrowernumber | html %] - -[% Asset.css("css/print.css") %] + +[% Asset.css("css/print.css") | $raw %] [% IF stylesheet %] - + [% END %] -[% Asset.js("lib/jquery/jquery.js") %] -[% Asset.js("js/global.js") %] +[% Asset.js("lib/jquery/jquery.js") | $raw %] +[% Asset.js("js/global.js") | $raw %] [% INCLUDE 'slip-print.inc' %] @@ -21,10 +22,10 @@
      [% IF plain %]
      -                [% slip %]
      +                [% slip | html %]
                   
      [% ELSE %] - [% slip %] + [% slip | html %] [% END %]
      diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt index ccc503e0f1..dcfdb08a0d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -1,25 +1,26 @@ +[% USE raw %] [% USE Asset %] [% USE Koha %] [% USE KohaDates %] [% USE AudioAlerts %] [% USE Price %] [% INCLUDE 'doc-head-open.inc' %] -[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha [% END %] › Self checkout +[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %] › Self checkout - - -[% Asset.css("lib/bootstrap/css/bootstrap.min.css") %] -[% Asset.css("lib/jquery/jquery-ui.css") %] -[% Asset.css("css/sco.css") %] -[% IF ( Koha.Preference('OPACUserCSS') ) %][% END %] -[% IF ( Koha.Preference('SCOUserCSS') ) %][% END %] + + +[% Asset.css("lib/bootstrap/css/bootstrap.min.css") | $raw %] +[% Asset.css("lib/jquery/jquery-ui.css") | $raw %] +[% Asset.css("css/sco.css") | $raw %] +[% IF ( Koha.Preference('OPACUserCSS') ) %][% END %] +[% IF ( Koha.Preference('SCOUserCSS') ) %][% END %] -[% Asset.js("lib/modernizr.min.js") %] +[% Asset.js("lib/modernizr.min.js") | $raw %] [% INCLUDE 'masthead-sco.inc' %] @@ -33,14 +34,14 @@
      [% END %] -

      [% LibraryName %] Self checkout system

      +

      [% LibraryName | html %] Self checkout system

      [% IF ( impossible ) %]

      Item cannot be checked out.

      Sorry, this item cannot be checked out at this station.

      [% IF ( title ) %] -

      Title: [% title |html %]

      +

      Title: [% title | html %]

      [% END %]

      @@ -55,7 +56,7 @@ [% ELSIF ( circ_error_NOT_FOR_LOAN ) %] This item is not for loan. [% ELSIF ( circ_error_DEBT ) %] - You owe the library [% DEBT | $Price %] and cannot check out. + You owe the library [% DEBT | $Price | html %] and cannot check out. [% ELSIF ( circ_error_WTHDRAWN ) %] This item has been withdrawn from the collection. [% ELSIF ( circ_error_RESTRICTED ) %] @@ -81,16 +82,16 @@ [% IF ( returnitem && Koha.Preference('AllowSelfCheckReturns') ) %]
      - - + + [% END %]
      - - + +

      @@ -105,8 +106,8 @@ [% IF ( renew && Koha.Preference('AllowSelfCheckReturns') ) %]
      - - + + @@ -115,16 +116,16 @@ [% UNLESS ( renew ) %]
      - - + + [% ELSE %]
      - - + + @@ -132,7 +133,7 @@
      - +
      @@ -167,7 +168,7 @@ [% IF ( patronid ) %] [% IF ( validuser ) %] -
      You are logged in as [% borrowername %].
      +
      You are logged in as [% borrowername | html %].
      [% INCLUDE 'opac-note.inc' %] [% IF patron_has_hold_fee %]
      A hold fee was charged to your account for collecting this item.
      @@ -177,14 +178,14 @@ [% IF ( nouser ) %]

      Sorry

      -

      The userid [% patronid %] was not found in the database. Please try again.

      +

      The userid [% patronid | html %] was not found in the database. Please try again.

      [% END %] [% END # / IF patronid %] [% IF ( validuser ) %]
      -
      +
      Check out[% IF ( Koha.Preference('AllowSelfCheckReturns') ) %], return[% END %] or renew an item:
      @@ -193,7 +194,7 @@
      - +
      @@ -206,7 +207,7 @@
      [% IF ( display_patron_image ) %]
      - +
      [% END %]
      @@ -218,7 +219,7 @@
      [% IF ( issues_count ) %]
      [% UNLESS ( noItemTypeImages ) %] [% IF ( ITEM_RESULT.imageurl ) %] - [% ITEM_RESULT.description %] + [% ITEM_RESULT.description | html %] [% END %] [% END %] - [% ITEM_RESULT.description %] + [% ITEM_RESULT.description | html %] [% ITEM_RESULT.ccode %][% ITEM_RESULT.ccode | html %][% ITEM_RESULT.location_description %][% ITEM_RESULT.location_description | html %] [% IF ( ITEM_RESULT.itemcallnumber ) %] - [% ITEM_RESULT.itemcallnumber %] + [% ITEM_RESULT.itemcallnumber | html %] [% IF ( OPACShelfBrowser ) %] [% IF ( ITEM_RESULT.itemnumber == starting_itemnumber ) %] - (Browse shelf) + (Browse shelf) [% ELSE %] - (Browse shelf) + (Browse shelf) [% END %] [% END %] [% END %] @@ -1273,7 +1274,7 @@ [% IF ( itemdata_enumchron ) %] [% IF ITEM_RESULT.enumchron && ITEM_RESULT.serialseq %] - [% ITEM_RESULT.enumchron %] + [% ITEM_RESULT.enumchron | html %] [% IF ( ITEM_RESULT.serialseq && ITEM_RESULT.enumchron!=ITEM_RESULT.serialseq ) %] -- [% ITEM_RESULT.serialseq | html %] @@ -1293,34 +1294,34 @@ [% IF ITEM_RESULT.uri %] [% IF trackclicks == 'track' || trackclicks == 'anonymous' %] [% IF Koha.Preference("OPACURLOpenInNewWindow") %] - Link to resource + Link to resource [% ELSE %] - Link to resource + Link to resource [% END %] [% ELSE %] [% IF Koha.Preference("OPACURLOpenInNewWindow") %] - [% ITEM_RESULT.uri %] + [% ITEM_RESULT.uri | html %] [% ELSE %] - [% ITEM_RESULT.uri %] + [% ITEM_RESULT.uri | html %] [% END %] [% END %] [% END %] [% ITEM_RESULT.copynumber %][% ITEM_RESULT.copynumber | html %][% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %][% ITEM_RESULT.itemnotes %][% ITEM_RESULT.datedue | $KohaDates as_due_date => 1 %][% ITEM_RESULT.barcode %][% ITEM_RESULT.itemnotes | html %][% ITEM_RESULT.datedue | $KohaDates as_due_date => 1 | html %][% ITEM_RESULT.barcode | html %] - [% IF holds_count.defined %] [% ITEM_RESULT.holds_count %] [% END %] + [% IF holds_count.defined %] [% ITEM_RESULT.holds_count | html %] [% END %] [% IF ITEM_RESULT.priority %] [% IF holds_count.defined %] - (priority [% ITEM_RESULT.priority %]) + (priority [% ITEM_RESULT.priority | html %]) [% ELSE %] - [% ITEM_RESULT.priority %] + [% ITEM_RESULT.priority | html %] [% END %] [% END %]
      [% success_line.barcode %]Checked in
      [% success_line.barcode | html %]Checked in
      [% error.barcode %][% error.barcode | html %] Not checked in [% PROCESS error_message messages=error.messages %]
      - + @@ -235,26 +236,26 @@ [% FOREACH ISSUE IN ISSUES %] - + - + [% IF ( ISSUE.overdue ) %] - + [% ELSE %] - + [% END %]
      Checkouts for [% borrowername %] ([% issues_count %] total)Checkouts for [% borrowername | html %] ([% issues_count | html %] total)
      [% ISSUE.issuedate %][% ISSUE.issuedate | html %] [% UNLESS ( noitemlinks ) %] - [% ISSUE.title |html %] + [% ISSUE.title | html %] [% ELSE %] - [% ISSUE.title |html %] + [% ISSUE.title | html %] [% END %] - [% ISSUE.author %] - ([% ISSUE.barcode %]) + [% ISSUE.author | html %] + ([% ISSUE.barcode | html %]) [% ISSUE.itemcallnumber %][% ISSUE.itemcallnumber | html %][% ISSUE.date_due | $KohaDates as_due_date => 1 %][% ISSUE.date_due | $KohaDates as_due_date => 1 | html %][% ISSUE.date_due | $KohaDates as_due_date => 1 %][% ISSUE.date_due | $KohaDates as_due_date => 1 | html %]
      - - + + [% IF ISSUE.can_be_renewed %] @@ -314,7 +315,7 @@ [% END %] [% FOREACH INPUT IN INPUTS %] - + [% END %] @@ -322,7 +323,7 @@ [% END # / IF validuser %] [% END # / UNLESS ( hide_main %] - [% IF ( Koha.Preference('SCOMainUserBlock' ) ) %]
      [% Koha.Preference('SCOMainUserBlock' ) %]
      [% END %] + [% IF ( Koha.Preference('SCOMainUserBlock' ) ) %]
      [% Koha.Preference('SCOMainUserBlock' ) | $raw %]
      [% END %] @@ -344,7 +345,7 @@ function sco_init() { mainTimeout = setTimeout(function() { location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; - }, [% SelfCheckTimeout %]); + }, [% SelfCheckTimeout | html %]); } function dofocus() { // named function req'd for body onload event by some FF and IE7 security models // alert("dofocus called"); @@ -367,7 +368,7 @@ return true; } [% IF Koha.Preference('AudioAlerts') %] - var AUDIO_ALERTS = JSON.parse( '[% AudioAlerts.AudioAlerts | replace( "'", "\\'" ) | replace( '"', '\\"' ) %]' ); + var AUDIO_ALERTS = JSON.parse( '[% AudioAlerts.AudioAlerts | replace( "'", "\\'" ) | replace( '"', '\\"' ) | html %]' ); $( document ).ready(function() { if ( AUDIO_ALERTS ) { for ( var k in AUDIO_ALERTS ) { @@ -405,8 +406,8 @@ [% IF Koha.Preference('SelfCheckReceiptPrompt') %] var confirmStart = Date.now(); if(confirm(_("Would you like to print a receipt?"))){ - if ( (Date.now() - confirmStart) < [% SelfCheckTimeout %] ) { - window.open("/cgi-bin/koha/sco/printslip.pl?borrowernumber=[% borrowernumber %]&print=qslip"); + if ( (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) { + window.open("/cgi-bin/koha/sco/printslip.pl?borrowernumber=[% borrowernumber | html %]&print=qslip"); } else { alert(_("Timeout while waiting for print confirmation")); } @@ -419,5 +420,5 @@ //]]> - [% IF ( Koha.Preference('SCOUserJS') ) %][% END %] + [% IF ( Koha.Preference('SCOUserJS') ) %][% END %] [% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/svc/suggestion.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/svc/suggestion.tt index 3e62d0e6c0..404dd352ad 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/svc/suggestion.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/svc/suggestion.tt @@ -34,7 +34,7 @@
      Did you mean: [% FOREACH suggestion IN suggestions %] - [% suggestion.label |html %] + [% suggestion.label | html %] [% END %]
      [% ELSE %] diff --git a/misc/cronjobs/rss/lastAcquired-1.0.tt b/misc/cronjobs/rss/lastAcquired-1.0.tt index c6ff6f76dd..0f1a5e2d37 100644 --- a/misc/cronjobs/rss/lastAcquired-1.0.tt +++ b/misc/cronjobs/rss/lastAcquired-1.0.tt @@ -4,35 +4,35 @@ xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" > - - [% CHANNELTITLE %] - [% CHANNELLINK %] - [% CHANNELDESC %] - [% CHANNELLANG %] - [% CHANNELLASTBUILD %] - - [% IMAGETITLE %] - [% IMAGEURL %] - [% IMAGELINK %] + + [% CHANNELTITLE | html %] + [% CHANNELLINK | html %] + [% CHANNELDESC | html %] + [% CHANNELLANG | html %] + [% CHANNELLASTBUILD | html %] + + [% IMAGETITLE | html %] + [% IMAGEURL | html %] + [% IMAGELINK | html %] [% FOREACH i IN ITEMS %] - + [% END %] [% FOREACH i IN ITEMS %] - - [% i.TITLE %][% IF i.AUTHOR %] by [% i.AUTHOR %][% END %] - [% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %] -[% place %] [% i.publishercode %] [% i.publicationyear %] -
      [% pages %] [% i.illus %] [% i.size %] -[% IF i.notes %]

      [% i.notes %][% END %]
      -View Details | Reserve this Item[% IF i.author %] | More by this Author[% END %] + + [% i.TITLE | html %][% IF i.AUTHOR %] by [% i.AUTHOR | html %][% END %] + [% OPACBaseURL | html %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %] +[% place | html %] [% i.publishercode | html %] [% i.publicationyear | html %] +
      [% pages | html %] [% i.illus | html %] [% i.size | html %] +[% IF i.notes %]

      [% i.notes | html %][% END %]
      +View Details | Reserve this Item[% IF i.author %] | More by this Author[% END %] ]]>
      [% END %] diff --git a/misc/cronjobs/rss/lastAcquired-2.0.tt b/misc/cronjobs/rss/lastAcquired-2.0.tt index 820b26d827..5067fa4c99 100644 --- a/misc/cronjobs/rss/lastAcquired-2.0.tt +++ b/misc/cronjobs/rss/lastAcquired-2.0.tt @@ -1,31 +1,31 @@ - [% CHANNELTITLE %] - [% CHANNELLINK %] - [% CHANNELDESC %] - [% CHANNELLANG %] - [% CHANNELLASTBUILD %] + [% CHANNELTITLE | html %] + [% CHANNELLINK | html %] + [% CHANNELDESC | html %] + [% CHANNELLANG | html %] + [% CHANNELLASTBUILD | html %] http://blogs.law.harvard.edu/tech/rss Koha - [% IMAGETITLE %] - [% IMAGEURL %] - [% IMAGELINK %] - [% IMAGEWIDTH %] - [% IMAGEHEIGHT %] - [% IMAGEDESCRIPTION %] + [% IMAGETITLE | html %] + [% IMAGEURL | html %] + [% IMAGELINK | html %] + [% IMAGEWIDTH | html %] + [% IMAGEHEIGHT | html %] + [% IMAGEDESCRIPTION | html %] [% FOREACH i IN ITEMS %] - [% i.TITLE %][% IF i.AUTHOR %] by [% i.AUTHOR %][% END %] - [% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.biblionumber %] -[% IF i.publishercode %][% i.place %] [% i.publishercode %] [% publicationyear %]
      [% END %] -[% IF i.pages %][% i.pages %][% i.illus %][% i.size %][% END %] -[% IF i.notes %]

      [% i.notes %]

      [% END %]
      -View Details | Reserve this Item[% IF i.author %] | More by this Author[% END %] + [% i.TITLE | html %][% IF i.AUTHOR %] by [% i.AUTHOR | html %][% END %] + [% OPACBaseURL | html %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.biblionumber | html %] +[% IF i.publishercode %][% i.place | html %] [% i.publishercode | html %] [% publicationyear | html %]
      [% END %] +[% IF i.pages %][% i.pages | html %][% i.illus | html %][% i.size | html %][% END %] +[% IF i.notes %]

      [% i.notes | html %]

      [% END %]
      +View Details | Reserve this Item[% IF i.author %] | More by this Author[% END %] ]]>
      [% END %] diff --git a/misc/cronjobs/rss/lastAcquired.tt b/misc/cronjobs/rss/lastAcquired.tt index c06413f2bb..762ff923c1 100644 --- a/misc/cronjobs/rss/lastAcquired.tt +++ b/misc/cronjobs/rss/lastAcquired.tt @@ -6,22 +6,22 @@ - [% CHANNELTITLE %] - [% CHANNELLINK %] - [% CHANNELDESC %] - [% CHANNELLANG %] - [% CHANNELLASTBUILD %] + [% CHANNELTITLE | html %] + [% CHANNELLINK | html %] + [% CHANNELDESC | html %] + [% CHANNELLANG | html %] + [% CHANNELLASTBUILD | html %] - [% IMAGETITLE %] - [% IMAGEURL %] - [% IMAGELINK %] + [% IMAGETITLE | html %] + [% IMAGEURL | html %] + [% IMAGELINK | html %] [% FOREACH i IN ITEMS %] - [% i.TITLE %], by [% i.AUTHOR %] - [% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.biblionumber %] + [% i.TITLE | html %], by [% i.AUTHOR | html %] + [% OPACBaseURL | html %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.biblionumber | html %] [% END %] diff --git a/misc/cronjobs/rss/longestUnseen.tt b/misc/cronjobs/rss/longestUnseen.tt index 8e2395a610..857a8c2e01 100644 --- a/misc/cronjobs/rss/longestUnseen.tt +++ b/misc/cronjobs/rss/longestUnseen.tt @@ -6,22 +6,22 @@ - [% CHANNELTITLE %] - [% CHANNELLINK %] - [% CHANNELDESC %] - [% CHANNELLANG %] - [% CHANNELLASTBUILD %] + [% CHANNELTITLE | html %] + [% CHANNELLINK | html %] + [% CHANNELDESC | html %] + [% CHANNELLANG | html %] + [% CHANNELLASTBUILD | html %] - [% IMAGETITLE %] - [% IMAGEURL %] - [% IMAGELINK %] + [% IMAGETITLE | html %] + [% IMAGEURL | html %] + [% IMAGELINK | html %] [% FOREACH i IN ITEMS %] - [% i.TITLE %], by [% i.AUTHOR %] - [% OPACBaseURL %]/cgi-bin/koha/opac-searchresults.pl?isbn=[% i.ISBN %] + [% i.TITLE | html %], by [% i.AUTHOR | html %] + [% OPACBaseURL | html %]/cgi-bin/koha/opac-searchresults.pl?isbn=[% i.ISBN | html %] [% END %] diff --git a/misc/cronjobs/rss/mostReserved.tt b/misc/cronjobs/rss/mostReserved.tt index d25205aa52..5f0c20b3d9 100644 --- a/misc/cronjobs/rss/mostReserved.tt +++ b/misc/cronjobs/rss/mostReserved.tt @@ -6,22 +6,22 @@ - [% CHANNELTITLE %] - [% CHANNELLINK %] - [% CHANNELDESC %] - [% CHANNELLANG %] - [% CHANNELLASTBUILD %] + [% CHANNELTITLE | html %] + [% CHANNELLINK | html %] + [% CHANNELDESC | html %] + [% CHANNELLANG | html %] + [% CHANNELLASTBUILD | html %] - [% IMAGETITLE %] - [% IMAGEURL %] - [% IMAGELINK %] + [% IMAGETITLE | html %] + [% IMAGEURL | html %] + [% IMAGELINK | html %] [% FOREACH i IN ITEMS %] - [% TITLE %], by [% AUTHOR %] - [% OPACBaseURL %]/cgi-bin/koha/opac-searchresults.pl?isbn=[% ISBN %] + [% TITLE | html %], by [% AUTHOR | html %] + [% OPACBaseURL | html %]/cgi-bin/koha/opac-searchresults.pl?isbn=[% ISBN | html %] [% END %] -- 2.20.1