Griatch
|
7f31534618
|
Made creation of #1 check for custom room/home assignment by hooks.
|
2011-10-09 18:02:43 +02:00 |
|
Griatch
|
ef84d3790b
|
Added another error message to initial_setup.py.
|
2011-10-09 16:44:10 +02:00 |
|
Griatch
|
aee147102b
|
Gave better error messages when a player typeclass has bugs and thus won't load. Also made a better solution for hiding new characters from the start room when first being created (also makes sure that character.location never starts as being None, recovering back to home in that case).
|
2011-10-09 16:32:55 +02:00 |
|
Griatch
|
8c6b27b5b3
|
Fixed a migration that failed under mysql.
|
2011-10-05 21:49:43 +02:00 |
|
Griatch
|
b465bdd7bb
|
Updated reST docs.
|
2011-10-04 22:29:40 +02:00 |
|
Griatch
|
1291509d03
|
Added inlines and fixed admin interface to not allow editing User once a Player is created.
|
2011-10-04 21:14:41 +02:00 |
|
Griatch
|
6ddfdd85f0
|
Updating ReST docs.
|
2011-10-04 00:46:50 +02:00 |
|
Griatch
|
cbcb13feb1
|
Covered more error messages when the setting file won't load in the managerCovered more error messages when the setting file won't load in the manager..
|
2011-10-04 00:17:39 +02:00 |
|
Griatch
|
2c4af9076d
|
Made some commands sensible to the new form of obj.typeclass (it's not a typeclass instance, not a class). Changed the way TypedObject.swap_typeclass works, so as to properly manage failures.
|
2011-10-03 23:53:23 +02:00 |
|
Griatch
|
c8b4f7518d
|
Fix of admin setup for DEBUG=False, based on https://code.djangoproject.com/ticket/10405#comment:11 (thanks to catch22 for finding this)
|
2011-10-03 21:25:06 +02:00 |
|
Griatch
|
bf72239dc9
|
Admin interface: some more listings.
|
2011-10-02 23:02:43 +02:00 |
|
Griatch
|
bc0195bbaa
|
Worked with admin interface, cleaning up and adding functionality. There are still some strange behaviour that makes e.g. the presence of inlines to auto-create empty database objects for some strange reason. Inlines are turned off at the moment (so there is no convenient way to add attributes from the admin interface at this time). Creating players now work, but one needs to create all three components (User, Player, Character) in one go and tie them together. The User-admin form was changed to also support multi-word usernames (django default didn't allow spaces).
|
2011-10-02 22:37:07 +02:00 |
|
Griatch
|
7f2e6dd4fa
|
Tidying up the admin interface by adding more verbose and helpful names to database fields as well as adding more help texts. The ObjectAdmin still gives tracebacks.
|
2011-10-02 01:21:03 +02:00 |
|
Griatch
|
6ae1123421
|
Fixed hook method descriptions.
|
2011-10-01 22:36:55 +02:00 |
|
Griatch
|
23cd9e31b1
|
Restructured the way typeclasses are loaded. This makes it possible to run at_init() hooks at initiation also for objects without any custom cases for character/players. at_init() hooks are called only when an object is initiated. This means that a room's at_init() hook is only called when someone looks or enters it or a script operates on it, for example, rest of the time these objects are dormant, most efficiently.
|
2011-10-01 22:00:22 +02:00 |
|
Griatch
|
0a1bcd36c2
|
Removed FULL_PERSISTENCE setting. It was a "feature" that was added at a time when caching was more inefficient than now. Also the new reload mechanism make FULL_PERSISTENCE=False unfeasable. Use ndb explicitly for non-persistence.
|
2011-10-01 15:10:21 +02:00 |
|
Griatch
|
679524bd4a
|
Removed persistence from test script bodyfunctions.
|
2011-10-01 13:23:23 +02:00 |
|
Griatch
|
5271944f9a
|
docs: updating rest documentationdocs: updating rest documentation..
|
2011-10-01 13:21:34 +02:00 |
|
Griatch
|
c8d2e3d6a2
|
Fixed some issues with the @script command.
|
2011-10-01 13:13:48 +02:00 |
|
Griatch
|
bab89b191b
|
Resolves issue 195. A typo in the sessionhandler that lead to big consequences.
|
2011-10-01 12:44:30 +02:00 |
|
Griatch
|
2597df0512
|
Last commit had a typo leading to startup traceback.
|
2011-09-20 20:26:35 +02:00 |
|
Griatch
|
18669c8700
|
Fixing so assigning to a nested attribute value doesn't loose data. It is unfortunately not possible to support direct assignment of deeply nested attributes at this time. So if obj.db.mydict = {1:{2:3}}, then obj.db.mydict[1] = 1 will work just fine, but obj.db.mydict[1][2] = 4 will not. For more advanced manipulation such as the latter case, store the dict in a temporary variable and save it back after changes have been done.
|
2011-09-20 19:59:08 +02:00 |
|
Griatch
|
058f8a9519
|
Fixed a bug in creating fresh dict-attributes/lists in the new attribute-save system. Resolves issue 191.
|
2011-09-20 15:55:58 +02:00 |
|
Griatch
|
ecf11b38cd
|
Fixed an issue with the locks not getting properly set on rooms.
|
2011-09-20 13:44:26 +02:00 |
|
Griatch
|
c3a4063cc3
|
wiki: fixes.
|
2011-09-20 13:23:39 +02:00 |
|
Griatch
|
9a719d7fb0
|
Updated rst files to latest wiki.
|
2011-09-20 13:21:07 +02:00 |
|
Griatch
|
60424fa828
|
Merge commit.
|
2011-09-20 12:39:22 +02:00 |
|
Griatch
|
475361ad28
|
Added functionality to Attributes to store and update dicts and lists dynamically. One side effect of this is that dicts and tuples need to be stored as custom object types which means that e.g. isintance(obj.db.mylist) == type(list) will return False. In order to do checks like this, use src.utils.utils.inherits_from() instead. The Attribute system now also supports tuples. All other iterables except dicts, lists and tuples are stored and retrieved as lists, same as before.
This fixes issue 189.
|
2011-09-20 12:37:45 +02:00 |
|
Sergi Reyner
|
f954e99822
|
Fixed the tutorial_world Mob so it moves and announces its arrival.
|
2011-09-19 19:08:11 +01:00 |
|
Griatch
|
0af6dff175
|
Updated rst files to wiki.
|
2011-09-15 22:45:05 +02:00 |
|
Griatch
|
1995f61d46
|
Put up a warning about not using BaseObject.at_init() at this time (it's not called, as per issue 188). Also removed the deprecated at_cache() hook (it doesn't work anymore now that the caching system is much more efficient and only caches once).
|
2011-09-15 10:46:41 +02:00 |
|
Griatch
|
f1d743f14c
|
Checked at_init() due to reported issues of it not getting called. Couldn't find any problems, rather it was called too many times, so removed an unecessary call.
|
2011-09-15 01:18:53 +02:00 |
|
Griatch
|
de9c2ec437
|
Cleaned admin interface, removing misleading fields. It's still broken in a few places however, objects give a traceback here, not sure why.
|
2011-09-15 00:28:26 +02:00 |
|
Griatch
|
399919a8a9
|
Database schema has changed. Run migrations if you use South. Started work on tidying up admin interface.
|
2011-09-14 22:34:10 +02:00 |
|
Griatch
|
60e980be67
|
Updated rst-docs to match online wiki
|
2011-09-14 21:17:50 +02:00 |
|
Griatch
|
f523ce686a
|
added docs/ dir to readme file..
|
2011-09-13 11:49:57 +02:00 |
|
Griatch
|
ffeb1494cb
|
Added empty log dir (mercurial don't allow that normally), as well as fixed an issue with i18n when starting without a settings.py file.
|
2011-09-13 10:18:20 +02:00 |
|
Griatch
|
dce64d8bd2
|
fixes.
|
2011-09-11 17:09:30 +02:00 |
|
Griatch
|
751e2306ae
|
Fixed link page.
|
2011-09-11 16:41:33 +02:00 |
|
Griatch
|
2200632739
|
Tried some variations with reST conversion, but didn't find a satisfactory alternate solution.
|
2011-09-11 16:19:27 +02:00 |
|
Griatch
|
eae89eabc0
|
Patched wiki2html to give correct source code snippet output.
|
2011-09-11 12:17:33 +02:00 |
|
Griatch
|
22b23be095
|
Fixed things in wiki repo so reST decumentation conversion don't hickup as much.
|
2011-09-11 03:24:41 +02:00 |
|
Griatch
|
daa327877c
|
Fixed up look of reST documentation index a bit.
|
2011-09-11 00:38:39 +02:00 |
|
Griatch
|
bd0079a39d
|
Added Sphinx (reST-style) conversion of Evennia documentation to docs/. This is an auto-generated conversion directly from the Wiki, so it's not custom-written in any way (will also make it easy to update). You need Sphinx to compile the sources into fancy pages. Supporting sphinx is to make documentation easier to print and view offline. Currently no sphinx src-code viewing is activated by default, it gives too many spurious errors (the converters are in the repo though if you're interested in experimenting). So for offline autodocs, doxygen is still to recommend.
|
2011-09-10 23:44:49 +02:00 |
|
Griatch
|
5a2b9e27a0
|
Resolves issue 187.
|
2011-09-09 23:58:51 +02:00 |
|
Griatch
|
ef3ee3bbcb
|
Fixed INSTALL file for Mercurial.
|
2011-09-09 23:49:55 +02:00 |
|
Griatch
|
f8234ec932
|
Updated docstring for cmdhandler to better reflect the current functionality.
|
2011-09-08 11:59:19 +00:00 |
|
Griatch
|
7237be87c6
|
Fixing typo in lock definitions for @dig as well as docstrings. Patch by sergi.reyner. Resolves issue 186.
|
2011-09-08 10:41:55 +00:00 |
|
Greg Taylor
|
3aad32d7b4
|
Fixing issue 183, reported by sergi.reyner. Typo in src/objects/models.py, ocation/location.
|
2011-09-07 15:47:19 +00:00 |
|
Greg Taylor
|
d2e0dfe59c
|
Fixing an issue with stopping script LoopingCall instances. Reported and investigated by raydeejay.
|
2011-09-07 15:44:13 +00:00 |
|