Change to MyST parser

This commit is contained in:
Griatch 2021-10-21 21:04:14 +02:00
parent 53106e1dba
commit a51e4af609
443 changed files with 4925 additions and 3524 deletions

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

@ -26,6 +26,7 @@ CHANNEL_DEFAULT_TYPECLASS = class_from_module(
# limit symbol import for API
__all__ = (
"CmdChannel",
"CmdObjectChannel",
"CmdAddCom",
"CmdDelCom",

View file

@ -34,6 +34,7 @@ _IDMAPPER = None
# limit symbol import for API
__all__ = (
"CmdAccounts",
"CmdReload",
"CmdReset",
"CmdShutdown",
@ -43,6 +44,7 @@ __all__ = (
"CmdTime",
"CmdServerLoad",
"CmdTasks",
"CmdTickers",
)

View file

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

View file

@ -28,7 +28,7 @@ from evennia.comms import managers
from evennia.locks.lockhandler import LockHandler
from evennia.utils.utils import crop, make_iter, lazy_property
__all__ = ("Msg", "TempMsg", "ChannelDB")
__all__ = ("Msg", "TempMsg", "ChannelDB", "SubscriptionHandler")
_GA = object.__getattribute__

View file

@ -8,7 +8,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