aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/SLUtil.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-7/+7
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-111/+319
|
* Refactored how asset/inventory types are associated with content types: ↵Oren Hurvitz2012-04-261-216/+166
| | | | gathered all the knowledge into a single class. Added the Mesh content type.
* Instead of loading default avatar animations in both SLUtil and ↵Justin Clark-Casey (justincc)2012-03-211-49/+1
| | | | | | | | AvatarAnimations, load just in AvatarAnimations instead. This lets us remove the dependency of OpenSim.Framework.dll on data/avataranimations.xml, which is not necessary for ROBUST. This commit also takes care of the odd situation where animations are stored and used internally with uppercase names (e.g. "STAND") but scripts refer to them with lowercase names (e.g. "sit").
* Factor out common default animations code into SLUtil. LLClientView now ↵Justin Clark-Casey (justincc)2012-03-091-1/+51
| | | | | | makes use of the SLUtil copy via a method rather than each LLClientView loading a separate copy. As per opensim-users mailing list discussion.
* Fix notecards that end with an embedded object causing an exceptionMelanie2010-12-171-2/+2
|
* * Cache null account responses in the SimianUserAccountServiceConnector to ↵John Hurliman2010-09-071-6/+4
| | | | | | avoid repeated requests for missing avatar IDs * Updated to OpenMetaverse r3442 to fix a timezone issue with ExpiringCache
* Applying patch from lkalif to add support for inventory links to the ↵John Hurliman2010-04-131-0/+33
| | | | SimianGrid connectors
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-3/+30
|
* * Updated to libomv r3268 which fixes the mapping for OpenJPEG on 64-bit ↵John Hurliman2010-03-071-0/+28
| | | | systems and adds protocol support for Viewer 2.0 (still needs work in OpenSim to get things fully functional)
* Fix LocalPresenceServiceConnector test now that the hardcoded test data has ↵Justin Clark-Casey (justincc)2010-03-051-1/+11
| | | | | | | | been removed from Data.Null.NullPresenceData Unfortunately, this meant publicly exposing the underlying service for the connector. The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config. Unfortunately, this would require a lot of work in this case but might be the better way forward.
* move linden notecard parsing from LSL_Api.cs to SLUtil so that region ↵Justin Clark-Casey (justincc)2010-03-041-1/+98
| | | | modules can use it
* * Added a sanity check for missing asset data in LLClientViewJohn Hurliman2010-02-201-0/+185
* Moved the SL asset type to content type conversion methods from ServerUtils to OpenSim.Framework.SLUtil * Linked content type to asset type in AssetMetadata