|
1 | 1 | .. _intro-whatsnext:
|
2 | 2 |
|
3 | 3 | =================
|
4 |
| -What to read next |
| 4 | +次のステップへ |
5 | 5 | =================
|
6 | 6 |
|
7 | 7 | :revision-up-to: 8961 (1.0)
|
@@ -171,43 +171,46 @@ Python コードの更新と同様, ``svn update`` を実行してください
|
171 | 171 |
|
172 | 172 | テキストドキュメントの便利でローテクな使い方の一つに Unix の ``grep`` ユー
|
173 | 173 | ティリティを使った全ドキュメント検索があります.例えば,以下のようにすれば,
|
174 |
| -"max_length" について触ている部分を表示できます:: |
| 174 | +"max_length" について触ている部分を表示できます: |
175 | 175 |
|
176 | 176 | .. code-block:: bash
|
177 | 177 |
|
178 | 178 | $ grep -r max_length /path/to/django/docs/
|
179 |
| - |
180 |
| -As HTML, locally |
181 |
| ----------------- |
182 | 179 |
|
183 |
| -You can get a local copy of the HTML documentation following a few easy steps: |
| 180 | +ローカルで HTML で読む |
| 181 | +------------------------ |
184 | 182 |
|
185 |
| - * Django's documentation uses a system called Sphinx__ to convert from |
186 |
| - plain text to HTML. You'll need to install Sphinx by either downloading |
187 |
| - and installing the package from the Sphinx website, or by Python's |
188 |
| - ``easy_install``: |
| 183 | +以下のステップを踏めば、 HTML ドキュメントのローカルコピーを手に入れられま |
| 184 | +す: |
| 185 | + |
| 186 | + * Django のドキュメントは、 Sphinx__ というシステムを使ってプレーンテキ |
| 187 | + ストから HTML への変換を行っています。 Sphinx のウェブサイトから |
| 188 | + Sphinx をダウンロードしてインストールするか、 Python の |
| 189 | + ``easy_install`` を使ってインストールします: |
189 | 190 |
|
190 | 191 | .. code-block:: bash
|
191 | 192 |
|
192 | 193 | $ easy_install Sphinx
|
193 | 194 |
|
194 |
| - * Then, just use the included ``Makefile`` to turn the documentation into |
195 |
| - HTML: |
| 195 | + * Django のドキュメントディレクトリにある ``Makefile`` を使って、ドキュ |
| 196 | + メントを HTML に変換します: |
196 | 197 |
|
197 | 198 | .. code-block:: bash
|
198 | 199 |
|
199 | 200 | $ cd path/to/django/docs
|
200 | 201 | $ make html
|
201 | 202 |
|
202 |
| - You'll need `GNU Make`__ installed for this. |
| 203 | + `GNU Make`__ がインストールされている必要があります。 |
203 | 204 |
|
204 |
| - * The HTML documentation will be placed in ``docs/_build/html``. |
| 205 | + * HTML ドキュメントが ``docs/_build/html`` に生成されます。 |
205 | 206 |
|
206 | 207 | .. warning::
|
207 | 208 |
|
208 |
| - At the time of this writing, Django's using a version of Sphinx not |
209 |
| - yet released, so you'll currently need to install Sphinx from the |
210 |
| - source. We'll fix this shortly. |
| 209 | + この節を書いている時点では、 Django はリリース前の Sphinx を使っていま |
| 210 | + す。そのため、ソースコードから Sphinx をインストールせねばなりません。 |
| 211 | + この問題はすぐに修正する予定です。 |
| 212 | + |
| 213 | + (訳注: バージョン 0.4.1 または trunk の Sphinx を使ってください。) |
211 | 214 |
|
212 | 215 | __ http://sphinx.pocoo.org/
|
213 | 216 | __ http://www.gnu.org/software/make/
|
|
0 commit comments