Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scidetect
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cyril Labbe
scidetect
Commits
0e0a7fe8
Commit
0e0a7fe8
authored
Feb 25, 2015
by
Tien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Follow packet naming convention
parent
37a0a4d9
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
67 additions
and
33 deletions
+67
-33
src/fr/imag/Scidetect/Checker/Classifier.java
src/fr/imag/Scidetect/Checker/Classifier.java
+3
-2
src/fr/imag/Scidetect/Checker/DistantCalculator.java
src/fr/imag/Scidetect/Checker/DistantCalculator.java
+3
-2
src/fr/imag/Scidetect/Checker/Indexer.java
src/fr/imag/Scidetect/Checker/Indexer.java
+3
-2
src/fr/imag/Scidetect/Checker/Reader.java
src/fr/imag/Scidetect/Checker/Reader.java
+5
-4
src/fr/imag/Scidetect/Logger/Log.java
src/fr/imag/Scidetect/Logger/Log.java
+3
-2
src/fr/imag/Scidetect/TextExtractor/Xmlextractor.java
src/fr/imag/Scidetect/TextExtractor/Xmlextractor.java
+17
-4
src/fr/imag/Scidetect/TextExtractor/commandexecutor.java
src/fr/imag/Scidetect/TextExtractor/commandexecutor.java
+3
-2
src/fr/imag/Scidetect/TextExtractor/normalizer.java
src/fr/imag/Scidetect/TextExtractor/normalizer.java
+3
-2
src/fr/imag/Scidetect/TextExtractor/pdfextractor.java
src/fr/imag/Scidetect/TextExtractor/pdfextractor.java
+17
-4
src/fr/imag/Scidetect/scigenchecker_local/ScigenChecker_Local.java
...ag/Scidetect/scigenchecker_local/ScigenChecker_Local.java
+10
-9
No files found.
src/Checker/Classifier.java
→
src/
fr/imag/Scidetect/
Checker/Classifier.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
Checker
;
package
fr.imag.Scidetect.
Checker
;
import
java.io.BufferedReader
;
import
java.io.File
;
...
...
src/Checker/DistantCalculator.java
→
src/
fr/imag/Scidetect/
Checker/DistantCalculator.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
Checker
;
package
fr.imag.Scidetect.
Checker
;
import
java.util.HashMap
;
import
java.util.HashSet
;
...
...
src/Checker/Indexer.java
→
src/
fr/imag/Scidetect/
Checker/Indexer.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
Checker
;
package
fr.imag.Scidetect.
Checker
;
import
java.io.File
;
import
java.io.FileNotFoundException
;
...
...
src/Checker/Reader.java
→
src/
fr/imag/Scidetect/
Checker/Reader.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,10 +16,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
Checker
;
package
fr.imag.Scidetect.
Checker
;
import
TextExtractor.Xmlextractor
;
import
TextExtractor.pdfextractor
;
import
fr.imag.Scidetect.
TextExtractor.Xmlextractor
;
import
fr.imag.Scidetect.
TextExtractor.pdfextractor
;
import
java.io.BufferedReader
;
import
java.io.File
;
import
java.io.FileNotFoundException
;
...
...
src/Logger/Log.java
→
src/
fr/imag/Scidetect/
Logger/Log.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
Logger
;
package
fr.imag.Scidetect.
Logger
;
import
java.io.File
;
import
java.io.FileNotFoundException
;
...
...
src/TextExtractor/Xmlextractor.java
→
src/
fr/imag/Scidetect/
TextExtractor/Xmlextractor.java
View file @
0e0a7fe8
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
TextExtractor
;
package
fr.imag.Scidetect.
TextExtractor
;
import
static
java
.
awt
.
SystemColor
.
text
;
import
java.io.File
;
...
...
src/TextExtractor/commandexecutor.java
→
src/
fr/imag/Scidetect/
TextExtractor/commandexecutor.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
TextExtractor
;
package
fr.imag.Scidetect.
TextExtractor
;
import
java.io.BufferedReader
;
import
java.io.IOException
;
...
...
src/TextExtractor/normalizer.java
→
src/
fr/imag/Scidetect/
TextExtractor/normalizer.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 tien
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
...
...
@@ -15,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
TextExtractor
;
package
fr.imag.Scidetect.
TextExtractor
;
import
java.io.BufferedReader
;
import
java.io.File
;
...
...
src/TextExtractor/pdfextractor.java
→
src/
fr/imag/Scidetect/
TextExtractor/pdfextractor.java
View file @
0e0a7fe8
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
TextExtractor
;
package
fr.imag.Scidetect.
TextExtractor
;
import
java.io.BufferedWriter
;
import
java.io.File
;
...
...
src/scigenchecker_local/ScigenChecker_Local.java
→
src/
fr/imag/Scidetect/
scigenchecker_local/ScigenChecker_Local.java
View file @
0e0a7fe8
/*
* Copyright (C) 2015 Nguyen Minh Tien - minh-tien.nguyen@imag.fr
* Copyright (C) 2015 UNIVERSITE JOSEPH FOURIER (Grenoble 1)/ Springer-Verlag GmbH
* author Nguyen Minh Tien - minh-tien.nguyen@imag.fr
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -14,14 +15,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package
scigenchecker_local
;
import
Checker.Classifier
;
import
Checker.DistantCalculator
;
import
Checker.Indexer
;
import
Checker.Reader
;
import
Logger.Log
;
import
TextExtractor.pdfextractor
;
package
fr.imag.Scidetect.
scigenchecker_local
;
import
fr.imag.Scidetect.
Checker.Classifier
;
import
fr.imag.Scidetect.
Checker.DistantCalculator
;
import
fr.imag.Scidetect.
Checker.Indexer
;
import
fr.imag.Scidetect.
Checker.Reader
;
import
fr.imag.Scidetect.
Logger.Log
;
import
fr.imag.Scidetect.
TextExtractor.pdfextractor
;
import
java.io.BufferedReader
;
import
java.io.File
;
import
java.io.FileNotFoundException
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment