Tagged Questions
-2
votes
1answer
66 views
how to define global variable in cherrypy
I think that all is in the title's question.
I need to create the global variable because I serve in all functions 's Cherrypy.
import cherrypy
import urllib
class Root(object):
@cherrypy.expose
...
0
votes
1answer
94 views
Other separators I want use (not & and =) when I submitting a form
I have the server programmed in Cherrypy and I use also Mako Template.
And I have the variable dict (variable Mako that contain information's work) for working with the user( this I have to use Mako ...
0
votes
0answers
28 views
Defining custom Mako tool with Cherrpy.Tool() failing
I am attempting to define my on custom Mako loader in my cherrpy server via the following in my server.py:
from my.path.templating import MakoLoader
from HandleEvent import HandleEvent
...
2
votes
1answer
72 views
How to I start the site with QueryString?
I have the Server's programmed in Cherrypy and using Mako.
I haved one variable (json_data where is the content of a file [json]) that contain the data for work on my site.
To change these ...
2
votes
1answer
123 views
handling URLs with dynamic parameters in cherrypy/mako
I do have a quite simple web application written in Python using cherrypy and Mako templates. The most tedious thing is printing links with parameters, especially when I need to incrementally add more ...
0
votes
1answer
144 views
Python: Mako template lookups per app
I'm using cherrypy with Mako as a template engine.
I want Mako to lookup different directories based on what app is being requested.
I.e.
I have three 'apps': Site, Admin and Install.
They all have ...
1
vote
1answer
142 views
Decoding URL containing unicode characters
I have the following code in a Mako template:
<a href="#" onclick='getCompanyHTML("${fund.investments[inv_name].name | u}"); return false;'>${inv_name}</a>
This applies url escaping to ...
0
votes
1answer
27 views
Access attribute of inherited file
I have the following base.html file, which serves as the main skeleton for every other file that inherits it.
<%! import cherrypy %>
<!DOCTYPE html> ...
1
vote
1answer
363 views
How to pass value of javascript to Mako template
I'm planning on server's cherrypy with programming of python and mako.
Now i have one problem because i know to pass value of Mako template to Javascript with
<script type="text/javascript">
...
1
vote
1answer
74 views
Concatenate string MAKO
This is my code of Mako but I have the error when i use this code with my server Cherrypy.
The error is
SyntaxException: (SyntaxError) invalid syntax (<unknown>, line 1) ...
0
votes
1answer
251 views
Mako, Jinja2, Won't Install In Python 3
I'm trying to install some template languages to use with CherryPy & Python3, but they won't install. Mako & Jinja2 both install fine into Python 2, but when I try installing them for Py3, ...
-1
votes
3answers
210 views
Can a javascript file be dynamic (different for each client when he loads) ? How?
Each client on the site has his own composition of HTML elements. Some may have 3 elements while others may have 123. There is little if any similarity between the elements. And each element ...
0
votes
1answer
394 views
CherryPy / Mako path issue with %include on Linux (works on Windows)
I have an application with the following files
/path_to_app
app.py
/html
page.html
/js
page.js
In app.py I load and render a mako template. The template file is page.html in ...
2
votes
2answers
515 views
404 error handling with mako template
Trying to display template rendered by mako on 404 errors, but it still displays standart error page with cherrypy footer and additional message: |In addition, the custom error page failed: TypeError: ...
0
votes
1answer
774 views
In mako template: call python function within html string
How do I do this in mako:
<%! import cherrypy %>
...
<link rel="stylesheet" href="${cherrypy.url('/media/layout.css')}" type="text/css" />
AttributeError: 'Undefined' object has no ...
3
votes
1answer
225 views
Mako Templates : How to find the name of the template which the current template is included by?
I have multiple templates that include each other, such as :
t1.html :
...
<%include file="t2.html" args="docTitle='blablabla'" />
...
t2.html:
<%page args="docTitle='Undefined'"/>
...