Tagged Questions
NHaml is a .NET implementation of the popular Rails Haml view engine.
23
votes
3answers
1k views
NHaml T4 templates for CRUD?
I want to ask if anyone has or has seen T4 templates for NHaml that are the same as the default T4 CRUD (List, Create etc) templates from MVC 2.0?
8
votes
4answers
2k views
Visual Studio Language Service with C# intellisense
Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor.
To clarify, NHaml is a html template language that can ...
5
votes
2answers
1k views
Does NHaml have a content_for ability for layouts?
I am currently starting a project utilizing ASP.NET MVC and would like to use NHaml as my view engine as I love Haml from Rails/Merb. The main issue I face is the laying out of my pages. In Webforms, ...
4
votes
2answers
645 views
NHaml - still active?
I accidentally stumbled across NHaml and really like what I have seen of it. However, checking the blogs of the authors and Google group reveals that there doesn't seem to be much happening.
Is it ...
4
votes
2answers
526 views
Should I Learn NHaml?
Should I learn NHaml?
What does it provide me over a classic ASP.NET MVC view? What are the pros and cons?
Are you using it via the MVC Contrib project?
I have been seeing more and more about it. ...
2
votes
1answer
239 views
Can NHaml be used as a general purpose template engine? (outside of MVC)
I've seen a lot of people that like using the NHaml View Engine in ASP.NET MVC, but I'm wondering if NHaml can be used as a general purpose templating engine in .NET ? I'd like to use NHaml from a ...
1
vote
0answers
136 views
Is NHaml dead? There's no activity since Aug 2010 [closed]
Looking at both the Google code page and the Github for it, I'm not seeing anything done on the project since August of 2010. Has the project moved somewhere completely different, or has active ...
1
vote
3answers
639 views
Missing extension methods in HtmlHelper using NHaml
I discovered NHaml some days ago and it's a great project.
When I try to use MVC2 Html helpers like Html.LabelFor(), Html.TextBoxFor(); the views won't compile.
Example:
error CS1061: ...
1
vote
1answer
97 views
Is it possible to use different view engines for different views in the *same* ASP.NET MVC website?
I'd like to experiment with NHaml. Can I use the NHaml view engine for a few of my views, without having to convert the entire application (or create a new prototype application)?
1
vote
3answers
245 views
Strongly typed views in NHaml?
I have a strongly typed view and want to use it in an NHaml page.
With the WebForms engine I would describe the ViewData type in the <%@ Page%> directive or in the codebehind file.
How would ...
1
vote
1answer
124 views
1
vote
3answers
244 views
NHAML Radio Button Syntax
Does anyone know the correct syntax for a selected radio button in NHAML?
This is my current NHAML code: %input{type="radio", name="Relocation", value="Yes"}
The help would be greatly appreciated.
...
0
votes
2answers
97 views
Does NHAML require ASP.NET MVC?
Couldn't find this directly on the NHAML project page, so i was wondering if you need to run the ASP.NET MVC in order to use NHaml or if I can use this on a "normal" ASP.NET webpage?
Also, i've read ...
0
votes
2answers
262 views
Will .net MVC3 bring easier integration for alternative view engines?
As you might know .MVC3 brings an alternative view engine named Razor.
As I understand in order to make this possible MS has put more effort in making integration of alternative view engines easier.
...
0
votes
1answer
88 views
Assembly references in Nhaml
I'm trying to get Nhaml working for an ASP.NET MVC 2 project. The backend of the project is Mongo DB, using the NoRM driver. NoRM specifies some custom types, particularly ObjectID as a reference to ...
0
votes
1answer
39 views
Specificying a Page directive attribute on an NHaml page
I am working on an MVC site using NHaml for the view engine.
I have a page that needs to submit HTML code as a form value and am getting the System.Web.HttpRequestValidationException thrown at me.
I ...
0
votes
1answer
55 views
Error when specifying tag attributes in NHaml
I am just getting started with NHaml and ran into a snag.
This is my application.haml file:
%html
%head
%title = Get Some Data
%link{ href="/media/css/styles.css", rel="Stylesheet", ...
0
votes
2answers
80 views
Create an incremental placeholder in NHaml
What I want to reach is a way to add a script and style placeholder in my master.
They will include my initial site.css and jquery.js files.
Each haml page or partial can then add their own required ...
0
votes
1answer
125 views
Why are my script tags rendered outside my body tag?
This is my nhaml code
^ var title=""
!!! XML
!!! Strict
%html{xmlns="http://www.w3.org/1999/xhtml"}
%head
%title
Nhaml Master #{title}
_styles
%body
.page
%h1 = ...
0
votes
1answer
24 views
add output of %link directive to variable?
In my master a partial _styles is loaded.
In this _styles there is a ^var styles = ""
Now in all my views or partials I can say var styles = styles+"another style"
Normally a style is defined as
...
0
votes
1answer
342 views
ASP.NET MVC - NHaml issue on web.config file
I'm trying to implement NHaml views on my application, and it's all working well.
But strangely I'm getting some warnings on web.config files when publishing the application.
My nhaml parameters are:
...
0
votes
2answers
168 views
NHaml configuration problem: Model is not found
I'm having a little problem with my NHaml config:
<configSections>
<section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/>
</configSections>
...