Commit 206927e1 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1260027: Document how to compile the documentation on Windows

r=gerv
parent eb7f6697
...@@ -115,22 +115,22 @@ Dependency Graphs ...@@ -115,22 +115,22 @@ Dependency Graphs
================= =================
Bugzilla can draw graphs of the dependencies (depends on/blocks relationships) Bugzilla can draw graphs of the dependencies (depends on/blocks relationships)
between bugs, if you install a package called :file:`dot`. between bugs, if you install a package called :file:`graphviz`.
Linux Linux
----- -----
Put the complete path to the :file:`dot` command (from the ``graphviz`` Put the complete path to the :file:`dot` command (from the ``graphviz``
package) in the :param:`webdotbase` parameter. E.g. :paramval:`/usr/bin/dot`. package) in the :param:`webdotbase` variable in the :file:`localconfig` file.
E.g. :paramval:`/usr/bin/dot`.
Windows Windows
------- -------
Download and install Graphviz from Download and install Graphviz from
`the Graphviz website <http://www.graphviz.org/Download_windows.php>`_. Put `the Graphviz website <http://www.graphviz.org/Download_windows.php>`_. Put
the complete path to :file:`dot.exe` in the :param:`webdotbase` parameter, the complete path to :file:`dot.exe` in the :param:`webdotbase` variable in the
using forward slashes as path separators. E.g. :file:`localconfig` file. E.g. :paramval:`C:\\Program Files (x86)\\Graphviz2.38\\bin\\dot.exe`.
:paramval:`C:/Program Files/ATT/Graphviz/bin/dot.exe`.
Documentation Documentation
============= =============
...@@ -139,16 +139,37 @@ Bugzilla has extensive documentation and help, written in ...@@ -139,16 +139,37 @@ Bugzilla has extensive documentation and help, written in
`reStructured Text <http://sphinx-doc.org/rest.html>`_ `reStructured Text <http://sphinx-doc.org/rest.html>`_
format. A generic compiled copy exists on format. A generic compiled copy exists on
`bugzilla.readthedocs.org <https://bugzilla.readthedocs.org/>`_, and `bugzilla.readthedocs.org <https://bugzilla.readthedocs.org/>`_, and
:guilabel:`Help` links point to it by default. If you want to build and use a :guilabel:`Help` links point to it by default. You can also build and use
local copy of the documentation, perhaps because you have added Bugzilla a local copy of the documentation, for instance because you have added Bugzilla
extensions which come with documentation, or because your users don't have extensions which come with documentation, or because your users don't have
Internet access from their machines, then: Internet access from their machines.
* Install `Sphinx <http://sphinx-doc.org/>`_
(:file:`python-sphinx` package on Debian/Ubuntu)
Then run :command:`docs/makedocs.pl` in your Bugzilla directory.
Bugzilla will automatically detect that you've compiled the documentation Bugzilla will automatically detect that you've compiled the documentation
and link to it in preference to the copy on the Internet. Don't forget to and link to it in preference to the copy on the Internet. Don't forget to
recompile it when you upgrade Bugzilla or install new extensions. recompile it when you upgrade Bugzilla or install new extensions.
Linux
-----
* Install `Sphinx <http://sphinx-doc.org/>`_. Most Linux distros have it in
a package named :file:`python-sphinx`.
* Then go to your Bugzilla directory and run:
:command:`docs/makedocs.pl`
Windows
-------
* Download and install `Python <https://www.python.org/downloads/>`_.
Both Python 2.7 and 3.x will work. Adding :file:`python` to the :param:`PATH`
environment variable, as suggested by the Python installer, will make your
life easier.
* Install `Sphinx <http://sphinx-doc.org/>`_. Run :command:`cmd.exe` and type:
:command:`pip install sphinx`
* Then go to your :file:`C:\\bugzilla\\docs` directory and run:
:command:`makedocs.pl`
...@@ -89,6 +89,7 @@ Install the following mandatory modules with: ...@@ -89,6 +89,7 @@ Install the following mandatory modules with:
* JSON-XS * JSON-XS
* Win32 * Win32
* Win32-API * Win32-API
* DateTime-TimeZone-Local-Win32
The following modules enable various optional Bugzilla features; try and The following modules enable various optional Bugzilla features; try and
install them, but don't worry too much to begin with if you can't get them install them, but don't worry too much to begin with if you can't get them
...@@ -126,18 +127,20 @@ installed: ...@@ -126,18 +127,20 @@ installed:
* Cache-Memcached * Cache-Memcached
* Text-Markdown * Text-Markdown
* File-Copy-Recursive * File-Copy-Recursive
* GraphViz
If you are using Strawberry Perl, you should use the :file:`install-module.pl` If you are using Strawberry Perl, you should use the :file:`cpanm`
script to install modules, which is the same script used for Linux. Some of script to install modules, which is the same script used for Linux. Some of
the required modules are already installed by default. The remaining ones can the required modules are already installed by default. The remaining ones can
be installed using the command: be installed using the command:
:command:`perl install-module.pl <modulename>` :command:`cpanm -l local <modulename>`
The list of modules to install will be displayed by :file:`checksetup.pl`; see The list of modules to install will be displayed by :file:`checksetup.pl`; see
below. below.
.. warning:: In master, :file:`checksetup.pl` no longer lists these modules.
This will be fixed in :bug:`1251100`.
.. _windows-config-webserver: .. _windows-config-webserver:
Web Server Web Server
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment