source: main/trunk/model-sites-dev/opotiki/groupConfig.xml@ 34274

Last change on this file since 34274 was 34274, checked in by ak19, 4 years ago

groupConfig, as per code in home.xsl, should refer to images in sites folder not interfaces folder. Editing groupConfig to leave out starting slash to images folder, and am using different image names

File size: 4.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 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="culture">
32 <collection name="imagesco" />
33 <collection name="waiatade" />
34 <collection name="textdemo" />
35 </group>
36 <group name="health">
37 </group>
38 <group name="education">
39 <collection name="gs3tutorials" />
40 <collection name="gs3tuts-metacsv" />
41 <collection name="testing" />
42 <collection name="bugfixing" />
43 <collection name="metacsv" />
44 </group>
45 <group name="economic-development">
46 </group>
47 <group name="social-wellbeing">
48 </group>
49 <group name="environment">
50 </group>
51 </hierarchy>
52 <groupDescriptions>
53 <group name="culture">
54 <title>Whakatoheatanga - Culture</title>
55 <description>Collections in pou Whakatoheatanga - Culture</description>
56 <shortDescription>Pou Whakatoheatanga - Culture</shortDescription>
57 <backgroundImage>images/pou-01-whakatoheatanga.jpg</backgroundImage>
58 </group>
59 <group name="health">
60 <title>Hauora - Health</title>
61 <description>Collections in pou Hauora - Health</description>
62 <shortDescription>Pou Hauora - Health</shortDescription>
63 <backgroundImage>images/pou-02-hauora.jpg</backgroundImage>
64 </group>
65 <group name="education">
66 <title>Mātauranga - Education</title>
67 <description>Collections in pou Mātauranga - Education</description>
68 <shortDescription>Pou Mātauranga - Education</shortDescription>
69 <backgroundImage>images/pou-03-matauranga.jpg</backgroundImage>
70 </group>
71 <group name="economic-development">
72 <title>Whai Rawa - Economic Development</title>
73 <description>Collections in pou Whai Rawa - Economic Development</description>
74 <shortDescription>Pou Whai Rawa - Economic Development</shortDescription>
75 <backgroundImage>images/pou-04-whai-rawa.jpg</backgroundImage>
76 </group>
77 <group name="social-wellbeing">
78 <title>Whanaungatanga - Social Wellbeing</title>
79 <description>Collections in pou Whanaungatanga - Social Wellbeing</description>
80 <shortDescription>Pou Whanaungatanga - Social Wellbeing</shortDescription>
81 <backgroundImage>images/pou-05-whanaungatanga.jpg</backgroundImage>
82 </group>
83 <group name="environment">
84 <title>Taiao - Environment</title>
85 <description>Collections in pou Taiao - Environment</description>
86 <shortDescription>Pou Taiao - Environment</shortDescription>
87 <backgroundImage>images/pou-06-taiao.jpg</backgroundImage>
88 </group>
89 </groupDescriptions>
90</groupConfig>
91
92
93<!-- 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. -->
94
95<!--
96<groupConfig>
97 <hierarchy>
98 <collection name="solr-jdbm-demo"/>
99 <collection name="lucene-jdbm-demo"/>
100 <collection name="paradise-gardens"/>
101 </hierarchy>
102</groupConfig>
103-->
104
105<!--
106<groupConfig>
107</groupConfig>
108-->
Note: See TracBrowser for help on using the repository browser.