aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Serialization/External (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-09give up on a property that old monos do compile, but then smore ok execUbitUmarov4-4/+1
2018-01-08fall back to a obsolete property since several monos in use (include our ↵UbitUmarov4-4/+4
own) do not suporte the proper .net4.0 one
2018-01-05 a few more xml thingsUbitUmarov4-1/+8
2018-01-04disable some XmlResolverUbitUmarov1-0/+1
2017-01-05Massive tab and trailing space cleanupMelanie Thielker5-59/+59
2015-08-11Better handling of invalid XML: a) prevent infinite loop on EOF; b) better ↵Oren Hurvitz1-8/+32
logging If the XML was truncated for some reason then ExecuteReadProcessors() would get into an infinite loop, using high CPU. Now it detects EOF (and several other error cases) and aborts. The rest of the changes just improve logging of XML in case of errors, so that we can see what the bad XML is.
2015-08-01Mantis #7657 and #7514. This should alleviate the problem of bad object ↵Diva Canto1-0/+19
assets being passed around via HG and archives. No guarantees that all the leaks have been found, but at least it detects and fixes these bad assets upon: (1) storing and getting assets over HG -- assuming the core HG asset service is being used (not the case with OSGrid!) (2) importing assets via OAR and IAR Instantiation of bad assets now should also work, instead of producing an exception, but the bad assets themselves aren't being fixed in the DB. That should be done with a cleaning tool -- see Perl script in Mantis #7657. Virus!
2015-05-05Refactored some code that is used in two different dlls related to SOP ↵Diva Canto1-1/+183
rewriting. Also added some unit tests that relate to mantis #7514
2015-05-02It wasn't that. Revert "Mantis #7514"Diva Canto1-3/+0
This reverts commit 365f46bfa91245e6e277a180dc6bbf757ea2540f.
2015-05-02Mantis #7514Diva Canto1-0/+3
Mono bug introduces double xmlns attribute names when rewriting the asset in HGAssetService, e.g. <SceneObjectPart xmlns:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xmlns:xsd="http://www.w3.org/2001/XMLSchema">. Solution: remove all attributes before saving.
2014-08-29Ignore whitespace when reading serialized XML objects.Justin Clark-Casey (justincc)3-31/+31
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.
2014-05-26When saving an OAR in "Publish" mode, also discard Group informationOren Hurvitz1-9/+9
2014-03-24Refactored: ExternalRepresentationUtils should be the only place where the ↵Oren Hurvitz2-4/+15
"CreatorData" field is calculated, to ensure uniformity Resolves http://opensimulator.org/mantis/view.php?id=6933
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)1-1/+1
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-11/+3
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-08-29Fix regression introduced in a0d178b2 (Sat Aug 25 02:00:17 2012) where ↵Justin Clark-Casey (justincc)1-3/+11
folders with asset type of 'Folder' and 'Unknown' were accidentally treated as system folders. This prevented more than one additional ordinary folder from being created in the base "My Inventory" user folder. Added regression test for this case. Switched tests to use XInventoryService with mostly implemented TestXInventoryDataPlugin rather than InventoryService Disabled TestLoadIarV0_1SameNameCreator() since this has not been working for a very long time (ever since XInventoryService) started being used since it doesnt' preserve creator data in the same way as InventoryService did and so effectively lost the OSPAs. However, nobody noticed/complained about this issue and OSPAs have been superseded by HG like creator information via the --home save oar/iar switch.
2012-08-03Fix old regression that stopped saving parcel owner data in OARs.Justin Clark-Casey (justincc)1-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.
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)2-6/+2
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.
2012-06-30Remove some mono compiler warningsJustin Clark-Casey (justincc)2-2/+2
2012-05-14Save the Telehub and its Spawn Points in the OAROren Hurvitz1-2/+35
2012-05-12Revert "Save the Telehub and its Spawn Points in the OAR"Justin Clark-Casey (justincc)1-35/+2
This reverts commit b0b7b45b943dd94546bcfcf5d3bb871cfe35b507. Sorry BlueWall, I wanted to discuss an aspect of the data storage but I couldn't assign bugs in 'patch included' state to myself until I changed mantis just now and I forgot to mention it on irc. I wouldn't normally revert but thinks get tricky when it comes to data formats. Essentially, I would like to see the Yaw, Pitch and Distance values as separate XML entities (as used in other aspects such as vectors, quaternions) rather than as a . delimited string We can discuss this more with Oren in opensimulator.org/mantis/view.php?id=6008
2012-05-10Save the Telehub and its Spawn Points in the OAROren Hurvitz1-2/+35
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-02-13On object deserialization, go back to logging errors at DEBUG level rather ↵Justin Clark-Casey (justincc)1-6/+13
than ERROR. Restore extra log message if shape processing fails. Logging level was DEBUG before 312e145 (Fri Feb 3 2012). 312e145 also accidentally removed the 'general error' log message if any shape deserialization failed. This commit restores it, though this has no functional impact.
2012-02-03Change SceneObjectSerializer to use common ↵Justin Clark-Casey (justincc)1-9/+28
ExternalRepresentationUtils.ExecuteReadProcessors() methods. Adds ability to submit a customized exception message to match logging.
2012-02-03Changed save oar and save iar parameter -p|--profile to -h|--home, including ↵Snoopy Pfeffer1-2/+2
corresponding RemoteAdmin parameter
2012-02-03Refactor common deserialization processor code to generic method ↵Justin Clark-Casey (justincc)3-98/+62
ExternalRepresentationUtils.ExecuteReadProcessors()
2012-02-03Change LandDataSerializer deserialization so that in the future it won't ↵Justin Clark-Casey (justincc)3-63/+182
care about extra elements or element order. This brings it into line with other deserializations such as object and will improve future backward compatibility.
2012-02-03Fix test failureMelanie1-0/+1
2012-02-02Replace ParcelAccessEntry with a new struct, LandAccessEntry, which moreMelanie1-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)
2012-02-02Make ban, eject, freeze and the scripted versions of those work.Melanie1-5/+7
2012-01-12HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto1-4/+4
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
2011-06-10Save the sun's position in OARsOren Hurvitz1-2/+6
2011-03-09Simplify TestLoadIarV0_1AbsentUsers() to use common IAR test setup. Make ↵Justin Clark-Casey (justincc)1-1/+18
static dictionaries on NullUserAccountData instance instead to stop user accounts being carried over between tests
2011-02-03Addresses mantis #5360: CreatorData was being written as long as it wasn't ↵Diva Canto1-1/+1
null. This made iars backwards incompatible when some items had non-null foreign creators. This patch adds an explicit option (-c) to preserve foreign creator information.
2010-12-01Added some comments. Better than listening to the boring speaker...Diva Canto1-0/+12
2010-11-29Fix unit test.Diva Canto1-0/+6
2010-11-29Preservation of creator information now also working in IARs. Cleaned up ↵Diva Canto3-8/+295
usage help. Moved Osp around, deleted unnecessary OspInventoryWrapperPlugin, added manipulation of SOP's xml representation in a generic ExternalRepresentationUtils function.
2010-11-27Changed the parser for InventoryItem deserialization. Moved some utility ↵Diva Canto1-30/+168
functions around.
2010-09-05Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker1-2/+3
on IDwellModule
2010-09-05Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker1-2/+3
on IDwellModule
2010-02-12Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522Justin Clark-Casey (justincc)1-12/+12
These patch should allow people using systems that do not have their locale set to En_US or similar to use OpenSim without suffering effects such as being a million miles up in the air on login. The problem was caused by parsing strings without forcing that parse to be En_US (hence different decimal and digit group symbols were causing problems). Thanks very much to VikingErik for doing the legwork on this fix and phacelia for spotting it in the first place.
2010-01-10Forgot to remove 'using'Diva Canto1-1/+0
2010-01-10* Starting to clean the house...Diva Canto1-3/+3
* Fixed circular dependency
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto1-4/+5
* HG is seriously broken here * Compiles. Untested.
2009-10-19Minor formatting cleanup.Jeff Ames1-12/+12
2009-10-01- adding new LandDataSerializer testcase to "test-xml" target as welldr scofield (aka dirk husemann)1-11/+11
- adding another LandDataSerializer testcase
2009-10-01fixing LandDataSerializer (yeah! for testcases)dr scofield (aka dirk husemann)1-15/+21
2009-10-01adding testcase for LandDataSerializer; fixing LandDataSerializer ;-)dr scofield (aka dirk husemann)1-32/+32
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-10-01Formatting cleanup.Jeff Ames2-5/+5