| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
- fixes IRCBridgeModule's XmlRpc method really paying attention to
region parameter
- cleans up indentation in IRCBridge code
- fixes ConciergeModule exception on client logout
|
| |
|
| |
|
|
|
|
|
|
| |
fix: region parameter in IRCBridgeModule XmlRpc was check for presence but not actually used...
|
|
|
|
|
|
| |
client-thread. Will hopefully fix Mantis#2536.
|
| |
|
| |
|
|
|
|
| |
since this is always non null
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
OpenSim.ini config tags in preparation for merge of IRCBridgeModule
and XIRCBridgeModule.
|
|
|
|
|
|
|
| |
- Add tests for Util.isUUID
- First part of the fix for protocol interoperability between viewer 1.20 and 1.21 for friend offers.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
on-/offline updates, calling cards for friends.
This adds methods in the DB layer and changes the MessagingServer, so a full
update (incl. UGAIM) is necessary to get it working. Older regions shouldn't
break, nor should older UGAIM break newer regions, but friends/presence will
only work with all concerned parts (UGAIM, source region and destination
region) at this revision (or later).
I added the DB code for MSSQL, too, but couldn't test that.
BEWARE: May contain bugs.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
with the old Grid Instant Message over OGS1. Refactor the EventManager
to be independent of the rigid module structure design imposed by
the current implementation. Message routing is now done in the destination
module rather than in the event manager. This way, more or less granular
solutions are possible without core changes.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
XIRCBrigeModule is transient, will merge it with IRCBridgeModule:
extends/refactors IRCBridgeModule to support channel-per-region (if
desired).
|
|
|
|
| |
logging messages
|
|
|
|
|
|
| |
* reinstate debug level log message indicating when a child agent is made a root for future debugging purposes
|
|
|
|
|
|
|
|
| |
Region/Environment and use that instead of the Region/Modules/AvatarFactory
* Remove the AvatarFactory dll
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
signature
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
logic to ConciergeModule. adding XmlRpc method to allow update of
welcome template for a region. documenting [Concierge] "password"
option in OpenSim.ini.example.
|
|
|
|
|
|
|
| |
logic to use a regexp.
|
|
|
|
|
|
| |
real groups module can even be implemented.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
welcomes = /path/to/welcome/files/directory
a directory in which you can place welcome templates for concierged
regions (those regions that match the "regions" regexp). you can use
format substitution:
0: will be replaced by avatar name of the avatar entering the region
1: will be replaced by region name
2: will be replaced the name of the concierge
|
| |
|
| |
|
|
|
|
|
|
|
| |
OSChatMessage coming from client.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
chat relaying via private channels, and old IRCBridgeModule
behaviour. also cleaning up IRCBridgeModule's OpenSim.ini
configuration variable names (still supporting "old" variable
names). refactored IRCChatModule into IRCConnector and incorporating
watchdog from IRCBridgeModule into IRCConnector.
enabling ChatModule to be used as a super-class and utilizing it in
ConciergeModule.
|
|
|
|
|
|
|
| |
* Among many other deficiencies, currently a cache clear and relog is needed to see them, which is highly unsatisfactory
* No user funcionality yet
|
|
|
|
|
|
|
|
|
|
| |
server
* use default inventory archive name if none is given
* other minor cleanups
* this facility is not useable yet
|
| |
|
| |
|
|
|
|
|
|
| |
the combat function really doesn't belong into currency
|
|
|
|
| |
there are some circumstances in which not finding a user is not an error
|
| |
|
| |
|
|
|
|
|
|
| |
See mantis #2379 for some useful scripts that work with this.
Note that I added another configuration parameter in addition to the patch to allow for legacy behavior in the absence of new configuration settings.
|
| |
|
|
|
|
| |
seem necessary
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
old way: each region module interested in chat from client had to
- subscribe to scene.EventManager.OnNewClient
- then in its OnNewClient delegate it would subscribe to
client.OnChatFromViewer to capture chat messages coming
new way: ChatModule is the only region module that uses the "old
way" approach but is now forwarding all client chat via
scene.EventManager.OnChatFromClient
- each region module interested in chat from client now only
subscribes to scene.EventManager.OnChatFromClient
this not only simplifies code, but also allows us to substitute
ChatModule with derived classes (ConciergeModule is going to be one
example).
Also, this changeset changes ChatFromViewer to ChatFromClient as it
doesn't necessarily have to be a viewer that is a chat source.
i've taken great care to only comment out those OnNewClient delegates
that were only used for getting at the client chat --- hope it's not
breaking anything.
|
|
|
|
| |
changes
|
| |
|