Changeset 1286661
- Timestamp:
- 11/15/2015 04:42:41 PM (10 years ago)
- Location:
- tfo-graphviz/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
tfo-graphviz.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tfo-graphviz/trunk/readme.txt
r1286655 r1286661 229 229 230 230 = 1.13 = 231 * Better diagnostic output when running `dot` doesn't work, including the command line used and adding the DOT as submitted, with line numbers. 232 * Add more de-mangling rules, for smart quotes and ellipsis. 233 * Improve the newline de-mangling. 234 * Add the SVG output format. See http://blog.flirble.org/2015/11/15/adding-svg-support-tfo-graphviz/ for example. 231 * Better diagnostic output when running `dot` doesn't work, including the command line used and adding the DOT as submitted, with line numbers. (Joachim Durchholz) 232 * Add more de-mangling rules, for smart quotes and ellipsis. (Joachim Durchholz) 233 * Improve the newline de-mangling. (Joachim Durchholz) 234 * Add the SVG output format. See http://blog.flirble.org/2015/11/15/adding-svg-support-tfo-graphviz/ for example. (Joachim Durchholz) 235 * Add a fix for if the requires GV class isn't loadable, such as when GV gets upgraded on the system. (Sam Wilson) 235 236 236 237 = 1.12 = -
tfo-graphviz/trunk/tfo-graphviz.php
r1286655 r1286661 274 274 $gv_method = $this->options['method']; 275 275 require_once dirname( __FILE__ ).'/tfo-graphviz-'.$this->methods[$gv_method].'.php'; 276 if (!class_exists($gv_method)) { 277 $gv_method = 'TFO_GraphViz_Method'; 278 } 276 279 $gv_object = new $gv_method($dot, $atts, TFO_GRAPHVIZ_CONTENT_DIR, TFO_GRAPHVIZ_CONTENT_URL); 277 280 if (!$gv_object) { … … 282 285 return $gv_object; 283 286 } 284 285 287 286 288 }
Note: See TracChangeset
for help on using the changeset viewer.