Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Vaadin.gwt.xml 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <module>
  2. <!-- This GWT module inherits all Vaadin client side functionality modules.
  3. This is the module you want to inherit in your client side project to be
  4. able to use com.vaadin.* classes. -->
  5. <!-- Hint for WidgetSetBuilder not to automatically update the file -->
  6. <!-- WS Compiler: manually edited -->
  7. <inherits name="com.google.gwt.user.User" />
  8. <inherits name="com.google.gwt.http.HTTP" />
  9. <inherits name="com.google.gwt.json.JSON" />
  10. <inherits name="com.google.gwt.logging.Logging" />
  11. <!-- Firebug handler is deprecated but for some reason still enabled
  12. by default -->
  13. <set-property name="gwt.logging.firebugHandler" value="DISABLED" />
  14. <!-- Disable popup logging as we have our own popup logger -->
  15. <set-property name="gwt.logging.popupHandler" value="DISABLED" />
  16. <inherits name="com.vaadin.VaadinBrowserSpecificOverrides" />
  17. <source path="client" />
  18. <source path="shared" />
  19. <!-- Use own Scheduler implementation to be able to track if commands
  20. are running -->
  21. <replace-with class="com.vaadin.client.VSchedulerImpl">
  22. <when-type-is class="com.google.gwt.core.client.impl.SchedulerImpl" />
  23. </replace-with>
  24. <generate-with
  25. class="com.vaadin.server.widgetsetutils.AcceptCriteriaFactoryGenerator">
  26. <when-type-is class="com.vaadin.client.ui.dd.VAcceptCriterionFactory" />
  27. </generate-with>
  28. <generate-with
  29. class="com.vaadin.server.widgetsetutils.ConnectorBundleLoaderFactory">
  30. <when-type-assignable
  31. class="com.vaadin.client.metadata.ConnectorBundleLoader" />
  32. </generate-with>
  33. <replace-with
  34. class="com.vaadin.client.communication.AtmospherePushConnection">
  35. <when-type-is class="com.vaadin.client.communication.PushConnection" />
  36. </replace-with>
  37. <!-- Set vaadin.profiler to true to include profiling support in the
  38. module -->
  39. <define-property name="vaadin.profiler" values="true,false" />
  40. <set-property name="vaadin.profiler" value="false" />
  41. <replace-with class="com.vaadin.client.Profiler.EnabledProfiler">
  42. <when-type-is class="com.vaadin.client.Profiler" />
  43. <when-property-is name="vaadin.profiler" value="true" />
  44. </replace-with>
  45. <!-- Use the new cross site linker to get a nocache.js without document.write -->
  46. <add-linker name="xsiframe" />
  47. </module>