ChangeLog 26 KB

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