Nuiton-rss-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
April 2010
- 2 participants
- 7 discussions
Author: tchemit
Date: 2010-04-29 07:44:44 +0200 (Thu, 29 Apr 2010)
New Revision: 193
Log:
Utilisation de mavenpom4redmine 2.1.3
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-04-21 11:58:27 UTC (rev 192)
+++ trunk/pom.xml 2010-04-29 05:44:44 UTC (rev 193)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>mavenpom4redmine</artifactId>
- <version>2.1.2</version>
+ <version>2.1.3</version>
</parent>
<artifactId>nuiton-rss</artifactId>
1
0
r192 - in trunk/src: main/java/org/nuiton/rss site test/java/org/nuiton/rss
by ymartel@users.nuiton.org 21 Apr '10
by ymartel@users.nuiton.org 21 Apr '10
21 Apr '10
Author: ymartel
Date: 2010-04-21 13:58:27 +0200 (Wed, 21 Apr 2010)
New Revision: 192
Log:
[Evolution #541] Add keywords (use profile for license)
Modified:
trunk/src/main/java/org/nuiton/rss/BaseServlet.java
trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
trunk/src/main/java/org/nuiton/rss/FeedData.java
trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
trunk/src/main/java/org/nuiton/rss/FeedType.java
trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
trunk/src/main/java/org/nuiton/rss/Field.java
trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
trunk/src/main/java/org/nuiton/rss/RSSConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
trunk/src/main/java/org/nuiton/rss/RSSHelper.java
trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
trunk/src/main/java/org/nuiton/rss/RSSServlet.java
trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
trunk/src/site/site.xml
trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
trunk/src/test/java/org/nuiton/rss/RSSTest.java
Modified: trunk/src/main/java/org/nuiton/rss/BaseServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/BaseServlet.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/BaseServlet.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedData.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedData.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedData.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedRenderer.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedRenderer.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedType.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedType.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedType.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/Field.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/Field.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/Field.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSConfig.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSConfig.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGenerator.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSGenerator.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSHelper.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSHelper.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSHelper.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/RSSServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSServlet.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/RSSServlet.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/site/site.xml
===================================================================
--- trunk/src/site/site.xml 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/site/site.xml 2010-04-21 11:58:27 UTC (rev 192)
@@ -2,6 +2,9 @@
<!--
#%L
Nuiton-RSS
+
+ $Id$
+ $HeadURL$
%%
Copyright (C) 2008 - 2010 CodeLutin
%%
Modified: trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
Modified: trunk/src/test/java/org/nuiton/rss/RSSTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/rss/RSSTest.java 2010-04-21 11:45:40 UTC (rev 191)
+++ trunk/src/test/java/org/nuiton/rss/RSSTest.java 2010-04-21 11:58:27 UTC (rev 192)
@@ -1,6 +1,9 @@
/*
* #%L
* Nuiton-RSS
+ *
+ * $Id$
+ * $HeadURL$
* %%
* Copyright (C) 2008 - 2010 CodeLutin
* %%
1
0
r191 - in trunk/src: . license main/java/org/nuiton/rss site test/java/org/nuiton/rss
by ymartel@users.nuiton.org 21 Apr '10
by ymartel@users.nuiton.org 21 Apr '10
21 Apr '10
Author: ymartel
Date: 2010-04-21 13:45:40 +0200 (Wed, 21 Apr 2010)
New Revision: 191
Log:
[Evolution #541] Use maven-license-plugin 2.2
Added:
trunk/src/license/
trunk/src/license/project.xml
Modified:
trunk/src/main/java/org/nuiton/rss/BaseServlet.java
trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
trunk/src/main/java/org/nuiton/rss/FeedData.java
trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
trunk/src/main/java/org/nuiton/rss/FeedType.java
trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
trunk/src/main/java/org/nuiton/rss/Field.java
trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
trunk/src/main/java/org/nuiton/rss/RSSConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
trunk/src/main/java/org/nuiton/rss/RSSHelper.java
trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
trunk/src/main/java/org/nuiton/rss/RSSServlet.java
trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
trunk/src/site/site.xml
trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
trunk/src/test/java/org/nuiton/rss/RSSTest.java
Added: trunk/src/license/project.xml
===================================================================
--- trunk/src/license/project.xml (rev 0)
+++ trunk/src/license/project.xml 2010-04-21 11:45:40 UTC (rev 191)
@@ -0,0 +1,41 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project xmlns="http://maven-site.nuiton.org/maven-license-plugin/1.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven-site.nuiton.org/maven-license-plugin/1.0.0 http://maven-site.nuiton.org/maven-license-plugin/licenseProjectDescriptor-…">
+ <mainLicense>lgpl_v3</mainLicense>
+
+ <headers>
+
+ <header>
+ <commentStyle>java</commentStyle>
+ <fileSets>
+ <fileSet>
+ <basedir>src/main/java</basedir>
+ <include>**/*.java</include>
+ </fileSet>
+ <fileSet>
+ <basedir>src/test/java</basedir>
+ <include>**/*.java</include>
+ </fileSet>
+ </fileSets>
+ </header>
+
+ <header>
+ <commentStyle>apt</commentStyle>
+ <fileSet>
+ <basedir>src/site</basedir>
+ <include>**/*.apt</include>
+ </fileSet>
+ </header>
+
+ <header>
+ <commentStyle>xml</commentStyle>
+ <fileSet>
+ <basedir>src/site</basedir>
+ <include>**/*.xml</include>
+ </fileSet>
+ </header>
+
+ </headers>
+
+</project>
\ No newline at end of file
Modified: trunk/src/main/java/org/nuiton/rss/BaseServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/BaseServlet.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/BaseServlet.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
import org.apache.commons.beanutils.BeanUtils;
Modified: trunk/src/main/java/org/nuiton/rss/FeedData.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedData.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedData.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
import com.sun.syndication.feed.synd.SyndEntry;
Modified: trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
import com.sun.syndication.feed.synd.SyndEntry;
Modified: trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedRenderer.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedRenderer.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
import com.sun.syndication.feed.synd.SyndEntry;
Modified: trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
import java.util.ArrayList;
Modified: trunk/src/main/java/org/nuiton/rss/FeedType.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedType.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedType.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
/**
Modified: trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,30 +1,27 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
import java.net.MalformedURLException;
-import java.net.URL;
/**
* Permet de convertir une chaine en une URL. Le resolver le plus simple
Modified: trunk/src/main/java/org/nuiton/rss/Field.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/Field.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/Field.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
/**
Modified: trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
/**
Modified: trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,30 +1,26 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
-import java.util.regex.Pattern;
-
/**
* Supprime les balises <script.*</script> de la chaine
*
Modified: trunk/src/main/java/org/nuiton/rss/RSSConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSConfig.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSConfig.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGenerator.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSGenerator.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
import com.sun.syndication.feed.synd.SyndEntry;
Modified: trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/RSSHelper.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSHelper.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSHelper.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
import com.sun.syndication.feed.synd.SyndEntry;
Modified: trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/RSSServlet.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/RSSServlet.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/RSSServlet.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,20 +1,23 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
package org.nuiton.rss;
Modified: trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
===================================================================
--- trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,26 +1,24 @@
-/**
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+/*
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
package org.nuiton.rss;
import java.net.MalformedURLException;
Modified: trunk/src/site/site.xml
===================================================================
--- trunk/src/site/site.xml 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/site/site.xml 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,4 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ Nuiton-RSS
+ %%
+ Copyright (C) 2008 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<project name="${project.name}">
<bannerLeft>
Modified: trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,25 +1,24 @@
/*
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
package org.nuiton.rss;
import java.io.File;
Modified: trunk/src/test/java/org/nuiton/rss/RSSTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/rss/RSSTest.java 2010-04-20 13:07:45 UTC (rev 190)
+++ trunk/src/test/java/org/nuiton/rss/RSSTest.java 2010-04-21 11:45:40 UTC (rev 191)
@@ -1,22 +1,24 @@
/*
- * *##% LutinRSS
- * Copyright (C) 2008 CodeLutin
- *
+ * #%L
+ * Nuiton-RSS
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
- *
- * You should have received a copy of the GNU General Lesser Public
+ *
+ * You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
*/
-
package org.nuiton.rss;
import java.util.ArrayList;
1
0
Author: tchemit
Date: 2010-04-20 15:07:45 +0200 (Tue, 20 Apr 2010)
New Revision: 190
Log:
Utilisation de mavenpom4redmine 2.1.2
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-04-16 18:13:02 UTC (rev 189)
+++ trunk/pom.xml 2010-04-20 13:07:45 UTC (rev 190)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>mavenpom4redmine</artifactId>
- <version>2.1.1</version>
+ <version>2.1.2</version>
</parent>
<artifactId>nuiton-rss</artifactId>
1
0
Author: tchemit
Date: 2010-04-16 20:13:02 +0200 (Fri, 16 Apr 2010)
New Revision: 189
Log:
Utilisation de mavenpom4redmine 2.1.1
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-04-12 12:15:32 UTC (rev 188)
+++ trunk/pom.xml 2010-04-16 18:13:02 UTC (rev 189)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>mavenpom4redmine</artifactId>
- <version>2.1</version>
+ <version>2.1.1</version>
</parent>
<artifactId>nuiton-rss</artifactId>
1
0
Author: tchemit
Date: 2010-04-12 14:15:32 +0200 (Mon, 12 Apr 2010)
New Revision: 188
Log:
Utilisation de mavenpom4redmine 2.1
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-04-09 23:27:09 UTC (rev 187)
+++ trunk/pom.xml 2010-04-12 12:15:32 UTC (rev 188)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>mavenpom4redmine</artifactId>
- <version>2.0.7</version>
+ <version>2.1</version>
</parent>
<artifactId>nuiton-rss</artifactId>
1
0
r187 - in trunk: . src/main/assembly src/main/java/org/nuiton/rss src/main/resources src/main/resources/fckeditor src/main/resources/fckeditor/editor/plugins/rssinclude src/main/resources/fckeditor/editor/plugins/rssinclude/lang src/main/webapp src/main/webapp/WEB-INF src/site src/site/rst src/test/java/org/nuiton/rss src/test/resources
by tchemit@users.nuiton.org 09 Apr '10
by tchemit@users.nuiton.org 09 Apr '10
09 Apr '10
Author: tchemit
Date: 2010-04-10 01:27:09 +0200 (Sat, 10 Apr 2010)
New Revision: 187
Log:
add svn:keywords on files
Modified:
trunk/LICENSE.txt
trunk/README.txt
trunk/changelog.txt
trunk/pom.xml
trunk/src/main/assembly/bin.xml
trunk/src/main/assembly/deps.xml
trunk/src/main/assembly/full.xml
trunk/src/main/java/org/nuiton/rss/BaseServlet.java
trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
trunk/src/main/java/org/nuiton/rss/FeedData.java
trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
trunk/src/main/java/org/nuiton/rss/FeedType.java
trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
trunk/src/main/java/org/nuiton/rss/Field.java
trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
trunk/src/main/java/org/nuiton/rss/RSSConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
trunk/src/main/java/org/nuiton/rss/RSSHelper.java
trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
trunk/src/main/java/org/nuiton/rss/RSSServlet.java
trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/README.txt
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/button.rss.gif
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.html
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fckplugin.js
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/lang/en.js
trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/lang/fr.js
trunk/src/main/resources/fckeditor/myfckconfig.js
trunk/src/main/resources/log4j.properties
trunk/src/main/webapp/WEB-INF/web.xml
trunk/src/main/webapp/feed.css
trunk/src/main/webapp/feeds.txt
trunk/src/main/webapp/index.html
trunk/src/main/webapp/rssgenerator.js
trunk/src/main/webapp/rssinclude.js
trunk/src/main/webapp/testFck.html
trunk/src/main/webapp/testGenerator.html
trunk/src/main/webapp/testRender.html
trunk/src/site/rst/Todo.rst
trunk/src/site/rst/index.rst
trunk/src/site/site.xml
trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
trunk/src/test/java/org/nuiton/rss/RSSTest.java
trunk/src/test/resources/log4j.properties
Property changes on: trunk/LICENSE.txt
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/README.txt
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/changelog.txt
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/pom.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/assembly/bin.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/assembly/deps.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/assembly/full.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/BaseServlet.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/ConfigInitializer.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedData.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedEntryComparator.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedHTMLRenderer.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedRenderer.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedRendererConfig.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedType.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/FeedURLResolver.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/Field.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/HTMLCleaner.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/HTMLScriptCleaner.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSConfig.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSGenerator.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSGeneratorConfig.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSGeneratorServlet.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSHelper.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSIOUtil.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/RSSServlet.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/java/org/nuiton/rss/SimpleFeedURLResolver.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/README.txt
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/button.rss.gif
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.html
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/fckplugin.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/lang/en.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/editor/plugins/rssinclude/lang/fr.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/fckeditor/myfckconfig.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/resources/log4j.properties
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/WEB-INF/web.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/feed.css
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/feeds.txt
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/index.html
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/rssgenerator.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/rssinclude.js
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/testFck.html
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/testGenerator.html
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/main/webapp/testRender.html
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/site/rst/Todo.rst
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/site/rst/index.rst
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/site/site.xml
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/test/java/org/nuiton/rss/RSSGeneratorHelperTest.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/test/java/org/nuiton/rss/RSSTest.java
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
Property changes on: trunk/src/test/resources/log4j.properties
___________________________________________________________________
Added: svn:keywords
+ HeadURL Id Date Revision Author
1
0