aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/InstantMessage (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-1/+1
|
* Friends online notifications upon friendship now working (same sim only).Diva Canto2010-02-271-2/+14
|
* Implement the requestonlinenotification methodMelanie2010-02-271-0/+23
|
* Move requestonlinenotification generic message to presence moduleMelanie2010-02-271-0/+30
|
* Merge branch 'master' into presence-refactorMelanie2010-02-081-16/+19
|\ | | | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-295-174/+83
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
| * Updates all IRegionModules to the new style region modules.Revolution2010-01-235-99/+193
| | | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
* | Merge branch 'master' into presence-refactorMelanie2010-01-161-1/+5
|\ \ | |/ | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
| * Adds config option "ForwardOfflineGroupMessages" to allow disabling of group ↵dahlia2010-01-071-1/+6
| | | | | | | | messages forwarded while offline. Addresses Mantis #4457
* | * Finished SimulationServiceConnectorDiva Canto2010-01-071-20/+40
| | | | | | | | | | * Started rerouting calls to UserService. * Compiles. May run.
* | This is somewhat major-like..... Change the intialization order ofMelanie2009-12-282-4/+6
| | | | | | | | | | | | | | Application plugins so that MainServer.Instance gets assigned before RegionModulesController loads the new style shared modules. This is needed because otherwise no new style shared module could register a HTTP method.... if it breaks, you get to keep both pieces
* | Change FriendsModule, InstantMessageModule, MessageTransferModule, ↵Melanie2009-12-285-472/+170
|/ | | | MuteListModule, OfflineMessageModule, PresenceModule, InventoryTransferModule and LureModule to new style. Reduce FriendsModule and PresenceModule to shells.
* A synchronous call to the messaging server was blocking the process of ↵John Hurliman2009-10-221-1/+7
| | | | promoting an agent to a root agent (logins and teleports). Changed to an async method
* Revert "Rewrote parts of the code that were double-locking different ↵Melanie2009-10-071-6/+5
| | | | | | objects. This is about half of the code base reviewed." This reverts commit e992ca025571a891333a57012c2cd4419b6581e5.
* Rewrote parts of the code that were double-locking different objects. This ↵Diva Canto2009-10-061-5/+6
| | | | is about half of the code base reviewed.
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Fixed an issue with the PresenceModule in "gridmode", introduced by my ↵Diva Canto2009-09-271-3/+0
| | | | fixing the notifications of the messaging service in standalone.
* Fixed MapBlocks bug, wrong order of arguments. First version that seems ↵Diva Canto2009-09-261-0/+12
| | | | | | completely functional. Also fixed the notification of the message server in standalone -- that server doesn't usually exist.
* First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto2009-09-262-3/+11
| | | | minimally. A few bugs to catch now.
* Add some output (at DEBUG level) to the message transfer module to aidMelanie2009-08-201-0/+4
| | | | in tracking down an initialization failure.
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Formatting cleanup.Jeff Ames2009-06-101-1/+1
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-015-5/+5
| | | | LICENSE.txt.
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-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)
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-0/+1
|
* Fix the issue that stopped the packet pool from working. Add a mechanismMelanie Thielker2009-05-021-1/+1
| | | | | | | | to recycley data blocs within a packet. Recycle the ObjectUpdate* data blocks. Speeds up loading even more. This may mean that the packet pool is now viable.
* Remove second timestamp in offline IM, the client already adds oneMelanie Thielker2009-04-251-4/+0
|
* Actually do what I promised in the previous commit :/Melanie Thielker2009-04-121-4/+14
|
* Funnel stored (offline) IMs through the Scene EventManager to make sureMelanie Thielker2009-04-121-14/+10
| | | | | | | they are processed by the modules rather than sent to the client directly. Allows friends and group requests and responses to be saved, too
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-03-311-1/+1
|
* * minor: remove mono compiler warningsJustin Clarke Casey2009-03-301-11/+11
|
* Don't let a missing configuration cause a NREMelanie Thielker2009-03-292-0/+11
| | | | | | Fixes Mantis #3355
* Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker2009-03-293-34/+18
| | | | | | | sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
* Finish the offline IM module (still needs a server). Add rudimentaryMelanie Thielker2009-03-292-8/+199
| | | | | | | support for the mute list (no functionality yet, but allows the RetrieveInstantMessages event to fire now).
* Fix the plumbing in the offline message module.Melanie Thielker2009-03-282-27/+51
| | | | | | No functionality yet.
* Add a module skeleton for offline IM storage. No functionality yet.Melanie Thielker2009-03-281-0/+131
|
* Add an event to process undelivered IMsMelanie Thielker2009-03-171-0/+14
|
* Allow delivery of object messages gridwideMelanie Thielker2009-02-221-1/+2
|
* Revert previous commitMelanie Thielker2009-02-201-7/+0
|
* Committing interface and stubs for IM interceptionMelanie Thielker2009-02-201-0/+7
|
* Make the implementation of the message transfer module protected virtualMelanie Thielker2009-02-191-13/+13
| | | | | | throughout
* reverted last revision, until we decide how to handle capturing IM'sMW2009-02-191-14/+0
|
* Added a event to IMessageTransferModule (and MessageTransferModule) so that ↵MW2009-02-191-0/+14
| | | | other modules can capture IM messages and do custom handling of them. As just attaching to Client IM events doesn't really support this, as they would still get routed through the normal process and could give back errors.
* * Quieten down log messages from the Friends moduleJustin Clarke Casey2009-02-131-2/+0
|
* large scale fix for svn props after "the great refactor"Sean Dague2009-02-123-35/+35
|
* * optimized usings.lbsa712009-02-123-49/+39
|
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-103-0/+1251
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