This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See http://git.chorem.org/bow.git commit b8a901bd08317dd5d17ccd97c919bb1fec6a3d4e Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Wed Jul 22 14:39:04 2015 +0200 fix charset escape JavaScript only not HTML to prevent bug with python feedparser :( (rss2email) (escape transforme accent to entity (é) and when parser recreate accent caractere this caractere is byte and not string :( --- bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp b/bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp index 4b03f7b..ea53368 100644 --- a/bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp +++ b/bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #L% --%> -<%@page contentType="application/atom+xml; charset=UTF-8" pageEncoding="UTF-8"%> +<%@page contentType="application/atom+xml;charset=UTF-8" pageEncoding="UTF-8"%> <%@taglib prefix="s" uri="/struts-tags" %> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> @@ -107,7 +107,7 @@ <p><s:a href="%{config.aliasUrl + #bookmark.wikittyId}.action"><s:property value="%{#bookmark.link}" /></s:a></p> <h3><s:text name="bow.bookmark.description" /> :</h3> - <p><s:property value="%{#bookmark.description}"/></p> + <p><s:property value="%{#bookmark.description}" escapeHtml="false" escapeJavaScript="true"/></p> <p> <strong><s:text name="bow.bookmark.tags" /> :</strong> <s:iterator value="#bookmark.labels" var="tag"> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.