Tagged Questions
Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web.
8
votes
10answers
1k views
RDBMS & OOP-friendly Python web app framework?
Suppose your boss told you to choose a Python web application framework, and you would be wedded to it for at least the next 3 years.
What would you recommend?
Ground rules:
Python: Yes, ...
5
votes
5answers
3k 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 ...
4
votes
2answers
942 views
Insert javascript at top of including file in Jinja 2
In Jinja2, I would like the following to work as it looks like it should, by running:
from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader('.'))
template = ...
3
votes
1answer
575 views
Genshi: if/else
How do I do a simple if/else in the Genshi templating language?
I've found this ticket, which seems to suggest that Genshi doesn't support if/else, but it doesn't really explain what it supports ...
3
votes
2answers
836 views
How do I use genshi.builder to programmatically build an HTML document?
I recently discovered the genshi.builder module. It reminds me of Divmod Nevow's Stan module. How would one use genshi.builder.tag to build an HTML document with a particular doctype? Or is this even ...
2
votes
2answers
46 views
Downloadlink for a file dynamically created by a Trac- Wikimacro
I've been given the task to write a plugin for Trac.
It should provide burndown data for the ticketcount and estimations filed in the issue tracking system.
The user writes his request as a wikimacro ...
2
votes
1answer
285 views
Genshi Layout Include In Chameleon ZPT
In Genshi, you can do include for layout (which to me is the only way to ensure all the 500 content templates will have the same layout) --
"""layout.xml"""
<py:match path="head" once="true">
...
2
votes
2answers
326 views
Check if variable exists in tmpl_context (Python, Pylons, Genshi)?
I am trying to figure out how to check if a variable exists in the template context 'tmpl_context' using Pylons and Python. What I am trying to do is:
I've got a Pylons layout template. This should ...
2
votes
4answers
281 views
An HTML template engine for Java like Genshi or Zope's TAL
I need to work with a Web Designer so...
Can you suggest me any?
Thanks in advance
FYI:
Zope's TAL
The Template Attribute Language (TAL) is a templating language used to generate dynamic HTML ...
2
votes
2answers
541 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 = ...
2
votes
2answers
440 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 ...
2
votes
3answers
336 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: ...
1
vote
0answers
82 views
Genshi nested match templates
Ho do I make Genshi parse the output of a match template?
In other words:
I've got a template like this in Genshi:
<py:match path="gm:field">
Something ${select('@label')}<br />
...
1
vote
1answer
518 views
problem with turbogear2 quickstart example
Hello
I have Ubuntu 10.10 installed. And I wanted to try out Turbogear. I got the installation steps correctly I think. Problems that I have encountered though is in the steps where you create the ...
1
vote
0answers
68 views
Pylons/Genshi: how to access model properties (basic question!)
I'm using Pylons/Genshi. In my template I have:
<py:for each="idx,entry in enumerate(c.entries)">
${entry}
</py:for>
Which prints this:
Entry(id=u'3666', gou_vote=u'008', ...
1
vote
0answers
54 views
Genshi: can I identify and iterate over an entry's properties?
I'm using Genshi with Pylons. I have a model called Entry, and in my template I'd like to display a number of rows from this model, with a header row.
However, it's not completely straightforward, ...
1
vote
2answers
458 views
Genshi: TemplateSyntaxError: not well-formed (invalid token) with ampersands in <script> tag
I'm using Pylons/Genshi, and trying to show 'all recent comments' on my site with a Disqus javascript widget (Disqus is installed on the site, and I can post comments OK).
However, the code below ...
1
vote
1answer
125 views
Javascript templates
Does anyone know if is there any way to create javascrit templates in Genshi? I mean, I need a .js file where I can use directives like <py:for> and so.
Any idea? Thanks!
1
vote
4answers
290 views
Print string as HTML
I would like to know if is there any way to convert a plain unicode string to HTML in Genshi, so, for example, it renders newlines as <br/>.
I want this to render some text entered in a ...
1
vote
2answers
234 views
How to print gantt-charts generated on web using python?
I want to print or save gantt-chart(in pdf format). These charts are generated on web after a particular input. Our chart is a plug-in for Trac. I have used Genshi library to generate charts.
1
vote
1answer
684 views
Pylons “global name 'c' is not defined”
i had setup Pylons v0.9.7, and create project. and using genshi.
and i coding to easy test code , but that code dont working.
code: member.py
coding: utf-8
import logging import foo.model
from ...
1
vote
2answers
309 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 ...
1
vote
1answer
176 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
1answer
210 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
1answer
14 views
Block tags in turbogears/genshi (py:match)?
Ok, I'm coming from Django, so please excuse me if what I write doesn't make sense. I'm trying to "override" a portion of my master template in turbogears using genshi. So far I've only tried the ...
0
votes
1answer
17 views
Integrating webpages and turbogears application
I am working on a Turbo Gears 2 application. The application directs a user through a set of questions. I like the templating system of TG2 (which of course is the idea) so I want to integrate the ...
0
votes
1answer
50 views
Turbogears2: analog of django context processors
Is there any analog of django context processors in turbogears2?
In tg1 was stdvars, but not in tg2 anymore.
Explaining:
I need to have some template tags, avaible on each page, without obvious ...
0
votes
1answer
270 views
how to access python object in javascript function?
that means now i am working on python with cherryypy and genshi framework with help of this i send python variable to html file using genshi but i want to access variable that variable in javascript ...
0
votes
1answer
59 views
Genshi pluralisation
Anyone know how I could show entry/entries as appropriate, in the following fragment of Genshi syntax?
<span py:if="c.page.item_count">
${c.page.item_count} entries.
</span>
...
0
votes
0answers
216 views
Can python process complex field names in html forms?
In php we can call form fields like
<input type="text" name="obj[obj_id][name]" value="val1" />
So in request we have multidimensional array.
array('obj_id'=> array('name'=> 'val1'))
...
0
votes
1answer
147 views
How can I hide a Trac project from the project listing?
Right now I'm using Trac with multiple projects and have customized the project-listing template a bit, but currently there are about 5 Trac projects, and I only want 4 of them to be showing. I ...
0
votes
1answer
108 views
Genshi TemplateSyntaxError on python block where it should work
<?python class += 1 ?>
One really simple line of code which definitely should work, but still it gives me this error:
TemplateSyntaxError: invalid syntax (file.html, line 22)
I shorted the ...
0
votes
1answer
153 views
What is the method of doing nl2br in Genshi?
hiyas. I using Genshi+Pylons.
please teach me, how use \n to <br/>tag in Genshi?
I hope to obtain the same result as "nl2br" in php to change line.
Or, does not the solution exist?
i'm ...
0
votes
1answer
274 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 ...
0
votes
1answer
401 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
325 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
3answers
438 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 ...
0
votes
3answers
816 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
1answer
210 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
253 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 ...
0
votes
2answers
456 views
What causes this Genshi's Template Syntax Error?
A Genshi template raises the following error:
TemplateSyntaxError: invalid syntax in expression "${item.error}" of "choose" directive
The part of the template code that the error specifies is ...