aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Null/NullRegionData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-9/+11
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-0/+5
|
* Added locking in NullRegionData.Oren Hurvitz2013-01-041-20/+44
| | | | This prevents errors when one thread iterates over the regions (e.g., from RegenerateMaptileAndReregister()) while another thread is adding a region.
* Disambiguate use of RegionFlags in NullRegionDataJustin Clark-Casey (justincc)2012-10-091-0/+1
| | | | | This was not necessary with the nant build but is for xbuild, since xbuild includes associated project DLLs And so picks up OpenMetaverse.dll even though it isn't referenced by OpenSim.Data.Null.dll
* Add beginning of ScenePresenceAgentTests.TestCreateChildScenePresence()Justin Clark-Casey (justincc)2011-12-031-9/+31
| | | | | This required an option to be added to NullRegionData via ConnectionString for it to act as a non-static instance, so that regression tests (which only load this class once) don't get hopeless confused and complex to compensate. Normal standalone operation unaffected.
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2011-08-311-1/+1
|
* minor: a little bit of log message correction/commenting outJustin Clark-Casey (justincc)2011-08-111-1/+1
|
* GetRegion(s)ByName with SQLite behaves like it does with other databases.Marck2011-02-221-10/+38
| | | | The in-memory storage of region data that is used by default with SQLite now handles wildcards in region names in the same way as SQL queries do with other databases.
* Add distance sort for null, tooMelanie2010-08-081-2/+5
|
* White space from previous commit.Diva Canto2010-07-311-29/+29
|
* Implemented console command "show hyperlinks".Marck2010-07-311-31/+30
|
* * Fixed spamming the assets table with map tiles. The tile image ID is now ↵Diva Canto2010-05-091-3/+5
| | | | | | stored in regionsettings. Upon generation of a new tile image, the old one is deleted. Tested for SQLite and MySql standalone. * Fixed small bug with map search where the local sim regions weren't found.
* replace recent IModule.GetGroup() with better GetGroupRecord(string name)Justin Clark-Casey (justincc)2010-03-261-2/+2
|
* Convert NullRegionData to a singleton pattern, since that is requiredMelanie2010-02-081-2/+53
| | | | for a standalone
* Assorted bug fixes related to hyperlinkingDiva Canto2010-01-311-2/+2
|
* Preliminary work on the new default region setting mechanismMelanie2010-01-091-0/+10
|
* Add copyright header. Formatting cleanup.Jeff Ames2009-09-291-3/+3
|
* GridServerPostHandler finished. GridClient tests all work. More guards on ↵Diva Canto2009-09-241-4/+1
| | | | getting parameters and replies over the wire.
* More tests. Seems to be working.Diva Canto2009-09-231-1/+1
| | | | Grid connector modules are enabled for standalones only, but nothing in the simulator uses them yet, so it's safe to go in.
* Changed IGridService to use the new GridRegion data structure instead of old ↵Diva Canto2009-09-231-0/+1
| | | | | | SimpleRegionInfo. Added grid configs to standalones.
* Add the Null storage implementation for the RegionData service. StandalonesMelanie2009-09-161-0/+136
have no regions table, so this is needed