aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522Justin Clark-Casey (justincc)2010-02-121-1/+1
| | | | | | These patch should allow people using systems that do not have their locale set to En_US or similar to use OpenSim without suffering effects such as being a million miles up in the air on login. The problem was caused by parsing strings without forcing that parse to be En_US (hence different decimal and digit group symbols were causing problems). Thanks very much to VikingErik for doing the legwork on this fix and phacelia for spotting it in the first place.
* minor: remove one mono compiler warningJustin Clark-Casey (justincc)2010-02-031-10/+8
|
* Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-292-86/+57
| | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
* Updates all IRegionModules to the new style region modules.Revolution2010-01-232-57/+86
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Let monitor data be requested using either the short form of the name or theMelanie2010-01-161-1/+4
| | | | full, namespace qualified version.
* Shorten the names of the tags in monitorstats summary to the immediate typeMelanie2010-01-161-1/+5
| | | | | name sans namespace. Needs adjustment of scripts using these!. Request my name still uses full namespace path.
* Formatting cleanup. Add copyright headers.Jeff Ames2010-01-041-5/+5
|
* Adds tons of packets.Revolution2009-12-312-0/+47
| | | | | | Applied with change: Changed spelling to Summary (from Summery) Signed-off-by: Melanie <melanie@t-data.com>
* No-op in this commit. Just increasing the tag number due to weirdnesses.Diva Canto2009-12-231-1/+1
|
* Library Module: allows adding folders/items to the Library from IAR files ↵Diva Canto2009-12-232-0/+482
| | | | placed under bin/Library. This works only for standalones.
* Formatting cleanup.Jeff Ames2009-11-2316-17/+449
|
* * Added some new syntax options for the Monitor Module's HTTP poll.Adam Frisby2009-11-121-0/+30
|
* * Added HTTP polling for Statistics Monitor Module (access via ↵Adam Frisby2009-11-111-1/+24
| | | | | | | | | | | http://sim.com:httpport/monitorstats/regionUUID/) * Returns simple formatted XML document containing statistical data on the current sim. * Example: <data> <AgentCountMonitor>5.0000</AgentCountMonitor> ... </data>
* * Committing missing file from last commit.Adam Frisby2009-11-021-0/+13
|
* * Implemented some tweaks to monitoring module.Adam Frisby2009-11-023-1/+95
| | | | | * Output is prettier & more useful. * Added 'Alerts' to allow rules to be constructed using Monitors to detect for events such as deadlocks. This will be translated to SNMP Traps when I get SNMP implemented.
* * Implements new 'Monitoring' system for reporting performance.Adam Frisby2009-11-0113-0/+420
| | | | | | * Mostly the same set as the StatsMonitor used for Viewer notification, but exposes some new frametimes - including EventMS, PhysicsUpdateMS, LandUpdateMS; new memory monitoring - both GC.TotalMemory and Process.PrivateWorkingMemory64; also exposes ThreadCount (using System.Diagnostics.Process) * Type 'monitor report' on the console to see output. * SNMP Implementation forthcoming.
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto2009-09-261-208/+0
| | | | minimally. A few bugs to catch now.
* Completely remove the prior implementation of the request event handlingMelanie2009-09-221-1/+1
| | | | | on poll handlers. Introduce a new delegate on the PollServiceEventArgs that allow access to the request headers and body.
* Make the poll service handler call the handler method on incoming requests.Melanie2009-09-211-1/+6
|
* Add a RequestID (UUID.Random()) to the PollRequest and pass it to allMelanie2009-09-211-4/+4
| | | | even hander delegates.
* Add a UUID param to NoEvents in PollServiceEventArgs to make it more genericMelanie2009-09-211-2/+2
|
* Fixes a race condition in EQ processing that was making EQs pop up again ↵Diva Canto2009-08-111-8/+12
| | | | | | upon client close. Commented remote call on GetSystemFolders again, so that it's not live yet.
* * Fix a locking issue in the EventQueueTeravus Ovares2009-07-311-10/+22
|
* * Fixed another potential httpserver leak.Teravus Ovares2009-07-301-2/+4
|
* * An attempt to fix mantis #3953Teravus Ovares2009-07-291-2/+2
|
* * Adds the ability to have a thread efficient long poll service (such as the ↵Teravus Ovares2009-07-291-13/+80
| | | | | | | | | eventqueue) * If this doesn't melt the Http Server, this will significantly reduce the number of threads in use on regions with many users. * Adds AddPollServiceHTTPHandler, and RemovePollServiceHTTPHandler to BaseHttpServer * Generic enough to be used for many long poll services, not only the EventQueue.
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-102-3/+3
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* comment out some excessively verbose eventqueue debugging messagesDahlia Trimble2009-07-051-2/+2
|
* When a shared module hooks OnClientClosed, it has no way of findingMelanie Thielker2009-06-191-1/+1
| | | | | | | | | out which client connection has closed. So, in multi-region sims, things can get messy fast. This introduces a second parameters, which is a Scene object ref. Minor adjustments to custom modules may be required due to this change.
* * Corrected CAPS namespacesArthur Valadares2009-06-181-2/+2
| | | | | * "luke, use the sed"
* 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/+2
| | | | | | | | | | 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)
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-151-138/+0
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-043-2/+3
|
* Thanks Tommil for a patch that adds a caching option to ↵diva2009-04-271-5/+18
| | | | GetAssetStreamHandler. It is used in the RegionAssetService.
* Bug fix in initialization of RegionAssetServer/MXP. Sometimes the MXP ↵diva2009-04-261-3/+3
| | | | section in ini doesn't exist.
* Thank you kindly, TLaukkan for a patch that:Charles Krinke2009-04-211-1/+3
| | | | | | | | | Added support for loading bare asset binaries (as opposed to xml encoded asset base) to both sandbox asset service and cable beach. * Added support for enabling region asset service when mxp is enabled. * Moved base http server content type defaulting before invocation of request handle method to allow for variable content type in the response.
* * Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby2009-04-052-46/+44
| | | | | | | OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
* svn:eol-style property set.diva2009-03-271-208/+208
|
* svn:eol-style property set.diva2009-03-271-123/+124
|
* * minor: remove mono compiler warningsJustin Clarke Casey2009-03-242-10/+9
|
* Minor changes in names inside.diva2009-03-212-78/+6
|
* Moving HGStandaloneAssetService to a new place, and giving it a more generic ↵diva2009-03-212-0/+404
| | | | name. MXP is going to use it too.
* Thanks to mpallari for Mantis #3310: Make EventQueueGetModule more inheritableDahlia Trimble2009-03-191-8/+8
|
* large scale fix for svn props after "the great refactor"Sean Dague2009-02-124-34/+34
|
* * optimized usings.lbsa712009-02-124-45/+36
|
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-104-0/+1487
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