123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- #compdef manage.py
- typeset -ga nul_args
- nul_args=(
- '--settings=-[the Python path to a settings module.]:file:_files'
- '--pythonpath=-[a directory to add to the Python path.]::directory:_directories'
- '--traceback[print traceback on exception.]'
- "--version[show program's version number and exit.]"
- {-h,--help}'[show this help message and exit.]'
- )
- _managepy-adminindex(){
- _arguments -s : \
- $nul_args \
- '*::directory:_directories' && ret=0
- }
- _managepy-createcachetable(){
- _arguments -s : \
- $nul_args && ret=0
- }
- _managepy-collectstatic(){
- _arguments -s : \
- '--link=-[Create a symbolic link to each file instead of copying.]:' \
- '--noinput=-[Do NOT prompt the user for input of any kind.]:' \
- '--no-post-process=-[Do NOT post process collected files.]:' \
- '--ignore=-[Ignore files or directories matching this glob-style pattern. Use multiple times to ignore more.]:' \
- '--dry-run=-[Do everything except modify the filesystem.]:' \
- '--clear=-[Clear the existing files using the storage before trying to copy or link the original file.]:' \
- '--link=-[Create a symbolic link to each file instead of copying.]:' \
- '--no-default-ignore=-[Do not ignore the common private glob-style patterns "CVS", ".*" and "*~".]:' \
- $nul_args && ret=0
- }
- _managepy-dbshell(){
- _arguments -s : \
- $nul_args && ret=0
- }
- _managepy-diffsettings(){
- _arguments -s : \
- $nul_args && ret=0
- }
- _managepy-dumpdata(){
- _arguments -s : \
- '--format=-[specifies the output serialization format for fixtures.]:format:(json yaml xml)' \
- '--indent=-[specifies the indent level to use when pretty-printing output.]:' \
- $nul_args \
- '*::appname:_applist' && ret=0
- }
- _managepy-flush(){
- _arguments -s : \
- '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
- '--noinput[tells Django to NOT prompt the user for input of any kind.]' \
- $nul_args && ret=0
- }
- _managepy-help(){
- _arguments -s : \
- '*:command:_managepy_cmds' \
- $nul_args && ret=0
- }
- _managepy_cmds(){
- local line
- local -a cmd
- _call_program help-command ./manage.py help \
- |& sed -n '/^ /s/[(), ]/ /gp' \
- | while read -A line; do cmd=($line $cmd) done
- _describe -t managepy-command 'manage.py command' cmd
- }
- _managepy-inspectdb(){
- _arguments -s : \
- $nul_args && ret=0
- }
- _managepy-loaddata(){
- _arguments -s : \
- '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
- '*::file:_files' \
- $nul_args && ret=0
- }
- _managepy-reset(){
- _arguments -s : \
- '--noinput[tells Django to NOT prompt the user for input of any kind.]' \
- '*::appname:_applist' \
- $nul_args && ret=0
- }
- _managepy-runfcgi(){
- local state
-
- local fcgi_opts
- fcgi_opts=(
- 'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)'
- 'host[hostname to listen on..]:'
- 'port[port to listen on.]:'
- 'socket[UNIX socket to listen on.]::file:_files'
- 'method[prefork or threaded (default prefork)]:method:(prefork threaded)'
- 'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:'
- 'maxspare[max number of spare processes / threads.]:'
- 'minspare[min number of spare processes / threads.]:'
- 'maxchildren[hard limit number of processes / threads.]:'
- 'daemonize[whether to detach from terminal.]:boolean:(False True)'
- 'pidfile[write the spawned process-id to this file.]:file:_files'
- 'workdir[change to this directory when daemonizing.]:directory:_files'
- 'outlog[write stdout to this file.]:file:_files'
- 'errlog[write stderr to this file.]:file:_files'
- )
-
- _arguments -s : \
- $nul_args \
- '*: :_values "FCGI Setting" $fcgi_opts' && ret=0
- }
- _managepy-runserver(){
- _arguments -s : \
- '--noreload[tells Django to NOT use the auto-reloader.]' \
- '--adminmedia[specifies the directory from which to serve admin media.]:directory:_files' \
- $nul_args && ret=0
- }
- _managepy-shell(){
- _arguments -s : \
- '--plain[tells Django to use plain Python, not IPython.]' \
- $nul_args && ret=0
- }
- _managepy-sql(){}
- _managepy-sqlall(){}
- _managepy-sqlclear(){}
- _managepy-sqlcustom(){}
- _managepy-sqlflush(){}
- _managepy-sqlindexes(){}
- _managepy-sqlinitialdata(){}
- _managepy-sqlreset(){}
- _managepy-sqlsequencereset(){}
- _managepy-startapp(){}
- _managepy-startproject(){}
- _managepy-syncdb() {
- _arguments -s : \
- '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
- '--noinput[tells Django to NOT prompt the user for input of any kind.]' \
- $nul_args && ret=0
- }
- _managepy-test() {
- _arguments -s : \
- '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
- '--noinput[tells Django to NOT prompt the user for input of any kind.]' \
- '*::appname:_applist' \
- $nul_args && ret=0
- }
- _managepy-testserver() {
- _arguments -s : \
- '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
- '--addrport=-[port number or ipaddr:port to run the server on.]' \
- '*::fixture:_files' \
- $nul_args && ret=0
- }
- _managepy-validate() {
- _arguments -s : \
- $nul_args && ret=0
- }
- _managepy-commands() {
- local -a commands
-
- commands=(
- 'adminindex:prints the admin-index template snippet for the given app name(s).'
- 'createcachetable:creates the table needed to use the SQL cache backend.'
- 'collectstatic:Collect static files in a single location.'
- 'dbshell:runs the command-line client for the current DATABASE_ENGINE.'
- "diffsettings:displays differences between the current settings.py and Django's default settings."
- 'dumpdata:Output the contents of the database as a fixture of the given format.'
- 'flush:Executes ``sqlflush`` on the current database.'
- 'help:manage.py help.'
- 'inspectdb:Introspects the database tables in the given database and outputs a Django model module.'
- 'loaddata:Installs the named fixture(s) in the database.'
- 'reset:Executes ``sqlreset`` for the given app(s) in the current database.'
- 'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,'
- 'runserver:Starts a lightweight Web server for development.'
- 'shell:Runs a Python interactive interpreter.'
- 'sql:Prints the CREATE TABLE SQL statements for the given app name(s).'
- 'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).'
- 'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).'
- 'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).'
- 'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.'
- 'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).'
- "sqlinitialdata:RENAMED: see 'sqlcustom'"
- 'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).'
- 'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).'
- "startapp:Creates a Django app directory structure for the given app name in this project's directory."
- "startproject:Creates a Django project directory structure for the given project name in this current directory."
- "syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created."
- 'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.'
- 'testserver:Runs a development server with data from the given fixture(s).'
- 'validate:Validates all installed models.'
- )
-
- _describe -t commands 'manage.py command' commands && ret=0
- }
- _applist() {
- local line
- local -a apps
- _call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\
- bn=op.basename(op.abspath(op.curdir));[sys\\
- .stdout.write(str(re.sub(r'^%s\.(.*?)$' %
- bn, r'\1', i)) + '\n') for i in django.conf.settings.\\
- INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \
- | while read -A line; do apps=($line $apps) done
- _values 'Application' $apps && ret=0
- }
- _managepy() {
- local curcontext=$curcontext ret=1
-
- if ((CURRENT == 2)); then
- _managepy-commands
- else
- shift words
- (( CURRENT -- ))
- curcontext="${curcontext%:*:*}:managepy-$words[1]:"
- _call_function ret _managepy-$words[1]
- fi
- }
- compdef _managepy manage.py
- compdef _managepy django
- compdef _managepy django-admin
- compdef _managepy django-admin.py
- compdef _managepy django-manage
|