2
0

ChangeLog 66 KB

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