linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation/sphinx: fix primary_domain configuration
@ 2017-03-03 12:24 John Keeping
  2017-03-03 23:47 ` Jonathan Corbet
  0 siblings, 1 reply; 2+ messages in thread
From: John Keeping @ 2017-03-03 12:24 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: linux-doc, linux-kernel, John Keeping

With Sphinx 1.5.3 I get the warning:

	WARNING: primary_domain 'C' not found, ignored.

It seems that domain names in Sphinx are case-sensitive and for the C
domain the name must be lower case.

Signed-off-by: John Keeping <john@metanate.com>
---
 Documentation/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/conf.py b/Documentation/conf.py
index f6823cf01275..7fadb3b83293 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -135,7 +135,7 @@ pygments_style = 'sphinx'
 # If true, `todo` and `todoList` produce output, else they produce nothing.
 todo_include_todos = False
 
-primary_domain = 'C'
+primary_domain = 'c'
 highlight_language = 'none'
 
 # -- Options for HTML output ----------------------------------------------
-- 
2.12.0.377.gf910686b23.dirty

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Documentation/sphinx: fix primary_domain configuration
  2017-03-03 12:24 [PATCH] Documentation/sphinx: fix primary_domain configuration John Keeping
@ 2017-03-03 23:47 ` Jonathan Corbet
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Corbet @ 2017-03-03 23:47 UTC (permalink / raw)
  To: John Keeping; +Cc: linux-doc, linux-kernel

On Fri,  3 Mar 2017 12:24:05 +0000
John Keeping <john@metanate.com> wrote:

> With Sphinx 1.5.3 I get the warning:
> 
> 	WARNING: primary_domain 'C' not found, ignored.
> 
> It seems that domain names in Sphinx are case-sensitive and for the C
> domain the name must be lower case.

Applied, thanks.

jon

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-03-03 23:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-03 12:24 [PATCH] Documentation/sphinx: fix primary_domain configuration John Keeping
2017-03-03 23:47 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).