aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-26* Implment task inventory item asset update for the old non CAPS transaction ↵Justin Clarke Casey1-0/+4
system * This means that saving notecards in prim inventories should now work. * Not the nicest code in the world - the transactions system is pretty fugly right now * PLEASE NOTE: Currently, the prim will not repersist until up to 15 seconds after it is unselected. * What we really need is a proper mechanism so that any prim updates still waiting when the simulator is quit are performed before exit.
2008-09-25Convergence is almost complete. This brings the diff between the API to < 10kMelanie Thielker1-38/+0
and makes it use a common set of types in both engine. Fixes the issues with running both engines and HTTP requests / listens / timers etc.. Also fixes a couple of minor Scene issues and a CTB by nullref.
2008-09-18- Add Dispose method to IRegionDataStoreHomer Horwitz1-0/+5
- Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit)
2008-09-13Remove the cruft of accessing a private member of another module's classMelanie Thielker1-0/+1
from DataSnapshot and replace it with a best practices approach, making it much less dependent on the land module's internal structure and types.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares14-70/+70
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-23Some complex re-ordering to make prebuild do what needed to be done.Melanie Thielker1-46/+0
It is now possible to use module interfaces without referencing Scene. Place those interfaces in OpenSim/Region/Interfaces. They may not use any refs from OpenSim.Region.Environment as parameters. This resolves a circular library ref introduced in r5949
2008-08-23Patch #9171Melanie Thielker1-0/+3
Disallow bulk uploads if money module is present and upload cost is set and the user hasn't got sufficient funds.
2008-08-19Moves one file to it's proper locationMelanie Thielker1-0/+43
2008-08-18Formatting cleanup.Jeff Ames3-5/+3
2008-07-25*Added CommandIntentions that is used to describe a console commands hazard. ↵mingchen2-0/+11
HAZARDOUS if it modifies the simulator, NON_HAZARDOUS if it does a command that doesn't modify the simulator but does a background command such as a forced backup, and STATISTICAL if it returns debug or more information. *This is useful for implementing a protection system from unwanted script execution or for application modules needing to know what a command does.
2008-07-18Introduce a separate connection string for estates, which defaults to the one giMelanie Thielker1-2/+1
ven for the region datastore. Removes the flag to store prim inventories, which are now always stored.
2008-07-18Patch adds bool IsManager(LLUUID) to IEstateModule.Melanie Thielker1-0/+1
Returns true whenever the LLUUID references a user who is either an EM or the region owner. Please note that ownership is region-scoped, while EM is estate-scoped.
2008-07-18Patch #9151Melanie Thielker2-4/+41
Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
2008-07-14Mantis#1739. Thank you kindly, Grumly57 for a patch that:Charles Krinke1-1/+1
Implements X-SecondLife-* HTTP Headers for llHTTPRequest
2008-07-14Patch #9147Melanie Thielker1-0/+38
Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
2008-07-06Copyright notices and formatting cleanup.Jeff Ames2-11/+11
2008-07-03* On client login, send only one terrain patch at a time (with pauses) ↵Justin Clarke Casey1-0/+6
instead of 4 at a time * Certain terrains which are fine went patches are sent singly cause a libsecondlife failure when patches are sent in batches * See http://opensimulator.org/mantis/view.php?id=1662 for more details
2008-07-03Mantis#1658. Thank you, Melanie for a patch that:Charles Krinke1-0/+48
Adds IEmailModule and a module skelaton
2008-06-29patch and files from mantis #1630, Thanks MelanieMW1-1/+2
2008-06-28Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke1-0/+38
not break trunk.
2008-06-25Added support for terrain map to be serialised to xml(as base64 binary). ↵MW1-0/+2
useful for places that the terrain map is needed in a serialised form. Also could add console commands to save and load from files, which should be faster than .raw files (these load/save commands are not included/implemented) Add util functions to compress and uncompress strings. Fixed a couple of modules so they use SceneCommunicationService rather than directly call functions on the CommsManager.
2008-06-21* Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares1-0/+6
World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
2008-06-11*Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen2-0/+12
override the default method of calculating how many prims a parcel can have.
2008-06-01* Put IScenePermissions out of its miseryJustin Clarke Casey1-35/+0
2008-05-28Thank you, Grumly57 kindly for:Charles Krinke1-1/+1
This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
2008-05-27Thank you kindly, Melanie for a patch that adds:Charles Krinke1-0/+4
GetSerializationData() and CreateFromData() methods
2008-05-27I'm dropping the ISimChat interface as that has now been Dr Scofield1-37/+0
replaced by EventManager events. also, i've added instructions to README.txt about running runprebuild.sh and on how to report bugs. plus some minor fixes (dropping m_log statement left over from debugging llOwnerSay, nicer catch of exception in IRCBridgeModule
2008-05-24This enables return from the parcel object owner display.Teravus Ovares2-1/+2
There's some oddness with the parcel counts, but if you can get past the oddness, you can return objects under an owner that you have permission to return.
2008-05-23*Refactor of the LandManagementModule that allows OpenSim to run without itmingchen1-22/+3
2008-05-23Thank you kindly, Melanie, for a patch which:Charles Krinke1-0/+1
Previously, upload charging was possible only for UPD uploads. This is because UDP uploads are charged by the viewer, while in CAPS, this was changed to be server side, so hackers couldn't avoid paying the upload charge. This patch adds a method to allow implementation of this serverside charge.
2008-05-18Formatting cleanup, minor refactoring. Fixed some comparisons of value ↵Jeff Ames1-1/+1
types and null.
2008-05-18* Patch #1312 from Melanie - Abstracts Money Module to IMoneyModule.Adam Frisby1-0/+42
2008-05-16Formatting cleanup.Jeff Ames3-6/+6
2008-05-15refactoring to move AvatarAppearance into Framework andSean Dague1-0/+1
move the appearance sending bits to ScenePresence
2008-05-14* Comitting 0001271: [PATCH] Refactor permissions to fully allow stacking ↵Teravus Ovares1-3/+0
permissions modules. From Melanie. Thanks Melanie!
2008-05-13*Complete redo of the permissions modulemingchen1-0/+1
*Removed hardcoded permissions checks *Added permissions checks where needed
2008-05-08*Added all the permission checks to the sceneexternalchecks and modified ↵mingchen1-66/+0
permission module to follow this. *This makes permission checking much more modular; allows restrictive and granting module to be made without modifying the existing permission module
2008-05-08* Applying patch #1121 - Fixes for llListen() (Thanks Middlelink!)Adam Frisby1-6/+4
2008-05-07*Added SceneExternalChecks.cs that is used to manage checking the results of ↵mingchen1-2/+2
multiple functions that register with the class and return the result (usually true/false) based on those results. This is useful for module wanting to put their opinion in decisions such as 'can the user rez this object?'
2008-05-06* Cleaning up code, making it conform to OpenSim standards.Adam Frisby1-30/+19
2008-05-05* Refactor: Break out permissions code into a separate region PermissionsModuleJustin Clarke Casey1-0/+103
2008-05-05*Standardized the Land module by removing all references to ↵mingchen2-5/+3
libsecondlife.packets
2008-05-01* Rolled back a few changes.Adam Frisby10-17/+16
2008-05-01* Spring cleaning on Region.Environment. Adam Frisby10-16/+17
* Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
2008-04-30* Sometimes you know, you do something really stupid.Adam Frisby3-3/+3
* This is one of those times (should fix build)
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby7-27/+4
(this took a while to run).
2008-04-17Update svn properties. Add copyright info to some source files.Jeff Ames5-9/+140
2008-04-15* Quick patch before I start on a bigger projectAdam Frisby1-2/+2
* Renamed ITerrainTemp to IMapImageGenerator * Renamed WriteJpegImage to WriteJpeg2000Image to better reflect it's function.
2008-04-14* Fixed a few warnings.Teravus Ovares1-0/+1
* Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
2008-04-01a few small changesMW1-1/+1