ChangeLog 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  2. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  3. have a TypeConverter. Fixes bug #46397.
  4. 2003-07-14 Jerome Laban <[email protected]>
  5. * IComponent.cs: Removed duplicate Designer attribute.
  6. 2003-07-13 Andreas Nahr <[email protected]>
  7. * Component.cs: Implementation added
  8. * Container.cs: Implementation added
  9. * MarshalByValueComponent.cs: Implementation added
  10. * ReferenceConverter.cs: Small addition for future implementation
  11. 2003-07-10 Andreas Nahr <[email protected]>
  12. * TypeConverter.cs: Implemented missing methods
  13. * TypeDescriptor.cs: Redirections added
  14. 2003-07-05 Andreas Nahr <[email protected]>
  15. * EnumConverter.cs: Fixed signature
  16. * EventDescriptorCollection.cs: Fixed signature
  17. * InheritanceLevel.cs: Fixed enum values; little restyling
  18. * License.cs: Removed undefined member
  19. * LicenseManager.cs: Fixed signature, little implementation added
  20. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  21. * WarningException.cs: Removed wrong attribute
  22. * Win32Exception.cs: Added missing attribute
  23. 2003-07-02 Andreas Nahr <[email protected]>
  24. * AttributeCollection.cs: Fixed public members
  25. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  26. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  27. * CategoryAttribute.cs: Changed public fields to properties
  28. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  29. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  30. * PropertyDescriptorCollection.cs: Fixed public members
  31. * ReferenceConverter.cs: Implementation added
  32. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  33. * TypeDescriptor.cs: Implementations added
  34. 2003-07-02 Andreas Nahr <[email protected]>
  35. * ISite.cs: Fixed attributes, fixed header
  36. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  37. * WarningException.cs: Fixed attributes, formatting corrections
  38. * AttributeCollection.cs: Fixed attributes
  39. * DesignerSerializationVisibility.cs: Fixed attributes
  40. * TypeConverter.cs: Fixed attributes
  41. * MarshalByValueComponent.cs:
  42. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  43. * DescriptionAttribute.cs:
  44. * DesignerCategoryAttribute.cs:
  45. * DoubleConverter.cs:
  46. * EditorBrowsableAttribute.cs:
  47. * EventDescriptorCollection.cs:
  48. * PropertyChangedEventHandler.cs:
  49. * RefreshEventArgs.cs:
  50. * StringConverter.cs:
  51. * DefaultValueAttribute.cs: Reformatted following style guidelines
  52. * License.cs: Removed unused MonoTODOs
  53. * LicenseContext.cs: Implemented
  54. * LicenseException.cs: Implemented
  55. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  56. * LicenseUsageMode.cs: Fixed enum
  57. * RefreshProperties.cs: Fixed enum
  58. * LicFileLicenseProvider.cs: Implementation added
  59. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  60. * ExpandableObjectConverter.cs: Implemented
  61. * ComponentConverter.cs: Implemented
  62. 2003-06-23 Andreas Nahr <[email protected]>
  63. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  64. better Hashcode generation
  65. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  66. better Hashcode generation
  67. * LicenseContext.cs: Added and implemented missing property
  68. * ListBindableAttribute.cs: Simplified implementation, removed
  69. unneccessary data.
  70. * ReadOnlyAttribute.cs: Better Hashcode generation
  71. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  72. Equals check.
  73. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  74. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  75. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  76. * MarshalByValueComponent.cs:
  77. * IContainer.cs:
  78. * IComponent.cs: Added missing attribute(s)
  79. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  80. * AmbientValueAttribute.cs:
  81. * ArrayConverter.cs:
  82. * BaseNumberConverter.cs:
  83. * BindableAttribute.cs:
  84. * BooleanConverter.cs:
  85. * BrowsableAttribute.cs:
  86. * ByteConverter.cs:
  87. * CategoryAttribute.cs:
  88. * CharConverter.cs:
  89. * CollectionConverter.cs:
  90. * Component.cs:
  91. * ComponentCollection.cs:
  92. * ComponentEditor.cs:
  93. * Container.cs:
  94. * CultureInfoConverter.cs:
  95. * DateTimeConverter.cs:
  96. * DecimalConverter.cs:
  97. * DefaultEventAttribute.cs:
  98. * DefaultPropertyAttribute.cs:
  99. * DefaultValueAttribute.cs:
  100. * DescriptionAttribute.cs:
  101. * DesignOnlyAttribute.cs:
  102. * DesignTimeVisibleAttribute.cs:
  103. * DesignerCategoryAttribute.cs:
  104. * DesignerSerializationVisibilityAttribute.cs:
  105. * DoubleConverter.cs:
  106. * EditorBrowsableAttribute.cs:
  107. * EventDescriptor.cs:
  108. * EventDescriptorCollection.cs:
  109. * ExpandableObjectConverter.cs:
  110. * ExtenderProvidedPropertyAttribute.cs: New file.
  111. * GuidConverter.cs:
  112. * IComNativeDescriptorHandler.cs:
  113. * IComponent.cs:
  114. * ImmutableObjectAttribute.cs:
  115. * InheritanceAttribute.cs:
  116. * InheritanceLevel.cs:
  117. * InstallerTypeAttribute.cs:
  118. * Int16Converter.cs:
  119. * Int32Converter.cs:
  120. * Int64Converter.cs:
  121. * InvalidEnumArgumentException.cs:
  122. * LicenseProviderAttribute.cs:
  123. * LocalizableAttribute.cs:
  124. * MarshalByValueComponent.cs:
  125. * MemberDescriptor.cs:
  126. * MergablePropertyAttribute.cs:
  127. * NotifyParentPropertyAttribute.cs:
  128. * ParenthesizePropertyNameAttribute.cs:
  129. * PropertyDescriptor.cs:
  130. * PropertyDescriptorCollection.cs:
  131. * PropertyTabAttribute.cs:
  132. * ProvidePropertyAttribute.cs:
  133. * RecommendedAsConfigurableAttribute.cs:
  134. * RefreshPropertiesAttribute.cs:
  135. * SByteConverter.cs:
  136. * SingleConverter.cs:
  137. * TimeSpanConverter.cs:
  138. * ToolboxItemFilterAttribute.cs:
  139. * TypeConverter.cs:
  140. * TypeConverterAttribute.cs:
  141. * TypeDescriptor.cs:
  142. * TypeListConverter.cs:
  143. * UInt16Converter.cs:
  144. * UInt32Converter.cs:
  145. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  146. ([email protected]).
  147. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  148. * IExtenderProvider.cs: mono-stylized.
  149. * IComNativeDescriptorHandler.cs:
  150. * SyntaxCheck.cs: new files from Andreas Nahr.
  151. 2003-03-20 Dick Porter <[email protected]>
  152. * Win32Exception.cs: Made the fallback error more useful by
  153. reporting the error number
  154. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  155. * MarshalByValueComponent.cs: removed a monotodo.
  156. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  157. * Win32Exception.cs: added error code 2.
  158. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  159. * Win32Exception.cs: implemented GetObjectData ().
  160. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  161. * RunInstallerAttribute.cs: New file.
  162. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  163. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  164. 2003-02-05 Alan Tam <[email protected]>
  165. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  166. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  167. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  168. to bug #37380, mcs complained about this when compiling System.Data.
  169. 2003-01-08 Dick Porter <[email protected]>
  170. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  171. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  172. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  173. implements it. It's done for GetProperties and should be done for the
  174. rest of methods present in ICustomTypeDescriptor.
  175. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  176. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  177. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  178. * DefaultValueAttribute.cs: the attribute applies to All.
  179. 2002-11-19 Duncan Mak <[email protected]>
  180. * DesignerAttribute.cs:
  181. * EditorAttribute: Style changes. Gonzalo committed the build
  182. fixes before I did.
  183. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  184. * DesignerAttribute.cs:
  185. * EditorAttribute.cs: fixed the build.
  186. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  187. * EditorAttribute: implemented.
  188. * DesignerAttribute: implemented.
  189. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  190. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  191. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  192. * ListBindableAttribute.cs: implemented.
  193. 2002-11-02 Duncan Mak <[email protected]>
  194. * InvalidEnumArgumentException.cs: Added.
  195. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  196. * EventHandlerList.cs: fixed bug #29535.
  197. 2002-10-03 Dick Porter <[email protected]>
  198. * Win32Exception.cs: Added ETIMEDOUT
  199. 2002-09-30 Dick Porter <[email protected]>
  200. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  201. 2002-09-17 Asier Llano Palacios <[email protected]>
  202. * CancelEventArgs.cs
  203. * WarningException.cs
  204. * CancelEventHandler.cs
  205. * PropertyChangedEventHandler.cs
  206. * IExtenderProvider.cs: Implemented
  207. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  208. * Component.cs:
  209. * ComponentCollection.cs:
  210. * Container.cs:
  211. * MarshalByValueComponent.cs: IDisposable fixes.
  212. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  213. * BindableSupport.cs:
  214. * Component.cs:
  215. * EventDescriptorCollection.cs:
  216. * ITypeDescriptorContext.cs:
  217. * TypeConverter.cs:
  218. * TypeDescriptor.cs: class status based fixes.
  219. * StringConverter.cs: implemented a couple of methods.
  220. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  221. * EnumConverter.cs: new file.
  222. * TypeConverter.cs: implemented a few simple methods.
  223. * TypeDescriptor.cs:
  224. (GetConverter): initial support for converters of well-known types.
  225. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  226. * DerivedPropertyDescriptor.cs: New file. Internal class.
  227. * PropertyDescriptorCollection.cs: almost fully implemented.
  228. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  229. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  230. * Component.cs: don't die if Disposed is null.
  231. 2002-07-22 Tim Coleman <[email protected]>
  232. * RecommendedAsConfigurableAttribute.cs: new file added
  233. for System.Web.Services build
  234. 2002-07-22 Tim Coleman <[email protected]>
  235. * ExpandableObjectConverter.cs: Fix error with constructor
  236. 2002-07-22 Tim Coleman <[email protected]>
  237. * TypeConverter.cs: Fixed bad stubb function
  238. GetConvertToException ()
  239. 2002-07-22 Tim Coleman <[email protected]>
  240. * ComponentCollection.cs: Added reference to
  241. ReadOnlyCollectionBase to make sure
  242. that we inherit the appropriate methods.
  243. Not sure why the Dispose() method is
  244. required, but left for now.
  245. 2002-07-22 Tim Coleman <[email protected]>
  246. * TypeConverter.cs: Added new stubbs
  247. * BindableAttribute.cs: Added
  248. * BindableSupport.cs: Added
  249. * NotifyParentPropertyAttribute.cs: Added
  250. * ExpandableObjectConverter.cs: Added
  251. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  252. * MemberDescriptor.cs: implemented Attributes and Category.
  253. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  254. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  255. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  256. fixed value for Yes.
  257. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  258. * TypeConverter.cs: added SimplePropertyDescriptor class.
  259. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  260. * ToolboxItemAttribute.cs: New file.
  261. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  262. * DefaultEventAttribute.cs: new file.
  263. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  264. * AttributeCollection.cs: fixlet.
  265. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  266. * AttributeCollection.cs: finished implementation.
  267. * TypeDescriptor.cs: implemented GetAttributes (object).
  268. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  269. * AttributeCollection.cs: initialize member variables.
  270. * RefreshEventArgs.cs: implemented.
  271. * RefreshEventHandler.cs: New file.
  272. * TypeDescriptor.cs: fully stubbed out the remaining method.
  273. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  274. * DefaultPropertyAttribute.cs: New file.
  275. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  276. * TypeConverter.cs: flushed local changes.
  277. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  278. * StringConverter.cs: stubbed out.
  279. * TypeConverter.cs: stubbed the rest out and added some implementation.
  280. Five errors left when compiling System.Web in linux.
  281. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  282. * TypeConverterAttribute.cs: attribute used by
  283. TypeDescriptor.Getconverter ().
  284. * TypeDescriptor.cs: implemented GetConverter in the right way.
  285. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  286. * TypeConverter.cs:
  287. * ITypeDescriptorContext.cs:
  288. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  289. which uses ColorConverter.
  290. 2002-05-12 Daniel Morgan <[email protected]>
  291. * IComponent.cs
  292. * ISite.cs: added using System
  293. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  294. to // TODOs and added using System. The throwing of the exceptions prevented
  295. System.Data from running.
  296. 2002-05-10 Rodrigo Moya <[email protected]>
  297. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  298. not this[index], which issues an 'ambigous call' error on Linux.
  299. 2002-05-07 Rodrigo Moya <[email protected]>
  300. * EventDescriptor.cs: added missing constructors.
  301. * EventDescriptorCollection.cs: fixed interface methods implementation
  302. * IDataErrorInfo.cs:
  303. * IEditableObject.cs: new interfaces.
  304. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  305. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  306. it compile.
  307. 2002-05-03 Rodrigo Moya <[email protected]>
  308. * AttributeCollection.cs:
  309. * EventDescriptor.cs:
  310. * EventDescriptorCollection.cs:
  311. * ICustomTypeDescriptor.cs: new files.
  312. 2002-05-01 Duncan Mak <[email protected]>
  313. * ListChangedType.cs:
  314. * ListChangedEventHandler.cs:
  315. * ListChangedEventArgs.cs: Added to fix build.
  316. 2002-05-01 Miguel de Icaza <[email protected]>
  317. * PropertyDescriptorCollection.cs: Added the IList explicit
  318. implementation methods.
  319. lots of bug fixes to get the build to compile again.
  320. 2002-05-01 Duncan Mak <[email protected]>
  321. * ListSortDirection.cs: EnumChecked.
  322. 2002-05-01 Rodrigo Moya <[email protected]>
  323. * ListSortDirection.cs: new enumeration. Please, somebody run
  324. EnumCheck on it, as I don't have a windows machine.
  325. * PropertyDescriptorCollection.cs: new class.
  326. * ITypedList.cs:
  327. * IBindingList.cs: new interfaces.
  328. 2002-04-28 Duncan Mak <[email protected]>
  329. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  330. implementation. Please use EnumCheck!
  331. 2002-04-28 Rodrigo Moya <[email protected]>
  332. * CollectionChangeAction.cs: new enumeration.
  333. * CategoryAttribute.cs: moved the 'return' keyword to the
  334. end of the method, to avoid compilation errors on Linux for
  335. all CategoryAttribute properties.
  336. 2002-04-28 Rodrigo Moya <[email protected]>
  337. * IListSource.cs:
  338. * ISupportInitialize.cs:
  339. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  340. compilation.
  341. * PropertyChangedEventArgs.cs:
  342. * CollectionChangeEventHandler.cs:
  343. * CollectionChangeEventArgs.cs: implemented.
  344. 2002-04-28 Lawrence Pit <[email protected]>
  345. * Added error code 11001 to Win32Exception, used by Dns.c
  346. 2002-04-04 Dick Porter <[email protected]>
  347. * ISynchronizeInvoke.cs: Needed by Process
  348. 2002-01-23 Dick Porter <[email protected]>
  349. * Win32Exception.cs: implement, with support for looking up
  350. runtime errors.
  351. 2002-01-17 Miguel de Icaza <[email protected]>
  352. * Win32Exception.cs: Add.
  353. 2002-01-05 Ravi Pratap <[email protected]>
  354. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  355. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  356. 2001-10-27 Miguel de Icaza <[email protected]>
  357. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  358. * DesignerSerializationVisibility.cs: New enumeration.
  359. * LocalizableAttribute.cs: Implemented.
  360. * BrowsableAttribute.cs: Implemented.
  361. * DesignOnlyAttribute.cs: Implemented.
  362. * DescriptionAttribute.cs: Implement.
  363. * MemberDescriptor.cs: Implemented.
  364. * CategoryAttribute.cs: implemented.
  365. 2001-08-21 Nick Drochak <[email protected]>
  366. * Component.cs: Eliminated compile errors by removing redundant fields and
  367. using the ISite member instead. Also raised the Disposed event, but not
  368. sure if it's correct now. Look for FIXME in the comments.
  369. 2001-08-02 Miguel de Icaza <[email protected]>
  370. * EventHandlerList.cs: New file.
  371. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  372. ComponentCollection.cs, ISite.cs: New classes