﻿ticket	summary	type	release	owner	status	created	modified	_description	_reporter
2816	trac.ini setting for formula text size	enhancement	0.10	Valient Gough	new	2008-03-28T21:37:26+01:00	2008-03-28T21:37:26+01:00	"I'm not fluent in latex (yet), but the \Large keyword doesn't appear to work - and anyways I'd rather not have to put it in every equation in trac! Instead I'd like a
 text_size = 16 # pixels
line in the trac.ini.

Many thanks!"	anonymous
9837	formulas (png-files) not shown in created pdf-pages	defect	0.11	Valient Gough	new	2012-02-20T15:43:53+01:00	2012-02-20T16:26:10+01:00	"when exporting to a pdf page, the created png files are not shown. other plugins like TracLatex work as expected. 

(may be a problem of TracWikiPrintPlugin, but i have the feeling it fits better to here.)"	anonymous
7558	Bug on Trac 0.12: Error: unable to create image directory	defect	0.12	Valient Gough	new	2010-08-26T23:45:49+02:00	2010-08-27T20:24:51+02:00	" * The following message is returning when trying to use this Macro on Trac 0.12:
  
  '''Error: unable to create image directory'''

 * My environment:
  * Ubuntu 10.10 amd64 server

'''System Information '''
||Trac 	|| 0.12 ||
||Genshi ||	0.6 ||
||mod_wsgi ||	2.8 (WSGIProcessGroup WSGIApplicationGroup %{GLOBAL})||
||psycopg2 ||	2.0.13||
||Pygments ||	1.2.2 ||
||Python  ||	2.6.5 (r265:79063, Apr 16 2010, 14:15:55) [GCC 4.4.3]  ||
||setuptools  ||	0.6 ||
||Subversion  ||	1.6.6 (r40053)
||jQuery: ||	1.4.2

'''Installed Plugins'''
||Backlinks  ||	N/A ||	/usr/local/lib/python2.6/dist-packages/Backlinks.pyc
||ChangeLogMacro ||	0.2-r7928 ||	/usr/local/lib/python2.6/dist-packages/ChangeLogMacro-0.2_r7928-py2.6.egg
||ComponentsListMacro ||	N/A ||	/usr/local/lib/python2.6/dist-packages/ComponentsListMacro.pyc
||TicketImport 	|| 0.8 ||	/usr/local/lib/python2.6/dist-packages/TicketImport-0.8-py2.6.egg
||TracSectionEditPlugin ||	0.1 ||	/usr/local/lib/python2.6/dist-packages/TracSectionEditPlugin-0.1-py2.6.egg
||TracTags ||	0.6 ||	/usr/local/lib/python2.6/dist-packages/TracTags-0.6-py2.6.egg

"	Luiz Fernando
248	[Patch] LatexFormulaMacro plugin	defect	0.8	Valient Gough	new	2006-03-26T23:17:47+02:00	2010-08-21T07:39:45+02:00	"I've quickly updated trac formula Macro to be plugin. This allow me
usage of standard latex $...$ instead of big macro formulas. I'm
attaching the result, hope it will be interesting.

I'm ready to update the code so that it will be ready for real
distribution. "	nshmyrev@…
1310	[Patch] Fix for tracformula when using ' in formulas	defect	0.10	Valient Gough	new	2007-03-12T20:18:20+01:00	2018-04-14T21:01:21+02:00	"{{{
--- TracFormula-0.1/formula/__init__.py 2006-03-27 00:34:06.000000000 +0200
+++ my-TracFormula-0.1/formula/__init__.py 2007-03-12 21:12:11.000000000 +0100
@@ -120,7 +122,7 @@
         else:
            margin = """"
         
-        html = ""<img src='%s' border='0' style='vertical-align: middle;%s' alt='%s'/>"" % (self.env.href.chrome('site','formulas/%s.%s'%(name, self.imageFormat)), margin, texData)
+        html = ""<img src='%s' border='0' style='vertical-align: middle;%s' alt='%s'/>"" % (self.env.href.chrome('site','formulas/%s.%s'%(name, self.imageFormat)), margin, texData.replace(""'"", ""&#39""))
        return html
 }}}
     def makeTexFile(self, texFile, texData, mathMode, texMag):
"	jasper@…
