lists.arthurdejong.org
RSS feed

python-stdnum commit: r162 - in python-stdnum: . docs docs/_templates docs/_templates/autosummary

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-stdnum commit: r162 - in python-stdnum: . docs docs/_templates docs/_templates/autosummary



Author: arthur
Date: Fri Feb 24 21:43:25 2012
New Revision: 162
URL: http://arthurdejong.org/viewvc/python-stdnum?revision=162&view=revision

Log:
generate documentation using Sphinx

Added:
   python-stdnum/docs/
   python-stdnum/docs/_templates/
   python-stdnum/docs/_templates/autosummary/
   python-stdnum/docs/_templates/autosummary/module.rst
   python-stdnum/docs/conf.py
   python-stdnum/docs/index.rst
   python-stdnum/docs/stdnum.at.uid.rst
   python-stdnum/docs/stdnum.be.vat.rst
   python-stdnum/docs/stdnum.bg.egn.rst
   python-stdnum/docs/stdnum.bg.pnf.rst
   python-stdnum/docs/stdnum.bg.vat.rst
   python-stdnum/docs/stdnum.br.cpf.rst
   python-stdnum/docs/stdnum.cy.vat.rst
   python-stdnum/docs/stdnum.cz.dic.rst
   python-stdnum/docs/stdnum.cz.rc.rst
   python-stdnum/docs/stdnum.de.vat.rst
   python-stdnum/docs/stdnum.dk.cpr.rst
   python-stdnum/docs/stdnum.dk.cvr.rst
   python-stdnum/docs/stdnum.ean.rst
   python-stdnum/docs/stdnum.ee.kmkr.rst
   python-stdnum/docs/stdnum.es.cif.rst
   python-stdnum/docs/stdnum.es.dni.rst
   python-stdnum/docs/stdnum.es.nie.rst
   python-stdnum/docs/stdnum.es.nif.rst
   python-stdnum/docs/stdnum.eu.vat.rst
   python-stdnum/docs/stdnum.fi.alv.rst
   python-stdnum/docs/stdnum.fi.hetu.rst
   python-stdnum/docs/stdnum.fr.siren.rst
   python-stdnum/docs/stdnum.fr.tva.rst
   python-stdnum/docs/stdnum.gb.vat.rst
   python-stdnum/docs/stdnum.gr.vat.rst
   python-stdnum/docs/stdnum.grid.rst
   python-stdnum/docs/stdnum.hr.oib.rst
   python-stdnum/docs/stdnum.hu.anum.rst
   python-stdnum/docs/stdnum.iban.rst
   python-stdnum/docs/stdnum.ie.pps.rst
   python-stdnum/docs/stdnum.ie.vat.rst
   python-stdnum/docs/stdnum.imei.rst
   python-stdnum/docs/stdnum.imsi.rst
   python-stdnum/docs/stdnum.isan.rst
   python-stdnum/docs/stdnum.isbn.rst
   python-stdnum/docs/stdnum.isil.rst
   python-stdnum/docs/stdnum.ismn.rst
   python-stdnum/docs/stdnum.iso7064.rst
   python-stdnum/docs/stdnum.issn.rst
   python-stdnum/docs/stdnum.it.iva.rst
   python-stdnum/docs/stdnum.lt.pvm.rst
   python-stdnum/docs/stdnum.lu.tva.rst
   python-stdnum/docs/stdnum.luhn.rst
   python-stdnum/docs/stdnum.lv.pvn.rst
   python-stdnum/docs/stdnum.meid.rst
   python-stdnum/docs/stdnum.mt.vat.rst
   python-stdnum/docs/stdnum.nl.bsn.rst
   python-stdnum/docs/stdnum.nl.btw.rst
   python-stdnum/docs/stdnum.nl.onderwijsnummer.rst
   python-stdnum/docs/stdnum.pl.nip.rst
   python-stdnum/docs/stdnum.pt.nif.rst
   python-stdnum/docs/stdnum.ro.cf.rst
   python-stdnum/docs/stdnum.ro.cnp.rst
   python-stdnum/docs/stdnum.se.vat.rst
   python-stdnum/docs/stdnum.si.ddv.rst
   python-stdnum/docs/stdnum.sk.dph.rst
   python-stdnum/docs/stdnum.sk.rc.rst
   python-stdnum/docs/stdnum.us.ssn.rst
   python-stdnum/docs/stdnum.verhoeff.rst
Modified:
   python-stdnum/setup.cfg

Added: python-stdnum/docs/_templates/autosummary/module.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/_templates/autosummary/module.rst        Fri Feb 24 
21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+{{ fullname }}
+{{ underline }}
+
+.. automodule:: {{ fullname }}
+   :members:

Added: python-stdnum/docs/conf.py
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/conf.py  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,188 @@
+# -*- coding: utf-8 -*-
+#
+# python-stdnum documentation build configuration file, created by
+# sphinx-quickstart
+#
+# This file is execfile()d with the current directory set to its containing 
dir.
+#
+# Note that not all possible configuration values are present in this
+# autogenerated file.
+#
+# All configuration values have a default; values that are commented out
+# serve to show the default.
+
+import sys, os
+
+import stdnum
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+#sys.path.insert(0, os.path.abspath('..'))
+
+# -- General configuration 
-----------------------------------------------------
+
+# If your documentation needs a minimal Sphinx version, state it here.
+#needs_sphinx = '1.0'
+
+# Add any Sphinx extension module names here, as strings. They can be 
extensions
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 
'sphinx.ext.coverage', 'sphinx.ext.autosummary']
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The encoding of source files.
+source_encoding = 'utf-8'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = u'python-stdnum'
+copyright = u'2012, Arthur de Jong'
+
+# The version info for the project you're documenting, acts as replacement for
+# |version| and |release|, also used in various other places throughout the
+# built documents.
+#
+# The short X.Y version.
+version = stdnum.__version__
+# The full version, including alpha/beta/rc tags.
+release = version
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#today = ''
+# Else, today_fmt is used as the format for a strftime call.
+#today_fmt = '%B %d, %Y'
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+exclude_patterns = ['_*', '.svn']
+
+# The reST default role (used for this markup: `text`) to use for all 
documents.
+#default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+modindex_common_prefix = ['stdnum.', ]
+
+# Automatically generate stub pages for autosummary entries.
+autosummary_generate = True
+
+
+# -- Options for HTML output 
---------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages.  See the documentation for
+# a list of builtin themes.
+html_theme = 'default'
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further.  For a list of options available for each theme, see the
+# documentation.
+#html_theme_options = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+#html_theme_path = []
+
+# The name for this set of Sphinx documents.  If None, it defaults to
+# "<project> v<release> documentation".
+#html_title = None
+
+# A shorter title for the navigation bar.  Default is the same as html_title.
+#html_short_title = None
+
+# The name of an image file (relative to this directory) to place at the top
+# of the sidebar.
+#html_logo = None
+
+# The name of an image file (within the static path) to use as favicon of the
+# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+#html_favicon = None
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+#html_static_path = ['_static']
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#html_additional_pages = {}
+
+# If false, no module index is generated.
+#html_domain_indices = True
+
+# If false, no index is generated.
+#html_use_index = True
+
+# If true, the index is split into individual pages for each letter.
+#html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+html_show_sourcelink = False
+
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
+#html_show_sphinx = True
+
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
+#html_show_copyright = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.  The value of this option must be the
+# base URL from which the finished HTML is served.
+#html_use_opensearch = ''
+
+# This is the file name suffix for HTML files (e.g. ".xhtml").
+#html_file_suffix = None
+
+# Suffix for generated links to HTML files.
+#html_link_suffix = ''
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'python-stdnumdoc'
+
+
+# -- Options for manual page output 
--------------------------------------------
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+    ('index', 'python-stdnum', u'python-stdnum Documentation',
+     [u'Arthur de Jong'], 1)
+]
+
+# If true, show URL addresses after external links.
+#man_show_urls = False

Added: python-stdnum/docs/index.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/index.rst        Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,121 @@
+.. module:: stdnum
+
+python-stdnum
+=============
+
+A Python module to parse, validate and reformat standard numbers and codes
+in different formats. It contains a large collection of number formats.
+
+Basically any number or code that has some validation mechanism available
+or some common formatting is eligible for inclusion in this library.
+
+http://arthurdejong.org/python-stdnum/
+
+Common Interface
+----------------
+
+Most of the number format modules implement the following functions:
+
+.. function:: is_valid(number)
+
+   Returns either True or False depending on whether the passed number is
+   in any supported and valid form and passes all embedded checks of the
+   number.
+
+.. function:: compact(number)
+
+   Returns a compact representation of the number or code. This function
+   generally does not do validation but may raise exceptions for wildly
+   invalid numbers.
+
+.. function:: format(number)
+
+   Returns a formatted version of the number in the preferred format.
+   This function generally expects to be passed a valid number or code.
+
+The check digit modules generally also provide the following functions:
+
+.. function:: checksum(number)
+
+   Calculate the checksum over the provided number.
+
+.. function:: calc_check_digit(number)
+
+   Calculate the check digit that should be added to the number to make it
+   valid.
+
+Apart from the above, the modules may add extra parsing, validation or
+conversion functions.
+
+Generic check digit algorithms
+------------------------------
+
+.. autosummary::
+   :toctree:
+
+   iso7064
+   luhn
+   verhoeff
+
+Available formats
+-----------------
+
+.. autosummary::
+   :toctree:
+
+   at.uid
+   be.vat
+   bg.egn
+   bg.pnf
+   bg.vat
+   br.cpf
+   cy.vat
+   cz.dic
+   cz.rc
+   de.vat
+   dk.cpr
+   dk.cvr
+   ean
+   ee.kmkr
+   es.cif
+   es.dni
+   es.nie
+   es.nif
+   eu.vat
+   fi.alv
+   fi.hetu
+   fr.siren
+   fr.tva
+   gb.vat
+   gr.vat
+   grid
+   hr.oib
+   hu.anum
+   iban
+   ie.pps
+   ie.vat
+   imei
+   imsi
+   isan
+   isbn
+   isil
+   ismn
+   issn
+   it.iva
+   lt.pvm
+   lu.tva
+   lv.pvn
+   meid
+   mt.vat
+   nl.bsn
+   nl.btw
+   nl.onderwijsnummer
+   pl.nip
+   pt.nif
+   ro.cf
+   ro.cnp
+   se.vat
+   si.ddv
+   sk.dph
+   sk.rc
+   us.ssn

Added: python-stdnum/docs/stdnum.at.uid.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.at.uid.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.at.uid
+=============
+
+.. automodule:: stdnum.at.uid
+   :members:

Added: python-stdnum/docs/stdnum.be.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.be.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.be.vat
+=============
+
+.. automodule:: stdnum.be.vat
+   :members:

Added: python-stdnum/docs/stdnum.bg.egn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.bg.egn.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.bg.egn
+=============
+
+.. automodule:: stdnum.bg.egn
+   :members:

Added: python-stdnum/docs/stdnum.bg.pnf.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.bg.pnf.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.bg.pnf
+=============
+
+.. automodule:: stdnum.bg.pnf
+   :members:

Added: python-stdnum/docs/stdnum.bg.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.bg.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.bg.vat
+=============
+
+.. automodule:: stdnum.bg.vat
+   :members:

Added: python-stdnum/docs/stdnum.br.cpf.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.br.cpf.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.br.cpf
+=============
+
+.. automodule:: stdnum.br.cpf
+   :members:

Added: python-stdnum/docs/stdnum.cy.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.cy.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.cy.vat
+=============
+
+.. automodule:: stdnum.cy.vat
+   :members:

Added: python-stdnum/docs/stdnum.cz.dic.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.cz.dic.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.cz.dic
+=============
+
+.. automodule:: stdnum.cz.dic
+   :members:

Added: python-stdnum/docs/stdnum.cz.rc.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.cz.rc.rst Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.cz.rc
+============
+
+.. automodule:: stdnum.cz.rc
+   :members:

Added: python-stdnum/docs/stdnum.de.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.de.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.de.vat
+=============
+
+.. automodule:: stdnum.de.vat
+   :members:

Added: python-stdnum/docs/stdnum.dk.cpr.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.dk.cpr.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.dk.cpr
+=============
+
+.. automodule:: stdnum.dk.cpr
+   :members:

Added: python-stdnum/docs/stdnum.dk.cvr.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.dk.cvr.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.dk.cvr
+=============
+
+.. automodule:: stdnum.dk.cvr
+   :members:

Added: python-stdnum/docs/stdnum.ean.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ean.rst   Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.ean
+==========
+
+.. automodule:: stdnum.ean
+   :members:

Added: python-stdnum/docs/stdnum.ee.kmkr.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ee.kmkr.rst       Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.ee.kmkr
+==============
+
+.. automodule:: stdnum.ee.kmkr
+   :members:

Added: python-stdnum/docs/stdnum.es.cif.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.es.cif.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.es.cif
+=============
+
+.. automodule:: stdnum.es.cif
+   :members:

Added: python-stdnum/docs/stdnum.es.dni.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.es.dni.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.es.dni
+=============
+
+.. automodule:: stdnum.es.dni
+   :members:

Added: python-stdnum/docs/stdnum.es.nie.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.es.nie.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.es.nie
+=============
+
+.. automodule:: stdnum.es.nie
+   :members:

Added: python-stdnum/docs/stdnum.es.nif.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.es.nif.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.es.nif
+=============
+
+.. automodule:: stdnum.es.nif
+   :members:

Added: python-stdnum/docs/stdnum.eu.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.eu.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.eu.vat
+=============
+
+.. automodule:: stdnum.eu.vat
+   :members:

Added: python-stdnum/docs/stdnum.fi.alv.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.fi.alv.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.fi.alv
+=============
+
+.. automodule:: stdnum.fi.alv
+   :members:

Added: python-stdnum/docs/stdnum.fi.hetu.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.fi.hetu.rst       Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.fi.hetu
+==============
+
+.. automodule:: stdnum.fi.hetu
+   :members:

Added: python-stdnum/docs/stdnum.fr.siren.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.fr.siren.rst      Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.fr.siren
+===============
+
+.. automodule:: stdnum.fr.siren
+   :members:

Added: python-stdnum/docs/stdnum.fr.tva.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.fr.tva.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.fr.tva
+=============
+
+.. automodule:: stdnum.fr.tva
+   :members:

Added: python-stdnum/docs/stdnum.gb.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.gb.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.gb.vat
+=============
+
+.. automodule:: stdnum.gb.vat
+   :members:

Added: python-stdnum/docs/stdnum.gr.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.gr.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.gr.vat
+=============
+
+.. automodule:: stdnum.gr.vat
+   :members:

Added: python-stdnum/docs/stdnum.grid.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.grid.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.grid
+===========
+
+.. automodule:: stdnum.grid
+   :members:

Added: python-stdnum/docs/stdnum.hr.oib.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.hr.oib.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.hr.oib
+=============
+
+.. automodule:: stdnum.hr.oib
+   :members:

Added: python-stdnum/docs/stdnum.hu.anum.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.hu.anum.rst       Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.hu.anum
+==============
+
+.. automodule:: stdnum.hu.anum
+   :members:

Added: python-stdnum/docs/stdnum.iban.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.iban.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.iban
+===========
+
+.. automodule:: stdnum.iban
+   :members:

Added: python-stdnum/docs/stdnum.ie.pps.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ie.pps.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.ie.pps
+=============
+
+.. automodule:: stdnum.ie.pps
+   :members:

Added: python-stdnum/docs/stdnum.ie.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ie.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.ie.vat
+=============
+
+.. automodule:: stdnum.ie.vat
+   :members:

Added: python-stdnum/docs/stdnum.imei.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.imei.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.imei
+===========
+
+.. automodule:: stdnum.imei
+   :members:

Added: python-stdnum/docs/stdnum.imsi.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.imsi.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.imsi
+===========
+
+.. automodule:: stdnum.imsi
+   :members:

Added: python-stdnum/docs/stdnum.isan.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.isan.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.isan
+===========
+
+.. automodule:: stdnum.isan
+   :members:

Added: python-stdnum/docs/stdnum.isbn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.isbn.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.isbn
+===========
+
+.. automodule:: stdnum.isbn
+   :members:

Added: python-stdnum/docs/stdnum.isil.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.isil.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.isil
+===========
+
+.. automodule:: stdnum.isil
+   :members:

Added: python-stdnum/docs/stdnum.ismn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ismn.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.ismn
+===========
+
+.. automodule:: stdnum.ismn
+   :members:

Added: python-stdnum/docs/stdnum.iso7064.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.iso7064.rst       Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,40 @@
+stdnum.iso7064
+==============
+
+.. automodule:: stdnum.iso7064
+   :members:
+
+Mod 11, 10
+----------
+:mod:`stdnum.iso7064.mod_11_10`
+
+.. automodule:: stdnum.iso7064.mod_11_10
+   :members:
+
+Mod 11, 2
+---------
+:mod:`stdnum.iso7064.mod_11_2`
+
+.. automodule:: stdnum.iso7064.mod_11_2
+   :members:
+
+Mod 37, 2 (Mod x, 2)
+--------------------
+:mod:`stdnum.iso7064.mod_37_2`
+
+.. automodule:: stdnum.iso7064.mod_37_2
+   :members:
+
+Mod 37, 36 (Mod x+1, x)
+-----------------------
+:mod:`stdnum.iso7064.mod_37_36`
+
+.. automodule:: stdnum.iso7064.mod_37_36
+   :members:
+
+Mod 97, 10
+----------
+:mod:`stdnum.iso7064.mod_97_10`
+
+.. automodule:: stdnum.iso7064.mod_97_10
+   :members:

Added: python-stdnum/docs/stdnum.issn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.issn.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.issn
+===========
+
+.. automodule:: stdnum.issn
+   :members:

Added: python-stdnum/docs/stdnum.it.iva.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.it.iva.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.it.iva
+=============
+
+.. automodule:: stdnum.it.iva
+   :members:

Added: python-stdnum/docs/stdnum.lt.pvm.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.lt.pvm.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.lt.pvm
+=============
+
+.. automodule:: stdnum.lt.pvm
+   :members:

Added: python-stdnum/docs/stdnum.lu.tva.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.lu.tva.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.lu.tva
+=============
+
+.. automodule:: stdnum.lu.tva
+   :members:

Added: python-stdnum/docs/stdnum.luhn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.luhn.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.luhn
+===========
+
+.. automodule:: stdnum.luhn
+   :members:

Added: python-stdnum/docs/stdnum.lv.pvn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.lv.pvn.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.lv.pvn
+=============
+
+.. automodule:: stdnum.lv.pvn
+   :members:

Added: python-stdnum/docs/stdnum.meid.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.meid.rst  Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.meid
+===========
+
+.. automodule:: stdnum.meid
+   :members:

Added: python-stdnum/docs/stdnum.mt.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.mt.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.mt.vat
+=============
+
+.. automodule:: stdnum.mt.vat
+   :members:

Added: python-stdnum/docs/stdnum.nl.bsn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.nl.bsn.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.nl.bsn
+=============
+
+.. automodule:: stdnum.nl.bsn
+   :members:

Added: python-stdnum/docs/stdnum.nl.btw.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.nl.btw.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.nl.btw
+=============
+
+.. automodule:: stdnum.nl.btw
+   :members:

Added: python-stdnum/docs/stdnum.nl.onderwijsnummer.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.nl.onderwijsnummer.rst    Fri Feb 24 21:43:25 
2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.nl.onderwijsnummer
+=========================
+
+.. automodule:: stdnum.nl.onderwijsnummer
+   :members:

Added: python-stdnum/docs/stdnum.pl.nip.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.pl.nip.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.pl.nip
+=============
+
+.. automodule:: stdnum.pl.nip
+   :members:

Added: python-stdnum/docs/stdnum.pt.nif.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.pt.nif.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.pt.nif
+=============
+
+.. automodule:: stdnum.pt.nif
+   :members:

Added: python-stdnum/docs/stdnum.ro.cf.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ro.cf.rst Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.ro.cf
+============
+
+.. automodule:: stdnum.ro.cf
+   :members:

Added: python-stdnum/docs/stdnum.ro.cnp.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.ro.cnp.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.ro.cnp
+=============
+
+.. automodule:: stdnum.ro.cnp
+   :members:

Added: python-stdnum/docs/stdnum.se.vat.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.se.vat.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.se.vat
+=============
+
+.. automodule:: stdnum.se.vat
+   :members:

Added: python-stdnum/docs/stdnum.si.ddv.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.si.ddv.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.si.ddv
+=============
+
+.. automodule:: stdnum.si.ddv
+   :members:

Added: python-stdnum/docs/stdnum.sk.dph.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.sk.dph.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.sk.dph
+=============
+
+.. automodule:: stdnum.sk.dph
+   :members:

Added: python-stdnum/docs/stdnum.sk.rc.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.sk.rc.rst Fri Feb 24 21:43:25 2012        (r162)
@@ -0,0 +1,5 @@
+stdnum.sk.rc
+============
+
+.. automodule:: stdnum.sk.rc
+   :members:

Added: python-stdnum/docs/stdnum.us.ssn.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.us.ssn.rst        Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.us.ssn
+=============
+
+.. automodule:: stdnum.us.ssn
+   :members:

Added: python-stdnum/docs/stdnum.verhoeff.rst
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ python-stdnum/docs/stdnum.verhoeff.rst      Fri Feb 24 21:43:25 2012        
(r162)
@@ -0,0 +1,5 @@
+stdnum.verhoeff
+===============
+
+.. automodule:: stdnum.verhoeff
+   :members:

Modified: python-stdnum/setup.cfg
==============================================================================
--- python-stdnum/setup.cfg     Thu Feb 23 23:25:03 2012        (r161)
+++ python-stdnum/setup.cfg     Fri Feb 24 21:43:25 2012        (r162)
@@ -10,3 +10,6 @@
 cover-erase=true
 cover-html=true
 cover-html-dir=coverage
+
+[build_sphinx]
+all_files  = 1
-- 
To unsubscribe send an email to
python-stdnum-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/python-stdnum-commits/