aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-05-08More cleaning on presence. Friends online/offline works again.Diva Canto3-98/+89
2010-05-07Fixed Presence unit test. Removed unnecessary packing/unpacking of obsolete ↵Diva Canto1-3/+1
fields.
2010-05-07These files are part of the GridUserService write-up.Diva Canto2-0/+269
2010-05-07GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto8-50/+87
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.
2010-05-07Also remove sale and search flags on god owner change.Melanie1-0/+1
2010-05-07Remove land that is being abandoned from search. This is now consistent withMelanie1-0/+1
sale and reclaim.
2010-05-06Ensure the show in search flag is cleared on ownership change. Also, whenMelanie2-1/+8
land is reclaimed, reset it's for sale flags so it can't be bought again right away.
2010-05-05Added copying of Viewer field to the agent circuit data that is being passed ↵Diva Canto1-0/+6
on TPs and crossings. (XmlRpcGroups files want to be committed too)
2010-05-04Add perms check to the teleport home client command handlers.Melanie Thielker1-0/+6
2010-05-04Strip estate message sending out from the estate management module andMelanie Thielker2-12/+10
the dialog module. Convert it to an event on the estate module interface. The old implementation did the same as message to region, a button that is right next to it on the UI. This implementation prevented people from adding a more sane one in a module.
2010-05-04make the events more useful by providing the source regionMelanie Thielker1-2/+2
2010-05-04Add events to the estate interface to let interested modules know ofMelanie Thielker1-0/+36
changes to estate settings
2010-05-04Allow reloading of estate settings into a running region. Move sun updateMelanie Thielker1-37/+3
helper into Scene, since that is less evil than exposing m_storageManager to the public.
2010-05-03Assorted bug fixes in hypergrid linking.Diva Canto2-1/+6
2010-05-02* Untested Suggestion from lkalif to changeTeravus Ovares (Dan Olivares)1-1/+1
remoteClient.SendMapBlock(blocks, 0); to remoteClient.SendMapBlock(blocks, 2); in OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
2010-05-02Renamed HGInventoryBroker2 to HGInventoryBroker.Diva Canto2-3/+2
2010-05-02Deleted HGInventoryBroker, so that the new one can take its name.Diva Canto1-540/+0
2010-05-02Switched everything to XInventory by default. The old Inventory is still ↵Diva Canto1-83/+28
there for now, in case bugs pop up with XInventory.
2010-04-30* XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto5-145/+85
* Removed a few buglets and added better exception handling.
2010-04-30Fix a null ref from trying to access a dictionary that was never initialized.Melanie1-1/+2
2010-04-30Fix some symbol errorsMelanie1-2/+2
2010-04-30Fix link security issueMelanie1-3/+3
2010-04-29Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto2-279/+282
2010-04-29Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto3-0/+645
mind. Unfinished.
2010-04-28Spelling in FriendsModule.cs: "filed to load" -> "failed to load"unknown1-1/+1
2010-04-27XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2-0/+3
testing.
2010-04-26RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto1-0/+324
default configs yet.
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