Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-03Remove old System.Xml sources. bye bye.Atsushi Eno
2015-02-06[Build] Make the code build with old bootstrapped environmentsMiguel de Icaza
2015-01-17[bcl] Remove more NET_2_0 checks from class libsAlexander Köplinger
2015-01-14[bcl] Remove NET_4_5 defines from class libs.Zoltan Varga
2015-01-14[bcl] Remove NET_4_0 defines from class libs.Zoltan Varga
2015-01-13[bcl] Remove NET_2_0 defines from the class libs. This has been done using: ↵Zoltan Varga
unifdef -t -DNET_2_0 -o <filename> <filename>.
2014-11-07[xml] XmlElement.InnserXml seems to preserve whitespaces.Atsushi Eno
Fix for mdoc test regression (see commit comments on #661430f).
2014-10-31[xml] XmlDocument.ReadNode() should not special case XmlTextReader.Atsushi Eno
Added test case that proves this change (by baulig).
2014-10-24[xml] XmlTextReader: Value was wrong after ReadAttributeValue() on xml ↵Atsushi Eno
declaration.
2014-10-06[system.xml] Make XmlSerializer work even when XmlTextReader has explicitly ↵Marek Safar
set its resolver
2014-10-05[system.xml] Add missing 4.0 propertyMarek Safar
2014-08-08[Cleanup] Removed TARGET_JVMAlexander Köplinger
It was once part of a special Java target profile, but this is no longer used today.
2014-08-03[system.xml] Dispose XmlReader using correct value. Fixes #21771Marek Safar
2014-04-24Fix bug #9541 by Bart Verthé - do not reset document schema when reading an ↵Atsushi Eno
element.
2014-02-13Merge pull request #835 from HorstKakuschke/masterMiguel de Icaza
Fixes Xamarin Bug 16742: XmlConvert.ToDateTime(string, XmlDateTimeSeria...
2014-02-11[system.xml] Add more invalid argument checksMarek Safar
2014-02-11[system.xml] Support more primitive types in XmlReader::ReadContentAsMarek Safar
2013-12-11Fixes Xamarin Bug 16742: XmlConvert.ToDateTime(string, ↵Horst Kakuschke
XmlDateTimeSerializationMode) throws index out of bounds exception Fix for bug + added tests for method XmlConvert.ToDateTime(string, XmlDateTimeSerializationMode)
2013-08-07Fix bug #12469 - add more conversion methods to XmlAtomicValue.Atsushi Eno
Since XmlAtomicValue is pretty much hidden in the implementation, there is almost no way to verify how it should work. So the changes are all based on assumption. Yet I added a test based on bug #12469. There is still problem on processing *invalid* inputs. They have to be rejected, but they pass.
2013-08-06implement character validation methods in XmlConvert. Fix bug #11910.Atsushi Eno
2013-03-13Trivial API additions.Martin Baulig
2013-02-27Fix possible NRE caused by null XmlResolver settings.Atsushi Eno
2013-02-26Fixes buildMarek Safar
2013-02-12Since MOBILE implies NET_4_* now, take this into account and simplify our ↵Rodrigo Kumpera
ifdefs.
2013-02-12Since NET_2_1 implies NET_4_* now, take this into account and simplify our ↵Rodrigo Kumpera
ifdefs.
2013-02-12Kill MOONLIGHT from System.Xml.Rodrigo Kumpera
2012-08-08- XmlConvert.ToString to TimeSpan incorrectly returns T suffix even if Time ↵Sergey Bogdanov
was not set (0h 0m 0s)
2012-06-14Clean up some NET_2_0Marek Safar
2012-06-08Fix some warningsMarek Safar
2012-06-06Fix XmlReaderSettings::CloneMarek Safar
2012-06-06Make XmlWriterSettingsTests .net compatibleMarek Safar
2012-06-06Don't return void resultMarek Safar
2012-06-06XmlResolver.GetEntityAsync().Martin Baulig
* The default implementation throws NotImplementedException. * Added nunit tests.
2012-06-03Add .NET 4.5 async methods to XmlReader and XmlWriter.Martin Baulig
2012-06-03More .NET 4.5 work.Martin Baulig
2012-06-03Sync parameter names with .NET.Martin Baulig
2012-06-02Add .NET 4.5 async methods to XmlReader.Martin Baulig
2012-06-02Removal of NET_1_1 defines and some NET_2_0; Both defines are true these ↵Miguel de Icaza
days in Mono, no versions prior to 2.0 are supported
2012-05-31A fix for failing xml writer testsMarek Safar
2012-05-09Small adjustments needed for Profile[1-4] of the Portable Class Libraries.Sebastien Pouliot
2012-05-03Fix XmlTextWriter's use of NewLineHandling.Richard Kettlewell
- Move the setting of newline_handling early enough that Initialize() can see it. - Reduce the set of characters that trigger the slow path for attribute values for the NewLineHandling.None case. - Rewrite the handling of \t, \r and \n to match the MS docs (which match the observed behavior of their implementation) - Add some tests.
2012-04-16Remove 1.1 only members with wrong profile checkMarek Safar
2012-04-05Fix some API mismatchMarek Safar
2012-03-08bugfix #3231 - when XmlWriterSettings specifies Indent, some ↵Atsushi Eno
WriteWhitespace() is ignored.
2012-01-19Fix bug 998 - in XmlResolver.ResolveUri(), make some policy change on "how ↵Atsushi Eno
to determine a string as an absolute URI. It's a bit difficult decision, as the "relative URI" could be any path string that contain colons as a *valid* path (especially on *nix land). We historically did allow such string that contain "http:" etc. as to be treated as absolute (which historically worked long time). But this test case uncovered possible other cases. Hopefully this does not bring issues that is pretty much anticipated. Such issues could also happen in older code anyways.
2012-01-19Fix bug #2956: XmlReader.HasValue became virtual (from abstract) in .NET 4.Atsushi Eno
2011-12-27Removes 2 warnings CS0168QuickJack
2011-09-13Delay initialization of the stream until first readGonzalo Paniagua Javier
This way uri-based resources are not fetched before they are supposed to. Fixes Xamarin bug #762.
2011-05-19Allow DocumentType in ImportNode().Atsushi Eno
http://lists.ximian.com/pipermail/mono-devel-list/2011-May/037575.html
2011-04-28Extend supported XmlDateTimeSerialization formats. Fixed bug #690475.Atsushi Eno