ChangeLog 30 KB

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