source: main/trunk/greenstone3/web/sites/localsite/groupConfig.xml@ 33065

Last change on this file since 33065 was 32554, checked in by kjdon, 5 years ago

changed a comment

File size: 3.0 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 will display its group name only.
19
20If a collection is not mentioned in the hierarchy or as part of a group it will be listed on the main
21home page after the specified groups and collections.
22-->
23
24<!-- this example puts a few Greenstone demo collections into some groups. The home page
25will display the demo group plus any unlisted collections. The demo group home page will display its two subgroups;
26their home pages will display their list of collections. -->
27
28<!--
29<groupConfig>
30 <hierarchy>
31 <group name="demo">
32 <group name="standard">
33 <collection name="solr-jdbm-demo" />
34 <collection name="lucene-jdbm-demo" />
35 </group>
36 <group name="dec">
37 <collection name="bibtex-e"/>
38 <collection name="dls-e"/>
39 <collection name="garish-e"/>
40 <collection name="isis-e"/>
41 </group>
42 </group>
43 </hierarchy>
44 <groupDescriptions>
45 <group name="demo">
46 <title>Demo Collections</title>
47 <description>Collections for demonstration purposes, provided by the Greenstone project.</description>
48 <shortDescription>Greenstone demonstration collections</shortDescription>
49 <backgroundImage>/images/Group3.jpg</backgroundImage>
50 </group>
51 <group name="standard">
52 <title>Standard Demos</title>
53 <description>These collections are the standard demonstration collections that come with a Greenstone binary release.</description>
54 <shortDescription>Demonstration collections that come with the Greenstone binary.</shortDescription>
55 </group>
56 <group name="dec">
57 <title>Documented Example Collections</title>
58 <description>These documented example collections describe how they are constructed on their about page. Useful for learning about different Greenstone features.</description>
59 <shortDescription>Collections that describe how they were built.</shortDescription>
60 </group>
61 </groupDescriptions>
62</groupConfig>
63 -->
64
65<!-- 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. -->
66
67<!--
68<groupConfig>
69 <hierarchy>
70 <collection name="solr-jdbm-demo"/>
71 <collection name="lucene-jdbm-demo"/>
72 <collection name="paradise-gardens"/>
73 </hierarchy>
74</groupConfig>
75-->
76
77<groupConfig>
78</groupConfig>
Note: See TracBrowser for help on using the repository browser.