0
votes
1answer
13 views
Trac: How to change order of menu items
How do I change a Trac project so the timeline is the first menu entry, and the default page when entering the project?
I can alter the order of entries in the project's conf file but I will still …
1
vote
2answers
33 views
How do I get the remote user agent inside a Genshi template when using Trac, and WSGI?
I'm trying to do some customization of a Trac project management website and have run into an interesting problem. The project has a set of images that are both SVG and PNG. The SVG images have …
0
votes
1answer
35 views
Genshi table loop
What is wrong with this Genshi template:
<html xmlns:py="http://genshi.edgewall.org/">
<head>
<title py:content="title"></title>
</head>
<body>
…
0
votes
1answer
42 views
Genshi: Nested for loops
I need to generate a HTML using a Genshi template. The Html is, basicaly a very long html with tables. The data comes in a simple CSV, so, i read it with python, i put it into a list[] and then i call …
0
votes
1answer
81 views
Can one prevent Genshi from parsing HTML entities?
I have the following Python code using Genshi (simplified):
with open(pathToHTMLFile, 'r') as f:
template = MarkupTemplate(f.read())
finalPage = template.generate().render('html', doctype = …
0
votes
2answers
67 views
How to initialize global variables in TurboGears 2 with values from a table
I need a global variable that I can call from the templates.
I edited app_globals.py in lib directory to declare PATH_TO_IMAGES like this
class Globals(object):
"""Container for objects …
2
votes
2answers
79 views
How to keep query parameters during pagination with webhelpers.paginate
I look an example of paginating from http://rapidprototype.ch/bg2docs/tg2pagination.html for my Turbogears 2 project and it works great but, I have a problem regarding my query parameters when I …
0
votes
1answer
46 views
Why single textarea mess all following xhtml?
I encounter a problem in my web program. I got a textarea in my form, sometimes there is nothing in textarea, so genshi template engine just output it as
<textarea xxxx />
and here comes the …
1
vote
5answers
260 views
Should I use Mako for Templating?
I've been considering a templating solution, although my choices are between Mako and Genshi. I find templating in Genshi a bit ugly, so I'm shifting more towards Mako.
I've gone to wonder: what is …
2
votes
3answers
109 views
python/genshi newline to html <p> paragraphs
I'm trying to output the content of a comment with genshi, but I can't figure out how to transform the newlines into HTML paragraphs.
Here's a test case of what it should look like:
input: …
0
votes
0answers
51 views
ToscaWidgets Recaptcha - Error Rendering Recaptcha => Page cuts off
Hello everyone,
I am using the TW for recaptcha, integrated everything as shown in the examples.
When sending the ReCaptcha to my template, my whole page output just cuts off.
I have traced back the …
1
vote
1answer
80 views
Genshi - how to print out all variables in scope
Quite simply I'd like to print out all variables that are in scope in my genshi template, as a debugging and discovery measure. Is there a way to do it?
0
votes
3answers
185 views
Customizing Trac: remove standard footer
We use hosted Trac.
It uses Genshi templates.
I think we can submit our own site.html.
We want to get rid of Trac standard footer.
What is the most elegant way of doing that?
I suspect that the …
0
votes
0answers
59 views
Resolving a relative path from py:match in a genshi template
<py:match path="foo">
<?python
import os
href = select('@href').render()
SOMEWHERE = ... # what file contained the foo tag?
path = …
0
votes
1answer
81 views
How do I test if a string exists in a Genshi stream?
I'm working on a plugin for Trac and am inserting some javascript into the rendered HTML by manipulating the Genshi stream.
I need to test if a javascript function is already in the HTML and if it is …
