I would like to get a "context" related tag in the templates meaning. The paragraph and module tags should include:
<!--@DwContentAreaName--> which would allow frontend developers to make choices based on that.
As an example of use you might have a setup where you need to insert a width controled paragraph image.
The width will be one of two depending on the placement.
<img src="...getimage.aspx?...width= <!--@If(DwContentAreaName='main')-->500<!--@Endif--> <!--@If(DwContentAreaName<>'main')-->200<!--@Endif-->...
I have created an example/demo where the width of the image is scaled using jQuery, but would prefer to do it through backend.
Find the demo here: "Adapt image width clientside" (best viewed in chrome, ff4, safari 3, opera 10,5)
/Sten Hougaard