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
2010-02-202010-02-20 Geoff Norton <gnorton@novell.com>Geoff Norton
* XmlInputStream.cs: Disable this codepath on monotouch. Fixes #562155 svn path=/branches/mono-2-6/mcs/; revision=152142
2010-01-28add missing backport in r150102 (r150106 in 2.6 branch).Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=150352
2010-01-25backport r150102.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=150106
2010-01-22backport r150041.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=150042
2010-01-15backport r149609, r149612, r149617 and r149618.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=149626
2010-01-13backport recent bugfixes from trunk.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=149439
2009-11-16backport r145920.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=146243
2009-11-16backport r145910.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=146242
2009-11-13[backport r146174]Andreia Gaita
* XmlNamespaceManager.cs: XmlReader.Read calls LookupNamespace via the internal sig, which skips any overrides that might exist on subclasses, so redirect all calls to the public call to make sure all overrides are called as well. Make AddNamespace, HasNamespace and RemoveNamespace private. svn path=/branches/mono-2-6/mcs/; revision=146175
2009-10-23* XmlConvert.cs: make ToUri static, fixes #548918 (moon)Andreia Gaita
[backport r144712] 2009-10-23 Andreia Gaita <avidigal@novell.com> svn path=/branches/mono-2-6/mcs/; revision=144713
2009-10-05backport r143367.Atsushi Eno
svn path=/branches/mono-2-6/mcs/; revision=143370
2009-09-152009-09-15 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlAttributeCollection.cs : removed duplicate ID attribute check here as this behavior not specifically defined by W3C DOM Level 2 specification. Fixed bug #508296. * XmlAttributeCollectionTests.cs : add test for bug #508296 by Tom Hindle. svn path=/trunk/mcs/; revision=141952
2009-08-25bring a net_2_0 feature set to monotouchJb Evain
svn path=/trunk/mcs/; revision=140606
2009-08-212009-08-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlTextReader.cs : there still was use of bogus XmlParserContext.NameTable. * XmlTextReaderTests.cs : added test for null nametable in parser context. svn path=/trunk/mcs/; revision=140397
2009-08-012009-08-01 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* Various changes to support the non-XAP XmlSchema resolution on the Moonlight build. Major missing feature: WebRequest resolution. svn path=/trunk/mcs/; revision=139248
2009-08-012009-08-01 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* Various changes to support the non-XAP XmlSchema resolution on the Moonlight build. Major missing feature: WebRequest resolution. svn path=/trunk/mcs/; revision=139246
2009-08-01Do not use Xap loading on MonoTouch profileMiguel de Icaza
svn path=/trunk/mcs/; revision=139245
2009-07-222009-07-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlNamespaceManager.cs : Adding prefix "xml" seems to be allowed as long as the URI is correct. Fixed bug #514015. * XmlNamespaceManagerTests.cs : add test for bug #514015. svn path=/trunk/mcs/; revision=138396
2009-07-222009-07-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlInputStream.cs : cosmetic exception type change. Patch by Hib Eris. Fixed bug #523971. * XmlTextReaderTests.cs : added test for bug #523971 by Hib Eris. svn path=/trunk/mcs/; revision=138369
2009-05-272009-05-27 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* XmlReaderSettings.cs: Set prohibitDtd when changing the value of DtdProcessing. Will fix a few Moonlight DRT tests svn path=/trunk/mcs/; revision=134827
2009-05-192009-05-19 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlConvert.cs : no reason not to report invalid input string for ToGuid(). svn path=/trunk/mcs/; revision=134369
2009-04-28In Test/System.Xml:Sebastien Pouliot
2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * XmlReaderCommonTests.cs: Add test case for an empty string url In System.Xml: 2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * XmlTextReader.cs (InitializeContext): Under NET_2_1 do not give a second change using Path.GetFullPath. (GetStreamFromUrl) Add extra validations that would be missed in NET_2_1 svn path=/trunk/mcs/; revision=132856
2009-04-282009-04-28 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* XmlReaderSettings.cs: Add MaxCharactersInDocument property for NET_2_1 profile * XmlUrlResolver.cs: Cleanup #ifdef NET_2_1 inside this file since this is not used anymore in Moonlight svn path=/trunk/mcs/; revision=132855
2009-04-28In System.Xml:Sebastien Pouliot
2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * XmlXapResolver.cs: Remove dependency on XmlUrlResolver. Small fixes wrt new unit tests (inside moon-unit). In .: 2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * net_2_1_raw_System.Xml.dll.sources: Remove XmlUrlResolver.cs and the associated [SecuritySafeCritical] that it required svn path=/trunk/mcs/; revision=132852
2009-04-28In Test/System.Xml:Sebastien Pouliot
2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * XmlResolverTest.cs: New. Unit tests for base features. In System.Xml: 2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * XmlResolver.cs: Small fixes wrt new unit tests. Add SupportsType method for NET_2_1 profile. In .: 2009-04-28 Sebastien Pouliot <sebastien@ximian.com> * System.Xml_test.dll.sources: Add System.Xml/XmlResolverTest.cs to the unit tests svn path=/trunk/mcs/; revision=132851
2009-04-222009-04-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlQualifiedName.cs : added Parse() overload that is used for xsd validation. * XmlSchemaValidator.cs, BuiltInDatatype.cs, XmlAtomicValue.cs: use xsd-supported version of XmlQualifiedName.Parse(). Fixed bug #496205. svn path=/trunk/mcs/; revision=132347
2009-04-222009-04-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlAttributeCollection.cs : when the node to be inserted has owner element _but_ is identical to that of this collection, do not reject it to raise an error. Fixed bug #496022. * XmlAttributeCollectionTests.cs : added test for bug #496022. svn path=/trunk/mcs/; revision=132344
2009-03-26fix the 1.1 buildGeoff Norton
svn path=/trunk/mcs/; revision=130269
2009-03-262009-03-25 Geoff Norton <gnorton@novell.com>Geoff Norton
* XmlTextReader.cs: Create the uri as relativeorabsolute. svn path=/trunk/mcs/; revision=130268
2009-03-182009-03-18 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReader.cs : handle DateTimeOffset in typed reader methods. svn path=/trunk/mcs/; revision=129672
2009-03-172009-03-17 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlTextWriter2.cs : some weird TextWriter has null Encoding. Fixed bug #372525. svn path=/trunk/mcs/; revision=129534
2009-03-162009-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlParserContext.cs : .NET has weird nametable initialization. Fixed bug #484519. * XmlParserContextTests.cs : added test for bug #484519. svn path=/trunk/mcs/; revision=129483
2009-03-162009-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReader.cs : (ReadToFollowing) check LocalName, not Name. Fixed bug #478506. svn path=/trunk/mcs/; revision=129474
2009-03-162009-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* DTDRreader.cs : read up all DTD stream so that we don't have to see bugs like #469317 many times. svn path=/trunk/mcs/; revision=129465
2009-03-162009-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReaderBinarySupport.cs : ReadContentsAsBase64() could skip EndElement at the next XmlReader.Read(). Fixed bug #480066. * XmlReaderCommonTests.cs : added test for bug #480066. svn path=/trunk/mcs/; revision=129404
2009-03-162009-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlTextWriter2.cs : only bogus v1 XmlTextWriter ignores null namespace for conflict check. Fixed bug #479725. * XmlWriterTests.cs : only bogus XmlTextWriter ignores null namespace for namespae conflict check. svn path=/trunk/mcs/; revision=129398
2009-03-132009-03-13 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlConvert.cs : added ToUri() (extraneous in 2.0; used only from 2.1 S.X.Serialization.dll in MS SDK). svn path=/trunk/mcs/; revision=129244
2009-03-03In System.Runtime.Serialization/System.Xml:Chris Toshok
2009-03-02 Chris Toshok <toshok@ximian.com> * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs: 2.1 has HasValue. In System.XML/System.Xml: 2009-03-02 Chris Toshok <toshok@ximian.com> * XmlReader.cs, XmlTextReader.cs, XmlTextReader2.cs, EntityResolvingXmlReader.cs: 2.1 has HasValue. In System.XML/Mono.Xml: 2009-03-02 Chris Toshok <toshok@ximian.com> * SubtreeXmlReader.cs, XmlFilterReader.cs: 2.1 has HasValue. In System.Xml.Linq/System.Xml.Linq: 2009-03-02 Chris Toshok <toshok@ximian.com> * XNodeReader.cs: 2.1 has HasValue. In System.ServiceModel.Web/System.Runtime.Serialization.Json: 2009-03-02 Chris Toshok <toshok@ximian.com> * JsonReader.cs: 2.1 has HasValue. svn path=/trunk/mcs/; revision=128406
2009-02-272009-02-27 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReader.cs : do not try to read at non-readable state in MoveToContent(). svn path=/trunk/mcs/; revision=128185
2009-02-232009-02-23 Alan McGovern <amcgovern@novell.com>Alan McGovern
* XmlTextReader.cs: Under the SL2 profile, the default resolver is a XmlXapResolver. svn path=/trunk/mcs/; revision=127740
2009-02-232009-02-23 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReader.cs : ReadContentAsXxx() should not advance XmlReader when it is on attribute *value* text. svn path=/trunk/mcs/; revision=127725
2009-02-192009-02-19 Geoff Norton <gnorton@novell.com>Geoff Norton
* *.cs: The tuner takes care of the visibility of this for us, and it is in fact needed. (Readd ReadAttributeValue to 2.1) svn path=/trunk/mcs/; revision=127366
2009-02-102009-02-10 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlTextWriter2.cs : similar fix in WriteStartElement() to previous change. Fixed bug #474091. * XmlTextWriterTests.cs : added test for bug #474091. svn path=/trunk/mcs/; revision=126417
2009-02-092009-02-09 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlElementTest.cs: SetAttribute(name,value) should identify value change for existing node, from new node insertion. Fixed bug #464394. * XmlElementTests.cs : added test for bug #464394. svn path=/trunk/mcs/; revision=126323
2009-02-062009-02-06 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlTextWriter2.cs : in WriteStartAttribute(), fill namespace in case it is null and the prefix has matching ns. Fixed bug #472634. * XmlTextWriterTests.cs : added test for bug #472634. svn path=/trunk/mcs/; revision=126047
2009-01-302009-01-30 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlSchemaValidatingReader.cs : implement IHasXmlParserContext to pass possible DTD information. * DTDValidatingReader2.cs, EntityResolvingXmlReader.cs : simplify parsercontext provision. * XmlValidatingReader.cs : expand parser context provision to non-dtdvalidating readers. svn path=/trunk/mcs/; revision=125053
2009-01-222009-01-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlXapResolver.cs : fix assembly qualified names, and give detailed errors. * XmlResolver.cs : in 2.1 do not resolve relative Uri to absolute. svn path=/trunk/mcs/; revision=124218
2009-01-222009-01-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlXapResolver.cs : new in 2.1. * XmlReaderSettings.cs : use above. * net_2_1_raw_System.Xml.dll.sources: added XmlXapResolver.cs. svn path=/trunk/mcs/; revision=124198
2009-01-202009-01-20 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlDocumentNavigator.cs : in some corner cases an attribute may have null OwnerElement. Fixed bug #458245. * SelectNodesTests.cs : added test for bug #458245. svn path=/trunk/mcs/; revision=123868
2009-01-202009-01-20 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlReaderBinarySupport.cs : do not hang in the middle of reading byte chunk at some node types. Fixed bug #464229. * XmlReaderCommonTests.cs : added test for bug #464229. svn path=/trunk/mcs/; revision=123866