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

svn commit: r155955 - in xmlbeans/trunk/bin: random.cmd sfactor

Author: kkrouse
Date: Wed Mar  2 13:04:03 2005
New Revision: 155955

URL: http://svn.apache.org/viewcvs?view=rev&rev=155955
Log:
adding unix version of sfactor script
removing old random.cmd test script

Added:
    xmlbeans/trunk/bin/sfactor   (with props)
Removed:
    xmlbeans/trunk/bin/random.cmd

Added: xmlbeans/trunk/bin/sfactor
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sfactor?view=auto&rev=155955
==============================================================================
--- xmlbeans/trunk/bin/sfactor (added)
+++ xmlbeans/trunk/bin/sfactor Wed Mar  2 13:04:03 2005
@@ -0,0 +1,34 @@
+#!/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 Factoring tool
+##
+## Factors redundant definitions out of a set of schemas and 
+## uses imports instead.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar:$XMLBEANS_LIB/resolver.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.FactorImports $*
+

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



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