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

Last change on this file since 30662 was 30542, checked in by Georgiy Litvinov, 8 years ago

Added checkFileExistence method for xslt checks. Fixed invisible group button in case badly configured group description.

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- Collection groups configuration file
3 Uncomment hierarchy and groupDescription elements to make collection groups work.
4 Describe your structure inside hiearchy tag as shown in example below.
5 Describe your groups in groupDescriptions element as shown below.
6 Without group tag with @name in groupDescriptions group will be invisible(but available).
7 If your collection not described in hierarchy element it will be visible after described
8 groups and collections at home page.
9 First level - home page
10 Second level - inside first group
11 Third level - inside second group
12
13 -->
14<groupConfig>
15 <!--
16 <hierarchy>
17 <group name="group2">
18 <collection name="solr-jdbm-demo" />
19 </group>
20 <group name="group1">
21 <group name="group3">
22 <collection name="solr-jdbm-demo" />
23 <group name="group1">
24 <collection name="solr-jdbm-demo" />
25 <group name="group1">
26 </group>
27 </group>
28 </group>
29 </group>
30 <collection name="lucene-jdbm-demo" />
31 </hierarchy>
32 <groupDescriptions>
33 <group name="group1">
34 </group>
35 <group name="group2">
36 <title>Group 2 title</title>
37 <description>Second group full description example</description>
38 <shortDescription>Second group short description example</shortDescription>
39
40 </group>
41 <group name="group3">
42 <title>Group 3 title</title>
43 <description>Group 3 full description example </description>
44 <shortDescription>Group 3 short description example</shortDescription>
45 <backgroundImage>/images/Group3.jpg</backgroundImage>
46 </group>
47 </groupDescriptions>
48 -->
49</groupConfig>
Note: See TracBrowser for help on using the repository browser.