Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Houghton <alastair@alastairs-place.net>2015-01-13 21:31:23 +0300
committerAlastair Houghton <alastair@alastairs-place.net>2015-01-13 21:31:23 +0300
commit8b0770126f00c0f885e654f127ebf5e03cfd42e0 (patch)
treea633d139ef7f585fca84bcd604bd8cabf02cdec8 /sphinx/config.py
parentb90f319e371744fb017b5ce3c9de1c2d58816aa3 (diff)
More changes for Apple Help support.
Diffstat (limited to 'sphinx/config.py')
-rw-r--r--sphinx/config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/config.py b/sphinx/config.py
index 0336b60cb..f7c0cefe8 100644
--- a/sphinx/config.py
+++ b/sphinx/config.py
@@ -134,8 +134,8 @@ class Config(object):
'applehelp'),
applehelp_bundle_id = (lambda self: 'com.mycompany.%s.help' \
% make_filename(self.project), 'applehelp'),
- applehelp_dev_region = ('en_us', 'applehelp'),
- applehelp_bundle_version = (1, 'applehelp'),
+ applehelp_dev_region = ('en-us', 'applehelp'),
+ applehelp_bundle_version = ('1', 'applehelp'),
applehelp_icon = (None, 'applehelp'),
applehelp_kb_product = (lambda self: '%s-%s' \
% (make_filename(self.project), self.release),
@@ -146,6 +146,7 @@ class Config(object):
applehelp_min_term_length = (None, 'applehelp'),
applehelp_stopwords = (lambda self: self.language or 'en', 'applehelp'),
applehelp_locale = (lambda self: self.language or 'en_us', 'applehelp'),
+ applehelp_title = (lambda self: self.project + ' Help', 'applehelp'),
# Epub options
epub_basename = (lambda self: make_filename(self.project), None),