branch develop updated (a064cf7 -> b8a901b)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository bow. See http://git.chorem.org/bow.git from a064cf7 add author email if login is an email new b8a901b 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 :( The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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 :( Summary of changes: bow-ui/src/main/webapp/WEB-INF/jsp/atom.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
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>.
participants (1)
-
chorem.org scm