ChangeLog 25 KB

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