-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#215: messages (facet intf+impl, JSP fragment and tag).
- Loading branch information
Showing
4 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
package woko.facets.builtin; | ||
|
||
import net.sourceforge.jfacets.IFacet; | ||
import net.sourceforge.stripes.action.Message; | ||
import woko.facets.FragmentFacet; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Fragment facet used to render Stripes messages. | ||
*/ | ||
public interface RenderMessages extends IFacet, FragmentFacet { | ||
|
||
static final String FACET_NAME = "renderMessages"; | ||
|
||
public List<Message> getMessages(); | ||
|
||
public boolean isEscapeXml(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
webresources/core/src/main/webapp/WEB-INF/woko/jsp/all/renderMessages.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<%@ page import="woko.facets.builtin.RenderMessages" %> | ||
<%@ page import="net.sourceforge.stripes.action.Message" %> | ||
<%@ page import="java.util.List" %> | ||
<%@ page import="java.util.Locale" %> | ||
<%-- | ||
~ Copyright 2001-2012 Remi Vankeisbelck | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--%> | ||
<%@ page contentType="text/html;charset=UTF-8" language="java" %> | ||
<%@include file="/WEB-INF/woko/jsp/taglibs.jsp"%> | ||
<% | ||
RenderMessages renderMessages = (RenderMessages)request.getAttribute(RenderMessages.FACET_NAME); | ||
List<Message> messages = renderMessages.getMessages(); | ||
if (messages!=null && messages.size()>0) { | ||
Locale locale = request.getLocale(); | ||
%> | ||
<ul class="wokoMessages"> | ||
<% | ||
for (Message m : messages) { | ||
String msgStr = m.getMessage(locale); | ||
%> | ||
<li><c:out value="<%=msgStr%>" escapeXml="<%=renderMessages.isEscapeXml()%>"/></li> | ||
<% | ||
} | ||
%> | ||
</ul> | ||
<% | ||
} | ||
%> |