mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
merge with 1.0
This commit is contained in:
13
CHANGES
13
CHANGES
@@ -266,15 +266,12 @@ Features added
|
||||
- Added Danish translation, thanks to Hjorth Larsen.
|
||||
- Added Lithuanian translation, thanks to Dalius Dobravolskas.
|
||||
|
||||
* Bugs fixed:
|
||||
|
||||
Release 0.6.8 (in development)
|
||||
==============================
|
||||
|
||||
* #445: Fix links to result pages when using the search function
|
||||
of HTML built with the ``dirhtml`` builder.
|
||||
|
||||
* #444: In templates, properly re-escape values treated with the
|
||||
"striptags" Jinja filter.
|
||||
- #445: Fix links to result pages when using the search function
|
||||
of HTML built with the ``dirhtml`` builder.
|
||||
- #444: In templates, properly re-escape values treated with the
|
||||
"striptags" Jinja filter.
|
||||
|
||||
|
||||
Release 0.6.7 (Jun 05, 2010)
|
||||
|
||||
@@ -173,6 +173,7 @@ class QtHelpBuilder(StandaloneHTMLBuilder):
|
||||
nspace = 'org.sphinx.%s.%s' % (outname, self.config.version)
|
||||
nspace = re.sub('[^a-zA-Z0-9.]', '', nspace)
|
||||
nspace = re.sub(r'\.+', '.', nspace).strip('.')
|
||||
nspace = nspace.lower()
|
||||
|
||||
# write the project file
|
||||
f = codecs.open(path.join(outdir, outname+'.qhp'), 'w', 'utf-8')
|
||||
|
||||
Reference in New Issue
Block a user