ChangeLog 64 KB

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