active questions tagged nvelocity - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T02:16:17Z http://stackoverflow.com/feeds/tag/nvelocity http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1722193/how-to-proper-initialize-the-nvelocity-engine 0 How to proper initialize the nvelocity engine? NoProblemBabe 2009-11-12T13:32:22Z 2009-11-13T01:44:05Z <p>As I saw in some examples, and tried to understand throughout the <a href="http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/org/apache/velocity/app/VelocityEngine.html" rel="nofollow">velocity site</a>, there are three ways of initializing the velocityengine:<br/> - With the default configurations : <b><i>.Init()</i></b><br/> - With the default configurations, plus the properties in a file : <b><i>.Init(string)</i></b><br/> - With the default configurations, plus the properties in a collection : <b><i>.Init(Commons.Collections.ExtendedProperties)</i></b><br/> <br/> But i've found little explanation on how these work. Per example, in a app i've downloaded:</p> <pre><code>VelocityEngine engine = new VelocityEngine(); ExtendedProperties props = new ExtendedProperties(); props.AddProperty("file.resource.loader.path", new ArrayList(new string[] { ".", @".\Templates" })); engine.Init(props); </code></pre> <p>Beyond the obvious assumption, what is "<b>file.resource.loader.path</b>"?<br/> What are the other properties i can change, and how can i change them (I mean, using the addproperty, or if there other ways please, specify)?</p> http://stackoverflow.com/questions/1351201/castle-nvelocity-gettemplate-method-wont-work 0 Castle Nvelocity GetTemplate method won't work Raúl Roa 2009-08-29T11:28:06Z 2009-11-12T19:45:47Z <p>I've been trying to follow <a href="http://www.castleproject.org/others/nvelocity/usingit.html" rel="nofollow">this</a> instructions to implement email templating using NVelocity but I keep getting a resource not found exception from the GetTemplate method. </p> <p>I've used Server.MapPath full routes and also relative routes and haven't been able to make it work.</p> http://stackoverflow.com/questions/699094/is-the-nvelocity-project-dead-are-there-alternatives 3 Is the NVelocity project dead? Are there alternatives? Martin 2009-03-30T21:22:23Z 2009-11-03T21:20:45Z <p>I'm looking for a template engine for .NET/C# to generate email notifications in my application. I read about <a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity</a> in the past and think it would fit my needs, but it seems this project is dead.</p> <p>Would you still recommended to use NVelocity for that purpose or can you suggest any alternatives?</p> <p>Note: I found some other templating engines, but these are mostly "view-engines" for ASP.NET MVC (Brail, NHaml, etc.). But I think these are not what I'm looking for.</p> http://stackoverflow.com/questions/1308359/nvelocity-parse-with-embedded-resources 0 NVelocity -- #parse with embedded resources Jake Stevenson 2009-08-20T19:36:11Z 2009-10-27T12:00:34Z <p>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:</p> <p>DigestMail.vm _Document.vm _ActionItem.vm _Event.vm</p> <p>My email routine will get a list of objects and will pass each of these along with the proper view to DigestMail.vm:</p> <pre><code>public struct ItemAndView { public string View; public object Item; } private void GenerateWeeklyEmail(INewItems[] newestItems) { IList&lt;ItemAndView&gt; itemAndViews = new List&lt;ItemAndView&gt;(); foreach (var item in newestItems) { itemAndViews.Add(new ItemAndView { View = string.Format("MyAssembly.MailTemplates._{0}.vm", item.GetType().Name), Item = item }); } var context = new Dictionary&lt;string, object&gt;(); context["Recipient"] = _user; context["Items"] = itemAndViews; string mailBody = _templater.Merge("MyAssembly.MailTemplates.DigestMail.vm", context); } </code></pre> <p>And in my DigestMail.vm template I've got something like this:</p> <pre><code>#foreach($Item in $Items) ==================================================================== #parse($Item.viewname) #end </code></pre> <p>But it's unable to #parse when given the path to an embedded resource like this. Is there any way I can tell it to parse each of these embedded templates?</p> http://stackoverflow.com/questions/1577662/how-to-catch-invalidreference-error-in-nvelocity 1 How to catch InvalidReference error in NVelocity Peter Starbek 2009-10-16T12:04:03Z 2009-10-19T06:12:23Z <p>I am using codeplex <strong>NVelocity</strong> 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.</p> <p>How can I obtain this?</p> <p>I find <strong>IInvalidReferenceEventHandler</strong> interface in NVelocity.App.Event namespace but I dont't find any information how to use it. Any help will be appreciated. </p> http://stackoverflow.com/questions/1521293/nvelocity-only-show-row-if-not-null 0 NVelocity - Only show row if not null... alex 2009-10-05T17:17:10Z 2009-10-07T11:20:01Z <p>I have the following in my NVelocity template:</p> <pre><code>#if($PO.GiftMessage != '') &lt;tr&gt; &lt;td align="left"&gt; &lt;font face="arial" size="2" color="#000000"&gt; &lt;b&gt;Gift Message&lt;/b&gt; &lt;br /&gt; $PO.GiftMessage &lt;/font&gt; &lt;/td&gt; &lt;/tr&gt; #end </code></pre> <p>Basically if my object (PO) has the property GiftMessage, and it is not null, i want to display that tr.... It's not currently working - Have i got my syntax wrong?</p> http://stackoverflow.com/questions/1510047/nvelocity-displaying-money-value 0 NVelocity - Displaying money value... alex 2009-10-02T14:56:16Z 2009-10-02T15:20:44Z <p>I have an object - call this "order" This object has a property - Total. This is type - decimal (it's a money value)</p> <p>In my template i have something like:</p> <blockquote> <p>Order Total: $order.Total GBP</p> </blockquote> <p>However, in the resulting merge, it comes out as:</p> <blockquote> <p>Order Total: 3.4000 GBP</p> </blockquote> <p>for 3.40</p> <p>Is there any way of telling nvelocity to format it as 2 decimal places??</p> http://stackoverflow.com/questions/1413662/how-to-handle-xss-on-nvelocity 0 How to handle XSS on NVelocity wtaniguchi 2009-09-11T23:05:09Z 2009-09-11T23:58:12Z <p>Castle Project is full of features, includes some awesome subprojects, and developing with it has been a pleasure.</p> <p>My team is almost ready to deliver a custom made <a href="http://en.wikipedia.org/wiki/Enterprise%5Fasset%5Fmanagement" rel="nofollow">EAM</a> and we are polishing our system. We tried some basic XSS attacks and guess: They all worked.</p> <p>Even though it will be running in a Intranet environment, we wouldn't like users to accidentally break the whole system, and we are studying solutions to handle XSS problems.</p> <p>NVelocity by default doesn't escape anything, so this code:</p> <pre><code>${entity.Field} </code></pre> <p>with Field containing things like:</p> <pre><code>&lt;script&gt;alert('xss!')&lt;/script&gt; </code></pre> <p>would give us a nice xss alert.</p> <p>Microsoft's AntiXSS library looks good: handles several types of possible XSS vectors, and so. We ran into AndyPike's <a href="http://dobrzanski.net/2009/01/14/nvelocity-and-xss/#comment-18974" rel="nofollow">helper</a>, but this solution would make us refactor some couple thousand lines. Yeah, not good. And this wouldn't handle ActiveRecord/NVelocity auto bind when editing existing entities.</p> <p>The question is: Using output encoding techniques, is it possible/recommended to patch Castle Project's NVelocity engine? Just like they did with Brail? Anyone has a better idea?</p> <p>Thanks!</p> <p>PS.: <em>Stackoverflowers</em> using Castle Project would use such patch?</p> http://stackoverflow.com/questions/1360547/how-to-use-nvelocity-without-embedding-the-templates-as-resources 1 How to use NVelocity without embedding the templates as resources? Raúl Roa 2009-09-01T04:37:59Z 2009-09-02T03:22:26Z <p>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 way of doing this? Properties to be specified?</p> <p>I've tried several string formatting tweaks to get the path of the template and keep getting an exception of wrong path.</p> http://stackoverflow.com/questions/601849/getlocalresourceobject-with-nvelocity 0 GetLocalResourceObject with NVelocity bondehagen 2009-03-02T10:11:54Z 2009-08-23T07:00:02Z <p>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.</p> <p>I've hardcoded every possible virtualpath I could think of (eg. ~/Home/index.vm.resx) but everyone fails. I've also tried with ExpressionBuilderContext.</p> http://stackoverflow.com/questions/1196450/asp-mvc-with-nvelocity 1 asp mvc with nvelocity? neil 2009-07-28T20:09:25Z 2009-07-28T20:47:12Z <p>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 that works with the current MVC and NVelocity API and distribution mechanisms?</p> <p>Tia, -neil</p> http://stackoverflow.com/questions/1186642/whats-the-nvelocity-c-equivalent-of-if-x-in-array 2 What's the nvelocity/C# equivalent of "if x in array" ? pfctdayelise 2009-07-27T06:09:14Z 2009-07-28T03:14:34Z <p>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?</p> <p>This is what my Python brain wants to do:</p> <pre><code>#set ( $ignore = ['a','b','c'] ) &lt;ul&gt; #foreach ( $f in $blah ) #if ( $f not in $ignore ) &lt;li&gt; $f &lt;/li&gt; #end #end &lt;/ul&gt; </code></pre> <p>But I am not sure what the right syntax is, if there is indeed any. I had a quick look at the <a href="http://velocity.apache.org/engine/releases/velocity-1.5/user-guide.html" rel="nofollow">Velocity Template Guide</a> but didn't spot anything useful.</p> http://stackoverflow.com/questions/961762/castle-nvelocity-getting-started 0 Castle Nvelocity - Getting started. robert 2009-06-07T11:43:39Z 2009-06-07T16:13:59Z <p>Im trying to follow this guide:</p> <p><a href="http://www.castleproject.org/others/nvelocity/usingit.html" rel="nofollow">http://www.castleproject.org/others/nvelocity/usingit.html</a></p> <p>Can you tell me what dlls I have to include to get his working:</p> <pre><code>VelocityEngine velocity = new VelocityEngine(); ExtendedProperties props = new ExtendedProperties(); velocity.Init(props); </code></pre> <p>I included the whole castle project and that still didnt work.</p> http://stackoverflow.com/questions/957792/masterpage-contentpage-with-nvelocity-and-asp-net-mvc 0 MasterPage/ContentPage with NVelocity and ASP.NET MVC? jrista 2009-06-05T19:46:37Z 2009-06-06T16:50:10Z <p>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 ASP.NET MVC, along with the Castle NVelocity .vm syntax highlighter. </p> <p>While I love what NVelocity brings to the table, I am really missing one feature of ASP.NET .aspx views that I find immensely useful: Master Pages. </p> <p>Does anyone know if there is an NVelocity view engine for ASP.NET MVC that provides Master/Child pages like classic .aspx views? Does the MVCContrib project from Codeplex support this (at the moment there is a total void of documentation for the MVCContrib NVelocity view engine.)</p> <p>Any help is greatly appreciated. </p> http://stackoverflow.com/questions/427728/how-do-i-pass-a-string-into-a-function-in-an-nvelocity-template 0 How do I pass a String into a function in an NVelocity Template? Andrew 2009-01-09T11:19:22Z 2009-06-04T21:31:47Z <p>I'm using the <strong><a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity Templating engine</a></strong> to produce a <strong>fixed-length</strong> field output - you know the kind of thing:</p> <pre><code>Field Start Pos Field Length Notes ---------- --------- ------------ --------- Supplier 1 7 Leading Zeros GRN 8 9 - ... e.g. &gt;0001234 123A&lt; </code></pre> <p>The problem is <strong>I'm trying to call String.PadRight() with the overload to specify the leading zero, and NVelocity is having none of it..</strong></p> <p><strong>This works:</strong></p> <pre><code>$Document.SupplierCode.PadRight(7) </code></pre> <p><strong>But this doesn't:</strong></p> <pre><code>$Document.SupplierCode.PadRight(7,"0") </code></pre> <p><strong>I've tried:</strong></p> <ul> <li><p>Single Quotes (<code>'0'</code>)</p></li> <li><p>Double Single-Quotes (<code>''0''</code>)</p></li> <li><p>Double Quotes (<code>"0"</code>)</p></li> <li><p>Double Double-Quotes (<code>""0""</code>)</p></li> <li><p>Escaping the quotes for all of the above (<code>\"0\"</code>)</p></li> <li><p>No Quotes!</p></li> </ul> <p>All I've found to work from is the <a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity Homepage</a>, and the <a href="http://velocity.apache.org/engine/releases/velocity-1.5/vtl-reference-guide.html" rel="nofollow">Velocity Templating Language Reference page</a>, niether are pointing me at a solution.</p> <p>Sorry I'm unable to supply or point you somewhere where you can test out your ideas for yourself, but any suggestions you may have will be most welcome!</p> <p>Thanks for your help ;o)</p> http://stackoverflow.com/questions/791114/is-it-possible-to-default-to-quiet-references-in-nvelocity 0 Is it possible to default to quiet references in NVelocity? Robin M 2009-04-26T16:18:30Z 2009-04-27T06:32:51Z <p>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.</p> <p>Is it possible?</p> http://stackoverflow.com/questions/688465/how-can-you-get-nvelocity-to-initialize-correctly 2 How can you get NVelocity to initialize correctly? Deane 2009-03-27T03:46:36Z 2009-03-29T05:33:19Z <p>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.</p> <p>This:</p> <pre><code>VelocityEngine velocity = new VelocityEngine(); ExtendedProperties props = new ExtendedProperties(); velocity.Init(props); </code></pre> <p>Results in: "It appears that no class was specified as the ResourceManager..."</p> <p>So does this:</p> <pre><code>VelocityEngine velocity = new VelocityEngine(); velocity.Init(); </code></pre> <p>I can find precious little documentation on what the properties should be, nor how to get it to initialize with the simple defaults. Can anyone point to a resource?</p> <p>A lot of pages point back to this page:</p> <p><a href="http://www.castleproject.org/others/nvelocity/usingit.html" rel="nofollow">http://www.castleproject.org/others/nvelocity/usingit.html</a></p> <p>But this page skips over the (seemingly) most important point -- how to set the properties and what to set them to.</p> <p>I just want to load a simple template from a file.</p> http://stackoverflow.com/questions/568215/does-nvelocity-no-longer-support-string-templates 0 Does NVelocity no longer support string templates? Kyle West 2009-02-20T03:51:01Z 2009-03-18T13:52:49Z <p>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.</p> <p>It seems though that NVelocity (Castle port) doesn't support strings as templates. Does anyone know how to do it. </p> <p>To be clear this is what I want to do (syntax may be inaccurate, I'm going by memory) ...</p> <pre><code>string templateString = "Hello $!user"; Template template = new Template(templateString); string results = template.Merge(....); </code></pre> http://stackoverflow.com/questions/399822/completely-overwriting-a-file-with-velocity-nvelocity 1 Completely overwriting a file with Velocity / NVelocity Jennifer 2008-12-30T09:00:00Z 2009-02-20T08:08:49Z <p>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 my file is 100 characters long and the template only renders 20 characters, the last 80 characters are never altered!</p> <p>Code sample: </p> <pre><code> FileStream fileStream = new FileStream(outputPath, FileMode.OpenOrCreate, FileAccess.Write); using (StreamWriter streamWriter = new StreamWriter(fileStream)) { velocityEngine.MergeTemplate(templateName, Encoding.Default.WebName, velocityContext, streamWriter); } </code></pre> <p>So if my template outputs AAAA and the file already contains BBBBBBBB then at the end, the file contains AAAABBBB at the end of the op.</p> <p>Any clue how I can get it to fully overwrite the file? - e.g. in the above example the final output should be AAAA. Not too sure whether this is just pure stream-related stuff - but I haven't had this problem before with filestreams.</p> <p>Happy to write a reset method, or just output to a memorystream and overwrite the file, but I would like to get it working like this if possible! **EDIT:'' got it working by calling </p> <pre><code> fileStream.SetLength(0); </code></pre> <p>when I open the file. But would appreciate knowing if there was a better way!</p> http://stackoverflow.com/questions/468567/why-cant-i-use-nvelocity-with-the-asp-net-mvc-beta 0 Why can't i use NVelocity with the Asp.net MVC Beta? suhair 2009-01-22T09:56:52Z 2009-01-22T10:56:31Z <p>I have added the required assemblies and registered the NVelocityViewFactory in global.asax.cs page but when i run the site i get the following error</p> <pre><code>Could not load file or assembly 'Microsoft.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. </code></pre> <p>Any help?</p> http://stackoverflow.com/questions/315475/problem-with-nvelocity-foreach-and-two-lists 3 Problem with NVelocity, foreach and two Lists Splash 2008-11-24T21:09:16Z 2009-01-12T16:33:54Z <p>Hi,</p> <p>is there an easy way to solve the following problem.</p> <p>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 another model from an outside framework and get another IList.</p> <p>Now I put both ILists into a property bag.</p> <p>In NVelocity I use a #foreach for the BookList, but how can I access the amazonbooklist with the right preview? I cannot use $amazonbook[index], where index would be the isbn. Do I really need to put both lists in one big list with a simple onject containing only the two other objects?</p> <p>Remember, both models are from different frameworks and cannot be placed in one framework. Both frameworks have to stay seperated. I try to solve the NVelocity problem and ofcourse, this problem is just an example, we don't sell books ;)</p> http://stackoverflow.com/questions/101449/has-anyone-got-nvelocity-working-with-asp-net-mvc-preview-5 0 Has anyone got NVelocity working with ASP.NET MVC Preview 5? Macka 2008-09-19T12:32:37Z 2008-09-19T14:07:15Z <p>I'm guessing I need to implement an <code>NVelocityViewEngine</code> and <code>NVelocityView</code> - but before I do I wanted to check to see if anyone has already done this. </p> <p>I can't see anything in the <a href="http://mvccontrib.googlecode.com/svn/trunk/" rel="nofollow">trunk</a> for <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MVCContrib</a>.</p> <p>I've already seen the post below - I'm looking specifically for something which works with Preview 5:</p> <ul> <li><a href="http://www.chadmyers.com/Blog/archive/2007/11/28/testing-scottgu-alternate-view-engines-with-asp.net-mvc-nvelocity.aspx" rel="nofollow">Testing ScottGu: Alternate View Engines with ASP.NET MVC (NVelocity)</a></li> </ul> <p>Otherwise I'll start writing one :)</p> http://stackoverflow.com/questions/18093/modifying-cruise-control-net 1 Modifying Cruise Control.NET FlySwat 2008-08-20T14:24:33Z 2008-08-20T21:55:41Z <p>We are investigating using CruiseControl.NET as both a Continues Integration build provider, as well as automating the first part of our deployment process.</p> <p>Has anyone modified CruiseControl.NET's dashboard to add custom login and user roles (IE, Separate out access to forcing a build to only certain individuals on a per project basis?</p> <p>The dashboard is a .NET App, but I believe it uses the nVelocity view engine instead of web forms, which I don't have experience with.</p> <p>Can you mix nVelocity and Webforms,or do I need to spend a day learning something new =)</p>