Changeset 10590
- Timestamp:
- 2019-01-28T15:21:15+01:00 (6 years ago)
- Location:
- NEMO/trunk/doc/rst/source
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/doc/rst/source/NEMO_guide.rst
r10460 r10590 46 46 47 47 .. toctree:: 48 :hidden: 49 :caption: Contributions are welcome! 50 51 contributing 52 53 .. toctree:: 48 54 :hidden: 49 55 :caption: Glossary -
NEMO/trunk/doc/rst/source/conf.py
r10460 r10590 7 7 # http://www.sphinx-doc.org/en/master/config 8 8 9 # -- Path setup --------------------------------------------------------------10 11 # If extensions (or modules to document with autodoc) are in another directory,12 # add these directories to sys.path here. If the directory is relative to the13 # documentation root, use os.path.abspath to make it absolute, like shown here.14 #15 # import os16 # import sys17 # sys.path.insert(0, os.path.abspath('.'))18 19 20 9 # -- Project information ----------------------------------------------------- 21 10 22 11 project = 'NEMO' 23 copyright = ''24 12 author = 'NEMO System Team' 25 13 … … 27 15 version = '4.0' 28 16 # The full version, including alpha/beta/rc tags 29 release = '4.0 rc'17 release = '4.0.0' 30 18 31 19 32 20 # -- General configuration --------------------------------------------------- 33 34 # If your documentation needs a minimal Sphinx version, state it here.35 #36 # needs_sphinx = '1.0'37 21 38 22 # Add any Sphinx extension module names here, as strings. They can be … … 41 25 extensions = ['sphinx.ext.extlinks', 'sphinxcontrib.bibtex'] 42 26 43 # Add any paths that contain templates here, relative to this directory.44 templates_path = ['_templates']45 46 # The suffix(es) of source filenames.47 # You can specify multiple suffix as a list of string:48 #49 # source_suffix = ['.rst', '.md']50 source_suffix = '.rst'51 52 27 # The master toctree document. 53 28 master_doc = 'NEMO_guide' 54 55 # The language for content autogenerated by Sphinx. Refer to documentation56 # for a list of supported languages.57 #58 # This is also used if you do content translation via gettext catalogs.59 # Usually you set "language" from the command line for these cases.60 language = None61 29 62 30 # List of patterns, relative to source directory, that match files and … … 74 42 # a list of builtin themes. 75 43 # 76 #html_theme = 'alabaster'77 44 html_theme = 'sphinx_rtd_theme' 78 45 … … 81 48 # documentation. 82 49 # 83 html_theme_options = { 84 # Alabaster theme options 85 # 'logo': 'NEMO_grey.png', 86 # 'description': 'Community ocean model for multifarious space and time scales', 87 # 'fixed_sidebar': True, 88 } 50 html_theme_options = {} 89 51 90 52 # Add any paths that contain custom static files (such as style sheets) here, … … 93 55 html_static_path = ['_static'] 94 56 95 # Custom sidebar templates, must be a dictionary that maps document names96 # to template names.97 #98 # The default sidebars (for documents that don't match any pattern) are99 # defined by theme itself. Builtin themes are using these templates by100 # default: ``['localtoc.html', 'relations.html', 'sourcelink.html',101 # 'searchbox.html']``.102 #103 # html_sidebars = {}104 105 57 html_favicon = '_static/ORCA.ico' 106 107 # -- Options for HTMLHelp output ---------------------------------------------108 109 # Output file base name for HTML help builder.110 htmlhelp_basename = 'NEMOdoc'111 58 112 59 … … 140 87 141 88 142 # -- Options for manual page output ------------------------------------------143 144 # One entry per manual page. List of tuples145 # (source start file, name, description, authors, manual section).146 man_pages = [147 (master_doc, 'nemo', 'NEMO Documentation',148 [author], 1)149 ]150 151 152 # -- Options for Texinfo output ----------------------------------------------153 154 # Grouping the document tree into Texinfo files. List of tuples155 # (source start file, target name, title, author,156 # dir menu entry, description, category)157 texinfo_documents = [158 (master_doc, 'NEMO', 'NEMO Documentation',159 author, 'NEMO', 'One line description of project.',160 'Miscellaneous'),161 ]162 163 164 89 # -- Customisation ----------------------------------------------------------- 165 90 … … 170 95 # Link aliases 171 96 extlinks = { 172 'doi' : ('http ://doi.org/%s' , None),173 'forge' : ('http ://forge.ipsl.jussieu.fr/nemo/%s' , None),174 'github' : ('http ://github.com/%s' , None),175 'xios' : ('http ://forge.ipsl.jussieu.fr/ioserver/%s', None),176 'website': ('http ://www.nemo-ocean.eu/%s' , None),177 'zenodo' : ('http ://zenodo.org/publication/%s' , None)97 'doi' : ('https://doi.org/%s' , None), 98 'forge' : ('https://forge.ipsl.jussieu.fr/nemo/%s' , None), 99 'github' : ('https://github.com/%s' , None), 100 'xios' : ('https://forge.ipsl.jussieu.fr/ioserver/%s', None), 101 'website': ('https://www.nemo-ocean.eu/%s' , None), 102 'zenodo' : ('https://zenodo.org/publication/%s' , None) 178 103 } 179 104
Note: See TracChangeset
for help on using the changeset viewer.