en:user:gs3_sample_format_statements
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:user:gs3_sample_format_statements [2016/10/09 23:11] – [Adding javascript into a page] kjdon | en:user:gs3_sample_format_statements [2024/07/05 01:00] (current) – [Image Display Example] kjdon | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | |||
+ | |||
+ | |||
====== Sample Greenstone3 Format Statements ====== | ====== Sample Greenstone3 Format Statements ====== | ||
Line 153: | Line 156: | ||
</ | </ | ||
+ | ==== Adjusting view for paged image documents ==== | ||
- | ===== Linking metadata to a search ===== | + | By default, paged image documents will display the image with the associated text underneath. A "view selector" |
+ | These can be customised in the < | ||
+ | |||
+ | *To hide the view selector: | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | *To set the default view to image: | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | ===== Handling multi-valued metadata ===== | ||
+ | |||
+ | ==== Displaying values in a bulleted list ==== | ||
+ | |||
+ | Say we want to display all the authors of a document in a bulleted list. We can't just use < | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | This will produce output like: | ||
+ | |||
+ | < | ||
+ | ==== Linking metadata to a search ==== | ||
+ | |||
+ | How to link metadata values to a search for that value? | ||
- | How to link metadata values to a search for that value. | ||
For example, say a document has several authors, stored as dc.Creator metadata. You can display a list of the authors, each one linked to a search of the dc.Creator index for that author. | For example, say a document has several authors, stored as dc.Creator metadata. You can display a list of the authors, each one linked to a search of the dc.Creator index for that author. | ||
Line 226: | Line 259: | ||
==== Adding javascript into a page ==== | ==== Adding javascript into a page ==== | ||
+ | |||
+ | To add the javascript into an XSL file, you encase it in script tags. And because XSL will escape double quotes by default, you need to put it inside **< | ||
+ | |||
+ | < | ||
+ | <script type=" | ||
+ | < | ||
+ | function humanReadableFileSize(bytes) | ||
+ | { | ||
+ | var filesize = bytes + " bytes"; | ||
+ | if (bytes > 1048576) { | ||
+ | filesize = Math.round(bytes / 1048576.0) + " MB"; | ||
+ | } | ||
+ | else if (bytes > 1024) { | ||
+ | filesize = Math.round(bytes/ | ||
+ | } | ||
+ | return filesize; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | </ | ||
There are multiple places you can use to add some javascript into your library. | There are multiple places you can use to add some javascript into your library. | ||
- | * All pages, | + | |
+ | |||
+ | **web/ | ||
+ | |||
+ | * **Only classifier pages, all collections** | ||
+ | |||
+ | The **create-html-header** template calls an additional template **additionalHeaderContent**, | ||
+ | |||
+ | * **All pages, single collection** | ||
+ | |||
+ | The **additionalHeaderContent** template calls further specifric templates, including **additionalHeaderContent-collection**. This template can be added into the collection' | ||
+ | |||
+ | < | ||
+ | < | ||
+ | <script type=" | ||
+ | < | ||
+ | function humanReadableFileSize(bytes) | ||
+ | { | ||
+ | .. function content here... | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | * **single page, single collection** | ||
+ | |||
+ | Say you just want to use this new javascript on the classifier pages, then add the template into the main classifier format element. Or add it into the format element of a specific classifier and it will only be available for that single classifier. | ||
- | web/ | ||
==== Using the javascript in the format statement ==== | ==== Using the javascript in the format statement ==== | ||
Line 265: | Line 345: | ||
</ | </ | ||
- | This lets us check that our function is correct and we are getting the right metadata. However, using " | + | This lets us check that our function is correct and we are getting the right metadata. However, using " |
- | Instead, we will need to set the innerHTML | + | Instead, we will need to add to the html of the td element. This means we need to give the td element an id so we can find it again. |
+ | If the <td> we are adding the filesize to contains only the filesize, then we can use the element.innerHTML() method to set the content. | ||
< | < | ||
<td> | <td> | ||
Line 274: | Line 355: | ||
<script type=" | <script type=" | ||
document.getElementById(< | document.getElementById(< | ||
+ | </ | ||
+ | </td> | ||
+ | </ | ||
+ | |||
+ | However, if this <td> element already has content, then we need to append the filesize, using element.appendChild() and document.createTextNode(). For example: | ||
+ | |||
+ | < | ||
+ | <td> | ||
+ | < | ||
+ | ...other content here... | ||
+ | <script type=" | ||
+ | document.getElementById(< | ||
</ | </ | ||
</td> | </td> | ||
Line 285: | Line 378: | ||
We set the text to be the result of calling our function on the filesize metadata. | We set the text to be the result of calling our function on the filesize metadata. | ||
+ | |||
+ | To add to an element' | ||
One further tricky part. We want to write **document.getElementById("< | One further tricky part. We want to write **document.getElementById("< | ||
- | i.e. **document.getElementById(< | + | i.e. **document.getElementById(< |
- | ** | + | |
- | Greenstone provides a shorthand: **< | + | |
- | + | ||
+ | Greenstone provides a shorthand: **< | ||
en/user/gs3_sample_format_statements.1476054697.txt.gz · Last modified: 2016/10/09 23:11 by kjdon