From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10362 invoked from network); 16 Feb 2003 06:29:40 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 16 Feb 2003 06:29:40 -0000 Received: (qmail 29510 invoked by alias); 16 Feb 2003 06:29:30 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 18246 Received: (qmail 29503 invoked from network); 16 Feb 2003 06:29:29 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 16 Feb 2003 06:29:29 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [203.109.249.144] by sunsite.dk (MessageWall 1.0.8) with SMTP; 16 Feb 2003 6:29:28 -0000 Received: from p85-tnt4.syd.ihug.com.au (localhost.localdomain) [203.173.134.85] by grunt24.ihug.com.au with esmtp (Exim 3.35 #1 (Debian)) id 18kIIr-000178-00; Sun, 16 Feb 2003 17:29:29 +1100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.5/8.12.5) with ESMTP id h1G6nRY3026803 for ; Sun, 16 Feb 2003 17:49:28 +1100 Received: (from doug@localhost) by localhost.localdomain (8.12.5/8.12.5/Submit) id h1G6nQiL026801 for zsh-workers@sunsite.dk; Sun, 16 Feb 2003 17:49:26 +1100 X-Authentication-Warning: localhost.localdomain: doug set sender to djkea2@mugca.its.monash.edu.au using -f Date: Sun, 16 Feb 2003 17:49:25 +1100 From: Doug Kearns To: zsh-workers@sunsite.dk Subject: PATCH: elinks completion update Message-ID: <20030216064925.GC16306@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Here's a minor update of _elinks for elinks version 0.4.2 and a couple of trivial fixes for _ant and _java. Regards, Doug Index: Completion/Unix/Command/_ant =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_ant,v retrieving revision 1.4 diff -u -r1.4 _ant --- Completion/Unix/Command/_ant 7 Jan 2003 08:49:53 -0000 1.4 +++ Completion/Unix/Command/_ant 16 Feb 2003 06:26:58 -0000 @@ -15,7 +15,7 @@ _arguments -C \ '-help[display usage information]' \ - '-projecthelp[print project hjelp information]' \ + '-projecthelp[print project help information]' \ '-version[display version information]' \ '-diagnostics[display info useful to problem diagnosis]' \ '(-q -quiet)'{-q,-quiet}'[be extra quiet]' \ Index: Completion/Unix/Command/_elinks =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_elinks,v retrieving revision 1.1 diff -u -r1.1 _elinks --- Completion/Unix/Command/_elinks 27 Jan 2003 10:35:47 -0000 1.1 +++ Completion/Unix/Command/_elinks 16 Feb 2003 06:26:59 -0000 @@ -1,15 +1,16 @@ #compdef elinks -# ELinks 0.4.1 - Text WWW browser +# ELinks 0.4.2 - Text WWW browser local curcontext="$curcontext" state line typeset -A opt_args _arguments -C -A '-*' \ - '*-anonymous[Restrict to anonymous mode]:boolean:(0 1)' \ - '*-auto-submit[Autosubmit first form]:boolean:(0 1)' \ + '*-anonymous[Restrict to anonymous mode]::boolean:(0 1)' \ + '*-auto-submit[Autosubmit first form]::boolean:(0 1)' \ '*-base-session[Clone session with given ID]:ID number:' \ - '*-dump[Write formatted version of given URL to stdout]:boolean:(0 1)' \ + '*-default-mime-type[MIME type to assume for documents]:MIME type:' \ + '*-dump[Write formatted version of given URL to stdout]::boolean:(0 1)' \ '*-dump-charset[Codepage to use with -dump]:codepage:' \ '*-dump-width[Width of document formatted with -dump]:width:' \ '*-eval[Evaluate given configuration option]:configuration option:' \ @@ -17,12 +18,12 @@ '(- 1)-long-help[Print detailed usage help and exit]' \ '(- 1)-config-help[Print help for configuration options]' \ '(- 1)-lookup[Look up specified host]:host:_hosts' \ - '*-no-connect[Run as separate instance]:boolean:(0 1)' \ - '*-no-home[Don'"'"'t use files in ~/.elinks]:boolean:(0 1)' \ + '*-no-connect[Run as separate instance]::boolean:(0 1)' \ + '*-no-home[Don'"'"'t use files in ~/.elinks]::boolean:(0 1)' \ '*-session-ring[Connect to session ring with given ID]:ID number:' \ - '*-source[Write the source of given URL to stdout]:boolean:(0 1)' \ - '(1)*-stdin[Read document from stdin]:boolean:(0 1)' \ - '*-touch-files[Touch files in ~/.elinks when running with -no-connect/-session-ring]:boolean:(0 1)' \ + '*-source[Write the source of given URL to stdout]::boolean:(0 1)' \ + '(1)*-stdin[Read document from stdin]::boolean:(0 1)' \ + '*-touch-files[Touch files in ~/.elinks when running with -no-connect/-session-ring]::boolean:(0 1)' \ '(- 1)-version[Print version information and exit]' \ '1:url:->url' && return Index: Completion/Unix/Command/_java =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_java,v retrieving revision 1.8 diff -u -r1.8 _java --- Completion/Unix/Command/_java 24 Aug 2002 19:19:14 -0000 1.8 +++ Completion/Unix/Command/_java 16 Feb 2003 06:27:00 -0000 @@ -20,7 +20,7 @@ '-extdirs[specify directories for extensions]:extensions directories:->extdirs' \ '-d[specify destination directory]:directory:_files -/' \ '-encoding[specify character encoding for source files]:encoding:->encoding' \ - '-target[specify VM version]:release:(1.1 1.2)' \ + '-target[specify VM version]:release:(1.{1..4})' \ '*:java source file:_files -g \*.java' && return 0 ;;