ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. 2005-01-12 Gonzalo Paniagua Javier <[email protected]>
  2. * BaseNumberConverter.cs: when the culture we get is null, set it to the
  3. default. Fixes bug #67033. Thanks to Sander Rijken.
  4. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  5. * BindingDirection.cs: New enum.
  6. 2004-12-09 Dick Porter <[email protected]>
  7. * Win32Exception.cs: Add another socket error, fix the message of
  8. some old ones.
  9. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  10. * AttributeCollection.cs: support attributes inherited from the one
  11. we want. Fixes bug #67088. Thanks to Sander Rijken.
  12. 2004-08-14 Jackson Harper <[email protected]>
  13. * Container.cs: Release all when we are supposed to release all.
  14. 2004-07-14 Atsushi Enomoto <[email protected]>
  15. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  16. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  17. * AsyncCompletedEventArgs.cs: Implemented.
  18. * AsyncCompletedEventHandler.cs: Implemented.
  19. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  20. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  21. remove it from the table.
  22. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  23. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  24. DesignOnlyAttribute.cs: fix targets for attributes.
  25. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  26. * BooleanConverter.cs: Improved ConverFrom method.
  27. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  28. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  29. This fixes bug #57655.
  30. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  31. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  32. all the attributes, not just DesignerAttribute instances. nGallery
  33. complained.
  34. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  35. * BooleanConverter.cs: GetStandardValues must return an array of
  36. booleans, not an array of strings.
  37. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  38. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  39. through GetPropertyInfo(). Take into account that a component may not
  40. be sited or not have some services.
  41. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  42. property. Other minor fixes.
  43. 2004-04-16 Joerg Rosenkranz <[email protected]>
  44. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  45. This fixes #57137.
  46. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  47. * AttributeCollection.cs: Added new internal constructor.
  48. * DesignerAttribute.cs: Fixed property TypeId.
  49. * EventDescriptorCollection.cs: Added internal constructor. Added new
  50. method Filter that removes events that do not have the specified
  51. attributes.
  52. * MemberDescriptor.cs: Minor fixes.
  53. * PropertyDescriptor.cs: Implemented some missing methods.
  54. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  55. Sort methods.
  56. * ReferenceConverter.cs: Removed some TODOs.
  57. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  58. * TypeDescriptor.cs: Implemented most of missing methods.
  59. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  60. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  61. Removed unneded TODOs.
  62. * ComponentResourceManager.cs: Implemented ApplyResources.
  63. * EventDescriptorCollection.cs: Implemented several missing methods.
  64. * LicFileLicenseProvider.cs: Implemented.
  65. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  66. the creation of the Attribute list.
  67. * TypeConverter.cs: Use null as default value for attribute array parameter.
  68. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  69. * Win32Exception.cs: added 10024 (WSAEMFILE).
  70. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  71. * AttributeCollection.cs: Don't try to create a default attribute if the
  72. attribute type does not have a default constructor. Fix by Jon Wagner.
  73. This fixes #53898.
  74. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  75. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  76. message as ERROR_FILE_NOT_FOUND.
  77. 2004-03-17 Ivan Hamilton <[email protected]>
  78. * LicenseManager.cs: Completed TODO.
  79. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  80. * Win32Exception.cs: use a switch instead of creating a hashtable when
  81. mapping from an error code to a message.
  82. 2003-11-22 Miguel de Icaza <[email protected]>
  83. * PropertyDescriptorCollection.cs (Insert): Another one.
  84. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  85. 2003-11-13 Andreas Nahr <[email protected]>
  86. * IComponent.cs: Added missing attribute
  87. 2003-11-12 Andreas Nahr <[email protected]>
  88. * ComponentResourceManager.cs: Added and partially implemented
  89. 2003-09-13 Duncan Mak <[email protected]>
  90. Patch from Jörg Rosenkranz <[email protected]>, this fixes the
  91. bugs described in bug #48351.
  92. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  93. multiple values. This is done in Enum.Parse already.
  94. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  95. types because EnumConverter does not have a default
  96. constructor. Fixed by changing the special handling for
  97. enumeration types.
  98. 2003-08-31 Jerome Laban <[email protected]>
  99. * Container.cs: A site without name cannot be duplicate.
  100. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  101. * Win32Exception.cs: added message for 10054.
  102. 2003-07-17 Andreas Nahr <[email protected]>
  103. * CategoryAttribute.cs: Added localization support
  104. 2003-07-17 Andreas Nahr <[email protected]>
  105. * IComponent.cs:
  106. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  107. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  108. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  109. have a TypeConverter. Fixes bug #46397.
  110. 2003-07-14 Jerome Laban <[email protected]>
  111. * IComponent.cs: Removed duplicate Designer attribute.
  112. 2003-07-13 Andreas Nahr <[email protected]>
  113. * Component.cs: Implementation added
  114. * Container.cs: Implementation added
  115. * MarshalByValueComponent.cs: Implementation added
  116. * ReferenceConverter.cs: Small addition for future implementation
  117. 2003-07-10 Andreas Nahr <[email protected]>
  118. * TypeConverter.cs: Implemented missing methods
  119. * TypeDescriptor.cs: Redirections added
  120. 2003-07-05 Andreas Nahr <[email protected]>
  121. * EnumConverter.cs: Fixed signature
  122. * EventDescriptorCollection.cs: Fixed signature
  123. * InheritanceLevel.cs: Fixed enum values; little restyling
  124. * License.cs: Removed undefined member
  125. * LicenseManager.cs: Fixed signature, little implementation added
  126. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  127. * WarningException.cs: Removed wrong attribute
  128. * Win32Exception.cs: Added missing attribute
  129. 2003-07-02 Andreas Nahr <[email protected]>
  130. * AttributeCollection.cs: Fixed public members
  131. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  132. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  133. * CategoryAttribute.cs: Changed public fields to properties
  134. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  135. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  136. * PropertyDescriptorCollection.cs: Fixed public members
  137. * ReferenceConverter.cs: Implementation added
  138. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  139. * TypeDescriptor.cs: Implementations added
  140. 2003-07-02 Andreas Nahr <[email protected]>
  141. * ISite.cs: Fixed attributes, fixed header
  142. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  143. * WarningException.cs: Fixed attributes, formatting corrections
  144. * AttributeCollection.cs: Fixed attributes
  145. * DesignerSerializationVisibility.cs: Fixed attributes
  146. * TypeConverter.cs: Fixed attributes
  147. * MarshalByValueComponent.cs:
  148. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  149. * DescriptionAttribute.cs:
  150. * DesignerCategoryAttribute.cs:
  151. * DoubleConverter.cs:
  152. * EditorBrowsableAttribute.cs:
  153. * EventDescriptorCollection.cs:
  154. * PropertyChangedEventHandler.cs:
  155. * RefreshEventArgs.cs:
  156. * StringConverter.cs:
  157. * DefaultValueAttribute.cs: Reformatted following style guidelines
  158. * License.cs: Removed unused MonoTODOs
  159. * LicenseContext.cs: Implemented
  160. * LicenseException.cs: Implemented
  161. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  162. * LicenseUsageMode.cs: Fixed enum
  163. * RefreshProperties.cs: Fixed enum
  164. * LicFileLicenseProvider.cs: Implementation added
  165. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  166. * ExpandableObjectConverter.cs: Implemented
  167. * ComponentConverter.cs: Implemented
  168. 2003-06-23 Andreas Nahr <[email protected]>
  169. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  170. better Hashcode generation
  171. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  172. better Hashcode generation
  173. * LicenseContext.cs: Added and implemented missing property
  174. * ListBindableAttribute.cs: Simplified implementation, removed
  175. unneccessary data.
  176. * ReadOnlyAttribute.cs: Better Hashcode generation
  177. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  178. Equals check.
  179. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  180. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  181. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  182. * MarshalByValueComponent.cs:
  183. * IContainer.cs:
  184. * IComponent.cs: Added missing attribute(s)
  185. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  186. * AmbientValueAttribute.cs:
  187. * ArrayConverter.cs:
  188. * BaseNumberConverter.cs:
  189. * BindableAttribute.cs:
  190. * BooleanConverter.cs:
  191. * BrowsableAttribute.cs:
  192. * ByteConverter.cs:
  193. * CategoryAttribute.cs:
  194. * CharConverter.cs:
  195. * CollectionConverter.cs:
  196. * Component.cs:
  197. * ComponentCollection.cs:
  198. * ComponentEditor.cs:
  199. * Container.cs:
  200. * CultureInfoConverter.cs:
  201. * DateTimeConverter.cs:
  202. * DecimalConverter.cs:
  203. * DefaultEventAttribute.cs:
  204. * DefaultPropertyAttribute.cs:
  205. * DefaultValueAttribute.cs:
  206. * DescriptionAttribute.cs:
  207. * DesignOnlyAttribute.cs:
  208. * DesignTimeVisibleAttribute.cs:
  209. * DesignerCategoryAttribute.cs:
  210. * DesignerSerializationVisibilityAttribute.cs:
  211. * DoubleConverter.cs:
  212. * EditorBrowsableAttribute.cs:
  213. * EventDescriptor.cs:
  214. * EventDescriptorCollection.cs:
  215. * ExpandableObjectConverter.cs:
  216. * ExtenderProvidedPropertyAttribute.cs: New file.
  217. * GuidConverter.cs:
  218. * IComNativeDescriptorHandler.cs:
  219. * IComponent.cs:
  220. * ImmutableObjectAttribute.cs:
  221. * InheritanceAttribute.cs:
  222. * InheritanceLevel.cs:
  223. * InstallerTypeAttribute.cs:
  224. * Int16Converter.cs:
  225. * Int32Converter.cs:
  226. * Int64Converter.cs:
  227. * InvalidEnumArgumentException.cs:
  228. * LicenseProviderAttribute.cs:
  229. * LocalizableAttribute.cs:
  230. * MarshalByValueComponent.cs:
  231. * MemberDescriptor.cs:
  232. * MergablePropertyAttribute.cs:
  233. * NotifyParentPropertyAttribute.cs:
  234. * ParenthesizePropertyNameAttribute.cs:
  235. * PropertyDescriptor.cs:
  236. * PropertyDescriptorCollection.cs:
  237. * PropertyTabAttribute.cs:
  238. * ProvidePropertyAttribute.cs:
  239. * RecommendedAsConfigurableAttribute.cs:
  240. * RefreshPropertiesAttribute.cs:
  241. * SByteConverter.cs:
  242. * SingleConverter.cs:
  243. * TimeSpanConverter.cs:
  244. * ToolboxItemFilterAttribute.cs:
  245. * TypeConverter.cs:
  246. * TypeConverterAttribute.cs:
  247. * TypeDescriptor.cs:
  248. * TypeListConverter.cs:
  249. * UInt16Converter.cs:
  250. * UInt32Converter.cs:
  251. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  252. ([email protected]).
  253. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  254. * IExtenderProvider.cs: mono-stylized.
  255. * IComNativeDescriptorHandler.cs:
  256. * SyntaxCheck.cs: new files from Andreas Nahr.
  257. 2003-03-20 Dick Porter <[email protected]>
  258. * Win32Exception.cs: Made the fallback error more useful by
  259. reporting the error number
  260. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  261. * MarshalByValueComponent.cs: removed a monotodo.
  262. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  263. * Win32Exception.cs: added error code 2.
  264. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  265. * Win32Exception.cs: implemented GetObjectData ().
  266. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  267. * RunInstallerAttribute.cs: New file.
  268. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  269. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  270. 2003-02-05 Alan Tam <[email protected]>
  271. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  272. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  273. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  274. to bug #37380, mcs complained about this when compiling System.Data.
  275. 2003-01-08 Dick Porter <[email protected]>
  276. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  277. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  278. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  279. implements it. It's done for GetProperties and should be done for the
  280. rest of methods present in ICustomTypeDescriptor.
  281. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  282. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  283. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  284. * DefaultValueAttribute.cs: the attribute applies to All.
  285. 2002-11-19 Duncan Mak <[email protected]>
  286. * DesignerAttribute.cs:
  287. * EditorAttribute: Style changes. Gonzalo committed the build
  288. fixes before I did.
  289. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  290. * DesignerAttribute.cs:
  291. * EditorAttribute.cs: fixed the build.
  292. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  293. * EditorAttribute: implemented.
  294. * DesignerAttribute: implemented.
  295. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  296. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  297. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  298. * ListBindableAttribute.cs: implemented.
  299. 2002-11-02 Duncan Mak <[email protected]>
  300. * InvalidEnumArgumentException.cs: Added.
  301. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  302. * EventHandlerList.cs: fixed bug #29535.
  303. 2002-10-03 Dick Porter <[email protected]>
  304. * Win32Exception.cs: Added ETIMEDOUT
  305. 2002-09-30 Dick Porter <[email protected]>
  306. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  307. 2002-09-17 Asier Llano Palacios <[email protected]>
  308. * CancelEventArgs.cs
  309. * WarningException.cs
  310. * CancelEventHandler.cs
  311. * PropertyChangedEventHandler.cs
  312. * IExtenderProvider.cs: Implemented
  313. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  314. * Component.cs:
  315. * ComponentCollection.cs:
  316. * Container.cs:
  317. * MarshalByValueComponent.cs: IDisposable fixes.
  318. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  319. * BindableSupport.cs:
  320. * Component.cs:
  321. * EventDescriptorCollection.cs:
  322. * ITypeDescriptorContext.cs:
  323. * TypeConverter.cs:
  324. * TypeDescriptor.cs: class status based fixes.
  325. * StringConverter.cs: implemented a couple of methods.
  326. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  327. * EnumConverter.cs: new file.
  328. * TypeConverter.cs: implemented a few simple methods.
  329. * TypeDescriptor.cs:
  330. (GetConverter): initial support for converters of well-known types.
  331. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  332. * DerivedPropertyDescriptor.cs: New file. Internal class.
  333. * PropertyDescriptorCollection.cs: almost fully implemented.
  334. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  335. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  336. * Component.cs: don't die if Disposed is null.
  337. 2002-07-22 Tim Coleman <[email protected]>
  338. * RecommendedAsConfigurableAttribute.cs: new file added
  339. for System.Web.Services build
  340. 2002-07-22 Tim Coleman <[email protected]>
  341. * ExpandableObjectConverter.cs: Fix error with constructor
  342. 2002-07-22 Tim Coleman <[email protected]>
  343. * TypeConverter.cs: Fixed bad stubb function
  344. GetConvertToException ()
  345. 2002-07-22 Tim Coleman <[email protected]>
  346. * ComponentCollection.cs: Added reference to
  347. ReadOnlyCollectionBase to make sure
  348. that we inherit the appropriate methods.
  349. Not sure why the Dispose() method is
  350. required, but left for now.
  351. 2002-07-22 Tim Coleman <[email protected]>
  352. * TypeConverter.cs: Added new stubbs
  353. * BindableAttribute.cs: Added
  354. * BindableSupport.cs: Added
  355. * NotifyParentPropertyAttribute.cs: Added
  356. * ExpandableObjectConverter.cs: Added
  357. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  358. * MemberDescriptor.cs: implemented Attributes and Category.
  359. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  360. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  361. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  362. fixed value for Yes.
  363. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  364. * TypeConverter.cs: added SimplePropertyDescriptor class.
  365. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  366. * ToolboxItemAttribute.cs: New file.
  367. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  368. * DefaultEventAttribute.cs: new file.
  369. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  370. * AttributeCollection.cs: fixlet.
  371. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  372. * AttributeCollection.cs: finished implementation.
  373. * TypeDescriptor.cs: implemented GetAttributes (object).
  374. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  375. * AttributeCollection.cs: initialize member variables.
  376. * RefreshEventArgs.cs: implemented.
  377. * RefreshEventHandler.cs: New file.
  378. * TypeDescriptor.cs: fully stubbed out the remaining method.
  379. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  380. * DefaultPropertyAttribute.cs: New file.
  381. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  382. * TypeConverter.cs: flushed local changes.
  383. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  384. * StringConverter.cs: stubbed out.
  385. * TypeConverter.cs: stubbed the rest out and added some implementation.
  386. Five errors left when compiling System.Web in linux.
  387. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  388. * TypeConverterAttribute.cs: attribute used by
  389. TypeDescriptor.Getconverter ().
  390. * TypeDescriptor.cs: implemented GetConverter in the right way.
  391. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  392. * TypeConverter.cs:
  393. * ITypeDescriptorContext.cs:
  394. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  395. which uses ColorConverter.
  396. 2002-05-12 Daniel Morgan <[email protected]>
  397. * IComponent.cs
  398. * ISite.cs: added using System
  399. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  400. to // TODOs and added using System. The throwing of the exceptions prevented
  401. System.Data from running.
  402. 2002-05-10 Rodrigo Moya <[email protected]>
  403. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  404. not this[index], which issues an 'ambigous call' error on Linux.
  405. 2002-05-07 Rodrigo Moya <[email protected]>
  406. * EventDescriptor.cs: added missing constructors.
  407. * EventDescriptorCollection.cs: fixed interface methods implementation
  408. * IDataErrorInfo.cs:
  409. * IEditableObject.cs: new interfaces.
  410. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  411. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  412. it compile.
  413. 2002-05-03 Rodrigo Moya <[email protected]>
  414. * AttributeCollection.cs:
  415. * EventDescriptor.cs:
  416. * EventDescriptorCollection.cs:
  417. * ICustomTypeDescriptor.cs: new files.
  418. 2002-05-01 Duncan Mak <[email protected]>
  419. * ListChangedType.cs:
  420. * ListChangedEventHandler.cs:
  421. * ListChangedEventArgs.cs: Added to fix build.
  422. 2002-05-01 Miguel de Icaza <[email protected]>
  423. * PropertyDescriptorCollection.cs: Added the IList explicit
  424. implementation methods.
  425. lots of bug fixes to get the build to compile again.
  426. 2002-05-01 Duncan Mak <[email protected]>
  427. * ListSortDirection.cs: EnumChecked.
  428. 2002-05-01 Rodrigo Moya <[email protected]>
  429. * ListSortDirection.cs: new enumeration. Please, somebody run
  430. EnumCheck on it, as I don't have a windows machine.
  431. * PropertyDescriptorCollection.cs: new class.
  432. * ITypedList.cs:
  433. * IBindingList.cs: new interfaces.
  434. 2002-04-28 Duncan Mak <[email protected]>
  435. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  436. implementation. Please use EnumCheck!
  437. 2002-04-28 Rodrigo Moya <[email protected]>
  438. * CollectionChangeAction.cs: new enumeration.
  439. * CategoryAttribute.cs: moved the 'return' keyword to the
  440. end of the method, to avoid compilation errors on Linux for
  441. all CategoryAttribute properties.
  442. 2002-04-28 Rodrigo Moya <[email protected]>
  443. * IListSource.cs:
  444. * ISupportInitialize.cs:
  445. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  446. compilation.
  447. * PropertyChangedEventArgs.cs:
  448. * CollectionChangeEventHandler.cs:
  449. * CollectionChangeEventArgs.cs: implemented.
  450. 2002-04-28 Lawrence Pit <[email protected]>
  451. * Added error code 11001 to Win32Exception, used by Dns.c
  452. 2002-04-04 Dick Porter <[email protected]>
  453. * ISynchronizeInvoke.cs: Needed by Process
  454. 2002-01-23 Dick Porter <[email protected]>
  455. * Win32Exception.cs: implement, with support for looking up
  456. runtime errors.
  457. 2002-01-17 Miguel de Icaza <[email protected]>
  458. * Win32Exception.cs: Add.
  459. 2002-01-05 Ravi Pratap <[email protected]>
  460. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  461. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  462. 2001-10-27 Miguel de Icaza <[email protected]>
  463. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  464. * DesignerSerializationVisibility.cs: New enumeration.
  465. * LocalizableAttribute.cs: Implemented.
  466. * BrowsableAttribute.cs: Implemented.
  467. * DesignOnlyAttribute.cs: Implemented.
  468. * DescriptionAttribute.cs: Implement.
  469. * MemberDescriptor.cs: Implemented.
  470. * CategoryAttribute.cs: implemented.
  471. 2001-08-21 Nick Drochak <[email protected]>
  472. * Component.cs: Eliminated compile errors by removing redundant fields and
  473. using the ISite member instead. Also raised the Disposed event, but not
  474. sure if it's correct now. Look for FIXME in the comments.
  475. 2001-08-02 Miguel de Icaza <[email protected]>
  476. * EventHandlerList.cs: New file.
  477. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  478. ComponentCollection.cs, ISite.cs: New classes