Mako is a template library written in Python. It provides a familiar, non-XML syntax which compiles into Python modules for maximum performance. Conceptually, Mako is an embedded Python (i.e. Python Server Page) language.
0
votes
1answer
16 views
Pyramid + github + pip: install problems
I need to install a Pyramid project from a private repo from github.
The project has a structure something like this:
project_name
project_name
models/
views/
templates/
...
0
votes
0answers
7 views
aplay-amix utilities on mako doesn't play
I followed the instructions from the below thread but I have the below problems. Cannot figure
where the problem.
Inject uplink audio in call with Snapdragon MSM8960 SoC
I have been trying to ...
1
vote
0answers
14 views
Set a global variable for all mako templates using bottle?
I'm using bottle with beaker as session middleware. I'd like to include my session object in all my mako templates without specifying it when rendering:
Instead of this:
return ...
0
votes
0answers
24 views
Pass variable from called Mako template to inherited template
I am using CherryPy with Mako templates. I am trying to work out how to pass aruguments from the initial call (in this example title):
class Landing(object):
def index(self):
tmpl = ...
0
votes
0answers
3 views
pybabel text extraction from mako templates
By default pybabel is extacting ${_("mystr")} strings just fine from my mako templates, but when I try to use ${pgettext("myctx", "mystr")} for contextual translations, it doesn't seem to find and ...
0
votes
0answers
48 views
Javascript code for inserting HTML into iframe leads to blank display
I have the following .mako template file, which is an attempt to encapsulate code to read off the "Html.values" attribute from a data structure in Python, and for each path to a file, strip out the ...
0
votes
1answer
41 views
How to set vars in mako template?
I want to be able to do create a variable "hasBannana" exists only within the mako template html that checks for certain things. Assume grocery and and store were passed in from the function that ...
0
votes
1answer
25 views
Use same variable name as inherited block name in Mako?
I've stumbled upon a problem with inheritence in Mako. I'll try to illustrate the problem below using two template files...
base.tpl - has a named block title:
<title><%block ...
0
votes
1answer
37 views
Can you set session variables in MAKO files in Pyramid?
So I found this answer regarding setting session variables in a pyramid view file, and then later accessing it in a mako template. ( How to access session variable in Mako template and Pyramid? )
I ...
1
vote
1answer
16 views
What can I do to get the return value from a %def?
How do I get the return value from a %def?
makoT1.py:
import mako
from mako.template import Template
from mako.lookup import TemplateLookup
print "Hi world.",
mytemplate = ...
0
votes
1answer
42 views
template lookup issues. What am i not understanding?
Background:
I have the following directory structure:
/absolute/path/to/templates
components/
component1.mak
component2.mak
...
0
votes
1answer
37 views
Application modules with Pyramid
I'm creating a workflow app with pyramid and i'm searching how to make the application modulable : meaning create a core app with sqlalchemy models, base forms with wtforms, and some base templates ...
-1
votes
1answer
75 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
...
2
votes
1answer
44 views
debugging Mako templates in Pyramid
This is related to this question: How do you debug Mako templates?
One response mentions the built in debugging system in Mako and there's a comment about how it works well in Pyramid. However, I ...
1
vote
0answers
44 views
Mako fails to locate templates with TopLevelLookupException when running under gunicorn
I specify my template directory in a flask app using the following code:
directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "templates/")
lookup = TemplateLookup([directory])
...
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 ...
1
vote
1answer
67 views
Get Mako template from within Pyramid app view
I'm currently using the Pyramid web framework and I have it configured with Mako templates. I know that I can render a template as a string from within a view method (Pyramid - Is it possible to ...
0
votes
0answers
30 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 ...
0
votes
0answers
55 views
Displaying HTML only if block is rendered
I am currently developing a web page in Python and am using Mako as a template engine. Previously I have used PHP with the Joomla framework. From there, a common template technique was to check if a ...
1
vote
3answers
62 views
Mako Filter in Chameleon?
Is there any possibility to use template filters in Chameleon as I'm used to in Mako? In Mako one could do something like
${s | filter}
where filter is a function mapping strings to strings and ...
0
votes
0answers
93 views
@jsonify not handling quotes in HTML returned as JSON from Pylons/Mako
I have an old app running Pylons 0.9.7 and using Mako templates. To reuse the server-side templates via AJAX, I call render_def() and return the generated HTML in a JSON object.
The problem is that ...
2
votes
1answer
132 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
117 views
Split models into multiple files Python import package/subpackage
I am receiving the following error:
Error: ImportError: No module named models.account
I am trying to split up my models.
Here is my project structure:
site
| site
| | models
| | | ...
0
votes
2answers
98 views
Notepad++ loses HTML tags highlighting after any <% of Mako Templates tag. How to disable this behaviour?
Let me attach a picture to explain:
So after any tag of Mako (<%block, <%include, ets.) it makes the subsequent HTML code whole sole-colored black. I don't know what to do with this. Options ...
0
votes
1answer
97 views
How to use inheritance with mako using non-file based templates?
Most of the examples and tutorials for mako suggest you use files for templates.
How can I use inheritance, if the templates are stored in strings or in a database?
As a starting point I am trying ...
-3
votes
1answer
223 views
Mako: cannot import the Template class. Have a SyntaxError error in “\mako\template.py”, line 622
I want to try Mako with Django instead of Django's default template language. But I'm having a problem when I try to import Mako's Template class as written in the manual:
from mako.template import ...
0
votes
1answer
153 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
2answers
67 views
Equivalent of py:strip for Mako?
I'm converting a bunch of Genshi templates to Mako.
I tend to use this in Genshi a lot:
<span class="special" py:strip="challenge">Company</span>
What this does in Genshi is strip the ...
0
votes
1answer
98 views
How to pass raw image data in turbogears to mako template for scr=data:image/jpg
I would like to pass raw image data in TurboGears2 to the mako template to use in an img tag
(ie., scr=data:image/jpg,base64,${imagedata}).
The image is retrieved from sql server image format
I ...
0
votes
0answers
58 views
Pyramid Mako Url Encoding Decoding issue when it comes to (+) Plus Sign
I'm building a small application using Pyramid framework and Mako templates. I have an issue with URL Encoding and decoding, however.
When I url encode a string with Mako, it replaces spaces with + ...
0
votes
0answers
42 views
JS template engines - pros/cons [closed]
Can you share your thoughs about is JS templates good for web projects for frontends or would be better to use server-side templates something like mako or jinja2.
At the moment we uses PURE ...
1
vote
0answers
77 views
How can I make the locally running GAE dev server auto-detect changes to templates?
I notice that whenever I make a change to one of my gae project python files, my changes automatically impact my locally running development server. However, whenever I make a change to one of my Mako ...
1
vote
1answer
146 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
2answers
68 views
Mako template filter ordering
When outputting some UGC ($user.text) in a mako template, I'd like to sanitise the content using the mako filter 'h' and then add some <br> tags in place of newlines so there is a bit of ...
1
vote
1answer
217 views
Formatting a date with Mako templates
In my mako template I have:
<p>${item.addDate}</p>
It returns:
2012-12-27 19:50:00
but I would like to get:
27/12/2012 19:50
Have mako any nifty filters, format functions?
0
votes
3answers
121 views
Reduce Lamdba error: 'Undefined' object is not callable
I'm using cherrypy and mako with Python to create a website.
In one of my HTML files I have the following Lambda function:
${reduce(lambda list, cur : '<li>' + someFunction(cur) + ...
1
vote
1answer
78 views
Django templates replaced
i'm at the stage of learning Django and trying to get my web app running. After getting through tutorial, I really don't like the template system (no python code allowed). Can I replace it with ...
1
vote
1answer
56 views
Python Mako templating - How can I dynamically decide which def or function to call based on a value in the context?
I would do something like the following in a Mako file:
%for operation in operation_list:
${operation['name']}
${${operation['name']}Body()}
%endfor
<%def name="operationOneBody()">
...
3
votes
3answers
125 views
Pyramid “select” form input raise a KeyError [closed]
I am trying to access a request.param in my Pyramid application.
I saw a topic about checkboxes, but nobody talked about the "select" HTML tag.
On the pyramid view side, here is the part of my code ...
0
votes
1answer
105 views
OK, I've read all to the unicode/mako posts but I still can get this simple code to work
I've running Python 2.6.6.
cat tbuild.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
from mako.template import Template
_template="""
% for v in my_list:
${'abc'.encode('utf-8')}
...
1
vote
1answer
99 views
Mako: NameError when using global variable
The following example from the Mako docs actually doesn't work:
<%
x = 12
%>
<%def name="outer()">
<%
y = 15
%>
<%def name="inner()">
inner, x ...
0
votes
1answer
44 views
What's the difference between using <%def%> and <%include%> in mako?
They both let you stick some mako-rendered content into another one. Both let you pass in arguments.
Is there a performance difference between the two? A philosophical one?
0
votes
1answer
28 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
122 views
How to check if list variable exists in python mako template?
Assuming I have the following in my template:
% if not mydict['somekey'] is UNDEFINED:
${mydict['somekey'][0]['hellothere']}</td></tr>
% endif
My issue is the above does not ...
2
votes
1answer
115 views
Webhelpers with Python Bottle
I've got a Python Bottle application up and running use Mako templating. I'd like to use the webhelpers module (used in Pylons web applications) but I'm not sure how to go about doing this. I'd like ...
0
votes
0answers
15 views
In template systems , which of these tag should I use for block reuse?
For example, in file A, there is a block BlockA
<%block name="BlockA">
....
</%block>
In file B, there's another block BlockB
<%block name="BlockA">
....
</%block>
...
0
votes
1answer
70 views
maintaining formatting of imported text with mako and rst2pdf
I've created a template which renders pdf files from csv input. However, when the csv input fields contain user formatting, with line breaks and indentations, it messes with the rst2pdf formatting ...
0
votes
1answer
84 views
How to reference multi-word dictionary key in mako?
I am passing a csv file to Mako via csv.DictReader, and the dictionary uses row headers for keys. Some of these have names like 'Entry Id'. Mako throws out errors when I try to reference these ...
1
vote
2answers
76 views
How does one reference a custom field from sqlalchemy when rendering a template?
I am trying to print the value of a func.count() call, but I'm having trouble figuring out how it is named once I'm inside my mako template. I tried to pprint and dict the variables at the debugger ...
