[open-ils-commits] [GIT] Evergreen ILS branch master updated. a903911387ca31e49f115f5eb2aa4605b7600aaf

Evergreen Git git at git.evergreen-ils.org
Thu Aug 10 15:09:07 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  a903911387ca31e49f115f5eb2aa4605b7600aaf (commit)
      from  84e7b2415a46460e160da2200c4b9ef3379ac767 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a903911387ca31e49f115f5eb2aa4605b7600aaf
Author: Angela Kilsdonk <akilsdonk at esilibrary.com>
Date:   Thu Aug 10 12:08:34 2017 -0700

    Docs: Web Client Data Types
    
    Updated chart of data type icons in web client.
    
    Signed-off-by: Angela Kilsdonk <akilsdonk at equinoxinitiative.org>

diff --git a/docs/media/datatypes_bool.png b/docs/media/datatypes_bool.png
new file mode 100644
index 0000000..c00b467
Binary files /dev/null and b/docs/media/datatypes_bool.png differ
diff --git a/docs/media/datatypes_id.png b/docs/media/datatypes_id.png
new file mode 100644
index 0000000..df178e0
Binary files /dev/null and b/docs/media/datatypes_id.png differ
diff --git a/docs/media/datatypes_int.png b/docs/media/datatypes_int.png
new file mode 100644
index 0000000..3182ce0
Binary files /dev/null and b/docs/media/datatypes_int.png differ
diff --git a/docs/media/datatypes_interval.png b/docs/media/datatypes_interval.png
new file mode 100644
index 0000000..3c907fa
Binary files /dev/null and b/docs/media/datatypes_interval.png differ
diff --git a/docs/media/datatypes_link.png b/docs/media/datatypes_link.png
new file mode 100644
index 0000000..559d756
Binary files /dev/null and b/docs/media/datatypes_link.png differ
diff --git a/docs/media/datatypes_money.png b/docs/media/datatypes_money.png
new file mode 100644
index 0000000..34d5f36
Binary files /dev/null and b/docs/media/datatypes_money.png differ
diff --git a/docs/media/datatypes_orgunit.png b/docs/media/datatypes_orgunit.png
new file mode 100644
index 0000000..bb11f53
Binary files /dev/null and b/docs/media/datatypes_orgunit.png differ
diff --git a/docs/media/datatypes_text.png b/docs/media/datatypes_text.png
new file mode 100644
index 0000000..e87683d
Binary files /dev/null and b/docs/media/datatypes_text.png differ
diff --git a/docs/media/datatypes_timestamp.png b/docs/media/datatypes_timestamp.png
new file mode 100644
index 0000000..e2bb18c
Binary files /dev/null and b/docs/media/datatypes_timestamp.png differ
diff --git a/docs/reports/reporter_template_terminology.adoc b/docs/reports/reporter_template_terminology.adoc
index dd131b4..d12b2aa 100644
--- a/docs/reports/reporter_template_terminology.adoc
+++ b/docs/reports/reporter_template_terminology.adoc
@@ -6,37 +6,22 @@ Data Types
 
 indexterm:[reports, data types]
 
-The central column of the _Database Source Browser_ lists _Field Name_ and _Data 
-Type_ for the selected database table.
-
-image::media/view-output-2.png[view-output-2]
-
-Each data type has its own characteristics and uses:
+The information in Evergreen's database can be classified in nine data types, formats that describe the type of data and/or its use.  These were represented by text-only labels in prior versions of Evergreen.  Evergreen 3.0 has replaced the text labels with icons.  When building templates in _Reports_, you will find these icons in the Field Name Pane of the template creation interface.
 
 [options="header,footer"]
-|====================================
-|Data Type	|Description	|Notes
-|id		|Unique number assigned by the database to identify a 
-record	|A number that is a meaningful reference for the database but not 
-of much use to a human user. Use in displayed fields when counting records or 
-in filters.
-|text	|Text field	|Usually uses the Raw Data transform.
-|timestamp	|Exact date and time	|Select appropriate date/time transform. 
-Raw Data includes second and timezone information, usually more than is required 
-for a report.
-|bool	|True or False	|Commonly used to filter out deleted item or patron records.
-|org_unit	|A number representing a library, library system, or 
-federation	|When you want to filter on a library, make sure that the field 
-name is on an org_unit or id data type.
-|link	|A link to another database table	|Link outputs a number that is a 
-meaningful reference for the database but not of much use to a human user. You 
-will usually want to drill further down the tree in the Sources pane and select 
-fields from the linked table. However, in some instances you might want to use 
-a link field. For example, to count the number of patrons who borrowed items you 
-could do a count on the Patron link data.
-|int	|Integer	 
-|money	|Number (in dollars)	 
-|=====================================
+|========================
+|Webby Icon|Data Type      |Description	|Notes
+|image::media/datatypes_timestamp.png[]    |timestamp      |An exact date and time (year, month, day, hour, minutes, and seconds) |Select appropriate date/time transform. Raw Data includes second and timezone information, usually more than is required for a report.
+|image::media/datatypes_link.png[]    |link           |A link to another database table |Link outputs a number that is a meaningful reference for the database but not of much use to a human user. You will usually want to drill further down the tree in the Sources pane and select fields from the linked table. However, in some instances you might want to use a link field. For example, to count the number of patrons who borrowed items you could do a count on the Patron link data.
+|image::media/datatypes_text.png[]    |text           |A field of text |Usually uses the Raw Data transform.
+|image::media/datatypes_bool.png[]    |bool           |True or False |Commonly used to filter out deleted item or patron records.
+|image::media/datatypes_orgunit.png[]    |org_unit       |Organizational Unit - a number representing a library, library system, or federation |When you want to filter on a library, make sure that the field name is on an org_unit or id data type.
+|image::media/datatypes_id.png[]    |id             |A unique number assigned by the database to identify each record |A number that is a meaningful reference for the database but not of much use to a human user. Use in displayed fields when counting records or in filters.
+|image::media/datatypes_money.png[]    |money          |A monetary amount
+|image::media/datatypes_int.png[]    |int            |Integer (a number)
+|image::media/datatypes_interval.png[]    |interval       |A period of time
+|          |               |    |
+|=======================
 
 [[field_transforms]]
 Field Transforms

-----------------------------------------------------------------------

Summary of changes:
 docs/media/datatypes_bool.png                   |  Bin 0 -> 815 bytes
 docs/media/datatypes_id.png                     |  Bin 0 -> 470 bytes
 docs/media/datatypes_int.png                    |  Bin 0 -> 995 bytes
 docs/media/datatypes_interval.png               |  Bin 0 -> 560 bytes
 docs/media/datatypes_link.png                   |  Bin 0 -> 975 bytes
 docs/media/datatypes_money.png                  |  Bin 0 -> 958 bytes
 docs/media/datatypes_orgunit.png                |  Bin 0 -> 697 bytes
 docs/media/datatypes_text.png                   |  Bin 0 -> 908 bytes
 docs/media/datatypes_timestamp.png              |  Bin 0 -> 649 bytes
 docs/reports/reporter_template_terminology.adoc |   43 +++++++---------------
 10 files changed, 14 insertions(+), 29 deletions(-)
 create mode 100644 docs/media/datatypes_bool.png
 create mode 100644 docs/media/datatypes_id.png
 create mode 100644 docs/media/datatypes_int.png
 create mode 100644 docs/media/datatypes_interval.png
 create mode 100644 docs/media/datatypes_link.png
 create mode 100644 docs/media/datatypes_money.png
 create mode 100644 docs/media/datatypes_orgunit.png
 create mode 100644 docs/media/datatypes_text.png
 create mode 100644 docs/media/datatypes_timestamp.png


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list