Changeset 32520 in osm for applications/editors/josm/plugins/pdfimport
- Timestamp:
 - 2016-07-02T01:23:20+02:00 (9 years ago)
 - Location:
 - applications/editors/josm/plugins/pdfimport
 - Files:
 - 
      
- 3 added
 - 3 deleted
 - 5 edited
 
- 
          
  .classpath (modified) (1 diff)
 - 
          
  README (modified) (3 diffs)
 - 
          
  lib/fontbox-1.8.11.jar (deleted)
 - 
          
  lib/fontbox-1.8.12.jar (added)
 - 
          
  lib/jempbox-1.8.11.jar (deleted)
 - 
          
  lib/jempbox-1.8.12.jar (added)
 - 
          
  lib/pdfbox-1.8.11.jar (deleted)
 - 
          
  lib/pdfbox-1.8.12.jar (added)
 - 
          
  src/pdfimport/pdfbox/operators/CloseFillEvenOddAndStrokePath.java (modified) (2 diffs)
 - 
          
  src/pdfimport/pdfbox/operators/FillEvenOddAndStrokePath.java (modified) (2 diffs)
 - 
          
  src/pdfimport/pdfbox/operators/FillNonZeroAndStrokePath.java (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
applications/editors/josm/plugins/pdfimport/.classpath
r32019 r32520 5 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> 6 6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 7 <classpathentry exported="true"kind="lib" path="lib/fontbox-1.8.11.jar"/>8 <classpathentry exported="true"kind="lib" path="lib/jempbox-1.8.11.jar"/>9 <classpathentry exported="true"kind="lib" path="lib/pdfbox-1.8.11.jar"/>7 <classpathentry kind="lib" path="lib/fontbox-1.8.12.jar"/> 8 <classpathentry kind="lib" path="lib/jempbox-1.8.12.jar"/> 9 <classpathentry kind="lib" path="lib/pdfbox-1.8.12.jar"/> 10 10 <classpathentry kind="output" path="bin"/> 11 11 </classpath>  - 
      
applications/editors/josm/plugins/pdfimport/README
r23702 r32520 5 5 Generally useful if you have a map in PDF file and want to automate data extraction. 6 6 This plugin is available under the GPL licence (version 2.0 or later). 7 Uses PDF Clownlibrary to parse PDF files, see http://sourceforge.net/projects/clown/for more info.7 Uses PDFBox library to parse PDF files, see https://pdfbox.apache.org for more info. 8 8 9 9 … … 18 18 GPL-v2.0.txt GPL version 2 license text 19 19 GPL-v3.0.txt GPL version 3 license text 20 build.xml deployment build file 21 build-dev.xml vevelopment build file - uses local version of PDFClown 22 20 build.xml deployment build file 21 23 22 24 23 Build … … 75 74 * List of JOSM Plugins 76 75 http://josm.openstreetmap.de/wiki/Plugins 77 78 79 80 81 82  - 
      
applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/CloseFillEvenOddAndStrokePath.java
r23991 r32520 23 23 import org.apache.pdfbox.cos.COSBase; 24 24 import org.apache.pdfbox.util.PDFOperator; 25 import org.apache.pdfbox.util.operator.OperatorProcessor; 25 26 26 27 import pdfimport.pdfbox.PageDrawer; … … 32 33 * @version $Revision: 1.0 $ 33 34 */ 34 public class CloseFillEvenOddAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor35 public class CloseFillEvenOddAndStrokePath extends OperatorProcessor 35 36 { 36 37  - 
      
applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/FillEvenOddAndStrokePath.java
r23991 r32520 23 23 import org.apache.pdfbox.cos.COSBase; 24 24 import org.apache.pdfbox.util.PDFOperator; 25 import org.apache.pdfbox.util.operator.OperatorProcessor; 25 26 26 27 import pdfimport.pdfbox.PageDrawer; … … 32 33 * @version $Revision: 101 $ 33 34 */ 34 public class FillEvenOddAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor35 public class FillEvenOddAndStrokePath extends OperatorProcessor 35 36 { 36 37  - 
      
applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/FillNonZeroAndStrokePath.java
r23991 r32520 23 23 import org.apache.pdfbox.cos.COSBase; 24 24 import org.apache.pdfbox.util.PDFOperator; 25 import org.apache.pdfbox.util.operator.OperatorProcessor; 25 26 26 27 import pdfimport.pdfbox.PageDrawer; … … 32 33 * @version $Revision: 1.1 $ 33 34 */ 34 public class FillNonZeroAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor35 public class FillNonZeroAndStrokePath extends OperatorProcessor 35 36 { 36 37  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  