templates

Please Add - list of PHP CMS and the Template Engines they use

For research purposes, I'd like to compile a list of PHP CMSs and the template engine they use. Please add what you use or know and I will add it here Drupal => PHPTemplate (custom theming engine for drupal since 2005) and Smarty ...

Can one access the template parameter outside of a template without a typedef?

A simple example: template<typename _X> // this template parameter should be usable outside! struct Small { typedef _X X; // this is tedious! X foo; }; template<typename SomeSmall> struct Big { typedef typename SomeSmall::X X; // want to use X here! SomeSmall bar; X toe; }; Is there a way to access the template paramet...

Can a contiguous allocation boundary be forced in a C++ template?

Simple example: template <class P> class MyT { struct Item { public: Item() {} P *pData; Item *next; }; Item *head; public: ...adding etc.. P* operator [](int index) { See question below: } }; Can I somehow make sure that the 'Item's are allocated in such a way that I ...

May std::tuple_element double as a universal template argument retriever?

This question got me thinking. Sometimes it's useful to grab an actual argument from a class template specialization, if it fails to define a public typedef of the argument. In C++03 it's a sign of either bad template design, or contrary design intent, and not particularly common. But variadic templates make typedef coverage impossible, ...

C++: Dynamically access class properties

Hi, I'm wondering if it is possible to access a property of a class dynamically without knowing the name of the property accessed at run-time. To give you a better understanding of what I'm aiming at, this php code should demonstrate what I want to do: <?php $object = new object(); $property = get_name_out_of_textfile(); echo $object->...

What is meant with ellipsis and default arguments not affecting the partial ordering of function templates?

The presence of unused ellipsis and default arguments has no effect on the partial ordering of function templates. [Example: template<class T> void f(T); // #1 template<class T> void f(T*, int=1); // #2 template<class T> void g(T); // #3 template<cla...

Magento theme problem

I tried creating a new theme in Magento by creating the following folders: /app/design/frontend/interface/default /skin/frontend/interface/default I copied into these folders the entire content of the base/default folders (in both skin and design). I enabled the theme bu putting "interface" in "current package name" for a website and...

freemarker, parse values from template

Is it possible to make next using freemarker? e.g. in template i specify some values (i hope my syntax isn't misleading): <td>${{<img src="[1234:thumb]" /><img src="[3456:thumb]" />}?{images are missing}}</td> Idea is that, if application can make value, then new value used in template, if can't - default value is used. Main point is...

How do I use the rendertransform of a templated control in the controltemplate

In Silverlight 4: I'm converting a Usercontrol to a templated control. In my Usercontrol I had a RenderTransform <src:UserControlView.RenderTransform> <TransformGroup> <ScaleTransform/> <SkewTransform/> <RotateTransform/> <TranslateTransform X="-478" Y="-478"/> </TransformGroup> </src:UserControlV...

How to save dynamicly created template in database?

I would like to enable users to create their own templates in my asp.net mvc web application. For example, you would create a simple template like a log on control, 2 labels, 2 textboxes, and 1 submit button. Is it possible to allow users to save such templates in a database and then use them/extend them later? Could you please give m...

Is it possible to use a complex json object with a Prototype template?

Say I have an object such as: { id: 345, title: 'Some title', body: 'Here be a lot of text', author: { id: 1 name: Bob email: [email protected] } } How would I reference the properties of the author in my template e.g., var template = new Template(' <div class='blog_post'> <...

Generating html files in a console application

I need to get data from a database and I need to spit out this data in html formatk using my command line app. For this I am planning to use some sort of template-engine. I was wondering if there is anything in .NET that can do this for me? The best option would be if I could reuse the asp.net mvc template engine (razor) in my app, thi...

Is there a way to process an MVC view (aspx file) from a non-web application?

I have a background service running which sends out emails to users of my website. I would like to write the email templates as MVC views, to keep things consistent (so that the same model can be used to send out an email as to display a web page). Unfortunately, when I try to do a LoadControl (which simply patches through to BuildMana...

django tiny mce is normal text field instead of rich text formatting? a fix please. Settings included.

I installed Django tiny mce however i am getting a normal text area in my admin. Can anyone help me to correct this to a rich text area where i can acces text formating? here are my settings.py import os PROJECT_DIR = os.path.dirname(__file__) DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', '[email protected]...

An HTML template engine for Java like Genshi or Zope's TAL

I need to work with a Web Designer so... Can you suggest me any? Thanks in advance FYI: Zope's TAL The Template Attribute Language (TAL) is a templating language used to generate dynamic HTML and XML pages. Its main goal is to simplify the collaboration between programmers and designers. This is achieved by embedding TAL statement...

Inserting a { in an ExpressionEngine template file

I am trying to insert some analytics code into my ExpressionEngine template's footer files, but it treats the {}'s as a function call or something. Is there any way to make it so it understands that EE shouldn't execute what's inside the braces? I've already tried inserting backslashes and it doesn't seem to work. Any help would be mu...

Specifying one type for all arguments passed to variadic function or variadic template function w/out using array, vector, structs, etc?

I'm creating a function (possibly member function, not that it matters... maybe it does?) that needs to accept an unknown number of arguments, but I want all of them to be the same type. I know I could pass in an array or vector, but I want to be able to accept the list of args directly without extra structure or even extra brackets. I...

include views vs render templates in grails

Hi What is the technical differences bewteen render a template and include a view in grails? thanks in advance ...

C++ template static member instantiation

#include <map> #include <iostream> template <typename T> class A { static std::map<int, int> data; public: A() { std::cout << data.size() << std::endl; data[3] = 4; } }; template <typename T> std::map<int, int> A<T>::data; //std::map<int, int> A<char>::data; A<char> a; int main() { return 0; } What is wrong with this? Wit...

Do Explicit Instantiations of C++ Class Templates Instantiate Dependent Base Classes?

I figured an explicit instantiation request would automatically instantiate all base class members also, but I get a linker error: unresolved external symbol "public: void Base<int>::foo(int)" when building this code using Visual Studio 2008 or 2010. Note that adding a call to foo() inside bar() forces the compiler to instantiate Base<i...