Tagged Questions
SiteMesh is a Java web application development framework developed by OpenSymphony.
19
votes
3answers
6k views
Are there any good tutorials for using sitemesh in a grails application?
I'm a pretty experienced Grails developer, but most of my experience has been with using grails for serving up JSON/XML to a flex app and some relatively simple HTML websites.
I've been diving deeper ...
10
votes
3answers
775 views
SiteMesh - still active? v2 vs v3?
I'm evaluating SiteMesh for use in our web applications. I've found two websites for SiteMesh
version 2.4 (Jan 2009) -> http://www.opensymphony.com/sitemesh/
version 3.0 (Sep 2009) -> ...
4
votes
7answers
5k views
How to avoid using scriptlets in my JSP page?
I've been told that the use of scriptlets (<%= ... %>) in my JSP pages isn't such a great idea.
Can someone with a bit more java/jsp experience please give me some pointers as to how to change ...
4
votes
2answers
1k views
Servlet page decoration: Do people use Tiles, Sitemesh, or something else?
I've used Tiles and Sitemesh for a number of years and while I personally prefer the Sitemesh style page decoration, I generally don't see a lot of mention of Sitemesh or Tiles on the Internet.
Do ...
3
votes
1answer
109 views
Sitemesh2 is discontinued, Sitemesh3 is ALPHA - what now?
I kind of accidentally stumbled upon opensymphony's website stating that they went out of business - but their projects (at least some) will be continued over the course of time by others.
However, ...
3
votes
1answer
153 views
sitemesh layout
The Stripes web framework includes a layout engine which provides the following feature:
Layout Definition File - layout.jsp
<s:layout-definition>
Header
<div><s:layout-component ...
3
votes
1answer
2k views
Sitemesh or Tiles
Working on the design of a web-application and since it will be a large application so can not reply on jsp include feature so have to use some other solution and for that we came up with Tiles and ...
3
votes
2answers
624 views
How to obtain model attribute or spring's bean in sitemesh decorator?
I am using Spring 3 with sitemesh. I would like to refer to spring context bean in decorator page defined in sitemesh.
The problem is that SiteMesh filter is working outside the Spring context, so ...
3
votes
1answer
211 views
How to enable logs for sitemesh
Is ther any form to enable logs for sitemesh ?
I already put this in the log4j configuration but it doesn't work
<!-- Appenders -->
<appender name="console" ...
3
votes
1answer
803 views
sitemesh vs jsp-config (<include-prelude>)
Please help clarifying :
In web.xml I have the following
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
...
3
votes
1answer
2k views
Using SiteMesh with RequestDispatcher's forward()
I'm attempting to integrate SiteMesh into a legacy application using Tomcat 5 as my a container. I have a main.jsp that I'm decorating with a simple decorator.
In decorators.xml, I've just got one ...
3
votes
1answer
1k views
Accessing the model from a layout view in Grails
I'm using the layout support (sitemesh) in Grails which works fine. I'd like to adjust my layout to have it depend on whether or not a user is logged in or not.
My grails-app/views/layouts/main.gsp ...
2
votes
4answers
191 views
In a grails gsp template, how can I use a server side comment without sitemesh throwing an error?
When I use a standard jsp comment block in a gsp template
<%-- some server-side comment --%>
, sitemesh throws an 'unexpected token' error. Is there another comment syntax I can use?
2
votes
1answer
415 views
What alternatives exist to Sitemesh to help layout JSP/JSTL page footers/headers in a Spring MVC app?
I've tried excluding certain pages from my Sitemesh decorator but it doesn't seem to follow its own logic:
<decorators>
<excludes>
<pattern>/register</pattern>
...
2
votes
2answers
650 views
SiteMesh 2.4.2 + Spring MVC 3.0.4 - using multiple decorators
I'm developing an application that uses SiteMesh 2.4.2 together with Spring MVC.
I'd like to have two decorators, e.g. :
<decorators>
<decorator name="special" ...
2
votes
2answers
349 views
Spring MVC rendered JSP truncated when containing special characters
If I pass variables with extended characters to my JSP, the end of the rendered file is truncated by 2 bytes for each non-ascii character. Why is this so? Here is an example.
My Controller:
import ...
2
votes
2answers
471 views
How to prevent sitemesh from parsing html in textarea
I use sitemesh for page decoration in my web app.
I have a form where the contents of a textarea field is a complete html page.
The problem is that when Sitemesh parses this page it extracts the ...
2
votes
2answers
485 views
SiteMesh: Changing the content-type of the response
I'm trying to persuade a SiteMesh decorator to change the content-type of the response, but no joy. The content-type always ends up being the same as the decorated JSP, rather than that of the ...
2
votes
2answers
634 views
With JSP, does the taglib URI mean that my site is reliant on the URI resolving?
I'm trying to implement a sitemesh decorator in my site. The example on their site has a full URI linking to their site for the taglib part of the decorator file:
<%@ taglib ...
1
vote
1answer
39 views
Getting started with Grails Resources Plugin
I am new to using Grails plugins and this is most likely a novice mistake, but I cannot find documentation that helps me, so here we go.
I have added the following file to grails-app/conf : ...
1
vote
3answers
123 views
Sitemesh and Freemarker with Jersey resources
I have got a Jersey-based application, which for HTML requests uses Freemarker to generate HTML from templates programatically;
@GET
@Produces("text/html")
public Response ...
1
vote
1answer
95 views
How can I catch a spring message JstTagException?
I'm using Spring MVC 3.0 with sitemesh and spring message bundles. For example, I have the following:
<spring:message code="nav.item.name"/>
If nav.item.name does not exist in my resource ...
1
vote
0answers
61 views
Framework/Library like Sitemesh
I am looking at a UI framework similar to Sitemesh
http://www.sitemesh.org/
Just to add, I am planning to have a Java based web app, which would be based on fluid design and would have "slightly" ...
1
vote
1answer
92 views
What is the Grails GSP equivalent of ASP's ContentPlaceHolder?
I've been playing around a lot with the templating/layout concepts in Grails GSP. I've ben using layouts/content blocks for imitating ASP's master page behavior.
For example, I am using the tag ...
1
vote
1answer
110 views
Sitemesh layout doesn't work with g.include tag in Grails
I am rendering a view that combines a g.include invocation and a sitemesh layout.
The view would be something like this:
myview.gsp
<html>
<head>
<meta name="layout" ...
1
vote
1answer
105 views
sitemesh grails: how to handle scripts in templates
I have a layout main.gsp including scripts before the /body tag:
<g:pageProperty name="page.scripts" />
Index.gsp is a page which has main.gsp has a template, and uses <content ...
1
vote
1answer
49 views
Sitemesh 2.4 with GAE
I'm trying to use sitemesh2.4 for my GAE(struts 1.3, spring 2.5) based app. I found out a couple of tutorials to configure sitemesh. I did exactly the same.
web.xml
<filter>
...
1
vote
1answer
177 views
using sitemesh with struts2
Can anyone tell me how to use Sitemesh. I have created a layout page and header and footer. Header and Footer are included from separate pages as static <%@include >. Now I want the middle part ...
1
vote
2answers
567 views
How to exclude sitemesh filter when resolving error in spring?
I have a Sitemesh filter that will decorate pages. I have configured a Spring's exceptionResolver so that all the error will go to a view called error which is then pointed to WEB-INF/jsp/error.jsp ...
1
vote
1answer
319 views
Where to find sitemesh 2.4.1 source?
The download link to get the source in sitemesh site is not working. Does anyone have an alternate site?
1
vote
1answer
121 views
Is it possible to decorate more than once in Sitemesh?
I'm trying to do something like this:
For all the requests to /admin/* I need the page to be decorated using the B decorator but also that B decorator has to be included in the content of A ...
1
vote
1answer
1k views
Spring MVC 3 redirect / forward with sitemesh
Greetings all,
I am using spring mvc 3 + sitemesh and spring security 3. i need to do the following scenario.
i am using 2 different layouts for the bypassing users and normal users. the approach i ...
1
vote
1answer
78 views
multi pages in same decorator configuration file
i use decorator template with sitemesh. i have a decorators.xml file looks like;
<decorators defaultdir="/WEB-INF/decorators">
<excludes>
<pattern>/styles/*</pattern>
...
1
vote
1answer
551 views
Spring Framework Error Controller with Freemarker
I have problem. Every time I have exception happening my spring error controller either bypasses my sitemash-freemarker decorator and just shows the error dump. Or it includes the decorator but ...
1
vote
3answers
552 views
Render a page in grails without html and body tag
I want to render a page in grails without a <html>, <head> and <body> tag, I just want DIV and tables.
I want to integrate this page in my Facebook page and the requirement of ...
1
vote
1answer
852 views
Spring security tags in sitemesh decorator
I want to use a few tags of the spring security tag library inside the decorator file of site-mesh. However content inside these tags is never shown. Can anyone tell me why this is?
Code:
...
1
vote
1answer
351 views
Sitemesh, periodic refresh duplicates header and footer (Struts2 action)
I am using sitemesh defined jsp in decorator xml which needs to be refresh for every min. After refresh the page is duplicating header and footer.
I am using jQuery setInterval for refresh every min ...
1
vote
1answer
382 views
Sitemesh like functionality with XSLT?
I recently asked a question about using XSL/t for creating a site layout and child pages Here.. Where the layout would decorate the child page. I want to expand on that idea and come up with SiteMesh ...
1
vote
1answer
1k views
Why does calling the security authentication property `principal.displayName` in a decorator throw an exception?
Is there a reason why calling the security authentication property principal.displayName in a decorator would cause a problem?
I'm setting it as a variable in a sitemesh decorator:
...
1
vote
4answers
4k views
sitemesh and spring MVC decorator pattern problems
I have sitemesh with spring working, this is the configuration:
decorator.xml
<?xml version="1.0" encoding="UTF-8"?>
<decorators defaultdir="/styles">
<excludes>
...
1
vote
1answer
141 views
Is there an efficient way to call a Grails template from a string loaded from db?
I store user editable articles in a database. Users can insert some simple widgets into the articles (graphs and so on). So far I've implemented this as a proof of concept by letting the user insert ...
1
vote
1answer
220 views
Re-use Sitemesh layout
I have a few webapps that I want to reuse an identical layout for. I was hoping I could bootstrap the layout via dependency consumption with the simplest method being:
<sitemesh>
...
1
vote
2answers
370 views
Does Sitemesh work with Gaelyk ? Does anybody have a working guide?
Has anyone been able to get sitemesh and gaelyk working together? This seems to be possible as mentioned here ...
1
vote
2answers
486 views
Anyone have good complete examples of using sitemesh and layouts in Grails 1.2?
I had a grails 1.1 app working where keyword and description meta tags were dynamically generated. There was a change in how that works in 1.2, but I cannot found good documentation. I've tried ...
1
vote
1answer
905 views
Grails: what are the other alternatives to sitemesh for gsp view layouts?
Sitemesh seems to be an open-source project with minimal activity and small user community. So, I was wondering whether there are (better) alternatives to sitemesh, as a templating layout engine ?
And ...
0
votes
0answers
26 views
Having issues with spring mvc+freemarker+sitemesh: Decorator doesn't show and i have no errors
I know a lot of people posted about this issue but i did read them all and am still unable to get sitemesh working on my machine.The key difference here is that i use 2 different view ...
0
votes
0answers
13 views
sitemesh 3 safe to use in production?
I'm new to decorators in java, i've discovered that sitemesh offers a good deal of simplicity and flexibility.I've noticed that the stable version 2 is not much in development(i might be wrong) and ...
0
votes
0answers
95 views
Importing spring.ftl using Spring MVC, Sitemesh, Freemarker
How can I import the spring.ftl macros into a Freemarker template page using Spring MVC, Sitemesh, and Freemarker?
I've configured a Spring MVC app using Sitemesh and Freemarker based on Ted Young's ...
0
votes
1answer
28 views
sitemesh excluding trouble
This is my sitemesh-decorators.xml file content
<decorators defaultdir="/WEB-INF/sitemesh">
<excludes>
<pattern>*.html*</pattern>
...
0
votes
1answer
74 views
Sitemesh different decorators for the same URL
I'm using urlrewriteFilter (org.tuckey.web.filters.urlrewrite.UrlRewriteFilter) to forward pages like www.mysite.com/myname to a Struts2 action. The action is mapped up in sitemesh, and it works ...