templates

C++ template for generating parts of switch statement?

Is it possible to write a template Foo<int n> such that: Foo<2> gives switch(x) { case 1: return 1; break; case 2: return 4; break; } while Foo<3> gives switch(x) { case 1: return 1; break; case 2: return 4; break; case 3: return 9; break; } ? Thanks! EDIT: changed code above to return square, as many have gue...

How do I access a python list from a django templatetag?

I have created a templatetag that loads a yaml document into a python list. In my template I have {% get_content_set %}, this dumps the raw list data. What I want to be able to do is something like {% for items in get_content_list %} <h2>{{items.title}}</h2> {% endfor %}` ...

What is the Java equivalent of C++'s templates?

What is the Java equivalent of C++'s templates? I know that there is an interface called Template. Is that related? ...

Overloading Output operator for a class template in a namespace.

I've this program #include <iostream> #include <sstream> #include <iterator> #include <vector> #include <algorithm> using namespace std ; #if 0 namespace skg { template <class T> struct Triplet ; } template <class T> ostream& operator<< (ostream& os, const skg::Triplet<T>& p_t) ; #endif namespace skg { template <class T> struc...

Access request in django custom template tags

My code in myapp_extras.py: from django import template register = template.Library() @register.inclusion_tag('new/userinfo.html') def address(): address = request.session['address'] return {'address':address} in 'settings.py': TEMPLATE_CONTEXT_PROCESSORS =( "django.core.context_processors.auth", "django.core.contex...

What is the fastest way to get basic templating in PHP, a la Struts Tiles?

I'm new to PHP, and I'm looking to do what I'd normally do with Struts Tiles in JSP. I'm looking for something like: Template.php: <html><body> <div class="header"></div> <div class="contents"> <#insert sectionName="pageContents"> </div> </body></html> Content.php: <#template name="Template.php"> <#section name="pageContents"...

Dynamic Binding in WPF DataGridCell Template

I have a question about data binding DataGrid in WPF. I am using the VS 2010 Beta 2 which has its own DataGrid, not the Toolkit one, although I think it is pretty much the same. I want to bind to a dataset which has 52 columns, one for every week of the year. For this reason I want to bind the data dynamically rather than specifying eac...

Django: customize form in template according to field attribute

hi, I've got the Category model and SearchForm form shown below. I'd like to do 2 things in my template: -to separate in the form the Category instances having a given type to be able to apply a specific style to them in my CSS -to show the hierarchy of my category instances Basically I need to access the Category's parent and style ...

strange template namespace problem....

Hi, I've got a strange problem with templates and namespaces... I have the following code which compiles fine.. using namespace boost::multi_index; template < typename OT, typename KT, KT (OT::* KM)() const, typename KC, typename CMP > class OrderBook { public: OrderBook() {} ~OrderBook() {} typedef multi_index_container...

django reusable template code

So as I am architecting my project, I'm thinking I must be doing something wrong. Some pieces of template code are reusable that makes me want to extract the code out of the template, but I can't find a good way. For example, some buttons are the same design all throughout the website. What's the best way to extract it out of the page...

am i implementing this template class correctly?

Okay, I'm trying to implement a templated class of an array-based queue called Queue. Here's how I did it. First, is this the right way to implement a templated class? The problem is, when I try to compile, I get the error messages undefined reference to 'Queue::Queue()' undefined reference to 'Queue::~Queue()' Any ideas what...

too few template-parameter-lists with stlport in Android-NDK

When trying to compile some c++ code with the Android-ndk in cygwin i keep getting the error" error: too few template-parameter-lists" many times. I am not sure if using the STLport would have an influence on this error but i have that installed as well. I doubt this had anything to do with the problem because i am pretty sure i was gett...

Custom product template in satchmo

I'm implementing a store in satchmo. I've created a custom product MyProduct by using model inheritance from the Product Model (as seen in http://thisismedium.com/tech/satchmo-diaries-part-one/). Now I'd like to have a custom product detail template for MyProduct, and only MyProduct. I tried creating a template in /project/templates/...

XCode - Ruby on Rails Project Templates

Where can I find project templates for Ruby on Rails to use within projects? I am using Xcode version 3.2.2. From what I understand, Apple stopped shipping all project templates with xcode and made them available as optional downloads, yet I cannot find the templates for Ruby on Rails anywhere. Regards Mick ...

Static member data of template class with two parameters

http://www.adp-gmbh.ch/cpp/templates/static_members.html makes it clear what I need to do - if the template has a single parameter. What if it had two? template <typename T, typename T2> class X { public: static int st_; }; How would I template the static memebr data? template <typename T, typename T2> int, int X<T, T2...

templates vs DOM creation - highly dynamic interface

Hi, Building a browsergame I came from PHP to JavaScript, which I now also want to use at the server side. As I'm going to require Users to have JavaScript either way, I'm going to take extensive use of it. I want to use in in a object-oriented way though. Considering MVC, Models will be used on both client and server side. Views are on...

How to track state when iterating in Python's Mako Templates

I want to loop over a list and print the elements seperated by ',', with no trailing comma. I can't just ', '.join(headings) because of the formating and escaping. But the following obviously leaves me with a trailing comma. % for x in headings: <a href='#${x|u}'>${x}</a>, \ % endfor Or more generally: When iterating over something ...

Which is faster? Main script or variable script

Which of these would provide the most functionality? Defining the templates within the variable: elseif($global[action] == "edit_template") { $template_content = template_get($_GET['template']); $template_content = str_replace('\"', '"', $template_content); $template_content = str_replace('</textarea>', '&lt;/textarea&gt;',...

Cannot change Background color with triggers in XAML.

Hello, I have a little problem and I don't know how can I fix it ... I created a CustomControl called "StandardKeyView" from a Button. This control has a dependency property "DownImage" which is used to define a Background Image to my control during the mouse over. Here's the definition of the DownImage property : public SolidColorBr...

Template Metaprogramming - Difference Between Using Enum Hack and Static Const

I'm wondering what the difference is between using a static const and an enum hack when using template metaprogramming techniques. EX: (Fibonacci via TMP) template< int n > struct TMPFib { static const int val = TMPFib< n-1 >::val + TMPFib< n-2 >::val; }; template<> struct TMPFib< 1 > { static const int val = 1; }; template<>...