ChangeLog 5.5 KB

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