Ticket #17997: ticket17997-patch1.diff

File ticket17997-patch1.diff, 1.2 KB (added by vanessagomes, 12 years ago)

Suggestion for the docs.

  • docs/ref/django-admin.txt

    diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
    index 8fea699..9879fc3 100644
    a b Example usage::  
    668668
    669669.. versionadded:: 1.4
    670670
     671Since version 1.4, Django development server is multithreaded by default.
    671672Use the ``--nothreading`` option to disable the use of threading in the
    672673development server.
    673674
  • docs/releases/1.4.txt

    diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
    index 51766dc..fcaf60f 100644
    a b field. This was something that should not have worked, and in 1.4 loading such  
    11451145incomplete fixtures will fail. Because fixtures are a raw import, they should
    11461146explicitly specify all field values, regardless of field options on the model.
    11471147
     1148django-admin-option:: --nothreading
     1149~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     1150
     1151The development server is now is multithreaded by default. Use the
     1152``--nothreading`` option to disable the use of threading in the
     1153development server::
     1154   
     1155    django-admin.py runserver --nothreading
     1156
    11481157Attributes disabled in markdown when safe mode set
    11491158~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Back to Top