You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2019/10/26 06:49:41 UTC

svn commit: r1868987 - in /poi/trunk: BiffViewer.launch view.sh

Author: centic
Date: Sat Oct 26 06:49:41 2019
New Revision: 1868987

URL: http://svn.apache.org/viewvc?rev=1868987&view=rev
Log:
Add script to run BiffViewer
Set property to include escher-records in view.sh and add Launchconfig for BiffViewer

Added:
    poi/trunk/BiffViewer.launch
    poi/trunk/view.sh   (with props)

Added: poi/trunk/BiffViewer.launch
URL: http://svn.apache.org/viewvc/poi/trunk/BiffViewer.launch?rev=1868987&view=auto
==============================================================================
--- poi/trunk/BiffViewer.launch (added)
+++ poi/trunk/BiffViewer.launch Sat Oct 26 06:49:41 2019
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
+<listEntry value="/ApachePOI/src/java/org/apache/poi/hssf/dev/BiffViewer.java"/>
+</listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="1"/>
+</listAttribute>
+<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
+<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
+<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
+</listAttribute>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.apache.poi.hssf.dev.BiffViewer"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="/tmp/45312.xls"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="ApachePOI"/>
+</launchConfiguration>

Added: poi/trunk/view.sh
URL: http://svn.apache.org/viewvc/poi/trunk/view.sh?rev=1868987&view=auto
==============================================================================
--- poi/trunk/view.sh (added)
+++ poi/trunk/view.sh Sat Oct 26 06:49:41 2019
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# find jar-file with highest version number
+for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-examples" | grep -v -- "-excelant" | grep -v -- "-ooxml" | grep -v -- "-scratchpad"`;do
+	CP=$i
+done
+echo Using jar $CP
+
+java -cp $CP org.apache.poi.hssf.dev.BiffViewer --escher "$@"

Propchange: poi/trunk/view.sh
------------------------------------------------------------------------------
    svn:executable = *



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org