<%--
$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();
String ForwardedHost = request.getHeader("X-Forwarded-Host");
%><?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>
<description><%= Util.htmlize(dtag) %></description>
<language>en</language>
<copyright>Copyright 2015</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'. Print first line
* of the message. The whole message will be printed in description.
*/
String replaced = entry.getMessage().split("\n")[0];
<link><%
// Play nice in proxy environment by using hostname from the original
// request to construct the URLs.
// Will not work well if the scheme or port is different for proxied server
// and original server. Unfortunately the X-Forwarded-Host does not seem to
// contain the port number so there is no way around it.
String requestURL = request.getScheme() + "://";
if (ForwardedHost != null) {
requestURL += ForwardedHost;
} else {
requestURL += request.getServerName();
String port = Integer.toString(request.getLocalPort());
if (!port.isEmpty()) {
requestURL += ":" + port;
}
}
requestURL += request.getContextPath();
%><%= Util.htmlize(requestURL) %></link>
<description><%
for (String e : entry.getMessage().split("\n")) {
%>
<%= Util.htmlize(e) %><%
}
%>
List of files:
<%
if (cfg.isDir()) {
Set<String> files = entry.getFiles();
if (files != null) {
for (String ifile : files) {
%>
<%= Util.htmlize(ifile) %><%
}
}
} else {
%><%= Util.htmlize(path) %><%
}
%>
</description>
<pubDate><%
SimpleDateFormat df =
new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z");
<dc:creator><%= Util.htmlize(entry.getAuthor()) %></dc:creator>
</item>
<%
}
}
}
%>
</channel>
</rss>
<%
}
/* ---------------------- rss.jsp end --------------------- */
%>