ChangeLog 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  1. 2010-06-30 Atsushi Enomoto <[email protected]>
  2. * System.Xml.dll.sources,
  3. moonlight_raw_System.Xml.dll.sources,
  4. monotouch_System.Xml.dll.sources : add DefaultXmlWriter.cs.
  5. 2010-03-16 Jb Evain <[email protected]>
  6. * Makefile: rename the net_2_1 profile to moonlight.
  7. * net_2_1_*.dll.sources: rename to moonlight_*.dll.sources.
  8. 2009-11-30 Jonathan Pryor <[email protected]>
  9. * monotouch_System.Xml.dll.sources: Add System.Xml/NamespaceHandling.cs
  10. to the MonoTouch build (fixed build break).
  11. 2009-11-27 Atsushi Enomoto <[email protected]>
  12. * System.Xml.dll.sources : added NamespaceHandling which is kept
  13. internal in 2.0 (to simplify its support in XmlTextWriter).
  14. 2009-08-01 Miguel de Icaza <[email protected]>
  15. * Various changes to support the non-XAP XmlSchema resolution on
  16. the Moonlight build.
  17. Major missing feature: WebRequest resolution.
  18. 2009-04-28 Sebastien Pouliot <[email protected]>
  19. * net_2_1_raw_System.Xml.dll.sources: Remove XmlUrlResolver.cs
  20. and the associated [SecuritySafeCritical] that it required
  21. 2009-04-28 Sebastien Pouliot <[email protected]>
  22. * System.Xml_test.dll.sources: Add System.Xml/XmlResolverTest.cs to
  23. the unit tests
  24. 2009-04-27 Sebastien Pouliot <[email protected]>
  25. * Makefile: Add missing Test/XmlFiles/496192.x* files to dist
  26. 2009-04-21 Sebastien Pouliot <[email protected]>
  27. * net_2_1_raw_System.Xml.dll.sources: Remove MonoTODOAttribute.cs
  28. since we can get it from mscorlib.dll
  29. 2009-04-16 Sebastien Pouliot <[email protected]>
  30. * net_2_1_raw_System.Xml.dll.sources: Remove corlib's files since
  31. System.Xml can now access, for 2.1 (moonlight) corlib's internals.
  32. 2009-03-13 Atsushi Enomoto <[email protected]>
  33. * System.Xml.dll.sources, net_2_1_raw_System.Xml.dll.sources :
  34. added KeyHelper.cs.
  35. 2009-02-19 Geoff Norton <[email protected]>
  36. * net_2_1_raw_System.Xml.dll.sources: Add a bunch of missing attributes
  37. 2009-01-22 Atsushi Enomoto <[email protected]>
  38. * net_2_1_raw_System.Xml.dll.sources: added XmlXapResolver.cs.
  39. 2009-01-14 Sebastien Pouliot <[email protected]>
  40. * net_2_1_raw_System.Xml.dll.sources: Add NamespaceHandling
  41. 2008-08-19 Jb Evain <[email protected]>
  42. * net_2_1_raw_System.Xml.dll.sources: add new files.
  43. 2008-05-22 Atsushi Enomoto <[email protected]>
  44. * Makefile : more simplification (and I forgot the syntax again :/)
  45. 2008-05-22 Atsushi Enomoto <[email protected]>
  46. * Makefile : EXTRA_DISTFILES is becoming messy, so simplify it.
  47. 2008-04-13 Jb Evain <[email protected]>
  48. * Makefile, net_2_1_*.sources: SL 2.0 now has a System.Xml.
  49. Merged from the Moonlight 2 branch.
  50. 2008-04-02 Atsushi Enomoto <[email protected]>
  51. * Makefile : extra distfiles (376395.xml, 376395.xsd).
  52. 2008-02-19 Atsushi Enomoto <[email protected]>
  53. * Makefile : extra distfiles (361818*.xsd).
  54. 2008-02-19 Atsushi Enomoto <[email protected]>
  55. * System.Xml_test.dll.sources: added XmlSchemasTests.cs.
  56. 2008-02-04 Atsushi Enomoto <[email protected]>
  57. * System.Xml_test.dll.sources : added XmlSchemaValidatorTests.cs.
  58. * Makefile : extra distfiles (358408.xsd).
  59. 2008-01-15 Gert Driesen <[email protected]>
  60. * System.Xml_test.dll.sources: added XmlParserContextTests.cs.
  61. 2007-10-31 Atsushi Enomoto <[email protected]>
  62. * Makefile : extra distfiles (336625.xsd).
  63. 2007-09-21 Atsushi Enomoto <[email protected]>
  64. * Makefile : extra distfiles (325482.xml / 325482.xsl).
  65. 2007-08-21 Atsushi Enomoto <[email protected]>
  66. * Makefile : extra distfiles (82078.xsd).
  67. 2007-08-21 Atsushi Enomoto <[email protected]>
  68. * Makefile : extra distfiles (82493.xml/.xsl).
  69. 2007-08-02 Atsushi Enomoto <[email protected]>
  70. * Makefile : extra distfiles (82010.xml/.xsd).
  71. 2007-06-28 Atsushi Enomoto <[email protected]>
  72. * System.Xml.dll.sources : added XsltDebuggerWrapper.cs, as initial
  73. attempt to support external debugger.
  74. 2007-04-24 Atsushi Enomoto <[email protected]>
  75. * Makefile : added distfiles.
  76. 2006-11-01 Atsushi Enomoto <[email protected]>
  77. * System.Xml_test.dll.sources : added following tests:
  78. - XmlSerializerImplementationTests.cs
  79. - SchemaImporterExtensionTests.cs
  80. - SchemaImporterExtensionCollectionTests.cs
  81. 2006-11-01 Atsushi Enomoto <[email protected]>
  82. * Makefile : Now it supports (and expects) cyclic build. You need
  83. another System.XML iteration in mcs/class/Makefile.
  84. * System.Xml.dll.sources : moved extension classes, added config and
  85. XmlSchemaEnumerator.cs and removed IXmlSerializerImplementation.cs.
  86. 2006-10-30 Wade Berrier <[email protected]>
  87. * Makefile: remove README, Mono.System.XML.csproj,
  88. Mono.System.XML.sln from EXTRA_DIST to fix make dist
  89. 2006-10-30 Atsushi Enomoto <[email protected]>
  90. * README, Mono.System.XML.csproj, Mono.System.XML.sln :
  91. remove old files.
  92. 2006-10-27 Atsushi Enomoto <[email protected]>
  93. * Makefile : added 79650.xsd to dist file.
  94. 2006-10-27 Atsushi Enomoto <[email protected]>
  95. * Makefile : added 79683.dtd to dist file.
  96. 2006-10-22 Zoltan Varga <[email protected]>
  97. * Makefile (EXTRA_DISTFILES): Add some missing test files.
  98. 2006-09-26 Boris Kirzner <[email protected]>
  99. * run-W3C-tests.bat, run-XSLT-tests.bat: log files naming fix.
  100. 2006-09-13 Boris Kirzner <[email protected]>
  101. * run-tests.bat, run-W3C-tests.bat, run-XSLT-tests.bat:
  102. reworked test scripts for TARGET_JVM.
  103. 2006-09-06 Merav Sudri <[email protected]>
  104. * run-W3C-tests.bat - Update nunit build and XMLTool actions
  105. * run-XSLT-tests.bat - Update CLASSPATH,nunit build and XMLTool actions
  106. 2006-07-24 Atsushi Enomoto <[email protected]>
  107. * System.Xml.dll.sources : added XmlMappingAccess.
  108. 2006-05-16 Vladimir Krasnov <[email protected]>
  109. * run-W3C-tests.bat: skip nunit build if already done
  110. * run-XSLT-tests.bat: skip nunit build if already done
  111. 2006-04-27 Gert Driesen <[email protected]>
  112. * System.Xml_test.dll.sources: Added Test/System.Xml.Serialization/
  113. XmlSchemaCollectionTests.cs.
  114. 2006-04-26 Gert Driesen <[email protected]>
  115. * System.Xml_test.dll.sources: Added Test/System.Xml.Serialization/
  116. SoapAttributesTests.cs.
  117. 2006-04-20 Gert Driesen <[email protected]>
  118. * System.Xml_test.dll.sources: Added Test/System.Xml.Serialization/
  119. XmlCodeExporterTests.cs.
  120. 2006-04-12 Atsushi Enomoto <[email protected]>
  121. * System.Xml_test.dll.sources :
  122. Added Test/System.Xml/XmlDefaultReader.cs.
  123. 2006-04-03 Andrew Skiba <[email protected]>
  124. * run-tests.bat, run-W3C-tests.bat: fix TARGET_JVM test scripts
  125. 2006-04-03 Andrew Skiba <[email protected]>
  126. * run-tests.bat, run-W3C-tests.bat, run-XSLT-tests.bat: batch files
  127. for running tests with java
  128. 2006-04-03 Boris Kirzner <[email protected]>
  129. * System.XML.vmwcsproj: fix project file for TARGET_JVM.
  130. 2006-03-15 Atsushi Enomoto <[email protected]>
  131. * System.Xml.dll.sources : added XslSortEvaluator.cs.
  132. 2006-02-20 Atsushi Enomoto <[email protected]>
  133. * System.Xml.dll.sources : removed XmlTextWriterOpenElement.cs and
  134. XmlTextWriter.cs. Added XmlTextWriter2.cs, to be renamed to
  135. XmlTextWriter.cs in a few days or weeks.
  136. 2006-02-17 Atsushi Enomoto <[email protected]>
  137. * System.Xml.dll.sources : removed DTDValidatingReader and added
  138. DTDValidatingReader2.cs and EntityResolvingXmlReader.cs.
  139. 2006-02-16 Atsushi Enomoto <[email protected]>
  140. * System.Xml.dll.sources : added IHasXmlChildNode.cs.
  141. 2006-02-09 Gert Driesen <[email protected]>
  142. * System.Xml_test.dll.Sources: Added XmlSerializationReaderTests.cs.
  143. 2006-01-27 Atsushi Enomoto <[email protected]>
  144. * System.Xml.dll.sources : added XmlIteratorNodeList.cs.
  145. 2006-01-10 Atsushi Enomoto <[email protected]>
  146. * System.Xml_test.dll.sources : added XmlSchemaTypeTests.cs.
  147. 2006-01-10 Atsushi Enomoto <[email protected]>
  148. * System.Xml_test.dll.sources : XmlSchemaDatatypeTests.cs was missing.
  149. collected sys.xml.schema lines.
  150. 2006-01-07 Gert Driesen <[email protected]>
  151. * System.Xml_test.dll.sources: Added SoapSchemaExporterTests.cs,
  152. SoapReflectionImporterTests.cs, XmlSchemaImporterTests.cs.
  153. 2005-12-28 Gert Driesen <[email protected]>
  154. * System.Xml_test.dll.sources: Added XmlSchemaExporterTests.cs.
  155. 2005-12-17 Gert Driesen <[email protected]>
  156. * System.Xml_test.dll.sources: Added XsltCompilerExceptionTests.cs
  157. and XsltExceptionTests.cs.
  158. 2005-12-14 Atsushi Enomoto <[email protected]>
  159. * System.Xml_test.dll.sources: Added XPathNavigatorReaderTests.cs.
  160. 2005-12-13 Atsushi Enomoto <[email protected]>
  161. * System.Xml_test.dll.sources: Added XmlAssert.cs.
  162. 2005-12-13 Atsushi Enomoto <[email protected]>
  163. * System.Xml_test.dll.sources: Added XPathEditableNavigatorTests.cs.
  164. 2005-12-08 Andrew Skiba <[email protected]>
  165. * System.XML.vmwcsproj: update the project with recent changes
  166. 2005-12-08 Atsushi Enomoto <[email protected]>
  167. * System.Xml.dll.sources : added XmlSchemaCompilationSettings.cs
  168. 2055-12-01 Konstantin Triger <[email protected]>
  169. * Makefile: java profile reference change.
  170. 2005-11-30 Konstantin Triger <[email protected]>
  171. * System.XML.vmwcsproj: reference to vmwutils replaced with reference to J2SE.Helpers.
  172. * jay.bat: quoting passes
  173. 2005-11-22 Atsushi Enomoto <[email protected]>
  174. * System.Xml.dll.sources : added dummy XslCompiledTransform.cs.
  175. 2005-11-14 Andrew Skiba <[email protected]>
  176. * net_1_1_java_System.Xml.dll.exclude.sources,
  177. net_1_1_java_System.dll.sources: fix filename
  178. 2005-11-14 Andrew Skiba <[email protected]>
  179. * Makefile: add java build profile
  180. * System.Xml.vmwcsproj: replace XmlNodeReader.cs with XmlNodeReader2.cs
  181. and XslDecimalFormat.cs with XslDecimalFormat.jvm.cs
  182. * net_1_1_java_System.Xml.dll.exclude.sources,
  183. net_1_1_java_System.dll.sources: add source lists for java profile
  184. 2005-11-10 Vladimir Krasnov <[email protected]>
  185. * System.XML.vmwcsproj: removed XmlSchemaBuiltInType.cs
  186. 2005-09-25 Atsushi Enomoto <[email protected]>
  187. * System.Xml.dll.sources : removed XmlSchemaBuiltInType.cs.
  188. 2005-09-21 Atsushi Enomoto <[email protected]>
  189. * Makefile : shut down CS0642 noise.
  190. * System.Xml.dll.sources : added XmlOutputMethod.
  191. 2005-09-20 Konstantin Triger <[email protected]>
  192. * Added jay.bat to run jay in java prebuild step
  193. * System.XML.vmwcsproj: added prebuild step
  194. 2005-08-31 Sebastien Pouliot <[email protected]>
  195. * Makefile: /unsafe isn't required to build System.Xml.
  196. * System.Xml_test.dll.sources: Added new CAS unit tests.
  197. 2005-07-31 Gert Driesen <[email protected]>
  198. * System.Xml_test.dll.sources: Added tests for default values of
  199. Xml Serialization attribute classes.
  200. 2005-06-27 Raja R Harinath <[email protected]>
  201. * Makefile (EXTRA_DISTFILES): Add files in Test/XmlFiles and
  202. Test/System.Xml/nist_dom/.
  203. 2005-06-27 Atsushi Enomoto <[email protected]>
  204. * System.Xml.dll.sources : removed XmlQueryDialect.
  205. Added xslt message event stuff.
  206. 2005-06-20 Raja R Harinath <[email protected]>
  207. * Makefile (SCARY_LIB): Remove.
  208. 2005-05-25 Raja R Harinath <[email protected]>
  209. * Makefile (EXTRA_DISTFILES): Remove System.Xml.Query/skeleton-2.0.cs.
  210. 2005-05-23 Atsushi Enomoto <[email protected]>
  211. * System.Xml.Query : removed the whole directory (removed from .net 2.0)
  212. 2005-05-09 Atsushi Enomoto <[email protected]>
  213. * System.Xml.dll.sources : removed obsolete TypeTableEntry.cs.
  214. 2004-05-05 Atsushi Enomoto <[email protected]>
  215. * System.Xml.dll.sources : XPathAtomicValue.cs -> XmlAtomicValue.cs.
  216. 2004-05-05 Atsushi Enomoto <[email protected]>
  217. * System.Xml.dll.sources : removed XmlValueConverter (obsoleted).
  218. * System.Xml_test.dll.sources : removed XPathAtomicValue (obsoleted).
  219. 2005-05-04 Andrew Skiba <[email protected]>
  220. * System.XML.vmwcsproj: Added Visual MainWin C# project file for
  221. building System.XML package for TARGET_JVM.
  222. 2005-04-03 Ben Maurer <[email protected]>
  223. * System.Xml.dll.sources: Kill multiplexing hack.
  224. 2004-03-22 Atsushi Enomoto <[email protected]>
  225. * Makefile : now it creates XSLT pattern parser files from
  226. Parser.jay and Tokenizer.cs in System.Xml.XPath.
  227. 2004-03-04 Atsushi Enomoto <[email protected]>
  228. * System.Xml.dll.sources : Added XslNotSupportedOperation.cs.
  229. 2004-01-21 Atsushi Enomoto <[email protected]>
  230. * Makefile : /nowarn:0162 is back.
  231. 2004-01-20 Atsushi Enomoto <[email protected]>
  232. * Makefile : amd64 build complains /nowarn:0162. It should not, but
  233. now removing since it breaks the build.
  234. 2004-01-18 Atsushi Enomoto <[email protected]>
  235. * System.Xml.dll.sources :
  236. Added XmlNameEntry.cs and XmlNameEntryCache.cs.
  237. 2004-01-17 Atsushi Enomoto <[email protected]>
  238. * System.Xml.dll.sources : replaced CustomSerializer with
  239. XmlSchemaSerializer.
  240. Replaced XmlNodeReader with XmlNodeReaderImpl.cs and
  241. XmlNodeReader2.cs. (dispatches entity reader and non-entity reader.)
  242. 2004-12-17 Atsushi Enomoto <[email protected]>
  243. * System.Xml.dll.sources : added XmlReaderBinarySupport.cs.
  244. 2004-12-14 Atsushi Enomoto <[email protected]>
  245. * System.Xml.dll.sources : added XmlSchemaValidatingReader.
  246. 2004-12-08 Atsushi Enomoto <[email protected]>
  247. * System.Xml.dll.sources : added XmlSchemaValidator.cs,
  248. XmlValueGetter.cs and XmlSchemaValidationFlags.cs.
  249. 2004-12-06 Raja R Harinath <[email protected]>
  250. * Makefile (lib_file): New autodetecting define.
  251. (USE_BOOT_COMPILE, LIBRARY_COMPILE): Add support for using
  252. bootstrap compiler.
  253. (BUILT_SOURCES): Add ...XPath/Parser.cs.
  254. (EXTRA_DISTFILES): Add ...Query/XQueryParser.jay.
  255. (BOOTSTRAP_MCS) [PROFILE=net_2_0]: New.
  256. * System.Xml.dll.sources: Remove ...XPath/Parser.cs.
  257. 2004-12-04 Atsushi Enomoto <[email protected]>
  258. * System.Xml.dll.sources : added DTMXPathDocument2.cs,
  259. DTMXPathDocumentBuilder2.cs, DTMXPathDocumentWriter2.cs,
  260. DTMXPathDocumentWriter2.cs and DTMXPathNode2.cs.
  261. 2004-12-03 Raja R Harinath <[email protected]>
  262. * Makefile: Remove support for being in bootstrap build.
  263. 2004-12-01 Atsushi Enomoto <[email protected]>
  264. * System.Xml.dll.sources: removed old IXPathChangeNavigable.cs,
  265. XmlChangeFilters.cs, and XPathDocumentNodeChangedAction.cs.
  266. 2004-11-25 Atsushi Enomoto <[email protected]>
  267. * Makefile : added LIBRARY_COMPILE condition for upcoming need to
  268. be referenced in bootstrap.
  269. 2004-11-22 Atsushi Enomoto <[email protected]>
  270. * System.Xml.dll.sources : added XmlSchemaInfo.cs.
  271. 2004-11-17 Atsushi Enomoto <[email protected]>
  272. * System.Xml.dll.sources : Moved XQueryConvert.cs from
  273. System.Xml.Query to System.Xml.
  274. 2004-11-17 Atsushi Enomoto <[email protected]>
  275. * System.Xml.dll.sources : added XmlSchemaInference.cs,
  276. XmlSchemaInferenceException.cs and XmlSchemaValidationException.cs.
  277. 2004-11-08 Atsushi Enomoto <[email protected]>
  278. * System.Xml.dll.sources :
  279. added XmlTextReader2.cs.
  280. removed IXPathEditable.cs, XPathEditableNavigator.cs,
  281. NodeChangedEventArgs.cs and NodeChangedEventHandler.cs.
  282. 2004-10-29 Atsushi Enomoto <[email protected]>
  283. * Makefile : just ignore obsolete attribute warnings (those obsolete
  284. members are widely used in obsolete code).
  285. 2004-10-28 Atsushi Enomoto <[email protected]>
  286. * System.Xml.dll.sources : removed IXmlDataEvidence, fixed
  287. XmlDateTimeSerializationMode, added NewLineHandling.
  288. 2004-10-22 Atsushi Enomoto <[email protected]>
  289. * System.Xml.dll.sources : removed all XQuery related classes, fixed
  290. XmlConvertDateTimeSerializationMode, removed 2.0 XPathDocument
  291. implementation classes.
  292. 2004-10-21 Atsushi Enomoto <[email protected]>
  293. * Makefile : added -nowarn:0162 -nowarn:0618 to the compiler options.
  294. 2004-10-07 Atsushi Enomoto <[email protected]>
  295. * System.Xml.dll.sources:
  296. added System.Xml.Query/XQueryFunctionContextAttribute.cs.
  297. 2004-09-13 Atsushi Enomoto <[email protected]>
  298. * System.Xml_test.dll.sources : Added XPathAtomicValueTests.cs.
  299. 2004-09-08 Atsushi Enomoto <[email protected]>
  300. * System.Xml_test.dll.sources : Added XmlWriterSettingsTests.cs.
  301. 2004-09-07 Atsushi Enomoto <[email protected]>
  302. * System.Xml_test.dll.sources : Added XmlReaderSettingsTests.cs.
  303. XmlReaderCommonTests.cs and XmlSchemaSetTests.cs were missing.
  304. 2004-08-31 Atsushi Enomoto <[email protected]>
  305. * System.Xml.dll.sources:
  306. added System.Xml.Query/XQueryComparisonOperator.cs.
  307. 2004-08-31 Atsushi Enomoto <[email protected]>
  308. * System.Xml.dll.sources:
  309. added System.Xml.Query/XQueryArithmeticOperator.cs.
  310. 2004-08-20 Atsushi Enomoto <[email protected]>
  311. * System.Xml.dll.sources:
  312. added many XQuery implementation internal classes.
  313. 2004-08-02 Atsushi Enomoto <[email protected]>
  314. * System.Xml.dll.sources: added those files:
  315. - Mono.Xml.XPath/XPathDocument2.cs
  316. - Mono.Xml.XPath/XPathDocument2Navigator.cs
  317. - Mono.Xml.XPath/XPathDocument2Editable.cs
  318. 2004-07-29 Atsushi Enomoto <[email protected]>
  319. * System.Xml.dll.sources: added Mono.Xml/SubtreeXmlReader.cs
  320. 2004-07-28 Atsushi Enomoto <[email protected]>
  321. * System.Xml.dll.sources: added Mono.Xml.XPath/XPathEditableDocument.cs
  322. 2004-07-26 Atsushi Enomoto <[email protected]>
  323. * Makefile : added call to jay for creating XQueryParser.cs.
  324. * System.Xml.dll.sources : added XQueryParser.cs, XQueryTokenizer.cs,
  325. XQueryModuleProlog.cs, XPath2Expression.cs and XQueryExpression.cs.
  326. 2004-07-21 Atsushi Enomoto <[email protected]>
  327. * System.Xml.dll.sources: Added XQueryConvert.cs. Removed
  328. XmlFactory.cs, XmlQualifiedNameTable.cs, IXPathChangeNavigable.cs,
  329. XPathChangeNavigator.cs and IXmlType.cs that are removed or going to
  330. be removed.
  331. 2004-07-13 Atsushi Enomoto <[email protected]>
  332. * System.Xml.dll.sources: Added MonoFIXAttribute.cs
  333. 2004-07-13 Atsushi Enomoto <[email protected]>
  334. * System.Xml.dll.sources:
  335. Added XmlFilterReader.cs and XPathNavigatorReader.cs
  336. 2004-07-09 Atsushi Enomoto <[email protected]>
  337. * System.Xml.dll.sources: Added XmlConvertDateTimeOption.cs.
  338. 2004-07-09 Atsushi Enomoto <[email protected]>
  339. * System.Xml.dll.sources: removed XmlItemView.cs and
  340. XmlItemViewCollection.cs (only in 1.2).
  341. 2004-07-09 Atsushi Enomoto <[email protected]>
  342. * System.Xml.dll.sources: removed one of ImportContext.cs
  343. 2004-07-08 Lluis Sanchez Gual <[email protected]>
  344. * System.Xml.dll.sources: Added new files:
  345. System.Xml.Serialization/IXmlSerializerImplementation.cs
  346. System.Xml.Serialization/IXmlTextParser.cs
  347. System.Xml.Serialization/ImportContext.cs
  348. System.Xml.Serialization/SchemaImporter.cs
  349. System.Xml.Serialization/SchemaImporterExtension.cs
  350. System.Xml.Serialization/SchemaImporterExtensionCollection.cs
  351. System.Xml.Serialization/XmlDeserializationEvents.cs
  352. System.Xml.Serialization/XmlSchemaProviderAttribute.cs
  353. System.Xml.Serialization/XmlSerializationGeneratedCode.cs
  354. System.Xml.Serialization/XmlSerializerAssemblyAttribute.cs
  355. System.Xml.Serialization/XmlSerializerFactory.cs
  356. System.Xml.Serialization/XmlSerializerVersionAttribute.cs
  357. 2004-07-06 Raja R Harinath <[email protected]>
  358. * System.Xml.dll.sources: List newly added NET 2.0 stubs.
  359. 2004-07-02 Raja R Harinath <[email protected]>
  360. * Makefile (LIBRARY_USE_INTERMEDIATE_FILE): Define.
  361. 2004-06-18 Atsushi Enomoto <[email protected]>
  362. * Mono.System.XML.csproj : now contains new NET_2_0 files.
  363. 2004-05-22 Atsushi Enomoto <[email protected]>
  364. * System.Xml.dll.sources : added/removed all NET_2_0 classes.
  365. 2004-05-19 Atsushi Enomoto <[email protected]>
  366. * System.Xml.dll.sources : Added System.Xml.Schema/CustomSerializer.cs
  367. 2004-03-31 Atsushi Enomoto <[email protected]>
  368. * System.Xml_test.dll.sources :
  369. Added new test files: nist_dom stuff, XmlSecureResolverTests.cs,
  370. XmlSchemaAssertion.cs, MsxslScriptTests.cs.
  371. 2004-03-24 Lluis Sanchez Gual <[email protected]>
  372. * System.Xml_test.dll.sources: Added
  373. System.Xml.Serialization/ComplexDataStructure.cs.
  374. 2004-02-24 Lluis Sanchez Gual <[email protected]>
  375. * System.Xml.dll.sources: Added SerializationSource.cs.
  376. 2004-02-22 Nick Drochak <[email protected]>
  377. * System.Xml_test.dll.sources : Removed XmlSchemaAssertion.cs. It does
  378. not seem to be in CVS. This was breaking the build on windows.
  379. 2004-02-17 Atsushi Enomoto <[email protected]>
  380. * System.Xml_test.dll.sources : Added XmlEntityTests.cs and
  381. XmlDocumentEventTests.cs.
  382. 2004-02-17 Atsushi Enomoto <[email protected]>
  383. * System.Xml.dll.sources : Added XslFunctions.cs.
  384. 2004-02-15 Ben Maurer <[email protected]>
  385. * DTDValidatingReader.cs: simple optimization. there is only
  386. one string, skip the string builder and just return the string.
  387. 2004-02-13 Atsushi Enomoto <[email protected]>
  388. * System.Xml.dll.sources : added DTMXPathDocumentWriter.cs.
  389. 2004-02-11 Atsushi Enomoto <[email protected]>
  390. * Mono.System.XML.csproj : updated.
  391. 2004-01-14 Atsushi Enomoto <[email protected]>
  392. * System.Xml.dll.sources : added SchemaDataValueType.cs
  393. 2004-01-07 Nick Drochak <[email protected]>
  394. * Makefile: Don't hide behind the /nowarns. Fix them.
  395. 2004-01-06 Atsushi Enomoto <[email protected]>
  396. * Makefile : use /noconfig like System.dll (to erase make test warning)
  397. 2003-12-18 Lluis Sanchez Gual <[email protected]>
  398. * System.Xml_test.dll.sources : Added test files
  399. System.Xml.Serialization/DeserializeTests.cs
  400. System.Xml.Serialization/XmlAttributesTests.cs
  401. System.Xml.Serialization/XmlReflectionImporterTests.cs
  402. System.Xml.Serialization/XmlSerializationWriterTests.cs
  403. 2003-12-17 David Sheldon <[email protected]>
  404. * System.Xml_test.dll.sources : Added XmlSchemaBuiltInDatatypeTests.cs
  405. 2003-12-15 Atsushi Enomoto <[email protected]>
  406. * System.Xml.dll.sources :
  407. removed UpdateEventHandler.cs and XmlUpdateEventArgs.cs to sqlxml.
  408. 2003-12-14 Tim Coleman <[email protected]>
  409. * System.Xml.dll.sources :
  410. Add files from new System.Xml.Query namespace.
  411. 2003-12-11 Atsushi Enomoto <[email protected]>
  412. * System.Xml.dll.sources : Added ScriptCompilerInfo.cs.
  413. 2003-12-08 Atsushi Enomoto <[email protected]>
  414. * System.Xml_test.dll.sources : patch by David Sheldon. Added XmlSchemaLengthFacetTests.cs.
  415. 2003-11-25 Tim Coleman <[email protected]>
  416. * System.Xml.dll.sources: added XmlSchemaBuiltInType.cs
  417. 2003-11-19 Atsushi Enomoto <[email protected]>
  418. * System.Xml.dll.sources: added XPathComparer.cs
  419. 2003-11-17 Atsushi Enomoto <[email protected]>
  420. * System.Xml.dll.sources: added some new .NET 1.2 stuff,
  421. and sorted some members of the list.
  422. 2003-11-13 Atsushi Enomoto <[email protected]>
  423. * System.Xml.dll.sources: added HtmlEmitter.cs
  424. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  425. * System.Xml.dll.sources: added System.Xml.Serialization/MapCodeGenerator.cs
  426. 2003-10-09 Atsushi Enomoto <[email protected]>
  427. * System.Xml.dll.sources: added DTDReader.cs.
  428. 2003-10-01 Atsushi Enomoto <[email protected]>
  429. * System.Xml.dll.sources: added DTMXPathNode.cs.
  430. 2003-09-30 Atsushi Enomoto <[email protected]>
  431. * System.Xml.dll.sources: added XsdIdentityPath.cs, XsdIdentityState.cs
  432. and XsdWildcard.cs.
  433. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  434. * System.Xml.dll.sources: added SerializationCodeGenerator.cs,
  435. SerializationCodeGeneratorConfiguration.cs.
  436. 2003-08-24 Atsushi Enomoto <[email protected]>
  437. * System.Xml.dll.sources : added XsdParticleValidationState.cs
  438. and XsdValidatingReader.cs.
  439. * System.Xml_test.dll.sources : added XsdParticleValidationTests.cs
  440. and XsdValidatingReaderTests.cs.
  441. 2003-08-18 Ben Maurer <[email protected]>
  442. * System.Xml.dll.sources: add files from Oleg.
  443. 2003-08-18 Ben Maurer <[email protected]>
  444. * System.Xml.dll.source: add System.Xml/HighWaterStack.cs.
  445. 2003-08-14 Atsushi Enomoto <[email protected]>
  446. * System.Xml.dll.sources: Added Mono.Xml.Xsl.Operation/XslComment.cs
  447. and Mono.Xml/IHasXmlSchemaInfo.cs
  448. 2003-08-11 Andreas Nahr <[email protected]>
  449. * System.Xml.dll.sources: Added Assembly/Locale.cs
  450. 2003-08-07 Atsushi Enomoto <[email protected]>
  451. * System.Xml.dll.sources: Add Mono.Xml/IHasXmlParserContext.cs.
  452. 2003-07-28 Ben Maurer <[email protected]>
  453. * System.Xml.dll.sources: Add new files
  454. 2003-07-21 Atsushi Enomoto <[email protected]>
  455. * Mono.System.XML.csproj : caught up with current library.
  456. 2003-07-18 Peter Williams <[email protected]>
  457. * Makefile (EXTRA_DISTFILES): NUnit.Prefs is not a
  458. distable file.
  459. 2003-07-14 Andreas Nahr <[email protected]>
  460. * list.unix: Added Assembly/AssemblyInfo.cs, Removed System.Xml.Serialization/AssemblyInfo.cs
  461. 2003-07-06 Atsushi Enomoto <[email protected]>
  462. * list.unix : added System.Xml.Schema/BuiltInDatatype.cs,
  463. System.Xml/DTDAutomata.cs, System.Xml/DTDValidatingReader.cs
  464. 2003-06-30 Atsushi Enomoto <[email protected]>
  465. * added Mono.Xml.XPath directory.
  466. * list.unix : added Mono.Xml.XPath's DTMXPathDocument.cs,
  467. DTMXPathDocumentBuilder.cs, DTMXPathNavigator.cs
  468. 2003-06-16 Lluis Sanchez Gual <[email protected]>
  469. * added System.Xml.Serialization/XmlTypeMapMemberNamespaces.cs
  470. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  471. * added System.Xml.Serialization/ReflectionHelper.cs to list.unix
  472. 2003-05-27 Joshua Tauberer <[email protected]>
  473. * XslTransform.cs: Initial support for extension objects.
  474. Known issues:
  475. Extension method signatures must match exactly to the
  476. types of parameters that the method is called with from the stylesheet.
  477. Node set parameters are converted to an ArrayList of strings.
  478. * makefule.gnu: Added -unsafe flag, required by the above stuff.
  479. * System.XML.build: Added -unsafe flag. Hope this is the right place.
  480. 2003-05-26 Lluis Sanchez Gual <[email protected]>
  481. * XmlSerializationWriterInterpreter.cs, XmlSerializationReaderInterpreter.cs
  482. XmlTypeMapElementInfo.cs, XmlTypeMapMember.cs, XmlTypeMapMemberAttribute.cs
  483. XmlTypeMapMemberElement.cs, XmlTypeMapping.cs: Added
  484. 2003-05-18 Atsushi Enomoto <[email protected]>
  485. * added XmlSecureResolver.cs to list.unix.
  486. 2003-05-15 Nick Drochak <[email protected]>
  487. * System.XML.build: exclude standalone tests from dll build.
  488. 2003-05-10 Atsushi Enomoto <[email protected]>
  489. * added TypeTableEntry.cs to list.unix.
  490. 2003-03-18 Atsushi Enomoto <[email protected]>
  491. * added XmlParserInput.cs and DTDObjectModel.cs to list.unix and
  492. Mono.System.Xml.csproj.
  493. 2003-02-16 Atsushi Enomoto <[email protected]>
  494. * added XmlInputStream.cs to list.unix and Mono.System.Xml.csproj.
  495. 2003-01-16 Atsushi Enomoto <[email protected]>
  496. * updated Mono.System.Xml.csproj. (patch by David B. Bitton)
  497. 2002-12-10 Jeroen Janssen <[email protected]>
  498. * updated .build file(s) to correctly contain required buildfile
  499. attribute for nant
  500. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  501. * makefile.gnu: added test target.
  502. 2002-08-22 Tim Coleman <[email protected]>
  503. * list.unix:
  504. Add System.Xml.Serialization/XmlCustomFormatter.cs
  505. 2002-08-19 Tim Coleman <[email protected]>
  506. * list.unix:
  507. Add System.Xml.Serialization/XmlSerializationWriter.cs
  508. 2002-07-24 Tim Coleman <[email protected]>
  509. * list.unix:
  510. Add some more classes to this build list.
  511. 2002-07-22 Tim Coleman <[email protected]>
  512. * list.unix:
  513. Add System.Xml.Serialization/SoapReflectionImporter.cs to build
  514. list.
  515. 2002-07-22 Tim Coleman <[email protected]>
  516. * list.unix: added new classes to build list.
  517. 2002-06-20 Ajay kumar Dwivedi <[email protected]>
  518. * System.Xml.Serialization: Added to build target
  519. 2002-05-24 Miguel de Icaza <[email protected]>
  520. * System.Xml.Serialization/XmlElementAttribute.cs: Add allowmultiple
  521. 2002-03-06 Jason Diamond <[email protected]>
  522. * System.XML.build: Disable warning CS0679: Other languages may permit the internal virtual member 'foo' to be overridden.
  523. 2002-02-23 Nick Drochak <[email protected]>
  524. * System.XML.build: Change dll name to System.Xml.dll from
  525. System.XML.dll (not easy to notice, btw)
  526. 2001-12-07 Nick Drochak <[email protected]>
  527. * ChangeLog: Add the change log to this directory
  528. * System.XML.build: Add dependancy on linux target to test target. Need to have the dll before we can test it, right? Plus is encourages other to try 'make test'.