ChangeLog 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. 2009-06-16 Marek Habersack <[email protected]>
  2. * Makefile: warn if the 4.0 assembly is compiled without
  3. System.Core
  4. * net_4_0_System.Web.dll.sources: added. System.Web.Routing and
  5. System.Web.Abstractions are part of System.Web.dll in the 4.0
  6. profile.
  7. Added System.Web.Routing/PageRouteHandler.cs,
  8. System.Web.UI.WebControls/IDataBoundControl.cs,
  9. System.Web.UI.WebControls/IDataBoundItemControl.cs,
  10. System.Web.UI.WebControls/IDataBoundListControl.cs,,
  11. System.Web.UI.WebControls/IFieldControl.cs
  12. 2009-06-04 Marek Habersack <[email protected]>
  13. * Makefile (TEST_RESOURCE_FILES): added
  14. Test/mainsoft/NunitWebResources/ServerSideControlsInScriptBlock.aspx
  15. 2009-05-10 Marek Habersack <[email protected]>
  16. * Makefile (TEST_RESOURCE_FILES): added
  17. Test/mainsoft/NunitWebResources/ExpressionInListControl.aspx
  18. 2009-04-28 Marek Habersack <[email protected]>
  19. * Makefile (TEST_RESOURCE_FILES): added
  20. Test/mainsoft/NunitWebResources/LinkInHeadWithEmbeddedExpression.aspx
  21. 2009-04-24 Marek Habersack <[email protected]>
  22. * System.Web_test.dll.sources: added
  23. System.Web.UI/PageParserFilterTest.cs
  24. 2009-04-16 Marek Habersack <[email protected]>
  25. * Makefile (TEST_RESOURCE_FILES): added
  26. Test/mainsoft/NunitWebResources/NoBindForMethodsWithBindInName.aspx
  27. 2009-02-26 Marek Habersack <[email protected]>
  28. * System.Web.dll.sources: added System.Web/IisTraceListener.cs
  29. 2009-02-05 Marek Habersack <[email protected]>
  30. * Makefile (TEST_RESOURCE_FILES): added
  31. Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx and
  32. Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx.cs
  33. Test/mainsoft/NunitWebResources/LoginDisplayRememberMe.aspx
  34. 2009-01-27 Marek Habersack <[email protected]>
  35. * System.Web.dll.sources: added System.Web.Util/SearchPattern.cs
  36. 2009-01-22 Marek Habersack <[email protected]>
  37. * System.Web.dll.sources: added
  38. System.Web.Compilation/BuildManagerCacheItem.cs,
  39. System.Web.Compilation/BuildManagerDirectoryBuilder.cs,
  40. System.Web.Compilation/BuildProviderGroup.cs
  41. * Makefile (SYSTEMCORE_DEP): added. Defines SYSTEMCORE_DEP on the
  42. mcs command line when System.Core is present.
  43. Added the DEVEL define, which defines DEVEL on the mcs command
  44. line. This is used to conditionally compile development helper code in
  45. System.Web.Util.FileUtils (and possibly other stuff later on)
  46. If NO_SYSTEMCORE_DEP is defined System.Web.dll will not be linked
  47. with System.Core.dll and BuildManager will use ReaderWriterLock
  48. instead of ReaderWriterLockSlim.
  49. 2009-01-20 Marek Habersack <[email protected]>
  50. * System.Web.dll.sources: added System.Web.UI.WebControls/Substitution.cs
  51. 2008-12-23 Marek Habersack <[email protected]>
  52. * Makefile (TEST_RESOURCE_FILES): added Test/mainsoft/NunitWebResources/CustomSectionEmptyCollection.aspx
  53. * System.Web_test.dll.sources: added mainsoft/NunitWeb/NunitWeb/CustomSection.cs
  54. 2008-12-12 Dean Brettle <[email protected]>
  55. * System.Web.dll.sources: deleted
  56. System.Web.Configuration_2.0/CapabilitiesChecksum.cs
  57. * Makefile (RESOURCE_FILES_2): deleted
  58. System.Web.Configuration_2.0/RandomRoboBotKeywords.txt
  59. 2008-12-10 Marek Habersack <[email protected]>
  60. * Makefile (TEST_RESOURCE_FILES): added
  61. Test/mainsoft/NunitWebResources/MissingMasterFile.aspx
  62. * System.Web_test.dll.sources: added System.Web.UI/PageParserTest.cs
  63. 2008-12-03 Marek Habersack <[email protected]>
  64. * System.Web_test.dll.sources: added System.Web.UI/DataBinderTest.cs
  65. 2008-12-02 Marek Habersack <[email protected]>
  66. * Makefile (TEST_RESOURCE_FILES): added
  67. Test/mainsoft/NunitWeb/NunitWeb/Resources/Web.mono.config.1.1
  68. 2008-12-01 Marek Habersack <[email protected]>
  69. * Makefile (TEST_RESOURCE_FILES): added
  70. Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.aspx
  71. Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.master
  72. (TEST_MCS_FLAGS): added reference to System.Web.Extensions
  73. 2008-11-25 Marek Habersack <[email protected]>
  74. * System.Web.dll.sources: added
  75. System.Web.Compilation/AspComponent.cs
  76. 2008-11-21 Marek Habersack <[email protected]>
  77. * Makefile (TEST_RESOURCE_FILES): added
  78. Test/mainsoft/NunitWebResources/InvalidPropertyBind1.aspx
  79. Test/mainsoft/NunitWebResources/InvalidPropertyBind2.aspx
  80. Test/mainsoft/NunitWebResources/InvalidPropertyBind3.aspx
  81. Test/mainsoft/NunitWebResources/InvalidPropertyBind4.aspx
  82. Test/mainsoft/NunitWebResources/ValidPropertyBind1.aspx
  83. Test/mainsoft/NunitWebResources/ValidPropertyBind2.aspx
  84. Test/mainsoft/NunitWebResources/ValidPropertyBind3.aspx
  85. Test/mainsoft/NunitWebResources/ValidPropertyBind4.aspx
  86. Test/mainsoft/NunitWebResources/ReadWritePropertyControl.ascx
  87. * Test/tools/web.config: disabled batch compilation and enabled
  88. debugging.
  89. 2008-11-15 Marek Habersack <[email protected]>
  90. * System.Web.dll.sources: added System.Web.UI/INonBindingContainer.cs
  91. 2008-10-17 Jonathan Pryor <[email protected]>
  92. * Test/Makefile: Add doc-update target support.
  93. 2008-10-09 Marek Habersack <[email protected]>
  94. * System.Web.dll.sources: added System.Web.Configuration_2.0/MonoSettingsSection.cs
  95. 2008-09-13 Atsushi Enomoto <[email protected]>
  96. * System.Web.dll.sources: added System.Web.UI/IAutoFieldGenerator.cs
  97. and System.Web.UI.WebControls/IPersistedSelector.cs.
  98. 2008-09-13 Atsushi Enomoto <[email protected]>
  99. * System.Web.dll.sources: added
  100. System.Web.UI/CssClassPropertyAttribute.cs.
  101. 2008-09-13 Atsushi Enomoto <[email protected]>
  102. * System.Web.dll.sources: added System.Web.UI/IBindableControl.cs.
  103. 2008-09-13 Atsushi Enomoto <[email protected]>
  104. * System.Web.dll.sources: added
  105. System.Web.UI.WebControls/DataBoundControlMode.cs.
  106. 2008-08-14 Marek Habersack <[email protected]>
  107. * Makefile: allow compiling with the DEBUG, TRACE and MONO_TRACE
  108. preprocessor symbols defined.
  109. 2008-06-18 Marek Habersack <[email protected]>
  110. * System.Web.dll.sources: added
  111. System.Web.Caching/SqlCacheDependency.cs
  112. 2008-04-18 Marek Habersack <[email protected]>
  113. * Makefile (OTHER_LIB_MCS_FLAGS): remove dependency on
  114. System.Windows.Forms and define INSIDE_SYSTEM_WEB during
  115. compilation.
  116. * System.Web.dll.sources: include
  117. ../Managed.Windows.Forms/System.Resources/ResXResourceReader.cs
  118. ../Managed.Windows.Forms/System.Resources/ResXResourceWriter.cs
  119. ../Managed.Windows.Forms/System.Resources/ResXFileRef.cs
  120. ../Managed.Windows.Forms/System.Resources/ResXDataNode.cs
  121. ../Managed.Windows.Forms/System.Resources/ResXNullRef.cs
  122. directly.
  123. 2008-04-09 Marek Habersack <[email protected]>
  124. * System.Web.dll.sources: added System.Web.Compilation/AppWebReferencesCompiler.cs
  125. 2008-04-08 Marek Habersack <[email protected]>
  126. * System.Web.dll.sources: added System.Web/VirtualPath.cs
  127. 2008-03-09 Dean Brettle <[email protected]>
  128. * System.Web_test.dll.sources: added
  129. System.Web.UI.WebControls.Adapters/MenuAdapterTest.cs
  130. System.Web.UI.WebControls.Adapters/WebControlAdapterTest.cs
  131. System.Web.UI.WebControls.Adapters/HierarchicalDataBoundControlAdapterTest.cs
  132. System.Web.UI.WebControls.Adapters/DataBoundControlAdapterTest.cs
  133. System.Web.UI.WebControls.Adapters/HideDisabledControlAdapterTest.cs
  134. System.Web.UI.Adapters/PageAdapterTest.cs
  135. System.Web.UI.Adapters/ControlAdapterTest.cs
  136. * Makefile (RESOURCE_FILES_2): added
  137. System.Web.Configuration_2.0/RandomRoboBotKeywords.txt
  138. * Makefile (TEST_RESOURCE_FILES): added
  139. Test/mainsoft/NunitWebResources/PageWithAdapter.aspx
  140. * System.Web.dll.sources: added
  141. System.Web.Configuration_2.0/CapabilitiesBuild.cs
  142. System.Web.Configuration_2.0/CapabilitiesChecksum.cs
  143. System.Web.Configuration_2.0/CapabilitiesResult.cs
  144. System.Web.Configuration_2.0/ICapabilitiesProcess.cs
  145. System.Web.Configuration_2.0/nBrowser/Result.cs
  146. System.Web.Configuration_2.0/nBrowser/NodeTypes.cs
  147. System.Web.Configuration_2.0/nBrowser/Identification.cs
  148. System.Web.Configuration_2.0/nBrowser/File.cs
  149. System.Web.Configuration_2.0/nBrowser/Build.cs
  150. System.Web.Configuration_2.0/nBrowser/Node.cs
  151. System.Web.Configuration_2.0/nBrowser/Exception.cs
  152. 2008-03-01 Marek Habersack <[email protected]>
  153. * Makefile: added a dependency on Mono.Web.dll
  154. * System.Web.dll.sources: removed SystemSettingsMapper public APIs
  155. and moved them to the Mono.Web assembly.
  156. 2008-02-07 Vladimir Krasnov <[email protected]>
  157. * System.Web20.csproj: added ObjectInputStream.cs and
  158. ObjectOutputStream.cs
  159. 2007-12-30 Vladimir Krasnov <[email protected]>
  160. * System.Web.dll.sources: added AspNetDBSchemaChecker.cs
  161. * System.Web20.csproj: added AspNetDBSchemaChecker.cs
  162. 2007-12-19 Juraj Skripsky <[email protected]>
  163. * System.Web.dll.sources: removed TimeoutManager.cs
  164. 2007-12-08 Marek Habersack <[email protected]>
  165. * SQLiteProviders_DatabaseSchema.sql: added
  166. * Makefile: added support for compiling .resx resources.
  167. Added SQLiteProviders_DatabaseSchema.sql to EXTRA_DISTFILES.
  168. Added new resource files to EXTRA_DISTFILES
  169. Added a RESX_DIST variable which contains all the .resx files. The
  170. variable is used by RESX_RES and by EXTRA_DISTFILES.
  171. 2007-11-23 Daniel Nauck <[email protected]>
  172. * System.Web.dll.sources: added
  173. System.Web/TraceContextRecord.cs
  174. * System.Web_test.dll.sources: added
  175. System.Web/TraceContextRecordTest.cs
  176. 2007-11-23 Marek Habersack <[email protected]>
  177. * System.Web.dll.sources: added
  178. System.Web.Configuration_2.0/IConfigMapPath.cs and
  179. System.Web.Configuration_2.0/IConfigMapPathFactory.cs
  180. 2007-11-22 Daniel Nauck <[email protected]>
  181. * System.Web.dll.sources: added
  182. System.Web/IPartitionResolver.cs
  183. 2007-11-22 Marek Habersack <[email protected]>
  184. * System.Web.dll.sources: added System.Web/HttpCacheVaryByContentEncodings.cs
  185. Added System.Web/RequestNotification.cs, System.Web/RequestNotificationStatus.cs
  186. 2007-11-22 Daniel Nauck <[email protected]>
  187. * System.Web.dll.sources: added
  188. System.Web/WebPageTraceListener.cs
  189. 2007-11-06 Marek Habersack <[email protected]>
  190. * System.Web.dll.sources: added
  191. System.Web.UI.WebControls/ChildTable.cs to compilation, for MS.NET
  192. compatibility.
  193. 2007-11-01 Marek Habersack <[email protected]>
  194. * System.Web.dll.sources: added MachineKeySectionUtils.cs
  195. 2007-10-24 Marek Habersack <[email protected]>
  196. * System.Web.dll.sources: added
  197. System.Web.Configuration/FileMatchingInfo.cs
  198. 2007-08-30 Marek Habersack <[email protected]>
  199. * System.Web.dll.sources: added MachineKeyRegistryStorage.cs
  200. 2007-08-14 Gert Driesen <[email protected]>
  201. * System.Web_test.dll.sources: Added AggregateCacheDependencyTest.cs.
  202. 2007-06-28 Vladimir Krasnov <[email protected]>
  203. * System.Web20.csproj: added HttpWorkerRequest.jvm.cs,
  204. HttpResponseStream.jvm.cs to the project
  205. 2007-06-15 Gert Driesen <[email protected]>
  206. * System.Web_test.dll.sources: Added LosFormatterTest.cs.
  207. 2007-06-12 Vladimir Krasnov <[email protected]>
  208. * System.Web20.csproj: added CompilationSection.cs
  209. 2007-05-15 Marek Habersack <[email protected]>
  210. * System.Web.dll.sources: added
  211. System.Web.Compilation/XsdBuildProvider.cs
  212. 2007-04-18 Marek Habersack <[email protected]>
  213. * Makefile (System.Web/UplevelHelper.cs): use binary in the
  214. net_1_1_bootstrap profile.
  215. 2007-04-17 Wade Berrier <[email protected]>
  216. * Makefile: use BUILT_SOURCES for UplevelHelper.cs instead of including it in the
  217. .sources file. Include UplevelHelperDefinitions.xml for 'make dist'.
  218. 2007-04-17 Jonathan Chambers <[email protected]>
  219. * Makefile: Fix build, add $(TEST_RUNTIME) before call to culevel.
  220. 2007-04-17 Marek Habersack <[email protected]>
  221. * Makefile (System.Web/UplevelHelper.cs): autogenerate the file if
  222. it doesn't exist.
  223. * System.Web.dll.sources: added the System.Web/UplevelHelper.cs
  224. file. It is autogenerated by the culevel compiler.
  225. * UplevelHelperDefinitions.xml: added default uplevel browsers
  226. definition file. This serves as input to the culevel compiler in
  227. the tools directory at the top of the mcs tree.
  228. 2007-04-12 Vladimir Krasnov <[email protected]>
  229. * System.Web20.csproj:
  230. * System.Web.dll.sources: added HttpParamsCollection.cs
  231. 2007-04-01 Vladimir Krasnov <[email protected]>
  232. * System.Web20.csproj:
  233. * System.Web.dll.sources: HeadersCollection.cs, BaseParamsCollection.cs
  234. 2007-03-21 Marek Habersack <[email protected]>
  235. * System.Web.dll.sources: added UnknownAttributeDescriptor.cs
  236. 2007-02-20 Gert Driesen <[email protected]>
  237. * System.Web_test.dll.sources: Removed duplicate ImageFieldTest.cs
  238. entry.
  239. 2007-02-19 YonikKalin <[email protected]>
  240. * Add System.Web_test.dll.sources add ChangePasswordTest.cs
  241. 2007-02-18 Eyal Alaluf <[email protected]>
  242. * run-mono-tests.bat: Add J2EE jar to classpath.
  243. 2007-02-12 Marek Habersack <[email protected]>
  244. * System.Web.dll.sources: added PreservationFile.cs
  245. 2007-01-15 Marek Habersack <[email protected]>
  246. * System.Web.dll.sources: Added WsdlBuildProvider.cs
  247. 2007-01-14 Eyal Alaluf <[email protected]>
  248. * System.Web20.vmwcsproj: added .jvm files for Control.cs, Page.cs,
  249. HttpRequest.cs & HttpContext.cs
  250. 2007-01-07 Vladimir Krasnov <[email protected]>
  251. * System.Web20.vmwcsproj: added ProfileParameter.cs
  252. * System.Web.dll.sources: added ProfileParameter.cs
  253. 2007-01-07 Vladimir Krasnov <[email protected]>
  254. * System.Web20.vmwcsproj: added AppResourcesCompiler.jvm.cs to project
  255. 2007-01-05 Marek Habersack <[email protected]>
  256. * System.Web.dll.sources: Add new app resources compiler files.
  257. 2006-12-20 Marek Habersack <[email protected]>
  258. * System.Web.dll.sources: adjustments for the 2.0 SessionState
  259. changes.
  260. 2006-12-09 Marek Habersack <[email protected]>
  261. * System.Web.dll.sources: Add the HiddenFieldPageStatePersister.cs
  262. file to compilation
  263. 2006-12-05 Yoni Klain <[email protected]>
  264. * MakeFile added new resources TextBoxTestlPage.aspx for TextBoxTest.cs
  265. 2006-11-29 Yoni Klain <[email protected]>
  266. * MakeFile added new resources ListControlPage.aspx for ListControlTest.cs
  267. 2006-11-28 Miguel de Icaza <[email protected]>
  268. * Rationalize the user of MonoTODOs.
  269. - Removed all the TODOs that were only overwritten methods
  270. and had no further information.
  271. - Methods that threw exceptions now have the message "Not
  272. implemnted".
  273. - Methods that return some constant are declared like
  274. that.
  275. - Removed a bunch of stale MonoTODOs that had not been
  276. removed.
  277. 2006-11-27 Yoni Klain <[email protected]>
  278. * MakeFile added new resources NoEventValidation.aspx for ImageButtonTest.cs
  279. 2006-11-09 Vladimir Krasnov <[email protected]>
  280. * System.Web_test.dll.sources: added PasswordRecoveryTest.cs,
  281. PasswordRecoveryTest.cs
  282. * Makefile: added WebControl.config resource
  283. 2006-11-09 Vladimir Krasnov <[email protected]>
  284. * System.Web.dll.sources: added PasswordRecovery.cs
  285. * System.Web20.vmwcsproj: added PasswordRecovery.cs
  286. 2006-11-22 Yoni Klain <[email protected]>
  287. * MakeFile added new resources AsyncPage.aspx,PageCultureTest.aspx for PageTest.cs
  288. 2006-11-21 Yoni Klain <[email protected]>
  289. * MakeFile added new resources Theme2.skin and adapters.browser for ControlTest.cs
  290. 2006-11-20 Marek Habersack <[email protected]>
  291. * System.Web.dll.sources: Added
  292. System.Web.UI.WebParts/PersonalizableAttribute.cs
  293. 2006-11-17 Marek Habersack <[email protected]>
  294. * System.Web.dll.sources: Added
  295. System.Web.Compilation/ForceCopyBuildProvider.cs and
  296. System.Web.Compilation/MasterPageBuildProvider.cs and
  297. System.Web.UI/PageLifeCycle.cs
  298. 2006-11-09 Vladimir Krasnov <[email protected]>
  299. * System.Web.dll.sources: added DataSourceCasheManager.cs
  300. * System.Web20.vmwcsproj: added DataSourceCasheManager.cs
  301. 2006-11-08 Marek Habersack <[email protected]>
  302. * System.Web.dll.sources: added the App_Code compiler
  303. 2006-11-05 Vladimir Krasnov <[email protected]>
  304. * System.Web.dll.sources: added System.Web.Profile/ProfileParser.cs
  305. * System.Web20.vmwcsproj:
  306. added System.Web.Profile/ProfileParser.jvm.cs
  307. 2006-10-23 Merav Sudri <[email protected]
  308. *System.Web_test.dll.sources : FormParameterTest and ParameterTest were added.
  309. 2006-10-18 Marek Habersack <[email protected]>
  310. * System.Web.dll.sources: add global/local resources compiler
  311. files.
  312. * Makefile: System.Windows.Forms.dll is needed for global/local
  313. resource compiler now.
  314. 2006-10-17 Vladimir Krasnov <[email protected]>
  315. * run-mono-tests.bat: added Derby to tests classpath
  316. 2006-10-11 Merav Sudri <[email protected]>
  317. The following new tests were added:
  318. * System.Web.UI.WebControls.SessionParameterTest.cs
  319. * System.Web.UI.WebControls.QueryStringParameterTest.cs
  320. * System.Web.UI.WebControls.ControlParameterTest.cs
  321. * System.Web.UI.WebControls.CookieParameterTest.cs
  322. 2006-10-10 Yoni Klain <[email protected]>
  323. * System.Web.UI.WebControls.CustomValidatorTest.cs new tests added;
  324. 2006-10-04 Yoni Klain <[email protected]>
  325. * System.Web.UI.Page.Test.cs new tests added;
  326. * MakeFile: add new resources for PageTest.cs :
  327. Test/mainsoft/NunitWebResources/PageLifecycleTest.aspx ;
  328. Test/mainsoft/NunitWebResources/PageValidationTest.aspx ;
  329. 2006-10-03 Hagit Yidov <[email protected]>
  330. * ImageMapTest.cs: New test was added
  331. * HotSpotTest.cs: New test was added
  332. * HotSpotCollectionTest.cs: New test was added
  333. * CircleHotSpot.cs: New test was added
  334. * RectangleHotSpot.cs: New test was added
  335. * PolygonHotSpot.cs: New test was added
  336. 2006-09-28 Yoni Klain <[email protected]>
  337. * MakeFile: add new resources for MasterPageTest.cs :
  338. Test/mainsoft/NunitWebResources/MasterTypeTest1.aspx ;
  339. Test/mainsoft/NunitWebResources/MasterTypeTest2.aspx ;
  340. Test/mainsoft/NunitWebResources/MyDerived.master ;
  341. Test/mainsoft/NunitWebResources/MyPageWithDerivedMaster.aspx ;
  342. 2006-09-26 Boris Kirzner <[email protected]>
  343. * run-mono-tests.bat: log files naming fix.
  344. 2006-09-19 Yoni Klain <[email protected]>
  345. * System.Web_test.dll.sources: add new \System.Web.UI.WebControls\CrossPagePostingTest.cs
  346. * MakeFile: add new resources for CrossPagePostingTest.cs :
  347. Test/mainsoft/NunitWebResources/CrossPagePosting1.aspx ;
  348. Test/mainsoft/NunitWebResources/CrossPagePosting2.aspx ;
  349. 2006-09-18 Yoni Klain <[email protected]>
  350. * System.Web_test.dll.sources: add new \System.Web.UI.WebControls\MappingUrlTest.cs
  351. * MakeFile: add new resources for MappingUrlTest.cs :
  352. Test/mainsoft/NunitWebResources/Mapping.aspx ;
  353. Test/mainsoft/NunitWebResources/Mapping1.aspx ;
  354. Test/mainsoft/NunitWebResources/WebMapping.config
  355. 2006-09-17 Yoni Klain <[email protected]>
  356. * System.Web_test.dll.sources: add new \System.Web.UI\TemplateControlTest.cs
  357. * MakeFile: add new resources for TemplateControlTest.cs
  358. Test/mainsoft/NunitWebResources/TemplateUserControl.ascx \
  359. Test/mainsoft/NunitWebResources/EvalTest.aspx \
  360. 2006-09-14 Boris Kirzner <[email protected]>
  361. * run-mono-tests.bat: fixes for TARGET_JVM tests run.
  362. 2006-04-09 Boris Kirzner <[email protected]>
  363. * run-mono-tests.bat: fixes for TARGET_JVM NET_2_0 tests run.
  364. 2006-08-27 Roei Erez <[email protected]>
  365. * WebConfigurationManager.cs: corrections for static variables on mainsoft platform
  366. 2006-08-28 Yoni Klain <[email protected]>
  367. * System.Web_test.dll.sources: add new \System.Web.UI\ClientScriptManagerTest.cs
  368. * MakeFile: add new resources for ClientScriptMenagerTest.cs
  369. Test/mainsoft/NunitWebResources/EventValidationTest2.aspx \
  370. Test/mainsoft/NunitWebResources/EventValidationTest1.aspx \
  371. Test/mainsoft/NunitWebResources/ClientScript.js \
  372. 2006-08-27 Hagit Yidov <[email protected]>
  373. * TreeNodeBindingCollectionTest.cs: New test was added
  374. * TreeNodeBindingTest.cs: New test was added
  375. * TreeNodeCollectionTest.cs: New test was added
  376. * TreeNodeStyleCollectionTest.cs: New test was added
  377. * TreeNodeTest.cs: New test was added
  378. * TreeViewTest.cs: Test was updated
  379. 2006-08-10 Hagit Yidov <[email protected]>
  380. * ImageMapTest.cs: New test was added
  381. * HotSpotTest.cs: New test was added
  382. * HotSpotCollectionTest.cs: New test was added
  383. * CircleHotSpot.cs: New test was added
  384. * RectangleHotSpot.cs: New test was added
  385. * PolygonHotSpot.cs: New test was added
  386. 2006-08-23 Igor Zelmanovich <[email protected]>
  387. * MenuTest.cs: added tests
  388. 2006-08-23 Igor Zelmanovich <[email protected]>
  389. * StyleTest.cs:
  390. added tests ensure that AddAttributesToRender method calls FillStyleAttributes
  391. and style attributes work properly.
  392. 2006-08-23 Igor Zelmanovich <[email protected]>
  393. * FontInfoTest.cs: added test
  394. 2006-08-22 Igor Zelmanovich <[email protected]>
  395. * FontInfoTest.cs: added test: CopyFrom and MergeWith behave differently between 1.1 and 2.0
  396. 2006-08-17 Igor Zelmanovich <[email protected]>
  397. * StyleTest.cs: added test ensures that IsEmpty returns false for
  398. empty style that was registered with StyleSheet
  399. 2006-08-17 Igor Zelmanovich <[email protected]>
  400. * StyleTest.cs: new test was added, fixed Style_CssClass test
  401. 2006-08-16 Yoni Klain <[email protected]>
  402. * DataSourceViewTest.cs; DataSourceControlTest.cs : new tests
  403. 2006-08-15 Igor Zelmanovich <[email protected]>
  404. * MenuTest.cs: new test was added, removed NotWorking attributes
  405. 2006-08-15 Igor Zelmanovich <[email protected]>
  406. * MenuTest.cs: new tests were added.
  407. 2006-08-14 Andrew Skiba <[email protected]>
  408. * TableTest.cs: new test added.
  409. 2006-08-14 Igor Zelmanovich <[email protected]>
  410. * MenuTest.cs: added test showing that items initialization should occurs only once
  411. 2006-08-10 Yoni Klain <[email protected]>
  412. * CallBackTest.cs: New test was added
  413. 2006-08-010 Hagit Yidov <[email protected]>
  414. * ImageMapTest.cs: New test was added
  415. * HotSpotTest.cs: New test was added
  416. * HotSpotCollectionTest.cs: New test was added
  417. * CircleHotSpot.cs: New test was added
  418. * RectangleHotSpot.cs: New test was added
  419. * PolygonHotSpot.cs: New test was added
  420. >>>>>>> .r64424
  421. 2006-08-10 Igor Zelmanovich <[email protected]>
  422. * MenuTest.cs: new tests were added
  423. 2006-08-09 Igor Zelmanovich <[email protected]>
  424. * HierarchicalDataBoundControlTest.cs: added new tests
  425. 2006-08-08 Merav Sudri <[email protected]>
  426. * ObjectDataSourceTest.cs: SetUp with delay was added to the test.
  427. 2006-08-08 Merav Sudri <[email protected]>
  428. * ObjectDataSourceTest.cs: New test was added
  429. 2006-08-08 Yoni Klain <[email protected]>
  430. * LoginViewTest.cs: added new tests and new resources for tests
  431. * ObjectDataSourceView.cs: added new tests
  432. 2006-08-06 Vladimir Krasnov <[email protected]>
  433. * CommandFieldTest.cs:
  434. * GridViewRowCollectionTest.cs:
  435. * MultiViewTest.cs:
  436. * SiteMapPathTest.cs:
  437. * ViewTest.cs:
  438. * XmlDataSourceTest.cs: removed NotWorking attributes
  439. 2006-08-06 Vladimir Krasnov <[email protected]>
  440. * ThemeTest.cs: fixed test resource
  441. 2006-08-06 Vladimir Krasnov <[email protected]>
  442. * ThemeTest.cs: tests added
  443. 2006-08-01 Vladimir Krasnov <[email protected]>
  444. * BulletedListTest.cs: fixed new line in render tests
  445. 2006-07-31 Vladimir Krasnov <[email protected]>
  446. * WizardStepBaseTest.cs:
  447. * MasterPageTest.cs
  448. * MenuTest.cs
  449. * GridViewTest.cs: removed NotWorking attributes
  450. 2006-07-30 Andrew Skiba <[email protected]>
  451. * FormViewTest.cs: fix few tests.
  452. 2006-07-30 Vladimir Krasnov <[email protected]>
  453. * WizardTest.cs: fixed test, removed NotWorking attributes
  454. 2006-07-27 Andrew Skiba <[email protected]>
  455. * FormViewTest.cs: fix few tests.
  456. 2006-07-27 Andrew Skiba <[email protected]>
  457. * DetailsViewTest.cs: fix tests.
  458. 2006-07-26 Vladimir Krasnov <[email protected]>
  459. * XmlDataSourceTest.cs: fixed aspx based tests
  460. 2006-07-26 Andrew Skiba <[email protected]>
  461. * FormViewTest.cs: visual studio ifdef.
  462. 2006-07-26 Andrew Skiba <[email protected]>
  463. * DetailsViewRowTest.cs: fix the test (incomplete).
  464. 2006-07-26 Andrew Skiba <[email protected]>
  465. * DetailsViewTest.cs: fix few tests.
  466. 2006-07-26 Yoni Klain <[email protected]>
  467. * XmlDataSourceTest.cs: Add new tests.
  468. 2006-07-25 Vladimir Krasnov <[email protected]>
  469. * MultiViewTest.cs: added test
  470. 2006-07-25 Vladimir Krasnov <[email protected]>
  471. * GridViewTest.cs:
  472. * ViewTest.cs:
  473. * WizardStepBaseTest.cs:
  474. * WizardTest.cs: fixed tests
  475. 2006-07-25 Merav Sudri <[email protected]>
  476. * FormViewTest.cs: Add three postback tests.
  477. 2006-07-24 Andrew Skiba <[email protected]>
  478. * DetailsViewTest.cs: split a test in two, working and not working.
  479. 2006-07-23 Andrew Skiba <[email protected]>
  480. * DetailsViewTest.cs: fix the test.
  481. 2006-07-20 Andrew Skiba <[email protected]>
  482. * DetailsViewTest.cs: more precise lifetime flow check.
  483. 2006-07-20 Andrew Skiba <[email protected]>
  484. * DetailsViewTest.cs: add EnsureChildControls basic test.
  485. 2006-07-20 Andrew Skiba <[email protected]>
  486. * DetailsViewTest.cs: add a new assert
  487. 2006-07-20 Vladimir Krasnov <[email protected]>
  488. * PagerSettingsTest.cs: fixed PropertyChanged test
  489. 2006-07-19 Andrew Skiba <[email protected]>
  490. * DetailsViewTest.cs: #if VISUAL_STUDIO
  491. 2006-07-20 Yoni Klain <[email protected]>
  492. * GridViewTest.cs: added new tests
  493. 2006-07-19 Andrew Skiba <[email protected]>
  494. * DetailsViewTest.cs: #if NET_2_0
  495. * TableStyleTest.cs: Category ("NotWorking")
  496. 2006-07-19 Andrew Skiba <[email protected]>
  497. * TableStyleTest.cs: add a test for BackImageUrl rendering
  498. 2006-07-19 Merav Sudri <[email protected]>
  499. * DetailsViewRowTest.cs: added new test
  500. * DetailsViewRowCollectionTest.cs: added new test
  501. * FormViewRowTest.cs: added new test
  502. * FormViewTest.cs: added new test
  503. 2006-07-19 Merav Sudri <[email protected]>
  504. * DetailsViewTest.cs: added new test
  505. 2006-07-18 Vladimir Krasnov <[email protected]>
  506. * GridViewTest.cs: removed NotWorking attributes, added tests
  507. 2006-07-17 Yoni Klain <[email protected]>
  508. * SiteMapPathTest.cs: added new test
  509. 2006-07-17 Andrew Skiba <[email protected]>
  510. * CommandFieldTest.cs: added positive flow test for
  511. ValidateSupportsCallback
  512. 2006-07-17 Andrew Skiba <[email protected]>
  513. * WebControlTest.cs: added tests for display style
  514. 2006-07-17 Vladimir Krasnov <[email protected]>
  515. * GridViewTest.cs: added new test
  516. 2006-07-16 Vladimir Krasnov <[email protected]>
  517. * BoundFieldTest.cs: added new test
  518. 2006-07-16 Andrew Skiba <[email protected]>
  519. * SiteMapPathTest.cs: fix expected results for dotnet in 3 tests;
  520. add 2 new asserts for InitializeItem
  521. 2006-07-16 Vladimir Krasnov <[email protected]>
  522. * BulletedListTest.cs: removed NotWorking attributes
  523. 2006-07-16 Yoni Klain <[email protected]>
  524. * added WizardStepBaseTest.cs; WizardStepTest.cs; WizardStepCollectionTest.cs
  525. 2006-07-13 Gonzalo Paniagua Javier <[email protected]>
  526. * DataListTest.cs: new test for templated items. Patch by Jaros?aw
  527. Pawlak.
  528. 2006-07-12 Yoni Klain <[email protected]>
  529. * WizardTest.cs added new tests;
  530. * SiteMapPathTest.cs removed remarks
  531. 2006-07-11 Vladimir Krasnov <[email protected]>
  532. * GridViewTest.cs: added GridView_RenderingCheckBoxField2
  533. for testing of autogenerated checkbox column
  534. 2006-07-11 Yoni Klain <[email protected]>
  535. * ImageFieldTest.cs added new tests;
  536. 2006-07-10 Andrew Skiba <[email protected]>
  537. * SiteMapPathTest.cs: fix expected results for IE user-agent
  538. >>>>>>> .r62654
  539. 2006-07-09 Yoni Klain <[email protected]>
  540. * MenuTest.cs changes on postback;
  541. 2006-07-09 Yoni Klain <[email protected]>
  542. * ContentTest.cs changes on event test;
  543. 2006-07-07 Yoni Klain <[email protected]>
  544. * added PagerSettingsTest.cs;GridViewRowCollectionTest.cs;
  545. ContentTest.cs;GridViewRowTest.cs
  546. 2006-07-07 Yoni Klain <[email protected]>
  547. * GridViewTest.cs, MenuTest.cs added PostBack tests
  548. 2006-07-05 Vladimir Krasnov <[email protected]>
  549. * added CreateUserWizardTest.cs
  550. 2006-07-03 Vladimir Krasnov <[email protected]>
  551. * BoundFieldTest.cs, ButtonFieldTest.cs, DataControlFieldTest.cs
  552. HyperLinkFieldTest.cs, ImageFieldTest.cs: removed NotWorking
  553. attribute from Initialize test case
  554. 2006-06-28 Juraj Skripsky <[email protected]>
  555. * RegularExpressionValidatorTest.cs: check for automatic wrapping of
  556. expression with "^...$".
  557. 2006-06-28 Vladimir Krasnov <[email protected]>
  558. * Added WizardTest.cs: Wizard control basic tests
  559. 2006-06-25 Yoni Klain <[email protected]>
  560. * GridViewTest.cs;
  561. * AutoGeneratedFieldTest.cs;BoundFieldTest.cs;DataControlFieldTest.cs;
  562. * DataControlFieldCollectionTest.cs;DataKeyArrayTest.cs;
  563. * DataKeyTest.cs;ButtonFieldBaseTest.cs;HyperLinkFieldTest.cs;
  564. * CommandFieldTest.cs;CheckBoxFieldTest.cs;TemplateFieldTest.cs
  565. * GridView test and GridView subclasses tests.
  566. 2006-06-25 Konstantin Triger <[email protected]>
  567. * FormViewTest.cs: test for PageIndex bounds.
  568. 2006-06-21 Andrew Skiba <[email protected]>
  569. * ThemeTest.cs, SiteMapPathTest.cs, FormViewTest.cs, MenuTest.cs,
  570. MasterPageTest.cs: NunitWeb refactoring
  571. 2006-06-21 Andrew Skiba <[email protected]>
  572. * FileUploadTest.cs: add new tests for FileUpload control
  573. 2006-06-20 Andrew Skiba <[email protected]>
  574. * ThemeTest.cs: add new test for UrlPropertyAttribute
  575. 2006-06-20 Andrew Skiba <[email protected]>
  576. * FormViewTest.cs: add new test for CssClass attribute
  577. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  578. * RepeaterItemCollectionTest.cs: New file.
  579. 2006-06-14 Andrew Skiba <[email protected]>
  580. * MenuTest.cs: add test for CssClass attribute
  581. 2006-06-13 Juraj Skripsky <[email protected]>
  582. * CalendarTest.cs (SelectDateProperty): Make sure SelectedDate is
  583. automatically "rounded" to the same date with time set to 12:00am.
  584. 2006-05-28 Andrew Skiba <[email protected]>
  585. * ThemeTest.cs, MenuTest.cs, MasterPageTest.cs: rename methods to make
  586. nunit quiet
  587. 2006-05-21 Yoni Klain <[email protected]>
  588. * ThemeTest.cs - Add new test
  589. 2006-05-21 Yoni Klain <[email protected]>
  590. * MasterPageTest.cs - add attributes for NotWorking tests
  591. * MenuTest.cs - sleep time changed
  592. 2006-05-21 Yoni Klain <[email protected]>
  593. * Added MasterPageTest.cs
  594. 2006-05-21 Yoni Klain <[email protected]>
  595. * MenuTest.cs, SiteMapPathTest.cs ,BulletedListTest.cs - add attributes for NotWorking tests
  596. 2006-05-21 Yoni Klain <[email protected]>
  597. * Added ContentTest.cs
  598. 2006-05-17 Andrew Skiba <[email protected]>
  599. * MenuTest.cs, SiteMapPathTest.cs: multiple changes, now passes on
  600. dotnet with mono makefile
  601. 2006-05-14 Yoni Klain <[email protected]>
  602. * Added MenuTest.cs
  603. 2006-05-14 Yoni Klain <[email protected]>
  604. * Added SiteMapPathTest.cs
  605. 2006-04-30 Yoni Klain <[email protected]>
  606. * Added SiteMapDataSourceTest.cs
  607. 2006-04-23 Tal Klahr <[email protected]>
  608. * Added ViewTest.cs and MultiViewTest.cs
  609. 2006-04-25 Konstantin Triger <[email protected]>
  610. * FormViewTest.cs: added test for PageCount.
  611. 2006-04-20 Konstantin Triger <[email protected]>
  612. * FormViewTest.cs: added test for PageIndex.
  613. 2006-04-06 Konstantin Triger <[email protected]>
  614. * DataListTest.cs: added test for DataSourceID.
  615. 2006-04-06 Konstantin Triger <[email protected]>
  616. * LoginTest.cs: Added LayoutTemplate property Test.
  617. * LoginViewTest.cs: Added AnonymousTemplate property Test.
  618. 2006-03-28 Alexandre Miguel Pedro Gomes <[email protected]>
  619. * FontInfoTest.cs: Implemented ShouldSerializeNames tests
  620. 2006-03-06 Vladimir Krasnov <[email protected]>
  621. * CalendarTest.cs: refactoring, inline delegates replaced with
  622. regular ones.
  623. * LinkButtonTest.cs: same
  624. 2006-03-03 Vladimir Krasnov <[email protected]>
  625. * PagedDataSourceTest.cs: added TARGET_JVM part to exclude
  626. not working tests.
  627. * WebControlTest.cs: same
  628. 2006-02-21 Chris Toshok <[email protected]>
  629. * SqlDataSourceTest.cs, SqlDataSourceViewTest.cs,
  630. AccessDataSourceTest.cs: new tests.
  631. 2005-12-14 Gonzalo Paniagua Javier <[email protected]>
  632. * DropDownListTest.cs: test for html-encoding of the text.
  633. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  634. * RadioButtonTest.cs: more tests for the 'name' attribute.
  635. 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
  636. * LiteralTest.cs: Literal allows LiteralControl.
  637. 2005-10-20 Gonzalo Paniagua Javier <[email protected]>
  638. * ListBoxTest.cs: a few more tests for ListBox and selection.
  639. 2005-10-18 Gonzalo Paniagua Javier <[email protected]>
  640. * ListControlTest.cs: 3 more tests for ListControl.
  641. 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
  642. * CustomValidatorTest.cs: an empty control name is valid.
  643. 2005-10-17 Sebastien Pouliot <[email protected]>
  644. * RequiredFieldValidatorCas.cs: New. CAS unit for
  645. RequiredFieldValidator.
  646. 2005-10-10 Gonzalo Paniagua Javier <[email protected]>
  647. * DataListTest.cs: added some style and IRepeatInfoUser tests.
  648. 2005-10-04 Gonzalo Paniagua Javier <[email protected]>
  649. * ListBoxTest.cs: the name is the UniqueID, not the ClientID.
  650. * WebControlTest.cs: Attributes statebag is case insensitive.
  651. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  652. * ImageButtonTest.cs: test that 'name' attribute is rendered.
  653. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  654. * DataGridTest.cs: Test for ButtonColumn with DataTextField.
  655. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  656. * DataGridTest.cs: new test for the style of the linkbutton in the
  657. headers when sorting is enabled. Also test that the Items property
  658. contains the DataGridItems.
  659. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  660. * TableCellTest.cs: the "Text" viewstate value does not control whether
  661. we render the children or not.
  662. * EditCommandColumnTest.cs: some tests do not pass on MS rutime for me,
  663. so I've made them NotDotNet and fixed all the problems. Also added tests
  664. to ensure that the TextBox's form the BoundColumns are present in the
  665. hierarchy, as before we did nothing there.
  666. * ButtonTest.cs: test to show that a Button's children are not rendered.
  667. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  668. * PagedDataSourceTest.cs: more tests.
  669. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  670. * PagedDataSourceTest.cs: more tests.
  671. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  672. * CalendarTest.cs: added test to check for ID and base attributes being
  673. copied from the calendar into the table.
  674. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  675. * PagedDataSourceTest.cs: nullref is throw on null DataSource.
  676. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  677. * DataGridTest.cs: fixed a test and added a commented out one that works
  678. fine in mono but throws nullref with MS.
  679. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  680. * DataGridTest.cs: more tests that add a TemplateColumn.
  681. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  682. * EditCommandColumnTest.cs: added a test here for datagrid, as this was
  683. the file whose test failed because the id of the datagrid generated
  684. table.
  685. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  686. * FontUnitCas.cs: method name change in FontUnitTest.
  687. * FontUnitTest.cs: splitted tests, enabled the "NotWorking" ones and
  688. added tests for FontSize names beginning with x and containing a dash.
  689. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  690. * ListControlTest.cs: new tests for SelectedValue, SelectedIndex and
  691. DataBinding.
  692. 2005-09-24 Gonzalo Paniagua Javier <[email protected]>
  693. * DataGridTest.cs:
  694. * DataListTest.cs: OnItemCommand is raised always in OnBubbleEvent.
  695. 2005-09-23 Sebastien Pouliot <[email protected]>
  696. * LoginTest.cs: Make OnBubbleEvent_Authenticated_OnAuthenticate test
  697. case "work" on both MS and Mono.
  698. * UnitTest.cs: IncorrectConstructor9 was fixed (in 2.0 RC) to throw
  699. the FormatException (just like earlier fx did).
  700. 2005-09-23 Sebastien Pouliot <[email protected]>
  701. * LabelCas.cs, LinkButtonCas.cs, ListBoxCas.cs, ListControlCas.cs,
  702. ListItemCas.cs, ListItemCollectionCas.cs, LiteralCas.cs, LoginCas.cs,
  703. LoginNameCas.cs, LoginStatusCas.cs, MonthChangedEventArgsCas.cs,
  704. PagedDataSourceCas.cs, PanelCas.cs, RadioButtonCas.cs,
  705. RadioButtonListCas.cs, RangeValidatorCas.cs,
  706. RegularExpressionValidatorCas.cs, RepeaterCas.cs, RepeatInfoCas.cs,
  707. RoleGroupCas.cs, RoleGroupCollectionCas.cs,
  708. SelectedDatesCollectionCas.cs, StyleCas.cs, TableCas.cs,
  709. TableCellCas.cs, TableFooterRowCas.cs, TableHeaderCellCas.cs,
  710. TableHeaderRowCas.cs, TableItemStyleCas.cs, TableRowCas.cs,
  711. TableSectionStyleCas.cs, TableStyleCas.cs, TargetConverterCas.cs,
  712. TextBoxCas.cs, TreeViewCas.cs, UnitCas.cs, UnitConverterCas.cs,
  713. ValidatedControlConverterCas.cs, ValidationSummaryCas.cs,
  714. WebColorConverterCas.cs, WebControlCas.cs, XmlCas.cs,
  715. XmlDataSourceCas.cs: New CAS unit tests - checks for LinkDemands and
  716. re-execute the "classic" unit tests under the most retricted security
  717. permissions possible.
  718. 2005-09-23 Sebastien Pouliot <[email protected]>
  719. * LinkButtonTest.cs: Fixed fixture name (Text -> Test).
  720. * ListItemTest.cs: Fixed header.
  721. * LoginTest.cs: Changed [Ignore] to [Category ("NotDotNet")] on
  722. OnBubbleEvent_Authenticated_OnAuthenticate () test case.
  723. * PagedDataSourceTest.cs: Added missing [Test] to
  724. TestEnumerators_NoPaging test case.
  725. * RadioButtonListTest.cs: Fixed header.
  726. * RepeatInfoTest.cs: Add missing [Test] on DefaultValues test case.
  727. * UnitConverterTest.cs: Fixed test cases (commited bu never executed)
  728. before including it in the suite.
  729. * ValidatorTest.cs: Fixed header.
  730. * WebColorConverterTest.cs: Fixed header.
  731. 2005-09-21 Sebastien Pouliot <[email protected]>
  732. * AdCreatedEventArgsCas.cs, BaseCompareValidatorCas.cs,
  733. BaseDataBoundControlCas.cs, BaseDataListCas.cs, BaseValidatorCas.cs,
  734. BoundColumnCas.cs, ButtonColumnCas.cs, CalandarCas.cs,
  735. CalendarDayCas.cs, CheckBoxCas.cs, CheckBoxListCas.cs,
  736. CompareValidatorCas.cs, CompositeControlCas.cs, CustomValidatorCas.cs,
  737. DataBoundControlCas.cs, DataGridCas.cs, DataGridColumnCas.cs,
  738. DataGridItemCas.cs, DataGridItemCollectionCas.cs,
  739. DataGridPagerStyleCas.cs, DataKeyCollectionCas.cs, DataListItemCas.cs,
  740. DataListItemCollectionCas.cs, EditCommandColumnCas.cs, FontInfoCas.cs,
  741. FontNamesConverterCas.cs, FontUnitCas.cs, FormViewCas.cs,
  742. HyperLinkCas.cs, HyperLinkColumnCas.cs, ImageButtonCas.cs,
  743. ImageCas.cs: New CAS unit tests - checks for LinkDemands and
  744. re-execute the "classic" unit tests under the most retricted security
  745. permissions possible.
  746. 2005-09-20 Gonzalo Paniagua Javier <[email protected]>
  747. * DataGridTest.cs: added data binding tests.
  748. * BaseDataListTest.cs: it's DataKeys (arraylist) what gets to the
  749. viewstate, not the DataKeyCollection.
  750. 2005-09-20 Sebastien Pouliot <[email protected]>
  751. * AdCreatedEventArgsTest.cs, BaseCompareValidatorTest.cs,
  752. CompositeControlTest.cs, DataListTest.cs, DropDownListTest.cs,
  753. EditCommandColumnTest.cs, FontNamesConverterTest.cs, FormViewTest.cs,
  754. ListControlTest.cs, MonthChangedEventArgsTest.cs,
  755. RadioButtonListTest.cs, StyleTest.cs, TableCellTest.cs,
  756. TextBoxTest.cs, TreeViewTest.cs, ValidatedControlConverterTest.cs:
  757. Fixed tests results under 2.0 Release Candidate (for NET_2_0).
  758. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  759. * DataGridTest.cs: fix expected/actual order. Added test for HeaderText
  760. and empty ArrayList.
  761. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  762. * TableCellTest.cs: TableCell does not get an automatic ID.
  763. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  764. * TableStyleTest.cs: added test to check that GridLines is correctly
  765. restored in LoadViewState.
  766. 2005-09-13 Gonzalo Paniagua Javier <[email protected]>
  767. * TableCellTest.cs: added new test cases for bug #76078.
  768. 2005-09-09 Gonzalo Paniagua Javier <[email protected]>
  769. * ListItemTest.cs: tests for ListItem.
  770. * RadioButtonListTest.cs: more test for load/raise.
  771. 2005-09-09 Chris Toshok <[email protected]>
  772. * StyleTest.cs (FontInfo_Empty): test to see if changes to
  773. Style.Font cause changes in the style's empty status.
  774. 2005-09-07 Chris Toshok <[email protected]>
  775. * CalendarTest.cs (TestSelectedColorDefault): we need to split up
  776. the color tests since they're rendered in different orders by
  777. ms/us.
  778. 2005-09-07 Chris Toshok <[email protected]>
  779. * ListControlTest.cs: add tests for the ControlState.
  780. 2005-09-05 Chris Toshok <[email protected]>
  781. * FormViewTest.cs: new tests.
  782. 2005-09-05 Chris Toshok <[email protected]>
  783. * DataBoundControlTest.cs: new tests.
  784. * BaseDataBoundControlTest.cs: new tests.
  785. 2005-09-01 Chris Toshok <[email protected]>
  786. * ListControlTest.cs (DefaultProperties): add tests for TagKey,
  787. Text, and AppendDataBoundItems.
  788. (ViewStateContents): add checks for Text and AppendDataBoundItems.
  789. 2005-09-01 Raja R Harinath <[email protected]>
  790. * CalendarTest.cs: Remove duplicate using-declarations.
  791. * XmlDataSourceTest.cs: Protect with NET_2_0 guard.
  792. * RepeaterTest.cs (Poker.GetSelectArguments): Likewise.
  793. (Poker.DoCreateDataSourceSelectArguments): Likewise.
  794. (Repeater_DefaultsSelectArguments): Likewise.
  795. 2005-08-31 Chris Toshok <[email protected]>
  796. * TreeViewTest.cs: beginnings of new tests.
  797. * RepeaterTest.cs: same.
  798. * XmlDataSourceTest.cs: same.
  799. 2005-08-27 Chris Toshok <[email protected]>
  800. * TextBoxTest.cs: add 2.0 test to show that validation properties
  801. have no effect on downlevel rendering.
  802. 2005-08-26 Chris Toshok <[email protected]>
  803. * TextBoxTest.cs: add tests for the 2.0 validation properties, and
  804. to make sure they're getting saved to the viewstate.
  805. 2005-08-26 Chris Toshok <[email protected]>
  806. * FontUnitTest.cs: Add tests for the two 2.0 constructors, and the
  807. 2.0 ToString(IFormatProvider) method.
  808. * UnitTest.cs: Add tests for the 2.0 ToString(IFormatProvider)
  809. method.
  810. 2005-08-26 Sebastien Pouliot <[email protected]>
  811. * TableStyleTest.cs: New test cases for 2.0.
  812. 2005-08-25 Sebastien Pouliot <[email protected]>
  813. * CheckBoxListTest.cs: Use Ben's CleanHtmlTextWriter to compare
  814. rendered output. Re-ordered the expected value to match. Rendering
  815. tests now pass on Mono 1.x|2.0 profile and MS 1.x.
  816. * DropDownListTest.cs: (Properties) we have the same 2.0 failure on
  817. both Mono and MS runtime, maybe it's a feature ;-)
  818. 2005-08-25 Chris Toshok <[email protected]>
  819. * CalendarTest.cs: add viewstate tests for Caption/CaptionAlign
  820. (2.0).
  821. 2005-08-25 Sebastien Pouliot <[email protected]>
  822. * HyperLinkTest.cs: Fixed the expected output rendering for 2.0.
  823. 2005-08-25 Peter Dennis Bartok <[email protected]>
  824. * StyleTest.cs: Added tests for CssRegisteredStyle
  825. 2005-08-25 Sebastien Pouliot <[email protected]>
  826. * StyleTest.cs: Added test for IsStyleEmpty(null).
  827. 2005-08-24 Chris Toshok <[email protected]>
  828. * ValidationSummaryTest.cs (ValidationSummary_ValidationGroup):
  829. add tests for ValidationGroup, making sure it's stored in the
  830. ViewState.
  831. 2005-08-24 Sebastien Pouliot <[email protected]>
  832. * RoleGroupTest.cs: New (2.0). Unit tests for RoleGroup.
  833. * RoleGroupCollectionTest.cs: New (2.0). Unit tests for
  834. RoleGroupCollection.
  835. 2005-08-23 Chris Toshok <[email protected]>
  836. * RepeatInfoTest.cs (RenderRepeater_BaseControl): the 2.0 ReatInfo
  837. class does things a little differently.
  838. 2005-08-22 Chris Toshok <[email protected]>
  839. * ListControlTest.cs: #if NET_2_0 some of the asserts whose values
  840. are different in 2.0.
  841. * ValidationSummaryTest.cs: same.
  842. * XmlTest.cs: same.
  843. * ListBoxTest.cs: same.
  844. * CheckBoxTest.cs: same.
  845. * UnitTest.cs: same.
  846. * TextBoxTest.cs: same.
  847. * CustomValidatorTest.cs: same.
  848. * DataGridTest.cs: same.
  849. * BaseCompareValidatorTest.cs: remove ko-KR, since my laptop
  850. presently can't find it, and we already have another ymd date
  851. element order.
  852. 2005-08-22 Chris Toshok <[email protected]>
  853. * RepeatInfoTest.auto.cs: regenerate.
  854. * RepeatInfoTest.auto.2.0.cs: generate using .Net 2.0.
  855. * RepeatInfoTest.gen.cs: add wrapper #ifdefs for the 1.x/2.0 cases
  856. - we need both.
  857. 2005-08-22 Chris Toshok <[email protected]>
  858. * BaseCompareValidatorTest.cs: fix the tests that change behavior
  859. between 1.x and 2.0.
  860. 2005-08-22 Chris Toshok <[email protected]>
  861. * LinkButtonTest.cs: add validation group tests.
  862. 2005-08-22 Chris Toshok <[email protected]>
  863. * ImageButtonTest.cs: add NET_2_0 validation tests.
  864. 2005-08-22 Chris Toshok <[email protected]>
  865. * CheckBoxTest.cs: add NET_2_0 validation tests.
  866. 2005-08-22 Chris Toshok <[email protected]>
  867. * ButtonTest.cs (Button_DefaultValues): add NET_2_0 test for
  868. ValidationGroup.
  869. (Button_ViewState): same.
  870. 2005-08-22 Sebastien Pouliot <[email protected]>
  871. * LoginNameTest.cs: New. Unit tests for LoginName control (2.0).
  872. * LoginStatusTest.cs: New. Unit tests for LoginStatus control (2.0).
  873. 2005-08-19 Sebastien Pouliot <[email protected]>
  874. * TableCellTest.cs: Add test cases for AssociatedHeaderCellID (2.0).
  875. 2005-08-18 Sebastien Pouliot <[email protected]>
  876. * BaseDataListTest.cs: Added test cases for new properties, methods
  877. and events defined in 2.0.
  878. * LoginTest.cs: Added test cases for On* methods.
  879. 2005-08-17 Chris Toshok <[email protected]>
  880. * CompositeControlTest.cs: put it in the MonoTests. namespace so
  881. it shows up in the right place in the nunit gui.
  882. 2005-08-16 Sebastien Pouliot <[email protected]>
  883. * DataListTest.cs: Fixed ViewState test to work on both 1.x and 2.0.
  884. Added tests for Load|SaveControlState (2.0). Added basic tests for
  885. SelectedValue property (2.0).
  886. * LoginTest.cs: Added test cases to check for null (removal) on all
  887. string properties, added checks for all enums properties. Also added
  888. test case for SaveViewState.
  889. 2005-08-15 Sebastien Pouliot <[email protected]>
  890. * TableHeaderRowTest.cs: New. Reuse TableRowTest test cases to test
  891. TableHeaderRow class (2.0).
  892. * TableFooterRowTest.cs: New. Reuse TableRowTest test cases to test
  893. TableFooterRow class (2.0).
  894. * TableRowTest.cs: Added test cases for new (2.0) TableSection
  895. property. Reworked the tests to allow easier reuse of them by the
  896. TableHeaderRow and TableFooterRow classes.
  897. 2005-08-14 Sebastien Pouliot <[email protected]>
  898. * LoginTest.cs: New. Unit tests to test default values for Login.
  899. * TableHeaderCellTest.cs: Add tests for CategoryText and Scope
  900. properties (new in 2.0).
  901. * TableSectionStyleTest.cs: New. Unit tests for TableSectionStyle.
  902. Note that this new 2.0 class seems broken as it is not complete (MS).
  903. 2005-08-12 Chris Toshok <[email protected]>
  904. * CompositeControlTest.cs: a couple of tests for CompositeControl.
  905. 2005-08-09 Sebastien Pouliot <[email protected]>
  906. * BaseDataListTest.cs: Added tests for OnDataBinding.
  907. * DataLitItemTest.cs: Added more useful tests for rendering items,
  908. including a test when two tables are present and extractRows is true.
  909. Added tests for IDataItemContainer (2.0).
  910. 2005-08-08 Jackson Harper <[email protected]>
  911. * PagedDataSourceTest.cs: Tests for creating enumerators when
  912. paging is not enabled.
  913. 2005-08-08 Sebastien Pouliot <[email protected]>
  914. * HyperLinkTest.cs: Updated comments. Resolve doesn't work when doing
  915. unit tests (probably because it requires a Page, or something else
  916. that can be used as the base url for the application).
  917. 2005-08-03 Peter Dennis Bartok <[email protected]>
  918. * EditCommandColumnTest.cs: Updated; InitializeCell() passes except
  919. for the missing footer; InitializeCellEdit() has a problem with
  920. the name given to the TextBox controls
  921. 2005-08-05 Jackson Harper <[email protected]>
  922. * PagedDataSourceTest.cs: Tests for PageCount.
  923. 2005-08-04 Ben Maurer <[email protected]>
  924. * CalendarTest.cs: Test based on an msdn example. Again, I (heart)
  925. anonymous methods.
  926. 2005-08-04 Dick Porter <[email protected]>
  927. * DataGridColumnTest.cs: Tests for DataGridColumn
  928. 2005-08-03 Ben Maurer <[email protected]>
  929. * RepeatInfoTest.cs: Test for copying from base control
  930. * WebControlTest.cs: Issue I found while doing repeatinfo
  931. * LabelTest.cs: New tests.
  932. * PanelTest.cs: New tests
  933. 2005-08-03 Peter Dennis Bartok <[email protected]>
  934. * EditCommandColumnTest.cs: Enable tests
  935. 2005-08-03 Peter Dennis Bartok <[email protected]>
  936. * DataGridPagerStyleTest.cs: Added testcase
  937. 2005-08-03 Jordi Mas i Hernandez <[email protected]>
  938. * CalendarTest.cs: Trackview states
  939. 2005-08-02 Jackson Harper <[email protected]>
  940. * BoundColumnTest.cs: Start of tests for the BoundColumn class.
  941. 2005-08-02 Jordi Mas i Hernandez <[email protected]>
  942. * RadioButtonListTest.cs: test unit
  943. 2005-08-01 Jackson Harper <[email protected]>
  944. * TableStyleTest.cs: Check that items copied set the styles flags.
  945. 2005-08-01 Jackson Harper <[email protected]>
  946. * PagedDataSourceTest.cs: Test the enumerators a little.
  947. 2005-07-30 Chris Toshok <[email protected]>
  948. * HyperLinkColumnTest.cs: add some tests for how the column
  949. initializes a TableCell.
  950. 2005-07-30 Ben Maurer <[email protected]>
  951. * RepeatInfoTest.auto.cs: Regen.
  952. * RepeatInfoTest.gen.cs: Autogenerate tests for 0 items
  953. 2005-07-29 Chris Toshok <[email protected]>
  954. * BaseCompareValidatorTest.cs (CanConvert): disable B9, until we
  955. figure out a culture independent way to do it.
  956. (Convert): same with C17/C18.
  957. (MiscPropertiesAndMethods): test CutoffYear, GetFullYear, and
  958. GetDateElementOrder.
  959. 2005-07-27 Peter Dennis Bartok <[email protected]>
  960. * StyleTest.cs: Added font-related tests to check for special
  961. Name/Names behaviour
  962. 2005-07-29 Chris Toshok <[email protected]>
  963. * BaseCompareValidatorTest.cs: use DateTime to generate the
  964. strings for our date tests, since they're culture specific.
  965. 2005-07-29 Dick Porter <[email protected]>
  966. * RadioButtonTest.cs: Added tests for RadioButton
  967. 2005-07-29 Jordi Mas i Hernandez <[email protected]>
  968. * SelectedDatesCollectionTest.cs: new unit test
  969. * CalendarDayTest.cs: new unit test
  970. * CalendarTest.cs: more tests for calendar control
  971. 2005-07-28 Jackson Harper <[email protected]>
  972. * EditCommandColumnTest.cs: Make the DataGridTest nested so my
  973. top secret DataGrid tests will still compile.
  974. 2005-07-27 Peter Dennis Bartok <[email protected]>
  975. * EditCommandColumnTest.cs: Added tests; marked some as NotWorking
  976. until PagedDataSource is not throwing NotImpl
  977. 2005-07-27 Peter Dennis Bartok <[email protected]>
  978. * CustomValidatorTest.cs: Added tests
  979. 2005-07-27 Peter Dennis Bartok <[email protected]>
  980. * DataGridPagerStyleTest.cs: Added tests
  981. 2005-07-26 Peter Dennis Bartok <[email protected]>
  982. * DataGridItemTest.cs: Added tests
  983. 2005-07-26 Peter Dennis Bartok <[email protected]>
  984. * DataGridItemCollectionTest.cs: Added tests
  985. 2005-07-26 Ben Maurer <[email protected]>
  986. * RepeatInfoTest.cs: Remove tests that are contained below
  987. * RepeatInfoTest.auto.cs: Generated tests.
  988. * RepeatInfoTest.gen.cs: A test generator for repeatinfo
  989. 2005-07-25 Peter Dennis Bartok <[email protected]>
  990. * StyleTest.cs: Refined tests
  991. 2005-07-25 Jackson Harper <[email protected]>
  992. * DataGridTest.cs: More tests for the pager.
  993. 2005-07-22 Jackson Harper <[email protected]>
  994. * DataGridTest.cs: Basic test for InitializePager.
  995. 2005-07-22 Sebastien Pouliot <[email protected]>
  996. * HyperLinkTest.cs: New. (very basic) unit tests for HyperLink.
  997. 2005-07-21 Jackson Harper <[email protected]>
  998. * DataGridTest.cs: Test the order the events are invoked in when
  999. creating the control hierarchy.
  1000. 2005-07-21 Sebastien Pouliot <[email protected]>
  1001. * BaseDataList.cs: Replace IList test with IEnumerable test.
  1002. * RepeatInfoTest.cs: Ignore the test about the baseControl / NRE.
  1003. * TableCellTest.cs: Added tests for AddParsedSubObject versus the Text
  1004. property (and LiteralControl).
  1005. 2005-07-21 Peter Dennis Bartok <[email protected]>
  1006. * CustomValidatorTest.cs: Added
  1007. 2005-07-21 Peter Dennis Bartok <[email protected]>
  1008. * RangeValidatorTest.cs: More test cases
  1009. 2005-07-21 Sebastien Pouliot <[email protected]>
  1010. * RepeatInfoTest.cs: Added test for RepeatColumn is 0.
  1011. * TableRowTest.cs: Added style rendering tests (for my sanity).
  1012. 2005-07-21 Jackson Harper <[email protected]>
  1013. * PagedDataSourceTest.cs: Test to see what happens when we get a
  1014. non ITypedList.
  1015. 2005-07-21 Duncan Mak <[email protected]>
  1016. * HyperLinkColumnTest.cs: Added new test for HyperLinkColumn.
  1017. 2005-07-20 Peter Dennis Bartok <[email protected]>
  1018. * DropDownListTest.cs: Added [ExpectedException] for double select
  1019. test
  1020. 2005-07-20 Ben Maurer <[email protected]>
  1021. * DropDownListTest.cs (InitialSelectionMade): Add a test for a
  1022. regression that seems to be caused by some change to
  1023. ListItemCollection. Add this file to sources as all tests other
  1024. than this pass using the old impl of ddl except for this, which is
  1025. a regression.
  1026. 2005-07-20 Sebastien Pouliot <[email protected]>
  1027. * RepeatInfoTest.cs: More unit tests for arguments checks, default
  1028. values, baseControl (not figured out yet) and OuterTableImplied.
  1029. 2005-07-20 Jackson Harper <[email protected]>
  1030. 2005-07-20 Jackson Harper <[email protected]>
  1031. * DataGridTest.cs: Make sure we get back a proper columns
  1032. collection.
  1033. 2005-07-20 Jackson Harper <[email protected]>
  1034. * DataGridTest.cs: The columns collection cached from the
  1035. CreateColumnSet is stored in the view state.
  1036. 2005-07-20 Sebastien Pouliot <[email protected]>
  1037. * BaseDataListTest.cs: Added more tests ported from DataGridTest.
  1038. * DataListTest.cs: Added more tests ported from DataGridTest.
  1039. 2005-07-20 Peter Dennis Bartok <[email protected]>
  1040. * ValidationSummaryTest.cs: Added rendering tests
  1041. 2005-07-20 Jackson Harper <[email protected]>
  1042. * DataGridTest.cs: Test generating column names with/without
  1043. enabling useDataSource.
  1044. 2005-07-20 Sebastien Pouliot <[email protected]>
  1045. * DataListTest.cs: Add viewstate test.
  1046. 2005-07-20 Jackson Harper <[email protected]>
  1047. * DataGridTest.cs: Check the properties of newly created
  1048. BoundColumns.
  1049. 2005-07-20 Sebastien Pouliot <[email protected]>
  1050. * BaseDataListTest.cs: Add render tests (all empty).
  1051. * DataListTest.cs: Added Controls vs Items test.
  1052. * WebControlTest.cs: Added new (passing) tests.
  1053. 2005-07-19 Jackson Harper <[email protected]>
  1054. * PagedDataSource.cs: New unit test for GetItemProperties.
  1055. 2005-07-19 Jackson Harper <[email protected]>
  1056. * DataGridTest.cs: New tests for creating column sets.
  1057. 2005-07-19 Sebastien Pouliot <[email protected]>
  1058. * DataListTest.cs: Add more tests for IRepeatInfoUser.
  1059. * RepeatInfoTest.cs: New. Unit test for RepeatInfo (not exactly what
  1060. I had expected...).
  1061. 2005-07-19 Jackson Harper <[email protected]>
  1062. * CheckBoxListTest.cs: New tests for FindControl.
  1063. 2005-07-19 Jackson Harper <[email protected]>
  1064. * DataGridTest.cs: New test for viewstate saving.
  1065. 2005-07-19 Chris Toshok <[email protected]>
  1066. * BaseValidatorTest.cs: use the right call (SetValidationTextBox)
  1067. in ValidatorTest.
  1068. 2005-07-19 Peter Dennis Bartok <[email protected]>
  1069. * DropDownListTest.cs: Testcases added
  1070. * RangeValidatorTest.cs: Added
  1071. * ValidatedControlConverterTest.cs: Added
  1072. * ValidationSummaryTest.cs: Added
  1073. 2005-07-19 Chris Toshok <[email protected]>
  1074. * BaseCompareValidatorTest.cs: add date tests.
  1075. 2005-07-19 Jackson Harper <[email protected]>
  1076. * DataGridTest.cs: Bubble tests for Page command. Tests for bad
  1077. Page command bubble event args.
  1078. 2005-07-19 Jackson Harper <[email protected]>
  1079. * DataGridTest.cs: Select can also be bubbled.
  1080. 2005-07-19 Jackson Harper <[email protected]>
  1081. * DataGridTest.cs: Tests for the BubbleEvent.
  1082. 2005-07-19 Jackson Harper <[email protected]>
  1083. * DataGridTest.cs: New tests. Just does properties and events for
  1084. the most part.
  1085. 2005-07-18 Chris Toshok <[email protected]>
  1086. * BaseCompareValidatorTest.cs: note the lack of Date tests, and
  1087. add null tests.
  1088. 2005-07-18 Chris Toshok <[email protected]>
  1089. * BaseCompareValidatorTest.cs: new tests.
  1090. 2005-07-19 Ben Maurer <[email protected]>
  1091. * UnitConverterTest.cs: New tests
  1092. 2005-07-18 Chris Toshok <[email protected]>
  1093. * CompareValidatorTest.cs (CompareValidator_ValueToCompareTest,
  1094. CompareValidator_ControlToCompareTest): new methods.
  1095. * ValidatorTest.cs: add AddTextBox method.
  1096. 2005-07-18 Chris Toshok <[email protected]>
  1097. * RegularExpressionValidatorTest.cs: add a simple validation test.
  1098. * ValidatorTest.cs: add a base class for validator tests, that
  1099. enables a little scaffolding for faking out the test.
  1100. 2005-07-18 Chris Toshok <[email protected]>
  1101. * CompareValidatorTest.cs: new tests.
  1102. 2005-07-18 Chris Toshok <[email protected]>
  1103. * RegularExpressionValidatorTest.cs: new test.
  1104. 2005-07-18 Sebastien Pouliot <[email protected]>
  1105. * DataListTest.cs: Fix tests for 1.1 which keeps more stuff into it's
  1106. ViewState.
  1107. 2005-07-15 Peter Dennis Bartok <[email protected]>
  1108. * DropDownListTest.cs: Testcases added
  1109. 2005-07-15 Jackson Harper <[email protected]>
  1110. * CheckBoxListTest.cs: New tests for FindControl.
  1111. 2005-07-15 Jackson Harper <[email protected]>
  1112. * WebControlTest.cs: New test to make sure NamingContainers are
  1113. honoured when rendering client ids.
  1114. 2005-07-15 Jackson Harper <[email protected]>
  1115. * CheckBoxListTest.cs: More tests for the IRepeatInfoUser stuff
  1116. and for rendering.
  1117. 2005-07-15 Sebastien Pouliot <[email protected]>
  1118. * BaseDataListTest.cs: New. Unit tests for abstract BaseDataList.
  1119. * DataKeyCollectionTest.cs: New. Unit tests for DataKeyCollection.
  1120. * DataListItemCollectionTest.cs: New. Unit tests for
  1121. DataListItemCollection.
  1122. * DataListItemTest.cs: New. Unit tests for DataListItem (incomplete).
  1123. * DataListTest.cs: New. Unit tests for DataList (incomplete).
  1124. 2005-07-14 Jackson Harper <[email protected]>
  1125. * CheckBoxListTest.cs: Rendering tests.
  1126. 2005-07-14 Jackson Harper <[email protected]>
  1127. * CheckBoxListTest.cs: Fix the exception types thrown for bad
  1128. enums. Mark as NotWorking as this doesn't work with the old
  1129. CheckBoxList class anymore.
  1130. 2005-07-14 Jackson Harper <[email protected]>
  1131. * CheckBoxListTest.cs: Add some rendering tests. These aren't
  1132. fully working yet so they are in the NotWorking category.
  1133. 2005-07-14 Jackson Harper <[email protected]>
  1134. * CheckBoxListTest.cs: This has the potential to be a beautiful
  1135. test.
  1136. 2005-07-14 Peter Dennis Bartok <[email protected]>
  1137. * WebColorConverter.cs: Testcases added
  1138. 2005-07-14 Jackson Harper <[email protected]>
  1139. * ListControlTest.cs: New test for the viewstate and item
  1140. selection.
  1141. 2005-07-14 Dick Porter <[email protected]>
  1142. * CheckBoxTest.cs: Added enum checks
  1143. 2005-07-14 Peter Dennis Bartok <[email protected]>
  1144. * TargetConverterTest.cs: Testcases added
  1145. 2005-07-14 Duncan Mak <[email protected]>
  1146. * PagedDataSourceTest.cs: Added testcases.
  1147. (PageCountTest, CountTest, IsLastPageTest): Needs more work.
  1148. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1149. * FontNamesConverterTest.cs: Testcases added
  1150. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1151. * ListItemCollectionTest.cs: Added
  1152. * ListBoxTest.cs: Marked test as not working since it dependes on
  1153. ListControl making a call to an obsolete internal method
  1154. 2005-07-13 Jackson Harper <[email protected]>
  1155. * ListControlTest.cs: New tests for the ListControl.
  1156. 2005-07-13 Jackson Harper <[email protected]>
  1157. * ListBoxTest.cs: Exception is thrown (by ListControl). Dont run
  1158. the BadBorderStyle test as this fails in ListControls.
  1159. 2005-07-13 Sebastien Pouliot <[email protected]>
  1160. * ImageTest.cs: Added tests for DescriptionUrl in 1.1 profile as this
  1161. property was added in Fx 1.1 SP1.
  1162. * StyleTest.cs: Added more tests for CopyFrom to test it's behavior,
  1163. e.g. it doesn't reset itself nor remove it's properties if they're
  1164. not part of the copied Style instance.
  1165. * TableTest.cs: Adjusted values so we're not testing a 100% match with
  1166. MS lines/indentations.
  1167. * TableRowTest.cs: Use Ben's trick on StreamWriter (\r\n). Adjusted
  1168. values so we're not testing a 100% match with MS lines/indentations.
  1169. * WebControlTest.cs: Added tests to remove attributes and style before
  1170. rendering. Empty style properties shouldn't be rendered.
  1171. 2005-07-13 Dick Porter <[email protected]>
  1172. * CheckBoxTest.cs: Added tests for CheckBox - currently all
  1173. passing on mono and ms runtimes.
  1174. 2005-07-12 Sebastien Pouliot <[email protected]>
  1175. * WebControlTest.cs: Added another test for RenderBeginTag, this time
  1176. using an attribute (renamed old test as it was for style attributes).
  1177. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1178. * WebControlTest.cs: Added test for loading/saving of state. Switched
  1179. to use Sebastiens GetWriter method
  1180. 2005-07-12 Jackson Harper <[email protected]>
  1181. * ListBoxTest.cs: Some simple tests for the ListBox control.
  1182. 2005-07-12 Sebastien Pouliot <[email protected]>
  1183. * TableTest.cs: Use Ben's trick on StreamWriter.
  1184. * WebControlTest.cs: Added tests for RenderBeginTag.
  1185. 2005-07-12 Sebastien Pouliot <[email protected]>
  1186. * TableCellTest.cs: New. Unit tests for TableCell.
  1187. * TableItemStyleTest.cs: New. Unit tests for TableItemStyle.
  1188. * TableHeaderCellTest.cs: New. Unit tests for TableHeaderCell.
  1189. * TableRowTest.cs: New. Unit tests for TableRow.
  1190. * TableStyleTest.cs: New. Unit tests for TableStyle.
  1191. * TableTest.cs: New. Unit tests for Table.
  1192. 2005-07-12 Miguel de Icaza <[email protected]>
  1193. * UnitTest.cs: Update test suite.
  1194. 2005-07-12 Jordi Mas i Hernandez <[email protected]>
  1195. * ButtonTest.cs: add Default constructors tests
  1196. * ImageButtonTest.cs: Adds ImageButtonTest
  1197. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1198. * WebControlTest.cs: Added test.
  1199. 2005-07-11 Sebastien Pouliot <[email protected]>
  1200. * FontUnitTest.cs: Added more tests when looking for another bug...
  1201. * StyleTest.cs: Added some unit tests for a null ctor and checks for
  1202. emptyness.
  1203. 2005-07-11 Jordi Mas i Hernandez <[email protected]>
  1204. * ButtonTest.cs: New unit test for Button
  1205. 2005-07-08 Sebastien Pouliot <[email protected]>
  1206. * ImageTest.cs: New. Unit tests for Image.
  1207. 2005-07-08 Jackson Harper <[email protected]>
  1208. * LiteralTest.cs: new test.
  1209. * MonthCalendarEventArgsTest.cs: new test.
  1210. 2005-07-08 Jackson Harper <[email protected]>
  1211. * AdCreatedEventArgsTest.cs: Added test.
  1212. 2005-07-07 Miguel de Icaza <[email protected]>
  1213. * XmlTest.cs: Added test.
  1214. 2005-07-07 Peter Dennis Bartok <[email protected]>
  1215. * StyleTest.cs: Added test.
  1216. 2005-07-07 Miguel de Icaza <[email protected]>
  1217. * LabelTest.cs: Add test.
  1218. 2005-07-07 Ben Maurer <[email protected]>
  1219. * FontUnitTest.cs: Make it run on msft
  1220. 2005-07-06 Miguel de Icaza <[email protected]>
  1221. * FontUnitTest.cs: New unit tests.
  1222. * UnitTest.cs: Add support for different cultures and the Decimal
  1223. separator,
  1224. * UnitTest.cs: Add tests for null and "" arguments to Parse and
  1225. Unit(string) which produce IsEmpty units.
  1226. * UnitTest.cs: Fresh file with tests.
  1227. 2004-10-08 Sanjay Gupta <[email protected]>
  1228. * TestControlIDConverter.cs: Added new test file for ControlIDConverter.