Docs: fix uneven lengths of code delimiter blocks
authorDan Scott <dan@coffeecode.net>
Fri, 12 Apr 2019 03:17:10 +0000 (23:17 -0400)
committerDan Scott <dan@coffeecode.net>
Fri, 12 Apr 2019 03:23:31 +0000 (23:23 -0400)
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 <dan@coffeecode.net>

docs/admin/booking-admin.adoc
docs/cataloging/batch_importing_MARC.adoc
docs/circulation/basic_holds.adoc
docs/circulation/circulating_items_web_client.adoc
docs/installation/server_upgrade.adoc
docs/reports/reporter_add_data_source.adoc
docs/reports/reporter_daemon.adoc

index 6dd7784..d7c9063 100644 (file)
@@ -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.
index d142b66..355d318 100644 (file)
@@ -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
index 8e1e480..a9098be 100644 (file)
@@ -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
index 65ee0c9..c559857 100644 (file)
@@ -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
 ^^^^^^^^^^^^^^^^^^^^^^^
index 601481c..9554a99 100644 (file)
@@ -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 <<install-troubleshooting-1,troubleshooting>>.
 +
index ea99f64..10c3835 100644 (file)
@@ -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
-----------
+------------------------------------------------------------
 <class id="erpstats" controller="open-ils.reporter-store" 
 oils_obj:fieldmapper="extend_reporter::patronstats" 
 oils_persist:tablename="extend_reporter.patronstats" oils_persist:readonly="true" 
@@ -191,7 +191,7 @@ reporter:label="Patron Statistics" reporter:core="true">
   <link field="home_lib_id" reltype="has_a" key="id" map="" class="aou"/>
 </links>
 </class>
----------
+------------------------------------------------------------
 
 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 
index 4496718..0c4443e 100644 (file)
@@ -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
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~