ChangeLog 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. 2010-04-28 Marek Habersack <[email protected]>
  2. * Makefile (OTHER_LIB_MCS_FLAGS): added a reference to
  3. System.Web.ApplicationServices in the 4.0 profile.
  4. 2009-12-15 Marek Habersack <[email protected]>
  5. * System.Web.Extensions_test.dll.sources: added
  6. System.Web.UI.WebControls/ListViewPagedDataSourceTest.cs
  7. 2009-10-08 Atsushi Enomoto <[email protected]>
  8. * Makefile : add -r:System.ServiceModel.
  9. * System.Web.Extensions_test.dll.sources : add ProxyGeneratorTest.cs.
  10. 2009-07-06 Raja R Harinath <[email protected]>
  11. * Makefile (TEST_MCS_FLAGS): Reference SystemWebTestShim.
  12. 2009-05-26 Marek Habersack <[email protected]>
  13. * Test/System.Web.UI/ScriptReferenceBaseTest.cs: added tests for
  14. ReplaceExtension
  15. * System.Web.Extensions_test.dll.sources: added
  16. System.Web.UI/ScriptReferenceBaseTest.cs
  17. * System.Web.Extensions.dll.sources: added
  18. System.Web.UI/ScriptReferenceBase.cs
  19. 2008-11-28 Atsushi Enomoto <[email protected]>
  20. * Makefile : add NUNIT_RESOURCE_FILES to dist.
  21. 2008-11-20 Marek Habersack <[email protected]>
  22. * System.Web.Extensions.dll.sources: added
  23. System.Web.ClientServices and System.Web.ClientServices.Providers
  24. Sorted contents for easier reading and modification.
  25. 2008-11-19 Marek Habersack <[email protected]>
  26. * Makefile (NUNIT_RESOURCE_FILES): added
  27. * System.Web.Extensions_test.dll.sources: added the system.web
  28. Mainsoft test suite files.
  29. Added new test files.
  30. 2008-11-18 Marek Habersack <[email protected]>
  31. * System.Web.Extensions.dll.sources: added
  32. ./System.Web.UI.WebControls/ListViewTableCell.cs
  33. Added ./System.Web.Query.Dynamic/DynamicClass.cs and
  34. ./System.Web.Query.Dynamic/ParseException.cs
  35. Added ./System.Web.UI.WebControls/ListViewContainer.cs
  36. 2008-11-15 Marek Habersack <[email protected]>
  37. * System.Web.Extensions.dll.sources: added
  38. System.Web.UI.WebControls/DataPagerCommandEventArgs.cs
  39. 2008-10-30 Marek Habersack <[email protected]>
  40. * System.Web.Extensions.dll.sources: added
  41. ./System.Web.UI.WebControls/TemplatePagerField.cs
  42. * System.Web.Extensions_test.dll.sources: added
  43. System.Web.UI.WebControls/EventRecorder.cs,
  44. System.Web.UI.WebControls/ListViewTest.cs,
  45. System.Web.UI.WebControls/DataPagerFieldCollectionTest.cs
  46. 2008-10-17 Jonathan Pryor <[email protected]>
  47. * Test/Makefile: Add doc-update target support.
  48. 2008-10-08 Atsushi Enomoto <[email protected]>
  49. * Makefile: add reference to S.D.Linq.
  50. 2008-09-30 Marek Habersack <[email protected]>
  51. * Makefile (LIB_MCS_FLAGS): added -define:NET_3_5 as the 3.5 parts
  52. of the assembly are now built as part of the 2.0 profile.
  53. 2008-09-19 Marek Habersack <[email protected]>
  54. * System.Web.Extensions.dll.sources: removed most of the
  55. Newtonsoft JSON code, leaving only ReflectionUtils and
  56. JavaScriptUtils.
  57. 2008-09-18 Marek Safar <[email protected]>
  58. * Makefile: Add System.Core reference.
  59. 2008-09-18 Atsushi Enomoto <[email protected]>
  60. * System.Web.Extensions.dll.sources: added LinqDataSource stuff.
  61. 2008-09-17 Marek Habersack <[email protected]>
  62. * System.Web.Extensions.dll.sources: added
  63. System.Web.Script.Serialization/Json.cs,
  64. System.Web.Script.Serialization/JsonSerializer.cs and
  65. System.Web.Script.Serialization/StringBuilderExtensions.cs
  66. * System.Web.Script.Serialization/Json.cs: helper class to invoke
  67. de/serializer.
  68. * System.Web.Script.Serialization/JsonSerializer.cs: new
  69. implementation of Json serializer that is free of issues found in
  70. the old one (and faster + simpler).
  71. * System.Web.Script.Serialization/JavaScriptSerializer.cs: staging
  72. transition to the new Json (de)serializer. For now deserialization
  73. is done using the old JSON code, serialization uses the new
  74. serializer.
  75. * System.Web.Script.Serialization/StringBuilderExtensions.cs: a
  76. set of simple StringBuilder extension methods which check the size
  77. of the builder against some value and throw an exception if the
  78. value is exceeded.
  79. 2008-09-13 Atsushi Enomoto <[email protected]>
  80. * System.Web.Extensions.dll.sources :
  81. added sys.web.DynamicData types.
  82. 2008-08-30 Marek Habersack <[email protected]>
  83. * System.Web.Script.Serialization/JavaScriptSerializer.cs: if the
  84. target type is an IDictionary with value type of System.Object,
  85. make sure to NOT convert any values.
  86. Any values descendant from JavaScriptSerializer.LazyDictionary are
  87. converted to Dictionary <string, object>
  88. 2008-08-28 Marek Habersack <[email protected]>
  89. * System.Web.Script.Services/LogicalTypeInfo.cs: Invoke does not
  90. convert context to System.Object.
  91. If context is descendant from JavaScriptSerializer.LazyDictionary
  92. it is converted to a regular Dictionary <string, object> before
  93. passing to the service method.
  94. * System.Web.Script.Serialization/JavaScriptSerializer.cs:
  95. correctly handle members which have an interface as their return
  96. type - several known interfaces are converted to implementing
  97. types.
  98. 2008-08-22 Marek Habersack <[email protected]>
  99. * Test/System.Web.Script.Serialization/JavaScriptSerializerTest.cs:
  100. marked several of the JavaScriptSerializer tests as not
  101. working. Experiments show that the tests are invalid as they relay
  102. on behavior which is different to .NET's.
  103. * System.Web.Script.Serialization/JavaScriptSerializer.cs:
  104. GetConverter now checks whether the requested type is descendant
  105. from the type supported by teh converter.
  106. 2008-06-11 Marek Habersack <[email protected]>
  107. * Test/System.Web.UI/ScriptBehaviorDescriptorTest.cs,
  108. Test/System.Web.UI/ScriptComponentDescriptorTest.cs,
  109. Test/System.Web.UI/ScriptControlDescriptorTest.cs: disabled
  110. tests relying on the Dictionary keys order.
  111. 2008-05-07 Marek Habersack <[email protected]>
  112. * ChangeLog: added and moved entries from ../ChaneLog to here.
  113. * Makefile (RESOURCE_FILES): partially revert r102022 - always use
  114. the 3.5.0.0 script library. Fixes bug #384580
  115. 2008-04-29 Marek Habersack <[email protected]>
  116. * System.Web.Extensions/Makefile (EXTRA_DISTFILES): include all
  117. the Microsoft AJAX library scripts in the dist tarball.
  118. 2008-04-28 Marek Habersack <[email protected]>
  119. * System.Web.Extensions/Makefile (RESOURCE_FILES): for the 2.0
  120. profile use the 1.0.61025.0 scripts.