ID English原文 中文翻译 最近翻译记录 状态 操作
0#翻译
Appendix G: The django-admin Utility
------------------------------------
附录G 管理实用工具
------------------------------------
4105天前 gecdlemlrhx 翻译
1#翻译
``django-admin.py`` is Djangos command-line utility for administrative tasks.
This appendix explains its many powers.
``django-admin.py`` 是Django管理任务的命令行工具。本附录简述它的多个特性。
5727天前 翻译
2#翻译
Youll usually access ``django-admin.py`` through a projects ``manage.py``
wrapper. ``manage.py`` is automatically created in each Django project and is a
thin wrapper around ``django-admin.py`` . It takes care of two things for you
before delegating to ``django-admin.py`` :
LNVKgB  <a href="http://vbksqrondtwn.com/">vbksqrondtwn</a>, [url=http://bmvlidwwfxwa.com/]bmvlidwwfxwa[/url], [link=http://hpsplsneovpa.com/]hpsplsneovpa[/link], http://txkxvkmiotqh.com/
4521天前 翻译
3#翻译
*   It puts your projects package on ``sys.path`` .
*  将你项目所在路径加入 ``sys.path`` .
4105天前 翻译
4#翻译
*   It sets the ``DJANGO_SETTINGS_MODULE`` environment variable so that it
    points to your projects ``settings.py`` file.
*   设置环境变量 ``DJANGO_SETTINGS_MODULE`` , 使其指向你项目中的 ``settings.py`` 
5734天前 翻译
5#翻译
The ``django-admin.py`` script should be on your system path if you installed
Django via its ``setup.py`` utility. If its not on your path, you can find it
in ``site-packages/django/bin`` within your Python installation. Consider
symlinking it from some place on your path, such as ``/usr/local/bin`` .
如果你是使用 ``setup.py`` 来安装Django的,那么 ``django-admin.py`` 应该已经在你的系统路径中了. 如果没有,你可以在你python安装路径下的 ``site-packages/django/bin`` 中找到它. 可以在某个系统路径上建立一个指向该文件的符号链接,如在 ``/usr/local/bin`` 
3930天前 翻译
6#翻译
Windows users, who do not have symlinking functionality available, can copy
``django-admin.py`` to a location on their existing path or edit the ``PATH``
settings (under Settings ~TRA Control Panel ~TRA System ~TRA Advanced ~TRA
Environment) to point to its installed location.
对于不能建立符号链接的Windows用户, 可以把 ``django-admin.py`` 拷贝到环境变量 ``PATH`` 对应的某个目录中,或者编辑环境变量 ``PATH`` (在控制面板->系统->高级->环境变量), 添加 ``django-admin.py`` 所在路径.
5734天前 翻译
7#翻译
Generally, when working on a single Django project, its easier to use
``manage.py`` . Use ``django-admin.py`` with ``DJANGO_SETTINGS_MODULE`` or the
``--settings`` command-line option, if you need to switch between multiple
Django settings files.
一般来说,在单一的Django项目中,使用 ``manage.py`` 比较方便。如果需要在多个Django 项目(setting files)中切换,可以使用 ``django-admin.py`` , 结合环境变量 ``DJANGO_SETTINGS_MODULE`` 或选项 ``--settings`` 
4105天前 翻译
8#翻译
The command-line examples throughout this appendix use ``django-admin.py`` to
be consistent, but any example can use ``manage.py`` just as well.
为保持一致,在本附录中的例子中均使用 ``django-admin.py`` , 所有例子都可以换用 ``manage.py`` 
4103天前 翻译
9#翻译
Usage
`````
用法
`````
5734天前 翻译
10#翻译
The basic usage is:
基本用法如下:
5734天前 翻译
13#翻译
or:
或者:
4103天前 翻译
16#翻译
``action`` should be one of the actions listed in this document. ``options`` ,
which is optional, should be zero or more of the options listed in this
document.
其中 ``action``  是稍后给出的  ``action``  列表中的一个, ``options``  为可选项,可以留空或者是稍后给出的 ``options``  列表中的一个
4087天前 翻译
17#翻译
Run ``django-admin.py --help`` to display a help message that includes a terse
list of all available actions and options.
运行 ``django-admin.py --help`` 可以看到帮助信息,其中带有精简的 action 和 option 列表
5734天前 翻译
18#翻译
Most actions take a list of app names. An *app name* is the base name of the
package containing your models. For example, if your ``INSTALLED_APPS``
contains the string ``'mysite.blog'`` , the app name is ``blog`` .
多数 action 接受 app name 的列表为参数, *app name*  是指包含你各个模块的包的 base name。 比方说,如果你的环境变量 ``INSTALLED_APPS`` 中含有 ``'mysite.blog'`` , 那么app name就是 ``blog`` .
5727天前 翻译
19#翻译
Available Actions
`````````````````
可选的 action
`````````````````
4103天前 翻译
20#翻译
The following sections cover the actions available to you.
以下列出了可以使用的action
3888天前 翻译
21#翻译
adminindex [appname appname ]
'''''''''''''''''''''''''''''
adminindex [appname appname ]
5460天前 翻译
22#翻译
Prints the admin-index template snippet for the given application names. Use
admin-index template snippets if you want to customize the look and feel of
your admins index page.
显示指定程序的admin-index模版代码。如果你想定制自已风格的admin首页,可以使用admin-index模板代码。
4103天前 翻译
23#翻译
createcachetable [tablename]
''''''''''''''''''''''''''''
createcachetable [tablename]
新增快取資料表[表的名稱]
4103天前 翻译
24#翻译
Creates a cache table named ``tablename`` for use with the database cache
back-end. See Chapter 13 for more about caching.
为数据库缓存后台创建名为 ``tablename`` 的缓存表,详见第13章关于缓存的部分
5720天前 翻译
25#翻译
dbshell
'''''''
dbshell
對資料庫下指令的shell
4101天前 翻译
26#翻译
Runs the command-line client for the database engine specified in your
``DATABASE_ENGINE`` setting, with the connection parameters specified in the
settings ``DATABASE_USER`` , ``DATABASE_PASSWORD`` , and so forth.
为你在`DATABASE_ENGINE` 中定义的数据库运行一个命令行客户端。连接所需要的参数定义在`DATABASE_USER`` , ``DATABASE_PASSWORD``中。如下。
4101天前 翻译
27#翻译
*   For PostgreSQL, this runs the ``psql`` command-line client.
*  对于 PostgreSQL, 它运行``psql`` 命令
4103天前 翻译
28#翻译
*   For MySQL, this runs the ``mysql`` command-line client.
*  对于 MySQL, 它运行``mysql`` 命令
4103天前 翻译
29#翻译
*   For SQLite, this runs the ``sqlite3`` command-line client.
*  对于SQLite, 它运行``sqlite3`` 命令
5518天前 翻译
30#翻译
This command assumes the programs are on your ``PATH`` so that a simple call to
the program name (``psql`` , ``mysql`` , or ``sqlite3`` ) will find the program
in the right place. Theres no way to specify the location of the program
manually.
这个命令假设这些程序都在你的``PATH``中,所以只要简单的调用程序名(``psql`` , ``mysql`` , 或 ``sqlite3`` )就可以找到它们。无法手工定义这些程序的位置。
5518天前 翻译
31#翻译
diffsettings
''''''''''''
diffsettings
''''''''''''
4105天前 翻译
32#翻译
Displays differences between the current settings file and Djangos default
settings.
显示当前settings文件和Django的标准settings文件的不同。
5718天前 翻译
33#翻译
Settings that dont appear in the defaults are followed by ``"###"`` . For
example, the default settings dont define ``ROOT_URLCONF`` , so
``ROOT_URLCONF`` is followed by ``"###"`` in the output of ``diffsettings`` .
没有在标准settings文件中出现的设置后面会跟着``"###"```。例如,标准settings没有定义``ROOT_URLCONF``,因此,在``diffsettings``的输出中``ROOT_URLCONF``之后会跟着``"###"```。
4105天前 翻译
34#翻译
Note that Djangos default settings live in ``django.conf.global_settings`` , if
youre ever curious to see the full list of defaults.
RhfDXL  <a href="http://nwekewqwmpmf.com/">nwekewqwmpmf</a>, [url=http://urrjvbmxkjzs.com/]urrjvbmxkjzs[/url], [link=http://ukjmwtvftncx.com/]ukjmwtvftncx[/link], http://zizkdnkhaixj.com/
4521天前 翻译
35#翻译
dumpdata [appname appname ]
'''''''''''''''''''''''''''
dumpdata [appname appname ]
將某個應用程式的資料下載回來
5460天前 翻译
36#翻译
Outputs to standard output all data in the database associated with the named
application(s).
輸出檔案到標準輸出。關於這個應用程式資料庫裏的所有資料。
5460天前 翻译
37#翻译
By default, the database will be dumped in JSON format. If you want the output
to be in another format, use the ``--format`` option (e.g., ``format=xml`` ).
You may specify any Django serialization back-end (including any user-specified
serialization back-ends named in the ``SERIALIZATION_MODULES`` setting). The
``--indent`` option can be used to pretty-print the output.
默认的,数据库会被导出为JSON格式。如果你导出其它格式,使用``--format``选项( 例如,``format=xml`` )。你可以指定任何Django序例后端(包括任何用户自定义的序例后端 ,定义在``SERIALIZATION_MODULES``中 ). ``--indent`` 选项,用来更优美的显示输出.
5518天前 翻译
38#翻译
If no application name is provided, all installed applications will be dumped.
如果没有指定程序名,那么所有安装的程序都会被导出
5518天前 翻译
39#翻译
The output of ``dumpdata`` can be used as input for ``loaddata`` .
``dumpdata``的输出文件,可以用做``loaddata``的输入文件。
5518天前 翻译
40#翻译
flush
'''''
刷新
4103天前 翻译
41#翻译
Returns the database to the state it was in immediately after syncdb was
executed. This means that all data will be removed from the database, any
postsynchronization handlers will be re-executed, and the ``initial_data``
fixture will be reinstalled.
讓資料庫回到一個初始狀況,約是在syncdb 被執行之後。這表示所有資料將從資料裏被移除,任何postsynchronization 處理將會被再處理。然後初始資料將會再被寫入一次。
5460天前 翻译
42#翻译
inspectdb
'''''''''
检查数据库
5495天前 翻译
43#翻译
Introspects the database tables in the database pointed to by the
``DATABASE_NAME`` setting and outputs a Django model module (a ``models.py``
file) to standard output.
將所有的資料表指出來,按你指名的資料庫名稱設定,輸出一個Django 模型的模組。(a ``models.py``檔)
到標準的輸出。
5460天前 翻译
44#翻译
Use this if you have a legacy database with which youd like to use Django. The
script will inspect the database and create a model for each table within it.
用它。假如你已經有一個老字號的資料庫在用,且你想用Django.這個指令檔將偵測這個資料庫,然後為每一個資料表新建一個模型
4105天前 翻译
45#翻译
As you might expect, the created models will have an attribute for every field
in the table. Note that ``inspectdb`` has a few special cases in its field name
output:
你可能期待,這個新建的模型將有表裏所有欄位所對應的屬性。注意:inspectdb有一些特別的狀況在欄位名稱的輸出上。
4103天前 翻译
46#翻译
*   If ``inspectdb`` cannot map a columns type to a model field type, it will
    use ``TextField`` and will insert the Python comment ``'This field type is
    a guess.'`` next to the field in the generated model.
假如inspectdb不能標定行的型別和模型裏欄位的型別,它將用TextField,然後寫入一個Python 註解,這欄位型別我是用猜的。在這生成的模型的欄位旁邊
5460天前 翻译
47#翻译
*   If the database column name is a Python reserved word (such as ``'pass'`` ,
    ``'class'`` , or ``'for'`` ), ``inspectdb`` will append ``'_field'`` to the
    attribute name. For example, if a table has a column ``'for'`` , the
    generated model will have a field ``'for_field'`` , with the ``db_column``
    attribute set to ``'for'`` . ``inspectdb`` will insert the Python comment
    ``'Field renamed because it was a Python reserved word.'`` next to the
    field.
假如資料庫的欄位名稱是Python的保留字(如 pass,class,for),那inspectdb會加上_field到這個性質名稱的後面。例如,假如一個表有一個欄位叫做for,這產生的模型就會有一個欄位叫做for_field,對應到db_column的性質是for,inspectdb將會填入Python註解,欄位被改名字了,因為這是Python的保留字。加上旁邊
5458天前 翻译
48#翻译
This feature is meant as a shortcut, not as definitive model generation. After
you run it, youll want to look over the generated models yourself to make
customizations. In particular, youll need to rearrange the models so that
models with relationships are ordered properly.
這項特質是表示捷徑,不是有受限的模型產生,在你執行完後,你將想要關心一下這自動產生的模型來客製化。特別是,你將需要從新安排這些模型,建立之間的關係,和恰當的排序


5458天前 翻译
49#翻译
Primary keys are automatically introspected for PostgreSQL, MySQL, and SQLite,
in which case Django puts in the ``primary_key=True`` where needed.
主鍵值是自動偵測的,對PostgreSQL, MySQL, and SQLite,在這種情況下,Django 會視需要將這些設定設為primary_key=True。
4105天前 翻译
50#翻译
``inspectdb`` works with PostgreSQL, MySQL, and SQLite. Foreign key detection
only works in PostgreSQL and with certain types of MySQL tables.
inspectdb,在連上PostgreSQL, MySQL, and SQLite時,外鍵偵測只做用在PostgreSQL 及MySQL 資料表裏的某些特定型態!
4105天前 翻译
51#翻译
loaddata [fixture fixture ]
'''''''''''''''''''''''''''
載入數據【填補 填充】
5458天前 翻译
52#翻译
Searches for and loads the contents of the named fixture into the database.
尋找和載入一些已命名的填充的內容到資料庫裏
5458天前 翻译
53#翻译
A *fixture* is a collection of files that contain the serialized contents of
the database. Each fixture has a unique name; however, the files that comprise
the fixture can be distributed over multiple directories, in multiple
applications.
一個填補,是一個檔案的收集,包含著資料庫裏的連續資料。每一個填補,有一個唯一的名稱,然而,填補裏的檔可以放在多個檔案夾裏,給多個應用程式補資料用。
4105天前 翻译
54#翻译
Django will search in three locations for fixtures:
Django 會找關於填補的三個地方:
4103天前 翻译
55#翻译
*   In the ``fixtures`` directory of every installed application
在每一個已安裝的程式裏的fixtures目錄
3881天前 翻译
56#翻译
*   In any directory named in the ``FIXTURE_DIRS`` setting
在FIXTURE_DIRS設定下的,任何目錄
4103天前 翻译
57#翻译
*   In the literal path named by the fixture
在字面上的路徑是取名為fixture的
4105天前 翻译
58#翻译
Django will load any and all fixtures it finds in these locations that match
the provided fixture names.
Django 將載入所有的填補,在這些位置裏被發現到,且符合所提供的填補的名字。
4036天前 翻译
59#翻译
If the named fixture has a file extension, only fixtures of that type will be
loaded. For example, the following:
假如 已命名的填補有一個副檔名,只有格式對的填補會被載入。例如下列
4105天前 翻译
62#翻译
will only load JSON fixtures called ``mydata`` . The fixture extension must
correspond to the registered name of a serializer (e.g., ``json`` or ``xml`` ).
將只會載入JSON 填補叫做mydata。這個填補的延伸符合這序列子登錄的名稱(例如json或xml)
4103天前 翻译
63#翻译
If you omit the extension, Django will search all available fixture types for a
matching fixture. For example, the following:
假如你省略這個副檔名,Django 將尋找所有的可能的填補型態,對於一個符合的填補。例如,下列
3996天前 翻译
66#翻译
will look for any fixture of any fixture type called ``mydata`` . If a fixture
directory contained ``mydata.json`` , that fixture would be loaded as a JSON
fixture. However, if two fixtures with the same name but different fixture
types are discovered (e.g., if ``mydata.json`` and ``mydata.xml`` were found in
the same fixture directory), fixture installation will be aborted, and any data
installed in the call to ``loaddata`` will be removed from the database.
將會尋找任何填補命名為mydata。假如一個填補的目錄夾有一個mydata.json。這個填補將被載入用,
JSON的方式。然而,假如兩個填補取一樣的名字,但有不一樣的填補副檔名,如(`mydata.json`` and ``mydata.xml在同一個目錄下被發現),填補的安裝動作將會取消,然後其他的已安裝數據在loaddata呼叫時,將會從數據庫被移除掉。
5458天前 翻译
67#翻译
The fixtures that are named can include directory components. These directories
will be included in the search path. The following, for example:
已命名的填補可以包含子目錄,這些目錄將被
包含進搜尋的路徑裏。如下,舉例
5458天前 翻译
70#翻译
will search ``<appname>/fixtures/foo/bar/mydata.json`` for each installed
application, ``<dirname>/foo/bar/mydata.json`` for each directory in
``FIXTURE_DIRS`` , and the literal path ``foo/bar/mydata.json`` .
上面的语句将会查询每一个已经安装的应用的``<appname>/fixtures/foo/bar/mydata.json`` ,``FIXTURE_DIRS`` 中的每一个``<dirname>/foo/bar/mydata.json`` ,以及原义路径``foo/bar/mydata.json`` 的值
4105天前 翻译
71#翻译
Note that the order in which fixture files are processed is undefined. However,
all fixture data is installed as a single transaction, so data in one fixture
can reference data in another fixture. If the database back-end supports
row-level constraints, these constraints will be checked at the end of the
transaction.
5feKU6  <a href="http://evvuncejtvme.com/">evvuncejtvme</a>, [url=http://fchutksfdnis.com/]fchutksfdnis[/url], [link=http://nhmlfasytyrt.com/]nhmlfasytyrt[/link], http://pmvfxfxecgma.com/
4105天前 翻译
72#翻译
The ``dumpdata`` command can be used to generate input for ``loaddata`` .
翻译 5940天前 翻译
73#翻译
MySQL and Fixtures
yshZer  <a href="http://dpijcrztchln.com/">dpijcrztchln</a>, [url=http://zpquanquiwmb.com/]zpquanquiwmb[/url], [link=http://dnhwcuscscqm.com/]dnhwcuscscqm[/link], http://ousqvvhidwrc.com/
4103天前 翻译
74#翻译
Unfortunately, MySQL isnt capable of completely supporting all the features of
Django fixtures. If you use MyISAM tables, MySQL doesnt support transactions or
constraints, so you wont get a rollback if multiple transaction files are
found, or validation of fixture data. If you use InnoDB tables, you wont be
able to have any forward references in your data files MySQL doesnt provide a
mechanism to defer checking of row constraints until a transaction is
committed.
8aNizj  <a href="http://obqkeywldjik.com/">obqkeywldjik</a>, [url=http://asbuwlzxbwep.com/]asbuwlzxbwep[/url], [link=http://tdanvtzkzmtb.com/]tdanvtzkzmtb[/link], http://lswpszqbeblx.com/
4105天前 johnansaz 翻译
75#翻译
reset [appname appname ]
''''''''''''''''''''''''
翻译 5940天前 翻译
76#翻译
Executes the equivalent of ``sqlreset`` for the given app names.
aaaaaaaaa
4312天前 翻译
77#翻译
runfcgi [options]
'''''''''''''''''
PfznU3  <a href="http://gvxyhictgosq.com/">gvxyhictgosq</a>, [url=http://yidxvzyxnhkx.com/]yidxvzyxnhkx[/url], [link=http://wypjmffmvloe.com/]wypjmffmvloe[/link], http://pgjxcydamdof.com/
4103天前 翻译
78#翻译
Starts a set of FastCGI processes suitable for use with any Web server that
supports the FastCGI protocol. See Chapter 20 for more about deploying under
FastCGI.
翻译 5940天前 翻译
79#翻译
This command requires the Python FastCGI module from ``flup``
(`http://www.djangoproject.com/r/flup/`_).
此命令需要Python的FastCGI模块,来自“flup”(`http://www.djangoproject.com/r/flup/`)。
5382天前 翻译
80#翻译
runserver [optional port number, or ipaddr:port]
''''''''''''''''''''''''''''''''''''''''''''''''
kXtSZZ  <a href="http://ublfwxneqhqz.com/">ublfwxneqhqz</a>, [url=http://fwzmbrkhqoga.com/]fwzmbrkhqoga[/url], [link=http://meklwpcmjdwf.com/]meklwpcmjdwf[/link], http://nrqecjlsavny.com/
4105天前 翻译
81#翻译
Starts a lightweight development Web server on the local machine. By default,
the server runs on port 8000 on the IP address 127.0.0.1. You can pass in an IP
address and port number explicitly.
在本地启动轻量级的开发Web服务器。默认情况下,该服务器监听127.0.0.1的8000端口,可以传入参数指定监听的IP地址与端口号
4103天前 翻译
82#翻译
If you run this script as a user with normal privileges (recommended), you
might not have access to start a port on a low port number. Low port numbers
are reserved for the superuser (root).
如果你使用普通用户权限运行该命令(推荐方式),你可能会没有权限来监听低端口。低端口往往只有超级用户(root)才能监听。
5734天前 翻译
83#翻译
Warning
注意:
5734天前 翻译
84#翻译
**Do not use this server in a production setting** . It has not gone through
security audits or performance tests, and there are no plans to change that
fact. Djangos developers are in the business of making Web frameworks, not Web
servers, so improving this server to be able to handle a production environment
is outside the scope of Django.
**不要在最终产品中使用该服务器** . 该服务器没有通过安全与性能测试,并且也不打算通过。Django开发者的主要任务是制作web框架,而不是web服务器,改进该服务器使之可以在最终产品中应用超出了Django的范围。
2621天前 gomzoqav 翻译
85#翻译
The development server automatically reloads Python code for each request, as
needed. You dont need to restart the server for code changes to take effect.
在需要的时候,该开发服务器会为每个请求自动重新加载Python代码。所以当你改动代码之后不需要重新启动它就可以生效。
4103天前 翻译
86#翻译
When you start the server, and each time you change Python code while the
server is running, the server will validate all of your installed models. (See
the upcoming section on the ``validate`` command.) If the validator finds
errors, it will print them to standard output, but it wont stop the server.
该服务器启动后,在服务器运行的同时更改Python代码时,该服务器会验证你安装的所有模块(参考马上就要讲到的 ``validate`` 命令). 如果发现错误,服务器会把它们输出到标准输出,但是服务器并不会停止。
4105天前 翻译
87#翻译
You can run as many servers as you want, as long as theyre on separate ports.
Just execute ``django-admin.py runserver`` more than once.
你可以同时运行许多个服务器实例,只要它们各自监听不同的端口。要运行多个服务器实例,只要多次执行 ``django-admin.py runserver`` 就可以了。
5734天前 翻译
88#翻译
Note that the default IP address, 127.0.0.1, is not accessible from other
machines on your network. To make your development server viewable to other
machines on the network, use its own IP address (e.g., 192.168.2.1) or 0.0.0.0.
值得一提的是默认的IP地址 127.0.0.1 无法从网络上的其他机器访问到,要使服务器可以被网络中的其他服务器访问到,使用真实IP地址(例如192.168.2.1)或者0.0.0.0
5734天前 翻译
89#翻译
For example, to run the server on port 7000 on IP address 127.0.0.1, use this:
例如,要在127.0.0.1的7000端口运行该服务器,使用如下方法:
5734天前 翻译
92#翻译
Or to run the server on port 7000 on IP address 1.2.3.4, use this:
或者在IP地址1.2.3.4的7000端口运行,使用:
4105天前 翻译
95#翻译
Serving Static Files with the Development Server
................................................
使用开发服务器支持静态文件访问
................................................
4103天前 翻译
96#翻译
By default, the development server doesnt serve any static files for your site
(such as CSS files, images, things under ``MEDIA_ROOT_URL`` , etc.). If you
want to configure Django to serve static media, read about serving static media
at `http://www.djangoproject.com/documentation/0.96/static_files/`_.
开发中的服务器默认不对你站点的任何静态文件提供服务(如CSS文件,图片,在“MEDIA_ROOT_URL"下的文件,等等)。如果要指定Django对这些静态文件服务,请参阅`http://www.djangoproject.com/documentation/0.96/static_files/`。
4103天前 翻译
97#翻译
Turning Off Autoreload
......................
关闭自动加载
......................
5727天前 翻译
98#翻译
To disable autoreloading of code while the development server is running, use
the ``--noreload`` option, like so:
在开发服务器运行情况下,如果要关闭代码自动载入,用 ``--noreload`` 选项, 像这样:
5666天前 翻译
101#翻译
shell
'''''
翻译 5940天前 翻译
102#翻译
Starts the Python interactive interpreter.
启动Python交互解释器.
5727天前 翻译
103#翻译
Django will use IPython (`http://ipython.scipy.org/`_) if its installed. If you
have IPython installed and want to force use of the plain Python interpreter,
use the ``--plain`` option, like so:
Django将使用IPython(http://ipython.scipy.org/)(如果已经安装了IPython)。如果应经安装了IPython,但是想使用平常的Python解释器,可以使用''--plain''选项,就像这样:
5423天前 翻译
106#翻译
sql [appname appname ]
''''''''''''''''''''''
6TEKWY  <a href="http://psqhgabdjtfh.com/">psqhgabdjtfh</a>, [url=http://mvguyihpnoud.com/]mvguyihpnoud[/url], [link=http://qcvqvsmuqgli.com/]qcvqvsmuqgli[/link], http://qallzuxhoueq.com/
4103天前 翻译
107#翻译
Prints the ``CREATE TABLE`` SQL statements for the given app names.
为指定应用名称打印“CREATE TABLE” 的sql声明。
3883天前 翻译
108#翻译
sqlall [appname appname ]
'''''''''''''''''''''''''
翻译 5940天前 翻译
109#翻译
Prints the ``CREATE TABLE`` and initial-data SQL statements for the given app
names.
为指定应用名称打印“CREATE TABLE”和初始化数据的sql声明。
3888天前 翻译
110#翻译
Refer to the description of ``sqlcustom`` for an explanation of how to specify
initial data.
参见“sqlcustom”关于如何指定初始化数据的解释描述。
4105天前 翻译
111#翻译
sqlclear [appname appname ]
'''''''''''''''''''''''''''
gfZpFB  <a href="http://xpgahgflafgn.com/">xpgahgflafgn</a>, [url=http://pnqpwgmqbrxp.com/]pnqpwgmqbrxp[/url], [link=http://uuzvdwwszksl.com/]uuzvdwwszksl[/link], http://aljvewfxdyro.com/
4103天前 翻译
112#翻译
Prints the ``DROP TABLE`` SQL statements for the given app names.
为给定的应用名打印``DROP TABLE``SQL语句。
5666天前 翻译
113#翻译
sqlcustom [appname appname ]
''''''''''''''''''''''''''''
HIZ0OB  <a href="http://isprildipxkc.com/">isprildipxkc</a>, [url=http://wygcwqlblyww.com/]wygcwqlblyww[/url], [link=http://tqwcogzrxoix.com/]tqwcogzrxoix[/link], http://mxzfxclzfowj.com/
4103天前 翻译
114#翻译
Prints the custom SQL statements for the given app names.
为给定应用名称打印自定义的sql声明。
3949天前 翻译
115#翻译
For each model in each specified app, this command looks for the file
``<appname>/sql/<modelname>.sql`` , where ``<appname>`` is the given app name
and ``<modelname>`` is the models name in lowercase. For example, if you have
an app ``news`` that includes a ``Story`` model, ``sqlcustom`` will attempt to
read a file ``news/sql/story.sql`` and append it to the output of this command.
对于每个指定应用中的每个模型,此命令查找文件“<appname>/sql/<modelname>.sql”,这里“<appname>”是给定的应用名称,“<modelname>”是小写的模型名称。比如,如果你有一个应用“news”,包含一个“Story”模型,那么"sqlcustom"将会尝试读取文件“news/sql/story.sql”并追加其到此命令的输出。
2621天前 gqwvfgxn 翻译
116#翻译
Each of the SQL files, if given, is expected to contain valid SQL. The SQL
files are piped directly into the database after all of the models
table-creation statements have been executed. Use this SQL hook to make any
table modifications, or insert any SQL functions into the database.
每个给出的sql文件应该包含合法的sql。当所有的模型数据表创建声明都已经执行完成时sql文件会直接传送至数据库。使用这个sql钩子以修改任何数据表,或者输入任何sql函数到数据库。
5382天前 翻译
117#翻译
Note that the order in which the SQL files are processed is undefined.
注意:SQL文件的处理顺序并没有定义。
5666天前 翻译
118#翻译
sqlindexes [appname appname ]
'''''''''''''''''''''''''''''
sqlindexes [appname appname ]
'''''''''''''''''''''''''''''
5718天前 翻译
119#翻译
Prints the ``CREATE INDEX`` SQL statements for the given app names.
为给定的应用名打印  ``CREATE INDEX``  SQL 语句.
5727天前 翻译
120#翻译
sqlreset [appname appname ]
'''''''''''''''''''''''''''
sqlreset [appname appname ]
'''''''''''''''''''''''''''
5718天前 翻译
121#翻译
Prints the ``DROP TABLE`` SQL, and then the ``CREATE TABLE`` SQL, for the given
app names.
对给定的应用名,打印``DROP TABLE``SQL语句,然后是``CREATE TABLE``SQL语句。
5718天前 翻译
122#翻译
sqlsequencereset [appname appname ]
'''''''''''''''''''''''''''''''''''
sqlsequencereset [appname appname ]
'''''''''''''''''''''''''''''''''''
5718天前 翻译
123#翻译
Prints the SQL statements for resetting sequences for the given app names.
对给定的应用名,打印重置序列的SQL语句。
5718天前 翻译
124#翻译
Youll need this SQL only if youre using PostgreSQL and have inserted data by
hand. When you do that, PostgreSQLs primary key sequences can get out of sync
from whats in the database, and the SQL emitted by this command will clear it
up.
只有当你使用PostgreSQL并且已经手动输入数据时,你将需要这些sql。当你那样做时,PostgreSQL的主键序列不会从数据库同步,并且此命令所提交的sql将会清除它。
5382天前 翻译
125#翻译
startapp [appname]
''''''''''''''''''
翻译 5940天前 翻译
126#翻译
Creates a Django application directory structure for the given app name in the
current directory.
在当前目录为给定的应用名创建Django应用程序目录结构.
5727天前 翻译
127#翻译
startproject [projectname]
''''''''''''''''''''''''''
翻译 5940天前 翻译
128#翻译
Creates a Django project directory structure for the given project name in the
current directory.
在当前目录为给定的项目名创建Django项目目录结构.
5713天前 翻译
129#翻译
syncdb
''''''
翻译 5940天前 翻译
130#翻译
Creates the database tables for all applications in ``INSTALLED_APPS`` whose
tables have not already been created.
為所有的應用在``INSTALLED_APPS``中不存在的表,創建數據庫表
5531天前 翻译
131#翻译
Use this command when youve added new applications to your project and want to
install them in the database. This includes any applications shipped with
Django that might be in ``INSTALLED_APPS`` by default. When you start a new
project, run this command to install the default applications.
用這命令當你增加新的應用到你的項目,想要安裝他們到數據庫,

當你開始一個新的項目,運行這個命令安裝到默認的應用
5531天前 翻译
132#翻译
If youre installing the ``django.contrib.auth`` application, ``syncdb`` will
give you the option of creating a superuser immediately. ``syncdb`` will also
search for and install any fixture named ``initial_data`` . See the
documentation for ``loaddata`` for details on the specification of fixture data
files.
如果你正在安装“django.contrib.auth”应用,“syncdb”将会给出立即创建超级用户的选项。“syncdb”也将会搜索并安装任何命名为“initial_data”的夹具 。关于夹具数据文件的规范参见“loaddata”文档。
5382天前 翻译
133#翻译
test
''''
测试
。。。。
4856天前 翻译
134#翻译
Discovers and runs tests for all installed models. Testing was still under
development when this book was being written, so to learn more youll need to
read the documentation online at
`http://www.djangoproject.com/documentation/0.96/testing/`_.
为所有已安装模型发现和执行测试。当写作本书时测试工作仍然处于开发阶段,因此想了解更多你需要阅读在线文档:`http://www.djangoproject.com/documentation/0.96/testing/` 。
5382天前 翻译
135#翻译
validate
''''''''
验证
5495天前 翻译
136#翻译
Validates all installed models (according to the ``INSTALLED_APPS`` setting)
and prints validation errors to standard output.
根据   ``INSTALLED_APPS``  的设置值, 验证所有的安装模块, 并将
验证错误打印到标准输出上.
5727天前 翻译
137#翻译
Available Options
`````````````````
可用选项
`````````````````
5727天前 翻译
138#翻译
The sections that follow outline the options that ``django-admin.py`` can take.
下面的这些节将会列举 ``django-admin.py`` 工具可以带的各个选项.
5727天前 翻译
139#翻译
settings
''''''''
設置
5531天前 翻译
140#翻译
Example usage:
示例用法:
5727天前 翻译
143#翻译
Explicitly specifies the settings module to use. The settings module should be
in Python package syntax (e.g., ``mysite.settings`` ). If this isnt provided,
``django-admin.py`` will use the ``DJANGO_SETTINGS_MODULE`` environment
variable.
显示地指定所用的设置模块。该设置模块应该遵循 Python包语法(例如,“mysite.settings”)。如果不指定,“django-admin.py”将会使用环境变量“DJANGO_SETTINGS_MODULE”。
5382天前 翻译
144#翻译
Note that this option is unnecessary in ``manage.py`` , because it takes care
of setting ``DJANGO_SETTINGS_MODULE`` for you.
注意这个选项在 ``manage.py`` 中不是必须的, 因为它负责为您设定``DJANGO_SETTINGS_MODULE`` .
5727天前 翻译
145#翻译
pythonpath
''''''''''
python的目录
5495天前 翻译
146#翻译
Example usage:
示例用法:
5727天前 翻译
149#翻译
Adds the given filesystem path to the Python import search path. If this isnt
provided, ``django-admin.py`` will use the ``PYTHONPATH`` environment variable.
添加给定路径到Python的导入搜索路径. 如果没有提供,  ``django-admin.py`` 将使用 ``PYTHONPATH`` 环境变量.
5727天前 翻译
150#翻译
Note that this option is unnecessary in ``manage.py`` , because it takes care
of setting the Python path for you.
注意, 这个选项在 ``manage.py`` 中不是必须的, 因它负责为您设定Python路径.
5727天前 翻译
151#翻译
format
''''''
格式化
5495天前 翻译
152#翻译
Example usage:
示例用法:
5727天前 翻译
155#翻译
Specifies the output format that will be used. The name provided must be the
name of a registered serializer.
指定一个要使用的输出格式. 提供的名字必须是一个注册的serializer的名字.
5727天前 翻译
156#翻译
help
''''
翻译 5940天前 翻译
157#翻译
Displays a help message that includes a terse list of all available actions and
options.
显示一个包含所有可用功能和选项的简要列表.
5727天前 翻译
158#翻译
indent
''''''
缩进
5495天前 翻译
159#翻译
Example usage:
示例用法:
5727天前 翻译
162#翻译
Specifies the number of spaces that will be used for indentation when
pretty-printing output. By default, output will *not* be pretty-printed.
Pretty-printing will only be enabled if the indent option is provided.
指定友好输出(优美输出/格式化输出)时用于缩进的空格数量。默认的输出将不会是友好输出。友好输出只在提供缩进选项时可用。
5382天前 翻译
163#翻译
noinput
'''''''
翻译 5940天前 翻译
164#翻译
Indicates you will not be prompted for any input. This is useful if the
``django-admin`` script will be executed as an unattended, automated script.
表示将不会提示你做任何输入。这一点在“django-admin”脚本作为一个无人值守的自动脚本执行时很有用。
5382天前 翻译
165#翻译
noreload
''''''''
翻译 5940天前 翻译
166#翻译
Disables the use of the autoreloader when running the development server.
当运行开发服务器的时候, 禁止使用自动加载器.
5727天前 翻译
167#翻译
version
'''''''
翻译 5940天前 翻译
168#翻译
Displays the current Django version.
显示当前的Django版本.
5727天前 翻译
169#翻译
Example output:
示例输出:
5727天前 翻译
172#翻译
verbosity
'''''''''
翻译 5940天前 翻译
173#翻译
Example usage:
示例用法:
5727天前 翻译
176#翻译
Determines the amount of notification and debug information that will be
printed to the console. ``0`` is no output, ``1`` is normal output, and ``2``
is verbose output.
确定通知数量和打印到控制台的调试信息。0代表没有输出,1代表正常输出,2代表详细输出。
5382天前 翻译
177#翻译
adminmedia
''''''''''
翻译 5940天前 翻译
178#翻译
Example usage:
示例用法:
5727天前 翻译
181#翻译
Tells Django where to find the various CSS and JavaScript files for the admin
interface when running the development server. Normally these files are served
out of the Django source tree, but because some designers customize these files
for their site, this option allows you to test against custom versions.
用来告诉Django当使用自带的开发服务器的时候,如何为admin界面去寻找不同的CSS和JavaScript文件。通常这些文件都是存放在Django的源代码树的中,但是因为有些设计者为他们自己的网站使用定制了这些文件,而这个选项允许你试着取消这些定制的版本。
5518天前 翻译