Skip to content

Commit

Permalink
Support generating MDUI stats directly from the UK channel.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 27, 2011
1 parent 3aa113b commit 08d61d9
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1227,9 +1227,19 @@
<input addproperty="channel">
Please select the channel to use (e.g., us_incommon):
</input>
<CHANNEL.do verb="importRaw" channel="${channel}"/>
<XALAN.noout i="${mdx.dir}/${channel}/imported.xml"
x="${build.dir}/statistics_mdui.xsl"/>
<if>
<equals arg1="${channel}" arg2="uk"/>
<then>
<CHANNEL.do verb="collect" channel="uk"/>
<XALAN.noout i="${mdx.dir}/uk/collected.xml"
x="${build.dir}/statistics_mdui.xsl"/>
</then>
<else>
<CHANNEL.do verb="importRaw" channel="${channel}"/>
<XALAN.noout i="${mdx.dir}/${channel}/imported.xml"
x="${build.dir}/statistics_mdui.xsl"/>
</else>
</if>
</target>

<!--
Expand Down

0 comments on commit 08d61d9

Please sign in to comment.