Reviewers: bobv,
Please review this at http://gwt-code-reviews.appspot.com/34819 Affected files: distro-source/core/src/gwt-module.dtd Index: distro-source/core/src/gwt-module.dtd =================================================================== --- distro-source/core/src/gwt-module.dtd (revision 5462) +++ distro-source/core/src/gwt-module.dtd (working copy) @@ -16,7 +16,9 @@ <!-- The module root element --> <!ELEMENT module (inherits | source | public | super-source | entry-point | stylesheet | script | servlet | replace-with | generate-with | - define-property | extend-property | set-property | set-configuration-property | + define-property | extend-property | set-property | + clear-configuration-property | define-configuration-property | + extend-configuration-property | set-configuration-property | property-provider | define-linker | add-linker)*> <!ATTLIST module rename-to CDATA #IMPLIED @@ -108,6 +110,12 @@ name CDATA #REQUIRED values CDATA #REQUIRED > +<!-- Define a configuration property --> +<!ELEMENT define-configuration-property EMPTY> +<!ATTLIST define-configuration-property + name CDATA #REQUIRED + is-multi-valued CDATA #REQUIRED +> <!-- Set the value of a previously-defined property --> <!ELEMENT set-property EMPTY> <!ATTLIST set-property @@ -126,6 +134,17 @@ name CDATA #REQUIRED values CDATA #REQUIRED > +<!-- Add additional allowable values to a configuration property --> +<!ELEMENT extend-configuration-property EMPTY> +<!ATTLIST extend-configuration-property + name CDATA #REQUIRED + value CDATA #REQUIRED +> +<!-- Remove all allowable values from a configuration property --> +<!ELEMENT clear-configuration-property EMPTY> +<!ATTLIST clear-configuration-property + name CDATA #REQUIRED +> <!-- Define a JavaScript fragment that will return the value for the named property at runtime --> <!ELEMENT property-provider (#PCDATA)> <!ATTLIST property-provider --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
