Example #1
0
 def __init__(self, *args, **kwargs):
     "Parent must be initiated first"
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", CmdSetHandler(self))
     _GA(self, "cmdset").update(init_mode=True)
     _SA(self, "nicks", PlayerNickHandler(self))
Example #2
0
 def __init__(self, *args, **kwargs):
     "Parent must be initialized first."
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", LazyLoadHandler(self, "cmdset", CmdSetHandler, True))
     _SA(self, "scripts", LazyLoadHandler(self, "scripts", ScriptHandler))
     _SA(self, "nicks", LazyLoadHandler(self, "nicks", NickHandler))
Example #3
0
 def __init__(self, *args, **kwargs):
     "Parent must be initialized first."
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", CmdSetHandler(self))
     _GA(self, "cmdset").update(init_mode=True)
     _SA(self, "scripts", ScriptHandler(self))
     _SA(self, "nicks", ObjectNickHandler(self))
Example #4
0
 def __init__(self, *args, **kwargs):
     "Parent must be initiated first"
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", LazyLoadHandler(self, "cmdset", CmdSetHandler,
                                         True))
     _SA(self, "scripts", LazyLoadHandler(self, "scripts", ScriptHandler))
     _SA(self, "nicks", LazyLoadHandler(self, "nicks", NickHandler))
Example #5
0
 def __init__(self, *args, **kwargs):
     "Parent must be initiated first"
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", CmdSetHandler(self))
     _GA(self, "cmdset").update(init_mode=True)
     _SA(self, "attributes", AttributeHandler(self))
     _SA(self, "tags", TagHandler(self, category_prefix="player_"))
     _SA(self, "aliases", AliasHandler(self, category_prefix="player_"))
     _SA(self, "nicks", NickHandler(self))
Example #6
0
 def __init__(self, *args, **kwargs):
     "Parent must be initialized first."
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", CmdSetHandler(self))
     _GA(self, "cmdset").update(init_mode=True)
     _SA(self, "scripts", ScriptHandler(self))
     _SA(self, "attributes", AttributeHandler(self))
     _SA(self, "nicks", NickHandler(self))
     _SA(self, "tags", TagHandler(self))
     _SA(self, "aliases", AliasHandler(self))
Example #7
0
 def __init__(self, *args, **kwargs):
     "Parent must be initialized first."
     TypedObject.__init__(self, *args, **kwargs)
     # handlers
     _SA(self, "cmdset", CmdSetHandler(self))
     _GA(self, "cmdset").update(init_mode=True)
     _SA(self, "scripts", ScriptHandler(self))
     _SA(self, "attributes", AttributeHandler(self))
     _SA(self, "nicks", NickHandler(self))
     _SA(self, "tags", TagHandler(self))
     _SA(self, "aliases", AliasHandler(self))
Example #8
0
 def __init__(self, *args, **kwargs):
     TypedObject.__init__(self, *args, **kwargs)
     _SA(self, "attributes", AttributeHandler(self))
     _SA(self, "tags", TagHandler(self))
     _SA(self, "aliases", AliasHandler(self))
Example #9
0
 def __init__(self, *args, **kwargs):
     TypedObject.__init__(self, *args, **kwargs)
     _SA(self, "tags", LazyLoadHandler(self, "tags", TagHandler))
     _SA(self, "attributes", LazyLoadHandler(self, "attributes", AttributeHandler))
     _SA(self, "aliases", LazyLoadHandler(self, "aliases", AliasHandler))
Example #10
0
 def __init__(self, *args, **kwargs):
     TypedObject.__init__(self, *args, **kwargs)
     _SA(self, "tags", TagHandler(self, category_prefix="bboard_"))
     _SA(self, "aliases", AliasHandler(self, category_prefix="bboard_"))
     _SA(self, "attributes", AttributeHandler(self))
Example #11
0
 def __init__(self, *args, **kwargs):
     TypedObject.__init__(self, *args, **kwargs)
     _SA(self, "tags", TagHandler(self, category_prefix="comm_"))
     _SA(self, "aliases", AliasHandler(self, category_prefix="comm_"))
     _SA(self, "attributes", AttributeHandler(self))