aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/UserAccounts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-7/+59
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-032-20/+12
|
* Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)2012-07-131-5/+4
| | | | | | the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
* Fixed mix-up in UserAccount fields when passing UserAccounts remotely.Diva Canto2011-12-291-1/+1
|
* Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2011-12-051-1/+1
| | | | | | | | of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
* Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)2011-10-241-2/+0
| | | | | These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey
* Make ScopeID optional for http GetAccount and GetAccountsJustin Clark-Casey (justincc)2011-10-191-11/+6
| | | | If not specified then it assumes UUID.Zero. as occurs elsewhere in the codebase
* Make PrincipalID a synonym for UserID in GetUserAccountJustin Clark-Casey (justincc)2011-10-191-0/+6
|
* Get new NewUser and SetUserAccount calls to accept PrincipalID instead of ↵Justin Clark-Casey (justincc)2011-10-191-3/+3
| | | | UserID for consistency with output
* Allow an http call to set account details if AllowSetAccount = true in ↵Justin Clark-Casey (justincc)2011-10-191-3/+59
| | | | | | [UserAccountService]. As before, default is false to not allow these calls.
* Provide an option to allow remote calls to the CreateUser method on the ↵Justin Clark-Casey (justincc)2011-10-182-4/+62
| | | | | | | | | UserAccountService Default is false, as before. Enabling AllowCreateUser in [UserAccountService] for ROBUST allows avatars to be created via an http call, with viewer 2 appropriate bits and pieces. Only Ruths can be created at present. Please don't rely on the config since at some point CreateUser will be moved to a separate co-ordinating service.
* * Made UserAccountService handle UserLevel, UserFlags and UserTitle ↵Diva Canto2010-04-031-12/+1
| | | | | | appropriately. * Removed Store service from the UserAccount handler.
* Several more buglets removed.Diva Canto2010-01-131-5/+6
|
* Test client for remote user account connector and service. It seems to be ↵Diva Canto2010-01-021-8/+8
| | | | working.
* Remove CreateUserAccount. Rename SetUserAccount to StoreUserAccount.Melanie2009-12-311-22/+3
| | | | | Implement the fetch operations fully. Rename one last UserService file to UserAccountService
* * All modules and connectors for user account service are in place. Untested.Diva Canto2009-12-292-0/+337
* Cleaned up a few things on presence connectors