]> git.evergreen-ils.org Git - working/Evergreen.git/blob - docs/RELEASE_NOTES_3_0.adoc
Docs: fund tag preservation
[working/Evergreen.git] / docs / RELEASE_NOTES_3_0.adoc
1 Evergreen 3.0 Release Notes
2 ===========================
3 :toc:
4 :numbered:
5
6 Evergreen 3.0.5
7 ---------------
8 This release contains bug fixes improving on Evergreen 3.0.4.
9
10 * The MARC Editor in the Web staff client now wraps long fields.
11 * The MARC Editor no longer allows catalogers to enter new lines
12 into MARC subfields.
13 * Fixes an issue that prevented serials items from being deleted or
14 modified.
15 * The Web staff client Check In screen no longer reloads the whole
16 page multiple times each time an item is scanned.
17 * Fixes an issue that displayed the oldest -- rather than the newest
18 -- transit in the Web staff client Item Status page.
19 * Fixes an issue that prevented the reports module from being displayed
20 in the Web client.
21 * Fixes an issue in the Web staff client reports module that caused
22 syntax errors in reports that use virtual fields and joins.
23 * Fixes an issue that prevented several dropdown menus in the Web staff
24 client from activating.
25 * Fixes an issue that created duplicate copy data when copies or
26 volumes with parts were transferred.
27 * Fixes the Trim List feature in the Web staff client Check In screen.
28 * The Item Status grid now displays the Circulation Modifier.
29 * Restores missing data from the Profile column in Place Hold patron
30 search results.
31 * Fixes an issue with the http -> https redirect on Apache 2.4.
32 * Fixes an color contrast accessibility issue in the Web staff
33 client and adds underlining to links in grid cells for added accessibility.
34 * Adds automated regression and unit tests for the Web staff client
35 reports module.
36 * Adds a process for spell-checking the official documentation.
37 * Adds a script that simplifies the release process related to translations.
38
39
40 Acknowledgements
41 ~~~~~~~~~~~~~~~~
42 We would like to thank the following individuals who contributed code,
43 tests and documentation patches to the 3.0.5 point release of
44 Evergreen:
45
46 * Galen Charlton
47 * Jeff Davis
48 * Blake Graham-Henderson
49 * Kathy Lussier
50 * Morkor Quarshie
51 * Mike Rylander
52 * Jane Sandberg
53 * Dan Scott
54 * Chris Sharp
55 * Remington Steed
56 * Jason Stephenson
57 * Kevin Tran
58 * Cesar Velez
59
60
61 Evergreen 3.0.4
62 ---------------
63 This release contains bug fixes improving on Evergreen 3.0.3:
64
65 * Fixes a bug that caused all searches limited by shelving location to
66 return 0 results.
67 * Fixes a bug that caused EDI orders to be sent with the vendor's SAN,
68 rather than the ordering agency's SAN.
69 * Fixes a bug that prevented Safari/iOS users from logging in to the
70 web client.
71 * Fixes a bug that prevented users from using the browse interface.
72 * Fixes a bug in the Item Status List view that caused incorrect due
73 dates to display.
74 * Approval code is now a required field in the web client's patron
75 credit card payment form.
76 * Fixes a bug with credit card payments that caused a receipt to print
77 showing that the patron paid the bill when the payment had not actually
78 been applied.
79 * Fixes a bug that prevented the EDI translator from being installed on
80 Ubuntu 16.04.
81 * Fixes a bug that caused entries to show up multiple times in the
82 Items Out and Holds tabs in the patron record.
83 * Fixes a bug that caused grids on Bills and Patron Messages
84 screens to not display properly.
85 * The following fields are now available for the Checkout and Items Out
86 receipt templates:
87 ** first_given_name
88 ** second_given_name
89 ** family_name
90 ** suffix
91 ** barcode
92 ** money_summary.balance_owed
93 ** money_summary.total_paid
94 ** money_summary.total_owed
95 ** expire_date
96 ** alias
97 ** has_email
98 ** has_phone
99 * The following fields are now available on the Bill Payment receipt templates:
100 ** first_given_name
101 ** second_given_name
102 ** family_name
103 ** suffix
104 ** barcode
105 ** expire_date
106 ** alias
107 ** has_email
108 ** has_phone
109 * Payment type is now a column in the payments tab of the patron record
110 Bill History section.
111 * The "Replace Barcode" function now makes it more difficult for staff
112 members to attempt to create blank patron barcodes.
113 * The patron bills screen now prevents staff members from double-clicking
114 on the Apply Payment button (which otherwise would apply two payments).
115 * Fixes a bug that prevented patrons attached to statistical categories
116 from displaying in the patron search-to-hold dialog.
117 * Fixes a performance issue related to uploading CSV files of barcodes
118 to the item status and patron bucket interfaces.
119 * Fixes several small bugs in the Spanish translation.
120 * Fixes a performance bug related to patrons logging in by barcode.
121
122 Acknowledgements
123 ~~~~~~~~~~~~~~~~
124 We would like to thank the following individuals who contributed code,
125 tests and documentation patches to the 3.0.4 point release of
126 Evergreen:
127
128 * Jason Boyer
129 * Galen Charlton
130 * Bill Erickson
131 * Jason Etheridge
132 * Kathy Lussier
133 * Terran McCanna
134 * Mike Rylander
135 * Chris Sharp
136 * Ben Shum
137 * Remington Steed
138 * Jason Stephenson
139 * Cesar Velez
140 * Dan Wells
141
142
143 Evergreen 3.0.3
144 ----------------
145 Upgrade Notes
146 ~~~~~~~~~~~~~
147 * The upgrade script for 3.0.3 contains a post-transaction command to forcibly
148 update the visibility attributes of all bibs that make use of Located URIs or
149 bib sources. It may take a while to run on large datasets.  If it it running
150 too long, it can be canceled and the following psql commands will create and
151 run a script that will perform the same action serially over time without
152 blocking writes to bibs:
153 ----
154 \t
155 \o /tmp/luri_visibility_update.sql
156 SELECT 'UPDATE biblio.record_entry SET ' ||
157   'vis_attr_vector = biblio.calculate_bib_visibility_attribute_set(id) ' ||
158   'WHERE id = ' || id || '; SELECT ' || id || ';'
159 FROM biblio.record_entry
160   WHERE id IN (
161             SELECT  DISTINCT cn.record
162               FROM  asset.call_number cn
163               WHERE NOT cn.deleted
164                     AND cn.label = '##URI##'
165                     AND EXISTS (
166                         SELECT  1
167                           FROM  asset.uri_call_number_map m
168                           WHERE m.call_number = cn.id
169                     )
170                 UNION
171             SELECT id FROM biblio.record_entry WHERE source IS NOT NULL
172
173         );
174 \o
175 \t
176 \i /tmp/luri_visibility_update.sql
177 ----
178
179 It will output the id of each updated bib so that the script can be killed
180 and then edited to remove completed bibs.  The remainder can be run at a
181 later time.
182
183 NOTE: When the internal flag 'ingest.reingest.force_on_same_marc' is enabled,
184 we do NOT update the bib's visibility attributes, as doing so causes a loop
185 and an eventual trigger stack violation.  This flag should ONLY be used when
186 forcing reingest of record attributes (NOT visibility attributes), search,
187 facet, and display fields, so if using this flag under normal operation,
188 proceed at your own risk and know that Located URI and bib source changes
189 will not be reflected in the visibility attributes of the record.
190
191 Bug Fixes
192 ~~~~~~~~~
193 This release contains several bug fixes improving on Evergreen 3.0.1:
194
195 * Fixes several issues related to the display of located URIs and records with
196 bib sources in search results.
197 * Setting `opac_visible` to false for a copy location group now hides only
198 the location group itself, rather than also hiding every single copy in the
199 group.
200 * Fixes a bug that prevented the copy editor from displaying the _fine level_
201 and _loan duration_ fields.
202 * The "Edit Items" grid action in the Item Status interface will now open
203 in the combined volume/copy editor in batch.  This makes the behavior
204 consistent with the "Edit Selected Items" grid action in the copy
205 buckets interface.
206 * Staff members are now required to choose a billing type when creating a
207 bill on a user account.
208 * The Web client now provides staff users with an alert and option to
209 override when an item with the Lost and Paid status is checked in.
210 * Fixes a bug where the Web client offline circ interface was not able
211 to set its working location.
212 * Fixes an issue that prevented the ADMIN_COPY_TAG permission from being
213 granted.
214 * The MARC editor in the Web staff client now presents bib sources in
215 alphabetical order.
216 * Both circulation and grocery bills are now printed when a staff user selects
217 a patron account and clicks "Print Bills".
218 * Fixes an issue in the XUL serials interface the "Receive move/selected"
219 action from succeeding.
220 * Fixes a typo in the user password testing interface.
221
222 Acknowledgements
223 ~~~~~~~~~~~~~~~~
224 We would like to thank the following individuals who contributed code,
225 tests and documentation patches to the 3.0.3 point release of
226 Evergreen:
227
228 * Jason Boyer
229 * Bill Erickson
230 * Kyle Huckins
231 * Jeanette Lundgren
232 * Kathy Lussier
233 * Michele Morgan
234 * Mike Rylander
235 * Jane Sandberg
236 * Remington Steed
237 * Cesar Velez
238 * Dan Wells
239
240
241
242 Evergreen 3.0.2
243 ----------------
244 This release contains several bug fixes improving on Evergreen 3.0.1:
245
246 * Copy templates created in XUL Holdings Maintenance will now be
247 automatically converted and displayed in the web staff client's
248 volume/copy editor.
249 * The list of report templates now includes a column indicating whether
250 the template was originally created in the XUL staff client or the web
251 staff client; staff need to know this since report templates created in
252 one interface cannot be edited in the other.
253 * Call number prefixes and suffixes are now displayed in various grids
254 in the web staff client, including
255 ** Pending Copy Buckets
256 ** Copy Buckets
257 ** Checkin/Capture Holds
258 ** Holds Shelf
259 ** Patron Bills History
260 ** Patron Checkout
261 ** Patron Holds
262 ** Patron Items Out
263 ** Copy Editor
264 ** In-House Uses
265 ** Renew Items
266 ** Bib Record View Holds
267 ** Transit List
268 * Many patron fields have been redacted from the web staff client's patron
269 and record holds grids, leaving patron name, username, and ID.
270 * Fixes two bugs where patron records could fail to be saved upon editing.
271 * The web staff patron editor now better warns staff users about
272 duplicate names, IDs, phone numbers, and email addresses.
273 * Human readable labels are now displayed for certain fields in standing
274 penalty records.
275 * The patron summary in the web staff client now correctly displays
276 primary and secondary ID values.
277 * The web staff client's billing full details page now displays
278 information about the staff user that created a payment.
279 * The web staff client now requires staff users to explicitly set a
280 billing type when adding a manual bill.
281 * The web staff client's patron bill annotation modal now works.
282 * Patron barcode search completion in the web staff client now allows
283 the user to select from all of the matching patron records.
284 * The Hold Shelf Slip print template in the web staff client now has
285 access to the call number.
286 * The Checkout Receipt print template in the web staff client now can
287 include summary financial information, incuding current balance, total
288 paid on outstanding fines, and total owed.
289 * The web staff print templates for current and historical bills can
290 now include copy barcode and title.
291 * Fixes a bug that resulted in some catalog searches unexpectedly
292 timing out.
293 * Fixes a bug that resulted in catalog searches that specify a location
294 limit returning incorrect results.
295 * Fixes a bug where deleted copies could make records visible in the
296 public catalog.
297 * Fixes a bug where certain queries on copies used in the public catalog
298 could be very slow.
299 * Fixes a bug place a hold request in the public catalog could result
300 in "forgetting" the type and library of the user's previous search.
301 * The web staff client now respects staff user session timeouts, and
302 will log out all open tabs if a user's session has timed out.
303 * The web staff Z39.50 page will now give the staff user an alert if
304 they attempt to import a record with a duplicate TCN.
305 * Fixes a bug that prevented copy notes, copy tags, and copy bucket
306 entries from being deleted.
307 * Fixes a bug that made using the volume/copy editor to change a copy's
308 price problematic.
309 * The administration interface for hard due dates now ensures that
310 new (or edited) ceiling dates have their time component set to end
311 of day, resolving an issue where ceiling dates would not be applied
312 during the ceiling date itself.
313 * The web staff client can now include dynamic information in browser
314 tab titles, e.g., "Smith, Jane - Checkout".
315 * The Concerto sample data set now includes data allowing for testing
316 placing holds on monographic parts.
317 * Asset merging during bibliographic record merging now correctly
318 recognizes call number prefixes and suffixes and deletes disused
319 call number records.
320 * Fixes a bug where displaying user surveys could result in PCRUD
321 drone starvation.
322 * Fixes a bug where pg_restore of an Evergreen database could fail
323 to create certain indexes on the `actor.usr` table.
324
325 Acknowledgements
326 ~~~~~~~~~~~~~~~~
327 We would like to thank the following individuals who contributed code,
328 tests and documentation patches to the 3.0.2 point release of
329 Evergreen:
330
331 * Andrea Neiman
332 * Alex Cautley 
333 * Angela Kilsdonk 
334 * Ben Shum 
335 * Bill Erickson 
336 * Blake Henderson
337 * Cesar Velez 
338 * Chris Sharp 
339 * Dan Scott 
340 * Dan Wells 
341 * Galen Charlton 
342 * Jane Sandberg 
343 * Jason Boyer 
344 * Jason Stephenson 
345 * Jeanette Lundgren 
346 * Jeff Davis 
347 * Jeff Godin 
348 * Kathy Lussier 
349 * Kyle Huckins 
350 * Michele Morgan 
351 * Mike Rylander 
352 * Remington Steed 
353 * Rogan Hamby 
354 * Skye Howard 
355 * Terra McCanna
356
357 Evergreen 3.0.1
358 ----------------
359 This release contains several bug fixes improving on Evergreen 3.0.0
360
361 * Fixes a bug in the web staff client that prevented initials from being
362 stored with copy notes.
363 * Adds billing types that may have been missed by systems that were 
364 running Evergreen prior to the 1.4 release.
365 * Fixes a web staff client bug with the CSV export option available from
366 the Import Queue in the MARC Batch Import/Export interface.
367 * Adds the missing copy alert field in the web client's volume/copy
368 editor.
369 * Fixes a bug where the setting to require date of birth in patron
370 registration was not being honored in the web staff client.
371 * Fixes a bug in the web staff client patron registration form where the 
372 password wasn't generating from the last four digits of the patron's
373 phone number.
374 * Fixes an issue in the web staff client where the complete barcode did
375 not display in some interfaces when partial barcodes were scanned.
376 * Fixes an HTML error in the new copy tags that display on the record
377 summary page.
378 * Fixes a web staff client bug where recording a large number of in-house
379 uses at one time doesn't display a confirmation dialog once it hits the 
380 correct threshold.
381 * Adds a _Print Full Grid_ action in the web staff client
382 holds pull list to allow staff to print the entire pull list as it
383 displays on the screen. This change also changes the _Export CSV_ action
384 to an _Export Full CSV_ option.
385 * Fixes an issue with the Patron Messages interface that prevented it
386 from saving column configuration changes in the web staff client.
387 * Fixes a bug in the web staff client where a billing prompt did not
388 correctly display after marking an item damaged in those systems that
389 have enabled the setting to bill for damaged items.
390 * Adds an option to the specific due date feature that allows saving
391 that due date until logout. This allows all circulations from a given
392 workstation to be due on the same date. 
393
394 Acknowledgements
395 ~~~~~~~~~~~~~~~~
396 We would like to thank the following individuals who contributed code,
397 tests and documentation patches to the 3.0.1 point release of
398 Evergreen:
399
400 * Jason Boyer
401 * Galen Charlton
402 * Bill Erickson
403 * Kyle Huckins
404 * Jeanette Lundgren
405 * Kathy Lussier
406 * Mike Rylander
407 * Jane Sandberg
408 * Chris Sharp
409 * Ben Shum
410 * Remington Steed
411 * Cesar Velez
412 * Dan Wells
413
414
415
416 3.0.0 Upgrade notes
417 -------------------
418
419 The minimum version of PostgreSQL required to run Evergreen 3.0 is
420 PostgreSQL 9.4. Evergreen 3.0 also requires OpenSRF 3.0.0 or later.
421
422 Change to Names of Shared Libraries
423 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
424 OpenSRF 3.0 changes how the shared libraries for services written in
425 C are named.  If upgrading from an earlier version of Evergreen,
426 `opensrf.xml` should be edited so that shared library file names
427 listed in the `<implementation>` tag start with "lib".  For example,
428
429 [source,sh]
430 ---------------------------------------------------------------------
431             <open-ils.cstore>
432                 <language>C</language>
433                 <implementation>oils_cstore.so</implementation>
434 ---------------------------------------------------------------------
435
436 should be changed to:
437
438 [source,sh]
439 ---------------------------------------------------------------------
440             <open-ils.cstore>
441                 <language>C</language>
442                 <implementation>liboils_cstore.so</implementation>
443 ---------------------------------------------------------------------
444
445 SIP Bugfix Requires SIPServer Upgrade
446 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
447
448 The fix for Launchpad Bug 1542495: "OpenILS::SIP::clean_text() can
449 crash" requires that you also upgrade SIPServer with the fix for
450 Launchpad Bug 1463943: "Non-ascii Unicode characters in messages cause
451 SIP client problems."  This means that if you use SIP2 with Evergreen,
452 you must also upgrade SIPServer to the latest commit in the Git
453 repository.  Conversely, if you upgrade SIPServer to the latest commit
454 in Git, you must also upgrade Evergreen or, at least, apply the patch
455 for Launchpad Bug 1542495.  These two patches are complementary and
456 cannot be applied independently of one another.
457
458 `open-ils.auth.login`
459 ~~~~~~~~~~~~~~~~~~~~~
460 The new `open-ils.auth.login` API must be added to the list of `<log_protect>`
461 API's in the `opensrf_core.xml` file.
462
463 Sample diff:
464
465 [source,sh]
466 ---------------------------------------------------------------------
467 --- a/Open-ILS/examples/opensrf_core.xml.example
468 +++ b/Open-ILS/examples/opensrf_core.xml.example
469 @@ -180,6 +180,7 @@ Example OpenSRF bootstrap configuration file for Evergreen
470      <log_protect>
471        <match_string>open-ils.auth.authenticate.verify</match_string>
472        <match_string>open-ils.auth.authenticate.complete</match_string>
473 +      <match_string>open-ils.auth.login</match_string>
474        <match_string>open-ils.auth_proxy.login</match_string>
475        <match_string>open-ils.actor.patron.password_reset.commit</match_string>
476        <match_string>open-ils.actor.user.password</match_string>
477 ---------------------------------------------------------------------
478
479 RTL CSS Stylesheet
480 ~~~~~~~~~~~~~~~~~~
481 Administrators of Evergreen who use RTL locales and who have customized
482 `style-rtl.css.tt2` should now incorporate their customizations into
483 `style.css.tt2`.
484
485 Multi-Time Zone Installations
486 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
487
488 For Evergreen consortia that span more than one time zone, the following
489 query will adjust all historical, unaged circulations so
490 that if their due date field is pushed to the end of the day, it is done
491 in the circulating library's time zone, and not the server time zone.
492
493 It is safe to run this after any change to library time zones.
494
495 Running this is not required, as no code before this change has
496 depended on the time string of '23:59:59'.  It is also not necessary
497 if all of your libraries are in the same time zone, and that time zone
498 is the same as the database's configured time zone.
499
500 [source,sql]
501 ----
502 DO $$
503 declare
504     new_tz  text;
505     ou_id   int;
506 begin
507     for ou_id in select id from actor.org_unit loop
508         for new_tz in select oils_json_to_text(value) from actor.org_unit_ancestor_setting('lib.timezone',ou_id) loop
509             if new_tz is not null then
510                 update  action.circulation
511                   set   due_date = (due_date::timestamp || ' ' || new_tz)::timestamptz
512                   where circ_lib = ou_id
513                         and substring((due_date at time zone new_tz)::time::text from 1 for 8) <> '23:59:59';
514             end if;
515         end loop;
516     end loop;
517 end;
518 $$;
519 ----
520
521
522 Deprecation of XUL staff client
523 -------------------------------
524 Starting with the release of 3.0.0, patches that fix XUL bugs will not
525 be merged into master or backported unless they meet one or more of
526 the following conditions:
527
528 a. the bug is a security issue
529 b. the bug involves the destruction of data
530 c. the bug is a regression of functionality in the XUL staff client
531    introduced by other work done to Evergreen
532
533 Under no circumstances will XUL staff client feature enhancements be merged.
534
535 This policy will continue through the 3.0.x and 3.1.x maintenance
536 release cycles, and will become moot upon the release of 3.2.0, when
537 the XUL staff client is slated to be entirely removed.
538
539
540 3.0.0 New Features
541 ------------------
542
543 New Staff Client
544 ~~~~~~~~~~~~~~~~
545
546 Evergreen 3.0 features a new, modern staff client that runs in the web browser
547 and can be used on desktop and mobile devices. All functional areas of the 
548 system, including circulation, cataloging, acquisitions, serials, reports,
549 booking, administration, and offline circulation, are available in the new staff 
550 client. Chrome and Firefox are officially supported for use with the web client.
551
552 Library staff will no longer need to download separate software to perform most 
553 actions in Evergreen. A Chrome plugin called Hatch will be available as a 
554 separate installation for workstations that require seamless, dialog-free
555 printing to multiple printers.  
556
557 In addition to adding more portability and stability, the new staff client also
558 presents a cleaner and more modern interface for users. By virtue of running in
559 a browser, actions that users are accustomed to performing on other web sites
560 should now be available in the Evergreen client.
561
562 The old, XUL client will continue to be available to allow for a gradual 
563 transition to the browser-based client, but no new features will be added. The
564 old client will totally be removed from Evergreen in the Fall 2018 3.2.0
565 release.
566
567
568
569 Administration
570 ~~~~~~~~~~~~~~
571
572
573
574 New EDI Order Generator 
575 ^^^^^^^^^^^^^^^^^^^^^^^
576
577 Configuration
578 +++++++++++++
579
580 . New database tables exist for configuring vendor-specific EDI order 
581 attributes.
582
583  * `acq.edi_attr .
584   ** List of EDI order generation toggles, e.g. "INCLUDE_COPIES" to add 
585      GIR segments
586  * `acq.edi_attr_set`
587   ** Collection of `edi_attr`s.  Each edi_account may be linked to one
588      `edi_attr_set`.
589   ** One `edi_attr_set` per known vendor is added to the stock data, matching
590      the stock configuration found in the JEDI template.
591  * `acq.edi_attr_set_map`
592   ** Link between `edi_attr`s and `edi_attr_set`s.
593
594 . EDI Attribute Sets are manged via a new (browser client only) configuration
595   interface at 'Administration -> Acquisitions Administration -> EDI
596   Attribute Sets'.
597
598 . Each `acq.edi_account` should be linked to an `acq.edi_attr_set`.  If a link
599   is not set, default values will be used.  Links between an EDI account
600   and an attribute set are managed in the EDI Accounts configuration 
601   interface.
602
603 . Local modifications to the stock EG JEDI template are managed by modifying
604   and/or adding additional `edi_att_set`s as needed.
605
606 . A new `edi_order_pusher.pl` script is added which replaces the functionality
607   of `edi_pusher.pl`.  `edi_pusher.pl` is still available.
608
609 . After moving to `edi_order_pusher.pl`, the JEDI Action/Trigger event
610   definition is no longer required and can be disabled.
611
612 Migration
613 +++++++++
614
615 EDI accounts have a new boolean field 'Use EDI Attributes' (`use_attrs`) that
616 specifies whether PO's generated via the account should be built using 
617 EDI attributes or fall back to traditional JEDI A/T template generation.
618
619 This allows sites to activate EDI attributes on a per-account basis, making 
620 it possible to migrate piecemeal to EDI attributes.  For the initial roll
621 out of this new feature, no accounts will be configured to use EDI 
622 attributes by default.  
623
624
625
626
627
628 3 Day Courtesy Notice by SMS
629 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
630 New optional SMS text notification to be sent out 3 days prior to the due
631 date of any circulating item for patrons who have an SMS text number and
632 carrier stored in their accounts. This action trigger is disabled by default,
633 but can be enabled and modified by going into 'Administration -> Local Administration ->
634 Notifications / Action Triggers'.
635
636 You may wish to make use of granularity so that these messages are batched
637 and sent at the same time each day.
638
639
640
641
642 Add Description Field to Circulation and Hold Configuration Entries
643 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
644 The circulation and hold policy configuration rules now each have a
645 description field. This allows administrators to add comments to
646 describe the purpose of each rule.
647
648
649
650
651 Apache Internal Port Configuration Option
652 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
653 Apache configuration now supports a new variable which allows admins to
654 specify the port used by Apache to handle HTTP traffic.  The value is
655 used for HTTP requests routed from Perl handlers back to the same Apache
656 instance, like added content requests.  Use this when running Apache
657 with a non-standard port, typical with a proxy setup.  Defaults to "80".
658
659 [source,conf]
660 -------------------------------------------------------------------
661 <Location /eg>
662     ...
663     PerlSetVar OILSWebInternalHTTPPort "7080"
664     ...
665 </Location>
666 -------------------------------------------------------------------
667
668
669
670
671 Configurable Bib Record Display Fields
672 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
673
674 'Administration -> Server Administration -> MARC Search/Facet Fields' have 2 new configuration 
675 fields: 'Display Field?' and 'Display XPath'.
676
677 When 'Display Field' is set to true, data from the field will be extracted
678 from each record and added to a new table of display data for each bib 
679 record.  
680
681 If a value is present in the 'Display XPath' field, this XPath will be
682 applied to the extracted data *after* the base XPath (from the 'XPath' 
683 field) is applied to each field.
684
685 This data acts as a replacement for the various and sundry ways bib record 
686 data is currently extracted, including inline XPath in the TPAC, reporter 
687 views, real-time 'MVR' compilation from MODS, etc. and will be available
688 to the user interface, notification templates, etc. for rendering bib 
689 records.  
690
691 The browser client gets a new service 'egBibDisplay' which is capable
692 of translating the display field data from various formats into 
693 data more suitable for JavaScript usage.
694
695 The database gets 3 new views for representing display data in various
696 formats:
697
698  * `metabib.flat_display_entry`
699   ** List of all display fields linked to their configuration.
700  * `metabib.compressed_display_entry`
701   ** Same as `metabib.flat_display_entry` except there's one row
702      per display field type, with 'multi' rows compressed into
703      JSON arrays.  Non-multi fields are represented as JSON 
704      strings/numbers.
705  * `metabib.wide_display_entry`
706   ** Tabular view of display field data, one column per well-known
707      field.  Values are represented JSON, consistent with 
708      `metabib.flat_display_entry`.  The view does *not* contain locally
709      configured display fields, as each field must be encoded in
710      the view and IDL definition.  This is essentially a replacement 
711      for `reporter.simple_record`.
712
713 Reingesting
714 +++++++++++
715
716 After making changes to display field configuration, it's possible to 
717 reingest only display field data in the database using the following:
718
719 [source,sql]
720 ---------------------------------------------------------------------
721 SELECT metabib.reingest_metabib_field_entries(id, TRUE, FALSE, TRUE, TRUE, 
722   (SELECT ARRAY_AGG(id)::INT[] FROM config.metabib_field WHERE display_field))
723   FROM biblio.record_entry WHERE NOT deleted AND id > 0;
724 ---------------------------------------------------------------------
725
726
727
728
729
730 Fix COPY_STATUS_LONGOVERDUE.override Permission Typo
731 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
732 The existing permission was incorrectly created with a code of
733 `COPY_STATUS_LONGOVERDUE.override`, while the event thrown requires a
734 permission with a code of `COPY_STATUS_LONG_OVERDUE.override`.  This
735 update changes the permission code to match what the event requires.
736
737
738
739
740
741 Hold Targeter V2 Repairs and Improvements
742 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
743 * Make the batch targeter more resilient to a single-hold failure.
744 * Additional batch targeter info logging.
745 * Set `OSRF_LOG_CLIENT` in `hold_targeter_v2.pl` for log tracing
746 * Removes the confusingly named `--target-all` option
747  ** The same behavior can be achieved by using `--retarget-interval "0s"`
748 * Removes `--skip-viable` (see `--soft-retarget-interval` below)
749
750 New --next-check-interval Option
751 ++++++++++++++++++++++++++++++++
752 Specify how long after the current run time the targeter will retarget
753 the currently affected holds. Applying a specific interval is useful
754 when the retarget-interval is shorter than the time between targeter
755 runs.
756
757 For example, if the targeter is run nightly at midnight with a
758 `--retarget-interval 36h`, you would set `--next-check-interval` to `48hr`,
759 since the holds won't be processed again until 48 hours later. This
760 ensures that the org unit closed date checks are looking at the correct
761 date. 
762
763 This setting overrides the default behavior of calculating the next 
764 retarget time from the retarget-interval.
765
766 New --soft-retarget-interval Option
767 +++++++++++++++++++++++++++++++++++
768 This is a replacement for (and rebranding of) the `--skip-viable` option. 
769 The new option allows for time-based soft-targeting instead simple binary 
770 on/off soft-targeting.
771
772 How soft-targeting works:
773
774 * Update hold copy maps for all affected holds
775 * Holds with viable targets (on the pull list) are otherwise left alone.
776 * Holds without viable targets are retargeted in the usual manner. 
777
778
779
780
781
782 New marc_export --descendants Option
783 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
784
785 The `marc_export` script has a new option, `--descendants`.  This option
786 takes one argument of an organizational unit shortname.  It works much
787 like the existing `--library` option except that it is aware of the
788 org. tree and will export records with holdings at the specified
789 organizational unit and all of its descendants.  This is handy if you
790 want to export the records for all of the branches of a system.  You
791 can do that by specifying this option and the system's shortname,
792 instead of specifying multiple `--library` options for each branch.
793
794 The `--descendants` option can be repeated, as the `--library` option can.
795 All of the specified org. units and their descendants will be included
796 in the output.  It can also be combined with individual `--library`
797 options when necessary.
798
799
800
801
802 RTL and LTR Public Catalog Stylesheets Merged
803 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
804 The RTL stylesheet for the public catalog,
805 `templates/opac/css/style-rtl.css.tt2`, has been merged into the LTR
806 one (`templates/opac/css/style.css.tt2`). The combined stylesheet
807 template will provide RTL or LTR styles based on the value of
808 the `rtl` flag of the active locale. An `rtl` variable is also available
809 in the template to allow the correct style to be chosen.
810
811
812
813
814 Miscellaneous Improvements
815 ^^^^^^^^^^^^^^^^^^^^^^^^^^
816
817  * If a filter is in effect in the Library Settings Editor,
818    the filter will continue to be applied after a user 
819    changes the selected library.
820  * Copy templates used for serials now correctly link to age
821    protection rules and MARC item type values (for the
822    "Circ as Type" field). During upgrade, the database update
823    will set to NULL any age protection and circ as type fields
824    in serial copy templates that do not point to defined values.
825
826
827
828
829 Obsolete Internal Flag Removed
830 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
831
832 An obsolete and unused `ingest.disable_metabib_field_entry` internal
833 flag was removed from the `config.internal_flags` table.  It was
834 rendered obsolete by the addition of the 3 flags to control the
835 browse, search, and facet indexing.
836
837
838
839
840 Tweaks to Caching/Expiry of Public Catalog Assets
841 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
842 The default cache expiration time for static assets (e.g.,
843 CSS, image, and JavaScript files) in the public catalog and
844 the Kid's PAC has been increased to one year. Links to all
845 such assets now have a cache-busting value tacked on as a
846 query parameter. This value is refreshed when `autogen.sh` is
847 run, but it can also be manually set by adjusting the
848 `ctx.cache_key` Template Toolkit variable.
849
850
851
852
853 Action/Trigger Events Data Purging
854 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
855
856 Action/Trigger event definitions have a new field called 'Retention 
857 Interval'.  When an optional interval value is applied, events and
858 template output data linked to the event definition will be deleted
859 from the database once they reach the specified age.
860
861 Retention Interval Restrictions for Passive Hooks
862 +++++++++++++++++++++++++++++++++++++++++++++++++
863
864 Restrictions are placed on retention interval values for event definitions
865 using passive hooks to prevent data from being deleted while it's still
866 needed by the system.
867
868 The presence of event data is how the system knows not to send duplicate
869 events.  As long as a scenario exists where a duplicate event may be
870 generated, the events must be retained.
871
872 To apply a retention interval value to a passive-hook event definition:
873
874  * The event definition must have a max_delay value.
875  * The retention interval must be larger than the difference between
876    the `delay` and `max_delay` values.
877
878 For example, if the `delay` is 7 days and `max_delay` is 10 days, the retention
879 interval must be greater than 3 days to ensure no duplicate events are 
880 created between the first event on day 7 and the end of the event validity
881 window on day 10.
882
883 Deployment
884 ++++++++++
885
886 A new `purge_at_events.sh` script is installed in the bin directory
887 (typically `/openils/bin`) which should be added to CRON for regular
888 maintenance.
889
890 NOTE: On large data sets, this script can take a long time to run and
891 create higher than normal I/O load as it churns though the event and
892 event_output tables.  You may wish to run the script by hand the first
893 time so it can be monitored.  It can be run in psql like so:
894
895 [source,sql]
896 ---------------------------------------------------------------
897 SELECT action_trigger.purge_events();
898 ---------------------------------------------------------------
899
900 NOTE: On *very* large data sets (10s to 100s of millions of event and
901 event_output rows), it may be advisable to first repopulate the `event`
902 and `event_output` tables with only the desired data before starting
903 regular purges.  This can be done, for example, using the copy to temp
904 table, truncate source table, repopulate source table from temp table
905 approach.  This will be much faster than the `purge_events()` function
906 in cases where most of the data will be purged.
907
908 Hook Data Cleanup
909 +++++++++++++++++
910
911 A number of `action_trigger.hook` entries which have always been treated
912 as active hooks, though are configured as passive hooks, have been 
913 updated to properly reflect the non-passive-ness.  This allows for 
914 simpler configuration of their retention interval values.
915
916
917
918
919
920 Remove JSPAC Redirects
921 ^^^^^^^^^^^^^^^^^^^^^^
922 Future versions of Evergreen will no longer contain automatic redirects
923 from JSPAC URLs to TPAC URLs, with the exception of `myopac.xml`, given
924 that the JSPAC is no longer supported.  Existing sites, however, may
925 wish to retain JSPAC redirects in their Apache configuration files since
926 JSPAC URLs may still be used in the wild to access their catalogs.
927
928 The original JSPAC URL redirects are all retained in the file 
929 `Open-ILS/examples/jspac_redirects.conf` for reference.
930
931
932
933
934 API
935 ~~~
936
937
938
939 New open-ils.auth.login API
940 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
941 The `open-ils.auth` service has a new API for requesting an authentication
942 token.  It performs the same steps as the 
943 `open-ils.auth.authenticate.init` and `.complete` APIs in a single call,
944 using the bare password.  No intermediate password hashing is required.
945
946 The paramaters are the same as the `.complete` call with a few modifications.
947
948 1. Using the generic 'identifier' parameter in combination with the
949    'org' parameter allows the API to reliably determine if an identifier
950    value is a username or barcode.  The caller is no longer required to 
951    make that determination up front.  
952
953 2. The 'nonce' parameter is no longer used.
954
955
956
957
958
959 Batch Patron Contact Invalidation
960 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
961 The following methods are used to mark patron contact fields
962 as invalid by moving the invalid value to a standing penalty:
963
964  * `open-ils.actor.invalidate.email`
965  * `open-ils.actor.invalidate.day_phone`
966  * `open-ils.actor.invalidate.evening_phone`
967  * `open-ils.actor.invalidate.other_phone`
968
969 These methods now accept a fifth argument specifying the value
970 of the contact field, e.g., a specific phone number or email
971 address. If supplied, and if a specific patron ID (the first
972 argument) is not supplied, all patrons with that specific contact
973 value will have it marked invalid.
974
975
976
977
978 Architecture
979 ~~~~~~~~~~~~
980
981
982
983 Pure-SQL catalog searching
984 ^^^^^^^^^^^^^^^^^^^^^^^^^^
985 Public and staff catalog search is now both more accurate and faster
986 by redesigning how the visibility of records is calculated.
987
988
989
990
991 Cataloging
992 ~~~~~~~~~~
993
994
995
996 Authority Record and Headings Browse Improvements
997 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
998 Various improvements are made to support for authority records
999 and headings browsing:
1000
1001  * The MARC to MADS XSLT stylesheet is now used as part of parsing
1002    headings from authority records. Since the MODS and MADS stylesheets
1003    extract headings in similar ways, duplicate browse entries are now
1004    much less likely to occur.
1005  * A new configuration table, `authority.heading_field`, is now used
1006    to specify how headings should be extracted from authority records.
1007  * Related headings can now be identified as narrower or broader when
1008    browsing in the public catalog.
1009  * See references are now more reliably included in the browse list.
1010  * Scope (public) notes now display only under the main heading.
1011  * There is now a global flag, Display related headings (see-also) in browse,
1012    that can be used to control whether related headings (see-alsos) are
1013    displayed in the public catalog list.
1014  * A complete set of thesauruses are now included in the seed data.  Thesauruses
1015    can now be identified using short and long codes.
1016  * The labels for see and see-also references in the public catalog are 
1017    a bit more patron-friendly, and can now be tweaked via TPAC template
1018    customization in the browse.tt2 file.
1019
1020
1021
1022
1023
1024 Copy Tags and Digital Bookplates
1025 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1026 Copy tags will allow staff to apply custom, pre-defined labels or tags
1027 to copies.  Copy tags are searchable in both the staff client and public
1028 catalog.  This feature was designed to be used for Digital Bookplates to
1029 attach donation or memorial information to copies, but may be used for
1030 broader purposes to tag items.
1031
1032 Each copy tag can either be publicly-visible or visible only to staff.
1033 Copy tags also have types that can be used for restricting catalog
1034 searches on copy tags to particular types.
1035
1036 Copy tags are displayed in the copy table in the record summary page in
1037 the public catalog, and a new library setting can be used to add
1038 a "Digital Bookplate" search field.  Copy tags can also be used
1039 as a search filter, e.g.,
1040
1041   * `copy_tag(bookplate, jane smith)`: search for records that have a
1042     copy tag of type 'bookplate' whose value contains 'jane smith'.
1043   * `copy_tag(*, jane smith)`: search for records that have a
1044     copy tag of any type whose value contains 'jane smith'.
1045
1046 All staff-side interfaces related to copy tags exist only in the web
1047 staff client.  There are two new administration interfaces for managing
1048 copy tags and copy tag types. The copy editor now has a 'Copy Tags'
1049 button for applying copy tags to copies; that interface can also be
1050 used to create new copy tags on the fly. Furthermore, the copy buckets
1051 interface now has an 'Apply Tags' action for assigning tags to groups
1052 of copies.
1053
1054 Permissions
1055 +++++++++++
1056
1057 Two new permission are included:
1058
1059   * `ADMIN_COPY_TAG_TYPES`: required to create a new tag type under
1060      'Administration -> Server Administration -> Copy Tag Types'
1061   * `ADMIN_COPY_TAG`: required to create a new tag under
1062     'Administration -> Local Administration -> Copy Tags'
1063
1064 The existing permission `UPDATE_COPY` controls whether or not a user
1065 can link copies to tags.
1066
1067 Library Settings
1068 ++++++++++++++++
1069 A new library setting, 'Enable Digital Bookplate Search', controls
1070 whether to display a 'Digital Bookplate' field in the search index
1071 drop-downs in the catalog. A 'Digital Bookplate' search will include
1072 all records that have a copy that matches the tag specified by the user.
1073 It should be noted that this library setting does not affect the
1074 display of copy tags on the catalog record summary page.
1075
1076
1077
1078
1079 Include Call Number Prefixes and Suffixes in Export and Z39.50 output
1080 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1081 The call number prefix and suffix, when present, are now included in
1082 subfields $k and $m of the 852 field when running `marc_export` with
1083 the `--items` switch. Similarly, when using Evergreen as a Z39.50
1084 server configured to embed item data in 852 fields, the affixes are now
1085 included in subfields $k and $m.
1086
1087
1088
1089
1090 Circulation
1091 ~~~~~~~~~~~
1092
1093
1094
1095 Batch Editing of Patron Records
1096 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1097 There is a now a new interface analogous to the Copy Bucket interface
1098 to select and group a set of users into a User Bucket.
1099 The addition of users to a User Bucket is possible from the Patron Search
1100 interface by the use of a new grid Action, and directly on the User Bucket
1101 interface by user barcode. It is also possible to add users to a User
1102 Bucket by uploading a text file that contains a list of user barcodes.
1103
1104 From this interface it is possible to perform a set of specific batch update
1105 operations on user records.
1106
1107 Editing Users
1108 +++++++++++++
1109
1110 These fields can now be changed in batch via an action on the User Bucket
1111 grid if the staff user has the `UPDATE_USER` permission:
1112
1113  * Active flag
1114  * Primary Permission Group (group application permissions consulted)
1115  * Juvenile flag
1116  * Home Library (`UPDATE_USER` checked against both old and new value)
1117  * Privilege Expiration Date
1118  * Barred flag (`BAR_PATRON` permission consulted)
1119  * Internet Access Level
1120
1121 Changes made in this interface can be rolled back.
1122
1123 As a batch process, rather than a direct edit, this mechanism explicitly skips
1124 processing of Action/Trigger event definitions for user update.
1125
1126 Deleting Users
1127 ++++++++++++++
1128
1129 The batch edit mechanism also allows for the batch deletion of user.  The staff
1130 user must have both the `UPDATE_USER` and `DELETE_USER` permissions.
1131
1132 Changes made in this interface can be rolled back.
1133
1134 As a batch process, rather than a direct edit, this mechanism explicitly skips
1135 processing of Action/Trigger event definitions for user deletion.
1136
1137 This mechanism does not use the Purge User functionality, but instead simply
1138 marks the users as deleted.
1139
1140 Editing Statistical Category Entries
1141 ++++++++++++++++++++++++++++++++++++
1142
1143 All users in the bucket can have their Statistical Category Entries
1144 modified. Unlike user data field updates, modification of Statistical
1145 Category Entries is permanent and cannot be rolled back.
1146
1147 As a batch process, rather than a direct edit, this mechanism explicitly skips
1148 processing of Action/Trigger event definitions for user update.
1149
1150 New Service Requirement
1151 +++++++++++++++++++++++
1152
1153 This new functionality makes use of the QStore service (`open-ils.qstore`), which was previously
1154 unused in production.  If this service has been removed from the configuration
1155 of a live Evergreen instances, it will need to be added back in order for
1156 batch user editing to succeed.
1157
1158
1159
1160
1161 Honor Timezone of the Acting Library
1162 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1163
1164 Summary
1165 +++++++
1166
1167 * Display day-granular due dates in the circulating library's timezone.
1168 * Only display the date portion of the due date for day-granular circulations.
1169 * Display the full timestamp, in the client's timezone rather than the circulation library's, for hourly circulations.
1170 * Provide infrastructure for more advanced formatting of timestamps.
1171 * Override the built-in AngularJS date filter with an implementation that uses moment.js, providing consistency and better standards compliance.
1172
1173 Details
1174 +++++++
1175
1176 This is a followup to the work done for 2.12, where we added the ability
1177 for the client to specify a timezone in which timestamps should be interpreted
1178 in business logic and the database.
1179
1180 Most specifically, this work focuses on circulation due dates and the closed
1181 date editor. Due dates, where displayed using stock templates (including
1182 receipt templates) and used for fine calculation, are now manipulated in the
1183 library's configured timezone. This is controlled by the new 'lib.timezone'
1184 setting available via the Library Settings Editor, loaded from the server when
1185 required. Additionally, closings are recorded in the library's timezone so that
1186 due date calculation is more accurate. The closed date editor is also
1187 taught how to display closings in the
1188 closed library's timezone. Closed date entries also explicitly record if they
1189 are a full day closing, or a multi-day closing. This significantly simplifies
1190 the editor, and may be useful in other contexts.
1191
1192 To accomplish this, we use the moment.js library and the moment-timezone addon.
1193 This is necessary because the stock AngularJS date filter does not understand
1194 locale-aware timezone values, which are required to support DST. A simple
1195 mapper translates the differences in format values from AngularJS date to
1196 moment.js.
1197
1198 Of special note are a set of new filters used for formatting timestamps under
1199 certain circumstances. The new egOrgDateInContext, egOrgDate, and egDueDate
1200 filters provide the functionality, and autogrid is enhanced to make use of
1201 these where applicable. egGrid and egGridField are also taught to accept
1202 default and field-specific options for applying date filters. These filters may
1203 be useful in other or related contexts.
1204
1205 The egDueDate filter, used for all existing displays of due date via Angular
1206 code, intentionally interprets timestamps in two different ways WRT timezone,
1207 based on the circulation duration. If the duration is day-granular (that is,
1208 the number of seconds in the duration is divisible by 86,400, or 24 hours worth
1209 of seconds) then the date is interpreted as being in the circulation library's
1210 timezone. If it is an hourly loan (any duration that does not meet the
1211 day-granular criterium) then it is instead displayed in the client's timezone,
1212 just as all other timestamps currently are, because of the previous Evergreen
1213 timezone work.
1214
1215 The public catalog is adjusted to always display the due date in the circulating
1216 library's timezone. Because the public catalog displays only the date portion of the due
1217 date field, this difference is currently considered acceptable. If this proves
1218 to be a problem in the future, a minor adjustment can be made to match the
1219 egDueDate filter logic.
1220
1221 Now that due dates are globally stored in the configured timezone of the
1222 circulating library, the automatic adjustment to day-granular due dates needs
1223 to take those timezones into account.
1224
1225 An optional SQL command is provided by the upgrade script to retroactively
1226 adjust existing due dates after library configuration is complete.
1227
1228
1229
1230
1231
1232 Enhancements to Hard Due Date Functionality
1233 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1234 It will now be possible to delete Hard Due Date Values for dates that have
1235 passed. Also, the Hard Due Date updater will no longer change Ceiling Dates
1236 to a past date. This allows editing Ceiling Dates directly in a Hard Due Date
1237 as well as scheduling Ceiling Date changes via Hard Due Date Values.
1238
1239
1240
1241
1242 Patron Search by Birth Date
1243 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1244 * Now you can include the patron birth year and/or birth month and/or
1245   birth day when searching for patrons using the web staff client.
1246 * Day and month values are exact matches.  E.g. month "1" (or "01")
1247   matches January, "12" matches December.
1248 * Year searches are "contains" searches.  E.g. year "15" matches 2015,
1249   1915, 1599, etc.  For exact matches use the full 4-digit year.
1250
1251
1252
1253 Patron Search from Place Hold
1254 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1255 This feature allows staff members, when placing a
1256 hold on behalf of a patron in the web staff client, to search for
1257 patrons by names and other searchable patron information, rather than
1258 relying on barcode alone. In particular, after performing a catalog
1259 search or going to a specific bib record and clicking the 'Place Hold'
1260 button, the form now includes a 'Patron Search' button. This button
1261 will open a dialog allowing the staff member search for and select
1262 a patron record.
1263
1264
1265
1266
1267 Retrieve Recent Patrons 
1268 ^^^^^^^^^^^^^^^^^^^^^^^
1269
1270 Adds a new library setting 'Number of Retrievable Recent Patrons' 
1271 ('ui.staff.max_recent_patrons') that specifies the number of recently
1272 retrieved patrons that can be re-fetched from the staff client.
1273
1274 A value of 0 means no recent patrons can be retrieved.
1275 A value greater than 1 means staff will be able to retrieve multiple
1276 recent patrons via a new Circulation 'Retrieve Recent Patrons' menu entry.
1277
1278 The default value is 1 for backwards compatibility.
1279
1280
1281
1282
1283
1284
1285 Fuller title in XUL client Simplified Pull List
1286 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1287 The Simplified Pull List in the XUL client will now display subfields 245$n and
1288 $p in the title field. The addition will make it easier for staff to distinguish
1289 between different parts or seasons in a series.
1290
1291
1292
1293
1294
1295 Transit Cancel Time and Terminology Change
1296 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1297
1298 Transit Cancel Time
1299 +++++++++++++++++++
1300
1301 Previously, Evergreen deleted canceled (aborted) transits from the database.  Now
1302 the rows in `action.transit_copy`, `action.hold_transit_copy`, and `action.reservation_transit_copy`
1303 are preserved in the database, though still not visible to the end user in the staff client.
1304 This allows for better tracking of when transits are canceled for the purposes of knowing
1305 which staff member canceled the transit, etc.
1306
1307 NOTE: This change may require the re-creation of transit reports to filter out canceled
1308 transits from the results.  Cloning the template and adding a 'Base Filter' of 'Cancel Time 
1309 Is NULL' will suffice.
1310
1311 "Canceled Transit" Terminology Change
1312 +++++++++++++++++++++++++++++++++++++
1313
1314 The term "abort" has been replaced with "cancel" in all of the affected user interfaces.
1315 For internal continuity, however, the following permission codes have not changed:
1316
1317  * `ABORT_TRANSIT`
1318  * `ABORT_REMOTE_TRANSIT`
1319  * `ABORT_TRANSIT_ON_LOST`
1320  * `ABORT_TRANSIT_ON_MISSING`
1321
1322
1323
1324
1325 Client
1326 ~~~~~~
1327
1328 Offline Circulation Available in Web Staff Client
1329 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1330 Offline circulation is now available in the web staff client. In order to use the
1331 offline interface, users must first log into the web staff client, perform
1332 a patron search, select a user from the results, and open the patron editor
1333 interface to collect all the relevent configuration information for the 
1334 workstation. In addition, the offline interface available from the Circulation
1335 menu provides a 'Download block list' button for users who are logged in.
1336
1337 As is the case in the old staff client, users can check materials in and out,
1338 renew items, and create new patron accounts while offline. The patron fields
1339 available in the offline patron registration editor are the same ones that
1340 are available to staff when working online.
1341
1342
1343
1344 Add Circ Modifier to Record Detail Page in Staff TPAC
1345 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1346 The circulation modifier field is added to the table of copies to make
1347 more information available to staff without having to open
1348 the Holdings View.
1349
1350
1351
1352
1353
1354 Date+Time Format Settings for Web Client
1355 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1356
1357 This change deprecates the existing 'Format Dates' and 'Format Times' settings
1358 and adds two settings for use with the webstaff client:
1359
1360   * 'Format Dates with this pattern'
1361   * 'Format Date+Time with this pattern'
1362
1363 These settings use format strings as documented here:
1364
1365 https://docs.angularjs.org/api/ng/filter/date
1366
1367 There is overlap with how the Dojo formats worked, but also some differences.
1368
1369 The original 'Format Dates' and 'Format Times' settings worked together, but the
1370 new settings work independently.  Certain field elements will use one, and
1371 certain field elements will use the other.  These distinctions are hard-coded
1372 in the various UI templates, with the idea being that timestamp fields in
1373 which the date component alone is sufficient information (for example, date of birth)
1374 will use the 'Format Dates' setting.  Fields where the time component is
1375 important (for example, checkout time) will use the 'Format Date+Time' setting.
1376
1377 When the settings 'Format Dates' and 'Format Date+Time' are unset, we will default
1378 to "shortDate" (M/d/yy) and "short" (M/d/yy h:mm a), respectively.
1379
1380
1381
1382
1383
1384 Global Option to Remove Sound for a Specific Event
1385 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1386 A new `nosound.wav` file has been added to the web client. The file can be used
1387 to globally disable audio alerts for a specific event on an Evergreen system.
1388
1389 For example, to silence the alert that sounds after a successful patron search:
1390
1391 [source,sh]
1392 ----
1393 mkdir -p /openils/var/web/audio/notifications/success/patron/
1394 cd /openils/var/web/audio/notifications/success/patron/
1395 ln -s ../../nosound.wav by_search.wav
1396 ----
1397
1398
1399 Documentation
1400 ~~~~~~~~~~~~~
1401
1402 The official Evergreen manual has been split into eight new manuals, each
1403 designed for a specific audience. This new approach is designed to make
1404 the documentation more readable and usable.
1405
1406 The specific audiences for the new manuals are:
1407
1408 * Acquisitions staff
1409 * Circulation staff
1410 * Cataloging staff
1411 * Public services staff who use the public catalog
1412 * Serials staff
1413 * System administrators who use the command line
1414 * System administrators who use the Web client
1415 * System administrators and programmers who wish to integrate Evergreen
1416 with other technologies
1417
1418 All manuals are available at http://docs.evergreen-ils.org
1419
1420
1421 Public catalog
1422 ~~~~~~~~~~~~~~
1423
1424 Improvements to ebook API
1425 ^^^^^^^^^^^^^^^^^^^^^^^^^
1426
1427 Evergreen now supports checking out and placing holds on
1428 OverDrive and OneClickdigital ebook titles from within the public
1429 catalog.  This is an experimental feature.  It is not recommended for production
1430 use without careful testing.
1431
1432 When ebook integration is enabled, a "Check Out E-Item" link will be
1433 displayed when viewing an ebook title from a supported vendor in the
1434 catalog.  Clicking on the link allows the user to check out and download
1435 that title from the vendor directly within the catalog.
1436
1437 If no copies are available for the title, a "Place Hold on E-Item" link
1438 is displayed instead, and the user may place a hold on the title.  (Note
1439 that some vendors require the user's account to have an email address
1440 before permitting a hold.)
1441
1442 My Account includes the ability to view current ebook checkouts and
1443 holds, download already-checked-out titles, and cancel holds.
1444
1445 For API integration to work, you need to request API access from the
1446 vendor, and the vendor must have a way of authenticating your patrons.
1447 Your Evergreen system also needs to be configured for ebook API
1448 integration, following the instructions in the command line system
1449 administration manual
1450
1451
1452 This feature assumes that you are importing MARC records supplied by the
1453 vendor into your Evergreen system, using Vandelay or some other MARC
1454 import method.  This feature does not search the vendor's online
1455 collections or automatically import vendor records into your system; it
1456 merely augments records that are already in Evergreen.
1457
1458 Improvements to Bill Payment Pages
1459 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1460 The bill payment pages in the public catalog have been revamped
1461 to
1462
1463  * use the term "charges" instead of "fees"
1464  * include images of credit cards accepted
1465  * make the default print receipt template match other itemized receipts;
1466    note that this change is not automatically applied when upgrading.
1467  * display billing type
1468  * add button to pay only selected charges
1469  * reformat the credit card number input page
1470
1471
1472
1473
1474
1475 Clickable Copy Locations
1476 ^^^^^^^^^^^^^^^^^^^^^^^^
1477 Adds a URL field to the copy locations editor. When a URL is entered in this field, 
1478 the associated copy location will display as a link in the public catalog summary display.
1479 This link can be useful for retrieving maps or other directions to the copy
1480 location to aid users in finding material.
1481
1482
1483
1484
1485 Download Checkout History CSV Fixed for Large Number of Circulations
1486 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1487 Downloading checkout history as a CSV from My Account has been fixed
1488 for users with a large circulation history.  Previously, this would
1489 time out for patrons with more than 100 or so circulations.
1490
1491 This feature no longer uses the action/trigger mechanism and the public catalog
1492 now generates the CSV directly.  The old action/trigger code is still
1493 present in the database and should be removed at some point in the
1494 near future.
1495
1496
1497
1498
1499 Google Books Preview Rewrite
1500 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1501 The Google Books Preview functionality in record detail pages has been
1502 rewritten to modernize its style and optimize its performance:
1503
1504 * The Dojo JavaScript framework is no longer used, saving approximately
1505   150K of JavaScript and CSS and four network requests per page load.
1506 * The Embedded Viewer is not loaded unless a possible preview is found,
1507   saving more network and memory overhead.
1508 * The Google Books Loader is used to load the Embedded Viewer instead of the
1509   https://productforums.google.com/forum/#!topic/books-api/lZrq5cWKrTo;context-place=forum/books-api[deprecated
1510   Google Loader].
1511 * All variables are self-contained and do not pollute the global namespace.
1512 * Event listeners are registered to handle clicks, rather than attaching
1513   `href="javascript:function()"` to <a> elements.
1514 * Book previews are displayed in a panel sized according to the viewport
1515   of the browser, improving its appearance on both mobile and desktop
1516   browsers.
1517 * The rewritten code is now served up directly from
1518   `/js/ui/default/opac/ac_google_books.js` rather than as a TT2 template.
1519
1520
1521
1522
1523 jQuery for the Public Catalog
1524 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1525 This release adds optional support for jQuery in the public catalog.  This support
1526 is enabled by setting the `ctx.want_jquery` variable to a true value in the
1527 `config.tt2` template.
1528
1529
1530
1531
1532
1533 New Popularity Parameters
1534 ^^^^^^^^^^^^^^^^^^^^^^^^^
1535 New popularity parameters for in-house use over time and for count of distinct
1536 organizational units that own a title are now available. Evergreen sites
1537 can use these parameters to create new statistical popularity badges for
1538 sorting in the catalog by Most Popular or by Popularity-Adjusted Relevance.
1539
1540 The in-house use parameters will apply a badge to titles that have the most
1541 in-house use activity over time. The organizational unit count parameter
1542 will apply a badge to titles owned by the most number of libraries in a
1543 consortium. Ownership is determined by the copy's circulation library.
1544
1545
1546
1547
1548 Option to Suspend Holds at the Time They are Placed
1549 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1550 Users now have the option to suspend a hold at the same time they place the
1551 hold. The 'Place Hold' screen has a checkbox that can be enabled for users
1552 who want to suspend a hold at the time it is placed. There is also an option
1553 to set the activation date at the same time. This option is also available
1554 when placing holds on a batch of titles from 'My List' and will apply to
1555 all the titles in the batch.
1556
1557
1558
1559
1560
1561 Reports
1562 ~~~~~~~
1563
1564
1565
1566 Fix to reporter.classic_current_circ View
1567 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1568 The `reporter.classic_current_circ` view, which is part of some
1569 extra views defined in `Open-ILS/src/sql/Pg/example.reporter-extension.sql`,
1570 has been fixed to not exclude loans for patrons who do not have a
1571 billing address set. Users of this view should rerun
1572 `Open-ILS/src/sql/Pg/example.reporter-extension.sql` during upgrade.
1573
1574
1575
1576
1577 New Report Source Table Allowing Report of "Last" Deleted copy
1578 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1579
1580 This source table allows you to construct a clever aggregate report template
1581 which will report bibliographic IDs where a library or a group of libraries 
1582 no longer have a copy attached but *had* a copy attached. This is especially
1583 useful when a holdings sync is required with an external vendor.
1584
1585
1586 Instructions for creating a report template with this source:
1587
1588   * Create a new report template using "Library Holdings Count with Deleted" as the source
1589   * Add "Has Only Deleted Copies 0/1" (Min) to the Aggregate Filters -> Change Value to "1"
1590   * Add "Last Edit Date" (Max) to Aggregate Filters.  In Aggregate Filters, change the operator to "Between"
1591   * Add Circulation Library -> "Organizational Unit ID" to Base Filters, with the Raw Data transform.  In the list of Base Filters, change the operator to "In list"
1592   * Add "Bib ID" to Displayed Fields
1593   * Add "Last Edit Date" to Displayed Fields and Change Transform to Max
1594   * Add "Has Only Deleted Copies 0/1" to Displayed Fields and Change Transform to Min
1595   * Add "Total copies attached" to Displayed Fields and Change Transform to Sum
1596
1597
1598 This template will only output bibliographic IDs where all of the copies for the specified branch(es)
1599 are deleted. Furthermore, it will only output bibs whose copies were edited (deleted) during the 
1600 specified date range. Unfortunately the user will have to manually type the date range without the date
1601 picker. This view will also allow you to answer questions like "Show me bibs where I have one visible
1602 copy and more than two deleted copies."
1603
1604
1605
1606
1607 Add Provider to Provider Note Link
1608 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1609 The Provider reporting source now includes a link to the Provider Note reporting source.
1610
1611
1612
1613
1614 Link ILS User and Working Location Reporting Sources
1615 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1616 The Working Location reporting source now has labels
1617 and it is now linked to the ILS User reporting source, allowing
1618 reports to display or filter on staff working location.
1619
1620
1621
1622
1623 New Circulation Report Source "All Circulation Combined Types"
1624 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1625
1626 This report source will allow you to create a single report template for all of the following:
1627
1628  * In-house uses
1629  * In-house uses of non-cataloged items
1630  * Circulations
1631  * Circulations of non-cataloged items
1632
1633 To distinguish between these different types of library use, it's important to display these columns
1634 in your report templates:
1635
1636  * Item Type
1637  * Circulation Type
1638
1639
1640
1641
1642
1643 Reports Template Searching
1644 ^^^^^^^^^^^^^^^^^^^^^^^^^^
1645 A new form appears along the top of the reports interface for searching
1646 report templates.  Once found, typical template actions (e.g. create new
1647 report) are available from within the results interface.
1648
1649 Searches may be performed across selected (visible) folders or all 
1650 folders visible to the logged in user.
1651
1652 Searches are case-insensitive, any word order, with left-anchored words.  
1653 All searched words must appear in at least one of the searched fields.
1654
1655 Examples
1656 ++++++++
1657
1658  * Searching for 'stat cat' matches:
1659   ** stat cat
1660   ** statistical category
1661   ** categories, statistical
1662   ** patrons (stat cat)
1663  * Searching for 'stat cat' does not match:
1664   ** stat 
1665    *** both words must be present in the searched field(s)
1666   ** stat location
1667     *** location contains 'cat' but it's not left-anchored.
1668
1669 Reporter Paging
1670 +++++++++++++++
1671
1672 The templates, reports, and output interfaces now support paging via 
1673 new 'Next', 'Prev', and 'Start' links next to the output limit selector.
1674
1675
1676
1677
1678
1679
1680 Serials
1681 ~~~~~~~
1682
1683
1684
1685 Web Staff Client Serials Module
1686 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1687 The serials module has been ported over to the web staff
1688 client, implementing a unified serials interface that combines
1689 ideas from both the serial control view and alternate serials
1690 control view from the old staff client.
1691
1692 In addition to carrying over functionality that was available
1693 in the old staff client, several new features are included:
1694
1695 * the ability to save prediction pattern codes as templates
1696   that can be shared and reused within an Evergreen database
1697 * a more streamlined interface for managing subscriptions,
1698   distributions, and streams
1699 * it is no longer necessary to create a starting issue in
1700   order to predict a run of issues; the dialog box for
1701   generating a set of predicted issues now lets you specify
1702   the starting point directly.
1703 * the ability to more directly edit MFHDs
1704     
1705 The new serials interfaces can be accessed from the record
1706 details page via a Serials drop-down button that links to
1707 a subscription management page, a quick-receive action, and
1708 a MFHD management page. There is also a new 'Serials Administration'
1709 page where prediction pattern and serial copy templates can
1710 be managed.
1711
1712
1713
1714
1715 SIP
1716 ~~~
1717
1718
1719
1720 SIP Bugfix Changes How Encoding Is Determined in Configuration
1721 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1722
1723 The combined fix for the above mentioned SIP bugs alters the way that
1724 SIPServer looks up the output encoding in the configuration file (typically
1725 `oils_sip.xml`).  SIPServer now looks for the encoding in the following
1726 places:
1727
1728 1. An +encoding+ attribute on the +account+ element for the currently active SIP account.
1729 2. The +encoding+ element that is a child of the +institution+ element of the currently active SIP account.
1730 3. The +encoding+ element that is a child of the +implementation_config+ element that is itself a child of the +institution+ element of the currently active SIP account.
1731 4. If none of the above exist, then the default encoding (ASCII) is used.
1732
1733 Number 3 is provided to ease the transition to the new code.  It is
1734 the current location of the +encoding+ element in the sample
1735 configuration file and as such, where it is likely to be found in
1736 actual files.  It is recommended that you alter your configuration to
1737 move this element out of the +implementation_config+ element and into
1738 its parent +institution+ element.  Ideally, SIPServer should *not* look into
1739 the implementation config, and this check may be removed at some time
1740 in the future.
1741
1742
1743
1744 Acknowledgments
1745 ---------------
1746
1747 Web Client Acknowledgments
1748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
1749
1750 The project to develop a new browser-based web client launched four 
1751 years ago at the September 2013 Evergreen developer hack-a-way when the
1752 developer community voted to move away from the XUL client and explore other
1753 platforms. The first web client preview became available in Evergreen 2.7 when
1754 circulation was available in the new platform.
1755
1756 The browser-based client is available due to the work of many coders, testers,
1757 bug reporters, documentors, translators, project managers, spec writers, funders
1758 and other contributors over the past four years.
1759
1760 The Evergreen project would like to acknowledge the following organizations
1761 that funded development of the Web Staff Client:
1762
1763 * Bibliomation
1764 * British Columbia Libraries Cooperative
1765 * Consortium of Ohio Libraries
1766 * C/W MARS
1767 * Georgia Public Library Service
1768 * Grand Rapids Public Library
1769 * The Howe Library
1770 * Kenton County Public Library
1771 * King County Library System
1772 * MassLNC
1773 * NC Cardinal
1774 * Pennsylvania Integrated Library System
1775 * Pioneer Library System
1776 * SC LENDS
1777
1778 The Evergreen project would also like to thank the following individuals who 
1779 contributed code, translations, documentation patches, tests, bug reports, 
1780 technical specifications, and project management to the Web Staff Client:
1781
1782 * Jason Boyer
1783 * Adam Bowling
1784 * Christine Burns
1785 * Steve Callender
1786 * Eva Cerniňáková
1787 * Galen Charlton
1788 * Dawn Dale
1789 * Jeff Davis
1790 * Grace Dunbar
1791 * Bill Erickson
1792 * Jason Etheridge
1793 * Lynn Floyd
1794 * Sally Fortin
1795 * Jeff Godin
1796 * Rogan Hamby
1797 * Elaine Hardy
1798 * Blake Henderson
1799 * Billy Horn
1800 * Skye Howard
1801 * Kyle Huckins
1802 * Linda Jansová
1803 * Tina Ji
1804 * Mary Jinglewski
1805 * Angela Kilsdonk
1806 * Joan Kranich
1807 * Victoria Lewis
1808 * Mary Llewelyn
1809 * Jeanette Lundgren
1810 * Kathy Lussier
1811 * Terran McCanna
1812 * Christine Morgan
1813 * Michele Morgan
1814 * Stephen Moss
1815 * Andrea Neiman
1816 * Nawras Othman
1817 * Freddy Enrique Pelayo Huapalla
1818 * Jillianne Presley
1819 * Jennifer Pringle
1820 * Michelle Purcell
1821 * Erica Rohlfs
1822 * Mike Rylander
1823 * Jane Sandberg
1824 * Janet Schrader
1825 * Dan Scott
1826 * Chris Sharp
1827 * Ben Shum
1828 * Clare Sobotka
1829 * Tim Spindler
1830 * Remington Steed
1831 * Jason Stephenson
1832 * Josh Stompro
1833 * Yamil Suarez
1834 * Amy Terlaga
1835 * Scott Thomas
1836 * Anahi Valdez
1837 * Cesar Velez
1838 * Jessica Venturo
1839 * Dan Wells
1840 * Beth Willis
1841 * Tigran Zargaryan
1842
1843 Evergreen 3.0 Acknowledgments
1844 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1845
1846 The Evergreen project would like to acknowledge the following
1847 organizations that commissioned developments in this release of
1848 Evergreen:
1849
1850 * Bibliomation
1851 * British Columbia Libraries Cooperative (BC Sitka)
1852 * C/W MARS
1853 * Georgia Public Library Service
1854 * King County Library System
1855 * MassLNC
1856 * Pennsylvania Integrated Library System
1857 * Pioneer Library System
1858
1859 We would also like to thank the following individuals who contributed
1860 code, translations, documentation patches, and tests to this release of
1861 Evergreen:
1862
1863 * Adam Bowling
1864 * Jason Boyer
1865 * Eva Cerniňáková
1866 * Galen Charlton
1867 * Dawn Dale
1868 * Jeff Davis
1869 * Martha Driscoll
1870 * Bill Erickson
1871 * Jason Etheridge
1872 * Lynn Floyd
1873 * Jeff Godin
1874 * Rogan Hamby
1875 * Blake Henderson
1876 * Billy Horn
1877 * Skye Howard
1878 * Kyle Huckins
1879 * Linda Jansova
1880 * Tina Ji
1881 * Pasi Kallinen
1882 * Angela Kilsdonk
1883 * Debbie Luchenbill
1884 * Jeanette Lundgren
1885 * Kathy Lussier
1886 * Terran McCanna
1887 * Christine Morgan
1888 * Michele Morgan
1889 * Andrea Neiman
1890 * Bill Ott
1891 * Suzanne Paterno
1892 * Dan Pearl
1893 * Jillianne Presley
1894 * Mike Rylander
1895 * Jane Sandberg
1896 * Dan Scott
1897 * Srey Seng
1898 * Chris Sharp
1899 * Ben Shum
1900 * Remington Steed
1901 * Jason Stephenson
1902 * Josh Stompro
1903 * Scott Thomas
1904 * Cesar Velez
1905 * Dan Wells
1906 * Liam Whalen
1907 * Beth Willis
1908
1909 We also thank the following organizations whose employees contributed
1910 patches:
1911
1912 * British Columba Libraries Cooperative
1913 * Calvin College
1914 * Catalyte
1915 * CW/MARS
1916 * Emerald Data Networks, Inc.
1917 * Equinox Open Library Initiative
1918 * Georgia PINES
1919 * Grand Rapids Public Library
1920 * Indiana State Library
1921 * Jabok Library
1922 * King County Library System
1923 * Lake Agassiz Regional Library
1924 * Laurentian University
1925 * Linn-Benton Community College
1926 * MassLNC
1927 * Merrimack Valley Library Consortium
1928 * MOBIUS Consortium
1929 * North of Boston Library Exchange
1930 * Pennsylvania Integrated Library System
1931 * Pohjois-Karjalan Tietotekniikkakeskus Oy
1932 * Sigio
1933 * Traverse Area District Library
1934
1935 We regret any omissions.  If a contributor has been inadvertently
1936 missed, please open a bug at http://bugs.launchpad.net/evergreen/
1937 with a correction.
1938