From a144febe0bb58695e10e156f513a27d216f3eef5 Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 4 Oct 2016 23:42:38 -0500 Subject: [PATCH] First pass at documentation --- .gitignore | 1 + disco/api/client.py | 2 +- disco/api/http.py | 31 +++- disco/api/ratelimit.py | 89 ++++++++--- disco/bot/bot.py | 73 +++++++-- disco/bot/command.py | 85 ++++++++-- disco/bot/parser.py | 72 +++++++-- disco/bot/plugin.py | 61 ++++++++ docs/Makefile | 225 +++++++++++++++++++++++++++ docs/conf.py | 343 +++++++++++++++++++++++++++++++++++++++++ docs/disco.api.rst | 38 +++++ docs/disco.bot.rst | 46 ++++++ docs/disco.gateway.rst | 38 +++++ docs/disco.rst | 50 ++++++ docs/disco.types.rst | 78 ++++++++++ docs/disco.util.rst | 62 ++++++++ docs/disco.voice.rst | 30 ++++ docs/index.rst | 22 +++ docs/make.bat | 281 +++++++++++++++++++++++++++++++++ docs/modules.rst | 7 + docs/setup.rst | 7 + 21 files changed, 1581 insertions(+), 60 deletions(-) create mode 100644 docs/Makefile create mode 100644 docs/conf.py create mode 100644 docs/disco.api.rst create mode 100644 docs/disco.bot.rst create mode 100644 docs/disco.gateway.rst create mode 100644 docs/disco.rst create mode 100644 docs/disco.types.rst create mode 100644 docs/disco.util.rst create mode 100644 docs/disco.voice.rst create mode 100644 docs/index.rst create mode 100644 docs/make.bat create mode 100644 docs/modules.rst create mode 100644 docs/setup.rst diff --git a/.gitignore b/.gitignore index f123e2d..d5ce7b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build/ dist/ disco.egg-info/ +docs/_build diff --git a/disco/api/client.py b/disco/api/client.py index 6e5c40d..50eb6ef 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -20,7 +20,7 @@ def optional(**kwargs): class APIClient(LoggingClass): """ - An abstraction over the :class:`HTTPClient` that composes requests, and fits + An abstraction over the :class:`disco.api.http.HTTPClient` that composes requests, and fits the models with the returned data. """ def __init__(self, client): diff --git a/disco/api/http.py b/disco/api/http.py index 5a05f7a..be9274b 100644 --- a/disco/api/http.py +++ b/disco/api/http.py @@ -7,6 +7,7 @@ from holster.enum import Enum from disco.util.logging import LoggingClass from disco.api.ratelimit import RateLimiter +# Enum of all HTTP methods used HTTPMethod = Enum( GET='GET', POST='POST', @@ -17,6 +18,10 @@ HTTPMethod = Enum( class Routes(object): + """ + Simple Python object-enum of all method/url route combinations available to + this client. + """ # Gateway GATEWAY_GET = (HTTPMethod.GET, '/gateway') @@ -87,6 +92,10 @@ class Routes(object): class APIException(Exception): + """ + Exception thrown when an HTTP-client level error occurs. Usually this will + be a non-success status-code, or a transient network issue. + """ def __init__(self, msg, status_code=0, content=None): self.status_code = status_code self.content = content @@ -99,6 +108,10 @@ class APIException(Exception): class HTTPClient(LoggingClass): + """ + A simple HTTP client which wraps the requests library, adding support for + Discords rate-limit headers, authorization, and request/response validation. + """ BASE_URL = 'https://discordapp.com/api/v6' MAX_RETRIES = 5 @@ -111,6 +124,15 @@ class HTTPClient(LoggingClass): } def __call__(self, route, args=None, **kwargs): + """ + Makes a request to the given route (as specified in + :class:`disco.api.http.Routes`) with a set of URL arguments, and keyword + arguments passed to requests. + + :param route: the method/url route combination to call + :param args: url major arguments (used for Discord rate limits) + :param kwargs: any keyword arguments to be passed along to requests + """ args = args or {} retry = kwargs.pop('retry_number', 0) @@ -158,5 +180,12 @@ class HTTPClient(LoggingClass): @staticmethod def random_backoff(): - # 500 milliseconds to 5 seconds) + """ + Returns a random backoff (in milliseconds) to be used for any error the + client suspects is transient. Will always return a value between 500 and + 5000 milliseconds. + + :returns: a random backoff in milliseconds + :rtype: float + """ return random.randint(500, 5000) / 1000.0 diff --git a/disco/api/ratelimit.py b/disco/api/ratelimit.py index 8d91532..1b03783 100644 --- a/disco/api/ratelimit.py +++ b/disco/api/ratelimit.py @@ -3,35 +3,66 @@ import gevent class RouteState(object): - def __init__(self, route, request): + """ + An object which stores ratelimit state for a given method/url route + combination (as specified in :class:`disco.api.http.Routes`). + + :ivar route: the route this state pertains too + :ivar remaining: the number of requests remaining before the rate limit is hit + :ivar reset_time: unix timestamp (in seconds) when this rate limit is reset + :ivar event: a :class:`gevent.event.Event` used for ratelimit cooldowns + """ + def __init__(self, route, response): self.route = route self.remaining = 0 self.reset_time = 0 self.event = None - self.update(request) + self.update(response) @property def chilled(self): + """ + Whether this route is currently being cooldown (aka waiting until reset_time) + """ return self.event is not None - def update(self, request): - if 'X-RateLimit-Remaining' not in request.headers: - return - - self.remaining = int(request.headers.get('X-RateLimit-Remaining')) - self.reset_time = int(request.headers.get('X-RateLimit-Reset')) - - def wait(self, timeout=None): - self.event.wait(timeout) - + @property def next_will_ratelimit(self): + """ + Whether the next request to the route (at this moment in time) will + trigger the rate limit. + """ + if self.remaining - 1 < 0 and time.time() <= self.reset_time: return True return False + def update(self, response): + """ + Updates this route with a given Requests response object. Its expected + the response has the required headers, however in the case it doesn't + this function has no effect. + """ + if 'X-RateLimit-Remaining' not in response.headers: + return + + self.remaining = int(response.headers.get('X-RateLimit-Remaining')) + self.reset_time = int(response.headers.get('X-RateLimit-Reset')) + + def wait(self, timeout=None): + """ + Waits until this route is no longer under a cooldown + + :param timeout: timeout after which waiting will be given up + """ + self.event.wait(timeout) + def cooldown(self): + """ + Waits for the current route to be cooled-down (aka waiting until reset time) + """ if self.reset_time - time.time() < 0: raise Exception('Cannot cooldown for negative time period; check clock sync') @@ -42,11 +73,26 @@ class RouteState(object): class RateLimiter(object): + """ + A in-memory store of ratelimit states for all routes we've ever called. + + :ivar states: a Route -> RouteState mapping + """ def __init__(self): - self.cooldowns = {} self.states = {} def check(self, route, timeout=None): + """ + Checks whether a given route can be called. This function will return + immediately if no rate-limit cooldown is being imposed for the given + route, or will wait indefinently (unless timeout is specified) until + the route is finished being cooled down. This function should be called + before making a request to the specified route. + + :param route: route to be checked + :param timeout: an optional timeout after which we'll stop waiting for + the cooldown to complete. + """ return self._check(None, timeout) and self._check(route, timeout) def _check(self, route, timeout=None): @@ -55,16 +101,23 @@ class RateLimiter(object): if self.states[route].chilled: return self.states[route].wait(timeout) - if self.states[route].next_will_ratelimit(): + if self.states[route].next_will_ratelimit: gevent.spawn(self.states[route].cooldown).get(True, timeout) return True - def update(self, route, request): - if 'X-RateLimit-Global' in request.headers: + def update(self, route, response): + """ + Updates the given routes state with the rate-limit headers inside the + response from a previous call to the route. + + :param route: route to update + :param response: requests response to update the route with + """ + if 'X-RateLimit-Global' in response.headers: route = None if route in self.states: - self.states[route].update(request) + self.states[route].update(response) else: - self.states[route] = RouteState(route, request) + self.states[route] = RouteState(route, response) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 356aab9..6d8a917 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -5,34 +5,52 @@ from disco.bot.command import CommandEvent class BotConfig(object): - # Authentication token + """ + An object which specifies the runtime configuration for a Bot. + + :ivar str token: Authentication token + :ivar bool commands_enabled: whether to enable the command parsing functionality + of the bot + :ivar bool command_require_mention: whether commands require a mention to be + triggered + :ivar dict command_mention_rules: a dictionary of rules about what types of + mentions will trigger a command. A string/bool mapping containing 'here', + 'everyone', 'role', and 'user'. If set to false, the mention type will + not trigger commands. + :ivar str command_prefix: prefix required to trigger a command + :ivar bool command_allow_edit: whether editing the last-sent message in a channel, + which did not previously trigger a command, will cause the bot to recheck + the message contents and possibly trigger a command. + :ivar function plugin_config_provider: an optional function which when called + with a plugin name, returns relevant configuration for it. + """ token = None - # Whether to enable command parsing commands_enabled = True - - # Whether the bot must be mentioned to respond to a command command_require_mention = True - - # Rules about what mentions trigger the bot command_mention_rules = { # 'here': False, 'everyone': False, 'role': True, 'user': True, } - - # The prefix required for EVERY command command_prefix = '' - - # Whether an edited message can trigger a command command_allow_edit = True - # Function that when given a plugin name, returns its configuration plugin_config_provider = None class Bot(object): + """ + Disco's implementation of a simple but extendable Discord bot. Bots consist + of a set of plugins, and a Disco client. + + :param client: the client this bot should use for its Discord connection + :param config: a :class:`BotConfig` instance + + :ivar dict plugins: string -> :class:`disco.bot.plugin.Plugin` mapping of + all loaded plugins + """ def __init__(self, client=None, config=None): self.client = client or DiscoClient(config.token) self.config = config or BotConfig() @@ -54,6 +72,12 @@ class Bot(object): @classmethod def from_cli(cls, *plugins): + """ + Creates a new instance of the bot using the Disco-CLI utility, and a set + of passed-in plugin classes. + + :param plugins: plugins to load after creaing the Bot instance + """ from disco.cli import disco_main inst = cls(disco_main()) @@ -64,11 +88,17 @@ class Bot(object): @property def commands(self): + """ + Generator of all commands this bots plugins have defined + """ for plugin in self.plugins.values(): for command in plugin.commands.values(): yield command def compute_command_matches_re(self): + """ + Computes a single regex which matches all possible command combinations. + """ re_str = '|'.join(command.regex for command in self.commands) if re_str: self.command_matches_re = re.compile(re_str) @@ -76,6 +106,9 @@ class Bot(object): self.command_matches_re = None def get_commands_for_message(self, msg): + """ + Generator of all commands a given message triggers. + """ content = msg.content if self.config.command_require_mention: @@ -105,6 +138,13 @@ class Bot(object): yield (command, match) def handle_message(self, msg): + """ + Attempts to handle a newely created or edited message in the context of + command parsing/triggering. Calls all relevant commands the message triggers. + + :returns: whether any commands where successfully triggered + :rtype: bool + """ commands = list(self.get_commands_for_message(msg)) if len(commands): @@ -135,6 +175,10 @@ class Bot(object): self.last_message_cache[msg.channel_id] = (msg, triggered) def add_plugin(self, cls): + """ + Adds and loads a given plugin, based on its class (which must be a subclass + of :class:`disco.bot.plugin.Plugin`). + """ if cls.__name__ in self.plugins: raise Exception('Cannot add already added plugin: {}'.format(cls.__name__)) @@ -145,6 +189,10 @@ class Bot(object): self.compute_command_matches_re() def rmv_plugin(self, cls): + """ + Unloads and removes a given plugin, based on its class (which must be a + sub class of :class:`disco.bot.plugin.Plugin`). + """ if cls.__name__ not in self.plugins: raise Exception('Cannot remove non-existant plugin: {}'.format(cls.__name__)) @@ -154,4 +202,7 @@ class Bot(object): self.compute_command_matches_re() def run_forever(self): + """ + Runs this bot forever + """ self.client.run_forever() diff --git a/disco/bot/command.py b/disco/bot/command.py index 1702f83..e6a0095 100644 --- a/disco/bot/command.py +++ b/disco/bot/command.py @@ -1,6 +1,6 @@ import re -from disco.bot.parser import parse_arguments, ArgumentError +from disco.bot.parser import ArgumentSet, ArgumentError from disco.util.cache import cached_property REGEX_FMT = '({})' @@ -8,6 +8,17 @@ ARGS_REGEX = '( (.*)$|$)' class CommandEvent(object): + """ + An event which is created when a command is triggered. Contains information + about the message, command, and parsed arguments (along with shortcuts to + message information). + + :ivar Command command: the command this event was created for (e.g. triggered command) + :ivar Message msg: the message object which triggered the command + :ivar re.MatchObject match: the regex match object for the command + :ivar string name: the name of the command (or alias) which was triggered + :ivar list args: any arguments passed to the command + """ def __init__(self, command, msg, match): self.command = command self.msg = msg @@ -17,36 +28,88 @@ class CommandEvent(object): @cached_property def member(self): - return self.guild.get_member(self.actor) + """ + Guild member (if relevant) for the user that created the message + """ + return self.guild.get_member(self.author) @property def channel(self): + """ + Channel the message was created in + """ return self.msg.channel @property def guild(self): + """ + Guild (if relevant) the message was created in + """ return self.msg.guild @property - def actor(self): + def author(self): + """ + Author of the message + """ return self.msg.author class CommandError(Exception): - pass + """ + An exception which is thrown when the arguments for a command are invalid, + or don't match the commands specifications. + """ class Command(object): + """ + An object which defines and handles the triggering of a function based on + user input (aka a command). + + :ivar disco.bot.plugin.Plugin plugin: the plugin this command is part of + :ivar function func: the function this command is attached too + :ivar str trigger: the primary trigger (aka name) of this command + :ivar str args: argument specification for this command + :ivar list aliases: aliases this command also responds too + :ivar str group: grouping this command is under + :ivar bool is_regex: whether this command is triggered as a regex + """ def __init__(self, plugin, func, trigger, args=None, aliases=None, group=None, is_regex=False): self.plugin = plugin self.func = func self.triggers = [trigger] + (aliases or []) - self.args = parse_arguments(args or '') + self.args = ArgumentSet.from_string(args or '') self.group = group self.is_regex = is_regex + @cached_property + def compiled_regex(self): + """ + A compiled version of this commands regex + """ + return re.compile(self.regex) + + @property + def regex(self): + """ + The regex string that defines/triggers this command + """ + if self.is_regex: + return REGEX_FMT.format('|'.join(self.triggers)) + else: + group = self.group + ' ' if self.group else '' + return REGEX_FMT.format('|'.join(['^' + group + trigger for trigger in self.triggers]) + ARGS_REGEX) + def execute(self, event): + """ + Handles the execution of this command given a :class:`CommandEvent` + object. + + :returns: whether this command was successful + :rtype: bool + """ if len(event.args) < self.args.required_length: raise CommandError('{} requires {} arguments (passed {})'.format( event.name, @@ -60,15 +123,3 @@ class Command(object): raise CommandError(e.message) return self.func(event, *args) - - @cached_property - def compiled_regex(self): - return re.compile(self.regex) - - @property - def regex(self): - if self.is_regex: - return REGEX_FMT.format('|'.join(self.triggers)) - else: - group = self.group + ' ' if self.group else '' - return REGEX_FMT.format('|'.join(['^' + group + trigger for trigger in self.triggers]) + ARGS_REGEX) diff --git a/disco/bot/parser.py b/disco/bot/parser.py index 9963e5c..a640ff3 100644 --- a/disco/bot/parser.py +++ b/disco/bot/parser.py @@ -2,8 +2,10 @@ import re import copy +# Regex which splits out argument parts PARTS_RE = re.compile('(\<|\[)((?:\w+|\:|\||\.\.\.| (?:[0-9]+))+)(?:\>|\])') +# Mapping of types TYPE_MAP = { 'str': str, 'int': int, @@ -13,10 +15,21 @@ TYPE_MAP = { class ArgumentError(Exception): - pass + """ + An error thrown when passed in arguments cannot be conformed/casted to the + argument specification. + """ class Argument(object): + """ + A single argument, which is normally the member of a :class:`ArgumentSet`. + + :ivar str name: name of this argument + :ivar int count: the number of actual raw arguments which compose this argument + :ivar bool required: whether this argument is required + :ivar list types: the types that this argument can be + """ def __init__(self, raw): self.name = None self.count = 1 @@ -26,9 +39,15 @@ class Argument(object): @property def true_count(self): + """ + The true number of raw arguments this argument takes + """ return self.count or 1 def parse(self, raw): + """ + Attempts to parse arguments from their raw form + """ prefix, part = raw if prefix == '<': @@ -51,12 +70,40 @@ class Argument(object): class ArgumentSet(object): + """ + A set of :class:`Argument` instances which forms a larger argument specification + + :ivar list args: list of :class:`Argument` instances for this set + :ivar dict types: dict of all possible types + """ def __init__(self, args=None, custom_types=None): self.args = args or [] self.types = copy.copy(TYPE_MAP) self.types.update(custom_types or {}) + @classmethod + def from_string(cls, line, custom_types=None): + """ + Creates a new :class:`ArgumentSet` from a given argument string specification + """ + args = cls(custom_types=custom_types) + + data = PARTS_RE.findall(line) + if len(data): + for item in data: + args.append(Argument(item)) + + return args + def convert(self, types, value): + """ + Attempts to convert a value to one or more types. + + :param types: ordered list of types to try conversion to + :param value: the value to attempt conversion on + :type types: list + :param value: string + """ for typ_name in types: typ = self.types.get(typ_name) if not typ: @@ -70,6 +117,9 @@ class ArgumentSet(object): raise e def append(self, arg): + """ + Add a new :class:`Argument` to this argument specification/set + """ if self.args and not self.args[-1].required and arg.required: raise Exception('Required argument cannot come after an optional argument') @@ -79,6 +129,9 @@ class ArgumentSet(object): self.args.append(arg) def parse(self, rawargs): + """ + Parse a string of raw arguments into this argument specification. + """ parsed = [] for index, arg in enumerate(self.args): @@ -111,19 +164,14 @@ class ArgumentSet(object): @property def length(self): + """ + The number of arguments in this set/specification + """ return len(self.args) @property def required_length(self): + """ + The number of required arguments to compile this set/specificaiton + """ return sum([i.true_count for i in self.args if i.required]) - - -def parse_arguments(line, custom_types=None): - args = ArgumentSet(custom_types=custom_types) - - data = PARTS_RE.findall(line) - if len(data): - for item in data: - args.append(Argument(item)) - - return args diff --git a/disco/bot/plugin.py b/disco/bot/plugin.py index 26eb04d..d7bded2 100644 --- a/disco/bot/plugin.py +++ b/disco/bot/plugin.py @@ -6,6 +6,10 @@ from disco.bot.command import Command, CommandError class PluginDeco(object): + """ + A utility mixin which provides various function decorators that a plugin + author can use to create bound event/command handlers. + """ @staticmethod def add_meta_deco(meta): def deco(f): @@ -19,6 +23,9 @@ class PluginDeco(object): @classmethod def listen(cls, event_name): + """ + Binds the function to listen for a given event name + """ return cls.add_meta_deco({ 'type': 'listener', 'event_name': event_name, @@ -26,6 +33,9 @@ class PluginDeco(object): @classmethod def command(cls, *args, **kwargs): + """ + Creates a new command attached to the function + """ return cls.add_meta_deco({ 'type': 'command', 'args': args, @@ -34,30 +44,53 @@ class PluginDeco(object): @classmethod def pre_command(cls): + """ + Runs a function before a command is triggered + """ return cls.add_meta_deco({ 'type': 'pre_command', }) @classmethod def post_command(cls): + """ + Runs a function after a command is triggered + """ return cls.add_meta_deco({ 'type': 'post_command', }) @classmethod def pre_listener(cls): + """ + Runs a function before a listener is triggered + """ return cls.add_meta_deco({ 'type': 'pre_listener', }) @classmethod def post_listener(cls): + """ + Runs a function after a listener is triggered + """ return cls.add_meta_deco({ 'type': 'post_listener', }) class Plugin(LoggingClass, PluginDeco): + """ + A plugin is a set of listeners/commands which can be loaded/unloaded by a bot. + + :param disco.bot.Bot bot: the bot this plugin is loaded under + :param config: a untyped object containing configuration for this plugin + + :ivar disco.client.DiscoClient client: an alias to the client + :ivar disco.state.State state: an alias to the client state + :ivar list listeners: all bound listeners for this plugin + :ivar dict commands: all bound commands for this plugin + """ def __init__(self, bot, config): super(Plugin, self).__init__() self.bot = bot @@ -83,6 +116,9 @@ class Plugin(LoggingClass, PluginDeco): self.register_trigger(typ, when, member) def execute(self, event): + """ + Executes a CommandEvent this plugin owns + """ try: return event.command.execute(event) except CommandError as e: @@ -90,6 +126,9 @@ class Plugin(LoggingClass, PluginDeco): return False def register_trigger(self, typ, when, func): + """ + Registers a trigger + """ getattr(self, '_' + when)[typ].append(func) def _dispatch(self, typ, func, event, *args, **kwargs): @@ -107,18 +146,40 @@ class Plugin(LoggingClass, PluginDeco): return True def register_listener(self, func, name): + """ + Registers a listener + + :param func: function to be called + :param name: name of event to listen for + """ func = functools.partial(self._dispatch, 'listener', func) self.listeners.append(self.bot.client.events.on(name, func)) def register_command(self, func, *args, **kwargs): + """ + Registers a command + + :param func: function to be called + :param args: args to be passed to the :class:`Command` object + :param kwargs: kwargs to be passed to the :class:`Command` object + """ wrapped = functools.partial(self._dispatch, 'command', func) self.commands[func.__name__] = Command(self, wrapped, *args, **kwargs) def destroy(self): + """ + Destroys the plugin (removing all listeners) + """ map(lambda k: k.remove(), self._events) def load(self): + """ + Called when the plugin is loaded + """ pass def unload(self): + """ + Called when the plugin is unloaded + """ pass diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..64019fa --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,225 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " applehelp to make an Apple Help Book" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " epub3 to make an epub3" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " xml to make Docutils-native XML files" + @echo " pseudoxml to make pseudoxml-XML files for display purposes" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + @echo " coverage to run coverage check of the documentation (if enabled)" + @echo " dummy to check syntax errors of document sources" + +.PHONY: clean +clean: + rm -rf $(BUILDDIR)/* + +.PHONY: html +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +.PHONY: dirhtml +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +.PHONY: singlehtml +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +.PHONY: pickle +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +.PHONY: json +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +.PHONY: htmlhelp +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +.PHONY: qthelp +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/disco.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/disco.qhc" + +.PHONY: applehelp +applehelp: + $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp + @echo + @echo "Build finished. The help book is in $(BUILDDIR)/applehelp." + @echo "N.B. You won't be able to view it unless you put it in" \ + "~/Library/Documentation/Help or install it in your application" \ + "bundle." + +.PHONY: devhelp +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/disco" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/disco" + @echo "# devhelp" + +.PHONY: epub +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +.PHONY: epub3 +epub3: + $(SPHINXBUILD) -b epub3 $(ALLSPHINXOPTS) $(BUILDDIR)/epub3 + @echo + @echo "Build finished. The epub3 file is in $(BUILDDIR)/epub3." + +.PHONY: latex +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +.PHONY: latexpdf +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: latexpdfja +latexpdfja: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through platex and dvipdfmx..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: text +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +.PHONY: man +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +.PHONY: texinfo +texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo + @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." + @echo "Run \`make' in that directory to run these through makeinfo" \ + "(use \`make info' here to do that automatically)." + +.PHONY: info +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +.PHONY: gettext +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + @echo + @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." + +.PHONY: changes +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +.PHONY: linkcheck +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +.PHONY: doctest +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." + +.PHONY: coverage +coverage: + $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage + @echo "Testing of coverage in the sources finished, look at the " \ + "results in $(BUILDDIR)/coverage/python.txt." + +.PHONY: xml +xml: + $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml + @echo + @echo "Build finished. The XML files are in $(BUILDDIR)/xml." + +.PHONY: pseudoxml +pseudoxml: + $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml + @echo + @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." + +.PHONY: dummy +dummy: + $(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy + @echo + @echo "Build finished. Dummy builder generates no files." diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..6e8d1ca --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,343 @@ +# -*- coding: utf-8 -*- +# +# disco documentation build configuration file, created by +# sphinx-quickstart on Tue Oct 4 22:15:06 2016. +# +# 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. + +# 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. +# +import os +import sys +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.coverage', + 'sphinx.ext.viewcode', + 'sphinx.ext.githubpages', +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +# source_suffix = ['.rst', '.md'] +source_suffix = '.rst' + +# The encoding of source files. +# +# source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'index' + +# General information about the project. +project = u'disco' +copyright = u'2016, Andrei Zbikowski' +author = u'Andrei Zbikowski' + +# 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 = u'0.0.1' +# The full version, including alpha/beta/rc tags. +release = u'0.0.1' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +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. +# This patterns also effect to html_static_path and html_extra_path +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +# 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 = [] + +# If true, keep warnings as "system message" paragraphs in the built documents. +# keep_warnings = False + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = False + + +# -- 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 = 'sphinx_rtd_theme' + +# 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. +# " v documentation" by default. +# +# html_title = u'disco v0.0.1' + +# 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 (relative to this directory) to use as a 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'] + +# Add any extra paths that contain custom files (such as robots.txt or +# .htaccess) here, relative to this directory. These files are copied +# directly to the root of the documentation. +# +# html_extra_path = [] + +# If not None, a 'Last updated on:' timestamp is inserted at every page +# bottom, using the given strftime format. +# The empty string is equivalent to '%b %d, %Y'. +# +# html_last_updated_fmt = None + +# 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 = True + +# 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 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 + +# Language to be used for generating the HTML full-text search index. +# Sphinx supports the following languages: +# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' +# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr', 'zh' +# +# html_search_language = 'en' + +# A dictionary with options for the search language support, empty by default. +# 'ja' uses this config value. +# 'zh' user can custom change `jieba` dictionary path. +# +# html_search_options = {'type': 'default'} + +# The name of a javascript file (relative to the configuration directory) that +# implements a search results scorer. If empty, the default will be used. +# +# html_search_scorer = 'scorer.js' + +# Output file base name for HTML help builder. +htmlhelp_basename = 'discodoc' + +# -- Options for LaTeX output --------------------------------------------- + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + (master_doc, 'disco.tex', u'disco Documentation', + u'Andrei Zbikowski', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +# +# latex_logo = None + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +# +# latex_use_parts = False + +# If true, show page references after internal links. +# +# latex_show_pagerefs = False + +# If true, show URL addresses after external links. +# +# latex_show_urls = False + +# Documents to append as an appendix to all manuals. +# +# latex_appendices = [] + +# It false, will not define \strong, \code, itleref, \crossref ... but only +# \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added +# packages. +# +# latex_keep_old_macro_names = True + +# If false, no module index is generated. +# +# latex_domain_indices = True + + +# -- Options for manual page output --------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + (master_doc, 'disco', u'disco Documentation', + [author], 1) +] + +# If true, show URL addresses after external links. +# +# man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + (master_doc, 'disco', u'disco Documentation', + author, 'disco', 'One line description of project.', + 'Miscellaneous'), +] + +# Documents to append as an appendix to all manuals. +# +# texinfo_appendices = [] + +# If false, no module index is generated. +# +# texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +# +# texinfo_show_urls = 'footnote' + +# If true, do not generate a @detailmenu in the "Top" node's menu. +# +# texinfo_no_detailmenu = False diff --git a/docs/disco.api.rst b/docs/disco.api.rst new file mode 100644 index 0000000..c609998 --- /dev/null +++ b/docs/disco.api.rst @@ -0,0 +1,38 @@ +disco.api package +================= + +Submodules +---------- + +disco.api.client module +----------------------- + +.. automodule:: disco.api.client + :members: + :undoc-members: + :show-inheritance: + +disco.api.http module +--------------------- + +.. automodule:: disco.api.http + :members: + :undoc-members: + :show-inheritance: + +disco.api.ratelimit module +-------------------------- + +.. automodule:: disco.api.ratelimit + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.api + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.bot.rst b/docs/disco.bot.rst new file mode 100644 index 0000000..4c60e42 --- /dev/null +++ b/docs/disco.bot.rst @@ -0,0 +1,46 @@ +disco.bot package +================= + +Submodules +---------- + +disco.bot.bot module +-------------------- + +.. automodule:: disco.bot.bot + :members: + :undoc-members: + :show-inheritance: + +disco.bot.command module +------------------------ + +.. automodule:: disco.bot.command + :members: + :undoc-members: + :show-inheritance: + +disco.bot.parser module +----------------------- + +.. automodule:: disco.bot.parser + :members: + :undoc-members: + :show-inheritance: + +disco.bot.plugin module +----------------------- + +.. automodule:: disco.bot.plugin + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.bot + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.gateway.rst b/docs/disco.gateway.rst new file mode 100644 index 0000000..b090e74 --- /dev/null +++ b/docs/disco.gateway.rst @@ -0,0 +1,38 @@ +disco.gateway package +===================== + +Submodules +---------- + +disco.gateway.client module +--------------------------- + +.. automodule:: disco.gateway.client + :members: + :undoc-members: + :show-inheritance: + +disco.gateway.events module +--------------------------- + +.. automodule:: disco.gateway.events + :members: + :undoc-members: + :show-inheritance: + +disco.gateway.packets module +---------------------------- + +.. automodule:: disco.gateway.packets + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.gateway + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.rst b/docs/disco.rst new file mode 100644 index 0000000..b523b85 --- /dev/null +++ b/docs/disco.rst @@ -0,0 +1,50 @@ +disco package +============= + +Subpackages +----------- + +.. toctree:: + + disco.api + disco.bot + disco.gateway + disco.types + disco.util + disco.voice + +Submodules +---------- + +disco.cli module +---------------- + +.. automodule:: disco.cli + :members: + :undoc-members: + :show-inheritance: + +disco.client module +------------------- + +.. automodule:: disco.client + :members: + :undoc-members: + :show-inheritance: + +disco.state module +------------------ + +.. automodule:: disco.state + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.types.rst b/docs/disco.types.rst new file mode 100644 index 0000000..63e3a84 --- /dev/null +++ b/docs/disco.types.rst @@ -0,0 +1,78 @@ +disco.types package +=================== + +Submodules +---------- + +disco.types.base module +----------------------- + +.. automodule:: disco.types.base + :members: + :undoc-members: + :show-inheritance: + +disco.types.channel module +-------------------------- + +.. automodule:: disco.types.channel + :members: + :undoc-members: + :show-inheritance: + +disco.types.guild module +------------------------ + +.. automodule:: disco.types.guild + :members: + :undoc-members: + :show-inheritance: + +disco.types.invite module +------------------------- + +.. automodule:: disco.types.invite + :members: + :undoc-members: + :show-inheritance: + +disco.types.message module +-------------------------- + +.. automodule:: disco.types.message + :members: + :undoc-members: + :show-inheritance: + +disco.types.permissions module +------------------------------ + +.. automodule:: disco.types.permissions + :members: + :undoc-members: + :show-inheritance: + +disco.types.user module +----------------------- + +.. automodule:: disco.types.user + :members: + :undoc-members: + :show-inheritance: + +disco.types.voice module +------------------------ + +.. automodule:: disco.types.voice + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.types + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.util.rst b/docs/disco.util.rst new file mode 100644 index 0000000..79f7b01 --- /dev/null +++ b/docs/disco.util.rst @@ -0,0 +1,62 @@ +disco.util package +================== + +Submodules +---------- + +disco.util.cache module +----------------------- + +.. automodule:: disco.util.cache + :members: + :undoc-members: + :show-inheritance: + +disco.util.json module +---------------------- + +.. automodule:: disco.util.json + :members: + :undoc-members: + :show-inheritance: + +disco.util.logging module +------------------------- + +.. automodule:: disco.util.logging + :members: + :undoc-members: + :show-inheritance: + +disco.util.token module +----------------------- + +.. automodule:: disco.util.token + :members: + :undoc-members: + :show-inheritance: + +disco.util.types module +----------------------- + +.. automodule:: disco.util.types + :members: + :undoc-members: + :show-inheritance: + +disco.util.websocket module +--------------------------- + +.. automodule:: disco.util.websocket + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.util + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/disco.voice.rst b/docs/disco.voice.rst new file mode 100644 index 0000000..f0fec9a --- /dev/null +++ b/docs/disco.voice.rst @@ -0,0 +1,30 @@ +disco.voice package +=================== + +Submodules +---------- + +disco.voice.client module +------------------------- + +.. automodule:: disco.voice.client + :members: + :undoc-members: + :show-inheritance: + +disco.voice.packets module +-------------------------- + +.. automodule:: disco.voice.packets + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: disco.voice + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..56e52f1 --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,22 @@ +.. disco documentation master file, created by + sphinx-quickstart on Tue Oct 4 22:15:06 2016. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to disco's documentation! +================================= + +Contents: + +.. toctree:: + :maxdepth: 2 + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` + diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..e1e5914 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,281 @@ +@ECHO OFF + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set BUILDDIR=_build +set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . +set I18NSPHINXOPTS=%SPHINXOPTS% . +if NOT "%PAPER%" == "" ( + set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% + set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% +) + +if "%1" == "" goto help + +if "%1" == "help" ( + :help + echo.Please use `make ^` where ^ is one of + echo. html to make standalone HTML files + echo. dirhtml to make HTML files named index.html in directories + echo. singlehtml to make a single large HTML file + echo. pickle to make pickle files + echo. json to make JSON files + echo. htmlhelp to make HTML files and a HTML help project + echo. qthelp to make HTML files and a qthelp project + echo. devhelp to make HTML files and a Devhelp project + echo. epub to make an epub + echo. epub3 to make an epub3 + echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter + echo. text to make text files + echo. man to make manual pages + echo. texinfo to make Texinfo files + echo. gettext to make PO message catalogs + echo. changes to make an overview over all changed/added/deprecated items + echo. xml to make Docutils-native XML files + echo. pseudoxml to make pseudoxml-XML files for display purposes + echo. linkcheck to check all external links for integrity + echo. doctest to run all doctests embedded in the documentation if enabled + echo. coverage to run coverage check of the documentation if enabled + echo. dummy to check syntax errors of document sources + goto end +) + +if "%1" == "clean" ( + for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i + del /q /s %BUILDDIR%\* + goto end +) + + +REM Check if sphinx-build is available and fallback to Python version if any +%SPHINXBUILD% 1>NUL 2>NUL +if errorlevel 9009 goto sphinx_python +goto sphinx_ok + +:sphinx_python + +set SPHINXBUILD=python -m sphinx.__init__ +%SPHINXBUILD% 2> nul +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +:sphinx_ok + + +if "%1" == "html" ( + %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/html. + goto end +) + +if "%1" == "dirhtml" ( + %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. + goto end +) + +if "%1" == "singlehtml" ( + %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. + goto end +) + +if "%1" == "pickle" ( + %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the pickle files. + goto end +) + +if "%1" == "json" ( + %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the JSON files. + goto end +) + +if "%1" == "htmlhelp" ( + %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run HTML Help Workshop with the ^ +.hhp project file in %BUILDDIR%/htmlhelp. + goto end +) + +if "%1" == "qthelp" ( + %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run "qcollectiongenerator" with the ^ +.qhcp project file in %BUILDDIR%/qthelp, like this: + echo.^> qcollectiongenerator %BUILDDIR%\qthelp\disco.qhcp + echo.To view the help file: + echo.^> assistant -collectionFile %BUILDDIR%\qthelp\disco.ghc + goto end +) + +if "%1" == "devhelp" ( + %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. + goto end +) + +if "%1" == "epub" ( + %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The epub file is in %BUILDDIR%/epub. + goto end +) + +if "%1" == "epub3" ( + %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. + goto end +) + +if "%1" == "latex" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "latexpdf" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf + cd %~dp0 + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "latexpdfja" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf-ja + cd %~dp0 + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "text" ( + %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The text files are in %BUILDDIR%/text. + goto end +) + +if "%1" == "man" ( + %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The manual pages are in %BUILDDIR%/man. + goto end +) + +if "%1" == "texinfo" ( + %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. + goto end +) + +if "%1" == "gettext" ( + %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The message catalogs are in %BUILDDIR%/locale. + goto end +) + +if "%1" == "changes" ( + %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes + if errorlevel 1 exit /b 1 + echo. + echo.The overview file is in %BUILDDIR%/changes. + goto end +) + +if "%1" == "linkcheck" ( + %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck + if errorlevel 1 exit /b 1 + echo. + echo.Link check complete; look for any errors in the above output ^ +or in %BUILDDIR%/linkcheck/output.txt. + goto end +) + +if "%1" == "doctest" ( + %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest + if errorlevel 1 exit /b 1 + echo. + echo.Testing of doctests in the sources finished, look at the ^ +results in %BUILDDIR%/doctest/output.txt. + goto end +) + +if "%1" == "coverage" ( + %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage + if errorlevel 1 exit /b 1 + echo. + echo.Testing of coverage in the sources finished, look at the ^ +results in %BUILDDIR%/coverage/python.txt. + goto end +) + +if "%1" == "xml" ( + %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The XML files are in %BUILDDIR%/xml. + goto end +) + +if "%1" == "pseudoxml" ( + %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. + goto end +) + +if "%1" == "dummy" ( + %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. Dummy builder generates no files. + goto end +) + +:end diff --git a/docs/modules.rst b/docs/modules.rst new file mode 100644 index 0000000..1c618c9 --- /dev/null +++ b/docs/modules.rst @@ -0,0 +1,7 @@ +disco +===== + +.. toctree:: + :maxdepth: 4 + + disco diff --git a/docs/setup.rst b/docs/setup.rst new file mode 100644 index 0000000..31789b1 --- /dev/null +++ b/docs/setup.rst @@ -0,0 +1,7 @@ +setup module +============ + +.. automodule:: setup + :members: + :undoc-members: + :show-inheritance: