fix references to identmap-doc from tsstats.client and tsstats.log

* use :doc: instead of :ref:
* bump version to 0.6.5
This commit is contained in:
Thor77 2016-06-08 22:11:37 +02:00
parent f3517dcb99
commit 4acfe5bd0b
4 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@ author = 'Thor77'
# The short X.Y version. # The short X.Y version.
version = '0.6' version = '0.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.6.4' release = '0.6.5'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='tsstats', name='tsstats',
version='0.6.4', version='0.6.5',
author='Thor77', author='Thor77',
author_email='thor77@thor77.org', author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator', description='A simple Teamspeak stats-generator',

View File

@ -16,7 +16,7 @@ class Clients(MutableMapping):
''' '''
Initialize a new Client-collection Initialize a new Client-collection
:param ident_map: Identity-map (see :ref:`IdentMap`) :param ident_map: Identity-map (see :doc:`identmap`)
:type ident_map: dict :type ident_map: dict
''' '''
self.ident_map = ident_map or {} self.ident_map = ident_map or {}

View File

@ -26,7 +26,7 @@ def parse_logs(log_glob, ident_map=None):
parse logs specified by globbing pattern `log_glob` parse logs specified by globbing pattern `log_glob`
:param log_glob: path to log-files (supports globbing) :param log_glob: path to log-files (supports globbing)
:param ident_map: :ref:`IdentMap` :param ident_map: :doc:`identmap`
:type log_glob: str :type log_glob: str
:type ident_map: dict :type ident_map: dict
@ -45,7 +45,7 @@ def parse_log(log_path, ident_map=None, clients=None):
parse log-file at `log_path` parse log-file at `log_path`
:param log_path: path to log-file :param log_path: path to log-file
:param ident_map: :ref:`IdentMap` :param ident_map: :doc:`identmap`
:param clients: clients-object to add parsing-results to :param clients: clients-object to add parsing-results to
:type log_path: str :type log_path: str