templates

Output PDF metadata as document text -- do pdfs have environmental variables?

I'm creating a PDF by hand starting from a very basic PDF file and using a text editor. I was wondering if there was a way to reference metadata, such as the document title and document author in the body of the actual PDF. Something like %TITLE% perhaps. This would be really hand for making a PDF template where the heading of the docum...

Why does a Silverlight application show a blank browser screen when created from exported template?

I created a silverlight app (without website) named TestApp, with one TextBox: <UserControl x:Class="TestApp.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas...

How to Debug Variables in Smarty like in PHP var_dump()

I have some variables inside a template and i dont know where i assigned them, so i need to know what inside this variable is say i have a var in smarty called member i tryed with {debug} but it didnt work, no popup was shown. How can i debug smarty variables using something like var_dump() inside the templates ? ...

Putting a block inside another in Django

I have a Django template that I want to extend in multiple places. In some the div must be inside a form, and in others it must not be. To do this I put a block above and below the div so I could add and in them respectively. Desired: <form> <div class="my_div"> {% block div_content %} ... {% endblock %} </div> </form> Te...

PHP: Opening/closing tags & performance?

Hi, This may be a silly question, but as someone relatively new to PHP, I'm wondering if there are any performance-related issues to frequently opening and closing PHP tags in HTML template code, and if so, what might be best practices in terms of working with php tags? My question is not about the importance/correctness of closing tag...

Design Web Templates

Hi, I am a PHP, VB.NET programmer and i like to build websites. I am good at coding but have never done website designing. Please suggest me some good study resource on Photoshop and flash website design. I have recently made few templates on photoshop but don't know how to code them for valid HTML-CSS. Please let me know which is th...

Unable to get values in ftl from value stack in custom Result Type

Hello, I am unable retrieve value from value stack in FTL file. Here is the code. Action class holds a property called 'name' private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public String execute(){ setName("From value stack .. "); return SUCCESS; } ...

ASP.NET MVC: Accessing ModelMetadata for items in a collection

I'm trying to write an auto-scaffolder for Index views. I'd like to be able to pass in a collection of models or view-models (e.g., IEnumerable<MyViewModel>) and get back an HTML table that uses the DisplayName attribute for the headings (th elements) and Html.Display(propertyName) for the cells (td elements). Each row should correspond ...

Do c++ templates make programs slow ?

Hi, I have heard from many people that usage of templates make the code slow. Is it really true. I'm currently building a library. There are places where if templates are not created, it would result in code management problem. As of now I can think two solutions to this problem: use #defines Use templates and define all possible t...

Catching a nested-in-template exception [C++]

Hello, I have a problem with writing a catch clause for an exception that is a class nested in a template. To be more specific, I have a following definition of the template and exception: /** Generic stack implementation. Accepts std::list, std::deque and std::vector as inner container. */ template < typename T, template ...

Has the small object allocator found in "Modern C++ Design"/Loki been deprecated in favor of newer implementations?

It seems the code and the book have been relegated to the foundation of the movement of modern C++, and isn't updated any more. Is there some kind of replacement for this in Boost or TR1? ...

Struggling with ASP.NET MVC auto-scaffolder template

I'm trying to write an auto-scaffolder template for Index views. I'd like to be able to pass in a collection of models or view-models (e.g., IQueryable<MyViewModel>) and get back an HTML table that uses the DisplayName attribute for the headings (th elements) and Html.Display(propertyName) for the cells (td elements). Each row should co...

Creating a templated silverlight control that has a story board.

I'm trying to create a templated silverlight control that has a simple animation (swap a few color properties). An example would be a control that is similar to the 'questions' menu item in stackoverflow. So the consumer of the control can specify the background color and the background color for the mouseover event. I've run into th...

Default template arguments for function templates

Why are default template arguments only allowed on class templates? Why can't we define a default type in a member function template? For example: struct mycclass { template<class T=int> void mymember(T* vec) { // ... } }; Instead, C++ forces that default template arguments are only allowed on a class template. ...

Templating engine's for Asp.net

Are there any third-party Templating Engines for Asp.net like we have smarty,savant for php ? ...

Struct with template variables in C++

I'm playing around with templates. I'm not trying to reinvent the std::vector, I'm trying to get a grasp of templateting in C++. Can I do the following? template <typename T> typedef struct{ size_t x; T *ary; }array; What I'm trying to do is a basic templated version of: typedef struct{ size_t x; int *ary; }iArray; It look...

Vector of vectors of T in template<T> class

Why this code does not compile (Cygwin)? #include <vector> template <class Ttile> class Tilemap { typedef std::vector< Ttile > TtileRow; typedef std::vector< TtileRow > TtileMap; typedef TtileMap::iterator TtileMapIterator; // error here }; error: type std::vector<std::vector<Ttile, std::allocator<_CharT> >, std::alloc...

Architecture for Qt SIGNAL with subclass-specific, templated argument type

I am developing a scientific data acquisition application using Qt. Since I'm not a deep expert in Qt, I'd like some architecture advise from the community on the following problem: The application supports several hardware acquisition interfaces but I would like to provide an common API on top of those interfaces. Each interface has a...

How to get unsigned equivalent of an integral type in C++?

Is there a way to get an unsigned equivalent (same size) of a signed integral type in C++? I'm thinking along the lines of: template<typename T> struct get_unsigned { }; template<> struct get_unsigned<int> { typedef unsigned int type; }; ... template<typename T> void myfunc(T val) { get_unsigned<T>::type u = std::abs(val); ...

Alternative for PHPlivedocx?

Hello, Is there any other free alternatives to PHPliveDocx? I would like to create a Word document based on templates and user inputted data. The template will resides on the server and the client(online or c# windows application) will be used to collect user input. Once data has been collected, server-side script(PHP) will be used...