aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ReplaceableModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-10Some module reshuffling, no user functionality yetMelanie Thielker2-858/+0
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-1/+1
Change all uses of the HttpServer properties to use the new singleton
2009-06-19When a shared module hooks OnClientClosed, it has no way of findingMelanie Thielker1-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.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-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)
2009-05-22cleaning out warnings.Dr Scofield1-12/+12
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
2009-05-11Add selling for $0 back to the sample economy module. This is disabled byMelanie Thielker1-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.
2009-05-11Add a blue box to the stub money module to alert users that buying isMelanie Thielker1-1/+1
unimplemented
2009-05-11Update svn properties.Jeff Ames1-4/+4
2009-05-09* Cripples the SampleMoneyModule code.Teravus Ovares1-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.
2009-05-09* Break out the SampleMoneyModule to a new namespaceTeravus Ovares3-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)