Changeset 1224
- Timestamp:
- 07/04/09 09:42:43 (4 years ago)
- Files:
-
- apps/opengeo/geoexplorer/trunk/build/build.xml (modified) (2 diffs)
- apps/opengeo/geoexplorer/trunk/src/doc (added)
- apps/opengeo/geoexplorer/trunk/src/doc/Makefile (added)
- apps/opengeo/geoexplorer/trunk/src/doc/conf.py (added)
- apps/opengeo/geoexplorer/trunk/src/doc/getting-started.rst (added)
- apps/opengeo/geoexplorer/trunk/src/doc/glossary.rst (added)
- apps/opengeo/geoexplorer/trunk/src/doc/index.rst (added)
- apps/opengeo/geoexplorer/trunk/src/doc/license.rst (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
apps/opengeo/geoexplorer/trunk/build/build.xml
r1179 r1224 13 13 <tstamp/> 14 14 <mkdir dir="${build}"/> 15 </target> 16 17 <target name="doc" depends="init" description="build documentation"> 18 <echo>Building docs.</echo> 19 <exec executable="sphinx-build" failonerror="true"> 20 <arg line="-b html"/> 21 <arg value="-d"/> 22 <arg path="${src}/doc/_build/doctrees"/> 23 <arg path="${src}/doc"/> 24 <arg path="${build}/doc"/> 25 </exec> 15 26 </target> 16 27 … … 60 71 </target> 61 72 62 <target name="dist" depends="clean, init, jsbuild " description="prepare app for distribution">73 <target name="dist" depends="clean, init, jsbuild, doc" description="prepare app for distribution"> 63 74 <echo>Preparing for distribution.</echo> 64 75