From ab1c6a1c81aab40e06ca4b8095da7c6a8c175bde Mon Sep 17 00:00:00 2001 From: Yannis Damigos Date: Wed, 2 Mar 2016 10:38:49 +0200 Subject: doc: Fixed two warnings in html format documentation generation The patch modifies the file doc/conf.py to fix the warnings: 1) the config value 'html_add_permalinks' has type `bool', defaults to `str.' 2) html_static_path entry '/media/projects/zephyr/doc/_static' does not exist Change-Id: I01e74b5db85311c514ef437e75b8f378ce80125f Signed-off-by: Yannis Damigos --- doc/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 039434f34..5784e5c6b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -128,9 +128,9 @@ html_theme_path = ['./themes'] # " v documentation". html_title = "Zephyr Project Documentation" -# If True permalinks will be added to each header. - -html_add_permalinks = False +# This value determines the text for the permalink; it defaults to "ΒΆ". +# Set it to None or the empty string to disable permalinks. +html_add_permalinks = "" # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None @@ -147,7 +147,7 @@ html_add_permalinks = False # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = [] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied -- cgit v1.2.3