]> source.dussan.org Git - vaadin-framework.git/commitdiff
Allow parameterizing documentation checkout repository URL. Make the checkout quietly.
authorMarko Grönroos <magi@iki.fi>
Mon, 26 Oct 2009 18:54:12 +0000 (18:54 +0000)
committerMarko Grönroos <magi@iki.fi>
Mon, 26 Oct 2009 18:54:12 +0000 (18:54 +0000)
svn changeset:9383/svn branch:6.2

build/build.xml

index 4af539aeffe1f4727f8c29ea536e204c3bdc8a6f..08980fcce3370144b4755234520f202709de35e0 100644 (file)
 
     <!-- Checkout doc repository. -->
     <target name="manual-checkout" depends="manual-init" unless="docdir">
+               <property name="manual.repository" value="http://dev.vaadin.com/svn/doc/trunk"/>
+
+               <echo>Checking out manual from repository ${manual.repository}</echo>
+
         <mkdir dir="${checkout-path}"/>
 
         <exec executable="svn" dir="${checkout-path}">
             <arg value="checkout"/>
-            <arg value="http://dev.vaadin.com/svn/doc/trunk"/>
+            <arg value="-q"/>
+            <arg value="${manual.repository}"/>
             <arg value="docs"/>
         </exec>
 
                <!-- Documentation source directory. -->
         <property name="docdir" value="${checkout-path}/docs"/>
+
+               <echo>Manual checked out from repository successfully</echo>
     </target>
 
     <!-- If the XEP is installed, copy it to proper place. -->