You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/09/16 00:27:35 UTC

[2/2] git commit: [flex-examples] [refs/heads/develop] - cache committer list

cache committer list


Project: http://git-wip-us.apache.org/repos/asf/flex-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-examples/commit/4f15847a
Tree: http://git-wip-us.apache.org/repos/asf/flex-examples/tree/4f15847a
Diff: http://git-wip-us.apache.org/repos/asf/flex-examples/diff/4f15847a

Branch: refs/heads/develop
Commit: 4f15847a8055c6eca7f131c65cf1ec502cb71ba2
Parents: 2eb06d6
Author: Alex Harui <ah...@apache.org>
Authored: Tue Sep 15 15:28:14 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Sep 15 15:28:14 2015 -0700

----------------------------------------------------------------------
 ProductDashboard/build.xml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-examples/blob/4f15847a/ProductDashboard/build.xml
----------------------------------------------------------------------
diff --git a/ProductDashboard/build.xml b/ProductDashboard/build.xml
index f24a22b..6917ce8 100644
--- a/ProductDashboard/build.xml
+++ b/ProductDashboard/build.xml
@@ -218,6 +218,7 @@
     </macrodef>
     
     <target name="get-data" description="gets data from various sources, sort of like a proxy server">
+        <mkdir dir="${basedir}/bin-debug/people.apache.org" />
         <mkdir dir="${basedir}/bin-debug/archive.apache.org/dist/flex/flexjs" />
         <mkdir dir="${basedir}/bin-debug/archive.apache.org/dist/flex/installer" />
         <mkdir dir="${basedir}/bin-debug/archive.apache.org/dist/flex/BlazeDS" />
@@ -231,6 +232,8 @@
         <mkdir dir="${basedir}/bin-debug/dist.apache.org/repos/dist/release/flex/squiggly" />
         <mkdir dir="${basedir}/bin-debug/dist.apache.org/repos/dist/release/flex/tourdeflex" />
         <mkdir dir="${basedir}/bin-debug/issues.apache.org/jira/rest/api/2" />
+        <get src="http://people.apache.org/committers-by-project.html"
+            dest="${basedir}/bin-debug/people.apache.org/committers-by-project.html" />
         <get src="http://archive.apache.org/dist/flex/"
             dest="${basedir}/bin-debug/archive.apache.org/dist/flex/index.html" />
         <get src="http://archive.apache.org/dist/flex/flexjs/"
@@ -261,6 +264,7 @@
             dest="${basedir}/bin-debug/dist.apache.org/repos/dist/release/flex/tourdeflex/index.html" />
         <get src="https://issues.apache.org/jira/rest/api/2/search?jql=project%20%3D%20FLEX%20AND%20status%20%3D%20open"
             dest="${basedir}/bin-debug/issues.apache.org/jira/rest/api/2/search" />
+        <mkdir dir="${basedir}/bin/js-debug/people.apache.org" />
         <mkdir dir="${basedir}/bin/js-debug/archive.apache.org/dist/flex/flexjs" />
         <mkdir dir="${basedir}/bin/js-debug/archive.apache.org/dist/flex/installer" />
         <mkdir dir="${basedir}/bin/js-debug/archive.apache.org/dist/flex/BlazeDS" />
@@ -277,9 +281,11 @@
         <copy todir="${basedir}/bin/js-debug">
             <fileset dir="${basedir}/bin-debug">
                 <include name="**/index.html" />
+                <include name="**/committers-by-project.html" />
                 <include name="issues.apache.org/jira/rest/api/2/search" />
             </fileset>
         </copy>
+        <mkdir dir="${basedir}/bin/js-release/people.apache.org" />
         <mkdir dir="${basedir}/bin/js-release/archive.apache.org/dist/flex/flexjs" />
         <mkdir dir="${basedir}/bin/js-release/archive.apache.org/dist/flex/installer" />
         <mkdir dir="${basedir}/bin/js-release/archive.apache.org/dist/flex/BlazeDS" />
@@ -296,6 +302,7 @@
         <copy todir="${basedir}/bin/js-release">
             <fileset dir="${basedir}/bin-debug">
                 <include name="**/index.html" />
+                <include name="**/committers-by-project.html" />
                 <include name="issues.apache.org/jira/rest/api/2/search" />
             </fileset>
         </copy>