aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Plumb the viewer version string through into AgentCircuitData. Now all thatMelanie Thielker2010-05-061-1/+1
| | | | | | is left os to figure out what black magic turns AgentCircuitData into AgentData and then copy that into the ScenePresence, where m_Viewer is already added with this commit and waits for the data.
* Add a XMLRPC method to remotely set the login level for the LLLoginService.Melanie Thielker2010-05-051-0/+1
| | | | | | This requires a special XMLRPC call, which has to supply the credentials of a god user (User level >= 200). Disabled by default. Also Adds a configuration option to set the initial permitted login level.
* Make the IUserAccountData properly unpack the god mode data, so grid godsMelanie Thielker2010-05-031-3/+3
| | | | work again
* Merge branch 'master' into careminster-presence-refactorMelanie2010-04-271-1/+2
|\
| * Allow a client to pass a scope id to log into in the login XML / LLSDMelanie2010-04-271-1/+2
| |
| * * Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman2010-04-081-0/+7
| | | | | | | | | | | | | | 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()
| * * Fixing incorrect documentation for the continuation passing style ↵John Hurliman2010-04-071-1/+2
| | | | | | | | | | | | IAssetService.Get() method * Changing the SimianGrid asset service connector to match the corrected documentation
* | Remove some usings that stopped compilationMelanie Thielker2010-04-241-15/+1
| |
* | Plumb a data path to initialize an attachment from an alternate sourceMelanie Thielker2010-04-241-0/+31
| |
* | Merge branch 'careminster' into careminster-presence-refactorMelanie2010-04-131-1/+9
|\ \ | |/ |/|
| * Backported GetTextureModule and IAssetService.GetCached()John Hurliman2010-04-081-1/+9
| |
* | First stage of the new interactive region creation. This will allow creationMelanie2010-03-231-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.
* | Get the local inner simulation service object to the handler so that there ↵Diva Canto2010-03-151-0/+1
| | | | | | | | is no possibility of cascading requests when failures happen.
* | Fix tests broken in 88771aeed3d45e60a18aa9a810eeb37b8e5def12Justin Clark-Casey (justincc)2010-03-121-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
* | Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto2010-03-051-6/+6
| | | | | | | | 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/+75
| | | | | | | | | | this will initially store home location data instead of the presence service compiles but not enough to actually test yet
* | Friends rights under control.Diva Canto2010-03-011-1/+5
| |
* | Added server-side Friends in connector. Untested.Diva Canto2010-02-251-0/+28
| |
* | * Removed the unused GridRegion.getInternalEndPointPort() (just use ↵John Hurliman2010-02-231-5/+0
| | | | | | | | | | | | | | 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
* | * Removed the broken and unused GridRegion.ExternalEndPoint setterJohn Hurliman2010-02-221-2/+0
| |
* | Implement the methods needed for the login service to populate the friendslistMelanie2010-02-091-2/+2
| | | | | | | | on the friends service
* | Add the friends service skel and correct some namespace issuesMelanie2010-02-091-1/+1
| |
* | Clarify some namesMelanie2010-02-051-3/+2
| |
* | Finally cutting the gordian knot. Friends needs to be both a module and aMelanie2010-02-041-0/+49
| | | | | | | | | | service, and never the twain shall meet. This finally opens up the path to a working friends implementation
* | HG 1.5 is in place. Tested in standalone only.Diva Canto2010-01-281-6/+8
| |
* | Added ExternalName config on Gatekeeper.Diva Canto2010-01-271-1/+1
| |
* | Removed obsolete interface IHyperlink.Diva Canto2010-01-241-49/+0
| |
* | Integrated the hyperlinking with the GridService.Diva Canto2010-01-241-49/+0
| |
* | Go Home works. With security!!Diva Canto2010-01-182-0/+12
| |
* | * Added missing GatekeeperServiceConnectorDiva Canto2010-01-181-0/+3
| | | | | | | | * Added basic machinery for teleporting users home. Untested.
* | HG teleports through gatekeeper are working.Diva Canto2010-01-171-4/+0
| |
* | Agent gets there through the Gatekeeper, but still a few quirks to fix.Diva Canto2010-01-172-0/+8
| |
* | HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto2010-01-171-1/+1
| |
* | Copyright notices.Diva Canto2010-01-171-1/+28
| |
* | Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto2010-01-162-0/+60
| | | | | | | | yet.
* | Fixed a missing field in the last regions table migration.Diva Canto2010-01-161-3/+3
| |
* | Moved prim crossing to EntityTransferModule. Not complete yet.Diva Canto2010-01-161-2/+2
| |
* | Merge branch 'master' into presence-refactorMelanie2010-01-161-1/+1
|\ \ | |/ | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
| * Change the error messages on region region registration. This changes URMMelanie2010-01-131-1/+1
| | | | | | | | | | and region. The non-error case should be compatible, so no version bump. Untested.
* | Implement region registration with authenticationMelanie2010-01-151-0/+5
| |
* | Several more buglets removed.Diva Canto2010-01-131-4/+4
| |
* | Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2010-01-121-1/+1
| | | | | | | | Appearance is now being passed with AgentCircuitData, as it should be.
* | Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto2010-01-111-43/+80
| |
* | Merge branch 'presence-refactor' of ↵Diva Canto2010-01-101-6/+0
|\ \ | | | | | | | | | ssh://diva@opensimulator.org/var/git/opensim into presence-refactor
| * | Remove all references to master avatar, replacing with estate owner whereMelanie2010-01-101-6/+0
| | | | | | | | | | | | | | | appropriate. This changes the behavior of the REST plugins and RemoteAdmin's region creation process.
* | | * Changed IPresenceService Logout, so that it takes a position and a lookatDiva Canto2010-01-101-1/+1
|/ / | | | | | | * CommsManager.AvatarService rerouted
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-0/+19
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | * Added SetPassword to IAuthenticationService.Diva Canto2010-01-091-0/+11
| | | | | | | | | | * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim.
* | Preliminary work on the new default region setting mechanismMelanie2010-01-091-0/+4
| |
* | Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-082-0/+31
| |