]> source.dussan.org Git - vaadin-framework.git/commitdiff
Set correct GWT .dtd definition (#11110)
authorIlia Motornyi <elmot@vaadin.com>
Mon, 13 Aug 2018 06:40:41 +0000 (09:40 +0300)
committerMehdi Javan <32511762+mehdi-vaadin@users.noreply.github.com>
Mon, 13 Aug 2018 06:40:41 +0000 (09:40 +0300)
client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml
client/src/main/resources/com/vaadin/Vaadin.gwt.xml
compatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml
documentation/clientside/clientside-module.asciidoc
server/src/main/java/com/vaadin/server/widgetsetutils/WidgetSetBuilder.java
test/addon-using-own-widget-set/src/main/resources/com/vaadin/test/addonusingownwidgetset/AddonUsingOwnWidgetSet.gwt.xml
test/own-widget-set/src/main/resources/com/vaadin/test/ownwidgetset/OwnWidgetSet.gwt.xml
test/space in directory/src/main/resources/com/vaadin/test/spaceindirectory/SpaceInDirectory.gwt.xml
test/vaadinservletconfiguration-widget-set/src/main/resources/com/vaadin/test/vaadinservletconfigurationwidgetset/VaadinServletConfigurationWidgetSet.gwt.xml
uitest/src/main/resources/com/vaadin/tests/widgetset/TestingWidgetSet.gwt.xml

index 393e67b2387acc9f16bf7a3190f42f582eeda70d..bf92370b33e19aab0fc79752741824a113c28439 100755 (executable)
@@ -1,5 +1,5 @@
 <?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>
     <!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module
         you want to extend when creating an extended widget set, or when creating
index 347530db2c2df9b98051eb1a67f7b45da22ffcaf..39fe3827a6b9d9e8fbd50def9bcdbfdb887148b0 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <!-- 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
index 548fd27c53d9bc094c9c6ad24bb02d60cf4aa1ff..d941c386337f10707e6fd5b9ef16ad21133f92c7 100755 (executable)
@@ -1,5 +1,5 @@
 <?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>
     <!-- Hint for WidgetSetBuilder not to automatically update the file -->
     <!-- WS Compiler: manually edited -->
index f7476dbe5be65c5b67556d83a9818a9308638ab5..63da2d647b451214c2362e255363f4da9695b4e7 100644 (file)
@@ -20,8 +20,8 @@ widget set, you should normally inherit the [classname]#DefaultWidgetSet#.
 
 <?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">
+  "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN"
+  "http://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd">
 
 <module>
     <!-- Inherit the default widget set -->
index a45d5030a7f518f8a06e27a7264771b771a07d17..03b26d22d0687864a45e5490a73931513ff41a25 100644 (file)
@@ -87,7 +87,7 @@ public class WidgetSetBuilder {
             try (PrintStream printStream = new PrintStream(
                     new FileOutputStream(widgetsetFile))) {
                 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("    <!--\n"
                         + "     Uncomment the following to compile the widgetset for one browser only.\n\n"
index 34c3a6f78ea2952f5db89cbe78fc24a9233748df..7197f453c76731d8d2599b9f40f92a25af5d7e88 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <inherits name="com.vaadin.DefaultWidgetSet" />
 
index 6464b33b5eaaf275ef1f08f58341e00e986cfcdf..e7a4cc17dcee665498c812ae4ff311f287207f6a 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <inherits name="com.vaadin.DefaultWidgetSet" />
 </module>
index d5f502563c9f3c31e3acb370824aaf325d9908f5..b972694a3b9f4a3203dec5614e8b409600557e6f 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <inherits name="com.vaadin.DefaultWidgetSet" />
 </module>
\ No newline at end of file
index d5f502563c9f3c31e3acb370824aaf325d9908f5..b972694a3b9f4a3203dec5614e8b409600557e6f 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <inherits name="com.vaadin.DefaultWidgetSet" />
 </module>
\ No newline at end of file
index 60103c1ff5dce4614f352ab95b441a0e42e2ab5d..4a70b40dec5170ce4ad90c31de631dd16cce191f 100644 (file)
@@ -1,5 +1,5 @@
 <?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>
     <!-- WS Compiler: manually edited -->