aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto2010-06-134-25/+6
| | | | neighbours.
* Fixed a couple of buglets in Friendship offers / acceptance / decline when ↵Diva Canto2010-06-041-3/+1
| | | | avies are in different sims.
* Removed sessionID from GridUserservice again. Removed parcel crossing ↵Diva Canto2010-05-203-13/+5
| | | | detection from Robust connector. Fixed Simian to continue to send those location updates upon parcel crossing, without changing the interface.
* * Added sessionID to IGridUserService.SetLastPosition(), as some connectors ↵unknown2010-05-203-6/+6
| | | | | | will want to track position against sessionID instead of userID * Updated SimianPresenceServiceConnector to use the new LoggedOut/SetHome/etc methods and only update session position on parcel crossing
* * Fixed spamming the assets table with map tiles. The tile image ID is now ↵Diva Canto2010-05-091-1/+3
| | | | | | stored in regionsettings. Upon generation of a new tile image, the old one is deleted. Tested for SQLite and MySql standalone. * Fixed small bug with map search where the local sim regions weren't found.
* Fixed Presence unit test. Removed unnecessary packing/unpacking of obsolete ↵Diva Canto2010-05-071-3/+1
| | | | fields.
* These files are part of the GridUserService write-up.Diva Canto2010-05-072-0/+269
|
* GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto2010-05-075-44/+71
| | | | | | home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
* Assorted bug fixes in hypergrid linking.Diva Canto2010-05-031-0/+5
|
* Renamed HGInventoryBroker2 to HGInventoryBroker.Diva Canto2010-05-021-2/+2
|
* Deleted HGInventoryBroker, so that the new one can take its name.Diva Canto2010-05-021-540/+0
|
* Switched everything to XInventory by default. The old Inventory is still ↵Diva Canto2010-05-021-83/+28
| | | | there for now, in case bugs pop up with XInventory.
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2010-04-303-143/+79
|\
| * * XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto2010-04-303-143/+79
| | | | | | | | * Removed a few buglets and added better exception handling.
* | Fix a null ref from trying to access a dictionary that was never initialized.Melanie2010-04-301-1/+2
|/
* Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto2010-04-292-279/+282
|
* Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto2010-04-293-0/+645
| | | | mind. Unfinished.
* XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2010-04-271-0/+2
| | | | testing.
* RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto2010-04-261-0/+324
| | | | default configs yet.
* minor: correctly print out missing item id when it can't be found rather ↵Justin Clark-Casey (justincc)2010-04-161-1/+4
| | | | than a NullReferenceException
* * Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman2010-04-082-0/+16
| | | | | | | cache only * Adds GetTextureModule that implements the "GetTexture" capability, aka HTTP texture fetching. This is a significantly optimized path that does not require any server-side JPEG2000 decoding, texture priority queue, or UDP file transfer * Sanity check for null reference in LLClientView.RefreshGroupMembership()
* Last commit was too fast... must override.Diva Canto2010-04-031-1/+1
|
* * Fail storing user accounts in the remote connector.Diva Canto2010-04-031-0/+6
|
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-193-4/+4
| | | | 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.
* Get the local inner simulation service object to the handler so that there ↵Diva Canto2010-03-152-0/+10
| | | | is no possibility of cascading requests when failures happen.
* Fix tests broken in 88771aeed3d45e60a18aa9a810eeb37b8e5def12Justin Clark-Casey (justincc)2010-03-121-9/+9
| | | | | | Adds MockUserAccountService and connects it up Stops services being carried over between tests since this leads to hard to find bugs Improves information and error reporting when loading plugins
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-2/+2
|
* Fixed caching of user accounts.Diva Canto2010-03-093-32/+42
|
* * Typo fixesJohn Hurliman2010-03-095-5/+5
| | | | * Performance improvement in the expensive GenerateClientFlags()
* Bug fix: store correct position information upon logout. Fixes mantis #4608Diva Canto2010-03-061-12/+17
|
* Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto2010-03-051-16/+16
| | | | for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
* add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)2010-03-051-0/+139
| | | | | this will initially store home location data instead of the presence service compiles but not enough to actually test yet
* Fix LocalPresenceServiceConnector test now that the hardcoded test data has ↵Justin Clark-Casey (justincc)2010-03-052-1/+18
| | | | | | | | been removed from Data.Null.NullPresenceData Unfortunately, this meant publicly exposing the underlying service for the connector. The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config. Unfortunately, this would require a lot of work in this case but might be the better way forward.
* Merge branch 'master' into presence-refactorMelanie2010-02-221-1/+1
|\ | | | | | | This brings presence-refactor up to master again
| * minor: fix error inserting field in log messageJustin Clark-Casey (justincc)2010-02-171-1/+1
| |
| * Formatting cleanup.Jeff Ames2010-02-151-1/+1
| |
* | Small bug fixes for making tests work.Diva Canto2010-02-212-4/+4
| |
* | * Added SQlite connector for AvatarData. Tested -- works.Diva Canto2010-02-211-1/+1
| | | | | | | | | | * Small bug fix in debug message * Set default standalone configs to use SQLite across the board
* | Merge branch 'master' into presence-refactorMelanie2010-02-152-30/+43
|\ \ | |/
| * Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)2010-02-122-30/+43
| | | | | | | | | | | | | | This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
| * endline fix 2Teravus Ovares (Dan Olivares)2010-02-061-6/+6
| |
| * Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-292-10/+10
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
| * Updates all IRegionModules to the new style region modules.Revolution2010-01-232-10/+10
| | | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
* | Bug fix for getting region flags.Diva Canto2010-02-011-0/+8
| |
* | Assorted bug fixes related to hyperlinkingDiva Canto2010-01-311-1/+10
| |
* | Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2010-01-302-69/+77
| |
* | * HGScene is no more.Diva Canto2010-01-301-1/+0
| | | | | | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* | On the way to making HG inventory work. Inventory can now be accessed again. ↵Diva Canto2010-01-291-110/+66
| | | | | | | | Assets are still broken.
* | * HGGridConnector is no longer necessary.Diva Canto2010-01-291-257/+0
| | | | | | | | * 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.
* | Removed obsolete interface IHyperlink.Diva Canto2010-01-241-5/+0
| |