Compare commits

..

No commits in common. "d1bbae3330d17ef42433528bb97186ec73ab0cd5" and "c15a64eb1dca81b46754544e27f1b555811e1229" have entirely different histories.

7 changed files with 11 additions and 13 deletions

View file

@ -11,8 +11,8 @@ This software is released under the GNU LGPL.
## Requirements
- Java 17
- Eclipse > 202306.
- Java 11
- Eclipse 4.16 (202006).
## Context
Several useful Java classes.

View file

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Fri Aug 23 06:33:15 CEST 2024
build.number=3
#Fri Aug 23 01:55:11 CEST 2024
build.number=2

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.rss;
package fr.devinsy.util.rss;
import java.util.HashMap;
import java.util.Locale;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.rss;
package fr.devinsy.util.rss;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.rss;
package fr.devinsy.util.rss;
import java.io.File;
import java.io.FileNotFoundException;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.rss.demo;
package fr.devinsy.util.rss.demo;
import java.io.IOException;
import java.time.ZonedDateTime;
@ -29,9 +29,9 @@ import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import fr.devinsy.rss.RSSElement;
import fr.devinsy.rss.RSSWriter;
import fr.devinsy.strings.StringListWriter;
import fr.devinsy.util.rss.RSSElement;
import fr.devinsy.util.rss.RSSWriter;
import fr.devinsy.xml.XMLBadFormatException;
import fr.devinsy.xml.XMLTools;

View file

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with Devinsy-rss. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.rss;
package fr.devinsy.util.rss;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;
@ -24,8 +24,6 @@ import org.apache.log4j.Logger;
import org.junit.Before;
import org.junit.Test;
import fr.devinsy.rss.RSSCache;
/**
* The Class RSSCacheTest.
*