0
votes
1answer
23 views
How to proper initialize the nvelocity engine?
As I saw in some examples, and tried to understand throughout the velocity site, there are three ways of initializing the velocityengine:
- With the default configurations : .Init()
- With the default …
1
vote
1answer
27 views
How to catch InvalidReference error in NVelocity
I am using codeplex NVelocity library on .net and i want to catch an error when I execute Evalute method on VelocityEngine instance and one of the parameter in template text was not found.
How can I …
0
votes
1answer
74 views
NVelocity - Only show row if not null…
I have the following in my NVelocity template:
#if($PO.GiftMessage != '')
<tr>
<td align="left">
<font face="arial" size="2" color="#000000">
<b>Gift …
0
votes
1answer
30 views
NVelocity - Displaying money value…
I have an object - call this "order"
This object has a property - Total. This is type - decimal (it's a money value)
In my template i have something like:
Order Total: $order.Total GBP
…
0
votes
1answer
61 views
How to handle XSS on NVelocity
Castle Project is full of features, includes some awesome subprojects, and developing with it has been a pleasure.
My team is almost ready to deliver a custom made EAM and we are polishing our …
1
vote
1answer
76 views
How to use NVelocity without embedding the templates as resources?
I've been playing around with NVelocity to create a library that loads mail templates. And I haven't been able to load a template without embedding it into the application assembly. Is there a special …
0
votes
2answers
64 views
Castle Nvelocity GetTemplate method won’t work
I've been trying to follow this instructions to implement email templating using NVelocity but I keep getting a resource not found exception from the GetTemplate method.
I've used Server.MapPath …
0
votes
0answers
46 views
NVelocity — #parse with embedded resources
I'm generating emails based off embedded NVelocity templates and would like to do something with dynamically included sections. So my embedded resources are something like this:
DigestMail.vm
…
1
vote
1answer
78 views
asp mvc with nvelocity?
I am trying use NVelocity with ASP.NET MVC, but I am having difficulty navigating the noise of out-of-date information. There are many broken links, incorrect info, etc. Is there a guide or howto …
2
votes
6answers
189 views
What’s the nvelocity/C# equivalent of “if x in array” ?
Hacking on a Nvelocity C#/.NET view template (.cs file), I'm really missing the Python keyword "in" (as in, "foo in list"). What is the built-in for checking list/array membership?
This is what my …
0
votes
1answer
281 views
Castle Nvelocity - Getting started.
Im trying to follow this guide:
http://www.castleproject.org/others/nvelocity/usingit.html
Can you tell me what dlls I have to include to get his working:
VelocityEngine velocity = new …
0
votes
1answer
260 views
MasterPage/ContentPage with NVelocity and ASP.NET MVC?
I am a big fan of NVelocity. I think its terse syntax is a huge boon, and helps keep my views simple and effective. I have begun using the NVelocity view engine from the Mvc Contrib project for …
0
votes
1answer
37 views
Is it possible to default to quiet references in NVelocity?
I'm using NVelocity to build an email message. Rather than mark every reference as quiet ($!name instead of $name), I'd like to default to quiet references.
Is it possible?
3
votes
7answers
736 views
Is the NVelocity project dead? Are there alternatives?
I'm looking for a template engine for .NET/C# to generate email notifications in my application. I read about NVelocity in the past and think it would fit my needs, but it seems this project is dead.
…
2
votes
1answer
138 views
How can you get NVelocity to initialize correctly?
I can't get NVelocity to initialize. I'm not trying to do anything complicated, so it's just fine if it initializes at the defaults, but it won't even do that.
This:
VelocityEngine velocity = new …
