Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
371 views

Good practices for writing HTML in Javascript

I was wondering about this if people have strong opinions about the best way to generate HTML on the fly, especially with Ajax based applications. Do you just create the HTML code using server side ...
15
votes
7answers
5k views

Your attitude to Haml?

I'm considering Haml as a templating engine to use with PHP (via phammable). Do you know any potential drawbacks to using it? Googling seems to glorify it too much, all that markup haiku thing.
14
votes
3answers
619 views

Why don't I just build the whole web app in Javascript and Javascript HTML Templates?

I'm getting to the point on an app where I need to start caching things, and it got me thinking... In some parts of the app, I render table rows (jqGrid, slickgrid, etc.) or fancy div rows (like in ...
14
votes
4answers
3k views

Is it possible to use Razor View Engine outside asp.net

If I look at the Razor View Engine, then I see a very nice and concise syntax that is not particularly tied to generating html. So I wonder, how easy would it be to use the engine outside asp.net in ...
11
votes
21answers
7k views

Creating PDF Invoices - Are there any templating solutions?

Our company is looking to integrate invoices into a new system we are developing. We require some a solution to create a layout of the invoice and then convert to pdf. We have considered just laying ...
9
votes
9answers
937 views

CL-WHO-like HTML templating for other languages?

Common Lisp guys have their CL-WHO, which makes HTML templating integrated with the "main" language thus making the task easier. For those who don't know CL-WHO, it looks like this (example from ...
8
votes
3answers
336 views

Templating packages for Haskell

What are some preferred packages for templating in Haskell. Something similar to Django Templates, or PHP. I don't want to always use it with HTML. It can be any other thing. I guess what I want is a ...
8
votes
4answers
3k views

Bash Templating: How to build configuration files from templates with Bash?

I'm writting a script to automate creating configuration files for Apache and PHP for my own webserver. I don't want to use any GUIs like CPanel or ISPConfig. I have some templates of Apache and PHP ...
7
votes
2answers
199 views

Mustache Scalate vs Mustache Java

I need to pick a Mustache rendering engine for a Scala project of mine. Seems like the only two choices are Mustache-Java and Scalate? Are there any comparisons? Which one is the more ...
6
votes
1answer
232 views

How to do advanced i18n with Mustache.js?

It seems Twitter is using a fork of Mustache.js to provide i18n to its templates? Could someone give a brief example of how this is done and perhaps also outline what semantics is necessary to ...
6
votes
2answers
171 views

Template engine for Ruby and Javascript

We are building a web page with hashtag navigation. There is lots of data, which comes in as JSON and we use client-side templates (jQuery) to render it. So what are the options for reusable templates ...
6
votes
1answer
738 views

Conditional Styling In Silverlight?

While I'm fine with standard control styling in silverlight I have recently began using more dynamic methods of fetching data to be displayed in items controls. One of the controls I am reworking is a ...
5
votes
2answers
207 views

Does a handlebars.js implementation in java exist?

Currently I'm using Mustache templates ( http://mustache.github.com/ ) both on the client and server-side, using javascript and java implementation respectively. However, there are some limitations ...
5
votes
2answers
606 views

Backbone.js: nesting views through templating

Is it technically possible to nest views, using templating, something like that: <%= new PhotoCollectionView({model:new PhotoCollection(model.similarPhotos)}).render().el) %> I can put all ...
5
votes
2answers
851 views

Partial HAML templating in Ruby without Rails

I really don’t need the overhead of Rails for my very small project, so I’m trying to achieve this just using just plain Ruby and HAML. I want to include another HAML file inside my HAML template. ...
5
votes
2answers
423 views

Java Recursive generic template: what does this mean by … S extends Writer<E>> extends Entity<E,S>

Can some one explain the below, rather complex recursive generic template usage? public abstract class Data<E extends Data<E, S>, S extends Writer<E>> ...
5
votes
1answer
65 views

Can a python view template be made to be 'safe/secure' if I make it user editable?

Say I need to have a templating system where a user can edit it online using an online editor. So they can put if tags, looping tags etc., but ONLY for specific objects that I want to inject into the ...
5
votes
7answers
750 views

Python templates for web designers

What are some good templating engines for web designers? I definitely have my preferences as to what I'd prefer to work with as a programmer. But web designers seem to have a different way of ...
4
votes
1answer
221 views

Why is everyone still constructing parent-child views using the render method?

I dare call myself a backbone hacker. I know what the framework can do, and where its limitations are. I also have some experience with a few templating frameworks. I've seen many tutorials where ...
4
votes
3answers
1k views

How do I render partials with jade without express.js?

Only info I found was this: http://forrst.com/posts/Node_js_Jade_Import_Jade_File-CZW I replicated the suggested folder structure (views/partials) But it didn't work, as soon as I put ...
4
votes
2answers
881 views

Client side templates and partial views and express

We have a large amount of client side templating solutions recently including: jquery templates John resig micro templating handle bars EJS and more As far as I can see only jQuery templates ...
4
votes
1answer
678 views

Jquery Templates with Razor how to use Razor within text/html scripts

Ok so this is a little random but.. Using MVC 3 (with Razor view engine) with Knockout.js which uses jQuery Templating i've come across a little problem i'm sure is possible to solve. In order to ...
4
votes
1answer
862 views

How do I use a template code generator (eg freemarker) in Maven?

How would you structure Freemarker (or an alternative) as a templating code generator into a Maven project? I'm pretty new to Maven and would appreciate some help. I want to generate some code from ...
4
votes
1answer
5k views

Templating Html.DisplayFor() in ASP.NET MVC 2

It appears that if you just use Html.DisplayFor(model => model) with no templates for a Details view, the resulting markup will look something like this: <div class="display-label">first ...
4
votes
3answers
358 views

Which Java templating system should I use to generate emails?

I have a website that uses JSP as its view technology (and Spring MVC underneath). Unfortunately, JSP is just a pain to use for anything that doesn't involve an HTTP session. I would like to be able ...
4
votes
2answers
2k views

WPF DataGrid switch template between view mode and edit mode

If have a WPF DataGrid on the left of a Window with an area to the right for displaying the selected record. The selected record consists of Textboxes and ComboBoxes that are disabled until the edit ...
4
votes
10answers
4k views

how to use Smarty better with PHP?

I found that using Smarty with PHP, sometimes extra time will need to be used for 1) using quite different syntax than PHP itself 2) need to check small cases, because documentation doesn't give ...
4
votes
10answers
1k views

What's a good way of doing string templating in .NET?

I need to send email notifications to users and I need to allow the admin to provide a template for the message body (and possibly headers, too). I'd like something like string.Format that allows me ...
3
votes
1answer
57 views

Facelets as a templating framework in JSP

I am very fond of the Facelets templating model. On the other hand there are many applications where plain old JSTL in JSPs is just fine and JSF would be an overkill. Is it possible to use Facelets ...
3
votes
3answers
48 views

Looking for JS MVC framework with templating

I've been looking at a few client side JS frameworks like SproutCore and JavaScriptMVC, but was wondering if anyone could recommend a JS framework or template engine that has template inheritance ...
3
votes
1answer
45 views

Find and replace with JavaScript

I am trying to create a super simple JavaScript templating solution. I want to use the JavaScript replace method to find all instances of curly braces in a template and replace them with their ...
3
votes
5answers
154 views

javascript/jquery templating suggestions

I am developing a large scale application highly dependent on javascript. Part of this will be displying information on screen. I am looking to display information on the ui and I am looking at using ...
3
votes
1answer
160 views

Javascript templating library that infers used variables and dependencies

Is there a Javascript templating library that automatically infers the variables used in the template and the possible dependencies among them? If I for example have a template that looks like this ...
3
votes
2answers
342 views

Mustache (PHP) Outputting associative array keys

In Mustache can I print out the name of an associative array key instead of its value? i.e. So instead of this: $cars= array( 'name'=>'ferrari', 'color'=>'red', 'name'=>'lambo', ...
3
votes
2answers
51 views

converting html website to simple PHP templated site

I've got a simple website of a friend. It is setup with 15 or so html pages which follow the same template. I've been asked to take a look at it and change a thing or two. The work is easy if it were ...
3
votes
4answers
124 views

Uniform HTML templating language

It seems like every web framework has its own pet template language. Ruby has eRuby, Python's django uses the Django template language, Haskell has Heist and Hamlet, Java's got JSP, and then there's ...
3
votes
5answers
205 views

What is a templating language?

I was reading somewhere that PHP is a templating language. What is exactly a templating language? What makes PHP one? What are the other templating languages?
3
votes
4answers
238 views

Is there a html-only templates system for php?

I have started coding in clojure, and I'm really impressed by Enlive. One thing that I really like about it is that Enlive uses html-only templates. So a template is a file with html in it, ending ...
3
votes
4answers
475 views

Alternatives to Smarty for separating presentation from code in php?

I'm currently using the Smarty templating system for our production site, but am curious how much of a performance hit I'm taking by using this templating engine. Are there faster alternatives? Is ...
3
votes
5answers
805 views

Does anyone use ASP.net (webforms) to dynamically generate javascript and/or css files?

I prefer the use of external css and javascript files. There are however many cases where the content of a javascript or css file needs to be dynamic. I'll usually just transfer the javascript or ...
2
votes
1answer
52 views

Document templates: JavaScript as replacement for Word?

We currently use Word for mail merge (labels) and personalized greeting cards (contact name in the text). Because our contact information is stored on a Web platform (SharePoint), I was thinking ...
2
votes
1answer
90 views

Meaning of Dollar Sign & Curly Braces Containing Javascript Block Outside of HTML Script Tag

I'm currently reading 'Javascript Web Applications' (O'Reilly, Alex MacCaw) and very early on there's a code snippet which might appear to execute a JS function, within an HTML document, yet it is not ...
2
votes
3answers
72 views

A better way to do replacement tags in c#?

I need a better way to do this: Regex.Replace(Regex.Replace(Regex.Replace(Regex.Replace(Regex.Replace(textMessage.Trim(), "{birthday}", person.Birthday, RegexOptions.None), "{phone}", ...
2
votes
3answers
189 views

Elegant foreach - else construct in Razor

A lot of templating engines have a special kind of syntax that is a combination of foreach and else. Basically the else clause is executed when the foreach loop doesn't have any iterations. This can ...
2
votes
2answers
41 views

Error using Mason as stand-alone templating language

G'day, I'm trying to use HTML::Mason 1.35 as a stand-alone templating language to generate emails. Consider the following test script: #!/usr/bin/perl use strict; use warnings; use ...
2
votes
1answer
254 views

call a function on selected index change using KnockoutJS

how to bind a function to the select index change similar to binding a function on click event on a button.... I have this template that has to repeat 'n' number of times .. This 'n' is selected ...
2
votes
1answer
145 views

Creating a Blank Rails 3.1 Templating Handler

What I want to do is make it just output the view itself, and ignore what Rails would normally think is embedded Ruby within the HTML. For example: <div class="current"> <div ...
2
votes
2answers
117 views

Using html files as templates in happstack

I can find plenty of documentation on using blitz and other compiletime templating libraries with happstack but I would like to know how to use html files as templates.
2
votes
1answer
81 views

why is it faster to put ressources in my APP.xaml rather than in MyClass.xaml in WPF?

here's the thing: I have a project in which my menus/ContextMenu/MenuItems are templated. so basically I have a MyMenuItem.xaml/MyMenuItem.xaml.cs file couple with my MyMenuItem.xaml file containing ...
2
votes
2answers
63 views

A clean technique or library to generating emails in Java

Currently our application generates emails for clients via classic "string smashing" mixed in with some String.replace calls. Does somebody have a suggestion for an easy/elegant/robust way to ...

1 2 3 4