From: Lebbeous Fogle-Weekley Date: Wed, 21 Nov 2012 18:49:59 +0000 (-0500) Subject: Link checker: Some UI tweaks suggested by George Duimovich X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5958b038b5a5d7e0a5b3296c486b71e10381f79d;p=evergreen%2Fpines.git Link checker: Some UI tweaks suggested by George Duimovich - Make the "Filter" link above FlattenerGrids a button and not a link. - Instead of IDs as links in some grid columns, have the ID show up in plain text and have links with a more descriptive name sit next to the ID. - Correct the settings for saving grid columns on the Select URLs and Review Attempt interfaces. - Tiny i18n fixes (page titles) - Fix lack of horizontal scrollbar on Select URLs interface, and also fix the way that if you clicked on said scrollbar in a case where your grid was taller than your browser window, the page would automatically scroll up to focus on your grid header row, and you couldn't actually manipulate the horizontal scrollbar. We sadly pay for our horiz scrollbar with a doubled vertical scrollbar, but possibly someone can figure the Right way to fix such layout problems, which actually occur widely in similar interfaces in Evergreen. - Add buttons to download CSV on Select URLs and Review Attempt interfaces. Signed-off-by: Lebbeous Fogle-Weekley Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 120120e8de..d4272a5811 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -12093,17 +12093,17 @@ INSERT INTO config.filter_dialog_interface (key, description) VALUES ( ); INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( - 'url_verify.select_urls', - 'url_verify', + 'ui.grid_columns.url_verify.select_urls', + 'gui', FALSE, oils_i18n_gettext( - 'url_verify.select_urls', + 'ui.grid_columns.url_verify.select_urls', 'Link Checker''s URL Selection interface''s saved columns', 'cust', 'label' ), oils_i18n_gettext( - 'url_verify.select_urls', + 'ui.grid_columns.url_verify.select_urls', 'Link Checker''s URL Selection interface''s saved columns', 'cust', 'description' @@ -12112,17 +12112,17 @@ INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,dat ); INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( - 'url_verify.review_attempt', - 'url_verify', + 'ui.grid_columns.url_verify.review_attempt', + 'gui', FALSE, oils_i18n_gettext( - 'url_verify.review_attempt', + 'ui.grid_columns.url_verify.review_attempt', 'Link Checker''s Review Attempt interface''s saved columns', 'cust', 'label' ), oils_i18n_gettext( - 'url_verify.review_attempt', + 'ui.grid_columns.url_verify.review_attempt', 'Link Checker''s Review Attempt interface''s saved columns', 'cust', 'description' diff --git a/Open-ILS/src/sql/Pg/upgrade/ZZZZ.data.url_verify.sql b/Open-ILS/src/sql/Pg/upgrade/ZZZZ.data.url_verify.sql index 4e14754862..968361b851 100644 --- a/Open-ILS/src/sql/Pg/upgrade/ZZZZ.data.url_verify.sql +++ b/Open-ILS/src/sql/Pg/upgrade/ZZZZ.data.url_verify.sql @@ -152,17 +152,17 @@ INSERT INTO config.filter_dialog_interface (key, description) VALUES ( INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( - 'url_verify.select_urls', - 'url_verify', + 'ui.grid_columns.url_verify.select_urls', + 'gui', FALSE, oils_i18n_gettext( - 'url_verify.select_urls', + 'ui.grid_columns.url_verify.select_urls', 'Link Checker''s URL Selection interface''s saved columns', 'cust', 'label' ), oils_i18n_gettext( - 'url_verify.select_urls', + 'ui.grid_columns.url_verify.select_urls', 'Link Checker''s URL Selection interface''s saved columns', 'cust', 'description' @@ -171,17 +171,17 @@ INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,dat ); INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( - 'url_verify.review_attempt', - 'url_verify', + 'ui.grid_columns.url_verify.review_attempt', + 'gui', FALSE, oils_i18n_gettext( - 'url_verify.review_attempt', + 'ui.grid_columns.url_verify.review_attempt', 'Link Checker''s Review Attempt interface''s saved columns', 'cust', 'label' ), oils_i18n_gettext( - 'url_verify.review_attempt', + 'ui.grid_columns.url_verify.review_attempt', 'Link Checker''s Review Attempt interface''s saved columns', 'cust', 'description' diff --git a/Open-ILS/src/templates/url_verify/create_session.tt2 b/Open-ILS/src/templates/url_verify/create_session.tt2 index 72983e90ab..5c575d0333 100644 --- a/Open-ILS/src/templates/url_verify/create_session.tt2 +++ b/Open-ILS/src/templates/url_verify/create_session.tt2 @@ -1,5 +1,5 @@ [% WRAPPER base.tt2 %] -[% ctx.page_title = "Link Checker - Create Session" %] +[% ctx.page_title = l("Link Checker - Create Session") %]