aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cleaning up IRCBridgeModule to allow for configuration from in-world,Dr Scofield2008-10-204-855/+1075
| | | | | | | | | | | | | | chat relaying via private channels, and old IRCBridgeModule behaviour. also cleaning up IRCBridgeModule's OpenSim.ini configuration variable names (still supporting "old" variable names). refactored IRCChatModule into IRCConnector and incorporating watchdog from IRCBridgeModule into IRCConnector. enabling ChatModule to be used as a super-class and utilizing it in ConciergeModule.
* * Restore loaded inventory items to the given folderJustin Clarke Casey2008-10-191-10/+47
| | | | | | | * Among many other deficiencies, currently a cache clear and relog is needed to see them, which is highly unsatisfactory * No user funcionality yet
* * move command line parsing code from inventory archive modules to opensim ↵Justin Clarke Casey2008-10-192-25/+24
| | | | | | | | | | server * use default inventory archive name if none is given * other minor cleanups * this facility is not useable yet
* Added calling cards. Fixes Mantis#2409 and part of #1515.Homer Horwitz2008-10-191-7/+117
|
* * Remove mono warningsJustin Clarke Casey2008-10-171-2/+2
|
* Split the currency module into currency and a new Combat module, becauseMelanie Thielker2008-10-162-55/+155
| | | | | | the combat function really doesn't belong into currency
* * refactor: Move error logging from GetUserDetails up to callers, since ↵Justin Clarke Casey2008-10-151-0/+7
| | | | there are some circumstances in which not finding a user is not an error
* Add a configuration section for groups modulesMelanie Thielker2008-10-121-0/+20
|
* * Fixed two major unhandled exceptions discovered during the Pub Quiz on friday.Adam Frisby2008-10-121-5/+30
|
* Thanks cmickyb for a patch that enhances the IRC module.Dahlia Trimble2008-10-111-27/+98
| | | | | | See mantis #2379 for some useful scripts that work with this. Note that I added another configuration parameter in addition to the patch to allow for legacy behavior in the absence of new configuration settings.
* Add some permissions checks and fixesMelanie Thielker2008-10-081-3/+2
|
* Disabled some thread aborts in the IRC module that I added earlier and don't ↵Dahlia Trimble2008-10-031-2/+2
| | | | seem necessary
* This changeset changes the way chat from client is routed: Dr Scofield2008-10-033-135/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
* a little (incomplete) hackery in the IRC module to allow run-time connection ↵Dahlia Trimble2008-10-011-11/+74
| | | | changes
* initial version of a meeting concierge module.Dr Scofield2008-09-301-0/+213
|
* - a couple of minor code cleanups in RestInventoryServicesDr Scofield2008-09-302-58/+70
| | | | | | | - cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence
* * minor: remove warningsJustin Clarke Casey2008-09-291-3/+3
|
* * reactor: move inventory archive classes into separate Inventory/Archiver ↵Justin Clarke Casey2008-09-292-4/+4
| | | | | | | | directory * This is not yet a real module (and is arguably not a region module anyway)
* * refactor: Rename InventoryModule to InventoryTransferModuleJustin Clarke Casey2008-09-291-2/+2
|
* * Move existing inventory module into a 'Transfer' namespace, since that is ↵Justin Clarke Casey2008-09-291-1/+1
| | | | the functional it actually fulfills
* * check in missing files that caused the previous build breakJustin Clarke Casey2008-09-292-0/+487
|
* * Patch from JHurlimanTeravus Ovares2008-09-262-3/+3
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* Decouple AsyncCommands from XEngine and the script instance. MakeMelanie Thielker2008-09-241-0/+3
| | | | | | | | all methods needed outside the API ststic. Async command processing is now wholly internal to the API. This sets the stage for the next convergence step.
* * refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey2008-09-151-1/+2
| | | | | | | | UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
* Update svn properties, formatting cleanup.Jeff Ames2008-09-092-14/+14
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-0611-249/+247
| | | | | | | * 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.
* * Add SampleMoneyModule patch from mantis #2079Justin Clarke Casey2008-09-061-11/+19
| | | | | | * Thanks noralbion
* Change some chat output functions so that text is truncated atMelanie Thielker2008-09-021-1/+4
| | | | | | | | 1000 chars to avoid the exception thrown by libomv at 1100 chars. Change string->int conversion so it copes with non-numeric chars after the number and no longer uses a float to parse the value.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-3/+3
|
* Make the check on inventory cache clearing more robust. AddressesMelanie Thielker2008-08-271-0/+36
| | | | | | | Mantis #1975 in a broader way. This may or may not prop up secure inventory a bit better, but I still recommend to disable it
* * zap compilation warningsJustin Clarke Casey2008-08-251-2/+2
|
* Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker2008-08-241-0/+35
| | | | | | | and the for sale setting doesn't survive a sim restart, but this is most of the plumbing.
* Some complex re-ordering to make prebuild do what needed to be done.Melanie Thielker2008-08-231-1/+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
* Patch #9171Melanie Thielker2008-08-231-5/+32
| | | | | | | Disallow bulk uploads if money module is present and upload cost is set and the user hasn't got sufficient funds.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-191-1/+1
|
* Fix region crossings and access to inventory after changing regions withinMelanie Thielker2008-08-191-3/+25
| | | | | | the same simulator
* Formatting cleanup.Jeff Ames2008-08-182-10/+6
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-171-1/+1
|
* Add the IInventoryModule interface and a sample method callMelanie Thielker2008-08-171-13/+23
| | | | | | to Scene.INventory.cs
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-161-1/+1
|
* Refactor a lot of direct calls to OGS1 to use the cached version instead.Melanie Thielker2008-08-161-3/+4
| | | | | | | Scripts can now no longer DOS the user server and there are a lot fewer gratuitious lookups of user profile data.
* Plumb in the partner and the account title fields for profile info.Melanie Thielker2008-08-151-4/+11
|
* Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker2008-08-151-2/+5
| | | | | | | | the database is now intepreted as follows: low byte = user flags. Next byte, low nibble: Deternines the text (Resident, Lifetime, etc) shown. No customn text support yet.
* Thank you, sacha magne, for a patch that prevents sim chat fromMelanie Thielker2008-07-311-1/+4
| | | | | | | being heard across whole grids. Fixes Mantis #1855
* renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessageDr Scofield2008-07-252-5/+5
|
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-233-3/+3
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Commented out a readline that was preventing the sim from shutting down in ↵Dahlia Trimble2008-07-181-1/+1
| | | | some cases
* fixing warning in IRCBridgeModule and logging the exception cause now.Dr Scofield2008-07-141-2/+3
|
* adds a default value of true to the new IRC bridge configuration option ↵Dahlia Trimble2008-07-141-3/+5
| | | | "nicknum" to provide backwards compatibility for existing OpenSim.ini files
* Mantis#1718. Thank you kindly, Mircea for a patch that:Charles Krinke2008-07-121-9/+17
| | | | | Adds some IRC bridge improvement.