Skip to content

Commit

Permalink
Corrected a fileset for phpDocumentor.
Browse files Browse the repository at this point in the history
  • Loading branch information
hijarian committed Jul 8, 2013
1 parent f99767f commit e8daf42
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions build.xml
Expand Up @@ -40,13 +40,22 @@
<echo msg="Making an API-level documentation."/>
<phpdoc2 title="${phing.project.name}"
destdir="${path.docs}/api">

<fileset dir="${path.src}">
<exclude name="views**"/>
<include name="**/*.php"/>

<exclude name="**/views/**"/>

<!-- CKEditor currently has some PHP files in it's assets -->
<exclude name="assets**"/>
<exclude name="**/assets/**"/>

<!-- gii subfolder has some templates -->
<exclude name="templates**"/>
<exclude name="**/templates/**"/>

<!-- we don't need to make API docs for TbHtml.php -->
<exclude name="helpers"/>
</fileset>

</phpdoc2>
</target>

Expand Down

0 comments on commit e8daf42

Please sign in to comment.