From 5fa46810258587b30270cc854626f7830b1dc1ef Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 16 Oct 2020 19:03:13 +0000 Subject: [PATCH] Bug 25941: Reindent Upload local cover image page This patch reindents the "Upload local cover image" template to make indentation consistent. Some lines have been split up. Some markup inconsistencies have been corrected. To test, apply the patch and enable the LocalCoverImages system preference. - Go to Tools -> Upload local cover image. - Test uploading single images or ZIP files of images. - Confirm that everything works as expected. Use your preferred method for checking the differences between files while ignoring whitespace. I use diff with the "-w" flag, but I'm not some kind of diff deity. The only changes you see should be split lines. Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- .../prog/en/modules/tools/upload-images.tt | 215 ++++++++++++--------- 1 file changed, 125 insertions(+), 90 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt index 9ebb48e462..be099612a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt @@ -13,104 +13,139 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] - +
-

Upload local cover image

-[% IF ( uploadimage ) %] -

Image upload results :

-
    -
  • [% total | html %] images found
  • - [% IF ( error ) %] -
    - [% IF ( error == 'UZIPFAIL' ) %]

    Failed to unzip archive.
    Please ensure you are uploading a valid zip file and try again.

    - [% ELSIF ( error == 'OPNLINK' ) %]

    Cannot open folder index (idlink.txt or datalink.txt) to read.
    Please verify that it exists.

    - [% ELSIF ( error == 'OPNIMG' ) %]

    Cannot process file as an image.
    Please ensure you only upload GIF, JPEG, PNG, or XPM images.

    - [% ELSIF ( error == 'DELERR' ) %]

    Unrecognized or missing field delimiter.
    Please verify that you are using either a single quote or a tab.

    - [% ELSIF ( error == 'DBERR' ) %]

    Unable to save image to database.

    - [% ELSE %]

    An unknown error has occurred.
    Please review the error log for more details.

    [% END %] -
    - - [% END %] -
  • View final record
  • -
  • Back
  • -
-
-[% END %] -
    -
  • Select an image file or ZIP file to upload. The tool will accept images in GIF, JPEG, PNG, and XPM formats.
  • -
-
-
-Upload images -
    -
  1. -
    - - - Required -
  2. -
-
-
+

Upload local cover image

+ + [% IF ( uploadimage ) %] +

Image upload results :

+
    +
  • [% total | html %] images found
  • + [% IF ( error ) %] +
  • +
    + [% IF ( error == 'UZIPFAIL' ) %] +

    Failed to unzip archive.
    Please ensure you are uploading a valid zip file and try again.

    + [% ELSIF ( error == 'OPNLINK' ) %] +

    Cannot open folder index (idlink.txt or datalink.txt) to read.
    Please verify that it exists.

    + [% ELSIF ( error == 'OPNIMG' ) %] +

    Cannot process file as an image.
    Please ensure you only upload GIF, JPEG, PNG, or XPM images.

    + [% ELSIF ( error == 'DELERR' ) %] +

    Unrecognized or missing field delimiter.
    Please verify that you are using either a single quote or a tab.

    + [% ELSIF ( error == 'DBERR' ) %] +

    Unable to save image to database.

    + [% ELSE %] +

    An unknown error has occurred.
    Please review the error log for more details.

    + [% END %] +
    +
  • + [% END %] +
  • View final record
  • +
  • Back
  • +
+
+ [% END %] +
    +
  • Select an image file or ZIP file to upload. The tool will accept images in GIF, JPEG, PNG, and XPM formats.
  • +
+ + +
+ Upload images +
    +
  1. +
    + + + Required +
    +
  2. +
+
+
-
-
Upload progress: - - - 0% -
-
-
-
+
+
Upload progress: + + + 0% +
+
+
+ -
-
- - - -
-
- File type -
    - [% UNLESS itemnumber %] -
  1. - [% IF (filetype != 'image' ) %][% ELSE %][% END %] - -
  2. -
  3. - [% IF (filetype == 'image' ) %][% ELSE %][% END %] - -
  4. -
  5. - [% IF ( filetype == 'image' ) %][% ELSE %] -
  6. - [% ELSE %] - - - - [% END %] -
-
-
- Options -
    -
  1. - [% IF AllowMultipleCovers == 0 %] - - [% ELSE %] - - [% END %] - -
  2. -
-
-
-
+
+
+ + + +
+
+ File type +
    + [% UNLESS itemnumber %] +
  1. + [% IF (filetype != 'image' ) %] + + [% ELSE %] + + [% END %] + +
  2. +
  3. + [% IF (filetype == 'image' ) %] + + [% ELSE %] + + [% END %] + +
  4. +
  5. + [% IF ( filetype == 'image' ) %] + + [% ELSE %] + +
  6. + [% ELSE %] + + + + [% END %] +
+
+
+ Options +
    +
  1. + [% IF AllowMultipleCovers == 0 %] + + [% ELSE %] + + [% END %] + +
  2. +
+
+
+ +
+
-- 2.11.0