lp:evergreen/3.13

Created by Galen Charlton and last modified
Get this branch:
bzr branch lp:evergreen/3.13

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Evergreen Bug Wranglers
Project:
Evergreen
Status:
Development

Import details

Import Status: Reviewed

This branch is an import of the HEAD branch of the Git repository at git://git.evergreen-ils.org/Evergreen.git,branch=rel_3_13.

The next import is scheduled to run .

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 25 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 20 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 25 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 20 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 40 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 40 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 40 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 40 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 50 seconds — see the log

Recent revisions

27253. By Blake GH

LP#2066981 Stamping upgrade 1417

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

27252. By Mike Rylander

LP#2066981: Queued Ingest vs reporter data

Queued Ingest needs to call the function behind the non-QI simple report
data trigger. This commit updates the core QI function to make sure
that happens.

In order to address any outstanding records, either refresh the reporter
data by calling the existing database function for that purpose:

  SELECT reporter.refresh_materialized_simple_record();

or generate a script to directly process records that have been through
QI, similar to the following psql script:

\t
\o /tmp/update_reporter_data.sql

WITH last_update AS (
    SELECT record, max(ingest_time)
      FROM action.ingest_queue_entry
      WHERE fail_time IS NULL
            AND override_by IS NULL
            AND record_type = 'biblio'
      GROUP BY 1
), last_action AS (
    SELECT qi.record, qi.action
      FROM action.ingest_queue_entry qi,
            last_update
      WHERE qi.record = last_update.record
            AND qi.record_type = 'biblio'
            AND qi.ingest_time = last_update.max
) SELECT DISTINCT 'select reporter.simple_rec_update('||record||', $$delete$$=$$'||action||'$$)'
    FROM last_action
    ORDER BY 1;

\t
\o
\i /tmp/update_reporter_data.sql

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

27251. By Blake GH

LP#2066490 Fixing spelling for verison

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

27250. By Bill Erickson

LP2066934 Comment out combobox console debug msgs

These pile up since they fire often on value changes.

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

27249. By Mike Rylander

LP#2066934: Background import manager script

Install the background import manager script and provide a cron example

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

27248. By Mike Rylander

LP#2066934: Combobox rendering

Do not prevent the default event handler, which is, in fact, the input renderer from ngbtypeahead

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

27247. By Mike Rylander

LP#2066934: Combobox event propagation

Force ngbTypeahead onChange event propagation via "editable" when we require it for our purposes

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

27246. By Bill Erickson

LP2065817 Remove errant ./configure commas

Remove unnecessary commas from configure.ac which ended up in Redis
account passwords in opensrf_core.xml, breaking new Redis installs.

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

27245. By Stephanie Leary

LP2049657 SVG logo file path docs

Signed-off-by: Stephanie Leary <email address hidden>
Signed-off-by: Jane Sandberg <email address hidden>
Signed-off-by: Steven Mayo <email address hidden>

27244. By Stephanie Leary

LP2049657 SVG logos; forced colors mode support

Adds styles for CSS forced colors mode (and the older Windows High
Contrast Mode). In addition to cleanup of transparent borders and some
button focus styles, this alters the dropdown toggle icon in both
AngularJS and Angular, since these are created with angled borders in
the default stylesheet.

Changes the logo image files' format from PNG to SVG for clarity and
improved appearance on dark page backgrounds.

Release-note: SVG logos; support for forced colors mode

Signed-off-by: Stephanie Leary <email address hidden>
Signed-off-by: Jane Sandberg <email address hidden>
Signed-off-by: Steven Mayo <email address hidden>

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
This branch contains Public information 
Everyone can see this information.