Re: Embeded Resource was not detected

2009-06-09 Thread c.sokun
I got it works, thanks On Jun 8, 6:38 pm, c.sokun chornso...@gmail.com wrote: I got 2 resource files: AppName\Resources\Messages.resx (helloWorld = Hello) AppName\Resources\Messages.fr-FR.resx (helloWorld = Bonjour) Apply resource attribute on controller: [Resource(msg,

?prefix routing in MonoRail

2009-06-09 Thread R. Rajesh Jeba Anbiah
Just a quick question: is prefix routing possible in MonoRail? And, how are you implementing admin pages? TIA -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/ --~--~-~--~~~---~--~~ You received

Passing object to macro in NVelocity

2009-06-09 Thread Mike Bridge
Hi- I was wondering if this should work: #macro(urlencode $querystring)$nvurlutils.urlencode($querystring)#end #set($url = Test $article.linkurl) Test 1: $nvurlutils.urlencode(Test $article.linkurl) Test 2: #urlencode($url) Test 3: #urlencode($article.linkurl) Test 4:

Monorail Release - Status update and call for help

2009-06-09 Thread Ken Egozi
I want to release MonoRail as soon as I can. In order to do so I will need some help from the community. Let me list the things currently missing: 1. Visual Studio wizards - for creating a new project with one of the main view-engines, with or without WindsorExtension enabled. 2. Visual

Re: Monorail Release - Status update and call for help

2009-06-09 Thread John Simons
Ken, In my opinion, I would focus first on releasing the framework and once that is done release the Visual Studio plugins, the reason I say that is because there are already a lot of people using the trunk without the aid of VS wizards, and you can always release a sample project (or more

Re: Monorail Release - Status update and call for help

2009-06-09 Thread Brian DeMarzo
I'd agree with Ken in saying that the wizards can be added after the fact. What's important is the meat, not the gravy. (Some culinary aficionados will disagree.) On Jun 9, 7:24 pm, John Simons johnsimons...@yahoo.com.au wrote: Ken, In my opinion, I would focus first on releasing the

Re: Validate Delete

2009-06-09 Thread MattF
make a class that inherits from IPreUpdateEventListener, and in the method return true if you want to cancel the delete. then put a [EventListener] attribute at the top of that class. and then in your ActiveRecordStarter.Initialize() include your class you just made (or you could do the