aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-10Expose the XMLRPC listener port on the IXMLRPC interface to allowMelanie Thielker1-0/+5
publication
2009-04-10* Apply http://opensimulator.org/mantis/view.php?id=3427Justin Clarke Casey1-1/+71
* Return different values for llCloud() over time based on a cellular automation system. * Thanks aduffy70!
2009-04-09* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-04-09* Tagged long running tests with LongRunningAttribute.lbsa712-3/+6
* Now, the 144 unit tests takes roughly as long time to run (16s on my laptop) that the 10 long running takes. The database tests takes forever. * Feel free to run the unit tests as you code, and the rest before commit.
2009-04-08* Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey5-7/+7
as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
2009-04-07* minor: remove some mono compiler warningsJustin Clarke Casey3-4/+4
2009-04-07* Apply http://opensimulator.org/mantis/view.php?id=3418Justin Clarke Casey1-6/+10
* Prevents occasional wind module related exceptions on region server shutdown * Thanks Intimidated!
2009-04-06* Implements World.Parcels[] array for MRM scripting.Adam Frisby1-0/+9
2009-04-05Ouch. Remove some test left over from r9013, which broke startupHomer Horwitz1-2/+1
2009-04-05- Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz2-12/+20
- Change several classes to use the new plugin for handling of region-modules (NOTE: No regionmodule is using this yet) - Add necessary prebuild parts (don't forget to runprebuild) Attention: Work in progress. This shouldn't break anything, but you never know...
2009-04-05- Move IWindModule to OpenSim.Region.Framework.InterfacesHomer Horwitz3-83/+3
- Fix a dependency problem. Hopefully fixes Mantis #3395
2009-04-05Added CreateObject(regionhandle, userID, itemID) to post objects that are to ↵diva3-30/+78
be fetched from the user's inventory server and rezzed in the region. Added all code necessary to fetch the item and the asset, and rez it inworld. The access to the item is uncap-ed and unverified -- I may place it later either under a cap or with auth verification. But in this model regions don't have the user's inventory, so they would have to guess the item IDs. Added safemode config to Standalone Hypergrid, similar effect to AllowRegionAccessToInventory in Inventory Server. Everyone should have these vars set to their default values except me!
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby4-96/+92
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-04-04Give a meaningful message if terrain save fails because of a file IO error.idb1-0/+5
Fixes Mantis #3348
2009-04-04Thanks jonc, for a patch that adds rendering of classic clouds.Homer Horwitz1-0/+190
First part of Mantis #964, the necessary clouds image will follow separately.
2009-04-04Add copyright headers, formatting cleanup.Jeff Ames4-14/+87
2009-04-03* refactor: Call StatsReporter methods directly rather than through Scene ↵Justin Clarke Casey2-2/+2
(as WebStatsModule was doing) * Assume that StatsReporter is always present (possibly as a no-op impl) rather than doing null checks
2009-04-01More refactoring. This time extracting the client-side of ↵diva1-533/+51
RESTInterregionComms into a RegionClient class.
2009-04-01Update svn properties.Jeff Ames4-418/+418
2009-04-01Finally clean up the Scene.Permissions and permissions module.Melanie Thielker1-42/+42
Permissions now use proper events and not delegate lists, which makes for much easier reading and much less work adding new methods. I finally found a way to raise events with return values without it becoming late bound.
2009-03-31Turning the wind module off by default.diva1-1/+1
2009-03-31Thank you kindly, MCortez for a patch that:Charles Krinke5-100/+728
With some support from HomerH, this patch adds support for Wind Model plugins via the mono.Addin framework. * Adds console & OSSL access to Wind Parameters * Adds plug-in support for custom wind models * Provides two example Wind Model plug-ins Documentation for the wind module is temporarily located at http://code.google.com/p/flotsam/wiki/CoreWindModule [^] -- will move this documentation to http://opensimulator.org [^] after the patch has been committed.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames4-453/+449
2009-03-30* Fix test breakage by always inserting a gods module when testingJustin Clarke Casey1-1/+1
2009-03-30* minor: remove mono compiler warningsJustin Clarke Casey1-11/+11
2009-03-30* refactor: Move god related methods in Scene out to a moduleJustin Clarke Casey1-0/+150
2009-03-29Moved some files around, so that it's easier to share code between ↵diva3-807/+166
standalone and the grid services. Should not affect any functionality.
2009-03-29Don't let a missing configuration cause a NREMelanie Thielker2-0/+11
Fixes Mantis #3355
2009-03-29Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker5-62/+28
sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
2009-03-29Finish the offline IM module (still needs a server). Add rudimentaryMelanie Thielker2-8/+199
support for the mute list (no functionality yet, but allows the RetrieveInstantMessages event to fire now).
2009-03-28Minor bug fix in UpdateItem (meta data).diva1-1/+3
2009-03-28* Adding some heuristic error correction to the j2k decoder module to combat ↵Teravus Ovares1-1/+83
some of the situations that we see in mantis 3049 . * This may help people on certain 64 bit systems where the end byte position of each layer data packet is incorrect but the start positions are correct. * The console will still be extremely chatty with 'Inconsistent packet data in JPEG2000 stream:' messages, however.. if OpenSimulator was able to recover the data, it will say HURISTICS SUCCEEDED
2009-03-28Fix the plumbing in the offline message module.Melanie Thielker2-27/+51
No functionality yet.
2009-03-28Add a module skeleton for offline IM storage. No functionality yet.Melanie Thielker1-0/+131
2009-03-28Small bugs fixed related to ownership and permissions.diva1-9/+18
2009-03-27* Implement * wildcard in save iar requestsJustin Clarke Casey1-14/+36
* not yet ready for use
2009-03-27* Fix single item iar savingJustin Clarke Casey1-6/+11
* Not yet ready for use
2009-03-27* minor: move RegionSettingsSerializer into OpenSim.Framework.SerializationJustin Clarke Casey3-257/+2
2009-03-27svn:eol-style property set.diva1-208/+208
2009-03-27svn:eol-style property set.diva1-123/+124
2009-03-26Notecard updates bypassing the regions. (HGStandalone only)diva1-26/+107
2009-03-26* correct iar root folder location for saving of individual itemsJustin Clarke Casey1-1/+1
* however, rest of the path components are still currently wrong so this is broke
2009-03-26* Apply http://opensimulator.org/mantis/view.php?id=865Justin Clarke Casey1-0/+67
* Reimplements "terrain rescale <min> <max>" command which rescales current terrain to be inbetween min and max * Thanks jonc
2009-03-26* iars: Serialize information about item creators to archiveJustin Clarke Casey1-2/+8
2009-03-26One more -- CopyItem.diva1-0/+32
2009-03-26Half-way through supporting inventory access from outside the regions -- HG ↵diva1-9/+84
standalones only, for now.
2009-03-25* Appearance patches suite: These patches are applied to allow libomv bots ↵Sean Dague1-1/+3
to wear outfits in the future. This functionality will be upstreamed later. ** Fixed call of new AvatarAppearance without arguments, which caused bots look like clouds of gas ** Added a SendAvatarData in ScenePresence.SetAppearance, which is expected after SetAppearance is run ** Fixed AssetXferUploader: CallbackID wasn't being passed on on multiple packets asset uploads ** Set VisualParams in AvatarAppearance to stop the alien looking bot from spawning and now looks a little better. *** TODO: Set better VisualParams value then 150 to everything
2009-03-25iar: centralize user uuid gatheringJustin Clarke Casey1-18/+43
2009-03-25* minor: spit out creator name on save iarJustin Clarke Casey1-0/+12
* not yet ready for use
2009-03-25HGStandaloneInventoryService now serves inventory assets. No need for ↵diva1-1/+36
clients to have direct access to the asset service.