Changeset 11761
- Timestamp:
- 2019-10-22T12:02:46+02:00 (5 years ago)
- Location:
- NEMO/trunk
- Files:
-
- 4 added
- 2 deleted
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/doc/README.rst
r11154 r11761 1 ************************** 2 Building the documentation 3 ************************** 1 4 5 .. todo:: 6 7 8 9 :file:`latex` : LaTeX sources and Latexmk configuration to build reference manuals with :file:`manual_build.sh` 10 11 :file:`namelists`: Namelist blocks included in the documentation 12 13 :file:`rst` : |RST man|_ sources and Sphinx configuration to build this guide hereby with :file:`guide_build.sh` 14 15 .. |RST man| replace:: reStructuredText (rst) 2 16 3 17 .. warning:: -
NEMO/trunk/doc/rst/source/conf.py
r11759 r11761 66 66 # List of patterns, relative to source directory, that match files and 67 67 # directories to ignore when looking for source files. 68 exclude_patterns = ['global.rst', ' crs.rst']68 exclude_patterns = ['global.rst', 'readme.rst'] 69 69 70 70 # The reST default role (used for this markup: `text`) to use for all documents. … … 267 267 # SVN revision 268 268 import subprocess 269 rev ision= subprocess.check_output("svnversion").decode("utf-8")270 rst_prolog = '.. |revision| replace:: %s' % rev ision269 rev = subprocess.check_output("svnversion").decode("utf-8") 270 rst_prolog = '.. |revision| replace:: %s' % rev 271 271 272 272 # 'draft' build tag: DRAFT watermark and TODO list 273 273 if tags.has('draft'): 274 todo_include_todos = True 275 todo_emit_warnings = True 274 todo_include_todos = True 275 todo_emit_warnings = True 276 else: 277 exclude_patterns = ['global.rst', 'readme.rst', 'todos.rst', 'unpub*'] -
NEMO/trunk/doc/rst/source/guide.rst
r11752 r11761 3 3 ################# 4 4 5 .. 6 For headings markup, this convention is recommended from Python’s Style Guide 7 # with overline, for parts 8 * with overline, for chapters 9 =, for sections 10 -, for subsections 11 ^, for subsubsections 12 ", for paragraphs 5 .. For headings markup, this convention is recommended from Python’s Style Guide 6 # with overline, for parts 7 * with overline, for chapters 8 =, for sections 9 -, for subsections 10 ^, for subsubsections 11 ", for paragraphs 13 12 14 15 13 'global.rst' contains a list of roles, substitutions and URL links for the guide. 14 It is loaded for each file with the 'rst_epilog' setting in 'conf.py' 16 15 17 .. only:: draft 16 .. toctree:: 17 :hidden: 18 18 19 .. toctree:: 20 :hidden: 19 todos 21 20 22 todos 21 .. Only displayed with 'make drafthtml' 22 23 .. toctree:: 24 :hidden: 25 :caption: Unpublished READMEs 26 :glob: 27 :titlesonly: 28 29 unpub/* 30 31 .. Only displayed with 'make drafthtml' 23 32 24 33 .. toctree:: … … 60 69 .. only:: draft 61 70 71 .. Only on draft 72 62 73 :*Date*: |today| 63 74 :*SVN rev*: |revision| -
NEMO/trunk/src/README.rst
r11760 r11761 8 8 9 9 :file:`ICE`: |NEMO-ICE| 10 10 11 :file:`NST`: AGRIF for embedded zooms 12 11 13 :file:`OCE`: |NEMO-OCE| 14 12 15 :file:`TOP`: |NEMO-MBG|
Note: See TracChangeset
for help on using the changeset viewer.