ChangeLog 67 KB

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