From a992137f701a8c87a93fd973d019fe529a0f676e Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Thu, 11 Apr 2019 23:17:10 -0400 Subject: [PATCH] Docs: fix uneven lengths of code delimiter blocks The lengths of the starting and ending sets of hyphens are supposed to be the same. Asciidoc tools like asciidoctor can be less forgiving than the original asciidoc processor, with less than hilarious results. It would probably make sense to try to standardize on something like 60 hyphens to easily flag this problem for deviations from the norm, but for now here's the result of running the docs through asciidoctor and manually adjusting the output. Signed-off-by: Dan Scott --- docs/admin/booking-admin.adoc | 2 +- docs/cataloging/batch_importing_MARC.adoc | 2 +- docs/circulation/basic_holds.adoc | 2 +- docs/circulation/circulating_items_web_client.adoc | 4 ++-- docs/installation/server_upgrade.adoc | 12 ++++++------ docs/reports/reporter_add_data_source.adoc | 8 ++++---- docs/reports/reporter_daemon.adoc | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/admin/booking-admin.adoc b/docs/admin/booking-admin.adoc index 6dd7784..d7c9063 100644 --- a/docs/admin/booking-admin.adoc +++ b/docs/admin/booking-admin.adoc @@ -48,7 +48,7 @@ image::media/booking-create-bookable-1.png[] ** sec(s), min(s) ** s, m, h ** 00:00:30, 00:01:00, 01:00:00 -=================================================================== +==================================================================== * Fine Amount - The amount that will be charged at each Fine Interval. * Owning Library - The home library of the resource. diff --git a/docs/cataloging/batch_importing_MARC.adoc b/docs/cataloging/batch_importing_MARC.adoc index d142b66..355d318 100644 --- a/docs/cataloging/batch_importing_MARC.adoc +++ b/docs/cataloging/batch_importing_MARC.adoc @@ -270,7 +270,7 @@ If you are overlaying existing copies which already have stat cats attached to them, the overlay process will keep those values unless the incoming copies contain updated values for matching categories. |Status || -|================== +|============================= Import Records diff --git a/docs/circulation/basic_holds.adoc b/docs/circulation/basic_holds.adoc index 8e1e480..a9098be 100644 --- a/docs/circulation/basic_holds.adoc +++ b/docs/circulation/basic_holds.adoc @@ -15,7 +15,7 @@ Evergreen has different levels of holds. Library staff can place holds at all le |Parts |P |Patron wants a particular part of title (e.g. volume or disk number) | Staff or patron selects part on the create/edit hold screen when setting holds notification options. |Patron or staff |Holdings with identical parts attached to a single MARC (title) record. |Volume |V |Patron or staff want any title associated with a particular call number | In the staff client, click on _Volume Hold_ under _Holdable?_ |Staff only |Holdings attached to a single call number (volume) |Copy |C |Patron or staff want a specific copy of an item |In the staff client, click on _Copy Hold_ under _Holdable?_ |Staff only |A specific copy (barcode) -|=============================== +|============================== Title Level Hold diff --git a/docs/circulation/circulating_items_web_client.adoc b/docs/circulation/circulating_items_web_client.adoc index 65ee0c9..c559857 100644 --- a/docs/circulation/circulating_items_web_client.adoc +++ b/docs/circulation/circulating_items_web_client.adoc @@ -182,7 +182,7 @@ These options may be selected simultaneously. The selected option is displayed i image::media/checkin_options_web_client.png[] -==================================================== +=================================================== Renewal and Editing the Item's Due Date ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -256,7 +256,7 @@ Lost Item Billing - Marking an item Lost will automatically bill the patron the replacement cost of the item as recorded in the price field in the item record, and a processing fee as determined by your local policy. If the lost item has overdue charges, the overdue charges may be voided or retained based on local policy. - A lost-then-returned item will disappear from the Items Out screen only when all bills linked to this particular circulation have been resolved. Bills may include replacement charges, processing fees, and manual charges added to the existing bills. - The replacement fee and processing fee for lost-then-returned items may be voided if set by local policy. Overdue fines may be reinstated on lost-then-returned items if set by local policy. -========================== +======================== Refunds for Lost Items ^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/installation/server_upgrade.adoc b/docs/installation/server_upgrade.adoc index 601481c..9554a99 100644 --- a/docs/installation/server_upgrade.adoc +++ b/docs/installation/server_upgrade.adoc @@ -117,21 +117,21 @@ chown -R opensrf:opensrf /openils As the *opensrf* user, update the server symlink in /openils/var/web/xul/: + [source, bash] ------------------------------------------------------------ +------------------------------------------------------------ cd /openils/var/web/xul/ rm server ln -sf rel_2_12_rc/server server ----------------------------------------------------------- +------------------------------------------------------------ + . As the *opensrf* user, update opensrf_core.xml and opensrf.xml by copying the new example files (/openils/conf/opensrf_core.xml.example and /openils/conf/opensrf.xml). The _-b_ option creates a backup copy of the old file. + [source, bash] ----------------------------------------------------------- +------------------------------------------------------------ cp -b /openils/conf/opensrf_core.xml.example /openils/conf/opensrf_core.xml cp -b /openils/conf/opensrf.xml.example /openils/conf/opensrf.xml ----------------------------------------------------------- +------------------------------------------------------------ + [CAUTION] Copying these configuration files will remove any customizations you have made to them. Remember to redo your customizations after copying them. @@ -322,7 +322,7 @@ srfsh% login username password You should see a result like: + [source, bash] ------------------------------------------------------- +-------------------------------------------------------------- Received Data: "250bf1518c7527a03249858687714376" ------------------------------------ Request Completed Successfully @@ -346,7 +346,7 @@ Received Data: "250bf1518c7527a03249858687714376" Request Completed Successfully Request Time in seconds: 1.336568 ------------------------------------ ----------------------------------------------------------- +-------------------------------------------------------------- + If this does not work, it's time to do some <>. + diff --git a/docs/reports/reporter_add_data_source.adoc b/docs/reports/reporter_add_data_source.adoc index ea99f64..10c3835 100644 --- a/docs/reports/reporter_add_data_source.adoc +++ b/docs/reports/reporter_add_data_source.adoc @@ -79,7 +79,7 @@ Here's an example of a view created to incorporate some locally defined user statistical categories: .example view for reports ----------- +------------------------------------------------------------ create view extend_reporter.patronstats as select u.id, grp.name as "ptype", @@ -108,7 +108,7 @@ left join actor.stat_cat_entry_usr_map gr left join actor.stat_cat_entry_usr_map ag on (u.id = ag.target_usr and ag.stat_cat = 1) where u.active = 't' and u.deleted <> 't'; ------------ +------------------------------------------------------------ Add a new class to fm_IDL.xml for your data source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -161,7 +161,7 @@ The following example is a class definition for the example view that was create in the previous section. .example class definition for reports ----------- +------------------------------------------------------------ ---------- +------------------------------------------------------------ NOTE: _fm_IDL.xml_ is used by other core Evergreen DAO services, including cstore and permacrud. So changes to this file can affect the entire Evergreen diff --git a/docs/reports/reporter_daemon.adoc b/docs/reports/reporter_daemon.adoc index 4496718..0c4443e 100644 --- a/docs/reports/reporter_daemon.adoc +++ b/docs/reports/reporter_daemon.adoc @@ -42,7 +42,7 @@ the reporter daemon can be started. Remember that if the server is restarted, the reporter daemon will need to be restarted before you can view reports unless you have configured your server to start the daemon automatically at start up time. -============== +============= Stopping the Reporter Daemon ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- 1.7.2.5