Changeset 6098


Ignore:
Timestamp:
2003-12-02T17:28:05+13:00 (20 years ago)
Author:
jmt12
Message:

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.

Location:
trunk/gli/classes/xml
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/classes/xml/config.xml

    r6031 r6098  
    11<?xml version="1.0" encoding="UTF-8" ?>
    22<!DOCTYPE Configuration [
    3   <!ELEMENT Configuration  (GathererConfig, Other)>
     3  <!ELEMENT Configuration  (GathererConfig, Other, DirectoryMappings)>
    44  <!ELEMENT GathererConfig (Argument*)>
    55  <!ELEMENT Argument       (#PCDATA)>
     
    1717  <!ELEMENT Name           (#PCDATA)>
    1818  <!ELEMENT Desc           (#PCDATA)>
     19  <!ELEMENT DirectoryMappings (Mapping*)>
     20  <!ELEMENT Mapping           (#PCDATA)>
     21  <!ATTLIST Mapping
     22            name              CDATA #REQUIRED
     23        file              CDATA #REQUIRED>
    1924]>
    2025
     
    117122  </GathererConfig>
    118123  <Other/>
     124  <DirectoryMappings/>
    119125</Configuration>
  • trunk/gli/classes/xml/template.col

    r4293 r6098  
    11<?xml version="1.0" encoding="UTF-8" ?>
    22<!DOCTYPE GathererCollection [
    3   <!ELEMENT GathererCollection (Argument*, GathererConfig, BuildConfig, DirectoryMappings)>
     3  <!ELEMENT GathererCollection (Argument*, GathererConfig, BuildConfig)>
    44  <!ELEMENT GathererConfig    (Arguments*)>
    55  <!ELEMENT BuildConfig       (Build, Import)>
     
    1010            name              CDATA #REQUIRED
    1111                enabled           CDATA "true">
    12   <!ELEMENT DirectoryMappings (Mapping*)>
    13   <!ELEMENT Mapping           (#PCDATA)>
    14   <!ATTLIST Mapping
    15             name              CDATA #REQUIRED
    16                 file              CDATA #REQUIRED>
    1712]>
    1813
     
    2520     <Import/>
    2621  </BuildConfig>
    27   <DirectoryMappings/>
    2822</GathererCollection>
    2923
Note: See TracChangeset for help on using the changeset viewer.