You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/11/07 13:45:47 UTC

[royale-typedefs] branch develop updated: Added CompositionEvent

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git


The following commit(s) were added to refs/heads/develop by this push:
     new c48b4ca  Added CompositionEvent
c48b4ca is described below

commit c48b4ca60c248509c69be4dc75d90c95864252a9
Author: Harbs <ha...@in-tools.com>
AuthorDate: Wed Nov 7 15:45:38 2018 +0200

    Added CompositionEvent
---
 js/build.xml                          |  6 ++++++
 js/pom.xml                            | 14 ++++++++++++++
 js/src/main/config/externc-config.xml |  1 +
 3 files changed, 21 insertions(+)

diff --git a/js/build.xml b/js/build.xml
index 757bfa0..79179fc 100644
--- a/js/build.xml
+++ b/js/build.xml
@@ -102,6 +102,7 @@
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/contrib/externs/svg.js" dest="${basedir}/target/downloads/svg.js" ignoreerrors="true" skipexisting="false"/>
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/es3.js" dest="${basedir}/target/downloads/es3.js" ignoreerrors="true" skipexisting="false"/>
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/es6.js" dest="${basedir}/target/downloads/es6.js" ignoreerrors="true" skipexisting="false"/>
+        <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_composition_event.js" dest="${basedir}/target/downloads/browser/w3c_composition_event.js" ignoreerrors="true" skipexisting="false"/>
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_css.js" dest="${basedir}/target/downloads/browser/w3c_css.js" ignoreerrors="true" skipexisting="false"/>
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/gecko_dom.js" dest="${basedir}/target/downloads/browser/gecko_dom.js" ignoreerrors="true" skipexisting="false"/>
         <get src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_dom2.js" dest="${basedir}/target/downloads/browser/w3c_dom2.js" ignoreerrors="true" skipexisting="false"/>
@@ -121,6 +122,11 @@
             <param name="destDir" value="${basedir}/target/downloads" />
         </antcall>
         <antcall target="get-from-cache-if-needed" >
+            <param name="srcFile" value="w3c_composition_event.js" />
+            <param name="destFile" value="w3c_composition_event.js" />
+            <param name="destDir" value="${basedir}/target/downloads/browser" />
+        </antcall>
+        <antcall target="get-from-cache-if-needed" >
             <param name="srcFile" value="w3c_css.js" />
             <param name="destFile" value="w3c_css.js" />
             <param name="destDir" value="${basedir}/target/downloads/browser" />
diff --git a/js/pom.xml b/js/pom.xml
index 4d6733c..d9f7a31 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -111,6 +111,20 @@
             </configuration>
           </execution>
           <execution>
+            <id>get-w3c_composition_event</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>wget</goal>
+            </goals>
+            <configuration>
+              <url>https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_composition_event.js</url>
+              <outputFileName>w3c_composition_event.js</outputFileName>
+              <outputDirectory>${project.build.directory}/downloads/browser</outputDirectory>
+              <skipCache>true</skipCache>
+              <overwrite>true</overwrite>
+            </configuration>
+          </execution>
+          <execution>
             <id>get-w3c_css</id>
             <phase>validate</phase>
             <goals>
diff --git a/js/src/main/config/externc-config.xml b/js/src/main/config/externc-config.xml
index 1a57c5c..08eb3d4 100644
--- a/js/src/main/config/externc-config.xml
+++ b/js/src/main/config/externc-config.xml
@@ -38,6 +38,7 @@
         <path-element>../../../target/downloads/browser/w3c_anim_timing.js</path-element>
         <path-element>../../../target/downloads/browser/w3c_audio.js</path-element>
         <path-element>../../../target/downloads/browser/w3c_batterystatus.js</path-element>
+        <path-element>../../../target/downloads/browser/w3c_composition_event.js</path-element>
         <path-element>../../../target/downloads/browser/w3c_css.js</path-element>
         <path-element>../../../target/downloads/browser/w3c_css3d.js</path-element>
         <path-element>../../../target/downloads/browser/w3c_device_sensor_event.js</path-element>