ChangeLog 6.3 KB

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