Browse Source

Add .html in links

pull/242/head
Florian Mounier 9 years ago
parent
commit
02894ab5d6
  1. 2
      docs/basic_customizations.rst
  2. 2
      docs/chart_types.rst
  3. 2
      docs/custom_styles.rst
  4. 18
      docs/documentation.rst
  5. 4
      docs/first_steps.rst
  6. 4
      docs/index.rst
  7. 2
      docs/interpolations.rst
  8. 2
      docs/metadata.rst
  9. 2
      docs/sparks.rst
  10. 6
      docs/styles.rst

2
docs/basic_customizations.rst

@ -621,4 +621,4 @@ Text to display instead of the graph when no data is supplied:
chart.add('line', []) chart.add('line', [])
Next: `Interpolations </interpolations>`_ Next: `Interpolations <interpolations.html>`_

2
docs/chart_types.rst

@ -818,4 +818,4 @@ You can also specify a number for a region and use a department to region aggreg
'976': 212645 '976': 212645
})) }))
Next: `Styles </styles>`_ Next: `Styles <styles.html>`_

2
docs/custom_styles.rst

@ -112,5 +112,5 @@ NB: Now the css rules are prefixed by an unique id, to prevent collisions when i
chart.add('E', [7, 4, 2, 1, 2, 10, 0]) chart.add('E', [7, 4, 2, 1, 2, 10, 0])
Next: `Basic customizations </basic_customizations>`_ Next: `Basic customizations <basic_customizations.html>`_

18
docs/documentation.rst

@ -6,12 +6,12 @@
User documentation User documentation
================== ==================
- `First steps </first_steps>`_ - learn how to very simply make beautiful charts. - `First steps <first_steps.html>`_ - learn how to very simply make beautiful charts.
- `Charts types </chart_types>`_ - see what pygal can do for you. - `Charts types <chart_types.html>`_ - see what pygal can do for you.
- `Styles </styles>`_ - change the style. - `Styles <styles.html>`_ - change the style.
- `Basic customizations </basic_customizations>`_ - start to improve your charts. - `Basic customizations <basic_customizations.html>`_ - start to improve your charts.
- `Interpolations </interpolations>`_ - smooth your lines. - `Interpolations <interpolations.html>`_ - smooth your lines.
- `Sparklines </sparks>`_ - create simple sparklines. - `Sparklines <sparks.html>`_ - create simple sparklines.
- `Metadata </metadata>`_ - enrich your graph. - `Metadata <metadata.html>`_ - enrich your graph.
- `Other customizations </other_customizations>`_ - customize all the things. - `Other customizations <other_customizations.html>`_ - customize all the things.
- `Embedding in a web page </web>`_ - see several ways to use pygal on the intertubes. - `Embedding in a web page <web.html>`_ - see several ways to use pygal on the intertubes.

4
docs/first_steps.rst

@ -6,7 +6,7 @@
First steps First steps
=========== ===========
First you need to download the pygal package, see the `download page </download>`_. First you need to download the pygal package, see the `download page <download.html>`_.
When it's done, you are ready to make your first chart: When it's done, you are ready to make your first chart:
@ -65,4 +65,4 @@ And finally add a title and some labels:
bar_chart.add('Padovan', [1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12]) bar_chart.add('Padovan', [1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12])
Next: `Charts types </chart_types>`_ Next: `Charts types <chart_types.html>`_

4
docs/index.rst

@ -64,7 +64,7 @@ It features various graph types:
Python/Css styling with some pre-defined themes. See `styling </styles/>`_. Python/Css styling with some pre-defined themes. See `styling </styles/>`_.
And a lot of options to `customize the charts. </basic_customizations>`_ And a lot of options to `customize the charts. <basic_customizations.html>`_
Get it ! Get it !
@ -73,7 +73,7 @@ Get it !
- Get the package on `pypi <http://pypi.python.org/pypi/pygal/>`_ - Get the package on `pypi <http://pypi.python.org/pypi/pygal/>`_
- Fork me on `github <http://github.com/Kozea/pygal>`_ - Fork me on `github <http://github.com/Kozea/pygal>`_
More information in the `download page </download>`_ More information in the `download page <download.html>`_
Get started Get started

2
docs/interpolations.rst

@ -117,4 +117,4 @@ You can change the resolution of the interpolation with the help of `interpolati
chart.add('line', [1, 5, 17, 12, 5, 10]) chart.add('line', [1, 5, 17, 12, 5, 10])
Next: `Sparklines </sparks>`_ Next: `Sparklines <sparks.html>`_

2
docs/metadata.rst

@ -96,4 +96,4 @@ You can specify a dictionary to xlink with all links attributes:
}]) }])
Next: `Other customizations </other_customizations>`_ Next: `Other customizations <other_customizations.html>`_

2
docs/sparks.rst

@ -77,4 +77,4 @@ You can also specify an explicit minimum for the values:
 `▁▂▃█▆▂▄`  `▁▂▃█▆▂▄`
Next: `Metadata </metadata>`_ Next: `Metadata <metadata.html>`_

6
docs/styles.rst

@ -4,6 +4,6 @@
There are three ways to style the charts: There are three ways to style the charts:
- Using `built-in themes </builtin_styles>`_ - Using `built-in themes <builtin_styles.html>`_
- Using `parametric themes </parametric_styles>`_ - Using `parametric themes <parametric_styles.html>`_
- Using `custom themes </custom_styles>`_ - Using `custom themes <custom_styles.html>`_

Loading…
Cancel
Save