diff -r c1326c8bf111 docs/ref/django-admin.txt
a
|
b
|
|
83 | 83 | Available subcommands |
84 | 84 | ===================== |
85 | 85 | |
| 86 | changepassword |
| 87 | -------------- |
| 88 | |
| 89 | .. django-admin:: changepassword |
| 90 | |
| 91 | .. versionadded:: 1.2 |
| 92 | |
| 93 | Allows changing a User's password. It prompts you to enter twice the password of |
| 94 | the user given as parameter. If they both match, the new password will be |
| 95 | changed immediately. If you do not supply a user, the command will attempt to |
| 96 | change the password whose username matches the current user. |
| 97 | |
| 98 | Example usage:: |
| 99 | |
| 100 | django-admin.py changepassword ringo |
| 101 | |
86 | 102 | cleanup |
87 | 103 | ------- |
88 | 104 | |
diff -r c1326c8bf111 docs/releases/1.1.txt
a
|
b
|
|
132 | 132 | Fixed the ``join`` filter's escaping behavior |
133 | 133 | --------------------------------------------- |
134 | 134 | |
135 | | The :ttag:`join` filter no longer escapes the literal value that is |
| 135 | The :tfilter:`join` filter no longer escapes the literal value that is |
136 | 136 | passed in for the connector. |
137 | 137 | |
138 | 138 | This is backwards incompatible for the special situation of the literal string |
diff -r c1326c8bf111 docs/topics/auth.txt
a
|
b
|
|
37 | 37 | 2. Run the command ``manage.py syncdb``. |
38 | 38 | |
39 | 39 | Note that the default :file:`settings.py` file created by |
40 | | :djadmin:`django-admin.py startproject` includes ``'django.contrib.auth'`` and |
41 | | ``'django.contrib.contenttypes'`` in :setting:`INSTALLED_APPS` for convenience. |
42 | | If your :setting:`INSTALLED_APPS` already contains these apps, feel free to run |
43 | | :djadmin:`manage.py syncdb` again; you can run that command as many times as |
44 | | you'd like, and each time it'll only install what's needed. |
| 40 | :djadmin:`django-admin.py startproject <startproject>` includes |
| 41 | ``'django.contrib.auth'`` and ``'django.contrib.contenttypes'`` in |
| 42 | :setting:`INSTALLED_APPS` for convenience. If your :setting:`INSTALLED_APPS` |
| 43 | already contains these apps, feel free to run :djadmin:`manage.py syncdb |
| 44 | <syncdb>` again; you can run that command as many times as you'd like, and each |
| 45 | time it'll only install what's needed. |
45 | 46 | |
46 | 47 | The :djadmin:`syncdb` command creates the necessary database tables, creates |
47 | 48 | permission objects for all installed apps that need 'em, and prompts you to |
… |
… |
|
358 | 359 | .. versionadded:: 1.2 |
359 | 360 | The ``manage.py changepassword`` command was added. |
360 | 361 | |
361 | | :djadmin:`manage.py changepassword <username>` offers a method of |
362 | | changing a User's password from the command line. It prompts you to |
| 362 | :djadmin:`manage.py changepassword *username* <changepassword>` offers a method |
| 363 | of changing a User's password from the command line. It prompts you to |
363 | 364 | change the password of a given user which you must enter twice. If |
364 | 365 | they both match, the new password will be changed immediately. If you |
365 | 366 | do not supply a user, the command will attempt to change the password |