Difference between revisions of "Views.pl"

From EPrints Documentation
Jump to: navigation, search
(viewtitle_eprints -> viewtitle_eprint , based on code: $phrase_id = "viewtitle_".$ds->confid()."_".$view->{id}."_list";)
Line 1: Line 1:
 
[[Category:Browse Views]]
 
[[Category:Browse Views]]
 +
[[Category:Documentation Needed]]
 
== Views ==
 
== Views ==
 
Conceptually a ''view'' is a browsable list of eprints split into ''menus'' and a ''list''.
 
Conceptually a ''view'' is a browsable list of eprints split into ''menus'' and a ''list''.

Revision as of 15:08, 9 December 2014

Views

Conceptually a view is a browsable list of eprints split into menus and a list.

Menu1        
  Item1_1 ------ ---> Menu2    
  Item1_2     Item2_1 ----- --->     LIST    
  ....     Item2_2     ....
      ....    

In a menu values of one (or more) fields are listed, and a link points to the collection of all items with that particular value in that field.

The list contains the final list of eprints with field values as determined by the menus above it.


Options available for the views config

This link is an 'How to' about views with examples.

The general form of views definition is

 $c->{browse_views} = [
   { <first view definition> },
   { <second view definition> },
   ...
   { <last view definition> },
 ];

(be careful about commas and semicolons). The order of the view definitions determines the order in which these will appear in the http://repoid/view/ page.

Each view definition is a collection of attributes, given as

   attribute1 => value1,
   attribute2 => value2,
   ...

(again, the value should end by a comma). The value can be

  • integer
  • string enclosed by quotation marks (") or by apostrophes (')
  • array which starts by a square bracket [ followed by the elements of the array (separated by commas) and closed by ] or
  • hash which is a list of "attribute => value" pairs enclosed by curly brackets { and }.

Thus the browse_views definition is an array of hashes.

Attributes marked by (V) are view attributes and are in the view definition; attributes marked by (M) are menu attributes and should be used only in menu definitions.

Basic options

Options in the first category are view options.

id (V) (mandatory) String, this is the ID by which you will refer to this view, and also the name of the top directory in http://repoid/view/. This is the value of the browse_link attribute in eprint_fields.pl. Example:
   id => 'divisions',
fields (V) (deprecated) This attribute describes the field(s) by which the view is built. It has been replaced by the more general menus attribute.
hideempty (V)

allow_null (V) new_column_at (V) render_menu (V)

These define the default values of the same attributes in all menus. I.e, if not defined otherwise there, they take this as the default value in this view. "Hideempty" is also used when rendering the view list.
menus (V) An array of menu descriptions. Each menu is a refinement of the previous ones, and last menu points to the view list(s). In each menu, as minimum, you should give the field(s) which are used to define entries at that level. The menus definition looks like
 menus => [
    { <first menu definition> },
    { <second level menu> },
    { <last level> },
 ],

You must have at least one menu level.

template (V) Define an alternate template for all pages in this view. The template page should be a proper xml file in the repoid/cfg/lang/<langid>/templates/ directory. The best way is to copy the default.xml file and edit it according to taste.
 template => 'view_template',
nolink (V) When this is set to 1 by adding
 nolink => 1,

then this view won't appear in the outmost http://repoid/view/ browse page.

max_menu_age (V) Defaults to 86400 (one day in seconds). If the menus in this view has been generated more than that many seconds ago, it is regenerated.


View list options

These are the options which determine how the last list page in the menu chain should look like. They must be entered at the outmost view level.

order (V) This defines how the items in the view list (at the lowest level) are ordered. The format is 'foo/-bar'. This means that the list will be sorted by 'foo' and then any equal 'foo' values will be reverse sorted by 'bar'. More than 2 fields can be specified. Example:
 order => "-date/title",
hideup (V) Don't show the "up one level" link in the list page. You must set this attribute for each menu separately, it is not inherited.
hideempty (V) Do not list the empty (undefined) entry in the list. This property inherits to the menus.
nocount (V) If set, the "Number of items" line at the top of the page is omitted.
notimestamp (V) If set, the "This list was generated on" line at the bottom of the list is omitted.
variations (V) An array of strings describing different rendering of the items at the list. For datails see variations. Example:
   variation => [ "creators_name;first_letter", 
       "type", "DEFAULT", ],
layout (V) Possible values are
  • paragraph (default)
  • orderedlist
  • unorderedlist

Determines how items in the list (or sublist) is rendered. In the first case each item is a paragraph by itself. In the other cases items are rendered as an ordered (unordered) list.

citation (V) The citation style defined in archives/<REPOID>/cfg/citations/eprint/ which is used to render each item. Example:
 citation => 'screen',
max_list_age (V) Defaults to 86400 (one day in seconds). If the lists in this view were generated more than than many seconds ago, it is regenerated.


Variations

Variations, if defined, determine how the final list is rendered. Variations is an array of strings, for example,

[ "creators_name;first_letter",
  "type",
  "DEFAULT",
]

For each string in the list, a different rendering is produced, and you can switch from one to the other. The variation "DEFAULT" is the default one, it is always a good practice to include it in the list. If no variation is given, "DEFAULT" is used.

A variation definition consists of a field name, followed by zero, one or more options after a semicolon. Options are separated by commas. An option is either a single attribute, or an attribute, an equal sign, and the value of the attribute. For example,

   "creators_name;truncate=4,hideup"

sets the attribute value "truncate" to 4, and "hideup" to 1 (or true).

The following options are available. These options are part of the string defining the variation, and should not be entered as attributes.

reverse Reverses the order in which the groupings are shown. Default is the ordervalue for that field (usually alphanumeric). Useful for dates as you may want the highest values first.
filename Changes the filename of the view variation. The default is the name of the metadata field used, so if two variations use the same metadata field with different options, this is needed.
filename=different_filename
first_value If a field is multiple, only use the first value. Otherwise each item will appear once for each value.
first_initial If using a name, truncate the given name to the first initial. This will make items like "Les Carr" and "Leslie Carr" appear together. Note it will also make "John Smith" and "Jake Smith" appear together too, showing that you really never can win.
first_letter The same as 'truncate=1'
truncate Use the first X characters of a value to group by. truncate=4 may be useful for dates as it will group by the first four digits (the year) only.
truncate=4
tags Useful for fields like keywords where values may be separated by commas or semi-colons. The value is split on these two characters ( , and ; ) and a heading is created for each.
cloud Creates a tag cloud. Sets jump to 'plain', cloudmax to 200, cloudmin to 80 and no_separator, then resizes the jump-to links according to frequency of use.
cloudmax The % size of the largest tag in a tag cloud.
cloudmin The % size of the smallest tag in a tag cloud.
jump Possible values are 'plain', 'default', and 'none'. Example:
 jump=plain

When set to 'plain' turns off the 'jump to' text before the list of subheading navigation links. When 'none', then the 'jump' part is not rendered.

no_seperator (sic) Turns of the separator between each subheading navigation link (by default a vertical bar symbol).
string Uses values 'as is'. No ordervalues, no phrases.
hideup (since 3.1.1) Defaults to "0". If set to "1" this hides the "up to parent" link (often you want to hide this on .include files)
render_fn Name of a function to render this groupings list of items. For an example, see views_render_items_example.pl


Menu options

These options can only be used in the menu definitions.

fields (M) Obligatory, an array of field identifiers. Items in all fields are merged together. For example, to define a list of those those who are either authors or editors or both, use the definition
   fields => [ "creators_id", "editors_id" ],

Even if there is a single field, you must use square brackets, such as

   fields => [ "subjects" ],
Important! All fields must have the same type - i.e. you cannot mix titles and authors, say.

You can also add extra rendering info to the field name, without the "render_" prefix. For example, to make a date have resolution year, you would write

   fields => [ "date;res=year" ],

or, ordering authors by their given names rather than by their family names:

   fields => [ "creators_name;order=gf" ],

You can add ";quiet" to the field name to force non-existing values to appear as empty space rather than the ugly "UNDEFINED" (see the allow_null property below). You can find the available rendering properties of different fields in the Metadata section.

allow_null (M) The undefined value among the possible values of the fields does not show up in the generated view. To allow the undefined value to appear as well, set
 allow_null => 1,

Beware: the title of the undefined entries will be the ugly UNDEFINED. You might consider to use the ";quiet" rendering option for field names.

hideempty (M) If a category is empty, don't show it as an entry. Default value: show all entries, even if they contain no entries. Used only in menus, not at the lower level (list).

Example:

   hideempty => 1,
reverse_order (M) If set, then the ordering of items in this menu is reversed. Example:
   reverse_order => 1,
mode (M) Possible values: sections and default (default). When defined as sections then grouping can be defined by the following data:
  • grouping_function (group by first character if not defined)
  • group_sorting_function (how to sort members of a group)
  • group_range_function
  • open_first_section the front page should show the first section

See below.

hideup (M) When set to 1, don't show the "move one level up" link at the top of the page.
render_menu (M) The configuration parameter which renders this menu. This should be a string, and also you should define a routine with the same name. For example if you write
   render_menu => 'render_view_menu_3col_boxes',

then this menu will be rendered by the routine which is defined in views_render_menu_example.pl as

 $c->{render_view_menu_3col_boxes} = sub
 {
      ...
 }

See there for hints how to tweak your own routine.

new_column_at (M) Used in menus (not lists) and in default mode. This is an array of integers representing the number of items in a view list before another column is added. For example:
[ 11 ]

The menu is rendered as a single column data if there are less than 11 entries, then there would be 2 columns.

[ 11, 21 ]

This would have one column if there were ten or less values, two columns if there are twenty or less, and three columns for all other cases.

[ 0, 0 ]

This would always have three columns.

[ 2, 3 ]

This would have one column for a single data, two columns for two, and three columns for three or more data.

Add one to the number of integers in the array and you get the maximum number of columns. The entries are evenly distributed in the columns.


Sections

When a menu is using "sections", then items on the menu are grouped together. The exact method is defined by defining values for several options. These options go to the menus section as well.

grouping_function (M) This function determines how grouping is done. The following predefined functions can be used:
  • "EPrints::Update::Views::group_by_a_to_z"
  • "EPrints::Update::Views::group_by_first_character" (default)
  • "EPrints::Update::Views::group_by_2_characters"
  • "EPrints::Update::Views::group_by_3_characters"
  • "EPrints::Update::Views::group_by_4_characters"
  • "EPrints::Update::Views::group_by_5_characters"

with the usual meaning. If you use 'group_by_a_to_z', all entries not starting with a letter will be discarded.

group_sorting_function (M) A costum function which sorts the group identifiers. The only available function
  • "EPrints::Update::Views::default_sort"

sorts alphabetically.

group_range_function (M) Splits the groups (as determined by the grouping function) into sections so that a group never splits. Groups are rendered separately, but a section is kept on a single page. Available grouping functions are
  • "Eprints::Update::Views::no_ranges" (default)
  • "EPrints::Update::Views::cluster_ranges_<range>"

where <range> is one of 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, and 200.

open_first_section (M) if set, the first section is included in the front page.

Phrases

Views can have their own titles and other phrases. If they do not exist, then a default one is used (usually containing the view's id). For examples, see the views.xml file.

viewname_eprint_<viewid> the name of the browse pages
viewintro_<viewid> The phrase to replace the text "Please select a value to browse from the list below." in the top level menu
viewintro_<viewid>/<value> Intro phrase on the next level
viewtitle_eprint_<viewid>_menu_<level> Title of browse page at level <level>, which is 1, 2, ... In the phrase you can use the pins "value1", "value2", etc. where the number can be one less than the present level; the value of the pin is the actual value of the previous levels. See the example below.
viewgroup_eprint_<viewid>_<filename> Used as a pin value for the title on the list pages, when variations are used. <Filename> is the filename defined as the option of the variation, or, if it is not defined, then it is the fieldname at the beginning.
viewtitle_eprint_<viewid>_list Title of the list pages of the view. You can use the same pins as before ("value1", "value2", etc.). If the list was generated by a variation then the "grouping" pin is also available.

The following example shows how to define these values.

<epp:phrase id="viewname_eprint_divisions">Divisions</epp:phrase>
<epp:phrase id="viewtitle_eprint_divisions_menu_1">
   Browse by Division and Year</epp:phrase>
<epp:phrase id="viewtitle_eprint_divisions_menu_2">
   Browse by Year where Division is
    <epc:pin name="value1" /> </epp:phrase>

Other

heading_level ?
include ?
subheadings ?
nohtml ?
noindex ?