Browse Source

Set correct GWT .dtd definition (#11110)

tags/8.6.0.alpha2
Ilia Motornyi 5 years ago
parent
commit
c10d96b43c

+ 1
- 1
client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module <!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module
you want to extend when creating an extended widget set, or when creating you want to extend when creating an extended widget set, or when creating

+ 1
- 1
client/src/main/resources/com/vaadin/Vaadin.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<!-- This GWT module inherits all Vaadin client side functionality modules. <!-- This GWT module inherits all Vaadin client side functionality modules.
This is the module you want to inherit in your client side project to be This is the module you want to inherit in your client side project to be

+ 1
- 1
compatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<!-- Hint for WidgetSetBuilder not to automatically update the file --> <!-- Hint for WidgetSetBuilder not to automatically update the file -->
<!-- WS Compiler: manually edited --> <!-- WS Compiler: manually edited -->

+ 2
- 2
documentation/clientside/clientside-module.asciidoc View File



<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC <!DOCTYPE module PUBLIC
"-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN"
"http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
"-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN"
"http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">


<module> <module>
<!-- Inherit the default widget set --> <!-- Inherit the default widget set -->

+ 1
- 1
server/src/main/java/com/vaadin/server/widgetsetutils/WidgetSetBuilder.java View File

try (PrintStream printStream = new PrintStream( try (PrintStream printStream = new PrintStream(
new FileOutputStream(widgetsetFile))) { new FileOutputStream(widgetsetFile))) {
printStream.print("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" printStream.print("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+ "<!DOCTYPE module PUBLIC \"-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN\" \"http://gwtproject.org/doctype/2.8.1/gwt-module.dtd\">\n");
+ "<!DOCTYPE module PUBLIC \"-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN\" \"http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd\">\n");
printStream.print("<module>\n"); printStream.print("<module>\n");
printStream.print(" <!--\n" printStream.print(" <!--\n"
+ " Uncomment the following to compile the widgetset for one browser only.\n\n" + " Uncomment the following to compile the widgetset for one browser only.\n\n"

+ 1
- 1
test/addon-using-own-widget-set/src/main/resources/com/vaadin/test/addonusingownwidgetset/AddonUsingOwnWidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<inherits name="com.vaadin.DefaultWidgetSet" /> <inherits name="com.vaadin.DefaultWidgetSet" />



+ 1
- 1
test/own-widget-set/src/main/resources/com/vaadin/test/ownwidgetset/OwnWidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<inherits name="com.vaadin.DefaultWidgetSet" /> <inherits name="com.vaadin.DefaultWidgetSet" />
</module> </module>

+ 1
- 1
test/space in directory/src/main/resources/com/vaadin/test/spaceindirectory/SpaceInDirectory.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<inherits name="com.vaadin.DefaultWidgetSet" /> <inherits name="com.vaadin.DefaultWidgetSet" />
</module> </module>

+ 1
- 1
test/vaadinservletconfiguration-widget-set/src/main/resources/com/vaadin/test/vaadinservletconfigurationwidgetset/VaadinServletConfigurationWidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<inherits name="com.vaadin.DefaultWidgetSet" /> <inherits name="com.vaadin.DefaultWidgetSet" />
</module> </module>

+ 1
- 1
uitest/src/main/resources/com/vaadin/tests/widgetset/TestingWidgetSet.gwt.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN" "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module> <module>
<!-- WS Compiler: manually edited --> <!-- WS Compiler: manually edited -->



Loading…
Cancel
Save