aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-311-0/+10
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* Formatting cleanup.Jeff Ames2008-05-165-42/+42
|
* From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey2008-05-141-1/+1
| | | | | | Rename SearializableRegionInfo to SerializableRegionInfo (class was already named correctly)
* Formatting cleanup.Jeff Ames2008-05-141-2/+2
|
* * Fix minor local inventory service log typoJustin Clarke Casey2008-05-071-1/+1
|
* * Refactor: Remove redundant userID from further up the inventory request chainJustin Clarke Casey2008-05-011-1/+5
|
* * Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey2008-05-011-35/+0
| | | | | | | | almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-012-2/+1
| | | | with namespaces.
* * Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares2008-04-301-0/+5
| | | | | | | Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-252-13/+64
| | | | | | | | | | | | | the patch below adds support for start_location = uri:region&x&y&z to OpenSim which allows us to provide -url secondlife:///region/X/Y/Z to the SecondLife client during start up --- which will take you directly to region "region" at position X, Y, Z. also, i did increase the default Z value from 70 to 128 as we otherwise have the problem that on some regions we'd end up inside a mountain instead of on top of it.
* * Implement proper emptying of trashcan on standaloneJustin Clarke Casey2008-04-231-0/+10
| | | | | | | * On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-214-14/+14
| | | | (this took a while to run).
* * Eliminate a class of errors where an inventory request could be made ↵Justin Clarke Casey2008-04-111-2/+9
| | | | | | | | | before the region had completely received the inventory for the user. * A much larger race condition where the inventory request could be made before the region gets any data at all will also be fixed in the near future. * This change also fixes a regression from two patches ago where items stopped appearing in standalone inventory
* * Minor inventory code cleanup following on from last patchJustin Clarke Casey2008-04-111-2/+0
|
* * Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey2008-04-111-30/+15
| | | | | | | | at once, rather than each individual * This is required in order to work towards eliminating some inventory race conditions and to better deal with situations where a grid inventory server is slow or not responding.
* renaming of attributes in UserAgentData for readabilitySean Dague2008-04-101-4/+4
|
* changing UserAgentData to use properties. This caused moreSean Dague2008-04-101-4/+4
| | | | | | | grief than expected, as monodevelop doesn't like to refactor properties of properties.
* further renaming of properties for claritySean Dague2008-04-102-3/+3
|
* moved fields to properties for UserDataProfile, which wasSean Dague2008-04-102-16/+16
| | | | | | | actually a little more work than I expected given the copious use of out params.
* more refactoring, this time on InventoryFolderBaseSean Dague2008-04-072-10/+10
| | | | | | | | * wrap attributes in properties * clean up names a little bit * clean up name styles
* * Minor: If a user exists but has no inventory in standalone, automatically ↵Justin Clarke Casey2008-03-311-35/+20
| | | | | | | | create new inventory folders * This mirrors the grid behaviour
* This update has good news and bad news, first the bad.Teravus Ovares2008-03-301-4/+10
| | | | | | | | | | * This update breaks inter-region communications, sorry. * You will need to run prebuild. Next, the good; * This update solves the unexpected binary element when Linux simulators inform windows simulators and vice versa. So Linux Simulators and Windows simulators are 100% compatible again. * This update introduces an Integer in the prim crossing method to tell the receiving simulator which XML method to use to load the prim that crossed the border. If the receiving prim doesn't support the method, the prim crossing fails and no prims are lost. That being said, it's best to update all your simulators to this revision at once.
* * Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey2008-03-292-20/+1
| | | | implemented anyway.
* * Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey2008-03-282-2/+5
| | | | | | | | | than just the root child folders * This may resolve some current problems with non root child folders on standalone installations. * A fix for the same problem in grid mode will come soon.
* * Refactor: Eliminate RequestUsersRoot() redundant methodJustin Clarke Casey2008-03-281-1/+1
|
* * Refactor: Rename CreateInventoryData() to GetInventorySkeleton()Justin Clarke Casey2008-03-281-1/+2
| | | | | | | * Replace the unused default GetInventorySkeleton() impleemntation with an abstract declaration - less confusing this way imho * Add some comments
* * Remove pointless boolean on AgentInventory.CreateRootFolder()Justin Clarke Casey2008-03-281-1/+1
|
* * Massaging CAPS setup/teardown log messagesJustin Clarke Casey2008-03-251-1/+5
| | | | | | * Leaving quite a few debug messages in for now to help deal with bugs arising
* * Start passing around a region server's http port in RegionInfo.Justin Clarke Casey2008-03-231-0/+4
| | | | | | | | | | | * This means that caps methods (editing scripts, poss map functions, etc) on non-home regions should now work with servers which are listening for http ports on a non default (9000) port. * If you are running a region server, this may only work properly once your grid server upgrades to this revision * PLEASE NOTE: This shouldn't cause inter-region problems if one end of the connection hasn't upgraded to this revision. However if it does, the instability will persist until the grid and region (and possibly all the region's neighbours) have upgraded to this revision. * This revision also adds extra login related messages, both for success and failure conditions
* Another poxy patch which consists mainly of logging changes (some already ↵Justin Clarke Casey2008-03-201-1/+2
| | | | commented out) to find out what CAPS is doing
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-182-8/+8
|
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-182-0/+8
| | | | | | | location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
* Formatting cleanup.Jeff Ames2008-03-186-160/+156
|
* Formatting cleanup.Jeff Ames2008-03-181-1/+0
|
* Building on Joha's update...Teravus Ovares2008-03-181-2/+16
| | | | | * Server now listens to the client's start location request for 'home' or 'last' and sends the user to the home location or the last location.
* * Make it more obvious if local user services are being usedJustin Clarke Casey2008-03-171-3/+2
| | | | | | * Tell the log whether the sim is started in standalone or grid mode
* Make Local back end services warn/error messages explicitly say they are ↵Justin Clarke Casey2008-03-071-3/+3
| | | | from standalone services
* Change handler001 through handler009 to moreCharles Krinke2008-03-021-4/+4
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* * Converted the last of the events to the private delegate instance method ↵Teravus Ovares2008-02-221-2/+5
| | | | to avoid race conditions.
* Minor cleanup.Jeff Ames2008-02-203-3/+3
|
* Some changes to remove some of the direct calls to CommsManager from Scene, ↵MW2008-02-161-1/+1
| | | | so that they now go through the SceneCommunicationService. As a small step towards the day we can kill the CommsManager (YAY!)
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-2/+2
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* Added a small but maybe important clue that UserServer is not running.Tedd Hansen2008-02-141-1/+1
|
* Added a method to access a named folder in a users inventory, to the ↵MW2008-02-131-0/+17
| | | | inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
* Documenting and minor tweaksJustin Clarke Casey2008-02-111-0/+4
|
* Converted logging to use log4net.Jeff Ames2008-02-052-15/+20
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* some small changes, like adding a couple of extra methods to ↵MW2008-02-051-0/+14
| | | | IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.
* Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2008-02-042-5/+4
|
* * Add total logouts (and total logins) to server side user statsJustin Clarke Casey2008-01-281-1/+11
| | | | | | | * Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-251-4/+6
| | | | | | | | * Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next