templates

What is the most useful way to document assessment of technological choices for a business problem?

I would like to know if there are any templates for doing this in a clear and concise way to give the gist of the application and its inner workings and how it meets the business needs. I do not want to write a mythological story so looking for any new ways of doing this. ...

How to make Resig's micro-templates XHTML compliant?

Hello, I have been experimenting with John Resig's micro-template, which works great. However, the mark-up will not pass the XHTML 1.0 Transitional validation test. (Among other things, id attributes yield errors.) Replacing tags identifiers <, > with [[,]], passes validation. Thus, I created a js script which at load time (jQuery doc...

django variable passing

I have a page that I'm rendering with Django call it example.html. In example.html I have some code that is something like {{ MyObject.Attribute }} How do I get MyObject to be passed into the page so that I can display it? I know that it's in urls.py, but I'm not exactly sure how it works. ...

help with explicit template especialization

hello guys, thank you for looking i got this example from my book but i cant understand why the line S<void,int> sv; // uses Template at (2) but S<void,char> e2; //uses (1) when im thinking it would use (2) especialization as well could anyone explain the behavior? btw all the comments in code below are from book author t...

I cannot compile using template in C++

I compiled the following cords with g++ #include <iostream> #include <string> using namespace std; template<class T> class Node<const char*>{ private: string x_; Node* next_; public: Node (const char* k, Node* next):next_(next),x_(k){} string data(){return x_;} Node *get_next(){return next_;} }; $ g++ -c node01.cc node01.cc:5...

c++ compilation error.

Following code is giving compilation error in visual studio 2009. #include <iterator> #include <vector> template <class T1, class T2 > class A { public: typename std::vector<std::pair<T1,T2> >::iterator iterator; std::pair<iterator, bool > foo(const std::pair<T1 ,T2> &value_in); }; can anyone throw some light on it? Here is ...

How do I declare template function outside the class declaration.

#include <iterator> #include <map> #include <vector> template <class T1, class T2> class A { public: typedef typename std::vector<std::pair<T1,T2> >::iterator iterator; std::pair<iterator, bool > foo() { iterator aIter; return std::pair<std::vector<std::pair<T1,T2> >::iterator, bool >(aIter ,false); } }; T...

How to take a pointer to a template function specialized on a string?

I was trying use a set of filter functions to run the appropriate routine, based on a string input. I tried to create matcher functions for common cases using templates, but I get a "type not equal to type" error when I try to store a pointer to the specialized function (in a structure, in the real application) Distilled example from a...

Install a custom ASPX file as part of a ListTemplate definition

I am using VSeWSS 1.3 to create a custom list definition scoped to 'Site'. <Elements Id="8924acef-84ef-4584-ade4-e3eaeb8df345" xmlns="http://schemas.microsoft.com/sharepoint/"&gt; <ListTemplate Name="MyListDefinition" DisplayName="MyList" Description="" BaseType="0" ...

Template instantiation error

I have template function "compare" defined as below. #include<iostream> using namespace std; template<typename T> void compare(const T&a, const T& b) { cout<<"Inside compare"<<endl; } main() { compare("aa","bb"); compare("aa","bbbb"); } When i instantiate compare with string literals of same length, the compiler doesnot complain...

Taking type of a template class

Hi everyone i have a question about templates, is there a way for taking type of a template class, for example //i have template function template<typename T> IData* createData(); //a template class instance std::vector<int> a; //using type of this instance in another template //part in quotation mark is imaginary of course :D IData...

Implementing a generic fixed size array with iterator support [C++]

I need an array where size is known at compile time. I know I can use std::vector or boost::array. But that's doesn't teach me how it works internally. Also I couldn't find how to add items into boost::array other than using the initializer. I have written the following code for a generic array. My intention is to get familiar with itera...

C++ Get name of type in template

I'm writing some template classes for parseing some text data files, and as such it is likly the great majority of parse errors will be due to errors in the data file, which are for the most part not written by programmers, and so need a nice message about why the app failed to load e.g. something like: Error parsing example.txt. Val...

LaTeX Double Spacing

I am using the acm LaTeX template and I have trouble making my paper double spaced. My LaTeX document looks like the following: \documentclass{acm_proc_article-sp} \usepackage{setspace} \doublespacing \begin{document} ... \end{document} When I compile the above document using pdflatex, I get the following error message on the line th...

Is Template of derived object a subclass of template of base type

If 'apple' is a subclass of 'fruit' , then List<apple> is a subclass of List<fruit> is this correct ? ...

Opening a new query window in management studio with prepared "select * from" text

Hi I edited SQLFile.SQL as "select * from" in order to have a new template when I create a new query. but it seems that still I have a blank window.... what's problem ? ...

When creating a multiple project template for visual studio is there a way to use parameters in the root template file?

Hi, I am trying to create a multi project template. I wish the sub projects names to contain the solution name. I have tried the following however $safeprojectName$ doesn't work in the root template for some reason. It tries to create the folders with $safeprojectName$ in the name rather than the actual project name. <VSTemplate Ver...

How should I go about writing a Joomla! template?

I am using Joomla! CMS to develop a website. In the not-so-distant past I customized a template to schlep up a website. It was fun and interesting to tear apart the code to de-joomla!-fy the template. So interesting that in fact, I am flirting with the idea of making my own template from scratch. So, if I am to pursue this, where do I ...

WPF Custom Controls Deriving from ListView unable to override default style

I am making a simple display grid that derives from ListView, and uses GridView. I want to create it in its own assembly, so i thought of using a CustomControl library and making my ListView there. the problem i have is that when i use the line in the static constructor DefaultStyleKeyProperty.OverrideMetadata(typeof(ExtendedGridView), ...

C++: Accessing types from dependent base classes

Does anyone know why using-declarations don't seem to work for importing type names from dependent base classes? They work for member variables and functions, but at least in GCC 4.3, they seem to be ignored for types. template <class T> struct Base { typedef T value_type; }; template <class T> struct Derived : Base<T> { // Version...