ChangeLog 71 KB

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