aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-01-25llGetParcelMusicURL implementation ↵Pixel Tomsen1-1/+10
http://wiki.secondlife.com/wiki/LlGetParcelMusicURL Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-01-25Change the WorldMapModule to use SOG rather than SOP for the telehub ansMelanie1-13/+15
cover a potential nullref
2012-01-24Telehub map items displayedBlueWall1-3/+51
2012-01-24Put Telehubs on the mapBlueWall1-0/+18
2012-01-24Simplify and streamline telehub editing code. Verify rotations and fixMelanie2-58/+30
spwan point positioning on rotated telehubs.
2012-01-24Reverse the spawn point distance vectorMelanie1-1/+1
2012-01-24Correct a coordinate to make the viewer like itMelanie1-1/+1
2012-01-24Change Telehubs to store only the data that is really needed and notMelanie2-83/+65
additional redundant information.
2012-01-23Add update to Telehub position and rotation before adding SpawnPointsBlueWall1-4/+11
2012-01-23Cleanup BlueWall1-3/+6
2012-01-23Cleanup unused parts, add some error handlingBlueWall1-53/+52
2012-01-22Move Telehub tables and data from EstateSettings to RegionSettings.Melanie2-30/+28
This is damage control es EstateSettings is not the place this can be put. EstateSettings is nt unique to a region and therefore would introduce a hard limit of one telehub per estate, completely shutting off the option of having SL style telehubs, e.g. one per region. Whole estate teleport routing can still be implemented id desiresd, this way all options are open while the other way most options get closed off.
2012-01-21Telehub Support:BlueWall2-69/+92
Telehub settings now persist to the database and are saved across sim restarts. So-far this only works on MySQL. this is a work in progress, teleport routing is not yet implemented.
2012-01-20Telehub Support:BlueWall2-1/+194
Support for viewer side of telehub management. Can manupulate Telehubs and SpawnPoints from the viewer estate managemnt tools. This is a work in progress and does not yet persist or affect teleport routing.
2012-01-19Add basic request and send image regression tests for LLImageManagerJustin Clark-Casey (justincc)1-1/+1
2012-01-18RegionReady:BlueWall1-0/+2
Back out some of the oar monitoring for the time being. Need to find a better way to get feedback. Will re-visit this soon.
2012-01-16Allow retrival of multiple user records in one operation, analog to presenceMelanie2-0/+9
2012-01-14Allow SmtpClients and other SSL users to work with our cert handler installedMelanie1-9/+25
2012-01-14Register the UrlModule for script engine events OnScriptRemoved and ↵Justin Clark-Casey (justincc)1-1/+8
OnObjectRemoved just once in the UrlModule itself, rather than repeatedly for every script. Doing this in every script is unnecessary since the event trigger is parameterized by the item id. All that would happen is 2000 scripts would trigger 1999 unnecessary calls, and a large number of initialized scripts may eventually trigger a StackOverflowException. Registration moved to UrlModule so that the handler is registered for all script engine implementations. This required moving the OnScriptRemoved and OnObjectRemoved events (only used by UrlModule in core) from IScriptEngine to IScriptModule to avoid circular references.
2012-01-13Fix improper code formatting introduced in 6214e6a217cfBo Iwu1-24/+40
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-01-13Update RegionReadyModuleBlueWall1-1/+9
Fix triggering of alerts when rezzing first script to an empty region, add login disable when loading oars.
2012-01-12Undo some prior workBlueWall1-93/+0
Move some added fuctions out of core into the addon module to keep things clean
2012-01-12Renamed one var and deleted commented code. No functional changes.Diva Canto1-33/+2
2012-01-12HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto3-10/+17
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
2012-01-12Allow update of stored entries within User Management Module-this is needed ↵Bo Iwu1-48/+52
for proper work of HG friends. See http://opensimulator.org/mantis/view.php?id=5847
2012-01-11If deserializing a scene object fails during IAR load then ignore the object ↵Justin Clark-Casey (justincc)1-1/+4
rather than halting the IAR load with an exception.
2012-01-10Add a check to see if an asset exists before recreating it whileMic Bowman1-0/+6
loading an archive. This does add an extra roundtrip to the asset server if loading new assets but it protects against overwriting (and potentially corrupting) existing assets.
2012-01-10Add avatar names to appearance log messagesJustin Clark-Casey (justincc)1-3/+3
2012-01-10HG Friends: fixed bug introduced by 571efeddb20f38bb4164074b3c217be5387ca2e0 ↵Diva Canto1-2/+2
(r/17672)
2012-01-07Don't try to save a NPCs attachment states on NPC deleteMelanie1-0/+8
2012-01-05Improve "j2k decode" command to tell us how many layers and components were ↵Justin Clark-Casey (justincc)1-5/+16
decoded, instead of just success/failure
2012-01-05Add a "j2k decode" region console command that allows a manual request for a ↵Justin Clark-Casey (justincc)1-8/+10
JPEG2000 decode of an asset For debugging purposes.
2012-01-05Improve "app rebake" command to return a better message if no uploaded ↵Justin Clark-Casey (justincc)1-1/+6
texture ids were available for the rebake request
2012-01-04Add "appearance rebake" command to ask a specific viewer to rebake textures ↵Justin Clark-Casey (justincc)1-3/+12
from the server end. This is not as useful as it sounds, since you can only request rebakes for texture IDs already received. In other words, if the viewer has never sent the server this information (which happens quite often) then it will have no effect. Nonetheless, this is useful for diagnostic/debugging purposes.
2012-01-04Separate out rebake request code from cache validation code AvatarFactoryModule.Justin Clark-Casey (justincc)1-31/+41
This allows some logic simplification and allows an external caller to manually request rebakes even if textures are uploaded (future command).
2012-01-04Minor formatting changes and commented out log lines for future debugging of ↵Justin Clark-Casey (justincc)1-0/+4
image manager (udp texture fetch). No significant functional changes.
2012-01-03Profile UpdatesBlueWall2-5/+100
Update basic profile to use the replaceable interface, making configuration less error-prone. Add support to query avatar's home user account and profile service for regions usng the updated OpenProfileModule with Hypergrid.
2012-01-02Adding commented out log messages and some minor formatting for future bug ↵Justin Clark-Casey (justincc)2-0/+5
hunting. No functional changes.
2012-01-01Fix for failed http request statusBlueWall1-14/+17
Thanks "sendapatch" for fixes to llHTTPRequest status reporting.
2011-12-29Added UserManagementModule.IsLocalGridUser(UUID) to be used throughout ↵Diva Canto6-36/+78
region Scenes and Modules. Changed existing modules to use it instead of assuming that foreign = null account.
2011-12-29Deleted two obsolete files in Inventory modules.Diva Canto2-460/+0
2011-12-29Deleted unused methods from HGAssetBrokerDiva Canto1-18/+0
2011-12-29HG: more adjustments for making HG Simian work. Added server_uri as new key ↵Diva Canto1-2/+3
on get_agent_home in UAS.
2011-12-28Introduce a LightShare kill packet ans send it when needed. Currently onlyMelanie1-5/+12
understood by AVN v0.3
2011-12-23HG: one more adjustment with trailing /sDiva Canto1-2/+8
2011-12-23remove the old region crossing handlerMic Bowman1-10/+0
2011-12-22Fixes some problems with objects that attempt to cross a region boundaryMic Bowman1-0/+24
into a region that does not exist. This is particularly problematic for physical objects where the velocity continues to move them out of the region causing an infinite number of failed region crossings. The patch forces an object that fails a crossing to be non-physical and moves it back into the starting region.
2011-12-22Region crossings redone: (1) removed WaitForCallback. Now that we are ↵Diva Canto1-39/+32
passing the entire agent with attachs in one big message we don't necessarily need to wait for confirmation. The callback sometimes is problematic and it adds delay to the process. (2) Z velocity sent to the viewer = 0. This is an heuristic; the Z velocity usually is negative, and it makes the viewer move the avie down. This only matters while the agent is in transit and therefore not being physically simulated by neither region. As soon as the receiving region receives CompleteMovement from the viewer, the position and velocity get corrected.
2011-12-19Fix race condition where the appearance update timer could be stopped just ↵Justin Clark-Casey (justincc)1-3/+6
after another thread had started it on QueueAppearanceSave() or *Send() However, the window for this race is very small, and the next queued appearance save or send would restart the timer anyway.
2011-12-19Migrate detailed "appearance show" report generation up to ↵Justin Clark-Casey (justincc)1-8/+49
AvatarFactoryModule from AppearanceInfoModule so that it can be used in debug (inactive). Further filters "debug packet <level>" to exclused [Request]ObjectPropertiesFamily if level is below 25. Adjust some method doc Minor changes to some logging messages.