aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Serialization/External/LandDataSerializer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* give up on a property that old monos do compile, but then smore ok execUbitUmarov2018-01-091-1/+0
|
* fall back to a obsolete property since several monos in use (include our ↵UbitUmarov2018-01-081-1/+1
| | | | own) do not suporte the proper .net4.0 one
* a few more xml thingsUbitUmarov2018-01-051-0/+2
|
* Ignore whitespace when reading serialized XML objects.Justin Clark-Casey (justincc)2014-08-291-5/+5
| | | | | | This was previously effectively being done by XmlDocument in the multiple passes through the XML. This change tells XmlReader to ignore whitespace. This also means changing arguments to use XmlReader instead of XmlTextReader (a descendent of XmlReader) directly. XmlReader.Create() has been the recommend way to create XML readers since .NET 2.0 as per MS SDK and is the only way to specific ignore whitespace settings.
* When saving an OAR in "Publish" mode, also discard Group informationOren Hurvitz2014-05-261-9/+9
|
* Fix old regression that stopped saving parcel owner data in OARs.Justin Clark-Casey (justincc)2012-08-031-2/+20
| | | | | | This was working in 0.7.2 but was accidentally removed from 0.7.3. The --publish option for "save oar" will now save oars stripped of parcel owner information as well as scene object info. Please use the --publish option if you want to publish oars that may be later loaded by others to the same grid from which they were saved.
* Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)2012-07-111-3/+1
| | | | | | | constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
* Remove some mono compiler warningsJustin Clark-Casey (justincc)2012-06-301-1/+1
|
* Refactor common deserialization processor code to generic method ↵Justin Clark-Casey (justincc)2012-02-031-68/+6
| | | | ExternalRepresentationUtils.ExecuteReadProcessors()
* Change LandDataSerializer deserialization so that in the future it won't ↵Justin Clark-Casey (justincc)2012-02-031-60/+177
| | | | | | care about extra elements or element order. This brings it into line with other deserializations such as object and will improve future backward compatibility.
* Fix test failureMelanie2012-02-031-0/+1
|
* Replace ParcelAccessEntry with a new struct, LandAccessEntry, which moreMelanie2012-02-021-5/+7
| | | | | | accurately reflects the data sent by the viewer. Add times bans and the expiration of timed bans. Warning: Contains a Migration (and nuts)
* Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker2010-09-051-2/+3
| | | | on IDwellModule
* Minor formatting cleanup.Jeff Ames2009-10-191-12/+12
|
* - adding new LandDataSerializer testcase to "test-xml" target as welldr scofield (aka dirk husemann)2009-10-011-11/+11
| | | | - adding another LandDataSerializer testcase
* fixing LandDataSerializer (yeah! for testcases)dr scofield (aka dirk husemann)2009-10-011-15/+21
|
* Merge branch 'oar-parcel' into x-opensimdr scofield (aka dirk husemann)2009-10-011-32/+32
|\
| * adding testcase for LandDataSerializer; fixing LandDataSerializer ;-)dr scofield (aka dirk husemann)2009-10-011-32/+32
| |
* | Formatting cleanup.Jeff Ames2009-10-011-1/+1
|/
* adding LandDataSerializer (not connected anywhere, work-in-progress)dr scofield (aka dirk husemann)2009-09-301-0/+185
[hi, there, justin!]