ChangeLog 24 KB

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