Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
;; phpDocumentor demonstration parse configuration file
2
;;
3
;; RUN THIS FILE FROM THE INSTALL DIRECTORY
4
;; CHANGE HERE:
5
 
6
;; where should the documentation be written?
7
;; legal values: a legal path
8
;target = /home/CelloG/output
9
target = /you-MUST/change-me/to-fit/your-environment
10
 
11
 
12
;; DONT CHANGE BELOW HERE
13
;;
14
;; This file is designed to cut down on repetitive typing on the command-line or web interface
15
;; You can copy this file to create a number of configuration files that can be used with the
16
;; command-line switch -c, as in phpdoc -c default.ini or phpdoc -c myini.ini.  The web
17
;; interface will automatically generate a list of .ini files that can be used.
18
;;
19
;; ALL .ini files must be in the user subdirectory of phpDocumentor with an extension of .ini
20
;;
21
;; Copyright 2002, Greg Beaver <cellog@php.net>
22
;;
23
;; WARNING: do not change the
24
 
25
[Parse Data]
26
;; title of all the documentation
27
;; legal values: any string
28
title = Generated Documentation
29
 
30
;; parse files that start with a . like .bash_profile
31
;; legal values: true, false
32
hidden = false
33
 
34
;; show elements marked @access private in documentation by setting this to on
35
;; legal values: on, off
36
parseprivate = off
37
 
38
;; parse with javadoc-like description (first sentence is always the short description)
39
;; legal values: on, off
40
javadocdesc = off
41
 
42
target=/dev/null
43
 
44
;; add any custom @tags separated by commas here
45
;; legal values: any legal tagname separated by commas.
46
;customtags = mytag1,mytag2
47
 
48
;; what is the main package?
49
;; legal values: alphanumeric string plus - and _
50
defaultpackagename = phpDocumentor
51
 
52
;; output any parsing information?  set to on for cron jobs
53
;; legal values: on
54
;quiet = on
55
 
56
;; limit output to the specified packages, even if others are parsed
57
;; legal values: package names separated by commas
58
;packageoutput = package1,package2
59
 
60
;; comma-separated list of files to parse
61
;; legal values: paths separated by commas
62
;filename = /path/to/file1,/path/to/file2,fileincurrentdirectory
63
filename = test.php
64
 
65
;; comma-separated list of directories to parse
66
;; legal values: directory paths separated by commas
67
;directory = /path1,/path2,.,..,subdirectory
68
;directory = /home/jeichorn/cvs/pear
69
;directory = /you-MUST/change-me/to-fit/your-environment
70
;directory = .
71
 
72
;; comma-separated list of files, directories or wildcards ? and * (any wildcard) to ignore
73
;; legal values: any wildcard strings separated by commas
74
;; remember, this pathing is RELATIVE to the top-most directory in your "directory" value
75
;ignore = path/to/ignore*,*list.php,myfile.php,subdirectory/
76
ignore = templates_c/,*HTML/default/*,spec/
77
 
78
;; comma-separated list of Converters to use in outputformat:Convertername:templatedirectory format
79
;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib
80
;;               HTML:frames:phpedit,HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de
81
;;               HTML:Smarty:default,HTML:Smarty:PHP,PDF:default:default,CHM:default:default,XML:DocBook:default
82
output=HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib,HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de,HTML:frames:phpedit,HTML:Smarty:default,HTML:Smarty:HandS,HTML:Smarty:PHP,PDF:default:default,XML:DocBook/peardoc2:default,CHM:default:default
83
 
84
;; turn this option on if you want highlighted source code for every file
85
;; legal values: on/off
86
;sourcecode = on