]> git.evergreen-ils.org Git - Evergreen.git/blob - docs/RELEASE_NOTES_3_6.adoc
stamp release notes for 3.6.0
[Evergreen.git] / docs / RELEASE_NOTES_3_6.adoc
1 = Evergreen 3.6.0 Release Notes =
2 :toc:
3 :numbered:
4
5 == Upgrade notes ==
6
7 This release adds a new OpenSRF service called `open-ils.courses`.
8 While strictly speaking this is an optional service and could be
9 omitted if you are not planning on using the new Course Materials
10 module, it is recommended that the service be run in case future
11 work bakes in an assumption that it will always be present.
12
13 This release also a new OpenSRF service, `open-ils.curbside`, which
14 must be enabled and registered with the public router for the
15 Curbside Pickup feature to function.
16
17 This release also includes a new experimental public catalog skin
18 based on the Bootstrap framework. Instructions for turning it on
19 can be found below.
20
21 This release adds a new Perl module dependency, `Config::General`.
22
23 This release adds two new rows to action_trigger.event_definition,
24 two into action_trigger.hook, and six into action_trigger.environment.
25
26 == New Features ==
27
28 === Acquisitions ===
29
30 ==== Angular Acquisitions Search ====
31
32 The acquisitions search interfaces are now written in Angular
33 and provide a new centralized place for searching Line Items,
34 Purchase Orders, Invoices, and Selection Lists in the Acquisitions
35 module of Evergreen. The Acquisitions Search interface can be accessed
36 under Acquisitions -> General Search.
37
38 The search interface has four tabs for line item search, purchase order
39 search, invoices search, and selection list search.  Each tab
40 offers a search form allowing the user to select one or more
41 fields to search on. Each search tab stores a separate default search
42 that the user can update; for example, a user could have their
43 line item search default to showing all on-order line items from
44 a particular provider.
45
46 The grid that displays search results in each tab is filterable.
47
48 The line items and PO search interfaces allow the user to navigate to
49 linked POs, invoices, and so forth, but offers no direct actions. The
50 invoices search tab includes a 'Print Selected Invoices' action,
51 while the selection lists search tab offers actions to create,
52 clone, delete, and merge selection lists.
53
54 The Angular search page contains a link to the legacy Dojo search
55 interface if needed. The Dojo interface will be removed in a future
56 release of Evergreen.
57
58 The Angular search interface offers various usability improvements
59 over the Dojo interface, including:
60
61 * only the search operators that are relevant for a given field
62   are displayed.
63 * search fields that are associated with controlled vocabularies
64   will display drop-downs on the search form.
65 * results are sortable.
66 * the line item and PO state fields have been relabeled to "Status".
67 * greater than and less than are now available as search operators.
68 * publication date searches are more flexible.
69
70 ===== Adjustments to Stock Permissions =====
71
72 As part of this feature, the stock permissions for the Acquisitions
73 and Acquisitions Administrator profiles have been expanded. In
74 particular, the Acquisitions Administrator profile can now be
75 more readily used to perform normal acquisitions work in addition
76 to configuring the acquisitions module.
77
78 ==== Angular Providers Interface ====
79
80 The interfaces for searching for and managing Acquisitions provider
81 records have been rewritten in Angular. This rewrite includes the
82 following significant changes:
83
84 * The provider search interface is now available directly from the
85   Acquisitions menu, supplementing its longstanding availability from
86   the Acquisitions Administration page.
87 * The search interface is modeled after the patron interface, including
88   a search form that can be hidden or displayed, a provider summary box,
89   and a multi-tabbed interface for managing the provider itself.
90 * The grid displaying search results is filterable and sortable.
91 * The provider display tabs are
92 ** Details, allowing the user to view, and if permitted, edit the base provider record.
93 ** Addresses
94 ** Contacts
95 ** Attribute Definitions
96 ** Holdings Definitions
97 ** EDI
98 ** Invoices, providing an interface for viewing the invoices associated with the provider.
99 ** POs, providing an interface for viewing the purchase orders associated with the provider.
100 * The new interface makes it possible to edit contact addresses.
101 * The base provider record now has an optional primary contact field.
102   Selecting a contact as the primary one is managed on the Contacts
103   tab.  The primary contact, if set, is displayed on the provider
104   summary box.
105
106 Interfaces that used to link to the Dojo provider interface now link
107 to the Angular one instead.
108
109 === Administration ===
110
111
112 ==== Changes to Autorenewal Action/Trigger Failure Reasons ====
113
114 Previously the "reason" field in the userdata for an Autorenewal
115 event would contain both the failure code and the description for
116 the failure event as a single string such as
117 "MAX_RENEWALS_REACHED : Circulation has no more renewals remaining."
118
119 Now the "reason" field will only contain the description of the issue
120 (Circulation has ...) while a new "textcode" field will contain the
121 event code (MAX_RENEWALS_REACHED) if administrators still want to
122 display it in template outputs.
123
124
125 ==== EZProxy authentication ====
126
127 Evergreen can now provide CGI authentication for EZProxy.
128 To enable this, you will need to:
129
130 . Add a new User Activity Type to Evergreen for EZProxy CGI authentications.
131 . Add a new Remote Authentication Profile to Evergreen. You will probably want
132 to use `EZProxyCGI` as the name.
133 . Edit the `<Location /api/ezproxy>` stanza in Evergreen's eg_vhost configuration
134 file. In particular, you will need to allow access to from your EZProxy server,
135 fill in the base uri of your EZProxy server, and add a secret to the
136 _OILSRemoteAuthEZProxySecret_ variable.
137 . Restart Apache.
138 . Edit the EZProxy user.txt file.  You will likely want to add a stanza such
139 as the following:
140
141 .Sample user.txt stanza
142 ----
143 ::CGI=http://your-evergreen-catalog.com/api/ezproxy?url=^R
144 ::Ticket
145 MD5 <same secret as in eg_vhost config>
146 Expired; Deny expiredticket.htm
147 /Ticket
148 ----
149
150 When this feature is enabled, users will see an Evergreen-based login screen.
151 You may customize the look and feel of this login screen by editing the relevant
152 template toolkit files.
153
154 ==== Matomo Support ====
155
156 Support for the open source web analytics platform Matomo is now
157 native to Evergreen. Support is on an org unit level so different
158 libraries can have separate or no analytics. Once you setup
159 a Matomo service you will need the URL and site ID. Typically
160 Matomo will give you a block of javascript you can insert into
161 web sites. One line will look like :
162
163 `var u="http://mylibrary.lib/matomo/";`
164
165 The full URL in the double quotes will be your URL.  Another line
166 will look like:
167
168 `_paq.push(['setSiteId', '1']);`
169
170 In this case the number 1 will be your site ID.
171
172 These are set by the Library Settings opac.analytics.matomo_url and
173 opac.analytics.matomo_id respectively.  A new permission,
174 MATOMO_UPDATE_SETTINGS, controls access to these.
175
176 ==== "PatronAPI" authentication ====
177
178 Evergreen now supports the III "PatronAPI" scheme for authenticating
179 patrons and supplying some information about them.
180
181 To enable this, you will need to:
182
183 . Add a new User Activity Type to Evergreen for PatronAPI authentications.
184 . Add a new Remote Authentication Profile to Evergreen. You will probably want
185 to use `PatronAPI` as the name.
186 . Edit the `<Location /api/patronapi>` stanza in Evergreen's eg_vhost configuration
187 file. In particular, you will need to allow access to it from the server(s)
188 wanting to make PatronAPI requests, determine whether to enable the PatronAPI
189 "dump" feature, and specify whether users can be identified by username
190 or barcode.
191 . Restart Apache.
192 . Update the PatronAPI client to use https://your.evergreen.server/api/patronapi
193   as its base URL.
194
195 Example PatronAPI URLs look something like this:
196
197 .PatronAPI URLs
198 ----
199 # test a patron's PIN:
200 https://evergreen.example.org/api/patronapi/USERNAME/PASSWORD/pintest
201
202 # dump some information about the patron. Note that this
203 # does _not_ require the the patron's password be supplied.
204 https://evergreen.example.org/api/patronapi/USERNAME/dump
205 ----
206
207 The responses for the `pintest` and `dump` actions are specified by
208 Template Toolkit templates under (e.g.) `/openils/var/templates/remoteauth`.
209
210
211 ==== Preloaded Audio Icon and Search Format ====
212
213 A new search and icon format called Preloaded Audio now exists
214 that overlaps with the eAudio format.  If you want to exclude
215 the Preloaded Audio format from overlapping with eAudio
216 you can use the following SQL:
217
218 ----
219 UPDATE config.composite_attr_entry_definition SET definition = '{"0":{"_attr":"item_type","_val":"i"},"1":[{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"s"}]}'
220     WHERE coded_value IN (SELECT id FROM config.coded_value_map WHERE code = 'eaudio');
221 ----
222
223 It is also recommended that you reingest your bibliographic records
224 to updated the fixed field indexes. You can accomplish this by running
225 the following query in your database:
226
227 ----
228 SELECT metabib.reingest_record_attributes(source)
229 FROM metabib.record_attr_vector_list WHERE
230 (SELECT id FROM config.coded_value_map WHERE ctype = 'item_form' AND code = 'q') = ANY(vlist)
231 AND (SELECT id FROM config.coded_value_map WHERE ctype = 'item_type' AND code = 'i') = ANY(vlist);
232 ----
233
234
235
236
237
238 === API ===
239
240
241
242 ==== Override Label for draw_field_label Patron Edit Fields ====
243
244 Evergreen developers may now specify a label for fields in
245 the patron registration/patron edit form (generated by
246 the draw_field_label macro). By default,
247 draw_field_label uses the label of supplied IDL field class.
248 Now a developer may supply an additional third parameter,
249 label_override, which overrides the default IDL-based label.
250 This would typically be done in the course of customizing
251 the web staff client template `circ/patron/t_edit.tt2`.
252
253
254
255
256 === Architecture ===
257
258
259
260
261 ==== New Action/Trigger reactor for 3rd party signaling ====
262
263 This new Action/Trigger reactor module allows an Evergreen administrator to
264 create event defintions that use HTTP (or HTTPS) to contact external services
265 and let them know that something has happened in Evergreen.
266
267 For instance, a discovery layer can be informed when a bib record is updated
268 or when a user's barcode changes.
269
270 ===== Reactor Template Syntax =====
271
272 The new reactor module uses a template to define its behavior.  While the
273 template is processed by Template Toolkit, as with any A/T templates, its
274 output format is new to Evergreen.
275
276 The template should output data that can be parsed by the Config::General Perl
277 module.  See: https://metacpan.org/pod/Config::General
278
279 Top level settings should include the HTTP *method* and the *url*.
280
281 A block called *Headers* can be used to supply arbitrary HTTP headers.
282
283 A block called *Parameters* can be used to append CGI parameters to the URL,
284 most useful for GET form submission.  Repeated parameters are allowed.  If
285 this block is used, the URL should /not/ contain any parameters, use one or
286 the other.
287
288 A HEREDOC called *content* can be used with POST or PUT to send an arbitrary block
289 of content to the remote server.
290
291 If the requested URL requires Basic or Digest authentication, the template can
292 include top level configuration parameters to supply a *user*, *password*, *realm*,
293 and hostname:port *location*.
294
295 A default user agent string of "EvergreenReactor/1.0" is used when sending requests.
296 This can be overridden using the top level *agent* setting.
297
298 Here is an example template that could be used by a definition attached to the
299 *bib.edit* hook:
300
301 [source,conf]
302 ----
303 method   post # Valid values are post, get, put, delete, head
304 url      https://example.com/api/incoming-update
305 agent    MySpecialAgent/0.1
306
307 user     updater
308 password uPd4t3StufF
309 realm    "Secret area"
310 location example.com:443
311
312 <Headers>
313   Accept-Language en
314 </Headers>
315
316 <Parameters>
317   type bib
318   id   [% target.id %]
319 </Parameters>
320
321 content <<MARC
322 [% target.marc %]
323 MARC
324 ----
325
326
327
328
329
330 ==== Documentation Now Uses the Antora Toolchain ====
331
332 The core Evergreen documentation under the `docs/` subdirectory
333 has been changed to use Antora, a documentation site generator
334 for AsciiDoc. The result of this change is the ability to generate
335 documentation for the `docs.evergreen-ils.org` website that is
336 searchable, easier to maintain, and readily installable on a
337 local Evergreen site if desired.
338
339 For instructions on how to build the documentation, consult
340 the file `README.adoc` under the `docs` directory.
341
342
343
344
345 === Cataloging ===
346
347
348
349 ==== Manage Authorities Angular Port ====
350
351 The Cataloging -> Manage Authorities interface has been ported to Angular.
352
353 New functionality includes displaying additional authority data, like create
354 and edit dates, etc.  It's also possible to view the list of linked bib
355 records.
356
357
358
359
360 ==== MARC Batch Edit UI Angular Port ====
361
362 The MARC Batch Edit interface has been ported to Angular.
363
364
365
366
367 ==== Preloaded Audio Icon and Search Format ====
368
369 A new search and icon format called Preloaded Audio now exists
370 using the following atttributes: itemtype i, item form q.  This
371 overlaps with the eAudio format.  If you want to exclude
372 preloaded audio from eAudio there is a script in the Administration
373 notes to exclude it.
374
375
376
377
378 ==== Item Status Allows Pasting a List of Barcodes in csv Format ====
379
380 The item status input box will now accept a string of barcodes, separated with commas, as well as a single barcode.
381
382
383 ==== Fix For "Blank" (Empty String) TCN Source ====
384
385 Previously, it was possible for sparsely-populated MARC records to be
386 saved with a TCN Source of '' (the "empty string"), which caused the
387 901 $b subfield to be void of data, causing errors when exporting
388 MARC records to such third-party programs as Zotero.
389
390 A site that has been running without this patch for a long time might want to
391 check how many bib records they have with an empty tcn_source:
392
393 ----
394 SELECT COUNT(*) FROM biblio.record_entry WHERE deleted IS FALSE AND tcn_source = '';
395 ----
396
397 Sites can fix the problem by issuing UPDATE statements to set the 901$b to a value
398 like 'AUTOGEN' or 'Unknown'. They should probably do it per-record, however, to
399 avoid locking the table in a huge commit.
400
401
402 === Circulation ===
403
404
405
406 ==== Booking Capture is now in Angular ====
407
408
409 The interface to capture resources for booking
410 reservations has been re-implemented in Angular.
411 Other booking screens, such as Pick Up and
412 Manage Reservations, now include an option to
413 re-print capture slips.
414
415 System administrators can now edit the template
416 for booking capture slips in Administration ->
417 Server administration -> Print templates.
418
419
420
421
422
423 ==== New Fields for AutorenewNotify Event Template ====
424
425
426 Two new fields, `auto_renewal_remaining`, and `total_renewal_remaining` have
427 been added to the AutorenewNotify action/trigger event code.  They will
428 report the number of autorenewals and regular renewals, respectively,
429 remaining on the new circulation if renewed, or on the old circulation
430 if not renewed.  This is provided as a convenience to avoid possibly
431 inaccurate math in the template.  You may access them in the template via
432 the `udata`:
433
434 ----
435 Automatic Renewals Remaining: [% udata.auto_renewal_remaining %]
436 Total Renewals Remaining: [% udata.total_renewal_remaining %]
437 ----
438
439
440
441
442
443 ==== Course Materials Module ====
444
445 This version of Evergreen includes an optional course materials module.
446 Like course reserves modules in other library software, this module
447 makes reserves collections more discoverable and easier to manage.
448 The module also provides similar functionality for library electronic
449 resources and open educational resources, whether they have been
450 cataloged or not.
451
452 To enable the course materials module, go to Administration ->
453 Local Administration -> Library Settings Editor. Find the setting
454 called "Opt Org Unit into the Course Materials Module".  Set it to
455 True for the org units that want to use the module.
456
457 To use the course materials module effectively, staff will need a
458 new permission called _MANAGE_RESERVES_.  By default, circulation
459 administrators will receive this permission.
460
461 ===== Courses =====
462
463 Staff members with the _MANAGE_RESERVES_ permission can create
464 courses, attach materials to them, attach users to them, and
465 archive them when they are no longer needed.
466
467 When associating physical materials from the catalog to a
468 course, staff members can choose temporary item attributes.
469 These attributes will last until the course is archived or
470 the item is detached from the course, whichever happens
471 first.
472
473 Staff can also choose to associate electronic resources from
474 the catalog (which must have a transcendent bib source or
475 a located URI).  They can also create a brief bib record
476 to attach to the course from within the course materials
477 module.
478
479 Staff members can attach users to the course.  These users
480 can have either a public role (e.g. instructor) or private
481 roles (e.g. student).  The public roles will be displayed
482 in the OPAC.
483
484 ===== OPAC =====
485
486 If the module is enabled, the OPAC will include a course search
487 and a course browse option.
488
489 ===== Other uses =====
490
491 Libraries may also want to use this module to manage their
492 displays.  Each display can be treated as a course, and staff
493 can attach the items they wish to display to the course along
494 with the temporary attributes (e.g. a shelving location called
495 "On display").  When the display is over, staff members can
496 archive the course.
497
498
499
500
501
502 ==== Hopeless Holds Interface ====
503
504 A new interface under Local Administration has been added called
505 Hopeless Holds.  Using a new Hopeless Date field on hold requests,
506 this interface gives staff a way to resolve issues with hold
507 requests that may have become unfulfillable or "hopeless".
508
509 The Hopeless Date is set for a given request by the hold targeter
510 whenever the potential items list for the hold is empty, or when
511 all potential items have a copy status that has been designated
512 as Hopeless Prone (a new boolean field on Item Statuses).
513
514
515
516
517
518 ==== In-house use now records workstations ====
519
520 Evergreen now records the workstation along with each
521 in-house use.  Staff can now run reports on which
522 workstation created which in-house use.
523
524
525
526
527 ==== Option to Make Effective Date of Checkin Sticky ====
528
529 Adds a checkbox to the Checkin screen that will make the backdate effective until logout.
530
531
532
533
534 ==== Purge User Preferred Names ====
535
536 The new, user preferred name fields are now set to NULL in the
537 database when a user account is purged via the staff client or using
538 the actor.usr_delete function in the database.
539
540 To clear the preferred name fields from records that have already been
541 purged, run the following SQL update:
542
543 [source,sql]
544 ----
545 UPDATE actor.usr
546 SET pref_prefix = NULL,
547     pref_first_given_name = NULL,
548     pref_second_given_name = NULL,
549     pref_family_name = NULL,
550     pref_suffix = NULL,
551     name_keywords = NULL
552 WHERE usrname ~ ('^' || id || '-PURGED')
553 AND NOT active
554 AND deleted
555 AND (
556   pref_prefix IS NOT NULL OR
557   pref_first_given_name IS NOT NULL OR
558   pref_second_given_name IS NOT NULL OR
559   pref_family_name IS NOT NULL OR
560   pref_suffix IS NOT NULL OR
561   name_keywords IS NOT NULL
562 );
563 ----
564
565
566
567
568 ==== Test Notification Method ====
569
570 Patrons and staff may request a test notification for a patron's default email address or SMS
571 number via the Patron Registration interface in the staff client or the OPAC preferences interface. The OPAC_LOGIN permissions are required to
572 request a notification. When a notification is sent, it will be sent to either the user's default email or default SMS number, depending on what was requested.
573
574 ===== Upgrade Notes =====
575
576 This feature adds two new rows to action_trigger.event_definition, two into
577 action_trigger.hook, and six into action_trigger.environment.
578
579
580
581 ==== Curbside Pickup ====
582
583 The Curbside Pickup feature in Evergreen provides an interface to help
584 facilitate contact-free pickup of library materials.  It provides a dedicated
585 interface in the staff client for library staff to track and manage curbside
586 pickup appointments and materials through the various stages of the process.
587 Staff can also schedule pickup appointments on behalf of patrons.  This feature
588 also allows patrons to schedule their own curbside pickup appointments in their
589 OPAC account, as well as inform the library when they have arrived and are
590 waiting for their materials.  
591
592 This is an extension of the existing holds functionality in Evergreen.  A hold
593 must be placed for an item to be eligible for curbside pickup.  After an item
594 has been captured for a hold and is available for pickup from the holds shelf,
595 a curbside pickup appointment can be scheduled to allow the materials to be
596 obtained in a contact-free transaction.
597
598 It can accommodate several different workflows depending on how the library
599 decides to implement curbside pickup services.  It can help library staff track and
600 checkout batches of items to be picked up curbside and help facilitate
601 communication between library staff and patrons.  It does not prescribe nor require a
602 specific workflow for curbside pickup.
603
604 It can be used alongside regular (i.e. inside the library) hold pickup.  Curbside pickup
605 can be an option offered patrons in addition to regular pickup or it can
606 be the primary pickup option depending on the library’s current service plan.
607
608 It assumes the library will have a staff member assigned to managing curbside
609 pickup throughout the day.
610
611 ===== Library Settings =====
612
613 This feature adds the following library settings:
614
615  * `circ.curbside`: whether to enable curbside appointments for
616    picking up available hold requests. This defaults to off.
617     
618  * `circ.curbside.granularity`: interval between appointment slots. This
619    defaults to 15 minutes.
620  
621  * `circ.curbside.max_concurrent`: how many appointments to permit per
622    time slot.  This defaults to 10.
623
624  * `circ.curbside.disable_patron_input`: if turned on, display scheduled
625     and pending appointments in My Account in the public catalog but
626     do not give the patron the ability to change them from My Account.
627     This defaults to false, i.e., allowing patrons to modify appointments
628     from My Account.
629
630 ===== Notifications And Action Triggers =====
631
632 There are several new patron notice options related to curbside pickup.
633
634 When a patron’s holds are marked as ready for pickup in Evergreen, an email or
635 text/SMS notification can be sent to let them know that curbside pickup is an
636 option at their library.  This notice can be used to promote this service and
637 the default message will prompt patrons to log in to their OPAC account to
638 schedule an appointment or call the library to schedule an appointment.
639 Notice message is customizable.  The Trigger Event Definitions for this notice
640 are called:
641
642  * Curbside offer Email notification, triggered by CurbsideSlot reactor on a
643    definition attached to the hold available hook.
644  * Curbside offer SMS notification, triggered by CurbsideSlot reactor on a
645    definition attached to the hold available hook.
646
647 If a patron has scheduled a curbside pickup appointment, an email or text/SMS
648 notification can be sent to confirm the appointment.  It will also prompt them
649 to log into their account or call the library when they have arrived for their
650 pickup appointment.  The Trigger Event Definitions for this notice are called:
651
652  * Curbside confirmation Email notification.
653  * Curbside confirmation SMS notification.
654
655 Patrons can receive an email with a list of the items they checked out.  To
656 receive this notice patrons must have an email address associated with their
657 account and the option for “Email checkout receipts by default?” must be
658 selected in their account.  This is an existing notice in Evergreen that ties
659 in to the curbside pickup workflow.
660
661 There is another action trigger called “Trigger curbside offer events and
662 create a placeholder for the patron, where applicable”.  This action trigger
663 does not send a notice to patrons or staff.  It is a silent action behind the
664 scenes that initiates the curbside offer email or SMS notification described
665 above.  
666
667 ===== Upgrade Notes =====
668
669 This feature adds a new OpenSRF service, `open-ils.curbside`, which must be
670 enabled and registered with the public router for the feature to function.
671
672 This feature adds no new staff permissions.
673
674
675
676 ==== Allow Use of Adjusted Proximity for Age-protection ====
677
678 Introduces a new library setting to consult adjusted proximity for age-protected items at hold placement time.
679
680
681
682
683 === Client ===
684
685
686
687 ==== New Angular Staff Catalog Default ====
688
689 The experimental Angular staff catalog has been promoted to operate as the
690 default catalog in the browser staff client.  It will be used for all
691 catalog entry points, except for the menu entries for the traditional
692 catalog and any links within the traditional catalog.
693
694 ===== Menu Changes =====
695
696 * Search -> 'Search The Catalog' now searches to new catalog.
697 * Cataloging -> 'Search The Catalog' now searches to new catalog.
698 * Cataloging -> 'Search The Catalog (Traditional)' searches the traditional
699   TPAC-style catalog.
700 * Staff client splash page -> 'Search the catalog' inline form uses the
701   new catalog.
702
703
704
705
706
707 ==== Basket To Bucket Action Now Allows Adding To Shared Buckets ====
708
709 The Angular staff catalog's 'Add Basket to Bucket' action now
710 gives the user the option of adding the contents of the basket
711 to a shared bucket.
712
713
714 ==== Angular catalog recall/force/part holds ====
715
716 The Angular staff catalog now has entry points for placing Recall,
717 Force, and Part-level holds.
718
719 For any item-level hold type, the user now has the option to cycle
720 between Item, Recall, and Force hold types.  The selected type affects
721 the full batch of holds.
722
723 For title-level holds, the user now has the option to select a part
724 as the hold target for each record in the list.  Part selection is
725 optional.
726
727
728 === OPAC ===
729
730
731 ==== New Bootstrap-based OPAC ====
732
733
734 This release includes a new experimental OPAC with a cleaner, more modern design.
735
736 To enable the new OPAC design, open the `/etc/apache2/eg_vhost.conf` file.
737
738 Find the following line:
739
740 ----
741 PerlAddVar OILSWebTemplatePath "/openils/var/templates"
742 ----
743
744 Add the following line directly below it:
745
746 ----
747 PerlAddVar OILSWebTemplatePath "/openils/var/templates-bootstrap"
748 ----
749
750 Be sure that, if you have any local customizations, that they are referenced below
751 this line.  This way, your customizations will still appear in the new OPAC design
752 (although they may need to be adjusted to better fit the new style).
753
754 You can also turn on the new OPAC for some virtual hosts only, by adding it to the
755 appropriate virtual host entry.  Be sure to reference the OILSWebTemplatePath for
756 the `templates-bootstrap` directory before referencing any local customizations
757 used by that virtual host.
758
759 To emphasize, the new OPAC skin is considered experimental for 3.6.x. There
760 are some discrepancies between its functionality and the functionality
761 present in the original "TPAC" skin. The Evergreen community aims to
762 resolve those discrepancies and make the Bootstrap skin become the default
763 OPAC for the Spring 2021 release (though the original TPAC skin will still
764 be available). Using the Bootstrap skin in production for 3.6 is at your own risk.
765
766
767
768
769 ==== Enhanced Public Catalog Printing and Email ====
770
771 Evergreen now provides additional functionality for printing and emailing
772 bibliographic record and holdings information from the catalog, including
773 from an individual record or from a list or basket.
774
775 After selecting Print or Email, the user will be presented with a preview of
776 the printout or email, respectively.  From the preview users can chose to view
777 Brief or Full record information (Full includes holdings information) and how
778 records should be sorted (Author, Title, Publication Date).  Holdings
779 information can also be limited to a certain library.
780
781 Users can be required to log in to their OPAC account to send an email, or this
782 feature can be configured to allow sending an email without signing in to the
783 public catalog. If the option to allow emailing without signing in is enabled
784 (by turning on the new 'Allow record emailing without login' library setting),
785 user will be asked to solve an arithmetic CAPTCHA in order to send the email.
786
787 ===== Administration =====
788
789 Two new interfaces have been added to Local Administration: Event Definition
790 Groups and Event Definition Group Members.  The Event Definition Groups defines
791 the various groups for Action Trigger Event Definitions -- currently Print
792 Record(s) or Email Record(s).  The Event Definition Group Members defines the
793 options within each group -- currently Brief or Full record information.
794
795 These two interfaces expose the infrastructure behind the new print and
796 email functionality and library staff will not need to make any changes to
797 these interfaces to use the existing print and email options.  The stock print
798 and email Action Trigger Event Definitions can be cloned and modified to
799 provide additional bibliographic format options.  After creating the custom
800 Event Definition, add it to the appropriate Event Definition Group (Print
801 Record or Email Record) and the new format will be available in the catalog.
802
803
804
805
806
807 ==== Credit card payments using Stripe now on version 3 (Elements) ====
808
809 When Stripe payments are enabled, the public catalog will now
810 use version 3 of the Stripe client library, as well as its
811 Elements API for building the credit card form.  For
812 technical reasons, this more easily lends a site to PCI
813 compliance.
814
815 On the staff side, the credit card option is disabled for
816 Stripe, as that has not been implemented and in the past
817 would just give an error.
818
819
820
821
822 ==== Improve Access to Libray Info in OPAC ====
823
824 Adds the library's address, email, phone, and website link to the myopac patron account preferences page.
825
826
827
828
829 === Reports ===
830
831
832
833 ==== Combined Aged and Active Circulations Source Naming ====
834
835 A recent improvement to aid web client data retrieval
836 speed resulted in a new reports source that was named
837 nearly identically to a long-existing one, and both
838 were appearing in the "Core Sources" section of reports.
839 The newer source has been renamed for clarity and removed
840 from the core sources to prevent confusion:
841
842  * "Combined Aged and Active Circulations" is now named "Combined Aged and Active Circulations (Slim Version)"
843    and is removed from the Core Sources.
844  * "Combined Aged and Active Circulations", which contains more linkages to other data sources, remains in the
845    Core Sources list.
846
847
848
849
850 ==== Reports Subtotals ====
851
852 Reports now allow group subtotals and grand totals.  By checking the
853 new "Calculate grouping subtotals" checkbox under "Output Options",
854 a new unlabeled row or column is created with the subtotals for each
855 grouping and an unlabeled grand total row or column.
856
857 This takes advantage of PostreSQL's built-in ROLLUP feature.  See the
858 PostgreSQL documentation for details:
859
860 https://www.postgresql.org/docs/9.6/queries-table-expressions.html#QUERIES-GROUPING-SETS
861
862 An example of a report that could use this new feature is
863 one based on the Circulation source with the following fields:
864
865  * Circulation -> Checkout / Renewal Library -> Short (Policy) Name (Raw Data)
866  * Circulation -> Checkout Date/Time (Year)
867  * Circulation -> Shelving Location -> Name (Raw Data)
868  * Circulation -> Circ ID (Count Distinct)
869
870 Turning on the "Calculate grouping subtotals" checkbox would make
871 the report show subtotals for each combination of
872 short name, checkout year, and shelving location name.
873
874
875
876
877 === SIP ===
878
879
880
881 ==== Allow Username in Patron ID ====
882
883 Evergreen now accepts a patron's username in the SIP2 Patron ID field
884 (AA) in addition to the barcode.  This modification is useful for
885 vendors, such as Overdrive, who can accept a user's username.
886 Additionally, it is easier for a patron to find and remember their
887 username over their barcode.
888
889 The new feature determines if the value in the Patron ID field is a
890 barcode or username by comparing the field value against the
891 `opac.barcode_regex` setting for the organizational unit of the logged
892 in SIP2 account as configured in the oils_sip.xml file.  This is
893 similar to what the OPAC does when a patron logs in.
894
895 This feature requires activation.  To activate, uncomment (or add) the
896 following line in the oils_sip.xml configuration file and change the
897 value from 'false' to 'true'.
898
899 [source,xml]
900 ----
901 <option name='support_patron_username_login' value='true' />
902 ----
903
904
905
906 == Acknowledgments ==
907
908 The Evergreen project would like to acknowledge the following
909 organizations that commissioned developments in this release of
910 Evergreen:
911
912 * C/W MARS
913 * Equinox Open Library Initiative
914 * Evergreen Community Development Initiative
915 * Georgia Public Library Service
916 * Indiana State Library
917 * Linn-Benton Community College
918 * MassLNC
919 * NOBLE
920 * PaILS
921 * Treasure Valley Community College
922
923 We would also like to thank the following individuals who contributed
924 code, translations, documentation, patches, and tests to this release of
925 Evergreen:
926
927 * John Amundson
928 * Nelson Appell
929 * Zavier Banks
930 * a. bellenir
931 * Felicia Beaudry
932 * Jason Boyer
933 * Dan Briem
934 * Chris Burton
935 * Steven Callender
936 * Lisa Carlucci
937 * Galen Charlton
938 * Garry Collum
939 * Dawn Dale
940 * Jeff Davis
941 * Diane Disbro
942 * Bill Erickson
943 * Jason Etheridge
944 * Lynn Floyd
945 * Ruth Frasur
946 * Blake Graham-Henderson
947 * Rogan Hamby
948 * Elaine Hardy
949 * Kyle Huckins
950 * Angela Kilsdonk
951 * Owen Leonard
952 * Troy Leonard
953 * Shula Link
954 * Tiffany Little
955 * Mary Llewellyn
956 * Terran McCanna
957 * Gina Monti
958 * Christine Morgan
959 * Michele Morgan
960 * Andrea Buntz Neiman
961 * Jennifer Pringle
962 * Mike Risher
963 * Mike Rylander
964 * Jane Sandberg
965 * Dan Scott
966 * Chris Sharp
967 * Remington Steed
968 * Jason Stephenson
969 * Josh Stompro
970 * Dan Wells
971 * Jennifer Weston
972 * Beth Willis
973 * John Yorio
974
975 We also thank the following organizations whose employees contributed
976 patches:
977
978 * Ann Arbor District Library
979 * BC Libraries Cooperative
980 * Bibliomation
981 * Calvin College
982 * Catalyte
983 * C/W MARS
984 * Equinox Open Library Initiative
985 * Georgia Public Library Service
986 * Grand Rapids Public Library
987 * Greater Clark Hills Regional Library System
988 * Indiana State Library
989 * Kenton County Public Library
990 * King County Library System
991 * Laurentian University
992 * Linn-Benton Community College
993 * MOBIUS
994 * Niagara Falls Public Library
995 * NOBLE
996 * Scenic Regional Library
997 * Sigio
998 * Washington County (MO) Public Library
999 * Westchester Library System
1000 * Zivot Design
1001
1002 We regret any omissions.  If a contributor has been inadvertently
1003 missed, please open a bug at http://bugs.launchpad.net/evergreen/
1004 with a correction.
1005