aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IMoneyModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-4/+5
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-1/+2
2012-01-28Remove IClientAPI from the money module. It was only used to pass in theMelanie1-2/+2
agent id anyway
2010-07-02Clean up IMoneyModule and adjust the other modules to the changesMelanie Thielker1-5/+6
2010-07-02Remove GetEconomyData and the economy data structure (unused)Melanie Thielker1-21/+0
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-12* optimized usings.lbsa711-2/+0
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-1/+1
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-01-26* Providing a way for the rest of the simulator to get at the economy ↵Teravus Ovares1-0/+21
settings through the IMoneyModule interface.
2008-11-14Some changes to the money module to allow a more flexible system ofMelanie Thielker1-0/+2
applying charges
2008-10-24Plumb some moreMelanie Thielker1-0/+2
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-4/+4
* 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-2/+2
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-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-6/+9
2008-05-16Formatting cleanup.Jeff Ames1-1/+1
2008-05-15refactoring to move AvatarAppearance into Framework andSean Dague1-0/+1
move the appearance sending bits to ScenePresence
2008-05-01* Rolled back a few changes.Adam Frisby1-2/+2
2008-05-01* Spring cleaning on Region.Environment. Adam Frisby1-2/+2
* Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
2008-04-01a few small changesMW1-1/+1
2008-03-18Formatting cleanup.Jeff Ames1-28/+26
2008-02-08small bit of refactoring, MW1-0/+2
2007-12-27* Optimized usingslbsa711-1/+0
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-11added copyright noticesJeff Ames1-0/+28
2007-12-07Avatar Appearance refactoring /changes. Added a AvatarAppearance class, each ↵MW1-1/+2
ScenePresence "has" a AvatarAppearance object. All the ScenePresences in a opensim related to one user (so a user's various ScenePresence's in all the regions in that instance) share the same AvatarAppearance object. This means that a user's avatar should appear correctly (to both that user and other users) no matter what border crossing or teleporting they have done. Note: this mainly improves Standalone mode, as in grid mode the appearance data isn't passed between region servers. Although people should notice a improvement when moving between regions in the same instance.
2007-12-03minor meaningless changesJeff Ames1-1/+1
2007-10-30* Optimized usingslbsa711-4/+1
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-1/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-29normalized line endingsJeff Ames1-13/+13
2007-10-26* Added prototypical AvatarFactory module interface to load avatar parameterslbsa711-0/+13
* Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to