Skip to content

Commit 0a2171a

Browse files
committed
Fix several minor issues
1 parent a9bfebc commit 0a2171a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

doc/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
# Add any paths that contain custom static files (such as style sheets) here,
158158
# relative to this directory. They are copied after the builtin static files,
159159
# so a file named "default.css" will overwrite the builtin "default.css".
160-
html_static_path = ['_static']
160+
html_static_path = []
161161

162162
# Add any extra paths that contain custom files (such as robots.txt or
163163
# .htaccess) here, relative to this directory. These files are copied

doc/sphinx/source/developer_guide2/git_repository.inc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.. _git_repository:
22

3+
**************
34
Git repository
45
**************
56

@@ -161,7 +162,7 @@ Do-s
161162
* Comment your code as much as possible and in English.
162163
* Use short but self-explanatory variable names (e.g., model_input and reference_input instead of xm and xr).
163164
* Consider a modular/functional programming style. This often makes code easier to read and deletes intermediate variables immediately. If possible, separate diagnostic calculations from plotting routines.
164-
* Consider reusing or extending existing code. General-purpose code can be found in diag_scripts/lib/ and in plot_scripts/.
165+
* Consider reusing or extending existing code. General-purpose code can be found in esmvaltool/diag_scripts/shared/.
165166
* Comment all switches and parameters including a list of all possible settings/options in the header section of your code (see also Section :ref:`std_diag`).
166167
* Use templates for recipes (Section :ref:`std_recipe`) and diagnostics (Section :ref:`std_diag`) to help with proper documentation.
167168
* Keep your *FEATURE BRANCH* regularly synchronized with the *DEVELOPMENT BRANCH* (git merge).
@@ -174,5 +175,5 @@ Don't-s
174175
* Do not develop without proper version control (see do-s above).
175176
* Avoid large (memory, disk space) intermediate results. Delete intermediate files/variables or see modular/functional programming style.
176177
* Do not use hard-coded pathnames or filenames.
177-
* Do not mix developments / modifications of the ESMValTool framework and developments / modifications of diagnotics in the same *FEATURE BRANCH*.
178+
* Do not mix developments / modifications of the ESMValTool framework and developments / modifications of diagnostics in the same *FEATURE BRANCH*.
178179

doc/sphinx/source/developer_guide2/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Developer's Guide
33
#################
44

55
.. include:: porting.inc
6-
.. include:: core_team.inc
76
.. include:: git_repository.inc
7+
.. include:: core_team.inc

doc/sphinx/source/recipes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Recipes
66

77
recipe_clouds
88
recipe_crem
9+
recipe_cvdp
910
recipe_flato13ipcc
1011
recipe_perfmetrics
1112
recipe_runoff_et

0 commit comments

Comments
 (0)