From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6990 invoked by alias); 1 Nov 2007 19:49:25 -0000 Received: (qmail 6937 invoked by uid 367); 1 Nov 2007 19:49:25 -0000 Date: Thu, 01 Nov 2007 19:49:00 -0000 Message-ID: <20071101194924.6920.qmail@sourceware.org> From: cagney@sourceware.org To: frysk-cvs@sourceware.org Subject: [SCM] frysk system monitor/debugger branch, master, updated. 3d06c438b3071f125a4e192fce6d528bead30355 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5ab75e3e321494d854b608c9a49b35d82b83b0ff X-Git-Newrev: 3d06c438b3071f125a4e192fce6d528bead30355 Mailing-List: contact frysk-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-cvs-owner@sourceware.org Reply-To: frysk@sourceware.org X-SW-Source: 2007-q4/txt/msg00282.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "frysk system monitor/debugger". The branch, master has been updated via 3d06c438b3071f125a4e192fce6d528bead30355 (commit) via 6fd3991b4c18ac81d18ec1ba2a1124bde681af46 (commit) via 09e617df1bc6166deccb40f198957b50c3bfff16 (commit) via c95850d3c1a85617bff5fa0a2e33c669017fc429 (commit) via 7180467e5f5bf8d92d60b1410301f9b441356a54 (commit) from 5ab75e3e321494d854b608c9a49b35d82b83b0ff (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3d06c438b3071f125a4e192fce6d528bead30355 Author: Andrew Cagney Date: Thu Nov 1 15:32:36 2007 -0400 Refactor completers to be per-command. frysk-core/frysk/hpd/ChangeLog 2007-11-01 Andrew Cagney * CompletionFactory.java: New. * PrintCommand.java (complete(CLI,Input,int,List)): New. * Command.java (complete(CLI,Input,int,List)): New. * MultiLevelCommand.java (complete(CLI,Input,int,List)): New. * CLI.java (complete(CLI,Input,int,List)): Call topLevelCommand.complete(CLI,Input,int,List). commit 6fd3991b4c18ac81d18ec1ba2a1124bde681af46 Author: Andrew Cagney Date: Thu Nov 1 12:10:28 2007 -0400 Add a completer factory. * CompleterFactory.java: New. * PrintCommand.java (complete(CLI,Input,int,List)): New. commit 09e617df1bc6166deccb40f198957b50c3bfff16 Author: Andrew Cagney Date: Wed Oct 31 23:01:51 2007 -0400 Move completer to Command class. 2007-10-31 Andrew Cagney * Command.java (complete(CLI,Input,int,List)): New. * MultiLevelCommand.java (complete(CLI,Input,int,List)): New. * CLI.java (complete(CLI,Input,int,List)): Call topLevelCommand.complete(CLI,Input,int,List). commit c95850d3c1a85617bff5fa0a2e33c669017fc429 Author: Andrew Cagney Date: Wed Oct 31 17:53:57 2007 -0400 Stub addition of token location to Input. commit 7180467e5f5bf8d92d60b1410301f9b441356a54 Author: Andrew Cagney Date: Tue Oct 30 12:30:25 2007 -0400 frysk-core/frysk/hpd/ChangeLog 2007-10-30 Andrew Cagney * Command.java (complete(CLI,Input,int,List)): New. * MultiLevelCommand.java (complete(CLI,Input,int,List)): New. * CLI.java (complete(CLI,Input,int,List)): Call topLevelCommand.complete(CLI,Input,int,List). ----------------------------------------------------------------------- Summary of changes: frysk-core/frysk/hpd/CLI.java | 42 ++------------ frysk-core/frysk/hpd/ChangeLog | 9 +++- frysk-core/frysk/hpd/Command.java | 16 ++++++ ...ebuginfoCommand.java => CompletionFactory.java} | 58 +++++++++++++------- frysk-core/frysk/hpd/Input.java | 5 ++- frysk-core/frysk/hpd/MultiLevelCommand.java | 48 ++++++++++++++--- frysk-core/frysk/hpd/PrintCommand.java | 6 ++ 7 files changed, 119 insertions(+), 65 deletions(-) copy frysk-core/frysk/hpd/{DebuginfoCommand.java => CompletionFactory.java} (65%) hooks/post-receive -- frysk system monitor/debugger