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-1.0.0.xsd"> + <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;