%
/*
* ====================================================================
* Copyright (c) 2005-2009 sventon project. All rights reserved.
*
* This software is licensed as described in the file LICENSE, which
* you should have received as part of this distribution. The terms
* are also available at http://www.sventon.org.
* If newer versions of this license are posted there, you may use a
* newer version instead, at your option.
* ====================================================================
*/
%>
<%@ tag body-content="empty" language="java" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="sventon-ui" uri="/WEB-INF/sventon.tld" %>
<%@ tag import="org.sventon.util.HTMLCreator" %>
<%@ attribute name="name" required="true" type="org.sventon.model.RepositoryName" %>
<%@ attribute name="logEntry" required="true" type="org.tmatesoft.svn.core.SVNLogEntry" %>
<%@ attribute name="keepVisible" required="true" type="java.lang.Boolean" %>
<%@ attribute name="linkToHead" required="true" type="java.lang.Boolean" %>
<% application.setAttribute("br", "\n"); %>
: | ${logEntry.revision} |
: |
');">
|
: | ${logEntry.author} |
: | ${fn:replace(fn:escapeXml(logEntry.message), br, ' ')} |
: |
|
<%=HTMLCreator.createChangedPathsTable(logEntry.getChangedPaths(), logEntry.getRevision(), null, "", name,
keepVisible.booleanValue(), linkToHead.booleanValue(), response)%>
|