ChangeLog 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229
  1. 2004-10-12 Sanjay Gupta <[email protected]>
  2. * AccessDataSource.cs: Updated.
  3. 2004-10-08 Sanjay Gupta <[email protected]>
  4. * ValidatedControlConverter.cs: Updated.
  5. 2004-10-08 Sanjay Gupta <[email protected]>
  6. * AssociatedControlConverter.cs: Implemented.
  7. 2004-10-08 Sanjay Gupta <[email protected]>
  8. * ControlIDConverter.cs: Initial implementation.
  9. 2004-10-04 Sanjay Gupta <[email protected]>
  10. * IButtonControl.cs: Corrected property name.
  11. 2004-10-04 Sanjay Gupta <[email protected]>
  12. * ParameterCollection.cs: Updated.
  13. 2004-10-04 Sanjay Gupta <[email protected]>
  14. * Parameter.cs: Updated and completed implementation.
  15. 2004-10-01 Sanjay Gupta <[email protected]>
  16. * ParameterCollection.cs: Resolved warnings, "Unreachable code detected"
  17. while compilation.
  18. 2004-10-01 Sanjay Gupta <[email protected]>
  19. * AccessDataSource.cs: Initial implementation.
  20. 2004-09-30 Sanjay Gupta <[email protected]>
  21. * DataControlRowState.cs:
  22. * ScrollBars.cs:
  23. * TreeNodeTypes.cs: Added attribute.
  24. * DataControlRowType.cs:
  25. * HotSpotMode.cs:
  26. * SortDirection.cs: Corrected enumeration values.
  27. * TableRowSection.cs: Added new enumeration.
  28. * ObjectDataSourceStatusEventHandler.cs: Corrected method name.
  29. 2004-09-28 Gonzalo Paniagua Javier <[email protected]>
  30. * TableStyle.cs: don't render empty 'rules' attribute (again).
  31. 2004-09-21 Sanjay Gupta <[email protected]>
  32. * FormViewUpdatedEventArgs.cs: Spelling mistake.
  33. 2004-09-14 Sanjay Gupta <[email protected]>
  34. * Literal.cs: Added new method Focus().
  35. 2004-09-12 Gonzalo Paniagua Javier <[email protected]>
  36. * RadioButton.cs: fix GroupName when the control is inside a
  37. NamingContainer different from Page. Closes bug #65586.
  38. 2004-09-07 Sanjay Gupta <[email protected]>
  39. * Localize.cs: Added new class.
  40. 2004-09-03 Gaurav Vaish <gvaish_mono AT lycos.com>
  41. * CompositeControl.cs : Completed
  42. * Login.cs : Initial implementation.
  43. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  44. * Xml.cs: fixed get_DocumentContent (it was returning "" always!) and
  45. don't call MapPathSecure on the content itself.
  46. * XmlBuilder.cs: handle XML documents written inside asp:xml. The
  47. document is checked at parse time and will be checked again at run time.
  48. Fixes bug #63828.
  49. 2004-08-31 Sanjay Gupta <[email protected]>
  50. * AuthenticateEventHandler.cs:
  51. * CreateUserErrorEventArgs.cs:
  52. * CreateUserErrorEventHandler.cs:
  53. * DetailsViewCommandEventHandler.cs:
  54. * DetailsViewDeleteEventArgs.cs:
  55. * DetailsViewDeleteEventHandler.cs:
  56. * DetailsViewDeletedEventArgs.cs:
  57. * DetailsViewDeletedEventHandler.cs:
  58. * DetailsViewInsertEventArgs.cs:
  59. * DetailsViewInsertEventHandler.cs:
  60. * DetailsViewInsertedEventArgs.cs:
  61. * DetailsViewInsertedEventHandler.cs:
  62. * DetailsViewModeEventArgs.cs:
  63. * DetailsViewModeEventHandler.cs:
  64. * DetailsViewPageEventHandler.cs:
  65. * DetailsViewUpdateEventArgs.cs:
  66. * DetailsViewUpdateEventHandler.cs:
  67. * DetailsViewUpdatedEventArgs.cs:
  68. * DetailsViewUpdatedEventHandler.cs:
  69. * FormViewCommandEventHandler.cs:
  70. * FormViewDeleteEventArgs.cs:
  71. * FormViewDeleteEventHandler.cs:
  72. * FormViewDeletedEventArgs.cs:
  73. * FormViewDeletedEventHandler.cs:
  74. * FormViewInsertEventArgs.cs:
  75. * FormViewInsertEventHandler.cs:
  76. * FormViewInsertedEventArgs.cs:
  77. * FormViewInsertedEventHandler.cs:
  78. * FormViewModeEventHandler.cs:
  79. * FormViewPageEventHandler.cs:
  80. * FormViewUpdateEventArgs.cs:
  81. * FormViewUpdateEventHandler.cs:
  82. * FormViewUpdatedEventArgs.cs:
  83. * FormViewUpdatedEventHandler.cs:
  84. * GridViewCancelEditEventArgs.cs:
  85. * GridViewCancelEditEventHandler.cs:
  86. * GridViewCommandEventHandler.cs:
  87. * GridViewDeleteEventArgs.cs:
  88. * GridViewDeleteEventHandler.cs:
  89. * GridViewDeletedEventArgs.cs:
  90. * GridViewDeletedEventHandler.cs:
  91. * GridViewEditEventHandler.cs:
  92. * GridViewPageEventHandler.cs:
  93. * GridViewRowEventHandler.cs:
  94. * GridViewSelectEventHandler.cs:
  95. * GridViewSortEventArgs.cs:
  96. * GridViewSortEventHandler.cs:
  97. * GridViewUpdateEventArgs.cs:
  98. * GridViewUpdateEventHandler.cs:
  99. * GridViewUpdatedEventArgs.cs:
  100. * GridViewUpdatedEventHandler.cs:
  101. * ImageMapEventHandler.cs:
  102. * MailMessageEventHandler.cs:
  103. * MenuEventHandler.cs:
  104. * ObjectDataSourceDisposingEventHandler.cs:
  105. * ObjectDataSourceEventHandler.cs:
  106. * ObjectDataSourceMethodEventArgs.cs:
  107. * ObjectDataSourceMethodEventHandler.cs:
  108. * ObjectDataSourceSelectingEventArgs.cs:
  109. * ObjectDataSourceSelectingEventHandler.cs:
  110. * ObjectDataSourceStatusEventArgs.cs:
  111. * ObjectDataSourceStatusEventHandler.cs:
  112. * SendMailErrorEventHandler.cs:
  113. * SiteMapNodeItemEventHandler.cs:
  114. * SqlDataSourceSelectingEventArgs.cs:
  115. * SqlDataSourceSelectingEventHandler.cs:
  116. * TreeNodeEventHandler.cs:
  117. * WizardNavigationEventArgs.cs:
  118. * WizardNavigationEventHandler.cs: Minor modifications, compiler error
  119. corrections and removing "sealed" access specifier from *EventHandler.cs
  120. 2004-08-18 Sanjay Gupta <[email protected]>
  121. * Literal.cs: Added new attributes and property for .Net 2.0
  122. 2004-08-13 Sanjay Gupta <[email protected]>
  123. * GridViewDeleteEventArgs.cs: Removed extra code.
  124. 2004-08-12 Sanjay Gupta <[email protected]>
  125. * SendMailErrorEventArgs.cs:
  126. * SendMailErrorEventHandler.cs:
  127. * SiteMapNodeItemEventArgs.cs:
  128. * SiteMapNodeItemEventHandler.cs:
  129. * SqlDataSourceSelectingEventArgs.cs:
  130. * SqlDataSourceSelectingEventHandler.cs:
  131. * TreeNodeEventArgs.cs:
  132. * TreeNodeEventHandler.cs:
  133. * WizardNavigationEventArgs.cs:
  134. * WizardNavigationEventHandler.cs: Added new delegates.
  135. 2004-08-11 Sanjay Gupta <[email protected]>
  136. * ImageMapEventArgs.cs:
  137. * ImageMapEventHandler.cs:
  138. * MailMessageEventArgs.cs:
  139. * MailMessageEventHandler.cs:
  140. * MenuEventArgs.cs:
  141. * MenuEventHandler.cs:
  142. * ObjectDataSourceDisposingEventArgs.cs:
  143. * ObjectDataSourceDisposingEventHandler.cs:
  144. * ObjectDataSourceEventArgs.cs:
  145. * ObjectDataSourceEventHandler.cs:
  146. * ObjectDataSourceMethodEventArgs.cs:
  147. * ObjectDataSourceMethodEventHandler.cs:
  148. * ObjectDataSourceSelectingEventArgs.cs:
  149. * ObjectDataSourceSelectingEventHandler.cs:
  150. * ObjectDataSourceStatusEventArgs.cs:
  151. * ObjectDataSourceStatusEventHandler.cs: Added new delegates.
  152. 2004-08-11 Sanjay Gupta <[email protected]>
  153. * DetailsViewCommandEventArgs.cs:
  154. * FormViewCommandEventArgs.cs:
  155. * GridViewCommandEventArgs.cs: Corrected constructor.
  156. 2004-08-11 Sanjay Gupta <[email protected]>
  157. * GridViewCancelEditEventArgs.cs:
  158. * GridViewCancelEditEventHandler.cs:
  159. * GridViewCommandEventArgs.cs:
  160. * GridViewCommandEventHandler.cs:
  161. * GridViewDeletedEventArgs.cs:
  162. * GridViewDeletedEventHandler.cs:
  163. * GridViewDeleteEventArgs.cs:
  164. * GridViewDeleteEventHandler.cs:
  165. * GridViewEditEventArgs.cs:
  166. * GridViewEditEventHandler.cs:
  167. * GridViewPageEventArgs.cs:
  168. * GridViewPageEventHandler.cs:
  169. * GridViewRowEventArgs.cs:
  170. * GridViewRowEventHandler.cs:
  171. * GridViewSelectEventArgs.cs:
  172. * GridViewSelectEventHandler.cs:
  173. * GridViewSortEventArgs.cs:
  174. * GridViewSortEventHandler.cs:
  175. * GridViewUpdatedEventArgs.cs:
  176. * GridViewUpdatedEventHandler.cs:
  177. * GridViewUpdateEventArgs.cs:
  178. * GridViewUpdateEventHandler.cs: Added new delegates.
  179. 2004-08-11 Sanjay Gupta <[email protected]>
  180. * FormViewUpdatedEventArgs.cs: Corrected constructor.
  181. 2004-08-11 Sanjay Gupta <[email protected]>
  182. * FormViewCommandEventArgs.cs: Corrected name of class.
  183. 2004-08-10 Gonzalo Paniagua Javier <[email protected]>
  184. * Xml.cs: use MapPath in DocumentSource and documentContent. Fixes
  185. bug #62726.
  186. 2004-08-10 Sanjay Gupta <[email protected]>
  187. * FormViewCommandEventArgs.cs:
  188. * FormViewCommandEventHandler.cs:
  189. * FormViewDeletedEventArgs.cs:
  190. * FormViewDeletedEventHandler.cs:
  191. * FormViewDeleteEventArgs.cs:
  192. * FormViewDeleteEventHandler.cs:
  193. * FormViewInsertedEventArgs.cs:
  194. * FormViewInsertedEventHandler.cs:
  195. * FormViewInsertEventArgs.cs:
  196. * FormViewInsertEventHandler.cs:
  197. * FormViewModeEventArgs.cs:
  198. * FormViewModeEventHandler.cs:
  199. * FormViewPageEventArgs.cs:
  200. * FormViewPageEventHandler.cs:
  201. * FormViewUpdatedEventArgs.cs:
  202. * FormViewUpdatedEventHandler.cs:
  203. * FormViewUpdateEventArgs.cs:
  204. * FormViewUpdateEventHandler.cs: Added new delegates.
  205. 2004-08-10 Sanjay Gupta <[email protected]>
  206. * DetailsViewCommandEventArgs.cs:
  207. * DetailsViewCommandEventHandler.cs:
  208. * DetailsViewDeletedEventArgs.cs:
  209. * DetailsViewDeletedEventHandler.cs:
  210. * DetailsViewDeleteEventArgs.cs:
  211. * DetailsViewDeleteEventHandler.cs:
  212. * DetailsViewInsertedEventArgs.cs:
  213. * DetailsViewInsertedEventHandler.cs:
  214. * DetailsViewInsertEventArgs.cs:
  215. * DetailsViewInsertEventHandler.cs:
  216. * DetailsViewModeEventArgs.cs:
  217. * DetailsViewModeEventHandler.cs:
  218. * DetailsViewPageEventArgs.cs:
  219. * DetailsViewPageEventHandler.cs:
  220. * DetailsViewUpdatedEventArgs.cs:
  221. * DetailsViewUpdatedEventHandler.cs:
  222. * DetailsViewUpdateEventArgs.cs:
  223. * DetailsViewUpdateEventHandler.cs: Added new delegates.
  224. 2004-08-09 Sanjay Gupta <[email protected]>
  225. * AuthenticateEventArgs.cs:
  226. * AuthenticateEventHandler.cs:
  227. * CreateUserErrorEventArgs.cs:
  228. * CreateUserErrorEventHandler.cs: Added new delegates.
  229. 2004-08-05 Sanjay Gupta <[email protected]>
  230. * IButtonControl.cs:
  231. * ICallbackContainer.cs:
  232. * ICompositeControlDesignerAccessor.cs:
  233. * IPostBackContainer.cs: Added new interfaces.
  234. 2004-08-03 Sanjay Gupta <[email protected]>
  235. * AdType.cs:
  236. * AutoCompleteType.cs:
  237. * ContentDirection.cs:
  238. * DataControlCellType.cs:
  239. * DataControlRowState.cs:
  240. * DataControlRowType.cs:
  241. * DetailsViewMode.cs:
  242. * DynamicImageParameterMode.cs:
  243. * FormViewMode.cs:
  244. * HotSpotMode.cs:
  245. * ImageFieldMode.cs:
  246. * LiteralMode.cs:
  247. * LogoutAction.cs:
  248. * Orientation.cs:
  249. * PagerButtons.cs:
  250. * PathDirection.cs:
  251. * ScrollBars.cs:
  252. * SiteMapNodeItemType.cs:
  253. * SiteMapNodeType.cs:
  254. * SiteMapViewType.cs:
  255. * SortDirection.cs:
  256. * TableCaptionAlign.cs:
  257. * TableHeaderScope.cs:
  258. * TableViewMode.cs:
  259. * TreeNodeSelectAction.cs:
  260. * TreeNodeTypes.cs:
  261. * TreeViewImageSet.cs:
  262. * WizardStepType.cs: Added enumerations
  263. 2004-08-02 Duncan Mak <[email protected]>
  264. * ButtonType.cs:
  265. * LoginFailureAction.cs:
  266. * LoginTextLayout.cs: Added enumerations.
  267. 2004-07-29 Gonzalo Paniagua Javier <[email protected]>
  268. * BaseValidator.cs: in Validate(), when the control is not visible or
  269. enabled, return inmediately after setting IsValid to true. Fixes bug
  270. #61831.
  271. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  272. * DataList.cs: s/HasChildren/HasControls()/.
  273. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  274. * DataList.cs: style.
  275. 2004-07-27 Alon Gazit <[email protected]>
  276. * DataList.cs: Replaced foreach statement with for statement,
  277. in order to improve performence.
  278. 2004-07-27 Alon Gazit <[email protected]>
  279. * WebControl.cs: changed RenderBeginTag()to use TagKey instead of
  280. TagName.
  281. * Unit.cs : changed GetTypeFromString() and GetStringFromPixel() to use
  282. switch statements in order to improve performance.
  283. 2004-06-10 Alon Gazit <[email protected]>
  284. * WebControl.cs: fixed LoadViewState().
  285. Creates new attributes state bag only when the current is null.
  286. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  287. * Calendar.cs: implemented OnPreRender and HasWeekSelectors.
  288. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  289. * Calendar.cs: set the title class attribute if we have it. Fixes bug
  290. 53671.
  291. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  292. * Style.cs: added SetBit.
  293. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  294. * Calendar.cs:
  295. * CompareValidator.cs:
  296. * ImageButton.cs:
  297. * Style.cs:
  298. * WebControl.cs: Added protected missing members and attributes.
  299. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  300. * TextBox.cs: don't save the Text if in ViewState if it's a password.
  301. Save it if the control is not visible or not enabled. Fixes bug #58497.
  302. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  303. * Calendar.cs: fire OnDayRender after assigning the calendar cell text.
  304. Fixes bug #58097.
  305. 2004-05-09 Gert Driesen ([email protected])
  306. * Parameter.cs:
  307. * SqlDataSourceCommandEventArgs:
  308. * XmlDataSource.cs : removed temporary workarounds for CLS
  309. compliance as System.Data is now CLS compliant
  310. 2004-05-06 Alon Gazit <[email protected]>
  311. * WebControl.cs: fixed LoadViewState() and SaveViewState().
  312. Before the change the Enabled property wasn't updated when a postback
  313. event was raised.
  314. * ListControl.cs: fixed SelectedIndex property implementation.
  315. Prevents throwing ArgumentOutOfRangeException (that should not be
  316. thrown), when the list is empty.
  317. 2004-04-28 Alon Gazit <[email protected]>
  318. * WebControl.cs: fixed LoadViewState().
  319. Always loading the saved attributes collection.
  320. 2004-04-18 Alon Gazit <[email protected]>
  321. * Repeater.cs: fixed InstantiateItem() and DataSource property.
  322. The change in DataSource prevents throwing ArgumentException while
  323. setting property value to null.
  324. The change in InstantiateItem() prevents NullReferenceException.
  325. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  326. * BaseValidator.cs: Store Display property in the correct ViewState
  327. property. Don't render anything if Display is ValidatorDisplay.None.
  328. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  329. * Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource,
  330. since it is already a physical path. Fixes bug #55334.
  331. 2004-02-13 Jackson Harper <[email protected]>
  332. * Calendar.cs: Match MS postback data. This allows sites that
  333. parse the postback data manually to work.
  334. 2004-02-04 Alon Gazit <[email protected]>
  335. * EditCommandColumn.cs: fixed InitializeCell().
  336. The rendered LiteralControl should contain "&nbsp;" and not " ".
  337. 2004-02-01 Alon Gazit <[email protected]>
  338. * DataGrid.cs: fixed a problem in the paging mechanism in the method
  339. InitializePager().
  340. the problem was when (PagerStyle.Mode == PagerMode.NumericPages),
  341. while clicking the "..." link in the second page.
  342. 2004-01-28 Alon Gazit <[email protected]>
  343. * Calendar.cs: prevent NullReferenceException in RenderAllDays().
  344. 2004-01-27 Gonzalo Paniagua Javier <[email protected]>
  345. * Calendar.cs: when rendering days, add a LiteralControl containing the
  346. day before OnDayRender is called. Only generate the default links for
  347. days when IsSelectable is true after OnDayRender. Fixes bug #53372.
  348. 2004-01-21 Martin Baulig <[email protected]>
  349. * XmlHierarchyData.cs: Make this compile with csc.
  350. * BulletedList.cs (BulletedList.SelectedItem): Removed the `set'
  351. accessor since the base class doesn't have one.
  352. 2004-01-18 Alon Gazit <[email protected]>
  353. * CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered).
  354. 2004-01-18 Alon Gazit <[email protected]>
  355. * Style.cs: CopyFrom method shouldn't copy a value that is equal to
  356. Property default value.
  357. * FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to
  358. Property default value.
  359. 2004-01-15 Alon Gazit <[email protected]>
  360. * RadioButtonList.cs: RepeatLayout property should affect the rendered
  361. html.
  362. 2004-01-15 Alon Gazit <[email protected]>
  363. * FontInfo.cs: Add validation check to Size property.
  364. 2004-01-07 Alon Gazit <[email protected]>
  365. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  366. merge the column's style to the cell's style and not to
  367. the item's(row) style.
  368. 2004-01-04 Alon Gazit <[email protected]>
  369. * RangeValidator.cs: Fixed ControlPropertiesValid().
  370. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  371. * Xml.cs: mono-stylized and removed warnings.
  372. 2004-1-1 Alon Gazit <[email protected]>
  373. * RadioButtonList.cs: update RenderItem() so that each RadioButton
  374. is enabled or disabled like the RadioButtonList.
  375. * CheckBoxList.cs: update RenderItem() so that each CheckBox
  376. is enabled or disabled like the CheckBoxList.
  377. 2004-1-1 Alon Gazit <[email protected]>
  378. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  379. The Header or Footer Style shouldn't merge with the cells Style.
  380. 2004-1-1 Alon Gazit <[email protected]>
  381. * DataGridColumn.cs: Headers and Footers are initialized
  382. with the relevant Style object.
  383. 2003-12-30 Alon Gazit <[email protected]>
  384. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  385. DoHorizontalRendering().
  386. Current implementation produces few extra html tags.
  387. 2003-12-29 Alon Gazit <[email protected]>
  388. * CheckBox.cs: change the implementation of LoadPostData.
  389. Currently, while the AutoPostBack property equals true ,
  390. it isn't possible to perform uncheck.
  391. 2003-12-19 Jackson Harper <[email protected]>
  392. * TableCell.cs: Setting a cells text should clear its control
  393. collection as per la specification. This fixes bug #51825.
  394. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  395. * DataGridColumn.cs: stylized LoadViewState.
  396. * DataGridColumnCollection.cs: when TrackViewState is called, also
  397. call it on all the existing columns. Fixes bug #52334.
  398. 2003-12-18 Alon Gazit <[email protected]>
  399. * DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style
  400. is empty.
  401. 2003-12-18 Alon Gazit <[email protected]>
  402. * TableStyle.cs: merge TableStyle properties when Style is empty.
  403. 2003-12-16 Alon Gazit <[email protected]>
  404. * HyperLink.cs: Change Text property implementation. in MS when the Text
  405. property is set, all the controls in the HyperLink are being deleted.
  406. This fixes bug #52239.
  407. 2003-12-15 Alon Gazit <[email protected]>
  408. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  409. DoHorizontalRendering().
  410. Both methods add additional empty table row in the head of each item
  411. table when the variable named isTable equals true (happenes with the
  412. default instantiation of RepeatInfo). These additional rows should be
  413. added when isTable equals false.
  414. This fixes bug #52225.
  415. 2003-12-15 Alon Gazit <[email protected]>
  416. * RepeatInfo.cs: Fixed DoVerticalRendering() and
  417. DoHorizontalRendering().
  418. Both methods add to rendered Header a colspan attribute according to the
  419. rows count. after the change the colspan is added according to the
  420. columns count.
  421. 2003-12-15 Alon Gazit <[email protected]>
  422. * CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET.
  423. In .NET if the checkbox is disabled ,its text appears disabled too.
  424. In Mono the text appears enabled. the fix is in Render().
  425. This fixes bug #52180.
  426. 2003-12-15 Alon Gazit <[email protected]>
  427. * Repeater.cs: Change the implementation of CreateControlHierarchy().
  428. The current implementation renders extra Header and footer
  429. without Repeater.DataSource assign.
  430. This fixes bug #52179.
  431. 2003-12-15 Alon Gazit <[email protected]>
  432. * DataGrid.cs: Change the implementation of the property
  433. BackImageUrl. The current implementation has no influence
  434. on the rendered Html.
  435. 2003-12-15 Alon Gazit <[email protected]>
  436. * WebControl.cs: Change the implementation of the property
  437. Enabled. Before the change the WebControl also looked at
  438. parent.Enabled . fixed bug #52171.
  439. 2003-12-11 Jackson Harper <[email protected]>
  440. * RepeatInfo.cs: When rendering vertically figure out how many
  441. colmns are not going to be filled in in the last row, and adjust
  442. things accordingly. This fixes bug #51863.
  443. 2003-12-10 Alon Gazit <[email protected]>
  444. * TableRow.cs: Change the implementation of the properties
  445. HorizontalAlign and VerticalAlign. The current implementation
  446. has no influence on the rendered Html.
  447. 2003-12-10 Alon Gazit <[email protected]>
  448. * TableItemStyle.cs: Add setting of The WRAP flag in the Wrap
  449. property's set method.
  450. 2003-12-09 Jackson Harper <[email protected]>
  451. * PagedDataSource.cs (PrivateICollectionEnumerator.MoveNext):
  452. Increment counter when moving to start. Fixes bug #51926.
  453. 2003-12-08 Jackson Harper <[email protected]>
  454. * HyperLinkColumn.cs: Fix navigate url rendering. Patch by
  455. Benjamin Jemlich. Fixes bug #51823.
  456. 2003-12-07 Alon Gazit <[email protected]>
  457. * Panel.cs: Panel doesn't render nowrap attribute while the Wrap
  458. property is set to false. Fixes bug #58120.
  459. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  460. * TableItemStyle.cs: merge TableItemStyle properties when Style is
  461. empty. Fixes bug #51689. Patch by Alon Gazit <[email protected]>.
  462. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  463. * RadioButtonList.cs: render tabindex attribute if needed. Fixes bug
  464. #51648.
  465. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  466. * WebControl.cs: don't create the attributes when GetAttribute is
  467. called.
  468. 2003-12-01 Jackson Harper <[email protected]>
  469. * WebControl.cs: Only allow access keys to be null or a single
  470. char. Patch by Alon Gazit <[email protected]>.
  471. 2003-11-30 Jackson Harper <[email protected]>
  472. * CheckBoxList.cs: A checkbox will have null post data if it is
  473. unselected. This fixes bug #51516.
  474. 2003-11-29 Jackson Harper <[email protected]>
  475. * DataGrid.cs: Display paging controls even when there is no
  476. data. Path by Mohammad DAMT. Fixes bug #51487.
  477. 2003-11-29 Jackson Harper <[email protected]>
  478. * DataGrid.cs: Call TrackViewState when loading bound columns view
  479. state. So that their state is saved. This fixes bug #51424. Also
  480. set ReadOnly.
  481. 2003-11-26 Jackson Harper <[email protected]>
  482. * BaseDataList.cs: Change && to || We will call that a typo so no
  483. one gets embarrased.
  484. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  485. * BaseDataList.cs: allow setting null as Datasource.
  486. * DataGrid.cs: keep autogenerated columns in the ViewState.
  487. Patches by Alon Gazit <[email protected]>.
  488. 2003-11-22 Ben Maurer <[email protected]>
  489. * SqlDataSource*: Implement almost everything. Data access is
  490. still missing.
  491. 2003-11-22 Ben Maurer <[email protected]>
  492. * Calendar.cs (SaveViewState):
  493. - We were allocating a 11 item array, we only used 10 items,
  494. so only allocate 10.
  495. - We only need to save the selected dates if there are any.
  496. * DataGrid.cs (SaveViewState):
  497. * DataGridColumn.cs (SaveViewState):
  498. * DataGridColumnCollection.cs (SaveViewState):
  499. - Only return the array if there is anything in it
  500. * Style.cs (SaveViewState):
  501. - Only save the bits if there were changes.
  502. * WebControl.cs (SaveViewState), (LoadViewState):
  503. - Don't save Enabled into the viewstate here, we already
  504. do it in the property. This just caused *EVERY* control
  505. to have a non-null state, taking up lots of extra room
  506. in the ViewState.
  507. - The style will always be created with this control's
  508. viewstate, so the style will always return null for the
  509. viewstate. As such, we do not need to store it. We can
  510. also reduce the triplet to a pair because of this.
  511. 2003-11-22 Jackson Harper <[email protected]>
  512. * ValidationSummary.cs: Fix number of messages and message array computation.
  513. 2003-11-21 Andreas Nahr <[email protected]>
  514. * Xml.cs: Corrected attribute
  515. * XmlBuilder.cs: Added
  516. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  517. * Xml.cs: class status based fixes.
  518. 2003-11-19 Jackson Harper <[email protected]>
  519. * HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
  520. 2003-11-19 Jackson Harper <[email protected]>
  521. * HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
  522. teh applications base directory. This fixes bug #51092.
  523. 2003-11-18 Todd Berman <[email protected]>
  524. * ControlParameter.cs:
  525. * CookieParameter.cs:
  526. * FormParameter.cs:
  527. * QueryStringParameter.cs:
  528. * SessionParameter.cs: added public .ctor ()
  529. * Parameter.cs: added public .ctor (), internal SetOwnerCollection
  530. and handling, as well as internal ParameterValue for easy access.
  531. NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
  532. * ParameterCollection.cs: implementation redux.
  533. 2003-11-18 Todd Berman <[email protected]>
  534. * ParameterCollection.cs: Implemented
  535. * Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
  536. ToString () now matches asp.net
  537. 2003-11-17 Ben Maurer <[email protected]>
  538. * ControlParameter.cs:
  539. * CookieParameter.cs:
  540. * FormParameter.cs:
  541. * Parameter.cs:
  542. * QueryStringParameter.cs: New v2 files. Mostly
  543. implemented, still need a few methods.
  544. 2003-11-16 Gonzalo Paniagua Javier <[email protected]>
  545. * ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
  546. Gazit <[email protected]>.
  547. 2003-11-13 Gonzalo Paniagua Javier <[email protected]>
  548. * RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
  549. Patch by Alon Gazit <[email protected]>.
  550. 2003-11-09 Ben Maurer <[email protected]>
  551. * DataBoundControl.cs: Implement
  552. * ListControl.cs: inherit from the above.
  553. * Repeater.cs, BaseDataList.cs: should reset whenever we databind.
  554. 2003-11-09 Ben Maurer <[email protected]>
  555. * BaseDataList.cs:
  556. * DataGrid.cs:
  557. * DataList.cs:
  558. * Repeater.cs: add v2 databinding stuff
  559. * XmlDataSource.cs: make it load the xml.
  560. 2003-11-09 Ben Maurer <[email protected]>
  561. * XmlDataSource.cs:
  562. * XmlDataSourceView.cs:
  563. * XmlHierarchicalDataSourceView.cs:
  564. * XmlHierarchicalEnumerable.cs:
  565. * XmlHierarchyData.cs: Implement
  566. 2003-11-08 Ben Maurer <[email protected]>
  567. * SiteMapDataSourceView.cs: Implement.
  568. 2003-11-07 Jackson Harper <[email protected]>
  569. * ImageButton.cs: This is a workaround for bug #49819. It appears
  570. that the .x and .y values are not being posted, and only the x
  571. value is being posted with the ctrl's id as the key.
  572. 2003-11-07 Jackson Harper <[email protected]>
  573. * DataGrid.cs (CreateControlHierarchy): Current page index is
  574. alolowed to equal page count. This prevents an exception being
  575. thrown when both are zero.
  576. 2003-11-06 Jackson Harper <[email protected]>
  577. * ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
  578. * BaseValidator.cs: Disable base control so the isValid flag is
  579. not reset.
  580. 2003-11-03 Jackson Harper <[email protected]>
  581. * TemplateColumn.cs: Use the same renderer for selected items as
  582. normal items. This fixes bug #49744.
  583. 2003-11-03 Jackson Harper <[email protected]>
  584. * DataList.cs:
  585. * WebControl.cs: Fix argument out of range exceptions on
  586. properties. Patch by Yaron Shkop.
  587. 2003-11-03 Jackson Harper <[email protected]>
  588. * TemplateColumn.cs: If the item is selected but there is no
  589. editItemTemplate use the itemTemplate. This matches MS behvoir.
  590. 2003-11-03 Jackson Harper <[email protected]>
  591. * Repeater.cs: Always set alternating items to the AlternatingItem
  592. type, when instantiating alternating items use the itemTemplate if
  593. the alternatingItem template is null. This matches MS behavoir and
  594. fixes bug #50157.
  595. 2003-11-03 Jackson Harper <[email protected]>
  596. * DataGridPagerStyle.cs: Name of view state attribute is
  597. PagerVisible not Visible. Call owner.OnPagerChanged when the pager
  598. visibility is changed. Patch by Yaron Shkop.
  599. 2003-11-03 Jackson Harper <[email protected]>
  600. * RepeatInfo.cs: When doing horizontal rendering use the repeat
  601. columns as the number of columns in a row. This fixes bug #49016.
  602. 2003-11-03 Jackson Harper <[email protected]>
  603. * PagedDataSource.cs (PageCount): Return page count of 1 if there
  604. paging is disabled. Patch by Yaron Shkop.
  605. * PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
  606. * TableStyle.cs (AddAttributesToRender): Render border style
  607. collapse. Patch by Yaron Shkop.
  608. * TableStyle.cs:
  609. * TableItemStyle.cs:
  610. * DataGridPagerStyle.cs: Call base copy and merge even if style is of
  611. the wrong type. Patch by Yaron Shkop.
  612. 2003-11-03 Jackson Harper <[email protected]>
  613. * BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
  614. 2003-11-02 Ben Maurer <[email protected]>
  615. * BulletStyle.cs:
  616. * BulletedListDisplayMode.cs:
  617. * BulletedListEventHandler.cs:
  618. * BulletedList.cs:
  619. * BulletedListEventArgs.cs: V2 controls (yay!)
  620. 2003-10-30 Jackson Harper <[email protected]>
  621. * Repeater.cs: Throw an exception if the datasource is set to
  622. something that does not implement either IListSource or
  623. IEnumerable. This fixes bug #50155.
  624. 2003-10-30 Jackson Harper <[email protected]>
  625. * DataGridPagerStyle.cs: Do not allow page button counts to be set
  626. to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
  627. 2003-10-29 Jackson Harper <[email protected]>
  628. * ButtonColumn.cs: Format string and text to format were
  629. inversed. This fixes bug #50171.
  630. 2003-10-29 Jackson Harper <[email protected]>
  631. * DataGridColumn.cs: If an item style is set apply it to the
  632. cell. This fixes bug #50173.
  633. 2003-10-29 Ben Maurer <[email protected]>
  634. * HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
  635. old debugging value.
  636. 2003-10-29 Jackson Harper <[email protected]>
  637. * PagedDataSource.cs:
  638. * DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
  639. end of the last page. Fixes bug #5085.
  640. 2003-10-29 Jackson Harper <[email protected]>
  641. * CheckBox.cs: Do not change the status of a checkbox when there
  642. is no post data. This fixes bug #49091.
  643. * CheckBoxList.cs: Do not change the status of the checkboxes when
  644. there is no post data. This fixes bug #49093.
  645. 2003-10-26 Ben Maurer <[email protected]>
  646. * RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
  647. RadioButton. Fixes #50132
  648. 2003-10-25 Ben Maurer <[email protected]>
  649. * PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
  650. paging from working. Fixes #48814.
  651. 2003-10-25 Ben Maurer <[email protected]>
  652. * DataGrid.cs: A few typos kept us from viewing datagrids
  653. that were based on customized collections.
  654. 2003-10-24 Ben Maurer <[email protected]>
  655. * DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.
  656. 2003-10-23 Ben Maurer <[email protected]>
  657. * Calendar.cs: render the next month button so that aligns to the
  658. right.
  659. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  660. * BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
  661. was just changing && by || after the first Match.
  662. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  663. * Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
  664. Patch by Yaron Shkop.
  665. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  666. * DataGrid.cs: applied patch from Yaron Shkop ([email protected])
  667. that fixes bug #49744. Now the selection doesn't lose its data.
  668. 2003-10-21 Ben Maurer <[email protected]>
  669. * EditCommandColumn.cs: Implement; fix #49736
  670. 2003-10-21 Ben Maurer <[email protected]>
  671. * ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
  672. the forground color. bug #49738
  673. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  674. * Calendar.cs: fixed bug #49727.
  675. 2003-10-18 Ben Maurer <[email protected]>
  676. * TableStyle.cs: fix #49740.
  677. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  678. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  679. * ValidationSummary.cs: fixes bug #49669.
  680. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  681. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  682. Fixes #49406.
  683. * CheckBox.cs: render the hidden fields if AutoPostBack.
  684. * Style.cs: don't render empty width/height. Small improvement in
  685. CopyFrom.
  686. * Table.cs: fixed condition for border width.
  687. * TableStyle.cs:
  688. (CopyFrom): always call the base class to copy other attributes. Fixes
  689. bug #49408. Don't render empty 'rules' attribute.
  690. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  691. control attributes in CopyBaseAttributes.
  692. * ChangeLog: fixed dates.
  693. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  694. * WebControl.cs : Attributes { get; } - Is Complete.
  695. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  696. - Completed.
  697. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  698. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  699. : RegisterValidatorCommonScript()
  700. - More code, I need HELP!
  701. : RegisterValidatorDeclaration()
  702. - More code, I need HELP!
  703. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  704. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  705. #48802.
  706. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  707. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  708. ClearViewState only called when no items.
  709. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  710. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  711. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  712. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  713. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  714. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  715. Shkop).
  716. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  717. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  718. Shkop).
  719. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  720. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  721. * WebControl.cs: fixed Enabled property and save it in ViewState.
  722. Fixes bug #48802.
  723. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  724. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  725. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  726. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  727. bug #48671.
  728. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  729. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  730. <[email protected]>.
  731. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  732. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  733. Skripsky <[email protected]>
  734. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  735. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  736. fixes rendering of the end tag.
  737. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  738. * Repeater.cs: fix for Items property provided by [email protected]
  739. (Yaron Shkop). Closes bug #48060.
  740. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  741. * CheckBox.cs: in LoadPostData, only return
  742. true when the new data is different from the one we had. Fixed
  743. conditions to save Checked state. Thanks to [email protected]
  744. (Yaron Shkop).
  745. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  746. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  747. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  748. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  749. of Enable in ViewState. Fixes bug #47865.
  750. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  751. * Style.cs: the MARKED bit is not send set in ViewState unless something
  752. is changed. Fixed TrackViewState condition.
  753. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  754. because it uses the same ViewState as the control. Fixes bug #47725.
  755. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  756. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  757. that fixes databinding when only DataTextField or DataNavigateUrlField
  758. is set.
  759. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  760. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  761. behalf of Yaron Shkop <[email protected]> that fixes selection of
  762. values before assigning a data source and other issues.
  763. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  764. * CheckBox.cs: save viewstate when needed and correctly handle post
  765. data. Fixes bug #47462.
  766. 2003-08-01 Andreas Nahr <[email protected]>
  767. * ButtonColumn.cs: Removed additional attributes
  768. * CheckBox.cs: Added attribute
  769. * DataGrid.cs: Added attributes
  770. * HyperLinkColumn.cs: Changed attributes, added lamespec
  771. * Style.cs: Removed attributes
  772. * TextBox.cs: Added/ removed attributes
  773. 2003-08-01 Andreas Nahr <[email protected]>
  774. * AdRotator.cs: Added all attributes
  775. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  776. * BaseValidator.cs: Added all attributes
  777. * BoundColumn.cs: Added all attributes
  778. * Button.cs: Added all attributes
  779. * ButtonColumn.cs: Added all attributes, added lamespec
  780. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  781. * CheckBox.cs: Added all attributes
  782. * CheckBoxList.cs: Added all attributes
  783. * CompareValidator.cs: Added all attributes
  784. * CustomValidator.cs: Added all attributes
  785. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  786. * DataGridColumn.cs: Added all attributes
  787. * DataGridColumnCollection.cs: Added all attributes
  788. * DataGridPagerStyle.cs: Added all attributes
  789. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  790. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  791. * DropDownList.cs: Added all attributes
  792. * FontInfo.cs: Added all attributes
  793. * HyperLink.cs: Added all attributes
  794. * HyperLinkColumn.cs: Added all attributes
  795. * Image.cs: Added all attributes
  796. * ImageButton.cs: Added all attributes
  797. * Label.cs: Added all attributes
  798. * LinkButton.cs: Added all attributes
  799. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  800. * ListControl.cs: Added all attributes
  801. * ListItem.cs: Added all attributes
  802. * ListItemCollection.cs: Added attribute
  803. * Literal.cs: Added all attributes
  804. * Panel.cs: Added all attributes
  805. * RadioButton.cs: Added all attributes
  806. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  807. * RangeValidator.cs: Added all attributes
  808. * RegularExpressionValidator.cs: Added all attributes
  809. * Repeater.cs: Added all attributes
  810. 2003-07-30 Andreas Nahr <[email protected]>
  811. * RequiredFieldValidator.cs: Added all attributes
  812. * Style.cs: Added all attributes
  813. * Table.cs: Added all attributes
  814. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  815. * TableCellCollection.cs: Added attribute
  816. * TableRow.cs: Added all attributes
  817. * TableRowCollection: Added attribute
  818. * TableStyle.cs: Added all attributes, improved error messages
  819. * TemplateColumn.cs: Added all attributes
  820. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  821. * ValidationSummary.cs: Added all attributes
  822. * WebControl.cs: Added all attributes
  823. * Xml.cs: Added all attributes
  824. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  825. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  826. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  827. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  828. * CheckBoxList.cs: fixes bug reported on the list about the state of
  829. the CheckButtons not being preserved across posts.
  830. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  831. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  832. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  833. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  834. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  835. * ListControl.cs: save viewstate data when any of the 3 values is not
  836. null. Fixed condition to save selection indices. Closes bug #45493.
  837. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  838. * DataGrid.cs: fixed bug #43823.
  839. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  840. * DataGrid.cs: fixed delegate type for SortCommand.
  841. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  842. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  843. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  844. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  845. Don't save ViewState is the number of columns is 0.
  846. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  847. * DataGrid.cs: get the right item Type for the property we're reading
  848. fromt the data source.
  849. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  850. * Label.cs:
  851. * TextBox.cs: added control builder attribute.
  852. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  853. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  854. 2003-03-17 George Kodinov <[email protected]>
  855. * Unit.cs: Called the correct method to get the Numeric locale for the
  856. double conversion
  857. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  858. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  859. correctly the header of the column.
  860. * DataGridTableInternal.cs: don't assign a default ID to this control.
  861. * LinkButton.cs: raise bubble event in OnCommand.
  862. * TableCellCollection.cs: fixed the index returned by Add.
  863. * TableRowCollection.cs: ditto.
  864. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  865. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  866. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  867. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  868. for reporting the bug and providing the fix.
  869. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  870. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  871. CreateColumnSet. Set the owner of the column when auto generated.
  872. In PrepareControlHierarchyForItem, fixed for loop bound.
  873. * LinkButtonInternal.cs: fixed infinite recursion bug.
  874. Fixes bug #37124.
  875. 2003-01-22 Zdravko Tashev <[email protected]>
  876. * Xml.cs: a few fixes.
  877. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  878. * DataList.cs: handle the exception when adding new keys to
  879. DataKeysArray.
  880. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  881. * BaseDataList.cs: what can I say for this one? I spent so many time
  882. until I finally found this that I'm gonna miss this f....g bug... ;-).
  883. Farewell. Now we can get events from image buttons inside Data*.
  884. * DataList.cs: now the value stored in ViewState for item count is
  885. correct.
  886. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  887. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  888. Header and Footer.
  889. * DataGridColumn.cs: added SetOwner method.
  890. * DataGridColumnCollection.cs: set the owner of the column when added.
  891. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  892. * BoundColumn.cs: typo.
  893. * DataGrid.cs: use 'as' instead of casting. Typo.
  894. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  895. Mono-stylized.
  896. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  897. * HyperLink.cs: fixes bug #36336.
  898. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  899. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  900. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  901. * BaseValidator.cs: return an empty string in GetControlValidationValue
  902. when GetValue returned null.
  903. * CompareValidator.cs: fixed EvaluateIsValid.
  904. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  905. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  906. * Xml.cs: use MapPathSecure to get the path of the document.
  907. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  908. * DataList.cs: fixed header & footer.
  909. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  910. * DataList.cs: for header and footer don't use data source.
  911. Instantiate in the DataListItem, not in the DataList.
  912. databind-template.aspx works now.
  913. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  914. * BaseDataList.cs:
  915. (Render): call RenderContents (), not base.RenderContents ().
  916. * DataList.cs: style.
  917. But I still haven't found what i'm looking for....
  918. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  919. * Calendar.cs: fixed loading/saving selected dates.
  920. * SelectedDatesCollection.cs: added internal function to get the
  921. underlying ArrayList.
  922. Calendar navigation works again. Selecting dates too.
  923. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  924. * DataList.cs: added a few attributes and fixed infinite recursion.
  925. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  926. * ListItemCollection.cs: fixed LoadViewState.
  927. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  928. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  929. Commented out some code until it works.
  930. 2002-10-29 Gaurav Vaish <[email protected]>
  931. * BaseCompareValidator.cs - Fixed operator bug in
  932. Compare(string, string, ...)
  933. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  934. 2002-10-28 Gaurav Vaish <[email protected]>
  935. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  936. : Implemented.
  937. - All Properties : Now make use of ViewState.
  938. 2002-10-28 Gaurav Vaish <[email protected]>
  939. * BaseValidator.cs - Uncomment NotImplementedException.
  940. 2002-10-28 Gaurav Vaish <[email protected]>
  941. * BaseValidator.cs - Minor changes in TODO comments.
  942. 2002-10-28 Gaurav Vaish <[email protected]>
  943. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  944. the NotImplementedException being thrown.
  945. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  946. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  947. * DataGrid.cs - InitializePager(DataGridItem, int,
  948. PagedDataSource) : Implemented.
  949. 2002-10-28 Gaurav Vaish <[email protected]>
  950. * DataList.cs - PrepareControlHierarchy() : Implemented.
  951. 2002-10-28 Gaurav Vaish <[email protected]>
  952. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  953. - GetItem(ListItemType, int) : Removed TODO.
  954. - CreateControlHierarchy(bool) : Implemented.
  955. - CreateItem(int, ListItemType) : Implemented.
  956. - CreateItem(int, ListItemType,
  957. bool, object) : Implemented.
  958. - InitializeItem(DataItem) : Implemented.
  959. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  960. The ViewState["_!ItemCount"],
  961. ViewState["_!DataSource_ItemCount"]
  962. are shared by DataList and DataGrid, and hence
  963. should share the same name.
  964. - ResolveDataSource(object, string)
  965. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  966. ::GetResolvedDataSource(object, string).
  967. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  968. * DataGrid.cs: fixed compilation
  969. 2002-09-12 Gaurav Vaish <[email protected]>
  970. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  971. * DataGrid.cs - CreateControlHierarchy(bool)
  972. : working towards completion.
  973. - ResolveDataSource(object, string)
  974. : stubbed new method
  975. - CreateItem(....)
  976. : stubbed new method
  977. Well. It's almost done.
  978. * DataGridTableInternal.cs
  979. - Added new internal class.
  980. 2002-08-28 Gaurav Vaish <[email protected]>
  981. * DataSourceInternal.cs - Added new class (internal).
  982. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  983. * FontUnit.cs:
  984. * HorizontalAlign.cs:
  985. * Unit.cs:
  986. * VerticalAlign.cs: fixes based on class status page.
  987. * HorizontalAlignConverter.cs: implemented.
  988. * VerticalAlignConverter.cs: implemented.
  989. * FontUnitConverter.cs: implemented GetStandardValues ().
  990. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  991. 2002-08-19 Gaurav Vaish <[email protected]>
  992. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  993. 2002-08-19 Gaurav Vaish <[email protected]>
  994. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  995. 2002-08-19 Gaurav Vaish <[email protected]>
  996. * DataGrid.cs - Working on the undocumented protected
  997. method CreateColumnSet. AutoCreateColumns method
  998. stubbed. Left CreateControlHierarchy for the time
  999. being, looks like I'm going insane. ;-)
  1000. 2002-08-19 Gaurav Vaish <[email protected]>
  1001. * Button.cs - Steffen's OnCommand bug fix.
  1002. 2002-08-12 Gaurav Vaish <[email protected]>
  1003. * DataGrid.cs - Added protected method (skeleton)
  1004. CreateColumnSet(PagedDataSource, bool)
  1005. Still trying to know how will it be used
  1006. and what for...
  1007. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  1008. * PagedDataSource.cs: fixed compilation.
  1009. 2002-08-08 Gaurav Vaish <[email protected]>
  1010. * DataGrid.cs - Added private method
  1011. CreatePagedDataSource
  1012. - Started work on
  1013. CreateControlHierarchy(bool)
  1014. * PagedDataSource.cs - Bug fixed.
  1015. CurrentPageIndex is writable.
  1016. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  1017. * DataGrid.cs: fixed typo.
  1018. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  1019. 2002-08-06 Gaurav Vaish <[email protected]>
  1020. * DataGridColumn.cs - Added internal methods to get the
  1021. various styles (needed in DataGrid.cs)
  1022. * DataGrid.cs - Completed the method
  1023. PrepareControlHierarchy()
  1024. 2002-08-06 Gaurav Vaish <[email protected]>
  1025. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  1026. - Added private method
  1027. PrepareControlHierarchyForItem()
  1028. 2002-08-05 Gaurav Vaish <[email protected]>
  1029. * DataGrid.cs - Completed method
  1030. OnBubbleEvent(object, EventArgs)
  1031. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1032. * Xml.cs: implemented document/transform load.
  1033. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1034. * Calendar.cs: added myself to the list of authors.
  1035. * DropDownList.cs: fixed a few properties.
  1036. * ListControl.cs: fixed SelectedIndex.
  1037. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1038. * Calendar.cs: lots of fixes. Render days. Still left to persist
  1039. selected days when changing month.
  1040. * Unit.cs: fixed Percentage and Pixel.
  1041. * WebControl.cs: a few properties are now using ControlStyle instead
  1042. of ViewState to persist.
  1043. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  1044. * BaseValidator.cs: it works now.
  1045. * DataGridColumn.cs: added attribute and made it abstract.
  1046. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  1047. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  1048. * TextBox.cs: default for Wrap is true.
  1049. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  1050. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  1051. * DropDownList.cs:
  1052. (ToolTip): fixed.
  1053. * ListItem.cs:
  1054. (LoadViewState): fixed.
  1055. * ListItemCollection.cs:
  1056. (TrackViewState): use items instead of 'this' in foreach.
  1057. * Style.cs:
  1058. (LoadViewState): more checking of parameters.
  1059. * WebControl.cs: implemented LoadViewState and SaveViewState.
  1060. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  1061. * ListItem.cs: there was no code to unset the flags!!!
  1062. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1063. * FontUnit.cs: use a hashtable for mapping size name to value.
  1064. * HyperLink.cs: fixed a bug and a typo.
  1065. * Unit.cs: some fixes to internal constructor.
  1066. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1067. * ListControl.cs: fixed a couple of range checks.
  1068. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  1069. an HtmlForm (p.e., Label).
  1070. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  1071. * AdRotator.cs:
  1072. * Button.cs:
  1073. * Calendar.cs:
  1074. * CheckBox.cs:
  1075. * CheckBoxList.cs:
  1076. * DataList.cs:
  1077. * DropDownList.cs:
  1078. * HyperLink.cs:
  1079. * HyperLinkColumn.cs:
  1080. * Image.cs:
  1081. * ImageButton.cs:
  1082. * Label.cs:
  1083. * LinkButton.cs:
  1084. * ListBox.cs:
  1085. * Panel.cs:
  1086. * PlaceHolder.cs:
  1087. * RadioButton.cs:
  1088. * RadioButtonList.cs:
  1089. * Table.cs:
  1090. * TableRow.cs:
  1091. * TextBox.cs:
  1092. * WebControl.cs: removed attributes added by mistake (i used
  1093. GetCustomAttributes (true), d'oh!).
  1094. * DataListItem.cs: implemented RenderItem.
  1095. * Repeater.cs: implemented CreateItem and InitializeItem.
  1096. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  1097. * BaseDataList.cs: a couple of fiex and added attributes.
  1098. * DataGrid.cs: little fixes.
  1099. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1100. * CheckBoxList.cs:
  1101. * DataGrid.cs:
  1102. * DataList.cs:
  1103. * DropDownList.cs:
  1104. * ListBox.cs:
  1105. * PlaceHolder.cs:
  1106. * RadioButton.cs:
  1107. * RadioButtonList.cs:
  1108. * TableRow.cs:
  1109. * WebControl.cs:
  1110. * Xml.cs: forgot to add using System.ComponentModel.
  1111. * BaseValidator.cs: use explicitly
  1112. System.ComponentModel.AttributeCollection as there is another class
  1113. with the same name under System.Web.UI.
  1114. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1115. * AdRotator.cs:
  1116. * Button.cs:
  1117. * Calendar.cs:
  1118. * CheckBox.cs:
  1119. * CheckBoxList.cs:
  1120. * DataGrid.cs:
  1121. * DataList.cs:
  1122. * DropDownList.cs:
  1123. * HyperLink.cs:
  1124. * Image.cs:
  1125. * ImageButton.cs:
  1126. * Label.cs:
  1127. * LinkButton.cs:
  1128. * ListBox.cs:
  1129. * Panel.cs:
  1130. * PlaceHolder.cs:
  1131. * RadioButton.cs:
  1132. * RadioButtonList.cs:
  1133. * Table.cs:
  1134. * TableRow.cs:
  1135. * TextBox.cs:
  1136. * WebControl.cs:
  1137. * Xml.cs: added/fixed all attributes used by xsp.
  1138. * BaseValidator.cs: some fixes.
  1139. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  1140. * Table.cs:
  1141. (AddAttributesToRender): correctly default to border=1.
  1142. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1143. * AdRotator.cs:
  1144. (LoadAdFile): make the dictionary null after every iteration.
  1145. * LinkButton.cs:
  1146. * ListControl.cs:
  1147. * ListItem.cs: fixed warnings.
  1148. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  1149. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  1150. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  1151. * DataGridColumn.cs:
  1152. * DataGridPagerStyle.cs:
  1153. * DataList.cs:
  1154. * DataListItem.cs:
  1155. * Image.cs:
  1156. * LinkButton.cs:
  1157. * ListControl.cs:
  1158. * ListItem.cs:
  1159. * ListItemCollection.cs:
  1160. * Repeater.cs:
  1161. * ServerValidateEventArgs.cs:
  1162. * Style.cs:
  1163. * TableRow.cs:
  1164. * WebControl.cs:
  1165. * Xml.cs: more class status page based changes.
  1166. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  1167. * Button.cs:
  1168. (.ctor): fixed to render the correct tag.
  1169. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  1170. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  1171. * WebControl.cs:
  1172. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  1173. WebControl derived classes should be rendered inside a HtmlForm.
  1174. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  1175. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  1176. processing methods.
  1177. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1178. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1179. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1180. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1181. * System.Web.UI.WebControls/Repeater.cs:
  1182. (Controls):
  1183. (OnDataBinding): fixed stack overflow.
  1184. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1185. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1186. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1187. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1188. * WebControl.cs:
  1189. (CopyBaseAttributes): copy Attributes and don't throw exception.
  1190. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1191. * ListBox.cs: mono-stylized.
  1192. (AddAttributesToRender): call parent class method.
  1193. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  1194. * Style.cs: fixed IsEmpty and Width.
  1195. * Table.cs: mono-stylized.
  1196. (TableRowControlCollection.AddAt): fixed.
  1197. (AddAttributesToRender): fixed.
  1198. * TableCell.cs: mono-stylized.
  1199. (.ctor): use PreventAutoID.
  1200. (AddAttributesToRender): fixed.
  1201. (AddParsedSubObject): fixed.
  1202. * TableRow.cs: mono-stylized. Added
  1203. ParseChildren attribute.
  1204. * TableStyle.cs:
  1205. (get_GridLine): fixed.
  1206. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  1207. * Panel.cs: fixed stack overflow.
  1208. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  1209. and SingleConverter.
  1210. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1211. * RadioButton.cs: mono-stylized and some little fixes.
  1212. * TextBox.cs: mono-stylized.
  1213. (MaxLength): fixed typo.
  1214. (AddAttributesToRender): don't render the text between the tags for
  1215. SingleLine, use value attribute for it. Don't render the text for
  1216. Password.
  1217. (OnPreRender): don't throw exception and call base.OnPreRender.
  1218. (Render): for MultiLine, render the text between the opening and
  1219. closing tags encoded as HTML.
  1220. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1221. * ImageButton.cs:
  1222. (AddAttributesToRender): fixer another stack overflow.
  1223. * WebControl.cs:
  1224. (TagName): modified to use TagKey instead of tagKey as the property
  1225. can be overriden.
  1226. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1227. * LinkButton.cs: mono-stylized.
  1228. (AddParsedSubObject):
  1229. (RenderControls): little fixes.
  1230. * WebControl.cs:
  1231. (AddAttributesToRender): fixed usage of IEnumerator.
  1232. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1233. * Literal.cs: beautified.
  1234. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1235. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  1236. * WebControl.cs: use Span as default tag when no other provided in
  1237. constructor. That is what MS renders.
  1238. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1239. * Button.cs:
  1240. (AddAttributesToRender): fixed (classic) stack overflow.
  1241. * CheckBox.cs: mono-stylized.
  1242. (AutoPostBack): fixed stack overflow.
  1243. (Render): fixed alignment issues. Also set the For attribute always
  1244. for the label.
  1245. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  1246. * AdRotator.cs: GetData does not work as it should, but now it returns
  1247. useful data (only the first ad in the file). Set the NavigateUrl
  1248. property in the hyperlink if available.
  1249. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  1250. * Image.cs: added an attribute and fixed stack overflow.
  1251. * WebControl.cs:
  1252. (RenderBeginTag): fixed.
  1253. (TagName): don't call Enum.IsDefined twice.
  1254. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  1255. * WebControl.cs: added attributes PersistChildrenAttribute and
  1256. ParseChildrenAttribute.
  1257. 2002-05-24 Duncan Mak <[email protected]>
  1258. * DataGridItem.cs (SetItemType): Changed function signature to
  1259. match 1.0 spec.
  1260. * ListItemCollection.cs (this): Changes the visibility level of
  1261. the indexer.
  1262. * Repeater.cs (OnItemCommand):
  1263. (OnItemCreated):
  1264. (OnItemDataBound): Added necessary casts.
  1265. 2002-05-07 Duncan Mak <[email protected]>
  1266. * Button.cs (AddAttributesToRender):
  1267. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  1268. GetClientValidatedEvent method.
  1269. 2002-03-27 Gaurav Vaish <[email protected]>
  1270. * Removed extra methods, corrected access modifiers to several
  1271. methods.
  1272. 2002-03-26 Gaurav Vaish <[email protected]>
  1273. * <SeveralFiles>.cs - Added some attributes
  1274. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  1275. methods. Will complete them later. Right now, busy with
  1276. the attributes part.
  1277. * RepeaterItem.cs - Completed.
  1278. Oh God! Mercy! I will die applying attributes. I look at the missing
  1279. part in the class-status - daemon! Kyrie eleison!
  1280. 2002-03-19 Gaurav Vaish <[email protected]>
  1281. Some bug fixes
  1282. * AdRotator.cs - Added definition for Font.
  1283. * BaseCompareValidator.cs - Added definition for Controls.
  1284. * Calendar.cs - SelectMonthText definition corrected.
  1285. * DataList.cs - Added definition for SeparatorTemplate.
  1286. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  1287. but to UI.WebControls.
  1288. 2002-03-17 Gaurav Vaish <[email protected]>
  1289. Finally, I have made it. Today I did a second build for the
  1290. System.Web assembly. It compiled 195 classes today.
  1291. I am waiting eagerly for the runtime to come up so that the objects
  1292. may be tested to their last levels. Several of the methods are still
  1293. under the tag of "TODO" throwing NotImplementedException. Well, I
  1294. hope to remove them soon, but how far is this soon - even I don't
  1295. know, though I am happy to make the build a success even before
  1296. the vacations to come.
  1297. 2002-03-07 Gaurav Vaish <[email protected]>
  1298. Yesterday and today I tried to do some building of the aseembly,
  1299. but was dumped with uncoutably infinite errors. ;-)
  1300. I have put the copies of the recent errors on my home page, want
  1301. to have a look at them? See:
  1302. http://mastergaurav.virtualave.net/mono/
  1303. I don't know what to do with these errors. Oh! The buggy me! How
  1304. will I overcome myself. Hopefully, by when my vacations over, I
  1305. should have made a repository where the build will not fail.
  1306. 2002-03-05 Gaurav Vaish <[email protected]>
  1307. I am now going to do a build that will include the
  1308. System.Web.UI.WebControls namespace. Hoping that I will make it
  1309. soon. My exams are coming near and I have to pack up soon.
  1310. 2002-03-04 Gaurav Vaish <[email protected]>
  1311. Comments:
  1312. And with this, ie, today's work, all the objects mentioned in the
  1313. namespace appear in the implementation. But it may not be worth
  1314. trying to go for a build because of dependence of several of the
  1315. internal methods that may clash with already available assembly
  1316. System.Web.
  1317. Also, the classes lack possible attributes, like those informing
  1318. about child-controls etc. But I have to first create the attribute
  1319. classes before I attach the attributes to the classes.
  1320. * CustomValidator.cs - Completed. In process realized that
  1321. I have to complete / rejuvinate BaseValidator class.
  1322. * BaseValidator.cs - Complete rejuvination. Completed 80%
  1323. of the job. All that is left is Render(HtmlTextWriter),
  1324. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  1325. RegisterValidatorDeclaration()
  1326. * DataGridPagerStyle.cs - Completed. That adds one more missle
  1327. in my artillery.
  1328. * DataKeyCollection.cs - Completed. Petty small.
  1329. * Repeater.cs - Work started off. This is a quite
  1330. heavy class. Hooh!
  1331. * DataGridItemEventArgs.cs,
  1332. * DataGridShortCommandEventArgs.cs,
  1333. * DataListItemEventArgs.cs,
  1334. * MonthChangedEventArgs.cs,
  1335. * RepeaterItemEventArgs.cs,
  1336. * ServerValidateEventArgs.cs,
  1337. * DataGridPageChangedEventArgs.cs
  1338. - Damn, I marked them "*", while they
  1339. did not exist.
  1340. * Repeater.cs - Done all except for an undocumented
  1341. method CreateControlHierarchy(bool). Though the method
  1342. is quite clear by its name, but it will take some time
  1343. for me to come with some material to flush in.
  1344. 2002-03-03 Gaurav Vaish <[email protected]>
  1345. * SelectedDatesCollection.cs - Completed.
  1346. * PagedDataSource.cs - Completed. Pathetically nice class.
  1347. * RegularExpressionValidator.cs
  1348. - Completed. Ridiculously small and
  1349. annoyinglyc crazy-driving class, basically the method
  1350. EvaluateIsValid().
  1351. * RangeValidator.cs - Completed.
  1352. * DataGridColumn.cs - Completed.
  1353. * EditCommandColumn.cs - All is complete except for the
  1354. InitializeCell(TableCell, int, ListItemType) method.
  1355. * DataListItem.cs - All done except for a longish method
  1356. RenderItem(HtmlTextWriter, bool, bool)
  1357. 2002-03-02 Gaurav Vaish <[email protected]>
  1358. * RepeaterItemCollection.cs - Completed.
  1359. I love *Collection classes. I am planning to make a
  1360. program that will generate a *Collection class. It's so
  1361. simple and the same. ;-)
  1362. * DataGridColumnCollection.cs - Completed.
  1363. ... except probably for *ColumnCollection classes, where
  1364. you have to put in some more effort. Still, these class
  1365. generation can be automated.
  1366. * DataListItemCollection.cs - Completed.
  1367. See, how easily, in less than a quarter of a minute, I
  1368. completed this class - manually. Copy-Paste/Cut-Replace.
  1369. 2002-02-21 Gaurav Vaish <[email protected]>
  1370. * DataGrid.cs - Following methods implemented:
  1371. TrackViewState(), LoadViewState(object), SaveViewState(),
  1372. On* -- The event raisers.
  1373. OnBubbleEvent(object, EventArgs) is still incomplete.
  1374. * DataGridItem.cs - Initial Implementation
  1375. * DataGridItemCollection.cs - Completed.
  1376. 2002-02-08 Gaurav Vaish <[email protected]>
  1377. * DataGrid.cs - Initial Implementation. Worked
  1378. primarily with some properties.
  1379. 2002-02-07 Gaurav Vaish <[email protected]>
  1380. * ListBox.cs - Completed. Implemented
  1381. LoadPostData(string, NameValueCollection)
  1382. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  1383. 2002-02-06 Gaurav Vaish <[email protected]>
  1384. * ListBox.cs - Implemented the following:
  1385. RaisePostDataChangedEvent()
  1386. 2002-02-02 Gaurav Vaish <[email protected]>
  1387. * ListBox.cs - Supports the following properties:
  1388. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  1389. ToolTip.
  1390. Methods:
  1391. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  1392. RenderContents(HtmlTextWriter)
  1393. 2002-02-01 Gaurav Vaish <[email protected]>
  1394. * TargetConverter.cs - Completed
  1395. * TemplateColumn.cs - Completed
  1396. * DataList.cs - Corrected the get-er methods for the
  1397. *Style objects. Corrected the get/set-er methods for ViewState
  1398. related objects.
  1399. Addded support for properties:
  1400. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  1401. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  1402. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  1403. SeparatorStyle, SeparatorItemTemplate.
  1404. Events:
  1405. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  1406. ItemCreated, ItemDataBound, UpdateCommand.
  1407. Methods:
  1408. CreateControlStyle(), LoadViewState(object),
  1409. SaveViewState(), TrackViewState
  1410. Event handlers:
  1411. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  1412. OnEditCommand, OnItemCommand, OnItemCreated,
  1413. OnItemDataBound, OnUpdateCommand
  1414. Added dummy methods for some undocumented methods:
  1415. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  1416. CreateItem(int, ListItemType, bool, object),
  1417. PrepareControlHierarchy(), InitializeItem(DataListItem)
  1418. * ListBox.cs - Started working.
  1419. 2002-01-31 Gaurav Vaish <[email protected]>
  1420. * RepeaterInfo.cs - Initial Implementation. Done all
  1421. except for RepeatDirection.Vertical
  1422. * TableStyle.cs - Completed
  1423. 2002-01-30 Gaurav Vaish <[email protected]>
  1424. * DropDownList.cs - Completed
  1425. * ListItemCollection.cs - Added method FindByValueInternal to
  1426. assist in the derived classes.
  1427. Discovered bug in FindByValue. Removed
  1428. * UnitConverter.cs - Completed
  1429. * PlaceHolder.cs - What can be simpler than this?
  1430. * PlaceHolderControlBuilder.cs
  1431. - Uh! Damn cool one.
  1432. * RadioButtonList.cs - Initial Implementation. All is done
  1433. except for the implementation of
  1434. method IRepeatInfoUser.RenderItem(...)
  1435. * ValidatedControlConverter.cs
  1436. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  1437. * ValidationSummary.cs - Initial Implementation.
  1438. * WebColorConverter.cs - Initial Implementation
  1439. 2002-01-27 Gaurav Vaish <[email protected]>
  1440. * FontNamesConverter.cs - Completed
  1441. * FontUnitConverter.cs - Partial Implementation
  1442. * ListItemControlBuilder.cs - Completed
  1443. 2002-01-27 Gaurav Vaish <[email protected]>
  1444. * TextBox.cs - All done except *Render* methods
  1445. * TextBoxControlBuilder.cs - Completed
  1446. * Xml.cs - Partial Implementation
  1447. 2002-01-26 Gaurav Vaish <[email protected]>
  1448. * RadioButton.cs - Completed
  1449. * TextBox.cs - Partial Implementation
  1450. 2002-01-25 Gaurav Vaish <[email protected]>
  1451. * Panel.cs - Completed
  1452. * TableItemStyle.cs - Completed
  1453. 2002-01-18 Gaurav Vaish <[email protected]>
  1454. * TableCellCollection.cs - Completed
  1455. * TableRowCollection.cs - Completed
  1456. * TableHeaderCell.cs - Completed
  1457. * TableRow.cs - Completed
  1458. 2002-01-09 Gaurav Vaish <[email protected]>
  1459. * TableCellControlBuilder.cs - Completed
  1460. * Table.cs - Completed
  1461. * TableCell.cs - Completed
  1462. 2002-01-07 Gaurav Vaish <[email protected]>
  1463. * CheckBoxList.cs - Completed
  1464. * ButtonColumn.cs - Completed
  1465. * Button.cs - Completed
  1466. 2001-12-28 Gaurav Vaish <[email protected]>
  1467. * HyperLink.cs - Completed
  1468. * Image.cs - Completed
  1469. * ImageButton.cs - Completed
  1470. * Label.cs - Completed
  1471. * LabelControlBuilder.cs - Completed
  1472. * LinkButton.cs - Completed
  1473. * LinkButtonControlBuilder.cs - Completed
  1474. * Literal.cs - Completed
  1475. * LieteralControlBuilder.cs - Completed
  1476. * FontUnit.cs - Completed
  1477. 2001-12-27 Gaurav Vaish <[email protected]>
  1478. * Calendar.cs - Completed the functions of Render*,
  1479. ViewStates (Track/View/Save),
  1480. RaisePostBackEvent.
  1481. Left: RenderAllDays (partially)
  1482. 2001-12-21 Gaurav Vaish <[email protected]>
  1483. * Calendar.cs - Added some more functions
  1484. * Style.cs - Completed
  1485. * ListItem.cs - Completed
  1486. * ListItemCollection.cs - Completed
  1487. Made the first successful build of System.Web.dll that included
  1488. System.Web.UI.WebControls!
  1489. 2001-12-20 Gaurav Vaish <[email protected]>
  1490. FontInfo.cs - Complete revamp. Completed
  1491. 2001-12-19 Gaurav Vaish <[email protected]>
  1492. ListItemCollection.cs - Completed
  1493. ListItem.cs - Initial Implementation
  1494. Style.cs - Initial Implementation
  1495. Right now I am in a total mood to do a successful build. Creating so many
  1496. classes, completing classes in System.Web System.Web.UI namespaces.
  1497. 2001-12-18 Gaurav Vaish <[email protected]>
  1498. TODO - Properly added
  1499. CheckBox.cs - Completed
  1500. BaseDataList.cs - Completed
  1501. DayRenderEventArgs.cs - Completed
  1502. RepeaterItem.cs - Initial implementation
  1503. 2001-12-17 Gaurav Vaish <[email protected]>
  1504. BaseCompareValidator.cs - Completed
  1505. AdRotator.cs - Completed
  1506. 2001-12-15 Gaurav Vaish <[email protected]>
  1507. CommandEventArgs.cs - Completed
  1508. DataGridCommandEventArgs.cs - Completed
  1509. RepeaterCommandEventArgs.cs - Completed
  1510. DataListCommandEventArgs.cs - Completed
  1511. CompareValidator.cs - Partial Implementation
  1512. 2001-12-02 Gaurav Vaish <[email protected]>
  1513. CheckBoxList.cs - Partial Implementation.
  1514. All except "Render"
  1515. 2001-12-01 Gaurav Vaish <[email protected]>
  1516. ListControl.cs - Completed
  1517. 2001-11-30 Gaurav Vaish <[email protected]>
  1518. CheckBox.cs - Completed
  1519. ListControl.cs - Initial Implementation
  1520. CheckBoxList.cs - Started with it, but first needed
  1521. ListControl. Left it.
  1522. 2001-11-29 Gaurav Vaish <[email protected]>
  1523. CalendarDay.cs - Making a note that this
  1524. has been implemented
  1525. Calendar.cs - Making a note that have made some changes.
  1526. Unimplmented functions throw
  1527. NotImplementedException
  1528. CheckBox.cs - Can now "Render" and "LoadPostData"
  1529. 2001-11-08 Gaurav Vaish <[email protected]>
  1530. WebControl.cs - Total Revamp, Partial Implementation
  1531. AdRotator.cs - Able to load files
  1532. AdCreatedEventArgs.cs - Implemented
  1533. 2001-11-05 Gaurav Vaish <[email protected]>
  1534. Calendar.cs - Initial Implementation
  1535. ButtonColumn.cs - Initial Implementation
  1536. Button.cs - Initial Implementation
  1537. BoundColumn.cs - Initial Implementation
  1538. BaseCompareValidator.cs - Minor Changes
  1539. DataList.cs, BaseValidator.cs, BaseDataList.cs
  1540. - Added more functions, other changes
  1541. 2001-10-28 Gaurav Vaish <[email protected]>
  1542. WebControl.cs - Initial Implementation
  1543. DataList.cs - Initial Implementation
  1544. BaseValidator.cs - Initial Implementation
  1545. BaseDataList.cs - Initial Implementation
  1546. 2001-10-27 Gaurav Vaish <[email protected]>
  1547. AdCreatedEventArgs.cs - Initial Implementation
  1548. AdCratedEventHandler.cs - Implemented
  1549. AdRotator.cs - Initial Implementation
  1550. BorderStyle.cs - Implemented
  1551. ButtonColumnStyle.cs - Implemented
  1552. CalendarSelectionMode.cs - Implemented
  1553. DayNameFormat.cs - Implemented
  1554. FirstDayOfWeek - Implemented
  1555. FontInfo.cs - Partial Implementation
  1556. FontSize.cs - Implemented
  1557. GridLines.cs - Implemented
  1558. HorizontalAlign.cs - Implemented
  1559. HyperLink.cs - Initial Implementation
  1560. ImageAlign.cs - Implemented
  1561. IRepeatInfoUser.cs - Implemented
  1562. ListItemType.cs - Implemented
  1563. ListSelectionMode.cs - Implemented
  1564. NextPrevFormat.cs - Implemented
  1565. PagerMode.cs - Implemented
  1566. PagerPosition.cs - Implemented
  1567. RepeatDirection.cs - Implemented
  1568. RepeatLayout.cs - Implemented
  1569. TextAlign.cs - Implemented
  1570. TextBoxMode.cs - Implemented
  1571. TitleFormat.cs - Implemented
  1572. UnitType.cs - Implemented
  1573. ValidationCompareOperator.cs
  1574. - Implemented
  1575. ValidationDataType.cs - Implemented
  1576. ValidationSummaryDisplayMode.cs
  1577. - Implemented
  1578. ValidatorDisplay.cs - Implemented
  1579. VerticalAlign.cs - Implemented
  1580. i/ File Created 2001-11-13