| Commit message (Collapse) | Author | Files | Lines |
|
(this took a while to run).
|
|
when they were.
* A few things for testing.
* This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
|
|
:: Believe it or not, but INSERT/UPDATE is actually a better pattern than REPLACE, since, with INSERT/UPDATE you can catch erroneous UPDATES to non-INSERTed items as well as catch erroneous re-INSERTS. in 95% of the cases, you SHOULD have a clear INSERT context, and a clear and separate UPDATE context. If you think your case falls within the 5%, maybe you should re-evaluate your code. ::
|
|
|
|
* Comments, capitalization
|
|
an "Exception e" with e.ToString() to eliminate 2 warnings.
|
|
|
|
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.
|
|
|
|
|
|
* Refactored out ErrorResponse
|
|
* Introduced ValidateNewRegion and ValidateOverwrite
|
|
|
|
|
|
|
|
support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
|
|
|
|
|
|
* Minor documentation bits
|
|
grid server reliability.
|
|
[Provided by openlifegrid.com]
|
|
weirdness
[Provided by openlifegrid.com]
|
|
* 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.
|
|
[Provided by openlifegrid.com]
|
|
[Provided by openlifegrid.com]
|
|
Changed LogBase to ConsoleBase, which handles console I/O.
This is mostly an in-place conversion, so lots of refactoring can still be done.
|
|
running MYSQL as the data source.
|
|
This is the beginnings of support for storage of region owner in the MySQLManager
table and the use of "owner_uuid".
|
|
* Cleaned up copyright notices in AssemblyInfo.cs's
* Added Copyright headers to a bunch of files missing them
* Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
|
|
* If you wish to turn off key authentication, set the values to "" (null) in the grid config, and do the same in clients.
|
|
now actually checks your authentication keys rather than ignoring them.
|
|
* Don't forget to prebuild
|
|
|
|
location already used by an existing region.
|
|
* shortened references
* Removed redundant 'this'
* Normalized EOF
|
|
|
|
|
|
banlists.
* Added a way for Grid based configuration parameters to (generally used in overriding functionality) to get to the regions on Registration.
|
|
Works with LibSL rev>1532
|
|
notice of doom
|
|
|
|
As a consequence, restarting sims in the same process instance now shows them when they come back up in grid mode and standalone mode.
|
|
requested (crash is gone, but tons of worldmap requests)
|
|
* Shortened type references
* Removed redundant 'this' qualifier
|
|
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace.
Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
|
|
Bugs 449, 454, 408, 244, 197
implemented InformClientOfNeighbours as an asynchroneous process, handling timeouts without blocking the main thread.
Improved logging of errors, removed catch all in try catch
|
|
|
|
|
|
|
|
attribute (set to "DEBUG"), so we can use that for writing extra debug info to the console. [for anyone who doesn't know about the Conditional attribute, it is a attribute that can be set on a method, and then any call to that method will on be compiled if the terms of that condition are met, ie is this case only if "DEBUG" is true. So its a cleaner implementation of the #if #endif directives].
A few other minor changes.
|