File tree 2 files changed +6
-11
lines changed
2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ documentation local :
315
315
316
316
.. code-block:: bash
317
317
318
- make serve
318
+ make htmlview
319
319
320
320
321
321
La documentation est publiée à l' adresse `<http://localhost:8000/library/sys.html>`_.
@@ -329,7 +329,7 @@ nécessaire.
329
329
Poedit donne beaucoup d' avertissements, par exemple pour vous informer que
330
330
« la traduction devrait commencer par une majuscule » car c' est le cas pour
331
331
la source. Ces avertissements ne sont pas tous fondés. En cas de doute,
332
- * affichez et relisez la page HTML produite* avec ` ` make serve ` ` .
332
+ * affichez et relisez la page HTML produite* avec ` ` make htmlview ` ` .
333
333
334
334
Quatrième étape : publier sa traduction
335
335
=======================================
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ all: ensure_prerequisites
98
98
-D latex_elements.inputenc= \
99
99
-D latex_elements.fontenc=' \
100
100
$(MODE )
101
- @echo " Build success, open file://$( abspath venv/cpython/) /Doc/build/html/index.html or run 'make serve ' to see them."
101
+ @echo " Build success, open file://$( abspath venv/cpython/) /Doc/build/html/index.html or run 'make htmlview ' to see them."
102
102
103
103
104
104
# We clone cpython/ inside venv/ because venv/ is the only directory
@@ -117,14 +117,9 @@ ensure_prerequisites: venv/cpython/.git/HEAD
117
117
exit 1; \
118
118
fi
119
119
120
-
121
- .PHONY : serve
122
- serve :
123
- ifdef SERVE_PORT
124
- $(MAKE) -C venv/cpython/Doc/ serve SERVE_PORT=$(SERVE_PORT)
125
- else
126
- $(MAKE) -C venv/cpython/Doc/ serve
127
- endif
120
+ .PHONY : htmlview
121
+ htmlview : MODE=htmlview
122
+ htmlview : all
128
123
129
124
.PHONY : todo
130
125
todo : ensure_prerequisites
You can’t perform that action at this time.
0 commit comments