Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 48822 invoked from network); 14 Jun 2007 14:46:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Jun 2007 14:46:15 -0000 Received: (qmail 86022 invoked by uid 500); 14 Jun 2007 14:45:55 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 85706 invoked by uid 500); 14 Jun 2007 14:45:51 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 85637 invoked by uid 99); 14 Jun 2007 14:45:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 07:45:50 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 07:45:35 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C7E3E1A981A; Thu, 14 Jun 2007 07:45:06 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r547261 - /activemq/scripts/activemq-schema-copy.sh Date: Thu, 14 Jun 2007 14:45:06 -0000 To: commits@activemq.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070614144506.C7E3E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jstrachan Date: Thu Jun 14 07:45:06 2007 New Revision: 547261 URL: http://svn.apache.org/viewvc?view=rev&rev=547261 Log: Added a script to copy the deployed XSDs to a nicer URL tree Added: activemq/scripts/activemq-schema-copy.sh (with props) Added: activemq/scripts/activemq-schema-copy.sh URL: http://svn.apache.org/viewvc/activemq/scripts/activemq-schema-copy.sh?view=auto&rev=547261 ============================================================================== --- activemq/scripts/activemq-schema-copy.sh (added) +++ activemq/scripts/activemq-schema-copy.sh Thu Jun 14 07:45:06 2007 @@ -0,0 +1,26 @@ +#!/bin/bash + +SCHEMA_DIR=/tmp/schema/schema +SNAPSHOT_SCHEMA_DIR=/tmp/schema/snapshot-schema + +OUT_DIR=/tmp/schema/out + +mkdir -p $OUT_DIR/core +mkdir -p $OUT_DIR/ra +mkdir -p $OUT_DIR/jpa-store + +cp $SCHEMA_DIR/activemq-core* $OUT_DIR/core/ +cp $SCHEMA_DIR/*.html $OUT_DIR/core/ +cp $SNAPSHOT_SCHEMA_DIR/activemq-core* $OUT_DIR/core/ + +cp $SCHEMA_DIR/activemq-ra* $OUT_DIR/ra/ +cp $SCHEMA_DIR/*.html $OUT_DIR/ra/ +cp $SNAPSHOT_SCHEMA_DIR/activemq-ra* $OUT_DIR/ra/ + +cp $SCHEMA_DIR/activemq-jpa-store* $OUT_DIR/jpa-store/ +cp $SCHEMA_DIR/*.html $OUT_DIR/jpa-store/ +cp $SNAPSHOT_SCHEMA_DIR/activemq-jpa-store* $OUT_DIR/jpa-store/ + + + + \ No newline at end of file Propchange: activemq/scripts/activemq-schema-copy.sh ------------------------------------------------------------------------------ svn:eol-style = native Propchange: activemq/scripts/activemq-schema-copy.sh ------------------------------------------------------------------------------ svn:executable = *