template-engine

how do I use html block snippets with dynamic content inside a django template that extends another file?

Hi. Can someone please help me figure out a way to achieve the following (see snippets below) in Django templates? I know that you cannot use more than one extends, but I am new to django and I do not know the proper syntax for something like this. I want to be able to do this so that I can use my nested div layout for css reasons wit...

Python 3 Template Engine

Is there a template engine for Python 3? It should be flexible (not HTML/XML centric) and fast. ...

How can i make my own template/programming engine in php

Ive been working some time on own template engines but i alwais get stuck in strucktured documents like <block : block1> <table> <block : row> <tr> <td> {value} </td> <td> {value2} </td> </tr> ...

What are the best (powerful yet easy) languages to implement text/data processing and code generation?

If I want to write my engine which will generate all the code solving the task described in simple declarative style, what languages should I look at? ...

Include a repetitive chunk of HTML

I basically have a div on my site that always has the same stuff. However, this div is not present on all pages which is why I won't use the dynamic web template. I was wondering if it was possible for PHP to get the code from a document on the server and put in into the div? Ex: <div id="section... then my text file contains <p>hel...

Create Jinja2 macros that put content in separate places

I want to create a table of contents and endnotes in a Jinja2 template. How can one accomplish these tasks? For example, I want to have a template as follows: {% block toc %} {# ... the ToC goes here ... #} {% endblock %} {% include "some other file with content.jnj" %} {% block endnotes %} {# ... the endnotes go here ... #} {...

XML based template engine in Java?

Can somebody suggest me a template engine (preferably written in Java) that could generate any text that I like from given XML input? ...

ASP.NET User-based Templates

Is there anyway to let users write their own aspx templates with my defined dynamic variables? Note that I don't want to use Web Forms (so there are no tags like <asp:button> etc). In addition, I'd need a security solution so users can't change the system or do dangerous things like this. Thanks. ...

Is SparkViewEngine dying?

Hey, I am building a email service based on templates. I thought of using the spark view engine but it seems that It doesn't get much updates anymore. Support on .NET4.0 is not even yet complete and it fails at runtime when used in a console app. The little Intellisense support that was there in VS2008 doesn't seem to work on VS2010 (fr...

Template approach for a PHP application

Hi everyone, We're in the middle of making a new e-commerce related PHP application and we have come to the point where we have started to think about how we should solve templating for our customers needs. What we would like to do is offer our customers the possibility of uploading/modifying templates to suit their company:s profile....

javascript html object model and template engine

I am looking for javascript library which can do something like var items = [1,2]; var html = div( ul({id:"some-id", class:"some-class"})(items.each(function(item){ return li(item); }) ); html == "<div><ul id='some-id' class='some-class'><li >1</li><li>2</li></ul></div>" ...

Good Javascript template engine to work with JSON

I have looked at jTemplates and it's worth a try. Are there any other template engines other than jTemplates? ...

Smarty template tag to check for FIRST user login - to pass message on initial login

Hello, I usually don't use Smarty but am in the process of editing a prebuilt app, that uses Smarty for templating. It's super easy to check for the login status, but I have searched the Smarty site, docs and the app vendors docs and cannot find a tag of function to check for the initial user login. We need to pass a message to the user ...

GWT and templating engine

I want to design a website using GWT. This is my understanding of how GWT pages will be delivered to the client browser - When the user puts in the URL into her browser she receives all the static HTML + GWT javascript, and then the javascript queries the server for the dynamic page content and adds it to the DOM. eg - For a blog page th...

Best way to include view within view in Codeigniter template using Dwoo?

I am using Codeigniter 1.7.2 and Phil Sturgeon's wonderful Dwoo wrapper which allows me to use the Dwoo template library in Codeigniter - http://philsturgeon.co.uk/code/codeigniter-dwoo I have a small question regarding the inclusion of other view template files within my template files. Say for example I have a dashboard.php file and I...

variable read from text file and passed to smarty shows up like "Home<i>\r</i><i>\n</i>"?

I have a code that look like this. $language = "eng"; $append = "_sidebar.txt"; $read_text_file = "languages\\$language$append"; $sidebar = file($read_text_file); $smarty->assign("sidebar_link",$sidebar); Why does all variables in smarty all look like this: Smarty_Variable Object (3) ->va...

Template engine JTPL how to work on netbeans 6.9

Hi All i'm coding jsp The First Step i coded the template html and css and now i want use template engine , i searching in goole.com and i found JTPL is simple template engine But i don't know how it work in netbeans IDE 6.9 Who can help me? ...

About using method "print" etc. in ERB for metaprogramming

I am using ERB via console for metaprogramming (for math software). For example, I have file test.erb containing text line before ruby <%= 'via <%=' %> <% print 'print' %> <% puts 'puts' %> text line after ruby When I parse it by $ erb test.erb, I get the following output printputs text line before ruby via <%= text line af...

Smarty check if undefined

i am getting errors if smarty variable is undefined. Here is the code: < input type="text" value="{$data.allKeywords} id='keyId' /> I am getting the error: Undefined index: allKeywords. I know the variable - $data.allKeywords is undefined but should it not ignore it if a variable is undefined? Is there a way to check if it is unde...

ASP .Net MVC Custom Templating without DisplayFor

I currently have a display template for DateTime? objects that corrects the date depending on the user's time zone. This part of the program is working fine, and when I call DisplayForModel() or DisplayFor(m => m.Date), they both use the template and display the date and time with proper formatting. The problem I am having is I have a p...