Changeset 1601 for graphvizplugin/branches/v0.7/README.txt
- Timestamp:
- 11/25/06 18:00:34 (2 years ago)
- Files:
-
- graphvizplugin/branches/v0.7 (modified) (1 prop)
- graphvizplugin/branches/v0.7/README.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
graphvizplugin/branches/v0.7
- Property svn:ignore changed from
build
dist
to
build
dist
graphviz.egg-info
- Property svn:ignore changed from
graphvizplugin/branches/v0.7/README.txt
r721 r1601 51 51 #!graphviz.dot/png 52 52 #!graphviz.circo/gif 53 54 55 Platform Specific Requirements 56 ============================== 57 58 FreeBSD 59 +++++++ 60 61 On FreeBSD systems, installing the x11-fonts/urwfonts package will 62 provide the fonts needed for graphviz to correctly generate images. 53 63 54 64 … … 105 115 generated images. 106 116 107 prefix_url - The url to be used to find the cached images. This108 must point to the trac server's view of the109 cache_dir location.110 111 117 cmd_path - Full path to the directory where the graphviz 112 programs are located. 118 programs are located. If not specified, the 119 default is /usr/bin on Linux, c:\Program 120 Files\ATT\Graphviz\bin on Windows and 121 /usr/local/bin on FreeBSD 6. 113 122 114 123 out_format - Graph output format. Valid formats are: png, jpg, … … 117 126 basis. 118 127 119 processor - Graphviz default processor. Valid processors are: 120 dot, neato, twopi, fdp, circo. If not specified, 121 the default is dot. This setting can be overrided 122 on a per-graph basis. 128 processor - Graphviz default processor. Valid processors 129 are: dot, neato, twopi, fdp, circo. If not 130 specified, the default is dot. This setting can 131 be overrided on a per-graph basis. 132 133 GraphvizMacro will verify that the default 134 processor is installed and will not work if it 135 is missing. All other processors are optional. 136 If any of the other processors are missing, a 137 warning message will be sent to the trac log and 138 GraphvizMacro will continue to work. 123 139 124 140 png_antialias - If this entry exists in the configuration file, 125 then PNG outputs will be antialiased and the 126 rsvg_path must be defined. 141 then PNG outputs will be antialiased. 127 142 128 143 rsvg_path - Full path to where the rsvg binary can be found. 144 The default is cmd_path + rsvg. 129 145 130 146 default_* - These settings define the default graph, node and … … 154 170 contain. This is the high watermark for the 155 171 directory entry count. 156 157 The cache_dir and prefix_url entries are related to each other. The158 cache_dir entry points to a location on the file system and the159 prefix_url points to the same location but from the trac server's160 point of view. This allows the graphviz programs to generate the161 images and the user's web browser to view them.162 172 163 173 The cache_dir directory must exist and the trac server must have read … … 182 192 [graphviz] 183 193 cache_dir = /tmp/trac/htdocs/graphviz 184 prefix_url = http://localhost:8000/trac/chrome/site/graphviz185 cmd_path = /usr/bin186 out_format = png187 194 png_antialias = true 188 rsvg_path = /usr/bin/rsvg189 195 default_graph_fontname = "Andale Mono" 190 196 default_graph_fontsize = 10 … … 195 201 [graphviz] 196 202 cache_dir = /tmp/trac/htdocs/graphviz 197 prefix_url = http://localhost:8000/trac/chrome/site/graphviz198 cmd_path = /usr/bin199 out_format = png200 203 png_antialias = true 201 rsvg_path = /usr/bin/rsvg202 204 default_graph_fontname = "Andale Mono" 203 205 default_graph_fontsize = 10 … … 222 224 [graphviz] 223 225 cache_dir = C:\projects\plugins\env\trac\htdocs\graphviz 224 prefix_url = http://localhost:8080/trac/chrome/site/graphviz225 cmd_path = c:\Program Files\ATT\Graphviz\bin226 out_format = png227 226 cache_manager = yes 228 227 cache_max_size = 10000000
