ChangeLog 7.8 KB

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