################################################################################
				PhpDocumentor
				
################################################################################
Release Notes
################################################################################

Release notes for the newest version are in Release-1.0.0

1.0.0 is out, a STABLE release, the release notes have all the details

To learn howto write PHPDoc style documentation checkout spec/howto.html
A detailed reference is in the spec/index.html.

If you find a bug please post it at:
http://sourceforge.net/tracker/?func=add&group_id=11194&atid=111194

################################################################################
General Notes
################################################################################
phpDocumentor is hosted at phpdoc.org, with downloads and mailing list through 
sourceforge.net

webpage: 	http://phpdoc.org/
mirror: 	http://phpdocu.sourceforge.net
projectpage: 	http://sourceforge.net/projects/phpdocu

For a list of people who have helped work on this project please read the 
Authors file

phpDocumentor is released under the GPL the text of the license is in COPYING

################################################################################
Feature Notes
################################################################################

PHPDocumentor is a JavaDoc-like automatic documentation generator for PHP
written in PHP.  It is the most versatile tool for documenting PHP.

For users new to PHPDocumentor, PHPDocumentor uses an event-driven parser
and intermediary data structures that allow it to perform at a level other
automatic documentors for PHP cannot achieve:
  --parsing any php file, with multiple classes and functions in the same file
  --fully compliant with even the most esoteric php syntax 
  	($string = <<< EOF, for example)
  --ability to generate multiple output formats
  --extremely fast parsing
  --error/warnings by line number and file to allow for debugging of
	documentation tags
  --multiple output templates to easily customize the look of generated
	documentation
  --extensive documentation of the package, including a detailed specification
	for tags
  --open source, GPL

If something is missing from this list make sure sure to file
a feature request on sourceforge

http://sourceforge.net/tracker/?func=add&group_id=11194&atid=361194

If you want to help code that new feature and get it just right, please let us know.
Any help is greatly appreciated, just contact the 
phpDocumentor team for information on getting started.

phpDocumentor needs php 4.0.6 or greater, but you'll see the best performance
in the newest version.  The recommended version for 1.0.0 is 4.2.0+.

################################################################################
Command Line notes
################################################################################
 -c		--converters			converter(s) to use separated by ','

 -d		--directory      		name of a directory(s) to parse directory1,directory2

 -dh	--hidden        		set equal to on (-dh on) to descend into hidden directories
			       				(directories starting with '.'), default is off

 -dn	--defaultpackagename	name to use for the default package.  If not specified, uses 'default'

 -f		--filename       		name of file(s) to parse ',' file1,file2.  Can contain complete path and * ? wildcards
 
 -i		--ignore				file(s) that will be ignored multiple separated by ','.  Wildcards * and ? are ok
 
 -q		--quiet          		do not be verbose

 -pp	--parseprivate  		parse elements marked private with @access.  Use on/off, default off

 -po	--packageoutput 		output documentation only for selected packages.  Use a comma-delimited list

 -t		--target         		path where to save the generated files

 -ti	--title         		title of generated documentation, default is 'Generated Documentation'

 -td	--template      		template directory, default is 'templates/default/'

You can have multiple directories and multiple files, as well as a combination of both options

################################################################################

if you run phpdoc and get :
bash: ./phpdoc: No such file or directory

Then you haven't installed the cgi version of php
goto your php src dir and try
make clean
./configure
make
make install

phpdoc should work now

If your using php 4.2.0 or higher you might want to make the cli version
instead of the cgi.  Checkout php.net for details on these changes


################################################################################
Web Interface notes
################################################################################
Put phpdoc.php together with the *.inc files someplace on your webserver.
NEVER USE THE WEB INTERFACE ON A PRODUCTION WEBSERVER.  Allowing your server
to write files to disk is a serious security risk, and phpDocumentor is not
designed to work on insecure systems.  Setup php on a development machine
that has a firewall or no internet connection, and run phpDocumentor from there.

Make sure you webserver can write to where ever you specify as a target or you
will get lots of errors

################################################################################
Thanks
################################################################################
Thanks to Gregory Beaver for all his work on adding features and fixing bugs
	without him it would have taken a lot longer to get where we are now.
Thanks to Juan Pablo Morales for the web interface.
Thanks to whoever sent me the patch to make phpdocumentor work better in NT
	I have your diff and pathed the program but i seem to have lost your
	name if you send it to me i'll add it to the Authors file
Thanks to Florian Clever for the newest set of win32 patches they seem to have
	fixed the last of the problems.

################################################################################
################################################################################
if you have any questions please email me
joshua eichorn jeichorn@phpdoc.org
gregory beaver cellog@users.sourceforge.net
