Tagged Questions

NVelocity is a port of the Apache Jakarta Velocity project. It is a simple, easy to learn and extensible template engine.

learn more… | top users | synonyms

10
votes
8answers
3k 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. ...
4
votes
1answer
131 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 ...
4
votes
2answers
896 views

Does NVelocity no longer support string templates?

We have a bunch of NVelocity templates in embedded resources that we use for emails. We want to move these templates to the DB so they can be configured easily by users. It seems though that ...
4
votes
2answers
867 views

Problem with NVelocity, foreach and two Lists

is there an easy way to solve the following problem. Let's say I fetch a IList with some books in my controller from my model. Now I want to enrich the output and fetch a preview from Amazon with ...
3
votes
1answer
91 views

Ignore formatting certain sections in Visual Studio 2010

I know a lot have asked about how to tweak the formatting options in Visual Studio, but is there a way to instruct Visual Studio to ignore certain sections of a document? My problem is that I have a ...
3
votes
1answer
263 views

Automatically HTML Encoding NVelocity Output (EventCartridge & ReferenceInsert)

I wanted to try getting NVelocity to automatically HTML encode certain strings in my MonoRail app. I looked through the NVelocity source code and found EventCartridge, which seems to be a class which ...
3
votes
1answer
1k 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 ...
2
votes
1answer
66 views

Where is the latest source code of nvelocity [closed]

I am thinking of using nvelocity as a template engine for some emails. I am having problems of finding the latest source code of nvelocity. The GitHub source no longer exists. The first version I get ...
2
votes
2answers
79 views

Does Razor needs MVC3 or can I use it only with .NET?

I am newbie for template engines Just I am curious is it possible to use Razor without MVC ? I want to use a template engine in .NET. I have looked at the NVelocity but razor seems more understandable ...
2
votes
1answer
116 views

ViewComponent not found after upgrading Monorail from v1.0.3 to v2.1RC

I'm using Monorail in my C# web application. Since I upgrated it (.Net Framework 2 to 4 and Monorail 1.0.3 to 2.1RC), my ViewComponent class is not found. All my controllers seem to work fine. I'm ...
2
votes
1answer
114 views

NVelocity macro parameter not evaluating

I'm looking to create an inline function (method) inside my NVelocity template. The solution to this appears to be to use Velocimacros. So, I mocked up the following template to test: #macro( ...
2
votes
5answers
848 views

NVelocity not finding the template

I'm having some difficulty with using NVelocity in an ASP.NET MVC application. I'm using it as a way of generating emails. As far as I can make out the details I'm passing are all correct, but it ...
2
votes
2answers
244 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 ...
2
votes
1answer
318 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
733 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 ...
2
votes
1answer
520 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 ...
1
vote
1answer
199 views

Does NVelocity support foreach.count?

I'm using the NVelocity from the Castle project and according to the velocity specs I should be able to access the loop counter like this: $foreach.counter But I can't get it to work so I suspect ...
1
vote
2answers
136 views

Alternatives to NTidy and other ports, need to format html with custom tokens

Looking to format (automated, in application) some html / nvelocity templates. Tidy seems to be the answer for this, however all the .Net ports seem to be problematic and not very well maintained. ...
1
vote
3answers
411 views

For loop in NVelocity

Does NVelocity support #for loops? I've looked through the documentation and all I could find was the #foreach loop. I want to loop over a 2 dimensional array.
1
vote
1answer
303 views

NVelocity syntax for calling methods with evaluated parameters

I have a fairly simple template that I need to make a method call from. However, NVelocity does not seem to evaluate method parameters that themselves are NVelocity variables. Take the following ...
1
vote
1answer
358 views

NVelocity (or Velocity) as a stand-alone formula evaluator

I am using NVelocity in my application to generate html emails. My application has an event-driven model, where saving and/or updating of objects causes these emails to be sent out. Each event can ...
1
vote
2answers
114 views

Template in monorail ViewComponent

Is it possible to have a template with html content in vm for a block component? I'm doing a lot of stuff in html, and want the html reside in a .vm, not in codebehind. Here is what i've got: ...
1
vote
2answers
267 views

nVelocity - Template issue when attempting 'greater than' comparison on decimal property

I have a simple object that has as one of it's properties a decimal named Amount. When I attempt a comparison on this property as part of an nVelocity template, the comparison always fails. If I ...
1
vote
3answers
2k views

NVelocity ASP.NET Examples

I'm looking to use NVelocity in my ASP.NET MVC application, not as a view engine, just for rendering some email templates. However, I cannot for the life of me get it to work. I have downloaded it ...
1
vote
1answer
286 views

What is the syntax for if false in nVelocity?

What is the syntax for an not true or false if statement in nVelocity (or Velocity)? And more importantly, where is this in the nVelocity docs? I've been Googling for quite a while to no avail. I've ...
1
vote
2answers
330 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 ...
1
vote
2answers
845 views

Completely overwriting a file with Velocity / NVelocity

I am trying to use NVelocity templates in a .Net application: using a template to output results to a file. It all seems to work fine except for the fact that the output is never fully overwritten. If ...
1
vote
2answers
377 views

Modifying Cruise Control.NET

We are investigating using CruiseControl.NET as both a Continues Integration build provider, as well as automating the first part of our deployment process. Has anyone modified CruiseControl.NET's ...
0
votes
0answers
12 views

NVelocity Issue

I have taken over some work on an existing system that uses NVelocity templates. It iterates though some rows of data and then loops though the fields creating an html table of the data. I want to ...
0
votes
0answers
13 views

Castle Monorail Complex Binding

I have this ViewModel class ProductViewModel{ List<ProductSellingScopeViewModel> Scopes{get;set;} string Name{get;set;} int Id{get;set;} } class ProductSellingScopeViewModel{ int ...
0
votes
1answer
14 views

Castle 3.0 ILogger breaks the NVelocityTemplateEngine wrapper?

It appears that the the ILogger interface in 3.x is missing a method for .Info that the TemplateEngineNeeds. I'm getting the following error... Method not found: 'Void ...
0
votes
1answer
22 views

Can $DateTime.Now.Year be used with NVelocity to display the current year?

Sorry that this is kind of a lazy questions... I'm curious if $DateTime.Now.Year can be used with NVelocity templates to show the current year? Or do I need to set a variable?
0
votes
2answers
30 views

How should I provide seperate layouts to different user types in NVelocity templates?

I'm redesigning the templates for our online store (Using Castle Monorail with the NVelocity view engine) but want to provide the old layout to certain users. I've started out adding a variable to ...
0
votes
0answers
25 views

NVelocity syntax (#) breaks the syntax highlighting binded to vm extensions

As far as I know, there's no way to get good NVelocity syntax highlighting for Visual Studio 2010 that preserves html, css and javascript highlighting as well, so the way I do it is to go to Tools > ...
0
votes
1answer
22 views

recursive method with nvelocity

I'm working with monorail, I've : in my model : class Foo { public List<Foo> foos; } in my controler : PropertyBag["foos"] = foos; // foos is initialised in my view : <ul> ...
0
votes
2answers
50 views

How can I enable logging in NVelocity?

Any idea how to do what the title says? Only thing I found was on the original Velocity site, and I don't think ve.setProperty( RuntimeConstants.RUNTIME_LOG_LOGSYSTEM_CLASS, ...
0
votes
1answer
56 views

Problem implementing KnockOut in NVelocity

I'm trying to do some tutorial on knockout with Nvelocity. Everything was fine but there is problem when it comes to template .When i reach the third step of this tutorail ( ...
0
votes
1answer
28 views

Adding Css into NVelocity FormHelper

Is it possible to add css into FormHelper in NVelocity ??? For example i wish to add css into FormHelper.TextField() . Thanks.
0
votes
1answer
113 views

Syntax Highlighting with NVelocity in Castle MonoRails

I'm working with Castle Monorails and NVelocity as a view engine. The syntax highlighting works when I go to Tools > Options > Text Editor > File Extension and add "vm" to "HTML Editor" on Editor ...
0
votes
1answer
88 views

How to populate Castle FormHelper RadioField with an enum property

I am trying to work with enums as properies in my models, as decribed in this Castle Monorail page But I am having some problems when populating a a radio button with that property. I am using this ...
0
votes
2answers
34 views

Is unparsed content supported in nVelocity

When reading the VTL reference for Velocity 1.7 at the bottom of the doc there was a reference to Unparsed content. Unparsed content is rendered at runtime, but is not parsed or interpreted. ...
0
votes
2answers
105 views

Can I programmatically append tags to <head> from within body in Castle MonoRails / NVelocity?

I've been trying to find a way to programmatically add a link to an external CSS file to the <head> tag from markup within the <body> tag in Castle MonoRails and NVelocity view engine. ...
0
votes
1answer
142 views

NVelocity extension method ASP.NET webform

I was wondering if it's possible to use an extension method with asp.net webforms and nvelocity. I would like to set some defaults if the string value is null or empty. Example of .vm file: ...
0
votes
1answer
134 views

how to use NVelocity from asp.net webforms?

I want to use "NVelocity" from plain ASPX pages without using any MVC framework. I don't want to use "NVelocity View Engine" thru' asp.net MVC framework. The only example that I got for "NVelocity" is ...
0
votes
1answer
97 views

ASP.NET WebForms Placeholder for NVelocity View Engine

Is there any way to use placeholder similar to WebForms in NVelocity View Engine (.vm files)? Today I've got a component containing everything for the <head>, but I wish to specify additional ...
0
votes
1answer
85 views

I want to configure NVelocity with MVC2, Please Help

I want to configure NVelocity with MVC2, Please Help...
0
votes
1answer
71 views

escaping a " in NVelocity

how can I escape " in NVelocity ? e.g. test.message = "136# 1/4" Test Test Test" if I do <input type="text" id="Test.Description" value="$test.message"/> it displays : 136# 1/4 if I do ...
0
votes
1answer
79 views

In an NVelocity template how do you test for the existence of a property

I'm building a simple NVelocity template but I can't figure out how to test for the existence of a variable -- In this example I want to test if the context contains a property callwed User. I know I ...
0
votes
1answer
248 views

How can I automatically set Build action=Content for all files with the specified extension

How to set build action=content for new and existing *.vm files in vs2010 solution?
0
votes
2answers
42 views

Why does adding two values in nVelocity always returns zero?

I'm trying to add two values in velocity and it always returns 0. What am I doing wrong? #set ($tmpPrice = $orderItem.ExtendedPrice + $discountAmount) Both $orderItem.ExtendedPrice & ...

1 2