From commits-return-10124-apmail-activemq-commits-archive=activemq.apache.org@activemq.apache.org Thu Feb 05 12:13:45 2009 Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 2058 invoked from network); 5 Feb 2009 12:13:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2009 12:13:44 -0000 Received: (qmail 22781 invoked by uid 500); 5 Feb 2009 12:13:44 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 22755 invoked by uid 500); 5 Feb 2009 12:13:44 -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 22746 invoked by uid 99); 5 Feb 2009 12:13:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 04:13:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Thu, 05 Feb 2009 12:13:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EE256238896B; Thu, 5 Feb 2009 12:13:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741086 - in /activemq/scripts: copy_released_xsd.py copy_snapshot_xsd.py Date: Thu, 05 Feb 2009 12:13:21 -0000 To: commits@activemq.apache.org From: hadrian@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090205121321.EE256238896B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hadrian Date: Thu Feb 5 12:13:20 2009 New Revision: 741086 URL: http://svn.apache.org/viewvc?rev=741086&view=rev Log: Remove permission setting altogether. Modified: activemq/scripts/copy_released_xsd.py activemq/scripts/copy_snapshot_xsd.py Modified: activemq/scripts/copy_released_xsd.py URL: http://svn.apache.org/viewvc/activemq/scripts/copy_released_xsd.py?rev=741086&r1=741085&r2=741086&view=diff ============================================================================== --- activemq/scripts/copy_released_xsd.py (original) +++ activemq/scripts/copy_released_xsd.py Thu Feb 5 12:13:20 2009 @@ -31,7 +31,6 @@ destfile = os.path.join(root, target) shutil.copyfile(srcfile,destfile) - os.chmod(destfile, 0664) def main(): if len(sys.argv) < 3: Modified: activemq/scripts/copy_snapshot_xsd.py URL: http://svn.apache.org/viewvc/activemq/scripts/copy_snapshot_xsd.py?rev=741086&r1=741085&r2=741086&view=diff ============================================================================== --- activemq/scripts/copy_snapshot_xsd.py (original) +++ activemq/scripts/copy_snapshot_xsd.py Thu Feb 5 12:13:20 2009 @@ -29,7 +29,6 @@ srcfile= os.path.join(root,filename) destfile = os.path.join(dest,'-'.join(list)) shutil.copyfile(srcfile,destfile) - os.chmod(destfile, 0664) def main():