From kato-commits-return-723-apmail-incubator-kato-commits-archive=incubator.apache.org@incubator.apache.org Wed Nov 04 10:52:59 2009 Return-Path: Delivered-To: apmail-incubator-kato-commits-archive@minotaur.apache.org Received: (qmail 86945 invoked from network); 4 Nov 2009 10:52:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Nov 2009 10:52:59 -0000 Received: (qmail 87863 invoked by uid 500); 4 Nov 2009 10:52:59 -0000 Delivered-To: apmail-incubator-kato-commits-archive@incubator.apache.org Received: (qmail 87841 invoked by uid 500); 4 Nov 2009 10:52:59 -0000 Mailing-List: contact kato-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: kato-dev@incubator.apache.org Delivered-To: mailing list kato-commits@incubator.apache.org Received: (qmail 87830 invoked by uid 99); 4 Nov 2009 10:52:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Nov 2009 10:52:59 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Nov 2009 10:52:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D4B8F23888A6; Wed, 4 Nov 2009 10:51:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r832705 - in /incubator/kato/trunk/org.apache.kato/kato.distro/src/main: assembly/bindist.xml scripts/katoview.sh Date: Wed, 04 Nov 2009 10:51:54 -0000 To: kato-commits@incubator.apache.org From: monteith@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091104105155.D4B8F23888A6@eris.apache.org> Author: monteith Date: Wed Nov 4 10:51:52 2009 New Revision: 832705 URL: http://svn.apache.org/viewvc?rev=832705&view=rev Log: Create katoview.sh script. Modified: incubator/kato/trunk/org.apache.kato/kato.distro/src/main/assembly/bindist.xml incubator/kato/trunk/org.apache.kato/kato.distro/src/main/scripts/katoview.sh Modified: incubator/kato/trunk/org.apache.kato/kato.distro/src/main/assembly/bindist.xml URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.distro/src/main/assembly/bindist.xml?rev=832705&r1=832704&r2=832705&view=diff ============================================================================== --- incubator/kato/trunk/org.apache.kato/kato.distro/src/main/assembly/bindist.xml (original) +++ incubator/kato/trunk/org.apache.kato/kato.distro/src/main/assembly/bindist.xml Wed Nov 4 10:51:52 2009 @@ -1,4 +1,23 @@ + bin @@ -7,14 +26,32 @@ kato-${project.version} + + src/main/readme/ / + + src/main/scripts/ - / + /bin + 755 + true + + .. / @@ -23,11 +60,31 @@ NOTICE LICENSE + 644 + + + + + + ../kato.docs/target/docbkx/pdf/spec.pdf + docs + 644 + + + + - jars + lib kato* common* Modified: incubator/kato/trunk/org.apache.kato/kato.distro/src/main/scripts/katoview.sh URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.distro/src/main/scripts/katoview.sh?rev=832705&r1=832704&r2=832705&view=diff ============================================================================== --- incubator/kato/trunk/org.apache.kato/kato.distro/src/main/scripts/katoview.sh (original) +++ incubator/kato/trunk/org.apache.kato/kato.distro/src/main/scripts/katoview.sh Wed Nov 4 10:51:52 2009 @@ -0,0 +1,31 @@ +#!/bin/sh +# +########################################################################## +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +########################################################################## +# +# KatoView Launcher script +# Requires JAVA_HOME to be set to the location of an installed JDK. +# +# Usage: +# katoview.sh [ -verbose ] -core +# +# +DIR=`dirname $0` +JARS=$DIR/../lib + +$JAVA_HOME/jre/bin/java -classpath $JARS/kato.api-${project.version}.jar:$JARS/kato.cjvmti-${project.version}.jar:$JARS/kato.tools.katoview-${project.version}.jar:$JARS/kato.hprof.api-${project.version}.jar:$JARS/kato.hprof.reader-${project.version}.jar \ +org.apache.kato.katoview.KatoView $@ +