|
Revision 1056, 1.0 kB
(checked in by hans, 8 months ago)
|
Fixing line delims.
|
- Property svn:executable set to
*
- Property svn:keywords set to
Id Rev Date Author HeadURL Revision
|
| Line | |
|---|
| 1 |
<project name="propel-docs" default="phpdoc" basedir="."> |
|---|
| 2 |
|
|---|
| 3 |
<property name="runtime.dir" value="../runtime" /> |
|---|
| 4 |
<property name="generator.dir" value="../generator" /> |
|---|
| 5 |
|
|---|
| 6 |
<target name="phpdoc"> |
|---|
| 7 |
<phingcall target="phpdoc-runtime"/> |
|---|
| 8 |
<phingcall target="phpdoc-generator"/> |
|---|
| 9 |
</target> |
|---|
| 10 |
|
|---|
| 11 |
<target name="phpdoc-runtime" description="build runtime docs"> |
|---|
| 12 |
<phpdoc title="Propel Runtime" destdir="api/runtime" sourcecode="yes" output="HTML:Smarty:PHP"> |
|---|
| 13 |
<fileset dir="${runtime.dir}/classes"> |
|---|
| 14 |
<include name="**/*.php" /> |
|---|
| 15 |
</fileset> |
|---|
| 16 |
</phpdoc> |
|---|
| 17 |
</target> |
|---|
| 18 |
|
|---|
| 19 |
<target name="phpdoc-generator" description="build generator docs"> |
|---|
| 20 |
<phpdoc title="Propel Generator" destdir="api/generator" sourcecode="yes" output="HTML:Smarty:PHP"> |
|---|
| 21 |
<fileset dir="${generator.dir}/classes"> |
|---|
| 22 |
<include name="**/*.php" /> |
|---|
| 23 |
</fileset> |
|---|
| 24 |
<!-- |
|---|
| 25 |
<projdocfileset dir="${generator.dir}"> |
|---|
| 26 |
<include name="README" /> |
|---|
| 27 |
<include name="INSTALL" /> |
|---|
| 28 |
<include name="CHANGELOG" /> |
|---|
| 29 |
</projdocfileset> |
|---|
| 30 |
--> |
|---|
| 31 |
</phpdoc> |
|---|
| 32 |
</target> |
|---|
| 33 |
|
|---|
| 34 |
</project> |
|---|