aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-04-19Avoid duplicate script resumes. Move resume calls to more logical placesMelanie Thielker1-1/+1
2010-04-19All scripts are now created suspended and are only unsuspended when the objectMelanie1-0/+1
is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
2010-03-31First attempt at fixing mantis #4641. It's better but there are now some ↵Diva Canto1-4/+21
issues with permissions. (looks like my commit is going to touch CM files, I'm going to let it do it - eof only)
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake1-1/+1
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2010-03-15* UuidGatherer now tracks asset types for assets it discovers. The asset ↵John Hurliman1-2/+2
types are inferred from context * OAR saving will attempt to correct unknown asset types before writing broken assets to the OAR file
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames1-1/+1
2010-03-03Fix bug where approximately half the time, attachments would rez only their ↵Justin Clark-Casey (justincc)1-6/+10
root prim until right clicked (or otherwise updated). The root cause of this problem was that multiple ObjectUpdates were being sent on attachment which differed enough to confuse the client. Sometimes these would eliminate each other and sometimes not, depending on whether the scheduler looked at the queued updates. The solution here is to only schedule the ObjectUpdate once the attachment code has done all it needs to do.
2010-02-24Fixed typo that was affecting the BasicInventoryAccessModuleDiva Canto2-3/+3
2010-02-23* Removed the unused GridRegion.getInternalEndPointPort() (just use ↵John Hurliman1-2/+4
InternalEndPoint.Port). This class is complex enough as it is * Changed the failed to inform neighbor message from a warning to info, since this will fire for every empty neighbor space * Made the EnableSimulator/EstablishAgentCommunication log message more verbose and more clear about what is happening
2010-02-22Changed asset CreatorID to a stringJohn Hurliman1-3/+3
2010-02-22* Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2-5/+6
CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
2010-02-12Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522Justin Clark-Casey (justincc)1-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.
2010-02-03minor: remove one mono compiler warningJustin Clark-Casey (justincc)1-10/+8
2010-01-30Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto1-2/+5
2010-01-30* HGScene is no more.Diva Canto4-0/+1115
* Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
2010-01-29* HGGridConnector is no longer necessary.Diva Canto2-17/+20
* Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken.
2010-01-29Works for grid login.Diva Canto2-12/+33
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie2-86/+57
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-28HG 1.5 is in place. Tested in standalone only.Diva Canto2-53/+69
2010-01-27Added ExternalName config on Gatekeeper.Diva Canto1-0/+1
2010-01-24Some method implementations were missing from LocalGridServiceConnector.Diva Canto1-0/+2
2010-01-24Integrated the hyperlinking with the GridService.Diva Canto1-18/+27
2010-01-23Updates all IRegionModules to the new style region modules.Revolution2-57/+86
Signed-off-by: Melanie <melanie@t-data.com>
2010-01-18Go Home works. With security!!Diva Canto2-8/+71
2010-01-18* Added missing GatekeeperServiceConnectorDiva Canto2-224/+281
* Added basic machinery for teleporting users home. Untested.
2010-01-18* Fixed misspelling of field in GridServiceDiva Canto2-38/+34
* Moved TeleportClientHome to EntityTransferModule
2010-01-17HG teleports through gatekeeper are working.Diva Canto2-17/+12
2010-01-17Agent gets there through the Gatekeeper, but still a few quirks to fix.Diva Canto2-6/+44
2010-01-17Oops, forgot this one.Diva Canto1-0/+137
2010-01-17HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto1-229/+240
2010-01-16Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto1-1/+1
yet.
2010-01-16Finished moving object crossings into EntityTransferModuleDiva Canto1-3/+3
2010-01-16Moved prim crossing to EntityTransferModule. Not complete yet.Diva Canto1-49/+372
2010-01-16Let monitor data be requested using either the short form of the name or theMelanie1-1/+4
full, namespace qualified version.
2010-01-16Shorten the names of the tags in monitorstats summary to the immediate typeMelanie1-1/+5
name sans namespace. Needs adjustment of scripts using these!. Request my name still uses full namespace path.
2010-01-15Renamed IAgentTransferModule to IEntityTransferModule -- accounts for ↵Diva Canto1-0/+1201
objects too.
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2-2/+2
2010-01-11CommunicationsManager deleted.Diva Canto1-1/+0
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto1-5/+4
* HG is seriously broken here * Compiles. Untested.
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames1-5/+5
2010-01-01The Library Service is now working. UserProfileCacheService.LibraryRoot is ↵Diva Canto2-9/+28
obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible.
2009-12-31Adds tons of packets.Revolution2-0/+47
Applied with change: Changed spelling to Summary (from Summery) Signed-off-by: Melanie <melanie@t-data.com>
2009-12-23No-op in this commit. Just increasing the tag number due to weirdnesses.Diva Canto1-1/+1
2009-12-23Library Module: allows adding folders/items to the Library from IAR files ↵Diva Canto2-0/+482
placed under bin/Library. This works only for standalones.
2009-11-23Formatting cleanup.Jeff Ames16-17/+449
2009-11-12* Added some new syntax options for the Monitor Module's HTTP poll.Adam Frisby1-0/+30
2009-11-11* Added HTTP polling for Statistics Monitor Module (access via ↵Adam Frisby1-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>
2009-11-02* Committing missing file from last commit.Adam Frisby1-0/+13
2009-11-02* Implemented some tweaks to monitoring module.Adam Frisby3-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.
2009-11-01* Implements new 'Monitoring' system for reporting performance.Adam Frisby13-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.