[open-ils-commits] [GIT] Evergreen ILS branch master updated. 4c8e069b031015f16daeece84364f01933f38d9f

Evergreen Git git at git.evergreen-ils.org
Fri Oct 5 16:43:09 EDT 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  4c8e069b031015f16daeece84364f01933f38d9f (commit)
       via  86017f1c20bb1380c994415137eaf8ef1f2513dd (commit)
      from  bbe067af8deaba58c353dd3a2b82e09c5d6c077c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4c8e069b031015f16daeece84364f01933f38d9f
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Fri Oct 5 16:41:04 2018 -0400

    LP#1770246: (follow-up) display the open-in-new-window/tab icon
    
    Since the title links added by the previous patch intentionally open
    the record in a new tab, display the corresponding icon to be
    consistent with other interfaces.
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2 b/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
index 2e910b2..ec4473b 100644
--- a/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
+++ b/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
@@ -19,7 +19,7 @@
 
   <eg-grid-field label="[% l('Title') %]" path="title">
     <a target="_blank" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item.id}}">
-    {{item.title}}
+    {{item.title}} <span ng-show="item.id" class="glyphicon glyphicon-new-window"/>
     </a>
   </eg-grid-field>
 </eg-grid>
diff --git a/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2 b/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
index 1f8e9f6..02506bc 100644
--- a/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
+++ b/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
@@ -45,7 +45,7 @@
 
   <eg-grid-field label="[% l('Title') %]" path="title">
     <a target="_blank" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item.id}}">
-    {{item.title}}
+    {{item.title}} <span ng-show="item.id" class="glyphicon glyphicon-new-window"/>
     </a>
   </eg-grid-field>
 </eg-grid>

commit 86017f1c20bb1380c994415137eaf8ef1f2513dd
Author: Garry Collum <gcollum at gmail.com>
Date:   Thu May 31 21:22:35 2018 -0400

    LP#1770246 Catalog linked title column in query and pending buckets
    
    To mirror the Record Bucket View grid, this patch adds a title column
    in the query and pending bucket tabs that links to the catalog record
    of the title displayed. The catalog record is opened in a new tab, so
    the query and pending data is not lost.
    
    Signed-off-by: Garry Collum <gcollum at gmail.com>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2 b/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
index 6d3a525..2e910b2 100644
--- a/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
+++ b/Open-ILS/src/templates/staff/cat/bucket/record/t_pending.tt2
@@ -17,4 +17,9 @@
   <eg-grid-action label="[% l('Clear List') %]" 
     handler="resetPendingList"></eg-grid-action>
 
+  <eg-grid-field label="[% l('Title') %]" path="title">
+    <a target="_blank" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item.id}}">
+    {{item.title}}
+    </a>
+  </eg-grid-field>
 </eg-grid>
diff --git a/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2 b/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
index 684b139..1f8e9f6 100644
--- a/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
+++ b/Open-ILS/src/templates/staff/cat/bucket/record/t_search.tt2
@@ -43,4 +43,9 @@
   <eg-grid-action label="[% l('Add To Bucket') %]" 
     handler="addToBucket"></eg-grid-action>
 
+  <eg-grid-field label="[% l('Title') %]" path="title">
+    <a target="_blank" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item.id}}">
+    {{item.title}}
+    </a>
+  </eg-grid-field>
 </eg-grid>

-----------------------------------------------------------------------

Summary of changes:
 .../staff/cat/bucket/record/t_pending.tt2          |    5 +++++
 .../templates/staff/cat/bucket/record/t_search.tt2 |    5 +++++
 2 files changed, 10 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list