1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

[multi-db] Merge trunk to [3764]. Some tests still failing.

git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@4138 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jason Pellerin 2006-11-29 19:51:54 +00:00
parent c000f6a480
commit f6d48b5d02
4 changed files with 15 additions and 8 deletions

View File

@ -74,8 +74,9 @@ def fastcgi_help(message=None):
print message print message
return False return False
def runfastcgi(argset): def runfastcgi(argset, **kwargs):
options = FASTCGI_OPTIONS.copy() options = FASTCGI_OPTIONS.copy()
options.update(kwargs)
for x in argset: for x in argset:
if "=" in x: if "=" in x:
k, v = x.split('=', 1) k, v = x.split('=', 1)

View File

@ -295,6 +295,8 @@ give you the option of creating a superuser immediately.
test test
---- ----
**New in Django development version**
Discover and run tests for all installed models. See `Testing Django applications`_ for more information. Discover and run tests for all installed models. See `Testing Django applications`_ for more information.
.. _testing django applications: ../testing/ .. _testing django applications: ../testing/
@ -348,6 +350,8 @@ options.
--noinput --noinput
--------- ---------
**New in Django development version**
Inform django-admin that the user should NOT be prompted for any input. Useful if Inform django-admin that the user should NOT be prompted for any input. Useful if
the django-admin script will be executed as an unattended, automated script. the django-admin script will be executed as an unattended, automated script.
@ -369,6 +373,8 @@ Example output::
--verbosity --verbosity
----------- -----------
**New in Django development version**
Example usage:: Example usage::
django-admin.py syncdb --verbosity=2 django-admin.py syncdb --verbosity=2

View File

@ -270,7 +270,7 @@ In your Web root directory, add this to a file named ``.htaccess`` ::
AddHandler fastcgi-script .fcgi AddHandler fastcgi-script .fcgi
RewriteEngine On RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ /mysite.fcgi/$1 [QSA,L] RewriteRule ^(.*)$ mysite.fcgi/$1 [QSA,L]
Then, create a small script that tells Apache how to spawn your FastCGI Then, create a small script that tells Apache how to spawn your FastCGI
program. Create a file ``mysite.fcgi`` and place it in your Web directory, and program. Create a file ``mysite.fcgi`` and place it in your Web directory, and
@ -289,7 +289,7 @@ be sure to make it executable ::
os.environ['DJANGO_SETTINGS_MODULE'] = "myproject.settings" os.environ['DJANGO_SETTINGS_MODULE'] = "myproject.settings"
from django.core.servers.fastcgi import runfastcgi from django.core.servers.fastcgi import runfastcgi
runfastcgi(["method=threaded", "daemonize=false"]) runfastcgi(method="threaded", daemonize="false")
Restarting the spawned server Restarting the spawned server
----------------------------- -----------------------------

View File

@ -321,7 +321,7 @@ about editing an existing one? It's shockingly similar to creating a new one::
else: else:
errors = {} errors = {}
# This makes sure the form accurate represents the fields of the place. # This makes sure the form accurate represents the fields of the place.
new_data = place.__dict__ new_data = manipulator.flatten_data()
form = forms.FormWrapper(manipulator, new_data, errors) form = forms.FormWrapper(manipulator, new_data, errors)
return render_to_response('places/edit_form.html', {'form': form, 'place': place}) return render_to_response('places/edit_form.html', {'form': form, 'place': place})
@ -336,10 +336,10 @@ The only real differences are:
* ``ChangeManipulator.original_object`` stores the instance of the * ``ChangeManipulator.original_object`` stores the instance of the
object being edited. object being edited.
* We set ``new_data`` to the original object's ``__dict__``. This makes * We set ``new_data`` based upon ``flatten_data()`` from the manipulator.
sure the form fields contain the current values of the object. ``flatten_data()`` takes the data from the original object under
``FormWrapper`` does not modify ``new_data`` in any way, and templates manipulation, and converts it into a data dictionary that can be used
cannot, so this is perfectly safe. to populate form elements with the existing values for the object.
* The above example uses a different template, so create and edit can be * The above example uses a different template, so create and edit can be
"skinned" differently if needed, but the form chunk itself is completely "skinned" differently if needed, but the form chunk itself is completely