Attribute cache is working, lots of other updates, but still not a cleanly updatable system. It seems the Attribute-migrations are not coming through properly. Fixed a misnamed table in the comm app.

This commit is contained in:
Griatch 2013-07-11 09:51:52 +02:00
parent 033344ad2c
commit 2b332c3b9a
16 changed files with 229 additions and 179 deletions

View file

@ -58,26 +58,6 @@ _DA = object.__delattr__
_TYPECLASS = None
#------------------------------------------------------------
#
# PlayerAttribute
#
#------------------------------------------------------------
#class PlayerAttribute(Attribute):
# """
# PlayerAttributes work the same way as Attributes on game objects,
# but are intended to store OOC information specific to each user
# and game (example would be configurations etc).
# """
# db_obj = models.ForeignKey("PlayerDB")
#
# class Meta:
# "Define Django meta options"
# verbose_name = "Player Attribute"
#
#post_init.connect(attr_post_init, sender=PlayerAttribute, dispatch_uid="playerattrcache")
#pre_delete.connect(attr_pre_delete, sender=PlayerAttribute, dispatch_uid="playerattrcache")
#------------------------------------------------------------
#