Return-Path: X-Original-To: apmail-flex-dev-archive@www.apache.org Delivered-To: apmail-flex-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B9BAA1007D for ; Sun, 21 Apr 2013 17:17:01 +0000 (UTC) Received: (qmail 93072 invoked by uid 500); 21 Apr 2013 17:17:00 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 93049 invoked by uid 500); 21 Apr 2013 17:17:00 -0000 Mailing-List: contact dev-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list dev@flex.apache.org Received: (qmail 93038 invoked by uid 99); 21 Apr 2013 17:17:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Apr 2013 17:17:00 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of webdoublefx@hotmail.com designates 157.55.2.95 as permitted sender) Received: from [157.55.2.95] (HELO dub0-omc4-s20.dub0.hotmail.com) (157.55.2.95) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Apr 2013 17:16:53 +0000 Received: from DUB118-DS12 ([157.55.2.73]) by dub0-omc4-s20.dub0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Sun, 21 Apr 2013 10:16:32 -0700 X-EIP: [OBIw0limhgVbVlLb3dv1f7w3ybK/dhcq] X-Originating-Email: [webdoublefx@hotmail.com] Message-ID: From: =?iso-8859-1?Q?Fr=E9d=E9ric_THOMAS?= To: References: In-Reply-To: Subject: Re: Been out of the loop -- looking to catch up Date: Sun, 21 Apr 2013 19:16:29 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Mailer: Microsoft Windows Live Mail 16.4.3505.912 X-MimeOLE: Produced By Microsoft MimeOLE V16.4.3505.912 X-OriginalArrivalTime: 21 Apr 2013 17:16:32.0524 (UTC) FILETIME=[F83E8CC0:01CE3EB3] X-Virus-Checked: Checked by ClamAV on apache.org To be more precise, the result of this git command gives, for the 2 first chars, the status of the index and the working copy changes/add/remove of the files, for that reason, it has to cleaned up of this extra info before to be used by the chooser, or, the other option it to make the chooser compatible making it accepting both format. Update: I just had a look at the code: var files:Array = statusLog.text.split("\n"); var modFiles:Array = []; for (var i:int = 0; i < n; i++) { var file:String = files[i]; if (file.charAt(0) == "M") { modFiles.push(file); } } So, apparently, it uses only the modified files, so, the git command should be git status -s | grep "^[ M]" The code could be left trimmed on the 2 first chars of the line before: if (file.charAt(0) == "M") -Fred -----Message d'origine----- From: Nicholas Kwiatkowski Sent: Sunday, April 21, 2013 6:01 PM To: dev@flex.apache.org Subject: Re: Been out of the loop -- looking to catch up On Sun, Apr 21, 2013 at 10:38 AM, Fr�d�ric THOMAS wrote: > ok, did you compile the all test at least once and ran mustella db ? > Yes. I have been able to use the tool successfully before the move to SVN. > one more point, if there is a space as a first char of the output lines, > they should be remove before you can use them as the chooser input. > > I will check on that. That may be the problem (other than the change from SVN to GIT, I'm now using gitbash instead of cygwin. I've noticed that copy/paste is a bit wonky under gitbash which may be adding to the issues).