aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Temporarily add debug log lines to lsl url request and releaseJustin Clark-Casey (justincc)2012-05-041-0/+13
| | | | To help with http://opensimulator.org/mantis/view.php?id=5993
* Mantis 5977 Corrections to llRegionSayToTalun2012-04-231-35/+35
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Allow llRegionSayTo() to work on the PUBLIC_CHANNEL, as per ↵Justin Clark-Casey (justincc)2012-03-311-1/+1
| | | | | | http://wiki.secondlife.com/wiki/LlRegionSayTo Addresses http://opensimulator.org/mantis/view.php?id=5950
* Add sensor, dataserver requests, timer and listener counts to "xengine ↵Justin Clark-Casey (justincc)2012-03-061-0/+20
| | | | | | status" command. This is for diagnostic purposes.
* Allow SmtpClients and other SSL users to work with our cert handler installedMelanie2012-01-141-9/+25
|
* Register the UrlModule for script engine events OnScriptRemoved and ↵Justin Clark-Casey (justincc)2012-01-141-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.
* Fix for failed http request statusBlueWall2012-01-011-14/+17
| | | | Thanks "sendapatch" for fixes to llHTTPRequest status reporting.
* Stop also adding an ordinary http handler when we set up a poll http handler.Justin Clark-Casey (justincc)2011-12-071-11/+6
| | | | It appears that this is entirely unnecessary since the poll http handlers are dealt with on a separate code path.
* Fix CHANGED_TEXTURE and CHANGED_COLOR.Melanie2011-12-051-2/+2
|
* Change default say distance to 20m from 30m, the same as on the big grid. ↵Justin Clark-Casey (justincc)2011-11-021-1/+1
| | | | | | This is to improve the migration of scripts that expect a 20m say distance. If you want to keep a 30m say distance then please set this as the say_distance parameter in the [Chat] section of OpenSim.ini.
* Get some hopefully more useful exception information when ↵Justin Clark-Casey (justincc)2011-11-022-5/+8
| | | | OpenJPEG.EncodeFromImage() fails in VectorRender and DynamicTexture modules
* Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)2011-10-251-0/+1
| | | | | | | | | of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
* meaningless change to goose pandaJustin Clark-Casey (justincc)2011-10-111-0/+1
|
* remove unused LastAssetID from DynamicTextureUpdaerJustin Clark-Casey (justincc)2011-10-101-6/+4
|
* Added a setting to [Startup] section of config that will allow the simulator ↵Kevin Houlihan & Michelle Argus2011-09-241-3/+6
| | | | | | to start up with no regions configured. I added the boolean config setting "allow_regionless", defaulting to false. If set to true, opensim will start up ok if no region configurations are found in the specified region_info_source. It will not ask the user to create a region.
* Try disabling the inconsistent attachment state check to see if this ↵Justin Clark-Casey (justincc)2011-09-051-1/+2
| | | | | | | | actually has an impact. The code in question is over three years old and just be catching an inconsistency rather than being wholly necessary. This commit still carries out the check and prints all the previous log warnings but a 'failure' no longer prevents avatar region crossing or teleport, and it doesn't give the client the error message. This will have some kind of impact on http://opensimulator.org/mantis/view.php?id=5672
* In WorldCommModule, replace the useless Attachments == null check with ↵Justin Clark-Casey (justincc)2011-08-311-2/+1
| | | | Attachments.Count == 0 instead
* minor: seal up another instance of using the appearance list without lockingJustin Clark-Casey (justincc)2011-08-311-1/+1
|
* Make SP.Attachments available as sp.GetAttachments() instead.Justin Clark-Casey (justincc)2011-08-311-4/+8
| | | | | | | The approach here, as in other parts of OpenSim, is to return a copy of the list rather than the attachments list itself This prevents callers from forgetting to lock the list when they read it, as was happening in various parts of the codebase. It also improves liveness. This might improve attachment anomolies when performing region crossings.
* Add avatar and attachments to llRegionSayBlueWall2011-08-201-4/+67
| | | | | | | | | | | | llRegionSay will now message avatars on chan 0 and will message attachments on the avatar that listen on channels other than 0. This behavior is consistant with the LL implementation as tested on regions in Agni with one exception: this implementation does not include issue: https://jira.secondlife.com/browse/SCR-66?
* Add llRegionSayToBlueWall2011-08-191-0/+21
| | | | | | | llRegionSayTo(key target, integer channel, string messasge) Allows messages to be sent region-wide to a particular prim.
* Fix the cert validation handler so that it will not block other parts ofMelanie2011-05-131-2/+10
| | | | the server doing ssl successfully.
* Add support for llRequestSecureURL() if ssl is enabledBlueWall2011-05-051-5/+56
|
* minor: remove now inaccurate commentJustin Clark-Casey (justincc)2011-04-111-1/+1
|
* minor: adjust some spacing and indentationJustin Clark-Casey (justincc)2011-04-111-10/+10
|
* Implimented HTTP_VERIFY_CERT for llHttpRequestE. Allen Soard2011-04-111-3/+31
|
* Comment out some startup logging lines to make up for the one I added ↵Justin Clark-Casey (justincc)2011-04-021-2/+0
| | | | | | earlier on. Most of these are where the region modules are telling us they are disabled. Convention is only to log when enabled (even that is really noisy)
* Normalization of OSSL function names.Marck2010-12-101-11/+12
| | | | | | | | | | | | | | | | | Added the following replacement functions for compliance to the OSSL standards stated on the wiki: osGetTerrainHeight osSetTerrainHeight osGetSunParam osSetSunParam osSetPenColor The functions that do not comply to the standard give a warning when used but work normally otherwise. The graphics primitive drawing command "PenColor" has also been added as well as dynamic texture parameter "bgcolor" as an alternative to "bgcolour". The following two functions have been renamed because they are not enabled yet aynway: osWindParamSet => osSetWindParam osWindParamGet => osGetWindParam
* Thanks Snoopy for a patch that addresses Mantis #0005165: ↵dahlia2010-11-021-32/+32
| | | | | | osSetDynamicTextureURL crashed region server Signed-off-by: dahlia <dahliaTrimble@gmail.removeme.com>
* Change the way IRegionModule us referenced by IEmailModule toMelanie Thielker2010-06-281-1/+1
| | | | allow later conversion to new style
* minor: Print out port that http servers are usingJustin Clark-Casey (justincc)2010-03-251-6/+6
| | | | do this in callers so that we know who is setting up these things
* Fixed several unhandled exceptions and performance issues with ↵John Hurliman2010-03-161-11/+9
| | | | 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
* Changed asset CreatorID to a stringJohn Hurliman2010-02-221-1/+1
|
* * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-221-1/+2
| | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* Endline fixTeravus Ovares (Dan Olivares)2010-02-061-12/+12
|
* minor: one method docJustin Clark-Casey (justincc)2010-02-041-0/+1
|
* refactor: move world comm message queueing into its own methodJustin Clark-Casey (justincc)2010-02-021-23/+13
|
* Resolve one more conflict I overlookedMelanie2010-01-291-14/+0
|
* Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-298-203/+89
| | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
* Changes WorldCommModule to ISharedRegionModule.Revolution2010-01-281-1/+5
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Updates all IRegionModules to the new style region modules.Revolution2010-01-238-86/+210
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Fix a major security problem with osSetDynamicTexture which allowed the ↵CasperW2010-01-181-5/+12
| | | | deletion of /any/ asset.
* Make locking of timers and listeners in script related functions consistentJustin Clark-Casey (justincc)2009-11-271-3/+6
| | | | | See http://opensimulator.org/mantis/view.php?id=4316 Thanks KittyLiu!
* minor: very minor formatting changeJustin Clark-Casey (justincc)2009-11-161-4/+1
|
* Fixed XMLRPC return paramsMic Bowman2009-11-101-1/+1
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-4/+1
| | | | unknown asset type, and log an error if it ever does happen
* Calling .Close() on AutoResetEvent and ManualResetEvent (those classes ↵John Hurliman2009-10-091-2/+2
| | | | contain an unmanaged resource that will not automatically be disposed when they are GCed), and commenting out some ManualResetEvents that are not in use yet
* Revert "Merging in diva's locking fixes"Melanie2009-10-071-19/+18
| | | | This reverts commit 832cc685138b2244529f10b54b373c34adb4a633.
* Merging in diva's locking fixesJohn Hurliman2009-10-061-18/+19
|\
| * Rewrote parts of the code that were double-locking different objects. This ↵Diva Canto2009-10-061-18/+19
| | | | | | | | is about half of the code base reviewed.