aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar/Concierge/ConciergeModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-25dropping attendee list keeping from Concierge, relying onDr Scofield1-87/+26
Scene.GetAvatars() instead now. [test #487]
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-1/+1
needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
2009-05-22converting Chat module and Concierge module to new style region modulesDr Scofield1-23/+55
2009-02-20Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames1-3/+3
2009-02-17- additional code to get ConciergeModule to do truly async broker updatesDr Scofield1-13/+63
- adding watchdog timer async web request - making broker update timeout configurable
2009-02-13fixing crash due to make-child and make-root stepping on each other's toesDr Scofield1-7/+16
2009-02-10fixing ConciergeModule to follow coding conventionsDr Scofield1-106/+106
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-2/+2
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-2/+2
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-02-03* Address http://opensimulator.org/mantis/view.php?id=3076 by actually ↵Justin Clarke Casey1-2/+2
eliminating the redundant enable = true commented example * Comment out some startup verbosity from the module if we haven't enabled it
2009-02-03* Fission SceneObjectTests into basic and linking setsJustin Clarke Casey1-1/+1
2009-02-02Minor formatting cleanup.Jeff Ames1-1/+1
2009-01-30reporting original request URI if HttpWebRequest failed, addingDr Scofield1-11/+18
try-catch around GetRequestStream (this time for sure)
2009-01-30Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2009-01-30fixing: client gets logged out when concierge's broker returns 500Dr Scofield1-2/+19
response. adding: more verbose error logging
2009-01-28fix: client gets logged out when concierge's broker returns 500Dr Scofield1-4/+11
response.
2009-01-26(no commit message)Dr Scofield1-1/+1
2009-01-26(no commit message)Dr Scofield1-1/+1
2009-01-26~ fixing bugs in ConciergeServer.py test codeDr Scofield1-1/+1
~ fix bug in ConciergeModule: wrong closing tag for avatars list
2009-01-26+ adding URI substitution for concierges broker URIDr Scofield1-2/+4
2009-01-26~ turning synchronous broker update into asynchronous oneDr Scofield1-3/+11
2009-01-26~ fix: Concierge reports avatar leaving region twiceDr Scofield1-3/+1
~ cleaning up log statements
2009-01-26~ extending attendee list to include agent nameDr Scofield1-10/+45
+ code to generate full XML avatar list + code to POST XML snipplet
2009-01-26adding timestamp as ISO 8601Dr Scofield1-2/+2
2009-01-26adding XML sniplet generation (start of)Dr Scofield1-0/+16
2009-01-26starting draft attendee list notification support.Dr Scofield1-0/+27
2008-11-06- fixes comparison of struct against null (no no no)Dr Scofield1-32/+32
- fixes IRCBridgeModule's XmlRpc method really paying attention to region parameter - cleans up indentation in IRCBridge code - fixes ConciergeModule exception on client logout
2008-11-03* mionr: correct CONTRIBUTORS file for PlughJustin Clarke Casey1-2/+2
2008-11-03* minor: fussy little change to put colons in some log outputJustin Clarke Casey1-12/+12
2008-11-03* minor: don't need to null check config source in clientstack settings ↵Justin Clarke Casey1-1/+0
since this is always non null
2008-10-30From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield1-10/+0
XIRCBrigeModule is transient, will merge it with IRCBridgeModule: extends/refactors IRCBridgeModule to support channel-per-region (if desired).
2008-10-27* minor: remove mono compiler warningsJustin Clarke Casey1-9/+9
2008-10-27Update svn properties, minor formatting cleanup.Jeff Ames1-3/+3
2008-10-23removing unused method from ConciergeModule. adding attendee listDr Scofield1-47/+169
logic to ConciergeModule. adding XmlRpc method to allow update of welcome template for a region. documenting [Concierge] "password" option in OpenSim.ini.example.
2008-10-21adding "welcome" support to Concierge: allows to specify via Dr Scofield1-8/+60
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
2008-10-20cleaning up IRCBridgeModule to allow for configuration from in-world,Dr Scofield1-42/+139
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.
2008-10-03This changeset changes the way chat from client is routed: Dr Scofield1-26/+40
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.
2008-09-30initial version of a meeting concierge module.Dr Scofield1-0/+213