aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix HypergridLinker.Check4096()Marck2010-11-011-1/+28
| | | | | | | | Make the optimization with IEnumerable.Except() in Check4096 actually work by providing an appropriate equality definition for GridRegion objects.
* | Merge branch 'master' into mantis5110Jonathan Freedman2010-10-301-28/+80
|\ \ | |/
| * Fixed: ToAvatarAppearance wasn't retrieving the AvatarHeight.Diva Canto2010-10-301-0/+3
| |
| * Fix logins and avatar appearance. Contains a Migration. May contain nuts.Melanie2010-10-301-28/+77
| | | | | | | | | | | | This will cause visual params to be persisted along with worn items. With this, alpha and tattoo laters will be saved. Multiple layers MAY work, but not tested because I don't use Viewer 2.
* | Merge branch 'master' into mantis5110Jonathan Freedman2010-10-301-55/+94
|\ \ | |/ | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
| * This commit fixes all the appearance related null refs. Still can't log in,Melanie2010-10-301-51/+66
| | | | | | | | client displays a blank error box.
| * READ CAREFULLY!!! This is a BROKEN commit. It is UNTESTED and INCOMPLETE.Melanie2010-10-301-54/+78
| | | | | | | | | | | | | | | | | | It contains a major interface version bump and will NOT work with earlier grid services. This is preliminary work that will lead to layers support. Rest appearance services are commented out completely, they will have to be adapted by someone who actually uses them. Remote admin is working, but has no layers support. There is no layers support in the database. Login likely won't work. You have been warned.
* | Merge branch 'master' into mantis5110Jonathan Freedman2010-10-291-18/+30
|\ \ | |/ | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/ScenePresence.cs
| * First attempt to get multiple attachments working to support viewer2.Master ScienceSim2010-10-211-11/+5
| | | | | | | | | | | | | | The attachment code appears to work correctly for 1.23 viewers so, in spite of some big changes in the internal representation, there don't appear to be regressions. That being said, I still can't get a viewer2 avatar to show correctly.
| * Major refactoring of appearance handling.Master ScienceSim2010-10-201-7/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
* | * more url / hg cleanupJonathan Freedman2010-10-111-1/+8
| |
* | Merge branch 'master' of git://opensimulator.org/git/opensimJonathan Freedman2010-10-051-1/+2
|\ \ | |/
| * Added viewer's channel, mac, and id0 to agent circuit data. Also moved ↵Diva Canto2010-10-031-1/+2
| | | | | | | | client ip address to agent circuit data, so that it's always there.
* | * refactor refactor refactor ServerURI 4 lyfeJonathan Freedman2010-10-021-1/+7
|/
* Part two of the previous commit, making IGridUserService.LoggedOut() more ↵John Hurliman2010-09-291-1/+11
| | | | flexible without changing current behavior
* Made IGridUserService.SetLastPosition() more flexible to allow different ↵John Hurliman2010-09-291-2/+12
| | | | possible implementations. This doesn't change any behavior or any Robust code, but it simplifies the SimianGrid connector by using the standard OpenSim interface for setting last position now
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-2/+5
| | | | | This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
* Partial rewrite of client IP verification. Not completely finished yet, and ↵Diva Canto2010-08-191-2/+4
| | | | untested. Committing to move to my other computer.
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2010-08-071-0/+1
|\
| * Allow creation of link regions if there is an existing region within a 4096 ↵Marck2010-08-061-0/+1
| | | | | | | | | | | | range. Also add GetHyperlinks() to the grid service.
* | Correct display of landmark about info. Also correct region maturity ratingMelanie Thielker2010-08-071-1/+1
|/ | | | | in LM info. Maturity is NOT the parcel's setting, that is only for the image and text. Parcel maturity is governed by region maturity.
* Fixes creation date issue on user accounts.Diva Canto2010-06-151-1/+3
|
* * Bug fix in TP home: typo in unpacking of GridUserInfo.Diva Canto2010-06-051-1/+1
| | | | * Bug fix in TPs across neighboring regions: bug was introduced when getting rid of crashed sessions.
* Get the user's DOB back from the server response properly.Melanie Thielker2010-05-291-1/+1
|
* Removed sessionID from GridUserservice again. Removed parcel crossing ↵Diva Canto2010-05-201-1/+1
| | | | detection from Robust connector. Fixed Simian to continue to send those location updates upon parcel crossing, without changing the interface.
* Merging slimupdates2unknown2010-05-201-1/+1
|\
| * * Added sessionID to IGridUserService.SetLastPosition(), as some connectors ↵unknown2010-05-201-1/+1
| | | | | | | | | | | | 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
* | Finalized the client's TCP IP address verification process for HG1.5.Diva Canto2010-05-151-0/+1
|/
* Fixed a typo in the Friends packaging (Pricipal -> Principal) that was ↵Diva Canto2010-05-101-1/+1
| | | | making offline friendship offers fail in grids.
* More cleaning on presence. Friends online/offline works again.Diva Canto2010-05-081-28/+0
|
* Fixed Presence unit test. Removed unnecessary packing/unpacking of obsolete ↵Diva Canto2010-05-071-6/+0
| | | | fields.
* GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto2010-05-072-23/+43
| | | | | | 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.
* Plumb the viewer version string through into AgentCircuitData. Now all thatMelanie Thielker2010-05-051-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-021-3/+3
| | | | work again
* 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
* 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
|