ChangeLog 31 KB

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