ChangeLog 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489
  1. 2007-08-01 Atsushi Enomoto <[email protected]>
  2. * BackgroundWorker.cs : remove extra MonoTODOs.
  3. 2007-07-21 Gert Driesen <[email protected]>
  4. * DisplayNameAttribute.cs: To match MS, do not change null DisplayName
  5. to a zero-length string. Modified IsDefaultAttribute to take into
  6. account null DisplayName.
  7. 2007-07-16 Gert Driesen <[email protected]>
  8. * ReflectionPropertyDescriptor.cs: For read-only properties,
  9. ShouldSerializeValue must only take into account the return value
  10. of the ShouldSerialize method. Code formatting.
  11. 2007-07-12 Rolf Bjarne Kvinge <[email protected]>
  12. * PropertyDescriptor.cs: GetEditor: We have to check the property
  13. itself for attributes as well, not only the property type.
  14. * TypeDescriptor.cs: Make a couple of methods internal so that
  15. PropertyDescriptor can use them.
  16. 2007-07-12 Rolf Bjarne Kvinge <[email protected]>
  17. * TypeDescriptor.cs: GetEditor: Make sure the static constructor of the
  18. editors basetype is called, since that's where we're initializing
  19. the editor table.
  20. 2007-07-11 Igor Zelmanovich <[email protected]>
  21. * ReflectionPropertyDescriptor: fixed ShouldSerializeValue:
  22. MSDN: If this method cannot find a DefaultValueAttribute or
  23. a ShouldSerializeMyProperty method, it cannot create optimizations
  24. and it returns true.
  25. 2007-07-11 Igor Zelmanovich <[email protected]>
  26. * ReflectionPropertyDescriptor: fixed ShouldSerializeValue:
  27. avoid NullReferenceException.
  28. 2007-07-10 Rolf Bjarne Kvinge <[email protected]>
  29. * TypeDescriptor.cs: Implemented AddEditorTable, and check the editor
  30. table in GetEditor if no editor can be found using attributes.
  31. 2007-06-30 Gert Driesen <[email protected]>
  32. * PropertyDescriptorCollection.cs: Added missing explicit interface
  33. implementation of IEnumerable.GetEnumerator.
  34. * TypeDescriptor.cs: Params modifier applies to 1.0 profile as well.
  35. Spaces to tabs.
  36. 2007-05-31 Atsushi Enomoto <[email protected]>
  37. * LookupBindingPropertiesAttribute.cs:
  38. Should be sealed. Implemented GetHashCode().
  39. 2007-05-31 Atsushi Enomoto <[email protected]>
  40. * ContainerFilterService.cs CustomTypeDescriptor.cs
  41. InstanceCreationEditor.cs InvalidAsynchronousStateException.cs
  42. MultilineStringConverter.cs NestedContainer.cs
  43. NullableConverter.cs TypeDescriptionProvider.cs
  44. TypeDescriptionProviderAttribute.cs :
  45. 2.0 stubs except for [Obsolete].
  46. * TypeDescriptor.cs : added missing 2.0 members.
  47. 2007-05-31 Atsushi Enomoto <[email protected]>
  48. * PropertyDescriptor.cs : oops, wrong fix.
  49. 2007-05-31 Atsushi Enomoto <[email protected]>
  50. * PropertyDescriptor.cs : call base. fix winforms tests.
  51. 2007-05-31 Rolf Bjarne Kvinge <[email protected]>
  52. * LookupBindingPropertiesAttribute.cs: Implemented.
  53. 2007-05-31 Atsushi Enomoto <[email protected]>
  54. * AsyncOperationManager.cs AttributeCollection.cs
  55. BackgroundWorker.cs BindingList.cs CategoryAttribute.cs
  56. Component.cs DataObjectFieldAttribute.cs DefaultValueAttribute.cs
  57. DescriptionAttribute.cs EventDescriptorCollection.cs
  58. IComNativeDescriptorHandler.cs IListSource.cs
  59. ListSortDescriptionCollection.cs MemberDescriptor.cs
  60. PropertyDescriptor.cs SyntaxCheck.cs ToolboxItemFilterAttribute.cs:
  61. 2.0 profile updates.
  62. 2007-05-15 Adar Wesley <[email protected]>
  63. * AttributeCollection.cs: added missing method FromExisting.
  64. * Container.cs: added missing method ValidateName
  65. * DefaultValueAttribute.cs: added missing method SetValue.
  66. * EventHandlerList.cs: added missing method AddHandlers.
  67. * MemberDescriptor.cs: added missing method GetInvocationTarget.
  68. * PropertyDescriptor.cs: added missing method GetValueChangedHandler.
  69. * TypeDescriptor.cs: added missing methods CreateInstance, GetFullComponentName,
  70. GetClassName, GetReflectionType, CreateAssociation, GetAssociation,
  71. RemoveAssociation, RemoveAssociations.
  72. 2007-05-14 Vladimir Krasnov <[email protected]>
  73. * PropertyDescriptorCollection.cs: fixed Find method, compare using
  74. invariant culture
  75. 2007-05-10 Rolf Bjarne Kvinge <[email protected]>
  76. * MaskedTextProvider.cs: Small fix for ToString for passwords.
  77. 2007-05-09 Igor Zelmanovich <[email protected]>
  78. * Win32Exception.cs:
  79. added MonoNotSupported attribute for TARGATE_JVM.
  80. 2007-05-08 Igor Zelmanovich <[email protected]>
  81. * RunWorkerCompletedEventArgs.cs: added 'new' keyword, cause
  82. UserState hides inherit property.
  83. 2007-04-07 Gert Driesen <[email protected]>
  84. * RecommendedAsConfigurableAttribute.cs: Mark obsolete on 2.0 profile.
  85. 2007-03-05 Rolf Bjarne Kvinge <[email protected]>
  86. * MaskedTextProvider.cs: Make internal methods private.
  87. 2007-02-27 Rolf Bjarne Kvinge <[email protected]>
  88. * MaskedTextProvider.cs: Added.
  89. 2007-02-17 Gert Driesen <[email protected]>
  90. * DateTimeConverter.cs: Fixed typo in exception message.
  91. 2007-02-13 Gert Driesen <[email protected]>
  92. * TypeDescriptor.cs: Do not assume that an ISite always has an
  93. ITypeDescriptorFilterService. Fixes bug #80836.
  94. 2007-01-29 Marek Habersack <[email protected]>
  95. * PasswordPropertyTextAttribute.cs: Implement.
  96. 2007-01-21 Zoltan Varga <[email protected]>
  97. * RecommendedAsConfigurableAttribute.cs: Make this non-obsolete to fix
  98. the 2.0 build, since System.ServiceProcess.ServiceController uses it.
  99. 2007-01-20 Chris Toshok <[email protected]>
  100. * InheritanceLevel.cs: 2.0 class-status work.
  101. * ListSortDirection.cs: same.
  102. * BindableSupport.cs: same.
  103. * SyntaxCheck.cs: same.
  104. * CancelEventHandler.cs: same.
  105. * ListChangedEventHandler.cs: same.
  106. * SettingsBindableAttribute.cs: same.
  107. * ToolboxItemFilterType.cs: same.
  108. * PropertyChangedEventHandler.cs: same.
  109. * MarshalByValueComponent.cs: same.
  110. * LicenseUsageMode.cs: same.
  111. * RefreshProperties.cs: same.
  112. * RecommendedAsConfigurableAttribute.cs: same.
  113. 2007-01-20 Chris Toshok <[email protected]>
  114. * BindingList.cs: new class.
  115. 2007-01-13 Miguel de Icaza <[email protected]>
  116. * DataObjectFieldAttribute.cs: Removed some code I left from the
  117. copy/paste activity from the xxxMethodxx.
  118. 2007-01-12 Miguel de Icaza <[email protected]>
  119. * DataObjectFieldAttribute.cs: Add new file.
  120. 2007-01-11 Dick Porter <[email protected]>
  121. * Win32Exception.cs: Add error 50 (ERROR_NOT_SUPPORTED)
  122. 2007-01-08 Raja R Harinath <[email protected]>
  123. * ISupportInitializeNotification.cs: Add implemented interface.
  124. * ICancelAddNew.cs, IIntellisenseBuilder.cs: New.
  125. * INestedContainer.cs, INestedSite.cs: New.
  126. 2007-01-02 Konstantin Triger <[email protected]>
  127. * DataObjectAttribute.cs: Implemented.
  128. 2007-01-02 Konstantin Triger <[email protected]>
  129. * EventHandlerList.cs: Do not reject null key.
  130. 2006-12-25 Raja R Harinath <[email protected]>
  131. * InitializationEventAttribute.cs: New.
  132. 2006-12-24 Konstantin Triger <[email protected]>
  133. * Implemented DataObjectMethodAttribute and DataObjectMethodType.
  134. 2006-12-22 Rolf Bjarne Kvinge <[email protected]>
  135. * DefaultBindingPropertyAttribute.cs: new attribute.
  136. 2006-12-21 Gert Driesen <[email protected]>
  137. * MemberDescriptor.cs: On 2.0 profile, take the DisplayNameAttribute
  138. into account for DisplayName. Fixes bug #80292.
  139. 2006-12-20 Chris Toshok <[email protected]>
  140. * AttributeProviderAttribute.cs: new class.
  141. 2006-12-20 Chris Toshok <[email protected]>
  142. * ComplexBindingPropertiesAttribute.cs: add Default field.
  143. 2006-12-20 Chris Toshok <[email protected]>
  144. * ComplexBindingPropertiesAttribute.cs: new 2.0 attribute.
  145. 2006-12-19 Chris Toshok <[email protected]>
  146. * PropertyDescriptor.cs: stop crashing on a missing type
  147. converter.
  148. 2006-12-06 Chris Toshok <[email protected]>
  149. * ReflectionPropertyDescriptor.cs: turns out if "ShouldSerialize*"
  150. is present and returns false, "CanReset*" also returns false.
  151. 2006-12-06 Chris Toshok <[email protected]>
  152. * ReflectionPropertyDescriptor.cs: ShouldSerializeValue should
  153. return false if there's no ShouldSerialize method.
  154. 2006-12-06 Chris Toshok <[email protected]>
  155. * ReflectionPropertyDescriptor.cs: fixes for CanResetValue and
  156. ShouldSerializeValue - we need to find both public and nonpublic
  157. methods.
  158. 2006-12-01 Duncan Mak <[email protected]>
  159. * AddingNewEventArgs.cs:
  160. * AddingNewEventHandler.cs: Added.
  161. * ListChangedEventArgs.cs (.ctor): Uncomment the bit about
  162. property descriptor now that there's an implementation of it.
  163. (PropertyDescriptor): New 2.0 property.
  164. 2006-11-29 Ivan N. Zlatev <[email protected]>
  165. * MemberDescriptor.cs, ReflectionPropertyDescriptor.cs: 1) The
  166. ReflectionPropretyDescriptor must be able to operate with non
  167. public properties.
  168. 2) The current implementation ignores the fact that the component
  169. can be in design mode. In design mode some of the properties (the
  170. design-time ones) are supposed to be redirected to the
  171. designer. The component which should be used to access the
  172. property is retrieved by using MemberDescriptor.GetInvokee
  173. (implemented in the patch). Updated the
  174. ReflectorPropertyDescriptor to use GetInvokee to decide which
  175. component should it use.
  176. Reviewed by: Miguel de Icaza
  177. 2006-11-28 Miguel de Icaza <[email protected]>
  178. * TypeDescriptor.cs: This implementation is really from Gonzalo,
  179. he dictated to me :-)
  180. 2006-11-20 Nagappan A <[email protected]>
  181. * ISupportInitializeNotification.cs: New Interface file to support
  182. NET 2.0 features.
  183. 2006-11-09 Chris Toshok <[email protected]>
  184. * ReflectionPropertyDescriptor.cs: IsReadOnly needs to take into
  185. account the ReadOnlyAttribute.
  186. 2006-11-08 Gert Driesen <[email protected]>
  187. * ArrayConverter.cs: Modifed ConvertTo for Array => String to match
  188. MS. In GetProperties, throw NRE to match MS.
  189. 2006-11-08 Chris Toshok <[email protected]>
  190. * ArrayConverter.cs: implement GetProperties correctly, by
  191. creating ArrayPropertyDescriptor objects for each array element.
  192. 2006-10-05 Andrew Skiba <[email protected]>
  193. * EventHandlerList.cs: Implement event handler list according to MS
  194. definition. No hash table, just a simple list with good performance
  195. for a small number of events (<20) and worse performance when number
  196. of events is bigger (patch by [email protected]).
  197. 2006-10-29 Alexander Olk <[email protected]>
  198. * ComponentResourceManager.cs: Make ApplyResources work.
  199. Instead of iterating through the resource set table we now
  200. read the property infos of an object and check if there is
  201. an item in the resource set for each property info. This makes
  202. it finally possible to create language dependent resources
  203. that do not have to include everything from a parent culture
  204. resource (mostly invariant culture).
  205. Throw an ArgumentNullException if value or objectName is null.
  206. 2006-10-29 Alexander Olk <[email protected]>
  207. * ComponentResourceManager.cs: Don't close the resource set in
  208. ApplyResources, it is possible to call ApplyResources multiple
  209. times. Closing the resource set means that it gets disposed.
  210. Fixes bug #79182.
  211. 2006-09-28 Andrew Skiba <[email protected]>
  212. * Component.cs,PropertyDescriptorCollection.cs,MarshalByValueComponent.cs:
  213. TARGET_JVM
  214. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  215. * Container.cs: 'unsite' the component when removing it. Fixes
  216. bug #79255. Patch by Ivan N. Zlatev.
  217. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  218. * TypeDescriptor.cs: don't ignore toplevel attributes when they are
  219. overriden.
  220. Patch by Ivan N. Zlatev that fixes bug #79256.
  221. 2006-08-20 Gert Driesen <[email protected]>
  222. * InvalidEnumArgumentException.cs: Beautify error message.
  223. 2006-08-14 Raja R Harinath <[email protected]>
  224. * IRaiseItemChangedEvents.cs: Add. Mentioned in #79012.
  225. 2006-07-31 Sebastien Pouliot <[email protected]>
  226. * InvalidEnumArgumentException.cs: Updated to 2.0.
  227. * LicenseException.cs: Updated to 2.0. Add a demand for
  228. SerializationFormatter on GetObjectData method.
  229. * TypeDescriptor.cs: Add linkdemand for ReflectionPermission on
  230. CreateEvent and CreateProperties methods. Add linkdemand for
  231. unrestricted on ComNativeDescriptorHandler get/set.
  232. * WarningException.cs: Updated to 2.0. Add a demand for
  233. SerializationFormatter on GetObjectData method.
  234. * Win32Exception.cs: Add a demand for SerializationFormatter on
  235. GetObjectData method.
  236. 2006-07-14 Peter Dennis Bartok <[email protected]>
  237. * MaskedTextResultHint.cs: Added
  238. 2006-05-31 Gert Driesen <[email protected]>
  239. * TypeConverter.cs: Added explicit interface implementation for
  240. ICollection.CopyTo and IEnumerable.GetEnumerator. Fixes corcompare
  241. warnings.
  242. * Component.cs: Remove TypeConverter attribute. Fixes corcompare
  243. warning.
  244. * AttributeCollection.cs: Added explicit interface implemenation for
  245. IEnumerable.GetEnumerator, IList.RemoveAt and ICollection.Count.
  246. Fixes corcompare warnings.
  247. * PropertyDescriptorCollection.cs: Added explicit interface
  248. implemenation for ICollection.Count. Fixes corcompare warning.
  249. 2006-05-22 Atsushi Enomoto <[email protected]>
  250. * TypeDescriptor.cs : GetProperties() does not return indexers.
  251. 2006-05-11 Atsushi Enomoto <[email protected]>
  252. * ReflectionPropertyDescriptor.cs,
  253. DerivedPropertyDescriptor.cs : invoke OnValueChanged() when
  254. the value was successfully changed. It is needed to have
  255. MWF PropertyGrid change properties successfully.
  256. 2006-05-08 Atsushi Enomoto <[email protected]>
  257. * AsyncOperation.cs : SynchronizationContext.OperationStarted()
  258. should not be called more than once. So move it from Post() to
  259. .ctor(). Thanks again to cl.
  260. 2006-05-08 Atsushi Enomoto <[email protected]>
  261. * AsyncOperation.cs : call OperationStared() at Post(). Call
  262. OperationCompleted() at the finalizer. Thanks to cl.
  263. 2006-05-08 Atsushi Enomoto <[email protected]>
  264. * SettingsBindableAttribute.cs : new file. Bug #78333 is fixed.
  265. 2006-04-27 Miguel de Icaza <[email protected]>
  266. * Component.cs: The converter for the Component is
  267. ComponentConverter, which makes the GetPropertiesSupported return
  268. true. So JChamber's patch should work now.
  269. 2006-04-26 Miguel de Icaza <[email protected]>
  270. * TypeDescriptor.cs (Info.GetProperties, TypeInfo.GetProperties):
  271. Use the more specific GetProperties call so we do not return
  272. static properties, should fix that part of the PropertyGrid bug
  273. #78192.
  274. Code formatting police hit again.
  275. * ReflectionPropertyDescriptor.cs (CanResetvalue): Do not
  276. dereference a null value, avoids crash in property grid.
  277. Code formatting police.
  278. 2006-04-25 Miguel de Icaza <[email protected]>
  279. * TypeConverter.cs (ConvertFrom): Do not crash if we are passed a
  280. null value.
  281. 2006-04-25 Atsushi Enomoto <[email protected]>
  282. * BaseNumberConverter.cs : (ConvertTo) regardless of InnerType,
  283. it converts the argument value to InnerType using supplied format.
  284. (It might be not limited to NET_2_0 but it's too cosmetic to dig
  285. into the problem. At least this is for run-test-ondotnet fixes.)
  286. 2006-04-17 Atsushi Enomoto <[email protected]>
  287. * BackgroundWorker.cs, RunWorkerCompletedEventArgs.cs :
  288. cosmetic attribute fixes.
  289. 2006-04-17 Atsushi Enomoto <[email protected]>
  290. * AsyncOperation.cs,
  291. AsyncOperationManager.cs
  292. BackgroundWorker.cs
  293. DoWorkEventArgs.cs
  294. DoWorkEventHandler.cs
  295. RunWorkerCompletedEventArgs.cs
  296. RunWorkerCompletedEventHandler.cs :
  297. Initial implementation of AsyncOperation and BackgroundWorker.
  298. (However I think it does not work as expected - it depends on
  299. SynchronizationContext.Post() and I doubt it works fine - the
  300. callback should run synchronously while it does not look so.)
  301. 2006-03-30 Atsushi Enomoto <[email protected]>
  302. * AsyncCompletedEventArgs.cs : constructor did not initialize fields.
  303. 2006-03-28 Atsushi Enomoto <[email protected]>
  304. * ProgressChangedEventHandler.cs ProgressChangedEventArgs.cs :
  305. added 2.0 types.
  306. 2006-02-26 Pedro Martinez Julia <[email protected]>
  307. * HandledEventHandler.cs: Resolving a "Replaced" SVN flag.
  308. 2006-02-23 Andrew Skiba <[email protected]>
  309. * TypeDescriptor.cs: performance improvement for GetAttributes,
  310. GetProperties and GetEvents. See the standalone test for the use case.
  311. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  312. * Container.cs: patch by Brian Crowell that fixes GetService().
  313. 2006-01-22 Chris Toshok <[email protected]>
  314. * DesignerSerializationVisibilityAttribute.cs: in the 2.0 case,
  315. this attribute is valid on fields and events as well.
  316. 2005-11-19 Zoltan Varga <[email protected]>
  317. * TypeDescriptor.cs: Small changes to make this more compliant with
  318. MSDN docs and actual MS behaviour.
  319. 2005-11-07 Pedro Martinez Julia <[email protected]>
  320. * IBindingListView.cs Initial implementation
  321. * HandledEventArgs.cs Initial implementation
  322. * HandledEventHandler.cs Initial implementation
  323. * ListSortDescription.cs: Initial implementation
  324. * ListSortDescriptionCollection.cs: Initial implementation
  325. 2005-10-31 Dick Porter <[email protected]>
  326. * Win32Exception.cs: Add another error code.
  327. 2005-09-20 Chris Toshok <[email protected]>
  328. * INotifyPropertyChanged.cs: new interface.
  329. 2005-09-19 Gert Driesen <[email protected]>
  330. * TypeDescriptor.cs: Remove usage of removed internal
  331. PropertyDescriptorCollection ctor. Return read-only collection.
  332. * PropertyDescriptorCollection.cs: Removed internal ctor taking
  333. ArrayList. Add ctor for making read-only collection. Added
  334. read-only checks. Implemented IsReadOnly and IsFixedSize. Empty now
  335. returns read-only collection to match MS.NET.
  336. 2005-09-12 Gert Driesen <[email protected]>
  337. * TypeConverter.cs: Only return browsable properties in GetProperties.
  338. 2005-08-28 Gert Driesen <[email protected]>
  339. * DateTimeConverter.cs: ConvertTo must return zero-length string
  340. for DateTime.MinValue. Use CultureInfo.GetFormat to obtain
  341. DateTimeFormatInfo to match MS.NET.
  342. 2005-08-27 Gonzalo Paniagua Javier <[email protected]>
  343. * TypeDescriptor.cs: remove double lock in DefaultConverter.
  344. 2005-08-26 Gert Driesen <[email protected]>
  345. * BaseNumberConverter.cs: Use CultureInfo.GetFormat to obtain
  346. NumberFormatInfo to match MS.NET. Added ConvertToString abstract
  347. method for conversion to string.
  348. * ByteConverter.cs: Implemented ConvertToString.
  349. * DecimalConverter.cs: Implemented ConvertToString.
  350. * DoubleConverter.cs: Implemented ConvertToString.
  351. * Int16Converter.cs: Implemented ConvertToString.
  352. * Int32Converter.cs: Implemented ConvertToString.
  353. * Int64Converter.cs: Implemented ConvertToString.
  354. * SByteConverter.cs: Implemented ConvertToString.
  355. * SingleConverter.cs: Implemented ConvertToString.
  356. * UInt16Converter.cs: Implemented ConvertToString.
  357. * UInt32Converter.cs: Implemented ConvertToString.
  358. * UInt64Converter.cs: Implemented ConvertToString.
  359. 2005-08-19 Gert Driesen <[email protected]>
  360. * SingleConverter.cs: Implement conversion from string to match MS.NET.
  361. Set eol-style to native.
  362. * TypeConverter.cs: Always support conversion from InstanceDescriptor.
  363. Set eol-style to native.
  364. * UInt16Converter.cs: Implement conversion from string to match MS.NET.
  365. Added support for converting string containing hex prefix. Set
  366. eol-style to native.
  367. * SByteConverter.cs: Implement conversion from string to match MS.NET.
  368. Added support for converting string containing hex prefix. Set
  369. eol-style to native.
  370. * Int16Converter.cs: Implement conversion from string to match MS.NET.
  371. Added support for converting string containing hex prefix. Set
  372. eol-style to native.
  373. * UInt64Converter.cs: Implement conversion from string to match MS.NET.
  374. Added support for converting string containing hex prefix. Set
  375. eol-style to native.
  376. * DecimalConverter.cs: Implement conversion from string to match MS.NET.
  377. Set eol-style to native.
  378. * Int64Converter.cs: Implement conversion from string to match MS.NET.
  379. Added support for converting string containing hex prefix. Set
  380. eol-style to native.
  381. * UInt32Converter.cs: Implement conversion from string to match MS.NET.
  382. Added support for converting string containing hex prefix. Set
  383. eol-style to native.
  384. * Int32Converter.cs: Implement conversion from string to match MS.NET.
  385. Added support for converting string containing hex prefix. Set
  386. eol-style to native.
  387. * DoubleConverter.cs: Implement conversion from string to match MS.NET.
  388. Set eol-style to native.
  389. * BaseNumberConverter.cs: Support conversion from string containing
  390. hex prefixes. Set eol-style to native.
  391. * ByteConverter.cs: Implement conversion from string to match MS.NET.
  392. Added support for converting string containing hex prefix. Set
  393. eol-style to native.
  394. 2005-08-18 Gert Driesen <[email protected]>
  395. * EditorBrowsableState.cs: Changed line ending from CRLF to LF to
  396. match other sources. Set eol-style to native.
  397. * ExtenderProvidedPropertyAttribute.cs: Changed line ending from CRLF
  398. to LF to match other sources. Set eol-style to native.
  399. * RefreshEventHandler.cs: Changed line ending from CRLF to LF to match
  400. other sources. Set eol-style to native.
  401. * TypeDescriptor.cs: Changed line ending from CRLF to LF to match
  402. other sources. Set eol-style to native.
  403. 2005-08-16 Gert Driesen <[email protected]>
  404. * BaseNumberConverter.cs: In ConvertFrom, wrap all exceptions that
  405. are thrown while converting from string in an Exception.
  406. 2005-08-16 Gert Driesen <[email protected]>
  407. * ToolboxItemAttribute.cs: Fixed GetHashCode to correspond with MS.NET.
  408. Fixed initialization order. Throw ArgumentException if item type
  409. cannot be loaded.
  410. 2005-08-09 Michael Hutchinson <[email protected]>
  411. * ToolboxItemAttribute.cs: Fixed typo
  412. 2005-08-09 Gert Driesen <[email protected]>
  413. * IComponent.cs: Fixed Designer attribute to match MS.NET.
  414. * DesignerAttribute.cs: DesignerBaseTypeName defaults to fullname of
  415. IDesigner to match MS.NET.
  416. 2005-08-07 Michael Hutchinson <[email protected]>
  417. Patch from Michael Hutchinson to make the aspnet editor work.
  418. * ReflectionPropertyDescriptor.cs: Create transactions and raise
  419. component change events for all IComponents, not just base
  420. implementation 'Component' derivatives.
  421. * MemberDescriptor.cs: Make members 'Browsable' by default, as per
  422. MS spec.
  423. * PropertyDescriptor.cs: Changed default
  424. DesignerSerializationVisibility value to Visible rather than
  425. Hidden, as per MS spec.
  426. 2005-07-21 Gonzalo Paniagua Javier <[email protected]>
  427. * TypeDescriptor.cs: (GetProperties) throw exception if 'component' is
  428. null.
  429. 2005-06-30 Sebastien Pouliot <[email protected]>
  430. * Win32Exception.cs: Added some declarative security (permission from
  431. corlib) as an initial test (outside corlib). Added new constructors
  432. for NET_2_0.
  433. 2005-06-27 LLuis Sanchez Gual <[email protected]>
  434. * CultureInfoConverter.cs: Correctly look for verbose name of
  435. the culture being converted.
  436. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  437. * ToolboxItemAttribute.cs: fix the fix that was fixed before.
  438. 2005-06-08 Zoltan Varga <[email protected]>
  439. * ToolboxItemAttribute.cs: Revert last change as it breaks the build.
  440. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  441. * ToolboxItemAttribute.cs: fix default type name.
  442. 2005-06-04 Gert Driesen <[email protected]>
  443. * Win32Exception.cs: improve error message for error 10047.
  444. 2005-06-04 Gert Driesen <[email protected]>
  445. * TypeDescriptor.cs: in .NET 2.0, GetComponentName returns null if
  446. object is not an IComponent or has no Site.
  447. In .NET 2.0, GetDefaultEvent does not fallback to first defined event
  448. if the default event is filtered out. GetDefaultProperty did not
  449. take filtering into account. Fixes bug #75152.
  450. 2005-05-31 Gonzalo Paniagua Javier <[email protected]>
  451. * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.
  452. 2005-05-15 Andreas Nahr <[email protected]>
  453. * IComponent.cs: Fix attributes
  454. 2005-04-28 Gonzalo Paniagua Javier <[email protected]>
  455. * TypeDescriptor.cs: implemented GetEditor. Patch by Jonathan Chambers.
  456. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  457. * DefaultValueAttribute.cs: fixed the .ctor that takes a type and a
  458. string. Previous implementation caused *lots* of exceptions being thrown
  459. when processing WebControl types.
  460. 2005-04-22 LLuis Sanchez Gual <[email protected]>
  461. * AttributeCollection.cs: When checking if the list contains an
  462. attribute, always return true if that attribute is the default
  463. attribute for that kind of attributes.
  464. 2005-04-13 LLuis Sanchez Gual <[email protected]>
  465. * TypeDescriptor.cs: When creating a converter, use a constructor that
  466. takes a Type parameter if exists.
  467. * PropertyDescriptor.cs: In the Converter property, check for a
  468. TypeConverterAttribute in the property.
  469. 2005-03-02 Jackson Harper <[email protected]>
  470. * ReflectionEventDescriptor.cs: Bind handlers to the actual event so that
  471. the delegates get invoked when the methods are.
  472. 2005-03-02 Jackson Harper <[email protected]>
  473. * EventDescriptorCollection.cs: Handle null in the constructor properly.
  474. 2005-02-12 Geoff Norton <[email protected]>
  475. * CharConverter.cs: Implement the ability to convert from "".
  476. 2005-02-10 Geoff Norton <[email protected]>
  477. * CultureInfoConverter.cs: Implement converting from the
  478. string "(default)" that MS will put in .resx files.
  479. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  480. * BindableAttribute.cs: Implemented 2.0 api.
  481. 2005-02-05 Gonzalo Paniagua Javier <[email protected]>
  482. * TypeDescriptor.cs: fixed bug #71601. GetConverter should handle
  483. TypeConverter derived classes that take a Type argument.
  484. 2005-01-27 LLuis Sanchez Gual <[email protected]>
  485. * DateTimeConverter.cs, CultureInfoConverter.cs, DecimalConverter.cs,
  486. TimeSpanConverter.cs, GuidConverter.cs, EnumConverter.cs:
  487. Implemented support for InstanceDescriptor.
  488. 2005-01-25 LLuis Sanchez Gual <[email protected]>
  489. * Win32Exception.cs: Set the correct name for the serialized
  490. NativeErrorCode. This fixes bug #71572. Fix by Aleksandar Dezelin.
  491. 2005-01-24 Joerg Rosenkranz <[email protected]>
  492. * TypeDescriptor.cs: Changed handling of interfaces and objects in
  493. GetConverter to reflect the behaviour of .NET. This fixes bug #71444.
  494. 2005-01-19 Jonathan Pryor <[email protected]>
  495. * TypeDescriptor.cs: Fix Info.GetDefaultEvent() so that it filters events
  496. properly. This matches .NET 1.1 and fixes a test case.
  497. 2005-01-19 Jonathan Pryor <[email protected]>
  498. * TypeDescriptor.cs: Fix GetComponentName() so that it returns the type
  499. name if no Site is present. This matches .NET 1.1 and fixes a test case.
  500. 2005-01-12 Gonzalo Paniagua Javier <[email protected]>
  501. * BaseNumberConverter.cs: when the culture we get is null, set it to the
  502. default. Fixes bug #67033. Thanks to Sander Rijken.
  503. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  504. * BindingDirection.cs: New enum.
  505. 2004-12-09 Dick Porter <[email protected]>
  506. * Win32Exception.cs: Add another socket error, fix the message of
  507. some old ones.
  508. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  509. * AttributeCollection.cs: support attributes inherited from the one
  510. we want. Fixes bug #67088. Thanks to Sander Rijken.
  511. 2004-08-14 Jackson Harper <[email protected]>
  512. * Container.cs: Release all when we are supposed to release all.
  513. 2004-07-14 Atsushi Enomoto <[email protected]>
  514. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  515. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  516. * AsyncCompletedEventArgs.cs: Implemented.
  517. * AsyncCompletedEventHandler.cs: Implemented.
  518. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  519. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  520. remove it from the table.
  521. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  522. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  523. DesignOnlyAttribute.cs: fix targets for attributes.
  524. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  525. * BooleanConverter.cs: Improved ConverFrom method.
  526. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  527. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  528. This fixes bug #57655.
  529. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  530. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  531. all the attributes, not just DesignerAttribute instances. nGallery
  532. complained.
  533. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  534. * BooleanConverter.cs: GetStandardValues must return an array of
  535. booleans, not an array of strings.
  536. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  537. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  538. through GetPropertyInfo(). Take into account that a component may not
  539. be sited or not have some services.
  540. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  541. property. Other minor fixes.
  542. 2004-04-16 Joerg Rosenkranz <[email protected]>
  543. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  544. This fixes #57137.
  545. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  546. * AttributeCollection.cs: Added new internal constructor.
  547. * DesignerAttribute.cs: Fixed property TypeId.
  548. * EventDescriptorCollection.cs: Added internal constructor. Added new
  549. method Filter that removes events that do not have the specified
  550. attributes.
  551. * MemberDescriptor.cs: Minor fixes.
  552. * PropertyDescriptor.cs: Implemented some missing methods.
  553. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  554. Sort methods.
  555. * ReferenceConverter.cs: Removed some TODOs.
  556. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  557. * TypeDescriptor.cs: Implemented most of missing methods.
  558. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  559. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  560. Removed unneded TODOs.
  561. * ComponentResourceManager.cs: Implemented ApplyResources.
  562. * EventDescriptorCollection.cs: Implemented several missing methods.
  563. * LicFileLicenseProvider.cs: Implemented.
  564. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  565. the creation of the Attribute list.
  566. * TypeConverter.cs: Use null as default value for attribute array parameter.
  567. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  568. * Win32Exception.cs: added 10024 (WSAEMFILE).
  569. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  570. * AttributeCollection.cs: Don't try to create a default attribute if the
  571. attribute type does not have a default constructor. Fix by Jon Wagner.
  572. This fixes #53898.
  573. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  574. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  575. message as ERROR_FILE_NOT_FOUND.
  576. 2004-03-17 Ivan Hamilton <[email protected]>
  577. * LicenseManager.cs: Completed TODO.
  578. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  579. * Win32Exception.cs: use a switch instead of creating a hashtable when
  580. mapping from an error code to a message.
  581. 2003-11-22 Miguel de Icaza <[email protected]>
  582. * PropertyDescriptorCollection.cs (Insert): Another one.
  583. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  584. 2003-11-13 Andreas Nahr <[email protected]>
  585. * IComponent.cs: Added missing attribute
  586. 2003-11-12 Andreas Nahr <[email protected]>
  587. * ComponentResourceManager.cs: Added and partially implemented
  588. 2003-09-13 Duncan Mak <[email protected]>
  589. Patch from Jrg Rosenkranz <[email protected]>, this fixes the
  590. bugs described in bug #48351.
  591. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  592. multiple values. This is done in Enum.Parse already.
  593. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  594. types because EnumConverter does not have a default
  595. constructor. Fixed by changing the special handling for
  596. enumeration types.
  597. 2003-08-31 Jerome Laban <[email protected]>
  598. * Container.cs: A site without name cannot be duplicate.
  599. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  600. * Win32Exception.cs: added message for 10054.
  601. 2003-07-17 Andreas Nahr <[email protected]>
  602. * CategoryAttribute.cs: Added localization support
  603. 2003-07-17 Andreas Nahr <[email protected]>
  604. * IComponent.cs:
  605. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  606. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  607. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  608. have a TypeConverter. Fixes bug #46397.
  609. 2003-07-14 Jerome Laban <[email protected]>
  610. * IComponent.cs: Removed duplicate Designer attribute.
  611. 2003-07-13 Andreas Nahr <[email protected]>
  612. * Component.cs: Implementation added
  613. * Container.cs: Implementation added
  614. * MarshalByValueComponent.cs: Implementation added
  615. * ReferenceConverter.cs: Small addition for future implementation
  616. 2003-07-10 Andreas Nahr <[email protected]>
  617. * TypeConverter.cs: Implemented missing methods
  618. * TypeDescriptor.cs: Redirections added
  619. 2003-07-05 Andreas Nahr <[email protected]>
  620. * EnumConverter.cs: Fixed signature
  621. * EventDescriptorCollection.cs: Fixed signature
  622. * InheritanceLevel.cs: Fixed enum values; little restyling
  623. * License.cs: Removed undefined member
  624. * LicenseManager.cs: Fixed signature, little implementation added
  625. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  626. * WarningException.cs: Removed wrong attribute
  627. * Win32Exception.cs: Added missing attribute
  628. 2003-07-02 Andreas Nahr <[email protected]>
  629. * AttributeCollection.cs: Fixed public members
  630. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  631. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  632. * CategoryAttribute.cs: Changed public fields to properties
  633. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  634. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  635. * PropertyDescriptorCollection.cs: Fixed public members
  636. * ReferenceConverter.cs: Implementation added
  637. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  638. * TypeDescriptor.cs: Implementations added
  639. 2003-07-02 Andreas Nahr <[email protected]>
  640. * ISite.cs: Fixed attributes, fixed header
  641. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  642. * WarningException.cs: Fixed attributes, formatting corrections
  643. * AttributeCollection.cs: Fixed attributes
  644. * DesignerSerializationVisibility.cs: Fixed attributes
  645. * TypeConverter.cs: Fixed attributes
  646. * MarshalByValueComponent.cs:
  647. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  648. * DescriptionAttribute.cs:
  649. * DesignerCategoryAttribute.cs:
  650. * DoubleConverter.cs:
  651. * EditorBrowsableAttribute.cs:
  652. * EventDescriptorCollection.cs:
  653. * PropertyChangedEventHandler.cs:
  654. * RefreshEventArgs.cs:
  655. * StringConverter.cs:
  656. * DefaultValueAttribute.cs: Reformatted following style guidelines
  657. * License.cs: Removed unused MonoTODOs
  658. * LicenseContext.cs: Implemented
  659. * LicenseException.cs: Implemented
  660. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  661. * LicenseUsageMode.cs: Fixed enum
  662. * RefreshProperties.cs: Fixed enum
  663. * LicFileLicenseProvider.cs: Implementation added
  664. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  665. * ExpandableObjectConverter.cs: Implemented
  666. * ComponentConverter.cs: Implemented
  667. 2003-06-23 Andreas Nahr <[email protected]>
  668. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  669. better Hashcode generation
  670. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  671. better Hashcode generation
  672. * LicenseContext.cs: Added and implemented missing property
  673. * ListBindableAttribute.cs: Simplified implementation, removed
  674. unneccessary data.
  675. * ReadOnlyAttribute.cs: Better Hashcode generation
  676. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  677. Equals check.
  678. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  679. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  680. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  681. * MarshalByValueComponent.cs:
  682. * IContainer.cs:
  683. * IComponent.cs: Added missing attribute(s)
  684. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  685. * AmbientValueAttribute.cs:
  686. * ArrayConverter.cs:
  687. * BaseNumberConverter.cs:
  688. * BindableAttribute.cs:
  689. * BooleanConverter.cs:
  690. * BrowsableAttribute.cs:
  691. * ByteConverter.cs:
  692. * CategoryAttribute.cs:
  693. * CharConverter.cs:
  694. * CollectionConverter.cs:
  695. * Component.cs:
  696. * ComponentCollection.cs:
  697. * ComponentEditor.cs:
  698. * Container.cs:
  699. * CultureInfoConverter.cs:
  700. * DateTimeConverter.cs:
  701. * DecimalConverter.cs:
  702. * DefaultEventAttribute.cs:
  703. * DefaultPropertyAttribute.cs:
  704. * DefaultValueAttribute.cs:
  705. * DescriptionAttribute.cs:
  706. * DesignOnlyAttribute.cs:
  707. * DesignTimeVisibleAttribute.cs:
  708. * DesignerCategoryAttribute.cs:
  709. * DesignerSerializationVisibilityAttribute.cs:
  710. * DoubleConverter.cs:
  711. * EditorBrowsableAttribute.cs:
  712. * EventDescriptor.cs:
  713. * EventDescriptorCollection.cs:
  714. * ExpandableObjectConverter.cs:
  715. * ExtenderProvidedPropertyAttribute.cs: New file.
  716. * GuidConverter.cs:
  717. * IComNativeDescriptorHandler.cs:
  718. * IComponent.cs:
  719. * ImmutableObjectAttribute.cs:
  720. * InheritanceAttribute.cs:
  721. * InheritanceLevel.cs:
  722. * InstallerTypeAttribute.cs:
  723. * Int16Converter.cs:
  724. * Int32Converter.cs:
  725. * Int64Converter.cs:
  726. * InvalidEnumArgumentException.cs:
  727. * LicenseProviderAttribute.cs:
  728. * LocalizableAttribute.cs:
  729. * MarshalByValueComponent.cs:
  730. * MemberDescriptor.cs:
  731. * MergablePropertyAttribute.cs:
  732. * NotifyParentPropertyAttribute.cs:
  733. * ParenthesizePropertyNameAttribute.cs:
  734. * PropertyDescriptor.cs:
  735. * PropertyDescriptorCollection.cs:
  736. * PropertyTabAttribute.cs:
  737. * ProvidePropertyAttribute.cs:
  738. * RecommendedAsConfigurableAttribute.cs:
  739. * RefreshPropertiesAttribute.cs:
  740. * SByteConverter.cs:
  741. * SingleConverter.cs:
  742. * TimeSpanConverter.cs:
  743. * ToolboxItemFilterAttribute.cs:
  744. * TypeConverter.cs:
  745. * TypeConverterAttribute.cs:
  746. * TypeDescriptor.cs:
  747. * TypeListConverter.cs:
  748. * UInt16Converter.cs:
  749. * UInt32Converter.cs:
  750. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  751. ([email protected]).
  752. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  753. * IExtenderProvider.cs: mono-stylized.
  754. * IComNativeDescriptorHandler.cs:
  755. * SyntaxCheck.cs: new files from Andreas Nahr.
  756. 2003-03-20 Dick Porter <[email protected]>
  757. * Win32Exception.cs: Made the fallback error more useful by
  758. reporting the error number
  759. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  760. * MarshalByValueComponent.cs: removed a monotodo.
  761. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  762. * Win32Exception.cs: added error code 2.
  763. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  764. * Win32Exception.cs: implemented GetObjectData ().
  765. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  766. * RunInstallerAttribute.cs: New file.
  767. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  768. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  769. 2003-02-05 Alan Tam <[email protected]>
  770. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  771. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  772. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  773. to bug #37380, mcs complained about this when compiling System.Data.
  774. 2003-01-08 Dick Porter <[email protected]>
  775. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  776. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  777. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  778. implements it. It's done for GetProperties and should be done for the
  779. rest of methods present in ICustomTypeDescriptor.
  780. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  781. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  782. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  783. * DefaultValueAttribute.cs: the attribute applies to All.
  784. 2002-11-19 Duncan Mak <[email protected]>
  785. * DesignerAttribute.cs:
  786. * EditorAttribute: Style changes. Gonzalo committed the build
  787. fixes before I did.
  788. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  789. * DesignerAttribute.cs:
  790. * EditorAttribute.cs: fixed the build.
  791. 2002-11-19 Alejandro Snchez Acosta <[email protected]>
  792. * EditorAttribute: implemented.
  793. * DesignerAttribute: implemented.
  794. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  795. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  796. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  797. * ListBindableAttribute.cs: implemented.
  798. 2002-11-02 Duncan Mak <[email protected]>
  799. * InvalidEnumArgumentException.cs: Added.
  800. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  801. * EventHandlerList.cs: fixed bug #29535.
  802. 2002-10-03 Dick Porter <[email protected]>
  803. * Win32Exception.cs: Added ETIMEDOUT
  804. 2002-09-30 Dick Porter <[email protected]>
  805. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  806. 2002-09-17 Asier Llano Palacios <[email protected]>
  807. * CancelEventArgs.cs
  808. * WarningException.cs
  809. * CancelEventHandler.cs
  810. * PropertyChangedEventHandler.cs
  811. * IExtenderProvider.cs: Implemented
  812. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  813. * Component.cs:
  814. * ComponentCollection.cs:
  815. * Container.cs:
  816. * MarshalByValueComponent.cs: IDisposable fixes.
  817. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  818. * BindableSupport.cs:
  819. * Component.cs:
  820. * EventDescriptorCollection.cs:
  821. * ITypeDescriptorContext.cs:
  822. * TypeConverter.cs:
  823. * TypeDescriptor.cs: class status based fixes.
  824. * StringConverter.cs: implemented a couple of methods.
  825. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  826. * EnumConverter.cs: new file.
  827. * TypeConverter.cs: implemented a few simple methods.
  828. * TypeDescriptor.cs:
  829. (GetConverter): initial support for converters of well-known types.
  830. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  831. * DerivedPropertyDescriptor.cs: New file. Internal class.
  832. * PropertyDescriptorCollection.cs: almost fully implemented.
  833. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  834. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  835. * Component.cs: don't die if Disposed is null.
  836. 2002-07-22 Tim Coleman <[email protected]>
  837. * RecommendedAsConfigurableAttribute.cs: new file added
  838. for System.Web.Services build
  839. 2002-07-22 Tim Coleman <[email protected]>
  840. * ExpandableObjectConverter.cs: Fix error with constructor
  841. 2002-07-22 Tim Coleman <[email protected]>
  842. * TypeConverter.cs: Fixed bad stubb function
  843. GetConvertToException ()
  844. 2002-07-22 Tim Coleman <[email protected]>
  845. * ComponentCollection.cs: Added reference to
  846. ReadOnlyCollectionBase to make sure
  847. that we inherit the appropriate methods.
  848. Not sure why the Dispose() method is
  849. required, but left for now.
  850. 2002-07-22 Tim Coleman <[email protected]>
  851. * TypeConverter.cs: Added new stubbs
  852. * BindableAttribute.cs: Added
  853. * BindableSupport.cs: Added
  854. * NotifyParentPropertyAttribute.cs: Added
  855. * ExpandableObjectConverter.cs: Added
  856. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  857. * MemberDescriptor.cs: implemented Attributes and Category.
  858. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  859. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  860. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  861. fixed value for Yes.
  862. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  863. * TypeConverter.cs: added SimplePropertyDescriptor class.
  864. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  865. * ToolboxItemAttribute.cs: New file.
  866. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  867. * DefaultEventAttribute.cs: new file.
  868. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  869. * AttributeCollection.cs: fixlet.
  870. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  871. * AttributeCollection.cs: finished implementation.
  872. * TypeDescriptor.cs: implemented GetAttributes (object).
  873. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  874. * AttributeCollection.cs: initialize member variables.
  875. * RefreshEventArgs.cs: implemented.
  876. * RefreshEventHandler.cs: New file.
  877. * TypeDescriptor.cs: fully stubbed out the remaining method.
  878. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  879. * DefaultPropertyAttribute.cs: New file.
  880. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  881. * TypeConverter.cs: flushed local changes.
  882. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  883. * StringConverter.cs: stubbed out.
  884. * TypeConverter.cs: stubbed the rest out and added some implementation.
  885. Five errors left when compiling System.Web in linux.
  886. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  887. * TypeConverterAttribute.cs: attribute used by
  888. TypeDescriptor.Getconverter ().
  889. * TypeDescriptor.cs: implemented GetConverter in the right way.
  890. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  891. * TypeConverter.cs:
  892. * ITypeDescriptorContext.cs:
  893. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  894. which uses ColorConverter.
  895. 2002-05-12 Daniel Morgan <[email protected]>
  896. * IComponent.cs
  897. * ISite.cs: added using System
  898. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  899. to // TODOs and added using System. The throwing of the exceptions prevented
  900. System.Data from running.
  901. 2002-05-10 Rodrigo Moya <[email protected]>
  902. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  903. not this[index], which issues an 'ambigous call' error on Linux.
  904. 2002-05-07 Rodrigo Moya <[email protected]>
  905. * EventDescriptor.cs: added missing constructors.
  906. * EventDescriptorCollection.cs: fixed interface methods implementation
  907. * IDataErrorInfo.cs:
  908. * IEditableObject.cs: new interfaces.
  909. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  910. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  911. it compile.
  912. 2002-05-03 Rodrigo Moya <[email protected]>
  913. * AttributeCollection.cs:
  914. * EventDescriptor.cs:
  915. * EventDescriptorCollection.cs:
  916. * ICustomTypeDescriptor.cs: new files.
  917. 2002-05-01 Duncan Mak <[email protected]>
  918. * ListChangedType.cs:
  919. * ListChangedEventHandler.cs:
  920. * ListChangedEventArgs.cs: Added to fix build.
  921. 2002-05-01 Miguel de Icaza <[email protected]>
  922. * PropertyDescriptorCollection.cs: Added the IList explicit
  923. implementation methods.
  924. lots of bug fixes to get the build to compile again.
  925. 2002-05-01 Duncan Mak <[email protected]>
  926. * ListSortDirection.cs: EnumChecked.
  927. 2002-05-01 Rodrigo Moya <[email protected]>
  928. * ListSortDirection.cs: new enumeration. Please, somebody run
  929. EnumCheck on it, as I don't have a windows machine.
  930. * PropertyDescriptorCollection.cs: new class.
  931. * ITypedList.cs:
  932. * IBindingList.cs: new interfaces.
  933. 2002-04-28 Duncan Mak <[email protected]>
  934. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  935. implementation. Please use EnumCheck!
  936. 2002-04-28 Rodrigo Moya <[email protected]>
  937. * CollectionChangeAction.cs: new enumeration.
  938. * CategoryAttribute.cs: moved the 'return' keyword to the
  939. end of the method, to avoid compilation errors on Linux for
  940. all CategoryAttribute properties.
  941. 2002-04-28 Rodrigo Moya <[email protected]>
  942. * IListSource.cs:
  943. * ISupportInitialize.cs:
  944. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  945. compilation.
  946. * PropertyChangedEventArgs.cs:
  947. * CollectionChangeEventHandler.cs:
  948. * CollectionChangeEventArgs.cs: implemented.
  949. 2002-04-28 Lawrence Pit <[email protected]>
  950. * Added error code 11001 to Win32Exception, used by Dns.c
  951. 2002-04-04 Dick Porter <[email protected]>
  952. * ISynchronizeInvoke.cs: Needed by Process
  953. 2002-01-23 Dick Porter <[email protected]>
  954. * Win32Exception.cs: implement, with support for looking up
  955. runtime errors.
  956. 2002-01-17 Miguel de Icaza <[email protected]>
  957. * Win32Exception.cs: Add.
  958. 2002-01-05 Ravi Pratap <[email protected]>
  959. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  960. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  961. 2001-10-27 Miguel de Icaza <[email protected]>
  962. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  963. * DesignerSerializationVisibility.cs: New enumeration.
  964. * LocalizableAttribute.cs: Implemented.
  965. * BrowsableAttribute.cs: Implemented.
  966. * DesignOnlyAttribute.cs: Implemented.
  967. * DescriptionAttribute.cs: Implement.
  968. * MemberDescriptor.cs: Implemented.
  969. * CategoryAttribute.cs: implemented.
  970. 2001-08-21 Nick Drochak <[email protected]>
  971. * Component.cs: Eliminated compile errors by removing redundant fields and
  972. using the ISite member instead. Also raised the Disposed event, but not
  973. sure if it's correct now. Look for FIXME in the comments.
  974. 2001-08-02 Miguel de Icaza <[email protected]>
  975. * EventHandlerList.cs: New file.
  976. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  977. ComponentCollection.cs, ISite.cs: New classes