aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* OpenSim.Region.Communications.* is no more. Thanks to everyone who ↵Diva Canto2010-01-104-1066/+0
| | | | contributed to these!
* CommunicationsManager is practically empty. Only NetworkServersInfo is there.Diva Canto2010-01-101-2/+0
|
* A few more inches... Old friends things removed. Less references to ↵Diva Canto2010-01-081-1/+0
| | | | UserProfileService.
* A few more guards along the path to user server.Diva Canto2009-12-111-3/+6
|
* Formatting cleanup.Jeff Ames2009-10-013-9/+9
|
* Poof! on OGS1 GridServices.Diva Canto2009-09-262-939/+0
|
* re-enable registration of user service authentication method I accidentally ↵Justin Clark-Casey (justincc)2009-09-241-11/+1
| | | | | | disabled a few commits ago load/save iar on a grid should now work, provided that the user service is this revision or newer
* Produce a different error message if the user service does not have the ↵Justin Clark-Casey (justincc)2009-09-241-23/+23
| | | | authenticate method available
* Allow load/save iar password checks to be done in grid modeJustin Clark-Casey (justincc)2009-09-241-1/+42
| | | | | This should allow load/save iar to work for grid mode as long as the grid user service is later than this revision Grid services of earlier revisions will always erroneously report incorrect password. This will be addressed shortly.
* Guarding the unpacking of the email field introduced by Robsmart. Most ↵Diva Canto2009-09-121-1/+2
| | | | profiles don't have it. This may fix mantis #4134.
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+1
| | | | always grant access to an avatar entering the region if requested.
* uh-hum. It might help if I remembered to save the file.Diva Canto2009-09-051-1/+1
|
* Fixed some long-standing issues with appearance in HG1.Diva Canto2009-09-041-3/+7
|
* Add System.Xml reference to the console projectMelanie2009-08-171-1/+1
|
* Et voila! - Old inventory code removed.Diva Canto2009-08-102-694/+0
|
* First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto2009-08-101-24/+0
| | | | everything-inventory in CommsManager, which wasn't actively used anymore.
* * minor format changes and message additionsJustin Clarke Casey2009-07-101-3/+3
|
* * minor: standardize some logging messagesJustin Clarke Casey2009-07-101-2/+1
|
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-102-14/+6
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Factoring out "land_data" / RequestLandData that was hanging off of ↵diva2009-06-141-1/+3
| | | | IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
* Formatting cleanup.Jeff Ames2009-06-101-1/+1
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-017-7/+7
| | | | LICENSE.txt.
* Commented a log message related to users not found, because it floods the ↵diva2009-05-261-4/+4
| | | | log when the sims have prims from foreign users.
* * Upped version number to 0.6.5lbsa712009-05-251-2/+2
|
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-2/+2
| | | | | | | | | | 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)
* * NetworkUtil now handles an error case in a way which is easier to debug.Adam Frisby2009-05-231-1/+0
|
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-1/+1
|
* Added a bool variable to OGS1GridServices to be able to turn off the use of ↵MW2009-05-141-9/+16
| | | | | | | the remoteRegionInfoCache as caching region data like that stops a dynamic grid (where regions could change port or host at any time, useful for load balancing among other things) from working. The bool is currently hardcoded to be true (to use the cache). So need to hook this up to a config option later.
* Thank you kindly, Patnad, for a patch that:Charles Krinke2009-05-121-0/+2
| | | | | | | | | This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-044-4/+4
|
* Change of word in log message.diva2009-05-021-1/+1
|
* Another attempt at mantis #3527.diva2009-04-271-1/+11
|
* * Allow interested user data plugins to store temporary user profilesJustin Clarke Casey2009-04-231-0/+5
| | | | | | * Database and the OGS1 plugins are not interested and hence ignore these calls
* * Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey2009-04-231-2/+2
| | | | | | | | | cached) * Plugin not yet used * Existing functionality should not be affected in any way
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-221-4/+1
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* * Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey2009-04-223-738/+788
| | | | | | | | | components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
* Thank you dslake for diagnosing and fixing a race condition in ↵diva2009-04-181-57/+65
| | | | OGS1SecureInventoryServer (mantis #3483). The provided patch was slightly modified to narrow the locking scope to smaller portions of the functions. Applied the same locking to HGInventoryService, which suffered from the same race condition.
* Bug fix for standalone HG login. VerifySession should be local for local users.diva2009-04-181-1/+1
|
* * Moved the DefaultConfig settings into already-existing ConfigSettingslbsa712009-04-171-1/+1
|
* * Some more work on refactoring configs;lbsa712009-04-171-1/+1
| | | | | | | * Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
* Fix for minor bug introduced yesterday, HG only. Can't lookup the profile ↵diva2009-04-141-1/+1
| | | | when we're looking up the profile...
* Making OGS1UserServices friendly to subclassing.diva2009-04-141-29/+45
|
* * Some more experimental work on distributed assets. Nothing hotwired yet.lbsa712009-04-131-75/+93
| | | | | | | | | * Introduced preprocess step in FetchAsset (Might revert this later) * Some minor CCC * Added actual implementation of GetUserProfile( uri ) and the corresponding handler to OGS1. * Introduced non-functioning GetUserUri( userProfile) awaiting user server wireup (this might move elsewhere)
* * Introduced some experimental code with regards to asset data substitutionlbsa712009-04-081-0/+5
|
* * Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa712009-04-011-1/+1
|
* Committing partial work on passing folders across instances. This may crash.Melanie Thielker2009-03-232-0/+32
|
* Add QueryItem method to secure inventory and HG inventory, change method sig toMelanie Thielker2009-03-221-0/+16
| | | | | | provide additional information the HG needs.
* Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker2009-03-211-0/+16
| | | | | | | MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
* Adds support for unlink-region command in hypergrid.diva2009-03-181-0/+22
|
* regionInfo isn't defined here yet, which leads to a NRE. Grid-serverHomer Horwitz2009-03-151-1/+1
| | | | | | provided us with the data, so let's use it for now. Hopefully fixes Mantis #3297.