Changeset 23703 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-10-19T14:29:25+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/pdfimport
- Files:
-
- 351 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pdfimport/build.xml
r23702 r23703 2 2 <!-- 3 3 ** This is the build file for the pdfimport plugin. 4 ** Same as build.xml, but uses local version of pdfclown 4 5 ** 5 6 ** Maintaining versions … … 32 33 33 34 <!-- enter the SVN commit message --> 34 <property name="commit.message" value=" adapt to latest josm" />35 <property name="commit.message" value="Initial pdfimport version" /> 35 36 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 36 <property name="plugin.main.version" value="3 348" />37 <property name="plugin.main.version" value="3592" /> 37 38 38 39 … … 44 45 <property name="plugin.dist.dir" value="../../dist" /> 45 46 <property name="plugin.name" value="${ant.project.name}" /> 46 <property name="libpdfclown" value="lib/PDFClown.jar"/>47 47 <property name="plugin.jar" value="${plugin.dist.dir}/${plugin.name}.jar" /> 48 48 … … 62 62 <echo message="creating ${plugin.jar}" /> 63 63 <javac srcdir="src" target="1.5" destdir="build" debug="true"> 64 <include name=" pdfimport/**/*.java" />64 <include name="**/*.java" /> 65 65 <classpath> 66 66 <pathelement location="${josm}"/> 67 <pathelement location="${libpdfclown}"/>68 67 </classpath> 69 68 </javac> … … 82 81 83 82 <target name="dist" depends="compile,revision"> 84 <unjar dest="${plugin.build.dir}" src="${libpdfclown}"/>85 83 <copy todir="${plugin.build.dir}/images"> 86 84 <fileset dir="images" /> 87 85 </copy> 86 88 87 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 89 88 <manifest> 90 <attribute name="Author" value=" Viesturs" />89 <attribute name="Author" value="extropy" /> 91 90 <attribute name="Plugin-Class" value="pdfimport.PdfImportPlugin" /> 92 <attribute name="Plugin-Description" value="Import PDF file s and convert to shapes." />91 <attribute name="Plugin-Description" value="Import PDF file and convert to ways." /> 93 92 <attribute name="Plugin-Icon" value="images/pdf_import.png"/> 94 93 <attribute name="Plugin-Version" value="${version.entry.commit.revision}" /> -
applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java
r23702 r23703 226 226 227 227 this.loadFileButton.setEnabled(false); 228 this.loadFileButton.setText(tr("L ading..."));228 this.loadFileButton.setText(tr("Loading...")); 229 229 230 230
Note:
See TracChangeset
for help on using the changeset viewer.