ChangeLog 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. 2002-11-02 Duncan Mak <[email protected]>
  2. * InvalidEnumArgumentException.cs: Added.
  3. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  4. * EventHandlerList.cs: fixed bug #29535.
  5. 2002-10-03 Dick Porter <[email protected]>
  6. * Win32Exception.cs: Added ETIMEDOUT
  7. 2002-09-30 Dick Porter <[email protected]>
  8. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  9. 2002-09-17 Asier Llano Palacios <[email protected]>
  10. * CancelEventArgs.cs
  11. * WarningException.cs
  12. * CancelEventHandler.cs
  13. * PropertyChangedEventHandler.cs
  14. * IExtenderProvider.cs: Implemented
  15. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  16. * Component.cs:
  17. * ComponentCollection.cs:
  18. * Container.cs:
  19. * MarshalByValueComponent.cs: IDisposable fixes.
  20. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  21. * BindableSupport.cs:
  22. * Component.cs:
  23. * EventDescriptorCollection.cs:
  24. * ITypeDescriptorContext.cs:
  25. * TypeConverter.cs:
  26. * TypeDescriptor.cs: class status based fixes.
  27. * StringConverter.cs: implemented a couple of methods.
  28. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  29. * EnumConverter.cs: new file.
  30. * TypeConverter.cs: implemented a few simple methods.
  31. * TypeDescriptor.cs:
  32. (GetConverter): initial support for converters of well-known types.
  33. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  34. * DerivedPropertyDescriptor.cs: New file. Internal class.
  35. * PropertyDescriptorCollection.cs: almost fully implemented.
  36. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  37. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  38. * Component.cs: don't die if Disposed is null.
  39. 2002-07-22 Tim Coleman <[email protected]>
  40. * RecommendedAsConfigurableAttribute.cs: new file added
  41. for System.Web.Services build
  42. 2002-07-22 Tim Coleman <[email protected]>
  43. * ExpandableObjectConverter.cs: Fix error with constructor
  44. 2002-07-22 Tim Coleman <[email protected]>
  45. * TypeConverter.cs: Fixed bad stubb function
  46. GetConvertToException ()
  47. 2002-07-22 Tim Coleman <[email protected]>
  48. * ComponentCollection.cs: Added reference to
  49. ReadOnlyCollectionBase to make sure
  50. that we inherit the appropriate methods.
  51. Not sure why the Dispose() method is
  52. required, but left for now.
  53. 2002-07-22 Tim Coleman <[email protected]>
  54. * TypeConverter.cs: Added new stubbs
  55. * BindableAttribute.cs: Added
  56. * BindableSupport.cs: Added
  57. * NotifyParentPropertyAttribute.cs: Added
  58. * ExpandableObjectConverter.cs: Added
  59. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  60. * MemberDescriptor.cs: implemented Attributes and Category.
  61. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  62. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  63. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  64. fixed value for Yes.
  65. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  66. * TypeConverter.cs: added SimplePropertyDescriptor class.
  67. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  68. * ToolboxItemAttribute.cs: New file.
  69. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  70. * DefaultEventAttribute.cs: new file.
  71. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  72. * AttributeCollection.cs: fixlet.
  73. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  74. * AttributeCollection.cs: finished implementation.
  75. * TypeDescriptor.cs: implemented GetAttributes (object).
  76. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  77. * AttributeCollection.cs: initialize member variables.
  78. * RefreshEventArgs.cs: implemented.
  79. * RefreshEventHandler.cs: New file.
  80. * TypeDescriptor.cs: fully stubbed out the remaining method.
  81. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  82. * DefaultPropertyAttribute.cs: New file.
  83. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  84. * TypeConverter.cs: flushed local changes.
  85. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  86. * StringConverter.cs: stubbed out.
  87. * TypeConverter.cs: stubbed the rest out and added some implementation.
  88. Five errors left when compiling System.Web in linux.
  89. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  90. * TypeConverterAttribute.cs: attribute used by
  91. TypeDescriptor.Getconverter ().
  92. * TypeDescriptor.cs: implemented GetConverter in the right way.
  93. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  94. * TypeConverter.cs:
  95. * ITypeDescriptorContext.cs:
  96. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  97. which uses ColorConverter.
  98. 2002-05-12 Daniel Morgan <[email protected]>
  99. * IComponent.cs
  100. * ISite.cs: added using System
  101. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  102. to // TODOs and added using System. The throwing of the exceptions prevented
  103. System.Data from running.
  104. 2002-05-10 Rodrigo Moya <[email protected]>
  105. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  106. not this[index], which issues an 'ambigous call' error on Linux.
  107. 2002-05-07 Rodrigo Moya <[email protected]>
  108. * EventDescriptor.cs: added missing constructors.
  109. * EventDescriptorCollection.cs: fixed interface methods implementation
  110. * IDataErrorInfo.cs:
  111. * IEditableObject.cs: new interfaces.
  112. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  113. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  114. it compile.
  115. 2002-05-03 Rodrigo Moya <[email protected]>
  116. * AttributeCollection.cs:
  117. * EventDescriptor.cs:
  118. * EventDescriptorCollection.cs:
  119. * ICustomTypeDescriptor.cs: new files.
  120. 2002-05-01 Duncan Mak <[email protected]>
  121. * ListChangedType.cs:
  122. * ListChangedEventHandler.cs:
  123. * ListChangedEventArgs.cs: Added to fix build.
  124. 2002-05-01 Miguel de Icaza <[email protected]>
  125. * PropertyDescriptorCollection.cs: Added the IList explicit
  126. implementation methods.
  127. lots of bug fixes to get the build to compile again.
  128. 2002-05-01 Duncan Mak <[email protected]>
  129. * ListSortDirection.cs: EnumChecked.
  130. 2002-05-01 Rodrigo Moya <[email protected]>
  131. * ListSortDirection.cs: new enumeration. Please, somebody run
  132. EnumCheck on it, as I don't have a windows machine.
  133. * PropertyDescriptorCollection.cs: new class.
  134. * ITypedList.cs:
  135. * IBindingList.cs: new interfaces.
  136. 2002-04-28 Duncan Mak <[email protected]>
  137. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  138. implementation. Please use EnumCheck!
  139. 2002-04-28 Rodrigo Moya <[email protected]>
  140. * CollectionChangeAction.cs: new enumeration.
  141. * CategoryAttribute.cs: moved the 'return' keyword to the
  142. end of the method, to avoid compilation errors on Linux for
  143. all CategoryAttribute properties.
  144. 2002-04-28 Rodrigo Moya <[email protected]>
  145. * IListSource.cs:
  146. * ISupportInitialize.cs:
  147. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  148. compilation.
  149. * PropertyChangedEventArgs.cs:
  150. * CollectionChangeEventHandler.cs:
  151. * CollectionChangeEventArgs.cs: implemented.
  152. 2002-04-28 Lawrence Pit <[email protected]>
  153. * Added error code 11001 to Win32Exception, used by Dns.c
  154. 2002-04-04 Dick Porter <[email protected]>
  155. * ISynchronizeInvoke.cs: Needed by Process
  156. 2002-01-23 Dick Porter <[email protected]>
  157. * Win32Exception.cs: implement, with support for looking up
  158. runtime errors.
  159. 2002-01-17 Miguel de Icaza <[email protected]>
  160. * Win32Exception.cs: Add.
  161. 2002-01-05 Ravi Pratap <[email protected]>
  162. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  163. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  164. 2001-10-27 Miguel de Icaza <[email protected]>
  165. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  166. * DesignerSerializationVisibility.cs: New enumeration.
  167. * LocalizableAttribute.cs: Implemented.
  168. * BrowsableAttribute.cs: Implemented.
  169. * DesignOnlyAttribute.cs: Implemented.
  170. * DescriptionAttribute.cs: Implement.
  171. * MemberDescriptor.cs: Implemented.
  172. * CategoryAttribute.cs: implemented.
  173. 2001-08-21 Nick Drochak <[email protected]>
  174. * Component.cs: Eliminated compile errors by removing redundant fields and
  175. using the ISite member instead. Also raised the Disposed event, but not
  176. sure if it's correct now. Look for FIXME in the comments.
  177. 2001-08-02 Miguel de Icaza <[email protected]>
  178. * EventHandlerList.cs: New file.
  179. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  180. ComponentCollection.cs, ISite.cs: New classes