aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Modules active. Tested HGGridConnector in standalone only for now. Modules ↵Diva Canto2009-09-234-12/+30
| | | | commands work.
* Added hg console commands to the module.Diva Canto2009-09-223-5/+567
| | | | | Added the IN connector module for link-region and corresponding handler to be used in the regions only. No service as such is needed. This will replace the current link-region machinery. Compiles but not tested.
* Moved RegionName from RegionInfo to SimpleRegionInfo.Diva Canto2009-09-221-24/+59
|
* Added HGGridConnector and related code.Diva Canto2009-09-223-38/+364
|
* Added Remote grid connector module.Diva Canto2009-09-211-0/+108
|
* Added grid handler and grid remote connector.Diva Canto2009-09-211-2/+2
|
* First pass at LocalGridServiceConnector. Nothing of this is used by the ↵Diva Canto2009-09-181-0/+175
| | | | simulator yet.
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-162-4/+5
| | | | and can be displayed at the client when an avatar is denied access to a region
* Formatting cleanup.Jeff Ames2009-09-131-1/+1
|
* Minor indentation cleanup.Diva Canto2009-09-111-2/+3
|
* Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart2009-09-111-4/+45
| | | | | | IAuthorization interface method isAuthorizedForRegion looks up user and region data and delegates the remote authorization check to the AuthorizationServiceConnector This keeps the IAuthorization as clean as possible and moves the dependency of using a UserProfileData object out to the connector from the scene.
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-3/+3
|
* adding in working functionality for the remote connectorRob Smart2009-09-101-1/+1
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-102-0/+254
| | | | always grant access to an avatar entering the region if requested.
* Revising the user account data interfaces. No user functionality yetMelanie2009-09-062-5/+5
|
* Fixes seven leaky .BeginInvoke() callsJohn Hurliman2009-09-032-4/+4
|
* Try to cache system folders if they aren't already there when one is requestedJustin Clark-Casey (justincc)2009-08-281-0/+13
| | | | This operation can be performed legitimately on standalones without a logged in user
* Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)2009-08-281-13/+34
|
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-224-0/+39
| | | | | | folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
* Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto2009-08-191-3/+3
| | | | | | | SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-194-0/+35
| | | | operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
* Async purge so that the client thread doesn't wait.Diva Canto2009-08-191-5/+5
|
* A better purge of trash folder.Diva Canto2009-08-194-14/+20
|
* GetFolderItems implemented. It's not being called, but it might.Diva Canto2009-08-182-3/+11
|
* jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto2009-08-181-2/+1
|
* Making attachments work again. Tons of debug more. This needs more testing ↵Diva Canto2009-08-161-1/+1
| | | | and a lot of cleaning.
* Returning UUID.Zero is scene and user profile service are null in ↵Diva Canto2009-08-141-0/+8
| | | | GetSession. This doesn't fix the underlying problem of these things being null -- they shouldn't be.
* Changed the way to get to the profile service. Changed GetSystemsFolder in ↵Diva Canto2009-08-142-5/+19
| | | | HGBroker.
* More debug messages.Diva Canto2009-08-141-0/+7
|
* Doing session lookup in the right way.Diva Canto2009-08-142-8/+11
|
* Additional debug messages, and bug fix in ↵Diva Canto2009-08-142-2/+12
| | | | RemoteInventoryServiceConnector.cs, where the scene reference wasn't being set.
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-134-18/+36
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-134-12/+12
| | | | starting to get on my nerves.
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-122-2/+56
|\
| * Formatting cleanup. Add copyright headers.Jeff Ames2009-08-132-2/+56
| |
* | Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto2009-08-121-0/+1
|/ | | | Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
* * Added two new packet handler implementations for inventory ops. This is ↵Diva Canto2009-08-125-74/+270
| | | | | | | starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
* Better test for dropping inventory cache and writing out debug messages.Diva Canto2009-08-121-16/+21
|
* Fixed test for detecting when user is no longer in sim.Diva Canto2009-08-111-3/+5
|
* Improved test for system folders. Removed log messages.Diva Canto2009-08-112-4/+5
|
* System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto2009-08-114-37/+207
| | | | agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.
* Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-103-0/+75
| | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-1014-14/+14
|\
| * Replace the Replaceable modules nameMelanie2009-08-1014-14/+14
| |
* | Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-103-4/+4
|/
* Finish the renaming and mae things compile againMelanie2009-08-092-5/+5
|
* Remove waiting in TestReplicateArchivePathToUserInventory() since local ↵Justin Clark-Casey (justincc)2009-08-051-1/+0
| | | | | | inventory loading is synchronous Insert a little more debugging info in case the occasional failure reoccurs
* * Updates RESTInterregionComms and LocalInterregionComms to the new region ↵Arthur Valadares2009-07-232-49/+92
| | | | | | | | | | | | | module interface. This fixes an issue where region references were being added but weren't being deleted, causing those "unnotified circuit" messages. * Also fixes tests accordingly - Fixes Mantis #3452 - Fixes Mantis #3388 - Fixes Mantis #3871 - Related to Mantis #3493
* minor: remove some mono compiler warningsJustin Clarke Casey2009-07-151-2/+2
|
* Test commit to see if commit is working for me, as another core developer is ↵MW2009-07-151-1/+2
| | | | reporting problems.