aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-04-19Make the "notecard saved" text appear in the saver rather than the notecard ↵Justin Clark-Casey (justincc)1-0/+3
owner, if the notecard is saved by a permitted group member This means moving the alert up to a place where the IClientAPI is available. One can also argue that such client messages shouldn't be sent directly from the scene data model
2010-04-19If a transfer request is received for a task inventory item asset, then ↵Justin Clark-Casey (justincc)1-6/+11
route the permissions request through the existing CanEditScript() and CanEditNotecard() methods. This implements the 'share with group' flag for notecards and scripts in prim inventory since the PermissionsModule checks group membership and permissions. Other than that, the code in PermissionsModule duplicates the checks in LLClientView so there should be no change other than allowing group members to edit embedded notecards and scripts. For all other asset types, the permission checking code in LLClientView continues to be used, pending refactoring of suitable permissions code This means that 'share with group' will not yet work for prim inventory items other than notecards and scripts
2010-04-19Avoid duplicate script resumes. Move resume calls to more logical placesMelanie Thielker2-2/+2
2010-04-19All scripts are now created suspended and are only unsuspended when the objectMelanie3-1/+4
is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
2010-04-17refactor: move DeatchObject() into the AttachmentsModuleJustin Clark-Casey (justincc)1-0/+10
2010-04-16refactor: crudely move DetachSingleAttachmentToGround() over to the ↵Justin Clark-Casey (justincc)1-0/+32
AttachmentsModule
2010-04-16minor: correctly print out missing item id when it can't be found rather ↵Justin Clark-Casey (justincc)1-1/+4
than a NullReferenceException
2010-04-16refactor: crudely move the RezMultipleAttachments() method into the ↵Justin Clark-Casey (justincc)1-0/+12
AttachmentsModule
2010-04-16minor: use the static ascii and utf8 encodings instead of instantiating our ownJustin Clark-Casey (justincc)1-6/+3
2010-04-16Add --skip-assets option to load oar.Justin Clark-Casey (justincc)3-24/+37
This allows you to load an oar without loading its assets. This is useful if you know that the required assets are already in the asset service, since loading without assets is quicker. This option will become more useful when the ability to save oars without assets is added, which should happen fairly soon. At this point there will also be better documentation.
2010-04-08* Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman4-0/+241
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()
2010-04-05check group membership and powers with the groups module rather than just ↵Justin Clark-Casey (justincc)1-12/+27
the client's active group id this resolves the earlier issue where notecards/scripts shared with group could only be edited if the user had that group active
2010-04-03Last commit was too fast... must override.Diva Canto1-1/+1
2010-04-03* Fail storing user accounts in the remote connector.Diva Canto1-0/+6
2010-03-31First attempt at fixing mantis #4641. It's better but there are now some ↵Diva Canto1-4/+21
issues with permissions. (looks like my commit is going to touch CM files, I'm going to let it do it - eof only)
2010-03-31Add missing licenses. Change relicensed LightShare module to proper BSDMelanie1-4/+23
licensing.
2010-03-31Adding the LightShare module and scripting API. This code was written byMelanie1-0/+274
TomMeta and was contributed by Meta7.
2010-03-27May fix mantis #4613Diva Canto1-1/+2
2010-03-25minor: Print out port that http servers are usingJustin Clark-Casey (justincc)1-6/+6
do this in callers so that we know who is setting up these things
2010-03-20Fix a nullref in permissions when returning objects via right-clickMelanie1-2/+2
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake9-14/+14
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2010-03-19Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake7-144/+94
GetAvatars have been removed to consolidate locking and iteration within SceneGraph. All callers which used these to then iterate over presences have been refactored to instead pass their delegates to Scene.ForEachScenePresence(Action<ScenePresence>).
2010-03-18Flesh out the new permission methodMelanie1-4/+95
2010-03-18Unify a previous refactor of object return with the older solution. WeMelanie2-66/+7
really don't need two methods doing the same thing, but differently.
2010-03-17Inconsistent locking of ScenePresence array in SceneGraph. Fixed by ↵Dan Lake3-67/+46
eliminating option to return the actual list. Callers can now either request a copy of the array as a new List or ask the SceneGraph to call a delegate function on every ScenePresence. Iteration and locking of the ScenePresences now takes place only within the SceneGraph class. This patch also applies a fix to Combat/CombatModule.cs which had unlocked iteration of the ScenePresences and inconsistent try/catch around the use of those ScenePresences.
2010-03-16Fixed several unhandled exceptions and performance issues with ↵John Hurliman2-15/+12
PrimitiveBaseShape.Textures. This really should be moved from a property to a method if it is going to decode a byte[] into a TextureEntry each time
2010-03-15Get the local inner simulation service object to the handler so that there ↵Diva Canto2-0/+10
is no possibility of cascading requests when failures happen.
2010-03-15* UuidGatherer now tracks asset types for assets it discovers. The asset ↵John Hurliman5-17/+30
types are inferred from context * OAR saving will attempt to correct unknown asset types before writing broken assets to the OAR file
2010-03-12refactor: Move another RezSingleAttachment() from Scene.Inventory to ↵Justin Clark-Casey (justincc)1-1/+30
AttachmentsModule
2010-03-12refactor: move RezSingleAttachmentFromInventory() from SceneGraph to ↵Justin Clark-Casey (justincc)1-0/+46
AttachmentsModule
2010-03-12refactor: move client invoked AttachObject from SceneGraph to AttachmentsModuleJustin Clark-Casey (justincc)1-1/+31
2010-03-12start laoding griduser local connector, though it isn't invoked by anything yetJustin Clark-Casey (justincc)1-0/+3
2010-03-12Fix tests broken in 88771aeed3d45e60a18aa9a810eeb37b8e5def12Justin Clark-Casey (justincc)1-9/+9
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
2010-03-10Reintroduce a check that was dropped from permissionsMelanie1-1/+1
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames7-16/+16
2010-03-09Changed a cryptic debug message and a wrong commentDiva Canto1-1/+1
2010-03-09Fixed caching of user accounts.Diva Canto3-32/+42
2010-03-09Cache UserLevel in ScenePresence on SP creation. Change IsAdministratorMelanie1-0/+8
to use that stored value.
2010-03-09- parcel blocking, region crossing blocking, teleport blockingunknown2-10/+92
Signed-off-by: Melanie <melanie@t-data.com>
2010-03-09* Typo fixesJohn Hurliman6-9/+10
* Performance improvement in the expensive GenerateClientFlags()
2010-03-08Add config option for switching between CSJ2K and BuggyJPEG.Melanie1-3/+9
2010-03-07* Added code to support either CSJ2K or OpenJPEG texture decoding. Currently ↵John Hurliman1-20/+33
hardcoded to CSJ2K (so no functional change) but this could easily be switched to a config option
2010-03-06- supporting llTextBoxunknown1-1/+25
Signed-off-by: Melanie <melanie@t-data.com>
2010-03-06Bug fix: store correct position information upon logout. Fixes mantis #4608Diva Canto1-12/+17
2010-03-05Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto1-16/+16
for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
2010-03-06refactor: Move DetachSingleAttachmentToInv to region moduleJustin Clark-Casey (justincc)1-15/+56
need to rationalize method names later
2010-03-05refactor: move another AttachObject methodJustin Clark-Casey (justincc)1-1/+46
2010-03-05refactor: move user inventory side of RezSingleAttachment to moduleJustin Clark-Casey (justincc)1-0/+30
2010-03-05refactor: begin to move attachments code into a region moduleJustin Clark-Casey (justincc)1-0/+141
2010-03-05add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)1-0/+139
this will initially store home location data instead of the presence service compiles but not enough to actually test yet