0
votes
1answer
11 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( …
0
votes
2answers
56 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 use …
3
votes
7answers
699 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 th …
0
votes
0answers
44 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:
…
1
vote
1answer
25 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 no …
0
votes
0answers
15 views
Castle NVelocity in the GAC
I've been trying castle nvelocity and every time I tried to initilize it, it throws the following error "The specified class for ResourceManager (NVelocity.Runtime.Resource.Resourc …
0
votes
1answer
53 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">
& …
0
votes
1answer
26 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 …
0
votes
1answer
51 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 …
1
vote
1answer
70 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 …
0
votes
1answer
332 views
GetLocalResourceObject with NVelocity
How can I load a .resx file with GetLocalResourceObject when using NVelocity? I'm using ASP.NET MVC with mvccontrib nvelocity viewengine and sharp-architechture.
I've hardcoded ev …
1
vote
1answer
75 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 …
2
votes
6answers
174 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? …
0
votes
1answer
257 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 velocit …
0
votes
1answer
238 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 Contri …
