ChangeLog 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. 2003-09-13 Duncan Mak <[email protected]>
  2. Patch from Jörg Rosenkranz <[email protected]>, this fixes the
  3. bugs described in bug #48351.
  4. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  5. multiple values. This is done in Enum.Parse already.
  6. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  7. types because EnumConverter does not have a default
  8. constructor. Fixed by changing the special handling for
  9. enumeration types.
  10. 2003-08-31 Jerome Laban <[email protected]>
  11. * Container.cs: A site without name cannot be duplicate.
  12. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  13. * Win32Exception.cs: added message for 10054.
  14. 2003-07-17 Andreas Nahr <[email protected]>
  15. * CategoryAttribute.cs: Added localization support
  16. 2003-07-17 Andreas Nahr <[email protected]>
  17. * IComponent.cs:
  18. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  19. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  20. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  21. have a TypeConverter. Fixes bug #46397.
  22. 2003-07-14 Jerome Laban <[email protected]>
  23. * IComponent.cs: Removed duplicate Designer attribute.
  24. 2003-07-13 Andreas Nahr <[email protected]>
  25. * Component.cs: Implementation added
  26. * Container.cs: Implementation added
  27. * MarshalByValueComponent.cs: Implementation added
  28. * ReferenceConverter.cs: Small addition for future implementation
  29. 2003-07-10 Andreas Nahr <[email protected]>
  30. * TypeConverter.cs: Implemented missing methods
  31. * TypeDescriptor.cs: Redirections added
  32. 2003-07-05 Andreas Nahr <[email protected]>
  33. * EnumConverter.cs: Fixed signature
  34. * EventDescriptorCollection.cs: Fixed signature
  35. * InheritanceLevel.cs: Fixed enum values; little restyling
  36. * License.cs: Removed undefined member
  37. * LicenseManager.cs: Fixed signature, little implementation added
  38. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  39. * WarningException.cs: Removed wrong attribute
  40. * Win32Exception.cs: Added missing attribute
  41. 2003-07-02 Andreas Nahr <[email protected]>
  42. * AttributeCollection.cs: Fixed public members
  43. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  44. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  45. * CategoryAttribute.cs: Changed public fields to properties
  46. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  47. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  48. * PropertyDescriptorCollection.cs: Fixed public members
  49. * ReferenceConverter.cs: Implementation added
  50. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  51. * TypeDescriptor.cs: Implementations added
  52. 2003-07-02 Andreas Nahr <[email protected]>
  53. * ISite.cs: Fixed attributes, fixed header
  54. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  55. * WarningException.cs: Fixed attributes, formatting corrections
  56. * AttributeCollection.cs: Fixed attributes
  57. * DesignerSerializationVisibility.cs: Fixed attributes
  58. * TypeConverter.cs: Fixed attributes
  59. * MarshalByValueComponent.cs:
  60. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  61. * DescriptionAttribute.cs:
  62. * DesignerCategoryAttribute.cs:
  63. * DoubleConverter.cs:
  64. * EditorBrowsableAttribute.cs:
  65. * EventDescriptorCollection.cs:
  66. * PropertyChangedEventHandler.cs:
  67. * RefreshEventArgs.cs:
  68. * StringConverter.cs:
  69. * DefaultValueAttribute.cs: Reformatted following style guidelines
  70. * License.cs: Removed unused MonoTODOs
  71. * LicenseContext.cs: Implemented
  72. * LicenseException.cs: Implemented
  73. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  74. * LicenseUsageMode.cs: Fixed enum
  75. * RefreshProperties.cs: Fixed enum
  76. * LicFileLicenseProvider.cs: Implementation added
  77. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  78. * ExpandableObjectConverter.cs: Implemented
  79. * ComponentConverter.cs: Implemented
  80. 2003-06-23 Andreas Nahr <[email protected]>
  81. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  82. better Hashcode generation
  83. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  84. better Hashcode generation
  85. * LicenseContext.cs: Added and implemented missing property
  86. * ListBindableAttribute.cs: Simplified implementation, removed
  87. unneccessary data.
  88. * ReadOnlyAttribute.cs: Better Hashcode generation
  89. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  90. Equals check.
  91. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  92. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  93. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  94. * MarshalByValueComponent.cs:
  95. * IContainer.cs:
  96. * IComponent.cs: Added missing attribute(s)
  97. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  98. * AmbientValueAttribute.cs:
  99. * ArrayConverter.cs:
  100. * BaseNumberConverter.cs:
  101. * BindableAttribute.cs:
  102. * BooleanConverter.cs:
  103. * BrowsableAttribute.cs:
  104. * ByteConverter.cs:
  105. * CategoryAttribute.cs:
  106. * CharConverter.cs:
  107. * CollectionConverter.cs:
  108. * Component.cs:
  109. * ComponentCollection.cs:
  110. * ComponentEditor.cs:
  111. * Container.cs:
  112. * CultureInfoConverter.cs:
  113. * DateTimeConverter.cs:
  114. * DecimalConverter.cs:
  115. * DefaultEventAttribute.cs:
  116. * DefaultPropertyAttribute.cs:
  117. * DefaultValueAttribute.cs:
  118. * DescriptionAttribute.cs:
  119. * DesignOnlyAttribute.cs:
  120. * DesignTimeVisibleAttribute.cs:
  121. * DesignerCategoryAttribute.cs:
  122. * DesignerSerializationVisibilityAttribute.cs:
  123. * DoubleConverter.cs:
  124. * EditorBrowsableAttribute.cs:
  125. * EventDescriptor.cs:
  126. * EventDescriptorCollection.cs:
  127. * ExpandableObjectConverter.cs:
  128. * ExtenderProvidedPropertyAttribute.cs: New file.
  129. * GuidConverter.cs:
  130. * IComNativeDescriptorHandler.cs:
  131. * IComponent.cs:
  132. * ImmutableObjectAttribute.cs:
  133. * InheritanceAttribute.cs:
  134. * InheritanceLevel.cs:
  135. * InstallerTypeAttribute.cs:
  136. * Int16Converter.cs:
  137. * Int32Converter.cs:
  138. * Int64Converter.cs:
  139. * InvalidEnumArgumentException.cs:
  140. * LicenseProviderAttribute.cs:
  141. * LocalizableAttribute.cs:
  142. * MarshalByValueComponent.cs:
  143. * MemberDescriptor.cs:
  144. * MergablePropertyAttribute.cs:
  145. * NotifyParentPropertyAttribute.cs:
  146. * ParenthesizePropertyNameAttribute.cs:
  147. * PropertyDescriptor.cs:
  148. * PropertyDescriptorCollection.cs:
  149. * PropertyTabAttribute.cs:
  150. * ProvidePropertyAttribute.cs:
  151. * RecommendedAsConfigurableAttribute.cs:
  152. * RefreshPropertiesAttribute.cs:
  153. * SByteConverter.cs:
  154. * SingleConverter.cs:
  155. * TimeSpanConverter.cs:
  156. * ToolboxItemFilterAttribute.cs:
  157. * TypeConverter.cs:
  158. * TypeConverterAttribute.cs:
  159. * TypeDescriptor.cs:
  160. * TypeListConverter.cs:
  161. * UInt16Converter.cs:
  162. * UInt32Converter.cs:
  163. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  164. ([email protected]).
  165. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  166. * IExtenderProvider.cs: mono-stylized.
  167. * IComNativeDescriptorHandler.cs:
  168. * SyntaxCheck.cs: new files from Andreas Nahr.
  169. 2003-03-20 Dick Porter <[email protected]>
  170. * Win32Exception.cs: Made the fallback error more useful by
  171. reporting the error number
  172. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  173. * MarshalByValueComponent.cs: removed a monotodo.
  174. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  175. * Win32Exception.cs: added error code 2.
  176. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  177. * Win32Exception.cs: implemented GetObjectData ().
  178. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  179. * RunInstallerAttribute.cs: New file.
  180. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  181. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  182. 2003-02-05 Alan Tam <[email protected]>
  183. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  184. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  185. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  186. to bug #37380, mcs complained about this when compiling System.Data.
  187. 2003-01-08 Dick Porter <[email protected]>
  188. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  189. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  190. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  191. implements it. It's done for GetProperties and should be done for the
  192. rest of methods present in ICustomTypeDescriptor.
  193. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  194. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  195. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  196. * DefaultValueAttribute.cs: the attribute applies to All.
  197. 2002-11-19 Duncan Mak <[email protected]>
  198. * DesignerAttribute.cs:
  199. * EditorAttribute: Style changes. Gonzalo committed the build
  200. fixes before I did.
  201. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  202. * DesignerAttribute.cs:
  203. * EditorAttribute.cs: fixed the build.
  204. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  205. * EditorAttribute: implemented.
  206. * DesignerAttribute: implemented.
  207. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  208. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  209. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  210. * ListBindableAttribute.cs: implemented.
  211. 2002-11-02 Duncan Mak <[email protected]>
  212. * InvalidEnumArgumentException.cs: Added.
  213. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  214. * EventHandlerList.cs: fixed bug #29535.
  215. 2002-10-03 Dick Porter <[email protected]>
  216. * Win32Exception.cs: Added ETIMEDOUT
  217. 2002-09-30 Dick Porter <[email protected]>
  218. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  219. 2002-09-17 Asier Llano Palacios <[email protected]>
  220. * CancelEventArgs.cs
  221. * WarningException.cs
  222. * CancelEventHandler.cs
  223. * PropertyChangedEventHandler.cs
  224. * IExtenderProvider.cs: Implemented
  225. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  226. * Component.cs:
  227. * ComponentCollection.cs:
  228. * Container.cs:
  229. * MarshalByValueComponent.cs: IDisposable fixes.
  230. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  231. * BindableSupport.cs:
  232. * Component.cs:
  233. * EventDescriptorCollection.cs:
  234. * ITypeDescriptorContext.cs:
  235. * TypeConverter.cs:
  236. * TypeDescriptor.cs: class status based fixes.
  237. * StringConverter.cs: implemented a couple of methods.
  238. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  239. * EnumConverter.cs: new file.
  240. * TypeConverter.cs: implemented a few simple methods.
  241. * TypeDescriptor.cs:
  242. (GetConverter): initial support for converters of well-known types.
  243. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  244. * DerivedPropertyDescriptor.cs: New file. Internal class.
  245. * PropertyDescriptorCollection.cs: almost fully implemented.
  246. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  247. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  248. * Component.cs: don't die if Disposed is null.
  249. 2002-07-22 Tim Coleman <[email protected]>
  250. * RecommendedAsConfigurableAttribute.cs: new file added
  251. for System.Web.Services build
  252. 2002-07-22 Tim Coleman <[email protected]>
  253. * ExpandableObjectConverter.cs: Fix error with constructor
  254. 2002-07-22 Tim Coleman <[email protected]>
  255. * TypeConverter.cs: Fixed bad stubb function
  256. GetConvertToException ()
  257. 2002-07-22 Tim Coleman <[email protected]>
  258. * ComponentCollection.cs: Added reference to
  259. ReadOnlyCollectionBase to make sure
  260. that we inherit the appropriate methods.
  261. Not sure why the Dispose() method is
  262. required, but left for now.
  263. 2002-07-22 Tim Coleman <[email protected]>
  264. * TypeConverter.cs: Added new stubbs
  265. * BindableAttribute.cs: Added
  266. * BindableSupport.cs: Added
  267. * NotifyParentPropertyAttribute.cs: Added
  268. * ExpandableObjectConverter.cs: Added
  269. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  270. * MemberDescriptor.cs: implemented Attributes and Category.
  271. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  272. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  273. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  274. fixed value for Yes.
  275. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  276. * TypeConverter.cs: added SimplePropertyDescriptor class.
  277. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  278. * ToolboxItemAttribute.cs: New file.
  279. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  280. * DefaultEventAttribute.cs: new file.
  281. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  282. * AttributeCollection.cs: fixlet.
  283. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  284. * AttributeCollection.cs: finished implementation.
  285. * TypeDescriptor.cs: implemented GetAttributes (object).
  286. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  287. * AttributeCollection.cs: initialize member variables.
  288. * RefreshEventArgs.cs: implemented.
  289. * RefreshEventHandler.cs: New file.
  290. * TypeDescriptor.cs: fully stubbed out the remaining method.
  291. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  292. * DefaultPropertyAttribute.cs: New file.
  293. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  294. * TypeConverter.cs: flushed local changes.
  295. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  296. * StringConverter.cs: stubbed out.
  297. * TypeConverter.cs: stubbed the rest out and added some implementation.
  298. Five errors left when compiling System.Web in linux.
  299. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  300. * TypeConverterAttribute.cs: attribute used by
  301. TypeDescriptor.Getconverter ().
  302. * TypeDescriptor.cs: implemented GetConverter in the right way.
  303. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  304. * TypeConverter.cs:
  305. * ITypeDescriptorContext.cs:
  306. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  307. which uses ColorConverter.
  308. 2002-05-12 Daniel Morgan <[email protected]>
  309. * IComponent.cs
  310. * ISite.cs: added using System
  311. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  312. to // TODOs and added using System. The throwing of the exceptions prevented
  313. System.Data from running.
  314. 2002-05-10 Rodrigo Moya <[email protected]>
  315. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  316. not this[index], which issues an 'ambigous call' error on Linux.
  317. 2002-05-07 Rodrigo Moya <[email protected]>
  318. * EventDescriptor.cs: added missing constructors.
  319. * EventDescriptorCollection.cs: fixed interface methods implementation
  320. * IDataErrorInfo.cs:
  321. * IEditableObject.cs: new interfaces.
  322. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  323. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  324. it compile.
  325. 2002-05-03 Rodrigo Moya <[email protected]>
  326. * AttributeCollection.cs:
  327. * EventDescriptor.cs:
  328. * EventDescriptorCollection.cs:
  329. * ICustomTypeDescriptor.cs: new files.
  330. 2002-05-01 Duncan Mak <[email protected]>
  331. * ListChangedType.cs:
  332. * ListChangedEventHandler.cs:
  333. * ListChangedEventArgs.cs: Added to fix build.
  334. 2002-05-01 Miguel de Icaza <[email protected]>
  335. * PropertyDescriptorCollection.cs: Added the IList explicit
  336. implementation methods.
  337. lots of bug fixes to get the build to compile again.
  338. 2002-05-01 Duncan Mak <[email protected]>
  339. * ListSortDirection.cs: EnumChecked.
  340. 2002-05-01 Rodrigo Moya <[email protected]>
  341. * ListSortDirection.cs: new enumeration. Please, somebody run
  342. EnumCheck on it, as I don't have a windows machine.
  343. * PropertyDescriptorCollection.cs: new class.
  344. * ITypedList.cs:
  345. * IBindingList.cs: new interfaces.
  346. 2002-04-28 Duncan Mak <[email protected]>
  347. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  348. implementation. Please use EnumCheck!
  349. 2002-04-28 Rodrigo Moya <[email protected]>
  350. * CollectionChangeAction.cs: new enumeration.
  351. * CategoryAttribute.cs: moved the 'return' keyword to the
  352. end of the method, to avoid compilation errors on Linux for
  353. all CategoryAttribute properties.
  354. 2002-04-28 Rodrigo Moya <[email protected]>
  355. * IListSource.cs:
  356. * ISupportInitialize.cs:
  357. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  358. compilation.
  359. * PropertyChangedEventArgs.cs:
  360. * CollectionChangeEventHandler.cs:
  361. * CollectionChangeEventArgs.cs: implemented.
  362. 2002-04-28 Lawrence Pit <[email protected]>
  363. * Added error code 11001 to Win32Exception, used by Dns.c
  364. 2002-04-04 Dick Porter <[email protected]>
  365. * ISynchronizeInvoke.cs: Needed by Process
  366. 2002-01-23 Dick Porter <[email protected]>
  367. * Win32Exception.cs: implement, with support for looking up
  368. runtime errors.
  369. 2002-01-17 Miguel de Icaza <[email protected]>
  370. * Win32Exception.cs: Add.
  371. 2002-01-05 Ravi Pratap <[email protected]>
  372. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  373. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  374. 2001-10-27 Miguel de Icaza <[email protected]>
  375. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  376. * DesignerSerializationVisibility.cs: New enumeration.
  377. * LocalizableAttribute.cs: Implemented.
  378. * BrowsableAttribute.cs: Implemented.
  379. * DesignOnlyAttribute.cs: Implemented.
  380. * DescriptionAttribute.cs: Implement.
  381. * MemberDescriptor.cs: Implemented.
  382. * CategoryAttribute.cs: implemented.
  383. 2001-08-21 Nick Drochak <[email protected]>
  384. * Component.cs: Eliminated compile errors by removing redundant fields and
  385. using the ISite member instead. Also raised the Disposed event, but not
  386. sure if it's correct now. Look for FIXME in the comments.
  387. 2001-08-02 Miguel de Icaza <[email protected]>
  388. * EventHandlerList.cs: New file.
  389. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  390. ComponentCollection.cs, ISite.cs: New classes