Changeset 1153
- Timestamp:
- 08/18/06 11:43:09 (2 years ago)
- Files:
-
- graphvizplugin/branches/v0.6/graphviz/graphviz.py (modified) (1 diff)
- graphvizplugin/branches/v0.6/ReleaseNotes.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
graphvizplugin/branches/v0.6/graphviz/graphviz.py
r1134 r1153 148 148 return buf.getvalue() 149 149 150 sha_key = sha.new(self.processor + content).hexdigest()150 sha_key = sha.new(self.processor + self.processor_options + content).hexdigest() 151 151 img_name = '%s.%s.%s' % (sha_key, self.processor, self.out_format) # cache: hash.<dot>.<png> 152 152 img_path = os.path.join(self.cache_dir, img_name) graphvizplugin/branches/v0.6/ReleaseNotes.txt
r1134 r1153 1 1 Trac Graphviz Plugin v0.6.5 Release Notes 2 2 ========================================= 3 August 1 7, 20063 August 18, 2006 4 4 5 5 Graphviz plugin v0.6.5 for Trac is now available. The Graphviz wiki … … 13 13 -------------------------- 14 14 15 * Included the processor options when calculating the sha key used for 16 the image file name. This should help in testing various graphviz 17 settings in trac.ini. Resolves issue 18 http://trac-hacks.org/ticket/575. 19 15 20 * Fixed expand_wiki_links to allow for javascript URL 16 21 references. Resolves issue http://trac-hacks.org/ticket/559.
