templates

Enterprise-grade template printing system

Hi. I'm looking for an enterprise-grade template printing system. I'm interested in every software I can get my hands on to evaluate. Commercial or not. What I need - a separate system ready to receive tags in order to print (digital or paper) a template (like a contract, invoice, etc). Templates should be managed by the same software....

Pointer container class which can't be copied by value

I need a smart pointer for my project which can be send to several methods as parameter. I have checked *auto_ptr* and *shared_ptr* from boost. But IMO, that is not suitable for my requirements. Following are my findings auto_ptr : When passed to another method, ownership will be transferred and underlying pointer will get deleted when ...

Can you define your own template variables in Eclipse

In Eclipse there are templates that help you by automatically inserting some code or comments. You can edit these templates yourself via Preferences > Java > Editor > Templates. There are so-called "template variables" that you can use to make these templates a little smarter. For instance, there is the ${see_to_overridden} variable tha...

Can I access constants in settings.py from templates in Django?

I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried {{CONSTANT_NAME}} but that doesn't seem to work. Is this possible? ...

Starting any Emacs buffer with a .c extension with a template

I write a lot of short throwaway programs, and one of the things I find myself doing repeatedly is typing out code like #include <stdio.h> #include <stdlib.h> int main(void){ } To save some tendon hits I was wondering if it was possible to insert a simple template above whenever I create a buffer with the extension of .c. ...

Super Basic Templating System

I'd like to be able to replace things in a file with a regular expression using the following scheme: I have an array: $data = array( 'title' => 'My Cool Title', 'content' => '' ) I also have a template (for clarity's sake, we'll assume the below is assigned to a variable $template) <html> <title><% title %></title> <body><% con...

Can someone explain this template code that gives me the size of an array?

template<typename T, size_t n> size_t array_size(const T (&)[n]) { return n; } The part that I don't get is the parameters for this template function. What happens with the array when I pass it through there that gives n as the number of elements in the array? ...

What is the best way to handle recursion in smarty?

I found a couple of ways to handle recursion in Smarty, mostly based on including templates into themselves, which seems like ridiculous waste of resources. I found one solution, by Messju over at Smarty that seemed to be just right - but it is not supported and fails in the latest version of smarty :( For people asking: What I want sma...

XAML Template Binding Horizontally

I'm wondering how one could use template databinding to accomplish what the following code produces (a grid of checkboxes with some associated text): int tbIndex = 0; for (int i = 1; i < 5; i++) { StackPanel pan = new StackPanel(); pan.Orientation = Orientation.Horizontal; pan.Margin = new Thickness(3); pan.Name = "RowP...

Inheritance instead of typedef

C++ is unable to make a template out of a typedef or typedef a templated class. I know if I inherit and make my class a template, it will work. Examples: // Illegal template <class T> typedef MyVectorType vector<T>; //Valid, but advantageous? template <class T> class MyVectorType : public vector<T> { }; Is doing this advantageous s...

Offline HTML templating processor for Windows

Hello! I am teaching my friend how to make websites. I would like to keep the websites static, so that he does not [yet] have to learn PHP, worry about testing on his Windows machine, worry about the server configuration, security etc. The bad thing is that without some tool support he would have to repeat a lot of code, for example the ...

Good way to make a repeating template for data in asp.net

I'm building a webpage on which I display the n newest newsposts on the front page, and this is the method that gets the posts and returns them to the .aspx-file. I use a asp:substitution-control to insert the string into the webpage. I think my way of doing this i kind of messy and ugly, and not very flexible if i want to do little cha...

PHP best design practices

Ok, have a bunch of questions that I have been thinking about the past few days. Currently I have a site that is just a bunch of PHP files with MySQL statements mixed in with PHP, HTML and CSS, basically a huge mess. I have been tasked with cleaning up the site and have made for myself, the following requirements: The site needs to be ...

Zend Framework: Is there a way to get the path to the view template directory?

I'm just trying to find a way to get the path to the directory of my view templates using the Zend Framework. Is there a way to do that? ...

Recommended JavaScript HTML template library for JQuery?

Any suggestions on which HTML template library would go well with JQuery? Googling turns up quite a number of libraries but I'm not sure whether there is a well recognized library that would stand the test of time. Thanks in advance. ...

How do i combine a list and a form in the same page using django?

Am building a Q&A page, sort of stackoverflow kinda page! Am having a bit of a problem trying to render the form. Am pasing 3 objects to the template that renders the page i.e. Question object, Answers related to the question and Answer form object. In the first part of the page i want to display the Question, then the answers list foll...

JPA java code generation

I am specifically looking for JPA code generation technique First, what are all the project could generate JPA complaint code? (Eg. HibernateTools) Second, I would also like to customize the code generation utility, as it has to compliant to our corporate standards. If not, what are all the framework available to generate java code us...

Suggestions for Java email templating?

we have an application that needs to send out various different types of template email. The current code is very cumbersome and not very flexible. Does any one konw of a library to help with this type of work... We are looking for some kind of templating library for email. ...

Why do I get "unresolved external symbol" errors when using templates?

When I write C++ code for a class using templates and split the code between a source (CPP) file and a header (H) file, I get a whole lot of "unresolved external symbol" errors when it comes to linking the final executible, despite the object file being correctly built and included in the linking. What's happening here, and how can I fi...

Friend template functions (in non-template classes), C++

If I have a non-template (i.e. "normal") class and wish to have a template friend function, how do I write it without causing a compiler error? Here is an example to illustrate what I am trying to do: template <class T> void bar(T* ptr); class MyClass // note that this isn't a template class { private: void foo(); template <...