rss.jsp revision 0992e2d576aca73e510fb27921561734a92c6e20
<%--
$Id$
CDDL HEADER START
The contents of this file are subject to the terms of the
Common Development and Distribution License (the "License").
You may not use this file except in compliance with the License.
See LICENSE.txt included in this distribution for the specific
language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each
file and include the License file at LICENSE.txt.
If applicable, add the following below this CDDL HEADER, with the
fields enclosed by brackets "[]" replaced with your own identifying
information: Portions Copyright [yyyy] [name of copyright owner]
CDDL HEADER END
Copyright 2005 Sun Microsystems, Inc. All rights reserved.
Use is subject to license terms.
Portions Copyright 2011 Jens Elkner.
--%><%@page import="
%><%@ page session="false" errorPage="error.jsp"%><%@
include file="pageconfig.jspf"
%><%
/* ---------------------- rss.jsp start --------------------- */
{
cfg = PageConfig.get(request);
String redir = cfg.canProcess();
if (redir == null || redir.length() > 0) {
if (redir != null) {
response.sendRedirect(redir);
} else {
}
return;
}
String path = cfg.getPath();
String dtag = cfg.getDefineTagsIndex();
%><?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="<%= request.getContextPath()
%>/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Changes in <%= path.length() == 0
? "Cross Reference"
: Util.htmlize(cfg.getResourceFile().getName()) %></title>
<link><%= Util.htmlize(request.getRequestURL()) %></link>
<description><%= Util.htmlize(dtag) %></description>
<language>en</language>
<copyright>Copyright 2005</copyright>
<generator>Java</generator><%
History hist = null;
String newline = System.getProperty("line.separator");
if(cfg.isDir()) {
hist = new DirectoryHistoryReader(cfg.getHistoryDirs()).getHistory();
} else {
hist = HistoryGuru.getInstance().getHistory(cfg.getResourceFile());
}
if (hist != null) {
int i = 20;
for (HistoryEntry entry : hist.getHistoryEntries()) {
if (i-- <= 0) {
break;
}
if (entry.isActive()) {
%>
<item>
<title><%
/*
* Newlines would result in HTML tags inside the 'title' which
* causes the title to be displayed as 'null'.
*/
String replaced = entry.getMessage().replaceAll(newline, "|");
%><%= Util.htmlize(replaced) %></title>
<description><%
if (cfg.isDir()) {
Set<String> files = entry.getFiles();
if (files != null) {
for (String ifile : files) {
%><%= Util.htmlize(ifile) %><%
}
}
} else {
%><%= Util.htmlize(path) %> - <%=
Util.htmlize(entry.getRevision()) %><%
}
%></description>
<pubDate><%
SimpleDateFormat df =
new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z");
%></pubDate>
<dc:creator><%= Util.htmlize(entry.getAuthor()) %></dc:creator>
</item>
<%
}
}
}
%>
</channel>
</rss>
<%
}
/* ---------------------- rss.jsp end --------------------- */
%>