From: Dan Scott Date: Wed, 4 May 2011 02:32:34 +0000 (-0400) Subject: Clean up the rest of the non-entity ampersands in URLs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=802189440389152cfb11583e5e39662b74a7c719;p=evergreen%2Fequinox.git Clean up the rest of the non-entity ampersands in URLs Continue the global change to entity ampersands in URLs in the TT OPAC. This should be the last of it. Signed-off-by: Dan Scott --- diff --git a/Open-ILS/web/templates/default/opac/myopac/circ_history.tt2 b/Open-ILS/web/templates/default/opac/myopac/circ_history.tt2 index 91e5f37cbb..8848693ee7 100644 --- a/Open-ILS/web/templates/default/opac/myopac/circ_history.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/circ_history.tt2 @@ -21,10 +21,10 @@
[% l('Previously Checked Out Items') %] - [%# TODO: get total to prevent paging off then end of the list.. %] - @@ -73,7 +73,7 @@ [% attrs.title %] [% IF attrs.author %] / - [% attrs.author %] + [% attrs.author %] [% END %] diff --git a/Open-ILS/web/templates/default/opac/myopac/circs.tt2 b/Open-ILS/web/templates/default/opac/myopac/circs.tt2 index c16d28cf2f..67f94b8747 100644 --- a/Open-ILS/web/templates/default/opac/myopac/circs.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/circs.tt2 @@ -108,7 +108,7 @@ name="author"> [% attrs.title %] [% IF attrs.author %] / - [% attrs.author %] + [% attrs.author %] [% END %] diff --git a/Open-ILS/web/templates/default/opac/myopac/hold_history.tt2 b/Open-ILS/web/templates/default/opac/myopac/hold_history.tt2 index ac8d99cf90..048dbb2e24 100644 --- a/Open-ILS/web/templates/default/opac/myopac/hold_history.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/hold_history.tt2 @@ -21,10 +21,10 @@
[% l("Previously Held Items") %] - [%# TODO: get total to prevent paging off then end of the list.. %] - @@ -67,7 +67,7 @@ diff --git a/Open-ILS/web/templates/default/opac/myopac/holds.tt2 b/Open-ILS/web/templates/default/opac/myopac/holds.tt2 index 1a7c814197..a6bb6709dc 100644 --- a/Open-ILS/web/templates/default/opac/myopac/holds.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/holds.tt2 @@ -140,7 +140,7 @@ diff --git a/Open-ILS/web/templates/default/opac/myopac/main.tt2 b/Open-ILS/web/templates/default/opac/myopac/main.tt2 index c00356f2b0..1c707c81ab 100644 --- a/Open-ILS/web/templates/default/opac/myopac/main.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/main.tt2 @@ -48,7 +48,7 @@ [% END %] - [% attrs.author %] + [% attrs.author %] [% ts = f.xact.circulation.xact_start || f.xact.reservation.start_time || 0; diff --git a/Open-ILS/web/templates/default/opac/myopac/main_payments.tt2 b/Open-ILS/web/templates/default/opac/myopac/main_payments.tt2 index 882f9860f6..bf956b65df 100644 --- a/Open-ILS/web/templates/default/opac/myopac/main_payments.tt2 +++ b/Open-ILS/web/templates/default/opac/myopac/main_payments.tt2 @@ -11,10 +11,10 @@
[% l('Payments History') %] - [%# TODO: get total to prevent paging off then end of the list.. %] -
diff --git a/Open-ILS/web/templates/default/opac/parts/record/authors.tt2 b/Open-ILS/web/templates/default/opac/parts/record/authors.tt2 index 5d9db772d1..93a8b838ef 100644 --- a/Open-ILS/web/templates/default/opac/parts/record/authors.tt2 +++ b/Open-ILS/web/templates/default/opac/parts/record/authors.tt2 @@ -31,7 +31,7 @@ BLOCK build_author_links; code = subfield.getAttribute('code'); NEXT UNLESS code.match('[a-z]'); term = subfield.textContent | html; - '
' _ term _ ''; + '
' _ term _ ''; END; END; END; diff --git a/Open-ILS/web/templates/default/opac/parts/record/subjects.tt2 b/Open-ILS/web/templates/default/opac/parts/record/subjects.tt2 index d608019167..7819187e8b 100644 --- a/Open-ILS/web/templates/default/opac/parts/record/subjects.tt2 +++ b/Open-ILS/web/templates/default/opac/parts/record/subjects.tt2 @@ -38,7 +38,7 @@ single_term = subfield.textContent | html; all_terms.push(subfield.textContent); total_term = all_terms.join(" ").replace('\s+$', '') | uri; - '' _ single_term _ ''; + '' _ single_term _ ''; END; IF all_terms.size; "
"; END; END;