diff --git a/docs/0.9.5/.buildinfo b/docs/0.9.5/.buildinfo index fac4f778ac..930c6adf9d 100644 --- a/docs/0.9.5/.buildinfo +++ b/docs/0.9.5/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 7e3e18bbc03756854a014e3852a3143a +config: e258de0a9ea5aae1e053fbbac19ad3c4 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/0.9.5/_modules/evennia/accounts/accounts.html b/docs/0.9.5/_modules/evennia/accounts/accounts.html index ee1c322986..b1eb572013 100644 --- a/docs/0.9.5/_modules/evennia/accounts/accounts.html +++ b/docs/0.9.5/_modules/evennia/accounts/accounts.html @@ -449,7 +449,7 @@ """ Checks if a given username or IP is banned. - Keyword args: + Keyword Args: ip (str, optional): IP address. username (str, optional): Username. @@ -520,7 +520,7 @@ password (str): Password of account ip (str, optional): IP address of client - Keyword args: + Keyword Args: session (Session, optional): Session requesting authentication Returns: @@ -650,7 +650,7 @@ Args: password (str): Password to validate - Keyword args: + Keyword Args: account (DefaultAccount, optional): Account object to validate the password for. Optional, but Django includes some validators to do things like making sure users aren't setting passwords to the @@ -744,7 +744,7 @@ with default (or overridden) permissions and having joined them to the appropriate default channels. - Keyword args: + Keyword Args: username (str): Username of Account owner password (str): Password of Account owner email (str, optional): Email address of Account owner @@ -911,7 +911,7 @@ default send behavior for the current MULTISESSION_MODE. options (list): Protocol-specific options. Passed on to the protocol. - Keyword args: + Keyword Args: any (dict): All other keywords are passed on to the protocol. """ @@ -959,7 +959,7 @@ session (Session, optional): The session to be responsible for the command-send - Keyword args: + Keyword Args: kwargs (any): Other keyword arguments will be added to the found command object instance as variables before it executes. This is unused by default Evennia but may be @@ -1075,7 +1075,7 @@ no_superuser_bypass (bool, optional): Turn off superuser lock bypassing. Be careful with this one. - Keyword args: + Keyword Args: kwargs (any): Passed to the at_access hook along with the result. Returns: @@ -1219,7 +1219,7 @@ check. access_type (str): The type of access checked. - Keyword args: + Keyword Args: kwargs (any): These are passed on from the access check and can be used to relay custom instructions from the check mechanism. @@ -1424,7 +1424,7 @@ text (str, optional): The message received. from_obj (any, optional): The object sending the message. - Keyword args: + Keyword Args: This includes any keywords sent to the `msg` method. Returns: @@ -1446,7 +1446,7 @@ text (str, optional): Text to send. to_obj (any, optional): The object to send to. - Keyword args: + Keyword Args: Keywords passed from msg() Notes: @@ -1605,7 +1605,7 @@ """ Gets or creates a Guest account object. - Keyword args: + Keyword Args: ip (str, optional): IP address of requestor; used for ban checking, throttling and logging diff --git a/docs/0.9.5/_modules/evennia/accounts/bots.html b/docs/0.9.5/_modules/evennia/accounts/bots.html index 4c02697211..919c2cb0f7 100644 --- a/docs/0.9.5/_modules/evennia/accounts/bots.html +++ b/docs/0.9.5/_modules/evennia/accounts/bots.html @@ -317,7 +317,7 @@ Args: text (str, optional): Incoming text from channel. - Keyword args: + Keyword Args: options (dict): Options dict with the following allowed keys: - from_channel (str): dbid of a channel this text originated from. - from_obj (list): list of objects sending this text. @@ -347,7 +347,7 @@ session (Session, optional): Session responsible for this command. Note that this is the bot. txt (str, optional): Command string. - Keyword args: + Keyword Args: user (str): The name of the user who sent the message. channel (str): The name of channel the message was sent to. type (str): Nature of message. Either 'msg', 'action', 'nicklist' @@ -557,7 +557,7 @@ Args: text (str, optional): Incoming text from channel. - Keyword args: + Keyword Args: options (dict): Options dict with the following allowed keys: - from_channel (str): dbid of a channel this text originated from. - from_obj (list): list of objects sending this text. diff --git a/docs/0.9.5/_modules/evennia/commands/cmdhandler.html b/docs/0.9.5/_modules/evennia/commands/cmdhandler.html index 59ac00d7ba..32209c4b05 100644 --- a/docs/0.9.5/_modules/evennia/commands/cmdhandler.html +++ b/docs/0.9.5/_modules/evennia/commands/cmdhandler.html @@ -592,7 +592,7 @@ is made available as `self.cmdstring` when the Command runs. If not given, the command will be assumed to be called as `cmdobj.key`. - Keyword args: + Keyword Args: kwargs (any): other keyword arguments will be assigned as named variables on the retrieved command object *before* it is executed. This is unused in default Evennia but may be used by code to set custom flags or diff --git a/docs/0.9.5/_modules/evennia/commands/command.html b/docs/0.9.5/_modules/evennia/commands/command.html index 793c48e2b6..ba6f3cb2b7 100644 --- a/docs/0.9.5/_modules/evennia/commands/command.html +++ b/docs/0.9.5/_modules/evennia/commands/command.html @@ -391,7 +391,7 @@ session (Session, optional): Supply data only to a unique session (ignores the value of `self.msg_all_sessions`). - Keyword args: + Keyword Args: options (dict): Options to the protocol. any (any): All other keywords are interpreted as th name of send-instructions. @@ -417,7 +417,7 @@ obj (Object or Account, optional): Object or Account on which to call the execute_cmd. If not given, self.caller will be used. - Keyword args: + Keyword Args: Other keyword arguments will be added to the found command object instace as variables before it executes. This is unused by default Evennia but may be used to set flags and @@ -565,7 +565,7 @@ Args: *args (str): Column headers. If not colored explicitly, these will get colors from user options. - Keyword args: + Keyword Args: any (str, int or dict): EvTable options, including, optionally a `table` dict detailing the contents of the table. Returns: @@ -618,7 +618,7 @@ """ Helper for formatting a string into a pretty display, for a header, separator or footer. - Keyword args: + Keyword Args: header_text (str): Text to include in header. fill_character (str): This single character will be used to fill the width of the display. diff --git a/docs/0.9.5/_modules/evennia/comms/comms.html b/docs/0.9.5/_modules/evennia/comms/comms.html index 104da172af..927ec12f47 100644 --- a/docs/0.9.5/_modules/evennia/comms/comms.html +++ b/docs/0.9.5/_modules/evennia/comms/comms.html @@ -294,7 +294,7 @@ key (str): This must be unique. account (Account): Account to attribute this object to. - Keyword args: + Keyword Args: aliases (list of str): List of alternative (likely shorter) keynames. description (str): A description of the channel, for use in listings. locks (str): Lockstring. diff --git a/docs/0.9.5/_modules/evennia/contrib/building_menu.html b/docs/0.9.5/_modules/evennia/contrib/building_menu.html index 10e49f6c92..651d83b6a7 100644 --- a/docs/0.9.5/_modules/evennia/contrib/building_menu.html +++ b/docs/0.9.5/_modules/evennia/contrib/building_menu.html @@ -214,7 +214,7 @@ Args: value (any): the value to obtain. It might be a callable (see note). - Keyword args: + Keyword Args: menu (BuildingMenu, optional): the building menu to pass to value if it is a callable. choice (Choice, optional): the choice to pass to value if a callable. diff --git a/docs/0.9.5/_modules/evennia/contrib/clothing.html b/docs/0.9.5/_modules/evennia/contrib/clothing.html index f5171d0513..3cd9dabca5 100644 --- a/docs/0.9.5/_modules/evennia/contrib/clothing.html +++ b/docs/0.9.5/_modules/evennia/contrib/clothing.html @@ -199,7 +199,7 @@ Args: character (obj): The character to get a list of worn clothes from. - Keyword args: + Keyword Args: exclude_covered (bool): If True, excludes clothes covered by other clothing from the returned list. @@ -276,7 +276,7 @@ wearer (obj): character object wearing this clothing object wearstyle (True or str): string describing the style of wear or True for none - Keyword args: + Keyword Args: quiet (bool): If false, does not message the room Notes: @@ -315,7 +315,7 @@ Args: wearer (obj): character object wearing this clothing object - Keyword args: + Keyword Args: quiet (bool): If false, does not message the room """ self.db.worn = False diff --git a/docs/0.9.5/_modules/evennia/contrib/custom_gametime.html b/docs/0.9.5/_modules/evennia/contrib/custom_gametime.html index 185c922048..41dd87921c 100644 --- a/docs/0.9.5/_modules/evennia/contrib/custom_gametime.html +++ b/docs/0.9.5/_modules/evennia/contrib/custom_gametime.html @@ -134,7 +134,7 @@ in-game, you will be able to find the number of real-world seconds this corresponds to (hint: Interval events deal with real life seconds). - Keyword args: + Keyword Args: format (bool): Formatting the output. days, month etc (int): These are the names of time units that must match the `settings.TIME_UNITS` dict keys. @@ -170,7 +170,7 @@ interval would correspond to. This is usually a lot less interesting than the other way around. - Keyword args: + Keyword Args: times (int): The various components of the time. format (bool): Formatting the output. diff --git a/docs/0.9.5/_modules/evennia/contrib/ingame_python/callbackhandler.html b/docs/0.9.5/_modules/evennia/contrib/ingame_python/callbackhandler.html index d2f2d577bb..591b1cd12c 100644 --- a/docs/0.9.5/_modules/evennia/contrib/ingame_python/callbackhandler.html +++ b/docs/0.9.5/_modules/evennia/contrib/ingame_python/callbackhandler.html @@ -194,7 +194,7 @@ callback_name (str): the callback name to call. *args: additional variables for this callback. - Keyword args: + Keyword Args: number (int, optional): call just a specific callback. parameters (str, optional): call a callback with parameters. locals (dict, optional): a locals replacement. diff --git a/docs/0.9.5/_modules/evennia/contrib/ingame_python/eventfuncs.html b/docs/0.9.5/_modules/evennia/contrib/ingame_python/eventfuncs.html index 005ecc3aa3..6a9b88202b 100644 --- a/docs/0.9.5/_modules/evennia/contrib/ingame_python/eventfuncs.html +++ b/docs/0.9.5/_modules/evennia/contrib/ingame_python/eventfuncs.html @@ -67,7 +67,7 @@ """ Return an object with the given search option or None if None is found. - Keyword args: + Keyword Args: Any searchable data or property (id, db_key, db_location...). Returns: diff --git a/docs/0.9.5/_modules/evennia/contrib/ingame_python/scripts.html b/docs/0.9.5/_modules/evennia/contrib/ingame_python/scripts.html index b59428e9dc..c6f012ae51 100644 --- a/docs/0.9.5/_modules/evennia/contrib/ingame_python/scripts.html +++ b/docs/0.9.5/_modules/evennia/contrib/ingame_python/scripts.html @@ -436,7 +436,7 @@ callback_name (str): the callback name to call. *args: additional variables for this callback. - Keyword args: + Keyword Args: number (int, optional): call just a specific callback. parameters (str, optional): call a callback with parameters. locals (dict, optional): a locals replacement. diff --git a/docs/0.9.5/_modules/evennia/contrib/ingame_python/typeclasses.html b/docs/0.9.5/_modules/evennia/contrib/ingame_python/typeclasses.html index fee2a76876..6a9da3c55e 100644 --- a/docs/0.9.5/_modules/evennia/contrib/ingame_python/typeclasses.html +++ b/docs/0.9.5/_modules/evennia/contrib/ingame_python/typeclasses.html @@ -460,7 +460,7 @@ Args: message (str): The suggested say/whisper text spoken by self. - Keyword args: + Keyword Args: whisper (bool): If True, this is a whisper rather than a say. This is sent by the whisper command by default. Other verbal commands could use this hook in similar @@ -516,7 +516,7 @@ (by default only used by whispers). msg_receiver(str, optional): Specific message for receiver only. mapping (dict, optional): Additional mapping in messages. - Keyword args: + Keyword Args: whisper (bool): If this is a whisper rather than a say. Kwargs can be used by other verbal commands in a similar way. diff --git a/docs/0.9.5/_modules/evennia/contrib/rpsystem.html b/docs/0.9.5/_modules/evennia/contrib/rpsystem.html index 2d3583b0f4..8cc8461478 100644 --- a/docs/0.9.5/_modules/evennia/contrib/rpsystem.html +++ b/docs/0.9.5/_modules/evennia/contrib/rpsystem.html @@ -1460,7 +1460,7 @@ looker (TypedObject): The object or account that is looking at/getting inforamtion for this object. - Keyword args: + Keyword Args: pose (bool): Include the pose (if available) in the return. Returns: @@ -1548,7 +1548,7 @@ looker (TypedObject): The object or account that is looking at/getting inforamtion for this object. - Keyword args: + Keyword Args: pose (bool): Include the pose (if available) in the return. Returns: @@ -1597,7 +1597,7 @@ Args: message (str): The suggested say/whisper text spoken by self. - Keyword args: + Keyword Args: whisper (bool): If True, this is a whisper rather than a say. """ diff --git a/docs/0.9.5/_modules/evennia/contrib/security/auditing/server.html b/docs/0.9.5/_modules/evennia/contrib/security/auditing/server.html index 4aa6503524..cd37ba2cd1 100644 --- a/docs/0.9.5/_modules/evennia/contrib/security/auditing/server.html +++ b/docs/0.9.5/_modules/evennia/contrib/security/auditing/server.html @@ -109,7 +109,7 @@ Extracts messages and system data from a Session object upon message send or receive. - Keyword args: + Keyword Args: src (str): Source of data; 'client' or 'server'. Indicates direction. text (str or list): Client sends messages to server in the form of lists. Server sends messages to client as string. @@ -255,7 +255,7 @@ """ Generic hook for sending data out through the protocol. - Keyword args: + Keyword Args: kwargs (any): Other data to the protocol. """ @@ -273,7 +273,7 @@ """ Hook for protocols to send incoming data to the engine. - Keyword args: + Keyword Args: kwargs (any): Other data from the protocol. """ diff --git a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_basic.html b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_basic.html index 435207c853..baf37c2c62 100644 --- a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_basic.html +++ b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_basic.html @@ -318,7 +318,7 @@ character (obj): Character spending the action actions (int) or 'all': Number of actions to spend, or 'all' to spend all actions - Keyword args: + Keyword Args: action_name (str or None): If a string is given, sets character's last action in combat to provided string """ diff --git a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_equip.html b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_equip.html index 3dc308e956..40058d55b2 100644 --- a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_equip.html +++ b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_equip.html @@ -369,7 +369,7 @@ character (obj): Character spending the action actions (int) or 'all': Number of actions to spend, or 'all' to spend all actions - Keyword args: + Keyword Args: action_name (str or None): If a string is given, sets character's last action in combat to provided string """ diff --git a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_items.html b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_items.html index ef5d9098d6..c38bca9b6d 100644 --- a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_items.html +++ b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_items.html @@ -387,7 +387,7 @@ character (obj): Character spending the action actions (int) or 'all': Number of actions to spend, or 'all' to spend all actions - Keyword args: + Keyword Args: action_name (str or None): If a string is given, sets character's last action in combat to provided string """ diff --git a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_magic.html b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_magic.html index 722afbbecf..9a81b69b11 100644 --- a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_magic.html +++ b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_magic.html @@ -343,7 +343,7 @@ character (obj): Character spending the action actions (int) or 'all': Number of actions to spend, or 'all' to spend all actions - Keyword args: + Keyword Args: action_name (str or None): If a string is given, sets character's last action in combat to provided string """ diff --git a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_range.html b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_range.html index 2629178b82..316d2e2750 100644 --- a/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_range.html +++ b/docs/0.9.5/_modules/evennia/contrib/turnbattle/tb_range.html @@ -509,7 +509,7 @@ character (obj): Character spending the action actions (int) or 'all': Number of actions to spend, or 'all' to spend all actions - Keyword args: + Keyword Args: action_name (str or None): If a string is given, sets character's last action in combat to provided string """ @@ -681,7 +681,7 @@ Args: to_init (object): Object to initialize range field for. - Keyword args: + Keyword Args: anchor_obj (object): Object to copy range values from, or None for a random object. add_distance (int): Distance to put between to_init object and anchor object. diff --git a/docs/0.9.5/_modules/evennia/contrib/unixcommand.html b/docs/0.9.5/_modules/evennia/contrib/unixcommand.html index d153c0dc8c..e64cdb1ca6 100644 --- a/docs/0.9.5/_modules/evennia/contrib/unixcommand.html +++ b/docs/0.9.5/_modules/evennia/contrib/unixcommand.html @@ -137,7 +137,7 @@ epilog (str): the epilog to show below options. command (Command): the command calling the parser. - Keyword args: + Keyword Args: Additional keyword arguments are directly sent to `argparse.ArgumentParser`. You will find them on the [parser's documentation](https://docs.python.org/2/library/argparse.html). diff --git a/docs/0.9.5/_modules/evennia/locks/lockfuncs.html b/docs/0.9.5/_modules/evennia/locks/lockfuncs.html index 45a9d3851a..10551dcc62 100644 --- a/docs/0.9.5/_modules/evennia/locks/lockfuncs.html +++ b/docs/0.9.5/_modules/evennia/locks/lockfuncs.html @@ -594,6 +594,8 @@ want also nested objects to pass the lock, use the `insiderecursive` lockfunc. """ + if hasattr(accessed_obj, "obj"): + accessed_obj = accessed_obj.obj return accessing_obj.location == accessed_obj diff --git a/docs/0.9.5/_modules/evennia/objects/objects.html b/docs/0.9.5/_modules/evennia/objects/objects.html index c2e5b781ae..c1a9b6fe55 100644 --- a/docs/0.9.5/_modules/evennia/objects/objects.html +++ b/docs/0.9.5/_modules/evennia/objects/objects.html @@ -376,7 +376,7 @@ Args: count (int): Number of objects of this type looker (Object): Onlooker. Not used by default. - Keyword args: + Keyword Args: key (str): Optional key to pluralize, if given, use this instead of the object's key. Returns: singular (str): The singular form to display. @@ -629,7 +629,7 @@ session (Session, optional): Session to return results to - Keyword args: + Keyword Args: Other keyword arguments will be added to the found command object instace as variables before it executes. This is unused by default Evennia but may be used to set flags and @@ -675,7 +675,7 @@ depends on the MULTISESSION_MODE. options (dict, optional): Message-specific option-value pairs. These will be applied at the protocol level. - Keyword args: + Keyword Args: any (string or tuples): All kwarg keys not listed above will be treated as send-command names and their arguments (which can be a string or a tuple). @@ -726,7 +726,7 @@ exclude (list, optional): A list of object not to call the function on. - Keyword args: + Keyword Args: Keyword arguments will be passed to the function for all objects. """ contents = self.contents @@ -758,7 +758,7 @@ for every looker in contents that receives the message. This allows for every object to potentially get its own customized string. - Keyword args: + Keyword Args: Keyword arguments will be passed on to `obj.msg()` for all messaged objects. @@ -833,7 +833,7 @@ (at_before/after_move etc) with quiet=True, this is as quiet a move as can be done. - Keyword args: + Keyword Args: Passed on to announce_move_to and announce_move_from hooks. Returns: @@ -1007,7 +1007,7 @@ key (str): Name of the new object. account (Account): Account to attribute this object to. - Keyword args: + Keyword Args: description (str): Brief description for this object. ip (str): IP address of creator (for object auditing). @@ -1173,7 +1173,7 @@ no_superuser_bypass (bool, optional): If `True`, don't skip lock check for superuser (be careful with this one). - Keyword args: + Keyword Args: Passed on to the at_access hook along with the result of the access check. """ @@ -1332,7 +1332,7 @@ place to do it. This is called also if the object currently have no cmdsets. - Keyword args: + Keyword Args: caller (Session, Object or Account): The caller requesting this cmdset. @@ -1434,7 +1434,7 @@ accessing_obj (Object or Account): The entity trying to gain access. access_type (str): The type of access that was requested. - Keyword args: + Keyword Args: Not used by default, added for possible expandability in a game. @@ -1685,7 +1685,7 @@ text (str, optional): The message received. from_obj (any, optional): The object sending the message. - Keyword args: + Keyword Args: This includes any keywords sent to the `msg` method. Returns: @@ -1707,7 +1707,7 @@ text (str, optional): Text to send. to_obj (any, optional): The object to send to. - Keyword args: + Keyword Args: Keywords passed from msg() Notes: @@ -1949,7 +1949,7 @@ Args: message (str): The suggested say/whisper text spoken by self. - Keyword args: + Keyword Args: whisper (bool): If True, this is a whisper rather than a say. This is sent by the whisper command by default. Other verbal commands could use this hook in similar @@ -1989,7 +1989,7 @@ (by default only used by whispers). msg_receivers(str): Specific message to pass to the receiver(s). This will parsed with the {receiver} placeholder replaced with the given receiver. - Keyword args: + Keyword Args: whisper (bool): If this is a whisper rather than a say. Kwargs can be used by other verbal commands in a similar way. mapping (dict): Pass an additional mapping to the message. @@ -2131,7 +2131,7 @@ If unset supplying None-- it will change the default lockset and skip creator attribution. - Keyword args: + Keyword Args: description (str): Brief description for this object. ip (str): IP address of creator (for object auditing). All other kwargs will be passed into the create_object call. @@ -2391,7 +2391,7 @@ given, it will be given specific control/edit permissions to this object (along with normal Admin perms). If not given, default - Keyword args: + Keyword Args: description (str): Brief description for this object. ip (str): IP address of creator (for object auditing). @@ -2595,7 +2595,7 @@ source (Room): The room to create this exit in. dest (Room): The room to which this exit should go. - Keyword args: + Keyword Args: description (str): Brief description for this object. ip (str): IP address of creator (for object auditing). @@ -2687,7 +2687,7 @@ place to do it. This is called also if the object currently has no cmdsets. - Keyword args: + Keyword Args: force_init (bool): If `True`, force a re-build of the cmdset (for example to update aliases). diff --git a/docs/0.9.5/_modules/evennia/prototypes/menus.html b/docs/0.9.5/_modules/evennia/prototypes/menus.html index 310bb10d09..207bc9629b 100644 --- a/docs/0.9.5/_modules/evennia/prototypes/menus.html +++ b/docs/0.9.5/_modules/evennia/prototypes/menus.html @@ -169,7 +169,7 @@ caller (Object, Account): The user of the wizard. raw_string (str): Input from user on given node - the new value to set. - Keyword args: + Keyword Args: test_parse (bool): If set (default True), parse raw_string for protfuncs and obj-refs and try to run result through literal_eval. The parser will be run in 'testing' mode and any parsing errors will shown to the user. Note that this is just for testing, the original @@ -336,7 +336,7 @@ Args: actions (str): Available actions. The first letter of the action name will be assumed to be a shortcut. - Keyword args: + Keyword Args: prefix (str): Default prefix to use. Returns: string (str): Formatted footer for adding to the node text. @@ -1214,7 +1214,7 @@ attr = value attr;category = value attr;category;lockstring = value - Keyword args: + Keyword Args: delete (str): If this is set, attr_string is considered the name of the attribute to delete and no further parsing happens. @@ -1401,7 +1401,7 @@ tagname;category tagname;category;data - Keyword args: + Keyword Args: delete (str): If this is set, tag_string is considered the name of the tag to delete. @@ -1950,7 +1950,7 @@ caller (Object): Caller of menu. tag_string (str): Input from user - only tagname - Keyword args: + Keyword Args: delete (str): If this is set, tag_string is considered the name of the tag to delete. @@ -2178,7 +2178,7 @@ diff (dict): A diff as produced by `prototype_diff`. minimal (bool, optional): Don't show KEEPs. - Keyword args: + Keyword Args: any (any): Forwarded into the generated options as arguments to the callable. Returns: diff --git a/docs/0.9.5/_modules/evennia/prototypes/prototypes.html b/docs/0.9.5/_modules/evennia/prototypes/prototypes.html index f0c65a242b..6297632daa 100644 --- a/docs/0.9.5/_modules/evennia/prototypes/prototypes.html +++ b/docs/0.9.5/_modules/evennia/prototypes/prototypes.html @@ -369,7 +369,7 @@ """ Find prototypes based on key and/or tags, or all prototypes. - Keyword args: + Keyword Args: key (str): An exact or partial key to query for. tags (str or list): Tag key or keys to query for. These will always be applied with the 'db_protototype' @@ -769,7 +769,7 @@ behave differently. stacktrace (bool, optional): If set, print the stack parsing process of the protfunc-parser. - Keyword args: + Keyword Args: session (Session): Passed to protfunc. Session of the entity spawning the prototype. protototype (dict): Passed to protfunc. The dict this protfunc is a part of. current_key(str): Passed to protfunc. The key in the prototype that will hold this value. diff --git a/docs/0.9.5/_modules/evennia/prototypes/spawner.html b/docs/0.9.5/_modules/evennia/prototypes/spawner.html index 478716f304..42aa8a8c37 100644 --- a/docs/0.9.5/_modules/evennia/prototypes/spawner.html +++ b/docs/0.9.5/_modules/evennia/prototypes/spawner.html @@ -883,7 +883,7 @@ prototypes (str or dict): Each argument should either be a prototype_key (will be used to find the prototype) or a full prototype dictionary. These will be batched-spawned as one object each. - Keyword args: + Keyword Args: prototype_modules (str or list): A python-path to a prototype module, or a list of such paths. These will be used to build the global protparents dictionary accessible by the input diff --git a/docs/0.9.5/_modules/evennia/scripts/monitorhandler.html b/docs/0.9.5/_modules/evennia/scripts/monitorhandler.html index 37a06d78f9..28e5f25b7c 100644 --- a/docs/0.9.5/_modules/evennia/scripts/monitorhandler.html +++ b/docs/0.9.5/_modules/evennia/scripts/monitorhandler.html @@ -164,7 +164,7 @@ persistent (bool, optional): If False, the monitor will survive a server reload but not a cold restart. This is default. - Keyword args: + Keyword Args: session (Session): If this keyword is given, the monitorhandler will correctly analyze it and remove the monitor if after a reload/reboot the session is no longer valid. diff --git a/docs/0.9.5/_modules/evennia/scripts/taskhandler.html b/docs/0.9.5/_modules/evennia/scripts/taskhandler.html index 73a7857d68..292ad556ca 100644 --- a/docs/0.9.5/_modules/evennia/scripts/taskhandler.html +++ b/docs/0.9.5/_modules/evennia/scripts/taskhandler.html @@ -139,7 +139,7 @@ callback (function or instance method): the callback itself any (any): any additional positional arguments to send to the callback - Keyword args: + Keyword Args: persistent (bool, optional): persist the task (store it). any (any): additional keyword arguments to send to the callback diff --git a/docs/0.9.5/_modules/evennia/scripts/tickerhandler.html b/docs/0.9.5/_modules/evennia/scripts/tickerhandler.html index bd64e9317a..3fa3fa5c60 100644 --- a/docs/0.9.5/_modules/evennia/scripts/tickerhandler.html +++ b/docs/0.9.5/_modules/evennia/scripts/tickerhandler.html @@ -222,7 +222,7 @@ store_key (str): Unique storage hash for this ticker subscription. args (any, optional): Arguments to call the hook method with. - Keyword args: + Keyword Args: _start_delay (int): If set, this will be used to delay the start of the trigger instead of `interval`. diff --git a/docs/0.9.5/_modules/evennia/server/connection_wizard.html b/docs/0.9.5/_modules/evennia/server/connection_wizard.html index fef91359e3..096699b7db 100644 --- a/docs/0.9.5/_modules/evennia/server/connection_wizard.html +++ b/docs/0.9.5/_modules/evennia/server/connection_wizard.html @@ -96,7 +96,7 @@ """ Ask a yes/no question inline. - Keyword args: + Keyword Args: prompt (str): The prompt to ask. default (str): "yes" or "no", used if pressing return. Returns: @@ -122,7 +122,7 @@ """ Ask multiple-choice question, get response inline. - Keyword args: + Keyword Args: prompt (str): Input prompt. options (list): List of options. Will be indexable by sequence number 1... default (int): The list index+1 of the default choice, if any @@ -153,7 +153,7 @@ """ Get arbitrary input inline. - Keyword args: + Keyword Args: prompt (str): The display prompt. default (str): If empty input, use this. validator (callable): If given, the input will be passed diff --git a/docs/0.9.5/_modules/evennia/server/evennia_launcher.html b/docs/0.9.5/_modules/evennia/server/evennia_launcher.html index 73a6a84bb4..205d3b1e9c 100644 --- a/docs/0.9.5/_modules/evennia/server/evennia_launcher.html +++ b/docs/0.9.5/_modules/evennia/server/evennia_launcher.html @@ -1678,7 +1678,7 @@ python source files themselves). Best they fail already here before we get any further. - Keyword args: + Keyword Args: show_warnings (bool): If non-fatal warning messages should be shown. """ diff --git a/docs/0.9.5/_modules/evennia/server/inputfuncs.html b/docs/0.9.5/_modules/evennia/server/inputfuncs.html index fd7645da3b..d382c38e6a 100644 --- a/docs/0.9.5/_modules/evennia/server/inputfuncs.html +++ b/docs/0.9.5/_modules/evennia/server/inputfuncs.html @@ -203,7 +203,7 @@ This allows the client an OOB way to inform us about its name and capabilities. This will be integrated into the session settings - Keyword args: + Keyword Args: get (bool): If this is true, return the settings as a dict (ignore all other kwargs). client (str): A client identifier, like "mushclient". @@ -321,7 +321,7 @@ Peform a login. This only works if session is currently not logged in. This will also automatically throttle too quick attempts. - Keyword args: + Keyword Args: name (str): Account name password (str): Plain-text password @@ -347,7 +347,7 @@ Return the value of a given attribute or db_property on the session's current account or character. - Keyword args: + Keyword Args: name (str): Name of info value to return. Only names in the _gettable dictionary earlier in this module are accepted. @@ -364,7 +364,7 @@ This is a test function for using with the repeat inputfunc. - Keyword args: + Keyword Args: session (Session): Session to return to. """ import time @@ -381,7 +381,7 @@ this is meant as an example of limiting the number of possible call functions. - Keyword args: + Keyword Args: callback (str): The function to call. Only functions from the _repeatable dictionary earlier in this module are available. @@ -442,7 +442,7 @@ """ Adds monitoring to a given property or Attribute. - Keyword args: + Keyword Args: name (str): The name of the property or Attribute to report. No db_* prefix is needed. Only names in the _monitorable dict earlier in this module @@ -524,7 +524,7 @@ If kwargs is not empty, the key/values stored in there will be persisted to the account object. - Keyword args: + Keyword Args: <option name>: an option to save """ account = session.account diff --git a/docs/0.9.5/_modules/evennia/server/portal/grapevine.html b/docs/0.9.5/_modules/evennia/server/portal/grapevine.html index 39e382458e..955784a252 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/grapevine.html +++ b/docs/0.9.5/_modules/evennia/server/portal/grapevine.html @@ -342,7 +342,7 @@ """ Send data grapevine -> Evennia - Keyword args: + Keyword Args: data (dict): Converted json data. """ diff --git a/docs/0.9.5/_modules/evennia/server/portal/irc.html b/docs/0.9.5/_modules/evennia/server/portal/irc.html index 1b0bf3b2e3..c708372d52 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/irc.html +++ b/docs/0.9.5/_modules/evennia/server/portal/irc.html @@ -314,7 +314,7 @@ """ Data IRC -> Server. - Keyword args: + Keyword Args: text (str): Ingoing text. kwargs (any): Other data from protocol. @@ -345,7 +345,7 @@ Args: text (str): Outgoing text. - Keyword args: + Keyword Args: user (str): the nick to send privately to. @@ -414,7 +414,7 @@ Args: sessionhandler (SessionHandler): Reference to the main Sessionhandler. - Keyword args: + Keyword Args: uid (int): Bot user id. botname (str): Bot name (seen in IRC channel). channel (str): IRC channel to connect to. diff --git a/docs/0.9.5/_modules/evennia/server/portal/portalsessionhandler.html b/docs/0.9.5/_modules/evennia/server/portal/portalsessionhandler.html index 9549a26420..55fbdaa79d 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/portalsessionhandler.html +++ b/docs/0.9.5/_modules/evennia/server/portal/portalsessionhandler.html @@ -428,7 +428,7 @@ Args: session (PortalSession): Session receiving data. - Keyword args: + Keyword Args: kwargs (any): Other data from protocol. Notes: @@ -486,7 +486,7 @@ Args: session (Session): Session sending data. - Keyword args: + Keyword Args: kwargs (any): Each key is a command instruction to the protocol on the form key = [[args],{kwargs}]. This will call a method send_<key> on the protocol. If no such diff --git a/docs/0.9.5/_modules/evennia/server/portal/rss.html b/docs/0.9.5/_modules/evennia/server/portal/rss.html index bbb04f8571..639bd3cd22 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/rss.html +++ b/docs/0.9.5/_modules/evennia/server/portal/rss.html @@ -127,7 +127,7 @@ """ Data RSS -> Evennia. - Keyword args: + Keyword Args: text (str): Incoming text kwargs (any): Options from protocol. diff --git a/docs/0.9.5/_modules/evennia/server/portal/ssh.html b/docs/0.9.5/_modules/evennia/server/portal/ssh.html index 5d301eb088..5685315db9 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/ssh.html +++ b/docs/0.9.5/_modules/evennia/server/portal/ssh.html @@ -303,7 +303,7 @@ """ Data Evennia -> User - Keyword args: + Keyword Args: kwargs (any): Options to the protocol. """ @@ -316,7 +316,7 @@ Args: text (str): The first argument is always the text string to send. No other arguments are considered. - Keyword args: + Keyword Args: options (dict): Send-option flags (booleans) - mxp: enforce mxp link support. diff --git a/docs/0.9.5/_modules/evennia/server/portal/telnet.html b/docs/0.9.5/_modules/evennia/server/portal/telnet.html index fbcd9777fe..2c0239740f 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/telnet.html +++ b/docs/0.9.5/_modules/evennia/server/portal/telnet.html @@ -401,7 +401,7 @@ """ Data User -> Evennia - Keyword args: + Keyword Args: kwargs (any): Options from the protocol. """ @@ -414,7 +414,7 @@ """ Data Evennia -> User - Keyword args: + Keyword Args: kwargs (any): Options to the protocol """ self.sessionhandler.data_out(self, **kwargs) @@ -428,7 +428,7 @@ Args: text (str): The first argument is always the text string to send. No other arguments are considered. - Keyword args: + Keyword Args: options (dict): Send-option flags - mxp: Enforce MXP link support. diff --git a/docs/0.9.5/_modules/evennia/server/portal/webclient.html b/docs/0.9.5/_modules/evennia/server/portal/webclient.html index 03748ae2db..8598f91633 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/webclient.html +++ b/docs/0.9.5/_modules/evennia/server/portal/webclient.html @@ -279,7 +279,7 @@ Args: text (str): Text to send. - Keyword args: + Keyword Args: options (dict): Options-dict with the following keys understood: - raw (bool): No parsing at all (leave ansi-to-html markers unparsed). - nocolor (bool): Clean out all color. @@ -332,7 +332,7 @@ cmdname (str): The first argument will always be the oob cmd name. *args (any): Remaining args will be arguments for `cmd`. - Keyword args: + Keyword Args: options (dict): These are ignored for oob commands. Use command arguments (which can hold dicts) to send instructions to the client instead. diff --git a/docs/0.9.5/_modules/evennia/server/portal/webclient_ajax.html b/docs/0.9.5/_modules/evennia/server/portal/webclient_ajax.html index bf7ac13c34..385f2a75e5 100644 --- a/docs/0.9.5/_modules/evennia/server/portal/webclient_ajax.html +++ b/docs/0.9.5/_modules/evennia/server/portal/webclient_ajax.html @@ -421,7 +421,7 @@ """ Data User -> Evennia - Keyword args: + Keyword Args: kwargs (any): Incoming data. """ @@ -431,7 +431,7 @@ """ Data Evennia -> User - Keyword args: + Keyword Args: kwargs (any): Options to the protocol """ self.sessionhandler.data_out(self, **kwargs) @@ -444,7 +444,7 @@ Args: text (str): Text to send. - Keyword args: + Keyword Args: options (dict): Options-dict with the following keys understood: - raw (bool): No parsing at all (leave ansi-to-html markers unparsed). - nocolor (bool): Remove all color. @@ -496,7 +496,7 @@ cmdname (str): The first argument will always be the oob cmd name. *args (any): Remaining args will be arguments for `cmd`. - Keyword args: + Keyword Args: options (dict): These are ignored for oob commands. Use command arguments (which can hold dicts) to send instructions to the client instead. diff --git a/docs/0.9.5/_modules/evennia/server/serversession.html b/docs/0.9.5/_modules/evennia/server/serversession.html index de3475e75e..fffe2ee554 100644 --- a/docs/0.9.5/_modules/evennia/server/serversession.html +++ b/docs/0.9.5/_modules/evennia/server/serversession.html @@ -268,7 +268,7 @@ """ Update the protocol_flags and sync them with Portal. - Keyword args: + Keyword Args: protocol_flag (any): A key and value to set in the protocol_flags dictionary. @@ -286,7 +286,7 @@ """ Sending data from Evennia->Client - Keyword args: + Keyword Args: text (str or tuple) any (str or tuple): Send-commands identified by their keys. Or "options", carrying options @@ -300,7 +300,7 @@ Receiving data from the client, sending it off to the respective inputfuncs. - Keyword args: + Keyword Args: kwargs (any): Incoming data from protocol on the form `{"commandname": ((args), {kwargs}),...}` Notes: @@ -318,7 +318,7 @@ Args: text (str): String input. - Keyword args: + Keyword Args: any (str or tuple): Send-commands identified by their keys. Or "options", carrying options for the protocol(s). @@ -346,7 +346,7 @@ session (Session): This is here to make API consistent with Account/Object.execute_cmd. If given, data is passed to that Session, otherwise use self. - Keyword args: + Keyword Args: Other keyword arguments will be added to the found command object instace as variables before it executes. This is unused by default Evennia but may be used to set flags and diff --git a/docs/0.9.5/_modules/evennia/server/session.html b/docs/0.9.5/_modules/evennia/server/session.html index ba04b9d468..7844291f5d 100644 --- a/docs/0.9.5/_modules/evennia/server/session.html +++ b/docs/0.9.5/_modules/evennia/server/session.html @@ -196,7 +196,7 @@ protocols can use this right away. Portal sessions should overload this to format/handle the outgoing data as needed. - Keyword args: + Keyword Args: kwargs (any): Other data to the protocol. """ @@ -206,7 +206,7 @@ """ Hook for protocols to send incoming data to the engine. - Keyword args: + Keyword Args: kwargs (any): Other data from the protocol. """ diff --git a/docs/0.9.5/_modules/evennia/server/sessionhandler.html b/docs/0.9.5/_modules/evennia/server/sessionhandler.html index dbefc92129..512a68e513 100644 --- a/docs/0.9.5/_modules/evennia/server/sessionhandler.html +++ b/docs/0.9.5/_modules/evennia/server/sessionhandler.html @@ -856,7 +856,7 @@ Args: sessions (Session): Session. - Keyword args: + Keyword Args: any (tuple): Incoming data from protocol, each on the form `commandname=((args), {kwargs})`. diff --git a/docs/0.9.5/_modules/evennia/server/throttle.html b/docs/0.9.5/_modules/evennia/server/throttle.html index fd99af2366..d5d7f577a5 100644 --- a/docs/0.9.5/_modules/evennia/server/throttle.html +++ b/docs/0.9.5/_modules/evennia/server/throttle.html @@ -61,7 +61,7 @@ """ Allows setting of throttle parameters. - Keyword args: + Keyword Args: limit (int): Max number of failures before imposing limiter timeout (int): number of timeout seconds after max number of tries has been reached. diff --git a/docs/0.9.5/_modules/evennia/typeclasses/attributes.html b/docs/0.9.5/_modules/evennia/typeclasses/attributes.html index 6b5b4a4e08..14ec01bfba 100644 --- a/docs/0.9.5/_modules/evennia/typeclasses/attributes.html +++ b/docs/0.9.5/_modules/evennia/typeclasses/attributes.html @@ -1142,7 +1142,7 @@ - `(key, value, category, lockstring)` - `(key, value, category, lockstring, default_access)` - Keyword args: + Keyword Args: strattr (bool): If `True`, value must be a string. This will save the value without pickling which is less flexible but faster to search (not often used except diff --git a/docs/0.9.5/_modules/evennia/typeclasses/managers.html b/docs/0.9.5/_modules/evennia/typeclasses/managers.html index 7e13909c60..37dc97d26a 100644 --- a/docs/0.9.5/_modules/evennia/typeclasses/managers.html +++ b/docs/0.9.5/_modules/evennia/typeclasses/managers.html @@ -297,7 +297,7 @@ this is either `None` (a normal Tag), `alias` or `permission`. This always apply to all queried tags. - Keyword args: + Keyword Args: match (str): "all" (default) or "any"; determines whether the target object must be tagged with ALL of the provided tags/categories or ANY single one. ANY will perform a weighted @@ -688,7 +688,7 @@ Args: args (any): These are passed on as arguments to the default django get method. - Keyword args: + Keyword Args: kwargs (any): These are passed on as normal arguments to the default django get method Returns: @@ -710,7 +710,7 @@ Args: args (any): These are passed on as arguments to the default django filter method. - Keyword args: + Keyword Args: kwargs (any): These are passed on as normal arguments to the default django filter method. Returns: @@ -833,7 +833,7 @@ Variation of get that not only returns the current typeclass but also all subclasses of that typeclass. - Keyword args: + Keyword Args: kwargs (any): These are passed on as normal arguments to the default django get method. Returns: @@ -858,7 +858,7 @@ Args: args (any): These are passed on as arguments to the default django filter method. - Keyword args: + Keyword Args: kwargs (any): These are passed on as normal arguments to the default django filter method. Returns: diff --git a/docs/0.9.5/_modules/evennia/typeclasses/models.html b/docs/0.9.5/_modules/evennia/typeclasses/models.html index ef701f6816..1a2491fd7d 100644 --- a/docs/0.9.5/_modules/evennia/typeclasses/models.html +++ b/docs/0.9.5/_modules/evennia/typeclasses/models.html @@ -330,7 +330,7 @@ Args: Passed through to parent. - Keyword args: + Keyword Args: Passed through to parent. Notes: @@ -654,7 +654,7 @@ no_superuser_bypass (bool, optional): Turn off the superuser lock bypass (be careful with this one). - Keyword args: + Keyword Args: kwar (any): Ignored, but is there to make the api consistent with the object-typeclass method access, which use it to feed to its hook methods. diff --git a/docs/0.9.5/_modules/evennia/utils/create.html b/docs/0.9.5/_modules/evennia/utils/create.html index fecbb44359..f094010431 100644 --- a/docs/0.9.5/_modules/evennia/utils/create.html +++ b/docs/0.9.5/_modules/evennia/utils/create.html @@ -109,7 +109,7 @@ Create a new in-game object. - Keyword args: + Keyword Args: typeclass (class or str): Class or python path to a typeclass. key (str): Name of the new object. If not set, a name of `#dbref` will be set. @@ -236,7 +236,7 @@ scripts. It's behaviour is similar to the game objects except scripts has a time component and are more limited in scope. - Keyword args: + Keyword Args: typeclass (class or str): Class or python path to a typeclass. key (str): Name of the new object. If not set, a name of #dbref will be set. @@ -469,7 +469,7 @@ Args: key (str): This must be unique. - Keyword args: + Keyword Args: aliases (list of str): List of alternative (likely shorter) keynames. desc (str): A description of the channel, for use in listings. locks (str): Lockstring. @@ -535,7 +535,7 @@ the empty string, will be set to None. password (str): Password in cleartext. - Keyword args: + Keyword Args: typeclass (str): The typeclass to use for the account. is_superuser (bool): Wether or not this account is to be a superuser locks (str): Lockstring. diff --git a/docs/0.9.5/_modules/evennia/utils/evform.html b/docs/0.9.5/_modules/evennia/utils/evform.html index ab4358b1b7..c00beaac2b 100644 --- a/docs/0.9.5/_modules/evennia/utils/evform.html +++ b/docs/0.9.5/_modules/evennia/utils/evform.html @@ -229,7 +229,7 @@ """ Initiate the form - Keyword args: + Keyword Args: filename (str): Path to template file. cells (dict): A dictionary mapping `{id: text}` tables (dict): A dictionary mapping `{id: EvTable}`. diff --git a/docs/0.9.5/_modules/evennia/utils/evtable.html b/docs/0.9.5/_modules/evennia/utils/evtable.html index 8415550517..ae61bc1437 100644 --- a/docs/0.9.5/_modules/evennia/utils/evtable.html +++ b/docs/0.9.5/_modules/evennia/utils/evtable.html @@ -324,7 +324,7 @@ text (str): Text to wrap. width (int, optional): Width to wrap `text` to. - Keyword args: + Keyword Args: See TextWrapper class for available keyword args to customize wrapping behaviour. @@ -345,7 +345,7 @@ text (str): Text to fill. width (int, optional): Width of fill area. - Keyword args: + Keyword Args: See TextWrapper class for available keyword args to customize filling behaviour. @@ -370,7 +370,7 @@ Args: data (str): The un-padded data of the entry. - Keyword args: + Keyword Args: width (int): Desired width of cell. It will pad to this size. height (int): Desired height of cell. it will pad @@ -815,7 +815,7 @@ """ Reformat the EvCell with new options - Keyword args: + Keyword Args: The available keyword arguments are the same as for `EvCell.__init__`. Raises: @@ -974,7 +974,7 @@ Args: Text for each row in the column - Keyword args: + Keyword Args: All `EvCell.__init_` keywords are available, these settings will be persistently applied to every Cell in the column. @@ -989,7 +989,7 @@ coherent and lined-up column. Will enforce column-specific options to cells. - Keyword args: + Keyword Args: Extra keywords to modify the column setting. Same keywords as in `EvCell.__init__`. @@ -1021,7 +1021,7 @@ use `ypos=0`. If not given, data will be inserted at the end of the column. - Keyword args: + Keyword Args: Available keywods as per `EvCell.__init__`. """ @@ -1040,7 +1040,7 @@ """ Change the options for the column. - Keyword args: + Keyword Args: Keywords as per `EvCell.__init__`. """ @@ -1055,7 +1055,7 @@ index (int): Index location of the cell in the column, starting from 0 for the first row to Nrows-1. - Keyword args: + Keyword Args: Keywords as per `EvCell.__init__`. """ @@ -1095,7 +1095,7 @@ Args: Header texts for the table. - Keyword args: + Keyword Args: table (list of lists or list of `EvColumns`, optional): This is used to build the table in a quick way. If not given, the table will start out empty and `add_` methods @@ -1249,7 +1249,7 @@ nx (int): x size of table. ny (int): y size of table. - Keyword args: + Keyword Args: Keywords as per `EvTable.__init__`. Returns: @@ -1576,7 +1576,7 @@ Args: args (str): These strings will be used as the header texts. - Keyword args: + Keyword Args: Same keywords as per `EvTable.__init__`. Will be applied to the new header's cells. @@ -1600,7 +1600,7 @@ to input new column. If not given, column will be added to the end of the table. Uses Python indexing (so first column is `xpos=0`) - Keyword args: + Keyword Args: Other keywords as per `Cell.__init__`. """ @@ -1664,7 +1664,7 @@ input new row. If not given, will be added to the end of the table. Uses Python indexing (so first row is `ypos=0`) - Keyword args: + Keyword Args: Other keywords are as per `EvCell.__init__`. """ @@ -1703,7 +1703,7 @@ """ Force a re-shape of the entire table. - Keyword args: + Keyword Args: Table options as per `EvTable.__init__`. """ @@ -1739,7 +1739,7 @@ index (int): Which column to reformat. The column index is given from 0 to Ncolumns-1. - Keyword args: + Keyword Args: Column options as per `EvCell.__init__`. Raises: diff --git a/docs/0.9.5/_modules/evennia/utils/inlinefuncs.html b/docs/0.9.5/_modules/evennia/utils/inlinefuncs.html index ebaf88777b..eb322bf25f 100644 --- a/docs/0.9.5/_modules/evennia/utils/inlinefuncs.html +++ b/docs/0.9.5/_modules/evennia/utils/inlinefuncs.html @@ -176,7 +176,7 @@ fillchar (str, optional): Character used for padding. Defaults to a space. - Keyword args: + Keyword Args: session (Session): Session performing the pad. Example: @@ -206,7 +206,7 @@ crop in characters. suffix (str, optional): End string to mark the fact that a part of the string was cropped. Defaults to `[...]`. - Keyword args: + Keyword Args: session (Session): Session performing the crop. Example: @@ -231,7 +231,7 @@ Args: spaces (int, optional): The number of spaces to insert. - Keyword args: + Keyword Args: session (Session): Session performing the crop. Example: @@ -254,7 +254,7 @@ text (str, optional): Text endclr (str, optional): The color to use at the end of the string. Defaults to `|n` (reset-color). - Keyword args: + Keyword Args: session (Session): Session object triggering inlinefunc. Example: @@ -411,7 +411,7 @@ available_funcs (dict, optional): Define an alternative source of functions to parse for. If unset, use the functions found through `settings.INLINEFUNC_MODULES`. stacktrace (bool, optional): If set, print the stacktrace to log. - Keyword args: + Keyword Args: session (Session): This is sent to this function by Evennia when triggering it. It is passed to the inlinefunc. kwargs (any): All other kwargs are also passed on to the inlinefunc. diff --git a/docs/0.9.5/_modules/evennia/utils/optionclasses.html b/docs/0.9.5/_modules/evennia/utils/optionclasses.html index 61aeee3f6b..e1479be8c8 100644 --- a/docs/0.9.5/_modules/evennia/utils/optionclasses.html +++ b/docs/0.9.5/_modules/evennia/utils/optionclasses.html @@ -152,7 +152,7 @@ where `kwargs` are a combination of those passed into this function and the ones specified by the `OptionHandler`. - Keyword args: + Keyword Args: any (any): Not used by default. These are passed in from self.set and allows the option to let the caller customize saving by overriding or extend the default save kwargs @@ -212,7 +212,7 @@ """ Renders the Option's value as something pretty to look at. - Keyword args: + Keyword Args: any (any): These are options passed by the caller to potentially customize display dynamically. diff --git a/docs/0.9.5/_modules/evennia/utils/utils.html b/docs/0.9.5/_modules/evennia/utils/utils.html index a8573594cc..e2353da9bb 100644 --- a/docs/0.9.5/_modules/evennia/utils/utils.html +++ b/docs/0.9.5/_modules/evennia/utils/utils.html @@ -1066,7 +1066,7 @@ callback (callable): Will be called as `callback(*args, **kwargs)` after `timedelay` seconds. *args: Will be used as arguments to callback - Keyword args: + Keyword Args: persistent (bool): Make the delay persistent over a reboot or reload. any: Any other keywords will be use as keyword arguments to callback. @@ -1108,7 +1108,7 @@ executed with `*args` and non-reserved `**kwargs` as arguments. The callable will be executed using ProcPool, or in a thread if ProcPool is not available. - Keyword args: + Keyword Args: at_return (callable): Should point to a callable with one argument. It will be called with the return value from to_execute. @@ -2109,7 +2109,7 @@ query (str, optional): The search query used to produce `matches`. quiet (bool, optional): If `True`, no messages will be echoed to caller on errors. - Keyword args: + Keyword Args: nofound_string (str): Replacement string to echo on a notfound error. multimatch_string (str): Replacement string to echo on a multimatch error. @@ -2174,7 +2174,7 @@ """ Limited-size ordered dict. - Keyword args: + Keyword Args: size_limit (int): Use this to limit the number of elements alloweds to be in this list. By default the overshooting elements will be removed in FIFO order. diff --git a/docs/0.9.5/_modules/evennia/web/website/views.html b/docs/0.9.5/_modules/evennia/web/website/views.html index 54239a2569..b95c7e9c86 100644 --- a/docs/0.9.5/_modules/evennia/web/website/views.html +++ b/docs/0.9.5/_modules/evennia/web/website/views.html @@ -184,7 +184,7 @@ You can do whatever you want to it, but it must be returned at the end of this method. - Keyword args: + Keyword Args: any (any): Passed through. Returns: diff --git a/docs/0.9.5/_sources/api/evennia.accounts.rst.txt b/docs/0.9.5/_sources/api/evennia.accounts.rst.txt index 87483bda1b..08b689d3c1 100644 --- a/docs/0.9.5/_sources/api/evennia.accounts.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.accounts.rst.txt @@ -6,10 +6,11 @@ evennia.accounts :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.accounts.accounts evennia.accounts.admin diff --git a/docs/0.9.5/_sources/api/evennia.commands.default.rst.txt b/docs/0.9.5/_sources/api/evennia.commands.default.rst.txt index d565163dbe..596d5e56d9 100644 --- a/docs/0.9.5/_sources/api/evennia.commands.default.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.commands.default.rst.txt @@ -6,10 +6,11 @@ evennia.commands.default :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.commands.default.account evennia.commands.default.admin diff --git a/docs/0.9.5/_sources/api/evennia.commands.rst.txt b/docs/0.9.5/_sources/api/evennia.commands.rst.txt index 92fc209234..56cd32e4b0 100644 --- a/docs/0.9.5/_sources/api/evennia.commands.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.commands.rst.txt @@ -6,20 +6,22 @@ evennia.commands :undoc-members: :show-inheritance: -Subpackages ------------ - -.. toctree:: - - evennia.commands.default - -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.commands.cmdhandler evennia.commands.cmdparser evennia.commands.cmdset evennia.commands.cmdsethandler evennia.commands.command + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 + + evennia.commands.default diff --git a/docs/0.9.5/_sources/api/evennia.comms.rst.txt b/docs/0.9.5/_sources/api/evennia.comms.rst.txt index b9ad8f6690..5c3761d59f 100644 --- a/docs/0.9.5/_sources/api/evennia.comms.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.comms.rst.txt @@ -6,10 +6,11 @@ evennia.comms :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.comms.admin evennia.comms.channelhandler diff --git a/docs/0.9.5/_sources/api/evennia.contrib.ingame_python.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.ingame_python.rst.txt index fb638c737e..97d001a4d5 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.ingame_python.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.ingame_python.rst.txt @@ -6,10 +6,11 @@ evennia.contrib.ingame\_python :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.ingame_python.callbackhandler evennia.contrib.ingame_python.commands diff --git a/docs/0.9.5/_sources/api/evennia.contrib.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.rst.txt index abeba92ef5..4b9868b707 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.rst.txt @@ -6,21 +6,11 @@ evennia.contrib :undoc-members: :show-inheritance: -Subpackages ------------ - -.. toctree:: - - evennia.contrib.ingame_python - evennia.contrib.security - evennia.contrib.turnbattle - evennia.contrib.tutorial_examples - evennia.contrib.tutorial_world - -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.barter evennia.contrib.building_menu @@ -48,3 +38,15 @@ Submodules evennia.contrib.tree_select evennia.contrib.unixcommand evennia.contrib.wilderness + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 + + evennia.contrib.ingame_python + evennia.contrib.security + evennia.contrib.turnbattle + evennia.contrib.tutorial_examples + evennia.contrib.tutorial_world diff --git a/docs/0.9.5/_sources/api/evennia.contrib.security.auditing.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.security.auditing.rst.txt index 46c062e2c8..7aac40dfda 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.security.auditing.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.security.auditing.rst.txt @@ -6,10 +6,11 @@ evennia.contrib.security.auditing :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.security.auditing.outputs evennia.contrib.security.auditing.server diff --git a/docs/0.9.5/_sources/api/evennia.contrib.security.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.security.rst.txt index 49aed18880..fd2dcd0bab 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.security.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.security.rst.txt @@ -6,9 +6,10 @@ evennia.contrib.security :undoc-members: :show-inheritance: -Subpackages ------------ +Packages/folders +---------------- .. toctree:: + :maxdepth: 6 evennia.contrib.security.auditing diff --git a/docs/0.9.5/_sources/api/evennia.contrib.turnbattle.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.turnbattle.rst.txt index 41724328c0..96afa16375 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.turnbattle.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.turnbattle.rst.txt @@ -6,10 +6,11 @@ evennia.contrib.turnbattle :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.turnbattle.tb_basic evennia.contrib.turnbattle.tb_equip diff --git a/docs/0.9.5/_sources/api/evennia.contrib.tutorial_examples.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.tutorial_examples.rst.txt index 85ab0aace5..9a01032d29 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.tutorial_examples.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.tutorial_examples.rst.txt @@ -6,10 +6,11 @@ evennia.contrib.tutorial\_examples :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.tutorial_examples.bodyfunctions evennia.contrib.tutorial_examples.cmdset_red_button diff --git a/docs/0.9.5/_sources/api/evennia.contrib.tutorial_world.rst.txt b/docs/0.9.5/_sources/api/evennia.contrib.tutorial_world.rst.txt index 5f0f77d58c..8ba65cb7ff 100644 --- a/docs/0.9.5/_sources/api/evennia.contrib.tutorial_world.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.contrib.tutorial_world.rst.txt @@ -6,10 +6,11 @@ evennia.contrib.tutorial\_world :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.contrib.tutorial_world.intro_menu evennia.contrib.tutorial_world.mob diff --git a/docs/0.9.5/_sources/api/evennia.help.rst.txt b/docs/0.9.5/_sources/api/evennia.help.rst.txt index e805f83d0e..f04209b03f 100644 --- a/docs/0.9.5/_sources/api/evennia.help.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.help.rst.txt @@ -6,10 +6,11 @@ evennia.help :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.help.admin evennia.help.manager diff --git a/docs/0.9.5/_sources/api/evennia.locks.rst.txt b/docs/0.9.5/_sources/api/evennia.locks.rst.txt index 66fdbf2790..a3836b60ef 100644 --- a/docs/0.9.5/_sources/api/evennia.locks.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.locks.rst.txt @@ -6,10 +6,11 @@ evennia.locks :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.locks.lockfuncs evennia.locks.lockhandler diff --git a/docs/0.9.5/_sources/api/evennia.objects.rst.txt b/docs/0.9.5/_sources/api/evennia.objects.rst.txt index 14a5a9ac85..5d79d16c61 100644 --- a/docs/0.9.5/_sources/api/evennia.objects.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.objects.rst.txt @@ -6,10 +6,11 @@ evennia.objects :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.objects.admin evennia.objects.manager diff --git a/docs/0.9.5/_sources/api/evennia.prototypes.rst.txt b/docs/0.9.5/_sources/api/evennia.prototypes.rst.txt index 07b864635c..0c26fff595 100644 --- a/docs/0.9.5/_sources/api/evennia.prototypes.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.prototypes.rst.txt @@ -6,10 +6,11 @@ evennia.prototypes :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.prototypes.menus evennia.prototypes.protfuncs diff --git a/docs/0.9.5/_sources/api/evennia.rst.txt b/docs/0.9.5/_sources/api/evennia.rst.txt index 0f93df5333..3d00e40829 100644 --- a/docs/0.9.5/_sources/api/evennia.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.rst.txt @@ -6,10 +6,19 @@ evennia :undoc-members: :show-inheritance: -Subpackages ------------ +Modules +------- .. toctree:: + :maxdepth: 6 + + evennia.settings_default + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 evennia.accounts evennia.commands @@ -24,10 +33,3 @@ Subpackages evennia.typeclasses evennia.utils evennia.web - -Submodules ----------- - -.. toctree:: - - evennia.settings_default diff --git a/docs/0.9.5/_sources/api/evennia.scripts.rst.txt b/docs/0.9.5/_sources/api/evennia.scripts.rst.txt index 56af96ff8d..14c154ba09 100644 --- a/docs/0.9.5/_sources/api/evennia.scripts.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.scripts.rst.txt @@ -6,10 +6,11 @@ evennia.scripts :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.scripts.admin evennia.scripts.manager diff --git a/docs/0.9.5/_sources/api/evennia.server.game_index_client.rst.txt b/docs/0.9.5/_sources/api/evennia.server.game_index_client.rst.txt index 451541bbb4..ca8a109482 100644 --- a/docs/0.9.5/_sources/api/evennia.server.game_index_client.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.server.game_index_client.rst.txt @@ -6,10 +6,11 @@ evennia.server.game\_index\_client :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.server.game_index_client.client evennia.server.game_index_client.service diff --git a/docs/0.9.5/_sources/api/evennia.server.portal.rst.txt b/docs/0.9.5/_sources/api/evennia.server.portal.rst.txt index 612f0e89d7..7bd0dfa937 100644 --- a/docs/0.9.5/_sources/api/evennia.server.portal.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.server.portal.rst.txt @@ -6,10 +6,11 @@ evennia.server.portal :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.server.portal.amp evennia.server.portal.amp_server diff --git a/docs/0.9.5/_sources/api/evennia.server.profiling.rst.txt b/docs/0.9.5/_sources/api/evennia.server.profiling.rst.txt index 0279e7c009..89068d7204 100644 --- a/docs/0.9.5/_sources/api/evennia.server.profiling.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.server.profiling.rst.txt @@ -6,10 +6,11 @@ evennia.server.profiling :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.server.profiling.dummyrunner evennia.server.profiling.dummyrunner_settings diff --git a/docs/0.9.5/_sources/api/evennia.server.rst.txt b/docs/0.9.5/_sources/api/evennia.server.rst.txt index 245655bc53..71ee526fda 100644 --- a/docs/0.9.5/_sources/api/evennia.server.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.server.rst.txt @@ -6,19 +6,11 @@ evennia.server :undoc-members: :show-inheritance: -Subpackages ------------ - -.. toctree:: - - evennia.server.game_index_client - evennia.server.portal - evennia.server.profiling - -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.server.admin evennia.server.amp_client @@ -37,3 +29,13 @@ Submodules evennia.server.throttle evennia.server.validators evennia.server.webserver + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 + + evennia.server.game_index_client + evennia.server.portal + evennia.server.profiling diff --git a/docs/0.9.5/_sources/api/evennia.typeclasses.rst.txt b/docs/0.9.5/_sources/api/evennia.typeclasses.rst.txt index a9be581e96..1f3c8e7ce2 100644 --- a/docs/0.9.5/_sources/api/evennia.typeclasses.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.typeclasses.rst.txt @@ -6,10 +6,11 @@ evennia.typeclasses :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.typeclasses.admin evennia.typeclasses.attributes diff --git a/docs/0.9.5/_sources/api/evennia.utils.idmapper.rst.txt b/docs/0.9.5/_sources/api/evennia.utils.idmapper.rst.txt index 48c3a13e42..85b71586b7 100644 --- a/docs/0.9.5/_sources/api/evennia.utils.idmapper.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.utils.idmapper.rst.txt @@ -6,10 +6,11 @@ evennia.utils.idmapper :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.utils.idmapper.manager evennia.utils.idmapper.models diff --git a/docs/0.9.5/_sources/api/evennia.utils.rst.txt b/docs/0.9.5/_sources/api/evennia.utils.rst.txt index 9814f6ab75..4647d2f350 100644 --- a/docs/0.9.5/_sources/api/evennia.utils.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.utils.rst.txt @@ -6,17 +6,11 @@ evennia.utils :undoc-members: :show-inheritance: -Subpackages ------------ - -.. toctree:: - - evennia.utils.idmapper - -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.utils.ansi evennia.utils.batchprocessors @@ -39,3 +33,11 @@ Submodules evennia.utils.text2html evennia.utils.utils evennia.utils.validatorfuncs + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 + + evennia.utils.idmapper diff --git a/docs/0.9.5/_sources/api/evennia.web.rst.txt b/docs/0.9.5/_sources/api/evennia.web.rst.txt index 2bca5a978c..e63d01605e 100644 --- a/docs/0.9.5/_sources/api/evennia.web.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.web.rst.txt @@ -6,18 +6,20 @@ evennia.web :undoc-members: :show-inheritance: -Subpackages ------------ +Modules +------- .. toctree:: + :maxdepth: 6 + + evennia.web.urls + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 evennia.web.utils evennia.web.webclient evennia.web.website - -Submodules ----------- - -.. toctree:: - - evennia.web.urls diff --git a/docs/0.9.5/_sources/api/evennia.web.utils.rst.txt b/docs/0.9.5/_sources/api/evennia.web.utils.rst.txt index c3530761f0..7b0888f9bd 100644 --- a/docs/0.9.5/_sources/api/evennia.web.utils.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.web.utils.rst.txt @@ -6,10 +6,11 @@ evennia.web.utils :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.web.utils.backends evennia.web.utils.general_context diff --git a/docs/0.9.5/_sources/api/evennia.web.webclient.rst.txt b/docs/0.9.5/_sources/api/evennia.web.webclient.rst.txt index af4f24a48b..7d41ba63f6 100644 --- a/docs/0.9.5/_sources/api/evennia.web.webclient.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.web.webclient.rst.txt @@ -6,10 +6,11 @@ evennia.web.webclient :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.web.webclient.urls evennia.web.webclient.views diff --git a/docs/0.9.5/_sources/api/evennia.web.website.rst.txt b/docs/0.9.5/_sources/api/evennia.web.website.rst.txt index 2a00cda37c..49c51de624 100644 --- a/docs/0.9.5/_sources/api/evennia.web.website.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.web.website.rst.txt @@ -6,19 +6,21 @@ evennia.web.website :undoc-members: :show-inheritance: -Subpackages ------------ - -.. toctree:: - - evennia.web.website.templatetags - -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.web.website.forms evennia.web.website.tests evennia.web.website.urls evennia.web.website.views + +Packages/folders +---------------- + +.. toctree:: + :maxdepth: 6 + + evennia.web.website.templatetags diff --git a/docs/0.9.5/_sources/api/evennia.web.website.templatetags.rst.txt b/docs/0.9.5/_sources/api/evennia.web.website.templatetags.rst.txt index 743e1c7ac2..ad420e1efc 100644 --- a/docs/0.9.5/_sources/api/evennia.web.website.templatetags.rst.txt +++ b/docs/0.9.5/_sources/api/evennia.web.website.templatetags.rst.txt @@ -6,9 +6,10 @@ evennia.web.website.templatetags :undoc-members: :show-inheritance: -Submodules ----------- +Modules +------- .. toctree:: + :maxdepth: 6 evennia.web.website.templatetags.addclass diff --git a/docs/0.9.5/api/evennia-api.html b/docs/0.9.5/api/evennia-api.html index 3e3af1782b..c54ab9c15d 100644 --- a/docs/0.9.5/api/evennia-api.html +++ b/docs/0.9.5/api/evennia-api.html @@ -39,9 +39,13 @@