You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ra...@apache.org on 2005/03/22 21:09:14 UTC

svn commit: r158654 - xmlbeans/trunk/bin/sdownload

Author: radup
Date: Tue Mar 22 12:09:13 2005
New Revision: 158654

URL: http://svn.apache.org/viewcvs?view=rev&rev=158654
Log:
Added a Unix version of the sdownload script.

Added:
    xmlbeans/trunk/bin/sdownload   (with props)

Added: xmlbeans/trunk/bin/sdownload
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sdownload?view=auto&rev=158654
==============================================================================
--- xmlbeans/trunk/bin/sdownload (added)
+++ xmlbeans/trunk/bin/sdownload Tue Mar 22 12:09:13 2005
@@ -0,0 +1,31 @@
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  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.
+##
+
+#Schema downloader
+#Tool to download Schema files
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.tool.SchemaResourceManager $*

Propchange: xmlbeans/trunk/bin/sdownload
------------------------------------------------------------------------------
    svn:executable = *



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