aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Avoid duplicate script resumes. Move resume calls to more logical placesMelanie Thielker2010-04-191-1/+1
|
* All scripts are now created suspended and are only unsuspended when the objectMelanie2010-04-191-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.
* First attempt at fixing mantis #4641. It's better but there are now some ↵Diva Canto2010-03-311-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)
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-191-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.
* * UuidGatherer now tracks asset types for assets it discovers. The asset ↵John Hurliman2010-03-151-2/+2
| | | | | | types are inferred from context * OAR saving will attempt to correct unknown asset types before writing broken assets to the OAR file
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-1/+1
|
* Fix bug where approximately half the time, attachments would rez only their ↵Justin Clark-Casey (justincc)2010-03-031-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.
* Fixed typo that was affecting the BasicInventoryAccessModuleDiva Canto2010-02-242-3/+3
|
* * Removed the unused GridRegion.getInternalEndPointPort() (just use ↵John Hurliman2010-02-231-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
* Changed asset CreatorID to a stringJohn Hurliman2010-02-221-3/+3
|
* * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-222-5/+6
| | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* Merge branch 'master' into presence-refactorMelanie2010-02-151-1/+1
|\
| * 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.
* | Merge branch 'master' into presence-refactorMelanie2010-02-082-2/+12
|\ \ | |/ | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * 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.
* | Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2010-01-301-2/+5
| |
* | * HGScene is no more.Diva Canto2010-01-304-0/+1115
| | | | | | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* | * HGGridConnector is no longer necessary.Diva Canto2010-01-292-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.
* | Works for grid login.Diva Canto2010-01-292-12/+33
| |
* | HG 1.5 is in place. Tested in standalone only.Diva Canto2010-01-282-53/+69
| |
* | Added ExternalName config on Gatekeeper.Diva Canto2010-01-271-0/+1
| |
* | Some method implementations were missing from LocalGridServiceConnector.Diva Canto2010-01-241-0/+2
| |
* | Integrated the hyperlinking with the GridService.Diva Canto2010-01-241-18/+27
| |
* | Go Home works. With security!!Diva Canto2010-01-182-8/+71
| |
* | * Added missing GatekeeperServiceConnectorDiva Canto2010-01-182-224/+281
| | | | | | | | * Added basic machinery for teleporting users home. Untested.
* | * Fixed misspelling of field in GridServiceDiva Canto2010-01-182-38/+34
| | | | | | | | * Moved TeleportClientHome to EntityTransferModule
* | HG teleports through gatekeeper are working.Diva Canto2010-01-172-17/+12
| |
* | Agent gets there through the Gatekeeper, but still a few quirks to fix.Diva Canto2010-01-172-6/+44
| |
* | Oops, forgot this one.Diva Canto2010-01-171-0/+137
| |
* | HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto2010-01-171-229/+240
| |
* | Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto2010-01-161-1/+1
| | | | | | | | yet.
* | Finished moving object crossings into EntityTransferModuleDiva Canto2010-01-161-3/+3
| |
* | Moved prim crossing to EntityTransferModule. Not complete yet.Diva Canto2010-01-161-49/+372
| |
* | Merge branch 'master' into presence-refactorMelanie2010-01-161-1/+5
|\ \ | |/
| * 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.
* | Renamed IAgentTransferModule to IEntityTransferModule -- accounts for ↵Diva Canto2010-01-151-0/+1201
| | | | | | | | objects too.
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-112-2/+2
| |
* | CommunicationsManager deleted.Diva Canto2010-01-111-1/+0
| |
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-5/+4
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | Merge branch 'master' into presence-refactorMelanie2010-01-041-5/+5
|\ \ | |/
| * Formatting cleanup. Add copyright headers.Jeff Ames2010-01-041-5/+5
| |
* | The Library Service is now working. UserProfileCacheService.LibraryRoot is ↵Diva Canto2010-01-012-9/+28
|/ | | | obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible.
* 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
|