ChangeLog 26 KB

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