source: trunk/gli/classes/xml/template.col@ 6098

Last change on this file since 6098 was 6098, checked in by jmt12, 20 years ago

Moved the special folder 'shortcuts' from collection based to shared for the installation of gli. This caused some added fun when it turned out one of the workspace tree refreshes was blocking the AWTEvent thread, despite me putting tests in place to stop that from happening. It had never reared its ugly head before, as there were never any shortcut collections being mapped when a collection had been closed, or when GLI was exiting before.

  • Property svn:keywords set to Author Date Id Revision
File size: 682 bytes
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<!DOCTYPE GathererCollection [
3 <!ELEMENT GathererCollection (Argument*, GathererConfig, BuildConfig)>
4 <!ELEMENT GathererConfig (Arguments*)>
5 <!ELEMENT BuildConfig (Build, Import)>
6 <!ELEMENT Build (Arguments*)>
7 <!ELEMENT Import (Arguments*)>
8 <!ELEMENT Argument (#PCDATA)>
9 <!ATTLIST Argument
10 name CDATA #REQUIRED
11 enabled CDATA "true">
12]>
13
14<GathererCollection>
15 <Argument name="built">false</Argument>
16 <Argument name="imported">false</Argument>
17 <GathererConfig/>
18 <BuildConfig>
19 <Build/>
20 <Import/>
21 </BuildConfig>
22</GathererCollection>
23
24
25
Note: See TracBrowser for help on using the repository browser.