0
votes
0answers
9 views

Good way to do editable messages for plugin?

I am working on a plugin, and have a page setup for the theme developer to be able to edit how my plugin is displayed, and the plugin just injects itself where the theme developer sets certain divs ...
0
votes
0answers
21 views

Render a webpage using Mustache templating library

Here is the gist of my requirements: I have webpage in a domain, say www.domain-one.com I want to display this webpage, within another page in another domain, say www.domain-two.com A simple ...
2
votes
2answers
149 views

Using a variable to store a knockout template

New to knockout and loving it so far cut a 700 line jQuery mess into 150 lines. The one part I am not really liking is the templating. I want to be able to create a file similar to this ...
3
votes
1answer
99 views

Mustache looping error when trying to display data

I am having a problem doing a loop in mustache. Basically a usr has the ability to add options to products. Each option can have more then 1 choice. Also they come together Choice Name + Price. I get ...
0
votes
1answer
320 views

What are the advantages of client-side templating (mustache-like)

In order to avoid writing JavaScript code that manually generates HTML for dynamic pages (which is not only ugly, but not DRY at all), and having simplicity and elegance in mind (as opposed to ...
4
votes
1answer
901 views

Mustache.php : Idiomatic ways to template select dropdowns

So I'm having some problems wrapping my head around the best idiomatic way to deal with some complex html cases flexibly using Mustache.php The first is a pre-selected select dropdown, e.g. ...
2
votes
2answers
870 views

Mustache/Hogan JS: Is it possible to reference parent tags within a list?

I have a use case where I'd like to access parent tags within list loop sections in a Mustache/Hogan JS template. For example, this is my data structure: var data = { users: [{name: "John", age: ...
0
votes
1answer
46 views

Incorrectly calculating dialog box position because of dynamic image loading?

I'm working on a gallery type application - one template puts together a popup dialog for a larger view of thumbnail images when clicked. The server path to the image is included as a template ...
0
votes
1answer
105 views

How do I troubleshoot mustache blocks?

I'm trying to use handlebars in my project, but am running into trouble getting it to output each object's attributes. Data people: [{"name":"Moe"}, {"name":"Larry"}, {"name":"Curly"}] Template ...
1
vote
1answer
560 views

mustache/hogan i18n and taking word-order into account

Found a couple of questions (and answers) on this: How is internationalization configured for Hogan.js? ,etc. but non in particular that take word order into account. I need the ability to: step ...
3
votes
2answers
1k views

What are the benchmarks of Javascript templating frameworks?

I am trying to make an informed decision about which Javascript templating framework to use. There are so many choice, from Mustache, Handlebar, Hogan, jQuery, and Closure templates. I already have ...
13
votes
3answers
1k 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 ...
3
votes
1answer
2k views

Partial include paths in mustache.js

I am trying to include a partial inside my template from within a directory. This works: {{>header}} This doesn't: {{>inc/header}} {{>../header}} Any location other that a sibling ...
15
votes
3answers
2k 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 ...
16
votes
4answers
2k views

Does a handlebars.js implementation in java exist? [closed]

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 ...
6
votes
2answers
1k 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', ...