ChangeLog 22 KB

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