ChangeLog 23 KB

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