Finalized move packages to fr.devinsy.
This commit is contained in:
parent
2f07f26d2a
commit
ed886c6490
19 changed files with 25 additions and 24 deletions
|
@ -111,7 +111,7 @@
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Built-By" value="${user.name} using ant" />
|
<attribute name="Built-By" value="${user.name} using ant" />
|
||||||
<attribute name="Built-Date" value="${dist.time}" />
|
<attribute name="Built-Date" value="${dist.time}" />
|
||||||
<attribute name="Main-Class" value = "org.april.logar.LogarLauncher"/>
|
<attribute name="Main-Class" value = "fr.devinsy.logar.LogarLauncher"/>
|
||||||
</manifest>
|
</manifest>
|
||||||
<fileset dir="${build.classes}" />
|
<fileset dir="${build.classes}" />
|
||||||
<!--zipfileset dir="${basedir}/lib" includes="${toString:project.libs}" /-->
|
<!--zipfileset dir="${basedir}/lib" includes="${toString:project.libs}" /-->
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
# priority setting: DEBUG < INFO < WARN < ERROR
|
# priority setting: DEBUG < INFO < WARN < ERROR
|
||||||
log4j.rootLogger = INFO, console
|
log4j.rootLogger = INFO, console
|
||||||
log4j.logger.org.april.logar = INFO
|
log4j.logger.fr.devinsy.logar = INFO
|
||||||
|
|
||||||
#--
|
#--
|
||||||
log4j.appender.console = org.apache.log4j.ConsoleAppender
|
log4j.appender.console = org.apache.log4j.ConsoleAppender
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
# priority setting: DEBUG < INFO < WARN < ERROR
|
# priority setting: DEBUG < INFO < WARN < ERROR
|
||||||
log4j.rootLogger = INFO, stdout
|
log4j.rootLogger = INFO, stdout
|
||||||
log4j.logger.org.april.logar = INFO
|
log4j.logger.fr.devinsy.logar = INFO
|
||||||
|
|
||||||
#--
|
#--
|
||||||
log4j.appender.stdout = org.apache.log4j.ConsoleAppender
|
log4j.appender.stdout = org.apache.log4j.ConsoleAppender
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar;
|
package fr.devinsy.logar;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
||||||
|
@ -25,10 +25,11 @@ import org.apache.log4j.ConsoleAppender;
|
||||||
import org.apache.log4j.EnhancedPatternLayout;
|
import org.apache.log4j.EnhancedPatternLayout;
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
||||||
import org.apache.log4j.PropertyConfigurator;
|
import org.apache.log4j.PropertyConfigurator;
|
||||||
import org.april.logar.cli.LogarCLI;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import fr.devinsy.logar.cli.LogarCLI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Class LogarLauncher.
|
* The Class LogarLauncher.
|
||||||
*/
|
*/
|
|
@ -29,10 +29,6 @@ import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.april.logar.util.Chrono;
|
|
||||||
import org.april.logar.util.Files;
|
|
||||||
import org.april.logar.util.FilesUtils;
|
|
||||||
import org.april.logar.util.LineIterator;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
@ -41,6 +37,10 @@ import fr.devinsy.logar.app.log.Log;
|
||||||
import fr.devinsy.logar.app.log.LogFile;
|
import fr.devinsy.logar.app.log.LogFile;
|
||||||
import fr.devinsy.logar.app.log.LogParser;
|
import fr.devinsy.logar.app.log.LogParser;
|
||||||
import fr.devinsy.logar.stats.UserAgentStator;
|
import fr.devinsy.logar.stats.UserAgentStator;
|
||||||
|
import fr.devinsy.logar.util.Chrono;
|
||||||
|
import fr.devinsy.logar.util.Files;
|
||||||
|
import fr.devinsy.logar.util.FilesUtils;
|
||||||
|
import fr.devinsy.logar.util.LineIterator;
|
||||||
import fr.devinsy.strings.StringList;
|
import fr.devinsy.strings.StringList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -29,12 +29,12 @@ import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.april.logar.util.LineIterator;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import fr.devinsy.logar.app.log.Log;
|
import fr.devinsy.logar.app.log.Log;
|
||||||
import fr.devinsy.logar.app.log.LogParser;
|
import fr.devinsy.logar.app.log.LogParser;
|
||||||
|
import fr.devinsy.logar.util.LineIterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Class Anonymizer.
|
* The Class Anonymizer.
|
||||||
|
|
|
@ -21,7 +21,7 @@ package fr.devinsy.logar.app.log;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
|
|
||||||
import org.april.logar.util.CompareUtils;
|
import fr.devinsy.logar.util.CompareUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Class LogComparator.
|
* The Class LogComparator.
|
||||||
|
|
|
@ -26,12 +26,12 @@ import java.io.PrintWriter;
|
||||||
import java.util.zip.GZIPOutputStream;
|
import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.april.logar.util.LineIterator;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import fr.devinsy.cmdexec.CmdExecException;
|
import fr.devinsy.cmdexec.CmdExecException;
|
||||||
import fr.devinsy.cmdexec.CmdExecUtils;
|
import fr.devinsy.cmdexec.CmdExecUtils;
|
||||||
|
import fr.devinsy.logar.util.LineIterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Class LogFile.
|
* The Class LogFile.
|
||||||
|
|
|
@ -16,18 +16,18 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.cli;
|
package fr.devinsy.logar.cli;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
import org.april.logar.util.BuildInformation;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import fr.devinsy.logar.app.ExtractOptions;
|
import fr.devinsy.logar.app.ExtractOptions;
|
||||||
import fr.devinsy.logar.app.Logar;
|
import fr.devinsy.logar.app.Logar;
|
||||||
import fr.devinsy.logar.app.OnOffOption;
|
import fr.devinsy.logar.app.OnOffOption;
|
||||||
|
import fr.devinsy.logar.util.BuildInformation;
|
||||||
import fr.devinsy.strings.StringList;
|
import fr.devinsy.strings.StringList;
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.cli;
|
package fr.devinsy.logar.cli;
|
||||||
|
|
||||||
import fr.devinsy.logar.app.LogarException;
|
import fr.devinsy.logar.app.LogarException;
|
||||||
|
|
|
@ -24,11 +24,11 @@ import java.io.FileOutputStream;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.april.logar.util.Chrono;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import fr.devinsy.logar.app.log.Log;
|
import fr.devinsy.logar.app.log.Log;
|
||||||
|
import fr.devinsy.logar.util.Chrono;
|
||||||
import fr.devinsy.strings.StringsUtils;
|
import fr.devinsy.strings.StringsUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.util;
|
package fr.devinsy.logar.util;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.File;
|
import java.io.File;
|
|
@ -16,7 +16,7 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
* along with Logar. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package org.april.logar.app;
|
package fr.devinsy.logar.app;
|
||||||
|
|
||||||
import org.apache.log4j.BasicConfigurator;
|
import org.apache.log4j.BasicConfigurator;
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
Loading…
Reference in a new issue