[TYPO3] TYPO3 API Doxygen documentation

Xavier Perseguers typo3 at perseguers.ch
Thu Sep 4 14:27:47 CEST 2008


Hi,

> There's this hugely helpful auto-generated API documentation available
> on typo3.org. I'd like to know how this was done, and if I can do it
> myself for TYPO3 4.2.1. I have no experience with Doxygen at all, so if
> anyone could help me with this I'd be much obliged.

I use this with phpdoc instead (run from TYPO3 source directory):

#!/bin/bash
TITLE="TYPO3 4.2.1 API"
PACKAGES="default"
PATH_PROJECT=$PWD
PATH_PHPDOC=/usr/bin/phpdoc
PATH_DOCS=$PWD/docs
OUTPUTFORMAT=HTML
CONVERTER=frames
TEMPLATE=default
PRIVATE=off

# make documentation
"$PATH_PHPDOC" -d "$PATH_PROJECT" -t "$PATH_DOCS" -ti "$TITLE" -dn 
$PACKAGES -o
$OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE

-- 
Xavier Perseguers
http://xavier.perseguers.ch/en/tutorials/typo3.html


More information about the TYPO3-english mailing list