summaryrefslogtreecommitdiff
path: root/django/core/management
AgeCommit message (Expand)Author
2007-10-13Some Django coding style fixes.Gary Wilson Jr
2007-10-06Refs #5690 -- Changed path joining to use `os.pardir` instead of `'..'`.Gary Wilson Jr
2007-09-22Fixed #5566 -- Fixed typo from [6042]. Thanks to thomas@gumption.com and mir ...Russell Keith-Magee
2007-09-21Fixed misleading comment from [6402].Russell Keith-Magee
2007-09-21Fixed #5564 -- Fixed handling of the ProjectCommand used by startapp.Russell Keith-Magee
2007-09-21Clean up of the command line argument error processing from [6400].Russell Keith-Magee
2007-09-21Fixed #5516 -- Added the ability for applications to define their own managem...Russell Keith-Magee
2007-09-15Fixed two more instances of bug #4827 in the management code.Ian Kelly
2007-09-15Fixed #5242 -- Fixed table processing for some databases with case insensitiv...Malcolm Tredinnick
2007-09-15Variable renaming. I didn't feel comfortable with the tricky re-aliasing in t...Malcolm Tredinnick
2007-09-15Fixed #5443 -- Handle lack of os.access() and os.chmod() in Jython. Thanks, L...Malcolm Tredinnick
2007-09-14Negligible formatting change to [6211]Adrian Holovaty
2007-09-14Fixed #3381 - manage.py shell now respects PYTHONSTARTUP/.pythonrc.py.Jacob Kaplan-Moss
2007-09-14Fixed #5445: added some compatibility code for the lack of __iter__ in Jython...Jacob Kaplan-Moss
2007-09-14Fixed #5376 -- Added --addrport option to the 'testserver' command. Thanks, t...Adrian Holovaty
2007-09-14Fixed #5286 -- Fixed non-HTML output bug in adminindex command. Thanks, dan.f...Adrian Holovaty
2007-09-14Fixed #5218: Made Oracle create autoinc triggers using the correct name Ian Kelly
2007-09-11Got runserver auto-reloading working again by removing what appeared to be de...Adrian Holovaty
2007-09-11Restored 'django-admin.py --help'Adrian Holovaty
2007-09-11Updated runfcgi management command to include 'subcommand' argument to usage()Adrian Holovaty
2007-09-11Refactored some small parts of core.management -- ManagementUtility.execute()...Adrian Holovaty
2007-09-11Changed core.management print_help() methods to accept a prog_name argument i...Adrian Holovaty
2007-09-11Renamed 'args' variables in django.core.management to 'argv' to be more clear...Adrian Holovaty
2007-09-10Renamed a variable in ManagementUtility.execute() for clarityAdrian Holovaty
2007-09-10Fixed #5375 -- Added base command options to the options registered against d...Russell Keith-Magee
2007-09-09Fixed #5369 -- Refactored the django-admin.py help system, allowing each subc...Adrian Holovaty
2007-09-05Refs #5343 -- Reverted [6047]. Loading custom commands was causing the settin...Russell Keith-Magee
2007-09-04Fixed #5212, #5222 -- Added the ability for users to register their own comma...Russell Keith-Magee
2007-09-02Fixed #5319 -- Changed terminal colors in django.core.management.colors not t...Adrian Holovaty
2007-08-31Fixed #5307 -- startproject/startapp now makes sure all files it creates are ...Adrian Holovaty
2007-08-27Changed 'validate' and 'runserver' management commands to display the number ...Adrian Holovaty
2007-08-25Fixed #5086 -- The 'flush' and 'sqlflush' management commands no longer touch...Adrian Holovaty
2007-08-25Fixed #5224 -- Corrected name of admin media option in management runserver c...Russell Keith-Magee
2007-08-20Removed legacy django.db.backend import in sql_delete()Adrian Holovaty
2007-08-20Refactored get_drop_sequence() to DatabaseOperations.drop_sequence_sql(). Ref...Adrian Holovaty
2007-08-20Removed a bunch of legacy django.db.backend importsAdrian Holovaty
2007-08-20Implemented BaseDatabaseFeatures and changed all code to access it -- connect...Adrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-20Refactored get_tablespace_sql() to DatabaseOperations.tablespace_sql(). Refs ...Adrian Holovaty
2007-08-20Refactored get_start_transaction_sql() to DatabaseOperations.start_transactio...Adrian Holovaty
2007-08-20Refactored get_sql_sequence_reset() to DatabaseOperations.sequence_reset_sql(...Adrian Holovaty
2007-08-20Refactored get_sql_flush() to DatabaseOperations.sql_flush(). Refs #5106Adrian Holovaty
2007-08-19Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Ref...Adrian Holovaty
2007-08-19Refactored get_drop_foreignkey_sql() to DatabaseOperations.drop_foreignkey_sq...Adrian Holovaty
2007-08-19Refactored get_deferrable_sql() to DatabaseOperations.deferrable_sql(). Refs ...Adrian Holovaty
2007-08-19Began implementing BaseDatabaseOperations class for every database backend. T...Adrian Holovaty
2007-08-18Rolled out [5923]-[5925] due to breaking call_command().Russell Keith-Magee
2007-08-18Finished a sentence that didn't get committed in [5923].Russell Keith-Magee
2007-08-18Added the ability for end users to register commands with management.py.Russell Keith-Magee
2007-08-17Fixed 'django-admin.py syncdb' to take verbosity into account when loading in...Adrian Holovaty