The templates tag is used in multiple contexts: generic programming (especially C++), and data/document generation using template engines.
0
votes
1answer
21 views
django access context in template
My code is like this:
I custom my context and want to access my query set in template
class GetStudentQueryHandler(ListView):
template_name = 'client.html'
paginate_by = STUDENT_PER_PAGE
...
0
votes
1answer
30 views
how to serve list of static files in django?
is it possible to serve a list of static files from a given directory in django through templates. Eg. www/example.com/files/path/to/file/ should give a list of all files in the given directory and ...
0
votes
1answer
43 views
expected constructor, destructor, or type conversion before “A”
template <typename T>
class A {
class B {
typedef int INT;
INT func(double e) {
return INT(e * 3.6);
}
};
};
My problem is to remove the definition ...
0
votes
1answer
41 views
Non Template overloaded function not invoked [closed]
I have the following program.
template <typename T>
const T & mymin( T const &x, T const &y)
{
cout <<"Inside template Version "<<endl;
}
const int & min (int ...
0
votes
2answers
75 views
CodeIgniter create a layout/template library
Before I begin I have to say that I have recently started learning CodeIgniter, so I'm sorry if I repeat this subject once again.
In procedural php I would do something like this
// the header.php
...
2
votes
2answers
43 views
Python Safe string templates for nested dict object
I have a complex nested dict object, e.g:
value = {
'a': '100',
bits: {
1: 'alpha',
2: 'beta',
3: ['31', '32', 901]
}
}
I need to 'safely' format it using a ...
1
vote
3answers
70 views
C++: Generate a compile error if user tries to instantiate a class template wihout instantiating a corresponding function template
In a library that I'm writing I have a class:
template<typename T>
class my_class {};
and a function:
template<typename T>
void my_function(...) {};
I want to guarantee that a user ...
0
votes
0answers
35 views
django: my jquery just work in the template with sliders
Some of my django proyect templates are:
a base.htm
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset='utf-8'>
<script ...
-2
votes
2answers
60 views
Problems overloading operator “=” in template
I have this code from a sequence class from an earlier assignment, and am supposed to convert it into a template with a node class. All of my other functions seem to work fine, but there seems to be ...
1
vote
1answer
54 views
C++ std::tr1::hash for a templated class
I have this templated class:
template <typename T> Thing { ... };
and I would like to use it in an unordered_set:
template <typename T> class Bozo {
typedef ...
0
votes
0answers
53 views
Traversing boost::variant types with Visitor that takes template
I've got a persistence class like:
class Writer: private boost::noncopyable {
template<typename T>
struct Record {
std::vector<T> _queued; // waiting to be persisted
...
5
votes
2answers
356 views
c++ power of integer, template meta programming
I want to make a function which returns a power of integer.
Please read the fmuecke's solution in
power of an integer in c++ .
However, I want to generalize his solution to the arbitrary type T.
...
-1
votes
0answers
25 views
Nested templates in dot.js
How i can use template declared in a script block in dot.js from another template.
For example in jsrender it looks like this:
<script id="Form" type="text/html">
...
1
vote
1answer
57 views
C++ template method forward declaration
I'm having a little problem with my classes. I have two classes which both use template methods, therefore I have to put it in the header. Here is an example. I'd like it to compile properly without ...
0
votes
0answers
6 views
1087: Syntax error: extra characters found after end of program
hi guys all of a sudden one of my website page have come up with an error, after checking the xml files below is the fault but i dont know how to fix this. i dont have knowledge about these things. ...
-1
votes
2answers
84 views
Why shared_ptr<T> expects copy/move constructor in T?
I have the following code:
#include <memory>
using namespace std;
template<typename U> class A;
template<typename U>
class B
{
private:
shared_ptr<const ...
0
votes
1answer
8 views
positioning a table for printing
Have a html-print I want to customize.
I need to print text in a certain position in the bottom of the page to fit a template (printed paper).
How can I position the last table exactely 2 inches from ...
2
votes
5answers
170 views
How to declare this algorithm?
I want to declare an algorithm that takes a pair of iterators and a criterium. It then returns a vector of items from the range of the iterators which fulfil the criterium.
template <typename ...
5
votes
2answers
82 views
C++ Function passed as Template Argument vs Parameter
In C++, there are two ways of passing a function into another function that seem equivalent.
#include <iostream>
int add1(int i){ return i+1; }
int add2(int i){ return i+2; }
template <int ...
0
votes
1answer
68 views
binary '[' : no operator found which takes a left-hand operand of type 'const std::map<_Kty,_Ty>'
I don't know where the error is coming from. It seems like I'm passing valid data into the [ ] operator.
template <class VertexType>
typename map< Vertex<VertexType>, int ...
0
votes
1answer
30 views
Change string format delimeters in python
I'd like to template out some config files, but they are not compatible with python's
"this is a {template}".format(template='string') formatting
eg. curly braces are part of the config (nginx ...
0
votes
1answer
22 views
django url NoReverseMatch works in 3rd party app but not my project
I am integrating django-zinnia 0.12.3 into my django 1.4 project. I have it installed and working. I want to override its zinnia/base.html template so that all the content appears using my site's ...
0
votes
0answers
54 views
Recompile directive template in AngularJS
I'm trying to add authentication capabilities to my app by providing a service auth with login and logout methods and a loggedIn property (once I get it to work, this will actually be the user object, ...
0
votes
1answer
46 views
cannot convert between nested templated types
I am trying to write a message handler whose Base classes are
1-Handler base class
2-Handler Factory that generates proper handler for a proper message type
3-and a base generic class for message
...
3
votes
1answer
71 views
Template alias not working in argument of template class template method
When I declare a template method of a template class whose argument type is specified by a template alias, I get a compile error. If I change the template class to a class, it compiles. If I replace ...
0
votes
1answer
28 views
Custom domain templates with AngularJS
Can someone please advise me what is the best method to setup AngularJS with multiple templates?
I have a web application which has the same functionality across our white labelled customers but each ...
1
vote
1answer
13 views
Visual Studio studio custom template: Some usings are automatically parameters (they automatically change when imported)
The MSDN on templates and template parameters is completely f****ng useless.. I can't even follow the instructions because it implies I have access to files that don't exist yet (like .vstemplate), ...
0
votes
0answers
82 views
Convert array pointer to void* at compile time
I have this code:
template <const void*, class Type, size_t Size>
Type GetNextElementImpl(const Type (&Array)[Size])
{
static int index = -1;
index = (index + 1) % Size;
return ...
1
vote
1answer
42 views
What about WebKit makes DOM insertion slow when your template has whitespace / text nodes?
The following code runs slowly in the following browsers:
Chrome 26.0.1410.65 (Mac)
Safari 6.0.4 (Mac)
HTML:
<ul></ul>
<script type="text/html" id="template">
<li>
...
2
votes
1answer
114 views
C++ (gcc) Nested template issue?
I have the following simplifications, this works:
// works:
template<typename NodeStructure>
struct ListNode {
NodeStructure *prev, *next;
};
template<typename NodeStructure, ...
0
votes
1answer
24 views
Backbone template variables only working with if I use this in template
In my template I have to put this.name and this.gravatar to access my user model data attributes.
If I don't I get an error message when the template attempts to render. Everything works but I don't ...
0
votes
1answer
60 views
C++, templates and compiler error in VS 2010: invalid explicit argument
The following code compiles correctly on g++ (Debian) with 0 warnings:
#include <list>
template <typename T>
struct A
{
T a;
typedef T value_type;
};
template <typename T>
struct ...
1
vote
1answer
81 views
Exception being raised as I enter into function before code can be executed
As always, I'm probably missing something obvious here. I can't post the entire source code, because it's work-related but I have a templated Matrix class with a mulMM (multiply Matrix by Matrix) ...
0
votes
1answer
16 views
i need to move my nav-container above layered navigation
in magento i need to move nav-container above layered navigation, I can't seem to locate where to change is. I want the category breakdown to be above the filtering options.
Thank you in advance!
1
vote
3answers
94 views
C++, templates: get type of the item
There are two structures:
template <typename T>
struct AB
{
T a, b;
AB <T> ( ) : a ( 0.0 ), b ( 0.0 ) {}
};
template <typename T>
struct ABList
{
typedef std::list ...
1
vote
1answer
59 views
Inheritance of class members, mixed with templates
in the code below, why does T2 give this error ‘m_t’ was not declared in this scope, while TB is fine ?
And how can I have access to T1's members in T2 while still using templates ?
// All good
...
0
votes
0answers
14 views
How to find xml tags using VB
I have created xsd file which has xml tags(only elements).
And attached that xsd file to word document.
xsd file path(screen shot) :(after adding to word document)
http://sdrv.ms/12P9GLZ
...
2
votes
1answer
82 views
c++ operator overloaded argument vs normal argument
I have a function template (c++)
template<typename T>
void print_to_default_file(T &obj, ADDON addon = "")
and a overloaded function
template<typename T>
void ...
1
vote
0answers
71 views
Expression template c++. Addition of a variable and a value
I have an expression template which adds a variable with a constant in a given expression. I want to convert that to add the variable with any given number.
Structs for constants and variables:
...
1
vote
1answer
39 views
More complex docpad metadata
I'm new to docpad and a lot of the things which it's based upon, therefore sorry if this question might seem a bit dumb. So far docpad is the most designer-friendly one of the recent static site ...
1
vote
1answer
67 views
Testing for member function template
Assume the following rather simple class:
struct A {
bool toBool() const { return true; }
template<typename T> T to() const { return T();}
};
Now, I wish to test for the existence of ...
-1
votes
2answers
31 views
Easy html import for development [closed]
I am looking for a good solutions to import html snippets while developing. For those who are familiar with WordPress probably know functions as get_sidebar() etc. I am looking for something that ...
-1
votes
1answer
28 views
Storing Common HTML templates [closed]
I have many HTML pages in my web application and these pages have certain components in common. I am using handlebars templates for my application.
Please tell me what is the best way to store the ...
-2
votes
1answer
20 views
How add multiples views in the same template? [closed]
I want to make a django application, with a form and a view showing the objects, but in the same template (Just like Twitter).
How can i get a form and a view in the same template?
0
votes
1answer
116 views
“Class is not a template”
Context: I've got a class Node like this:
#ifndef NODE_H_
#define NODE_H_
template <class T>
class Node
{
private:
T data;
Node* next;
Node* ...
0
votes
0answers
42 views
Mixins in C++ vs Mixins in Java
I understand the concept of mixins and templates but I'm having a hard time understanding this problem specifically:
template<class T>
class LogTask : public T ...
14
votes
1answer
224 views
How does template argument deduction work in this case?
Given this code, how does template argument deduction decide what to do for the last function call?
#include <iostream>
template<typename Ret, typename... Args>
Ret ...
0
votes
1answer
45 views
Override Magento persistent/checkout/onepage/billing.phtml
I need to override Magento "checkout onepage billing" (Block and phtml).
I extended the block (Mage_Checkout_Block_Onepage_Billing) correctly but I can't replace the ...
0
votes
0answers
34 views
Ember dynamic MVC and templates
I am learning Ember.js 1.0.0-rc.3 and I would like to know the proper way to create a "dynamic MVC" app. What I mean by "Dynamic MVC" is that the only content I have when hitting the index page is a ...
0
votes
0answers
33 views
Can I deal with Excel Template like as I deal with Local Report?
You know that, in Local Report, you just have to drag and drop some controls (which play role as place holders), set-up expressions for them and pass the proper data source for the report, it will ...


