ChangeLog 74 KB

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