source: main/trunk/model-sites-dev/heritage-nz/groupConfig.xml@ 33023

Last change on this file since 33023 was 32805, checked in by davidb, 5 years ago

More initial files for site/collect

  • Property svn:mime-type set to application/xml
File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- Collection groups configuration file
3
4A collection group is a set of collections that are presented under one
5icon/link on the home page. Clicking that link takes you to the group home page,
6which lists all the collections in that group.
7
8By default, there are no groups.
9
10Uncomment or add hierarchy and groupDescriptions elements to add groups to your library.
11
12Describe your structure inside a hierarchy tag as shown in the examples below.
13
14Hierarchy can contain groups and/or collections. Groups can contain other groups and/or collections.
15The order they are listed is the order they will appear on the home page.
16
17Describe your groups in groupDescriptions element as shown in the example below.
18Without a matching group element in groupDescriptions, a group mentioned in the hierarchy
19will be invisible (but available).
20
21If a collection is not mentioned in the hierarchy or as part of a group it will be listed on the main
22home page after the specified groups and collections.
23-->
24
25<!-- this example puts a few Greenstone demo collections into some groups. The home page
26will display the demo group plus any unlisted collections. The demo group home page will display its two subgroups;
27their home pages will display their list of collections. -->
28
29<!--
30<groupConfig>
31 <hierarchy>
32 <group name="demo">
33 <group name="standard">
34 <collection name="solr-jdbm-demo" />
35 <collection name="lucene-jdbm-demo" />
36 </group>
37 <group name="dec">
38 <collection name="bibtex-e"/>
39 <collection name="dls-e"/>
40 <collection name="garish-e"/>
41 <collection name="isis-e"/>
42 </group>
43 </group>
44 </hierarchy>
45 <groupDescriptions>
46 <group name="demo">
47 <title>Demo Collections</title>
48 <description>Collections for demonstration purposes, provided by the Greenstone project.</description>
49 <shortDescription>Greenstone demonstration collections</shortDescription>
50 <backgroundImage>/images/Group3.jpg</backgroundImage>
51 </group>
52 <group name="standard">
53 <title>Standard Demos</title>
54 <description>These collections are the standard demonstration collections that come with a Greenstone binary release.</description>
55 <shortDescription>Demonstration collections that come with the Greenstone binary.</shortDescription>
56 </group>
57 <group name="dec">
58 <title>Documented Example Collections</title>
59 <description>These documented example collections describe how they are constructed on their about page. Useful for learning about different Greenstone features.</description>
60 <shortDescription>Collections that describe how they were built.</shortDescription>
61 </group>
62 </groupDescriptions>
63</groupConfig>
64 -->
65
66<!-- If you want to put your collections into a specific order, you can list them in the hierarchy. Any unmentioned collections will be listed at the end. -->
67
68<!--
69<groupConfig>
70 <hierarchy>
71 <collection name="solr-jdbm-demo"/>
72 <collection name="lucene-jdbm-demo"/>
73 <collection name="paradise-gardens"/>
74 </hierarchy>
75</groupConfig>
76-->
77
78<groupConfig>
79</groupConfig>
Note: See TracBrowser for help on using the repository browser.