Convert master docs to use MyST

This commit is contained in:
Griatch 2021-10-26 21:14:33 +02:00
parent 6e03216cd9
commit d229ff024c
359 changed files with 3275 additions and 4567 deletions

View file

@ -39,7 +39,7 @@ from evennia.utils.optionhandler import OptionHandler
from django.utils.translation import gettext as _
from random import getrandbits
__all__ = ("DefaultAccount",)
__all__ = ("DefaultAccount", "DefaultGuest")
_SESSIONS = None

View file

@ -7,7 +7,7 @@ from django.utils import timezone
from django.contrib.auth.models import UserManager
from evennia.typeclasses.managers import TypedObjectManager, TypeclassManager
__all__ = ("AccountManager",)
__all__ = ("AccountManager", "AccountDBManager")
#

View file

@ -45,6 +45,8 @@ __all__ = (
"CmdAbout",
"CmdTime",
"CmdServerLoad",
"CmdAccounts",
"CmdTickers"
)

View file

@ -20,6 +20,9 @@ __all__ = (
"CmdUnconnectedQuit",
"CmdUnconnectedLook",
"CmdUnconnectedHelp",
"CmdUnconnectedEncoding",
"CmdUnconnectedInfo",
"CmdUnconnectedScreenreader"
)
MULTISESSION_MODE = settings.MULTISESSION_MODE

View file

@ -9,7 +9,7 @@ from django.db.models.fields import exceptions
from evennia.typeclasses.managers import TypedObjectManager, TypeclassManager
from evennia.utils.utils import is_iter, make_iter, string_partial_matching
__all__ = ("ObjectManager",)
__all__ = ("ObjectManager", "ObjectDBManager")
_GA = object.__getattribute__
# delayed import

View file

@ -6,7 +6,7 @@ from django.db.models import Q
from evennia.typeclasses.managers import TypedObjectManager, TypeclassManager
from evennia.utils.utils import make_iter
__all__ = ("ScriptManager",)
__all__ = ("ScriptManager", "ScriptDBManager")
_GA = object.__getattribute__
VALIDATE_ITERATION = 0

View file

@ -37,6 +37,7 @@ __all__ = (
"search_message",
"search_channel",
"search_help_entry",
"search_tag", # object-tag
"search_script_tag",
"search_account_tag",
"search_channel_tag",