aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-04-27XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2-54/+82
testing.
2010-04-26RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto1-0/+29
default configs yet.
2010-04-27Allow a client to pass a scope id to log into in the login XML / LLSDMelanie2-15/+32
2010-04-22* Better error logging for failed SimianGrid web service callsJohn Hurliman1-4/+9
2010-04-22Sanitized parsing of floats (x, y, z location) for Culture.Diva Canto1-3/+3
2010-04-14Applying a patch from lkalif to fix a small bug in the previous patchJohn Hurliman1-1/+1
2010-04-13Applying patch from lkalif to add support for inventory links to the ↵John Hurliman1-0/+12
SimianGrid connectors
2010-04-08* Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman5-0/+42
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()
2010-04-07* Fixing incorrect documentation for the continuation passing style ↵John Hurliman2-2/+3
IAssetService.Get() method * Changing the SimianGrid asset service connector to match the corrected documentation
2010-04-05* In the async asset fetch method, cache check before firing any async code. ↵John Hurliman1-47/+62
This should alleviate some "thread storm" issues when regions are starting up that hit Mono especially hard
2010-04-03* Guard against null in last commitDiva Canto1-1/+2
2010-04-03Last commit was too fast... must override.Diva Canto1-1/+1
2010-04-03* Made UserAccountService handle UserLevel, UserFlags and UserTitle ↵Diva Canto1-0/+7
appropriately. * Removed Store service from the UserAccount handler.
2010-04-02* Better logging for Authenticate() failuresJohn Hurliman2-3/+11
* Changed a warning message to debug when fetching user sessions
2010-03-26Change the SimianGrid connector log messages to start with "[SIMIAN " to ↵John Hurliman9-112/+112
avoid configuration confusion
2010-03-26Minor improvement on debug message.Diva Canto1-31/+30
2010-03-26Select Random Region if Home or Last cant be foundunknown1-14/+34
2010-03-26* Fixed a bug with null value handling in WebUtil.BuildQueryString()John Hurliman1-3/+40
* Changed the null check back in estate manager setup but fixed the case for an existing account being found * Implemented SetPassword() in the SimianGrid auth connector
2010-03-23First stage of the new interactive region creation. This will allow creationMelanie1-2/+2
of a region and joining it to an existing estate or creating a new estate, as well as creating an estate owner if in standalone, and assigning estate owners. In Grid mode, existing users must be used. MySQL ONLY!!!! so far, as I can't develop or test for either SQLite or MSSQL.
2010-03-20* Updated libomv libraries to fix JSON (LLSD) decoding errors on null values ↵John Hurliman1-1/+1
and remove the unused OpenMetaverse.Http.dll and Mono.Security.dll * Fixed a password hash comparison error in SimianAuthenticationServiceConnector.Authenticate()
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake1-2/+2
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-16* Fixing the SimianGrid friend connector enabled detection since the friends ↵John Hurliman1-1/+9
module uses a different pattern in the .ini file
2010-03-15* Fixed a bug in Simian.IsSimianEnabled (since the default module strings ↵John Hurliman1-1/+1
follow the form OpenSim.Services.Connectors.dll:SimianGridServiceConnector instead of SimianGridServiceConnector)
2010-03-15Get the local inner simulation service object to the handler so that there ↵Diva Canto2-0/+6
is no possibility of cascading requests when failures happen.
2010-03-15Fixed Simian.IsSimianEnabled() to allow mixing and matching of connectorsJohn Hurliman10-12/+12
2010-03-12minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2-6/+5
2010-03-12Minor tweak to clean up SimianGrid asset service URLsJohn Hurliman1-1/+1
2010-03-12* Added a better check to the SimianGrid connectors to test if they are ↵John Hurliman10-116/+171
enabled or not. This method should work equally well with standalone or robust mode * Applying #4602 from Misterblu to add collision detection to BulletDotNET
2010-03-12Fixing the previous patch to work correctly with standalone modeJohn Hurliman9-36/+36
2010-03-12Fixed SimianGrid connectors to gracefully exit if the required config ↵John Hurliman9-56/+63
sections are missing
2010-03-12Simplify database setup and remove migration problems by moving all sqlite ↵Justin Clark-Casey (justincc)9-9/+9
config-include settings to a separate file for standalone Update information in StandaloneCommon.ini.example to reflect this Remove ISharedRegionModule interfaces from all SimianGrid connector classes temporarily since this stopped standalone from working (due to absence of AssetURI settings, etc.). Solution here may be to create separate region module connectors as done by local/grid/hypergrid so that loading can be controlled via include files Or otherwise work out how to stop these modules from being loaded for all OpenSim invocations
2010-03-12Fix tests broken in 88771aeed3d45e60a18aa9a810eeb37b8e5def12Justin Clark-Casey (justincc)1-7/+13
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
2010-03-12Bug fix: "last location" login.Diva Canto1-0/+4
2010-03-11Adding the SimianGrid connectorsJohn Hurliman10-0/+3663
2010-03-11Changed some properties and methods from private to protected in ↵Mikko Pallari2-15/+15
LLLoginResponse and LLLoginService so they could be inherited better.
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames9-10/+118
2010-03-09Changed a cryptic debug message and a wrong commentDiva Canto1-1/+1
2010-03-09Fixed caching of user accounts.Diva Canto2-0/+3
2010-03-09* Typo fixesJohn Hurliman3-3/+3
* Performance improvement in the expensive GenerateClientFlags()
2010-03-08Comment a debug message that is a tad too spammyMelanie1-1/+1
2010-03-07Bug fix: correct name of methods in user accounts connector.Diva Canto1-1/+1
2010-03-05Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto4-23/+23
for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
2010-03-05add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)4-0/+271
this will initially store home location data instead of the presence service compiles but not enough to actually test yet
2010-03-04Bug fix on user account creation -- ServiceURLs field now properly filled out.Diva Canto1-1/+1
2010-03-04remove test presence from NullPresenceData since this appears to stop ↵Justin Clark-Casey (justincc)1-3/+28
existing sessions with home locations from being picked up only tested for a single user so this may still fail for multiple users this may well be all academic anyway since standalone need to persistently store home location in presence data in some way
2010-03-03Make the service loader pump out the error to the log (in red) and include ↵Justin Clark-Casey (justincc)2-5/+24
the dll/interface/args that caused the problem This gives people more of a fighting chance of finding out what went wrong
2010-03-03Added empty service URLs upon account creation.Diva Canto1-0/+9
2010-03-02More debug.Diva Canto1-0/+1
2010-03-02Better error handling on PasswordAuthenticationServiceDiva Canto1-14/+18
2010-03-02* Better debug message on login problems.Diva Canto1-1/+1
* Moved GridInfoService config to OpenSim.Server.ini