Updated ReST documentation.
This commit is contained in:
parent
110207fd7f
commit
85952f8075
23 changed files with 371 additions and 432 deletions
|
|
@ -26,7 +26,7 @@ In code, the settings is accessed through
|
|||
from django.conf import settings
|
||||
# or (shorter):
|
||||
from ev import settings
|
||||
#
|
||||
# example:
|
||||
servername = settings.SERVER_NAME
|
||||
|
||||
Each setting appears as a property on the imported ``settings`` object.
|
||||
|
|
@ -73,6 +73,16 @@ for Evennia to be able to locate it.
|
|||
by MUD search engines (which you often have to register with) in
|
||||
order to display what kind of game you are running along with
|
||||
statistics such as number of online players and online status.
|
||||
- ``portal_services_plugin.py`` - this allows for adding your own
|
||||
custom servies/protocols to the Portal. It must define one particular
|
||||
function that will be called by Evennia at startup. There can be any
|
||||
number of service plugin modules, all will be imported and used if
|
||||
defined. More info can be found
|
||||
`here <http://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols>`_.
|
||||
- ``server_services_plugin.py`` - this is equivalent to the previous
|
||||
one, but used for adding new services to the Server instead. More
|
||||
info can be found
|
||||
`here <http://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols>`_.
|
||||
|
||||
Some other Evennia systems can be customized by plugin modules but has
|
||||
no explicit template in ``conf/examples``:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue