Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 45881189E5 for ; Thu, 11 Feb 2016 16:48:36 +0000 (UTC) Received: (qmail 30637 invoked by uid 500); 11 Feb 2016 16:48:35 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 30598 invoked by uid 500); 11 Feb 2016 16:48:35 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Delivered-To: moderator for users@subversion.apache.org Received: (qmail 37163 invoked by uid 99); 11 Feb 2016 16:27:30 -0000 X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.821 X-Spam-Level: X-Spam-Status: No, score=-0.821 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled Authentication-Results: spamd1-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:references:to:from:message-id:date:user-agent:mime-version :in-reply-to:content-type:content-transfer-encoding; bh=Pk9Xwp97f76w5dj/I/rVTAWjcrglDD8dMSJARq40k5M=; b=nZdEBOYnIFzkF8EOMtL0qtEgy51wGEXazr6KCBwcS9BTOMmiDtHs2HVVY3s4+q1EsF YxCLFk4QY5FP1JOIAK1z68p08SDMyla19XspLkkmMFpv3I8yYgbHzvugwWHX7uiS+MbB ceVk3oo+VrcnQxCl4TpQgDsPnwyxQ3gtSP6OKB8+eK3nIdbz2ASrRC43llVUDj+22lzp +A3LVysT8vRLhotGf393jcvsbFHVFfqtthqV88iu23DySkiHBDkoWRMNK8XMl7rgXCfE fJ1ESOd5Is+/b+e+qtpqiur9TgUFi4wjVJ+ZlLCy52gnE2BDYR+thr/nIaL4T5+L0XBe PS3w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=Pk9Xwp97f76w5dj/I/rVTAWjcrglDD8dMSJARq40k5M=; b=gp/XC1B2P9ZGK8UHfpKB8HISy9pwss36rTOV7c2hgm0/83KVayFc1TktWVNMDGbIIM +0PIvTAoIPambFlbbD+uX17H/kN9PvyoHa5mjaAwp4DbTt6CT0VnPZK6qBcne6UWkbbm 4yBO2h5daJS5gAGo2Il+BAZmwXy2iQyV+LLblt9NCnNYgCBtfqSabCFhEu0aA0kSeYUk j66GgI4DxQwngHIK2KftepM83uXK8DfTMbv7DbyeXptiAfyRxKeraKhVwF5WBey+5Azj eqRKq4wTjLCi+0peTr9yQDuXeMqggjDEgDliY/YXtYns+t43z7t62VKysdOh24hGYzhy 5x0w== X-Gm-Message-State: AG10YORkYMJ8PgtM4L6B0tYIRQwmmgxT9onE3FpbXv4zzoow6cxvarNM5y8K4aYJ1SHs1Q== X-Received: by 10.194.158.100 with SMTP id wt4mr12467978wjb.43.1455208047892; Thu, 11 Feb 2016 08:27:27 -0800 (PST) Subject: Help extending subclipse References: <56BCA5F6.8040907@gmail.com> To: users@subversion.apache.org From: Brunoais X-Forwarded-Message-Id: <56BCA5F6.8040907@gmail.com> Message-ID: <56BCB663.8090106@gmail.com> Date: Thu, 11 Feb 2016 16:27:15 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: <56BCA5F6.8040907@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi, I want to make a plugin to the subclipse. Broadly speaking, it would work like this: When the commit dialog appears, below the "", I want to add a file browser window that allows to choose a file location in the filesystem. For that file, I want to create a listing (full file path) of all the files that are being committed (additions, editions and deletions). That record is made only when the commit is issued, no need to do it before that. I also want to associate the file to where it is stored and the message written in the commit messages list, but that's for later. For starters, I need to know to which extension points should I attach my code to and which dependencies will my code need. Are you able to help me? Anything is welcome. Thanks in advance