aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * All modules and connectors for user account service are in place. Untested.Diva Canto2009-12-291-2/+2
| | | | * Cleaned up a few things on presence connectors
* Tighten up the IUserService interface again. No need for auth tokens at this ↵Diva Canto2009-12-291-2/+2
| | | | level.
* Polished the IUserService interface.Diva Canto2009-12-291-1/+2
|
* Better way of setting ServiceURLsDiva Canto2009-12-291-12/+2
|
* Added the ServiceURLs field to UserAccountDataDiva Canto2009-12-281-0/+14
|
* Removed AccountType, GodLevel and UserFlags from UserAccountData. Doesn't ↵Diva Canto2009-12-281-18/+0
| | | | belong there.
* * Added Created field to UserAccountDataDiva Canto2009-12-281-0/+5
|
* * Added packing/unpacking of the Home fields in PresenceInfoDiva Canto2009-12-282-28/+47
| | | | * Cleaned up IUserService and beefed up UserAccoutData
* Adding new fields and home location methid to presence. Adding cleanupMelanie2009-12-281-0/+4
| | | | (deleting all but one presence record) on logout so that they don't pile up.
* Database and presence changes. UntestedMelanie2009-12-281-5/+5
|
* Presence remote connector and handler. Presence HG Broker. Nothing tested, ↵Diva Canto2009-12-271-1/+38
| | | | just compiles.
* Changed GetAgents to take string[] instead of UUID[]Diva Canto2009-12-271-1/+1
|
* Remove the sesion from returned presence infoMelanie2009-12-271-2/+0
|
* Interface changesMelanie2009-12-271-10/+6
|
* More beef to the IPresenceService interface.Diva Canto2009-12-261-1/+12
|
* Presence Step 1Melanie2009-12-271-1/+8
|
* Tweak presence handling and whip up a database connector and handlerMelanie2009-11-181-1/+1
| | | | for testign the new generic table handling
* Change PresenceData to PresenceInfo to remove a naming conflict in theMelanie2009-11-181-0/+8
| | | | OpenSim.Data namespace
* Set the estate owner to be the master avatar if it's not set.Melanie2009-10-141-0/+6
|
* Add owner_uuid. Not sure this works. Worth a testMelanie2009-10-071-0/+14
|
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Added RegionSecret to GridRegion, and corresponding saving/retrieval from DB ↵Diva Canto2009-09-281-5/+9
| | | | layer. This sounds fishy to me, but it's what's used to make external currency modules work, for now.
* Added missing IHyperlinkService.Diva Canto2009-09-271-0/+49
|
* Unpacking the mess with OtherRegionUp, so we can have a real cache of the ↵Diva Canto2009-09-271-1/+2
| | | | neighbours in the grid service modules.
* Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto2009-09-261-0/+14
| | | | | | HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
* First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto2009-09-261-6/+21
| | | | minimally. A few bugs to catch now.
* Better guards on RegisterRegion in GridService.Diva Canto2009-09-251-1/+9
| | | | Added serverPort to the fields that get stored (I think this is the UDP port).
* All tests pass for MySQL/MySQLRegionData.Diva Canto2009-09-241-43/+18
| | | | Added OpenSim.GridServer.ini.example that I have been using for testing the ROBUST grid service with the GridClient.
* GridServerPostHandler finished. GridClient tests all work. More guards on ↵Diva Canto2009-09-241-0/+4
| | | | getting parameters and replies over the wire.
* Added test GridClient, which allowed me to remove a few bugs out of the new ↵Diva Canto2009-09-241-0/+9
| | | | code.
* Changed IGridService to use the new GridRegion data structure instead of old ↵Diva Canto2009-09-231-9/+240
| | | | | | SimpleRegionInfo. Added grid configs to standalones.
* Added grid handler and grid remote connector.Diva Canto2009-09-211-1/+1
|
* First pass at the grid service.Diva Canto2009-09-181-6/+11
|
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-161-1/+1
| | | | and can be displayed at the client when an avatar is denied access to a region
* Changed GetRegionByHandle to GetRegionByPosition -- more generic.Diva Canto2009-09-111-1/+1
|
* Added GetRegionByHandle.Diva Canto2009-09-111-0/+2
|
* Removed RequestLandData from IGridService because it's already in another place.Diva Canto2009-09-112-4/+38
| | | | Moved GetMapBlocks to a new interface IMapService.
* Changed names of methods in IGridService.Diva Canto2009-09-111-8/+13
|
* moved AuthorizationRequest and AuthorizationResponse to ↵Rob Smart2009-09-111-0/+98
| | | | IAuthorizationService to keep service dependencies together.
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-1/+1
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+46
| | | | always grant access to an avatar entering the region if requested.
* Remove the encryption from the IAuthenticationService interface. ThatMelanie2009-09-061-36/+0
| | | | | is too high up for that type of stuff. It needs to be at the connector/handler level
* Revising the user account data interfaces. No user functionality yetMelanie2009-09-061-25/+10
|
* Implement plain password authentication partway. Tested, but no userMelanie2009-09-041-2/+2
| | | | functionality yet.
* Remove the distinction between password and login key in the authenticationMelanie2009-09-031-5/+2
| | | | | service. This will be done in the login service instead, it's out of scope for an authenticator
* Redesign the IAuthenticationService interface to use PKI. Sessioning isMelanie2009-08-291-38/+70
| | | | now in the domain of the presence module where it belongs.
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+8
| | | | | | 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.
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+2
| | | | 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).
* A better purge of trash folder.Diva Canto2009-08-191-1/+2
|
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-141-9/+37
|\