evergreen:tags/rel_3_2_8

Last commit made on 2019-08-21
Get this branch:
git clone -b tags/rel_3_2_8 https://git.launchpad.net/evergreen

Branch merges

Branch information

Name:
tags/rel_3_2_8
Repository:
lp:evergreen

Recent commits

077c661... by Blake GH

Bumping version numbers, adding Upgrade Script and Changelog

Signed-off-by: blake <email address hidden>

1d96b62... by Blake GH

fixed upgrade script naming convention

Signed-off-by: blake <email address hidden>

37d52b0... by Blake GH

bumping Perl version string for 3.2.8

Signed-off-by: blake <email address hidden>

04c8eb5... by Andrea Neiman

Docs: Adding missing entry to 3.2.8 release notes

Signed-off-by: Andrea Buntz Neiman <email address hidden>
Signed-off-by: Jane Sandberg <email address hidden>

257c084... by Jane Sandberg

Docs: Adding 3.1.14 release notes

Signed-off-by: Jane Sandberg <email address hidden>
Signed-off-by: Andrea Buntz Neiman <email address hidden>

96f14e9... by Andrea Neiman

Docs: Adding 3.1.14 release notes

Signed-off-by: Andrea Buntz Neiman <email address hidden>
Signed-off-by: Jane Sandberg <email address hidden>

6fe5ace... by Mike Risher

lp1739292 merge UI displays record summary

Add the record summary to the record merge UI. Note that when one clicks
on "use as lead record" or "remove from consieration" the order of the
records changes. The record summary also will change order to match.

Signed-off-by: Mike Risher <email address hidden>

 Changes to be committed:
 modified: Open-ILS/src/templates/staff/cat/bucket/record/t_merge_records.tt2
 new file: Open-ILS/src/templates/staff/cat/share/t_record_summary_slim.tt2
 modified: Open-ILS/web/js/ui/default/staff/cat/services/record.js

Signed-off-by: Bill Erickson <email address hidden>

c58e274... by James Fournie <email address hidden>

LP1751800 - fix fields fields reversing

The pop() here will remove the last item in the array, only to add it
later with a push() a few lines later. Instead use a shift() to
preserve the order.

Signed-off-by: James Fournie <email address hidden>
Signed-off-by: Remington Steed <email address hidden>
Signed-off-by: Dan Wells <email address hidden>

67a7e6c... by Galen Charlton

LP#1785061: move the filter value munging to the template service

This allows the reporter app to stay a bit more focused on
display concerns.

Here's a test plan for the patch series
---------------------------------------
[1] Create a reporter template that has a filter field
    and a filter operator of "In list", "Not in list", "Between",
    or "Not between" and hard-code a value for that filter
    in the template, separating values with a comma.
[2] Try to create a report from that template; note that it
    fails with an error.
[3] Apply the patch and repeat steps 1 and 2. This time, the
    report should succeed.

Note that this fix applies only to hardcoding filter values in the
template; it doesn't change any behavior when attempting to set
a filter value for any of the four operators above at the point of
creating a report.

Signed-off-by: Galen Charlton <email address hidden>

Conflicts:
 Open-ILS/web/js/ui/default/staff/reporter/template/app.js

Signed-off-by: Dan Wells <email address hidden>

e9d696e... by Remington Steed

LP#1785061: Split filter value on comma for "in list" and the like

This commit borrows directly from the XUL reporter code (see
function __default_value_event_handler () in
Open-ILS/web/reports/xul/template-config.js). Basically, when the filter
value is saved, certain cases need special treatment, such as splitting
an "in list" value on commas. This commit includes a helper function
which does the special treatment and saves the filter value. This helper
is called both when the value itself is changed, and when the operator
is changed.

Signed-off-by: Remington Steed <email address hidden>
Signed-off-by: Galen Charlton <email address hidden>

Conflicts:
 Open-ILS/web/js/ui/default/staff/reporter/template/app.js

Signed-off-by: Dan Wells <email address hidden>