aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ReplaceableModules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Some module reshuffling, no user functionality yetMelanie Thielker2009-07-102-858/+0
|
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* When a shared module hooks OnClientClosed, it has no way of findingMelanie Thielker2009-06-191-3/+3
| | | | | | | | | out which client connection has closed. So, in multi-region sims, things can get messy fast. This introduces a second parameters, which is a Scene object ref. Minor adjustments to custom modules may be required due to this change.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-5/+6
| | | | | | | | | | needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
* cleaning out warnings.Dr Scofield2009-05-221-12/+12
| | | | | | NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
* Add selling for $0 back to the sample economy module. This is disabled byMelanie Thielker2009-05-111-8/+22
| | | | | | | | default but can be enabled in OpenSim.ini. If enabled, things can be sold for $0. Other amounts will cause the buyer to see a message and the transaction will fail.
* Add a blue box to the stub money module to alert users that buying isMelanie Thielker2009-05-111-1/+1
| | | | | | unimplemented
* Update svn properties.Jeff Ames2009-05-111-4/+4
|
* * Cripples the SampleMoneyModule code.Teravus Ovares2009-05-091-818/+48
| | | | | | * The OpenSimulator core developers have voted to remove all currency functionality from OpenSimulator leaving the 'IMoneyModule' interface in. This affects all systems that used the example money module. This effects All systems that used the XMLRPC External Money Module Hooks interface. If you previously used this interface, please consult with the OpenSimWi Redux folk who are keeping the old module with this interface up to date. * A notice to the opensim-dev mailing list to come as well.. since this is likely a breaking change for some.
* * Break out the SampleMoneyModule to a new namespaceTeravus Ovares2009-05-093-0/+1618
* Create the OpenSim.Region.ReplaceableModules namespace for modules that we intend to have people replace (see readme) * Create the OpenSim.Region.ReplaceableModules.MoneyModule namespace * Put our current Sample MoneyModule in this namespace. (more modifications here next commit)