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

Last change on this file since 35277 was 35277, checked in by anupama, 3 years ago

Followed Kathy's advice and reorganised groupConfig.xml (and its processing in transform/pages/home) to use displayItemList>displayItem elementsstructure instead of individual title, shortDescription, backgroundImage etc elements.

File size: 5.5 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="brian-colldesign-demo" />
41 <!--<collection name="gs3tuts-metacsv" />
42 <collection name="testing" />
43 <collection name="bugfixing" />
44 <collection name="metacsv" />-->
45 </group>
46 <group name="economics">
47 </group>
48 <group name="social">
49 </group>
50 <group name="environment">
51 </group>
52 <!-- These 3 collections to be accessible at top level as per Anita -->
53 <!-- 1 Sep 2020: Anita wished for the main page to be 2 x 3 -->
54 <!--<collection name="imagesco" />
55 <collection name="waiatade" />
56 <collection name="textdemo" />
57 -->
58 </hierarchy>
59 <groupDescriptions>
60 <group name="culture">
61 <displayItemList>
62 <displayItem name="name">Whakatōheatanga - Culture</displayItem>
63 <displayItem name="description">Kia pūmau ki to tātou Whakatōheatanga.
64 <br />Culturally empowered, fully conversant in Te Reo me ngā tikanga o Whakatōhea</displayItem>
65 <displayItem name="shortDescription">Pou Whakatōheatanga - Culture</displayItem>
66 <displayItem name="backgroundImage">images/pou-01-whakatoheatanga.jpg</displayItem>
67 </displayItemList>
68 </group>
69 <group name="health">
70 <displayItemList>
71 <displayItem name="name">Hauora - Health</displayItem>
72 <displayItem name="description">Whānau ora, hapū ora, ka ora ai te Iwi<br />
73 When our Whānau and hapū are well our Iwi will thrive</displayItem>
74 <displayItem name="shortDescription">Pou Hauora - Health</displayItem>
75 <displayItem name="backgroundImage">images/pou-02-hauora.jpg</displayItem>
76 </displayItemList>
77 </group>
78 <group name="education">
79 <displayItemList>
80 <displayItem name="name">Mātauranga - Education</displayItem>
81 <displayItem name="description">Ko te mātauranga te waka e kawe nei ngā wawata<br />
82 Education is the vehicle to realizing our potential dreams and aspirations</displayItem>
83 <displayItem name="shortDescription">Pou Mātauranga - Education</displayItem>
84 <displayItem name="backgroundImage">images/pou-03-matauranga.jpg</displayItem>
85 </displayItemList>
86 </group>
87 <group name="economics">
88 <displayItemList>
89 <displayItem name="name">Whai Rawa - Economics</displayItem>
90 <displayItem name="description">Mā te whai rawa ka pūāwai te mana o Whakatōhea<br />
91 Having an abundance of jobs and flourishing commercial activities,
92 through collective strength.</displayItem>
93 <displayItem name="shortDescription">Pou Whai Rawa - Economic Development</displayItem>
94 <displayItem name="backgroundImage">images/pou-04-whai-rawa.jpg</displayItem>
95 </displayItemList>
96 </group>
97 <group name="social">
98 <displayItemList>
99 <displayItem name="name">Manaakitanga - Social</displayItem>
100 <displayItem name="description">Manaaki i te tangata Mā te whānaunga, he tangata kotahi tātou<br />
101 Empowered whānau to build strong relationships</displayItem>
102 <displayItem name="shortDescription">Pou Manaakitanga - Social, Wellbeing</displayItem>
103 <displayItem name="backgroundImage">images/pou-05-manaakitanga.jpg</displayItem>
104 </displayItemList>
105 </group>
106 <group name="environment">
107 <displayItemList>
108 <displayItem name="name">Toi Ora - Environment</displayItem>
109 <displayItem name="description">Te tino rangatiratanga o a tātou whenua, o a tātou moana, awa me o tātou tāonga katoa.<br />
110 We are active partners and kaitiaki (stewards) of our natural resources.</displayItem>
111 <displayItem name="shortDescription">Pou Toi Ora - Environment, Sustainability</displayItem>
112 <displayItem name="backgroundImage">images/pou-06-toi-ora.jpg</displayItem>
113 </displayItemList>
114 </group>
115 </groupDescriptions>
116</groupConfig>
117
118
119<!-- 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. -->
120
121<!--
122<groupConfig>
123 <hierarchy>
124 <collection name="solr-jdbm-demo"/>
125 <collection name="lucene-jdbm-demo"/>
126 <collection name="paradise-gardens"/>
127 </hierarchy>
128</groupConfig>
129-->
130
131<!--
132<groupConfig>
133</groupConfig>
134-->
Note: See TracBrowser for help on using the repository browser.