Tagged Questions
4
votes
1answer
3k views
Using Cheetah Templating system with windows and python 2.6.1 (namemapper problem)
So I am trying to use the Cheetah templating engine in conjunction with the Django web framework, and that is actually working fine. I did some simple tests with that and I was able to render pages ...
3
votes
1answer
66 views
cheetah templating with flask
I can't seem to find any information about using the cheetah templating engine with flask. Can anyone point me to something that google can't find, or show me how to use cheetah templates in a simple ...
3
votes
2answers
1k views
Python shared libraries - Cheetah namemapper.so not found
I'm using Python Cheetah for template generation and I can't get it to use the compiled _namemapper.so library that is installed. I am running on CentOS 5.4 with Python 2.4 installed, using Cheetah ...
3
votes
1answer
195 views
Python Cheetah - Specify name/value pairs for templating
I am trying to template-ize my Apache httpd configuration for deployment to different environments and I would like to use the Python language Cheetah application to do so. However, I am having ...
2
votes
2answers
542 views
HTML/CSS/JS Syntax Highlighting in Eclipse
Hello How can I enable syntax highlighting for HTML/CSS/JS in Eclipse I am mainly developing in python using the PyDev package but right now I am creating Cheetah templates and they are very hard to ...
1
vote
1answer
29 views
Cheetah template filters
Sorry if the question sounds naive. I have a cheetah template, e.g:
#filter None
<html>
<body>
$none should be ''
$number should be '1'
</body>
</html>
#end filter
with ...
1
vote
0answers
88 views
cheetah template importing functions
So I am having some trouble trying to import functions and run them inside my cheetah templates.
So I have one file that lives at /docroot/tmpl/base.html
and then another file that is ...
1
vote
1answer
59 views
Cheetah #include doesn't place #def within scope
When I include a file using #include (without raw) it parses the content correctly, but the #def which I want to access within the original file doesn't exist & an error is thrown.
Base Template:
...
0
votes
1answer
58 views
calling a function with cherry.py
So im doing a bit of web development, and due to some restriction set by my employer i need to use cheetah and cherrypy. I have this form that upon submit runs a function, and from said function i ...
0
votes
1answer
48 views
Using Cheetah Templating Engine with Tornado Web Framework
Has anyone used the Cheetah Templating Engine with the Tornado Web Framework before? Do they work well together and are you able to use Cheetah's caching components within the Tornado Framework?
I've ...
0
votes
0answers
86 views
Cheetah 2.4.4 C Namemapper not working on python 2.4.3
I'm using Cheetah and Python for creating documentation for our project usin YUIDoc, so i had to install Python 2.4.3 followind the YUIDoc install instruction.
I downloaded all dependencies and ...
0
votes
1answer
122 views
Check if Cheetah Template Dict has key
I am trying to come up with a base template for an application and one of the goals would be to remove any unnecessary js/css from pages so I want to do something in the cheetah template like
#if ...
0
votes
2answers
100 views
Cheetah template engine calling python base function
I am using Cheetah template together with Cherrypy, below is my main python file
Main.py:
def multiple(a,b):
return a*b
def index(self):
t = Template('template.tmpl')
#blah ...
0
votes
1answer
49 views
cheetah parsing error trying to change cheetahVarStartToken
I am writing a cheetah template and I want to change the cheetahVarStartToken so that I can use the $ for javascript libraries in that section of code however when I run the template I am getting this ...
0
votes
0answers
55 views
How to enable better Cheetah template error handling
I am starting to build a pretty large cheetah template at least for someone with very little cheetah or python experience. One problem I am having is if there is an error in the cheetah template I get ...
0
votes
1answer
395 views
Trouble with easy_install cheetah on WIndows Xp
I have installed PyQT from this URL:
http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-Py2.6-gpl-4.7.7-1.exe
I have Python 2.6 installed.
My OS is Windows XP SP3.
I entered this into ...
0
votes
1answer
162 views
How can I properly use multidimensional dictionaries in Cheetah for Python?
I have the following dictionary:
{0: {'Shortname': 'cabling', 'Name': 'CAT5 Cabling', 'MSRP': '$45.00'}, 1: {'Shortname': 'antenna', 'Name': 'Radio Antenna', 'MSRP': '$35.00'}}
And using Cheetah, ...
0
votes
1answer
67 views
Un/bound methods in Cheetah
Is there a way to declare static methods in cheetah? IE
snippets.tmpl
#def address($address, $title)
<div class="address">
<b>$title</h1></b>
#if $address.title
...
0
votes
2answers
941 views
Cheetah with Cherrypy: how to load base templates, and do so automatically on change during development
I am working on a cherrypy+cheetah app and would like to improve the development experience.
I have everything working when I manually compile templates beforehand. (Update: This is how things work ...
0
votes
1answer
129 views
Cheetah pre-compiled template usage
For performance reason as suggested here, I am studying how to used the pr-compiled template.
I edit hello.tmpl in template directory as
#attr title = "This is my Template"
<html>
...
0
votes
2answers
365 views
generating javascript string in python
i have string stored in python variables, and i am outputting a html that contains javascript, and the i need to create javascript variables.
for ex, in python
title = "What's your name?"
i use ...
0
votes
1answer
207 views
How do we setup Cheetah so it runs with all templates in the templates directory and all code in the .. directory
How do we setup Cheetah so it runs with all templates in the templates directory and all code in the .. directory
in code.py
production=True
if not production:
try:web.render('mafbase.tmpl', ...
-1
votes
5answers
232 views
Is Python only for building backends when you need to write SQL by hand?
I am completing my first database project which aims to build a simple discussion site.
The answers which I got at Superuser suggests me that Python is difficult to use in building a database webapp ...