2006-05-02 09:31:56 +08:00
|
|
|
# #########################################################################
|
|
|
|
# This bash script adds tab-completion feature to django-admin.py and
|
|
|
|
# manage.py.
|
|
|
|
#
|
|
|
|
# Testing it out without installing
|
|
|
|
# =================================
|
|
|
|
#
|
|
|
|
# To test out the completion without "installing" this, just run this file
|
|
|
|
# directly, like so:
|
|
|
|
#
|
|
|
|
# . ~/path/to/django_bash_completion
|
|
|
|
#
|
|
|
|
# Note: There's a dot ('.') at the beginning of that command.
|
|
|
|
#
|
|
|
|
# After you do that, tab completion will immediately be made available in your
|
|
|
|
# current Bash shell. But it won't be available next time you log in.
|
|
|
|
#
|
|
|
|
# Installing
|
|
|
|
# ==========
|
|
|
|
#
|
|
|
|
# To install this, point to this file from your .bash_profile, like so:
|
|
|
|
#
|
|
|
|
# . ~/path/to/django_bash_completion
|
|
|
|
#
|
|
|
|
# Do the same in your .bashrc if .bashrc doesn't invoke .bash_profile.
|
|
|
|
#
|
|
|
|
# Settings will take effect the next time you log in.
|
|
|
|
#
|
|
|
|
# Uninstalling
|
|
|
|
# ============
|
|
|
|
#
|
|
|
|
# To uninstall, just remove the line from your .bash_profile and .bashrc.
|
|
|
|
|
2007-02-28 23:39:53 +08:00
|
|
|
# Enable extended pattern matching operators.
|
|
|
|
shopt -s extglob
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
_django_completion()
|
|
|
|
{
|
2006-06-21 19:15:01 +08:00
|
|
|
local cur prev opts actions action_shell_opts action_runfcgi_opts
|
2006-05-02 09:31:56 +08:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
|
|
|
|
# Standalone options
|
2007-05-15 19:39:00 +08:00
|
|
|
opts="--help --settings --pythonpath --noinput --noreload --format --indent --verbosity --adminmedia --version"
|
2006-05-02 09:31:56 +08:00
|
|
|
# Actions
|
|
|
|
actions="adminindex createcachetable dbshell diffsettings \
|
2007-05-15 19:39:00 +08:00
|
|
|
dumpdata flush inspectdb loaddata reset runfcgi runserver \
|
|
|
|
shell sql sqlall sqlclear sqlcustom sqlflush sqlindexes \
|
2006-05-02 09:31:56 +08:00
|
|
|
sqlreset sqlsequencereset startapp startproject \
|
2007-05-15 19:39:00 +08:00
|
|
|
syncdb test validate"
|
2006-05-02 09:31:56 +08:00
|
|
|
# Action's options
|
|
|
|
action_shell_opts="--plain"
|
2006-06-21 19:15:01 +08:00
|
|
|
action_runfcgi_opts="host port socket method maxspare minspare maxchildren daemonize pidfile workdir"
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
if [[ # django-admin.py, ./manage, manage.py
|
|
|
|
( ${COMP_CWORD} -eq 1 &&
|
|
|
|
( ${COMP_WORDS[0]} == django-admin.py ||
|
|
|
|
${COMP_WORDS[0]} == ./manage.py ||
|
|
|
|
${COMP_WORDS[0]} == manage.py ) )
|
|
|
|
||
|
|
|
|
# python manage.py, /some/path/python manage.py (if manage.py exists)
|
|
|
|
( ${COMP_CWORD} -eq 2 &&
|
2008-02-26 03:38:09 +08:00
|
|
|
( $( basename -- ${COMP_WORDS[0]} ) == python?([1-9]\.[0-9]) ) &&
|
|
|
|
( $( basename -- ${COMP_WORDS[1]} ) == manage.py) &&
|
2007-02-28 23:39:53 +08:00
|
|
|
( -r ${COMP_WORDS[1]} ) )
|
|
|
|
||
|
|
|
|
( ${COMP_CWORD} -eq 2 &&
|
2008-02-26 03:38:09 +08:00
|
|
|
( $( basename -- ${COMP_WORDS[0]} ) == python?([1-9]\.[0-9]) ) &&
|
|
|
|
( $( basename -- ${COMP_WORDS[1]} ) == django-admin.py) &&
|
2006-05-02 09:31:56 +08:00
|
|
|
( -r ${COMP_WORDS[1]} ) ) ]] ; then
|
|
|
|
|
|
|
|
case ${cur} in
|
|
|
|
-*)
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
2006-06-21 19:15:01 +08:00
|
|
|
action=$COMPREPLY
|
2006-05-02 09:31:56 +08:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
COMPREPLY=( $(compgen -W "${actions}" -- ${cur}) )
|
2006-06-21 19:15:01 +08:00
|
|
|
action=$COMPREPLY
|
2006-05-02 09:31:56 +08:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
case ${prev} in
|
2007-05-15 19:39:00 +08:00
|
|
|
adminindex|dumpdata|reset| \
|
|
|
|
sql|sqlall|sqlclear|sqlcustom|sqlindexes| \
|
|
|
|
sqlreset|sqlsequencereset|test)
|
|
|
|
# App completion
|
|
|
|
settings=""
|
|
|
|
# If settings.py in the PWD, use that
|
|
|
|
if [ -e settings.py ] ; then
|
|
|
|
settings="$PWD/settings.py"
|
|
|
|
else
|
|
|
|
# Use the ENV variable if it is set
|
|
|
|
if [ $DJANGO_SETTINGS_MODULE ] ; then
|
|
|
|
settings=$DJANGO_SETTINGS_MODULE
|
|
|
|
fi
|
2007-02-26 00:33:39 +08:00
|
|
|
fi
|
2007-05-15 19:39:00 +08:00
|
|
|
# Couldn't find settings so return nothing
|
|
|
|
if [ -z $settings ] ; then
|
|
|
|
COMPREPLY=()
|
|
|
|
# Otherwise inspect settings.py file
|
|
|
|
else
|
|
|
|
apps=`sed -n "/INSTALLED_APPS = (/,/)/p" $settings | \
|
|
|
|
grep -v "django.contrib" |
|
|
|
|
sed -n "s/^[ ]*'\(.*\.\)*\(.*\)'.*$/\2 /pg" | \
|
|
|
|
tr -d "\n"`
|
|
|
|
COMPREPLY=( $(compgen -W "${apps}" -- ${cur}) )
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
;;
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
createcachetable|dbshell|diffsettings| \
|
|
|
|
inspectdb|runserver|startapp|startproject|syncdb| \
|
|
|
|
validate)
|
|
|
|
COMPREPLY=()
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
shell)
|
|
|
|
COMPREPLY=( $(compgen -W "$action_shell_opts" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
;;
|
2006-06-21 19:15:01 +08:00
|
|
|
runfcgi)
|
|
|
|
COMPREPLY=( $(compgen -W "$action_runfcgi_opts" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
host*|port*|socket*|method*|maxspare*|minspare*|maxchildren*|daemonize*|pidfile*|workdir*)
|
|
|
|
if [ "$action" == "runfcgi" ] ; then
|
|
|
|
COMPREPLY=( $(compgen -W "$action_runfcgi_opts" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
;;
|
2006-05-02 09:31:56 +08:00
|
|
|
*)
|
|
|
|
#COMPREPLY=( $(compgen -W "auth core" -- ${cur}) )
|
|
|
|
COMPREPLY=()
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _django_completion django-admin.py manage.py
|
2007-02-28 23:39:53 +08:00
|
|
|
|
|
|
|
# Support for multiple interpreters.
|
|
|
|
unset pythons
|
|
|
|
if command -v whereis &>/dev/null; then
|
2007-03-08 11:34:05 +08:00
|
|
|
python_interpreters=$(whereis python | cut -d " " -f 2-)
|
2007-02-28 23:39:53 +08:00
|
|
|
for python in $python_interpreters; do
|
2008-02-26 03:38:09 +08:00
|
|
|
pythons="${pythons} $(basename -- $python)"
|
2007-02-28 23:39:53 +08:00
|
|
|
done
|
|
|
|
pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ")
|
|
|
|
else
|
|
|
|
pythons=python
|
|
|
|
fi
|
|
|
|
|
|
|
|
complete -F _django_completion -o default $pythons
|