about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Completion/Unix/Command/.distfiles2
-rw-r--r--Completion/Unix/Command/_elinks2
-rw-r--r--Completion/Unix/Command/_php37
4 files changed, 45 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a8dba538..f886927fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-17  Doug Kearns  <djkea2@mugca.its.monash.edu.au>
+
+	* 19775: Completion/Unix/Command/_php: new completion for php
+	* unposted: Completion/Unix/Commmand/_elinks: declare and initialise
+	return value parameter
+
 2004-04-15  Peter Stephenson  <pws@csr.com>
 
 	* see 19778 etc.: Doc/Makefile.in: remove change from 19735.
diff --git a/Completion/Unix/Command/.distfiles b/Completion/Unix/Command/.distfiles
index 1f9b62b7d..da26b0a63 100644
--- a/Completion/Unix/Command/.distfiles
+++ b/Completion/Unix/Command/.distfiles
@@ -23,6 +23,6 @@ _chmod        _du           _ecasound
 _getent       _global       _gpg          _gphoto2      _less         _lsof
 _mt           _mtr          _nice         _nmap
 _perforce     _printenv     _python       _raggle       _rar	      _renice
-_sablotron    _screen       _sed          _subversion   _tla
+_sablotron    _screen       _sed          _subversion   _tla          _php
 _uniq         _vorbis       _vux          _wiggle       _xmlsoft
 '
diff --git a/Completion/Unix/Command/_elinks b/Completion/Unix/Command/_elinks
index ceb851db6..53e7b8ac8 100644
--- a/Completion/Unix/Command/_elinks
+++ b/Completion/Unix/Command/_elinks
@@ -2,7 +2,7 @@
 
 # ELinks 0.9.0 - Text WWW browser
 
-local curcontext="$curcontext" state line
+local curcontext="$curcontext" state line ret=1
 typeset -A opt_args
 
 _arguments -C -A '-*' \
diff --git a/Completion/Unix/Command/_php b/Completion/Unix/Command/_php
new file mode 100644
index 000000000..e2fa5d174
--- /dev/null
+++ b/Completion/Unix/Command/_php
@@ -0,0 +1,37 @@
+#compdef php
+
+# PHP 4.3.6RC2 (cli) (built: Apr  9 2004 00:14:04)
+
+local curcontext="$curcontext" line state
+typeset -A opt_args
+
+_arguments -S \
+  {-a,--interactive}'[run interactively]' \
+  {-c,--php-ini}'[look for php.ini file in the specified directory]:directory:_files -/' \
+  {-n,--no-php-ini}'[no php.ini file will be used]' \
+  {-d,--define}"[define INI entry]:configuration directive:->ini" \
+  {-e,--profile-info}'[generate extended information for debugger/profiler]' \
+  '(- *)'{-h,--help}'[display help information]' \
+  '(- *)'{-i,--info}'[PHP information]' \
+  '(-)'{-l,--syntax-check}'[syntax check only (lint)]' \
+  '(- *)'{-m,--modules}'[show compiled in modules]' \
+  '(1 -l --syntax-check -s --syntax-highlight -w --strip)'{-r,--run}'[run the specified PHP code without using script tags <?..?>]:PHP code:'\
+  '(-)'{-s,--syntax-highlight}'[display colour syntax highlighted source]' \
+  '(- *)'{-v,--version}'[display version information]' \
+  '(-)'{-w,--strip}'[display source with stripped comments and whitespace]' \
+  {-z,--zend-extension}'[load specified Zend extension]:extension file:_files' \
+  '(-)1:PHP file:_files -g "*.php(-.)"' \
+  '*:script argument:_files' && return
+
+case $state in
+  ini)
+    if compset -P '*='; then
+      _default
+    else
+      _message -e configuration-directives 'configuration directive'
+    fi
+    ;;
+esac
+
+return 1
+