Changeset 4541
- Timestamp:
- 10/20/08 04:47:53 (3 months ago)
- Files:
-
- graphvizplugin/0.11/graphviz/graphviz.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
graphvizplugin/0.11/graphviz/graphviz.py
r4540 r4541 78 78 cache_dir_option = Option("graphviz", "cache_dir", DEFAULT_CACHE_DIR, 79 79 """The directory that will be used to cache the generated images. 80 Note that if different than the default ( %s), this directory must80 Note that if different than the default (`%s`), this directory must 81 81 exist. 82 82 If not given as an absolute path, the path will be relative to … … 86 86 encoding = Option("graphviz", "encoding", 'utf-8', 87 87 """The encoding which should be used for communicating with 88 Graphviz (should match -Gcharsetif given).88 Graphviz (should match `-Gcharset` if given). 89 89 """) 90 90 … … 92 92 r"""Full path to the directory where the graphviz 93 93 programs are located. If not specified, the 94 default is /usr/bin on Linux, c:\Program95 Files\ATT\Graphviz\binon Windows and96 /usr/local/binon FreeBSD 6.94 default is `/usr/bin` on Linux, 95 `C:\Program Files\ATT\Graphviz\bin` on Windows and 96 `/usr/local/bin` on FreeBSD 6. 97 97 """) 98 98 … … 110 110 be overrided on a per-graph basis. 111 111 112 GraphvizMacro will verify that the default112 !GraphvizMacro will verify that the default 113 113 processor is installed and will not work if it 114 114 is missing. All other processors are optional. 115 115 If any of the other processors are missing, a 116 116 warning message will be sent to the trac log and 117 GraphvizMacro will continue to work.117 !GraphvizMacro will continue to work. 118 118 """) 119 119 … … 155 155 """) 156 156 157 cache_min_count = IntOption("graphviz", "cache_min ax_count", 1500,158 """The m aximum number of files that the cache should159 contain. This is the highwatermark for the157 cache_min_count = IntOption("graphviz", "cache_min_count", 1500, 158 """The minimum number of files that the cache should 159 contain. This is the low watermark for the 160 160 directory entry count. 161 161 """)
