Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Create extra files needed for htmlhelp docs #1051

Open
wants to merge 3 commits into
base: wxPy-4.0.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ def cmd_sphinx(options, args):
pwd2 = pushDir(sphinxDir)
buildDir = os.path.join(sphinxDir, 'build')
htmlDir = os.path.join(phoenixDir(), 'docs', 'html')
runcmd('sphinx-build -b html -d %s/doctrees . %s' % (buildDir, htmlDir))
runcmd('sphinx-build -b htmlhelp -d %s/doctrees . %s' % (buildDir, htmlDir))
del pwd2

msg('Postprocessing sphinx output...')
Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
#html_title = None

# A shorter title for the navigation bar. Default is the same as html_title.
html_short_title = 'Phoenix Docs'
html_short_title = 'wxPython'

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
Expand Down Expand Up @@ -194,7 +194,7 @@
#html_file_suffix = ''

# Output file base name for HTML help builder.
htmlhelp_basename = 'PhoenixDocs'
htmlhelp_basename = 'wxPythonDocs'

# -- Options for LaTeX output --------------------------------------------------

Expand Down