ChangeLog 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302
  1. 2007-06-06 Marek Habersack <[email protected]>
  2. * Control.cs: more changes to the way TemplateSourceDirectory
  3. works in the 2.0 profile. Take into account situations when a
  4. control is placed in a UserControl (.ascx) and only then fall back
  5. to the parent for its TemplateSourceDirectory.
  6. 2007-06-05 Marek Habersack <[email protected]>
  7. * Control.cs: TemplateSourceDirectory uses TemplateControl to
  8. lookup the virtual source directory in the 2.0 instead of the
  9. Parent.
  10. ResolveClientUrl copes with empty TemplateSourceDirectory in the
  11. correct way now - the check is made after the basePath checks.
  12. The changes above make ResolveClientUrl work properly when called
  13. from within a control residing in a TemplateControl.
  14. 2007-05-30 Vladimir Krasnov <[email protected]>
  15. * HtmlTextWriter.cs: EncodeAttributeValue should call
  16. HtmlAttributeEncode as documented
  17. 2007-05-24 Marek Habersack <[email protected]>
  18. * PageParser.cs: added support for the PreviousPageType
  19. directive.
  20. 2007-05-23 Marek Habersack <[email protected]>
  21. * TemplateParser.cs: use VirtualPathUtility.Combine to properly
  22. create the custom control's virtual path.
  23. 2007-05-22 Marek Habersack <[email protected]>
  24. * TemplateBuilder.cs: in the absence of containerAttribute,
  25. default to two-way binding direction.
  26. 2007-05-21 Igor Zelmanovich <[email protected]>
  27. * DataSourceView.cs: refactoring: Update, Insert methods:
  28. exception is re-thrown from catch scope.
  29. It allows actual call stack be shown
  30. 2007-05-17 Vladimir Krasnov <[email protected]>
  31. * TemplateControl.jvm.cs: refactored key for CachedString method
  32. 2007-05-16 Vladimir Krasnov <[email protected]>
  33. * HtmlTextWriter.cs: refactoring, created hashtables for tags, styles
  34. and attributes arrays, that gives performance improvement in GetTagKey
  35. GetStyleKey and GetAttributeKey methods
  36. 2007-05-15 Marek Habersack <[email protected]>
  37. * TemplateControl.cs: implemented the 3-parameter overloads of
  38. GetLocalResourceObject and GetGlobalResourceObject.
  39. * TemplateParser.cs: refactoring - use HttpApplication.LoadType to
  40. actually look up types.
  41. * ControlBuilder.cs: as above
  42. 2007-05-14 Marek Habersack <[email protected]>
  43. * ClientScriptManager.cs: put the hidden field within a <div>, the
  44. way MS.NET does it.
  45. 2007-05-11 Gert Driesen <[email protected]>
  46. * ControlBuilder.cs: Fixed exception message in MapType.
  47. 2007-05-10 Marek Habersack <[email protected]>
  48. * Control.cs: small formatting change
  49. 2007-05-10 Igor Zelmanovich <[email protected]>
  50. * Page.cs: ExecuteRegisteredAsyncTasks:
  51. implimentation for TARGET_JVM doesn't use WaitHandle.WaitAll, but WaitOne
  52. 2007-05-09 Vladimir Krasnov <[email protected]>
  53. * HtmlTextWriter.cs: used classes instead of sctrucs in TARGET_JVM for
  54. AddedTag, AddedStyle and AddedAttr members
  55. * TemplateControl.jvm.cs: refactored CachedString method
  56. 2007-05-09 Marek Habersack <[email protected]>
  57. * CollectionBuilder.cs: formatting changes
  58. * ControlBuilder.cs: if a control enables children as properties,
  59. has a default property and parser encounters a child tag/container
  60. with the default property name, discard the default property
  61. builder in order to avoid invalid sub builder invocation. An
  62. example is: <asp:DropDownList><Items></Items></asp:DropDownList>
  63. Formatting changes.
  64. When checking for empty string, use Length not comparison with ""
  65. 2007-05-08 Marek Habersack <[email protected]>
  66. * CssStyleCollection.cs: put the style in the bag each time a key
  67. is set, otherwise resetting of a key has no effect on rendered
  68. style.
  69. 2007-05-07 Marek Habersack <[email protected]>
  70. * TemplateParser.cs: added support for implicit language
  71. detection. If the language isn't set explicitly in the Page
  72. directive, the language value taken from the configuration
  73. considered to be implicit - that is, it can be overwritten by the
  74. first <script> with the runat="server" and language="xx" sets the
  75. language for the parser. This makes it possible to have the
  76. default language set to "C#" and the inline code in, e.g.,
  77. VisualBasic.
  78. * ControlBuilder.cs: when mapping types, catch casses of missing
  79. original and mapped types.
  80. If mapped type doesn't derive from the original type, throw an
  81. exception. Fixes bug #81553.
  82. 2007-05-04 Marek Habersack <[email protected]>
  83. * Control.cs: added an internal method to resolve a physical path
  84. to a file from its virtual path considering the possibility that a
  85. control is placed in a master page, which in turn is referenced
  86. from a directory another than that of master page itself.
  87. 2007-05-03 Igor Zelmanovich <[email protected]>
  88. * AttributeCollection.cs:
  89. * DataBindingHandlerAttribute.cs:
  90. * HtmlTextWriter.cs:
  91. * PartialCachingControl.cs:
  92. * TemplateControl.cs:
  93. * TemplateControl.jvm.cs:
  94. * XPathBinder.cs:
  95. added missing API.
  96. 2007-05-03 Igor Zelmanovich <[email protected]>
  97. * CssStyleCollection.cs: optimization:
  98. used StringBuilder instead string to hold value.
  99. When added key that not exists in collection, value is recalculated by
  100. appending required key to existing value.
  101. 2007-05-02 Igor Zelmanovich <[email protected]>
  102. * Control.cs: ResolveClientUrl: optimization.
  103. if basePath is the same as TemplateSourceDirectory
  104. releativeUrl is returned as is.
  105. 2007-05-02 Igor Zelmanovich <[email protected]>
  106. * Control.cs:
  107. ResolveClientUrl considers TemplateSourceDirectory property.
  108. 2007-05-01 Marek Habersack <[email protected]>
  109. * PageParser.cs: clientTarget comparisons must be case-insensitive
  110. 2007-04-30 Konstantin Triger <[email protected]>
  111. * DataBinder.cs: When formatting, threat empty string as null.
  112. 2007-04-27 Marek Habersack <[email protected]>
  113. * TemplateControlParser.cs: 2.0 allows 'Namespace' without the
  114. 'Assembly' attribute on tag prefix registration.
  115. * TemplateParser.cs: do not rely on assembly name being not null.
  116. 2007-04-19 Gert Driesen <[email protected]>
  117. * TemplateParser.cs: On 2.0 profile, allow namespace in ClassName
  118. attribute. Fixes part of bug #81399.
  119. 2007-04-11 Marek Habersack <[email protected]>
  120. * Page.cs: check whether control passed to
  121. RegisterRequiresPostBack implements the IPostBackDataHandler
  122. interface.
  123. 2007-04-06 Marek Habersack <[email protected]>
  124. * ClientScriptManager.cs: render the 'type' attribute in
  125. WriteScript and do not render the 'language' attribute when in
  126. NET_2_0+ mode.
  127. * Page.cs: defaults for ViewStateEncrptionMode and AsyncTimeout
  128. are read from the pages section, if found.
  129. * TemplateControlParser.cs: added support for loading
  130. pages/controls defaults from web.config even if the page/control
  131. does not have its corresponding directive.
  132. Added support for reading the CompilationMode attribute.
  133. * PageParser.cs: added support for loading pages/controls defaults
  134. as above. Fixes bug #80915.
  135. Added support for reading the maxPageStateFieldLength setting.
  136. Added support for reading the pageParserFilter setting.
  137. * ControlBuilder.cs: allow tag mappings from code found
  138. in bin/* or App_Code/*. Fixes bug #80811.
  139. 2007-03-29 Vladimir Krasnov <[email protected]>
  140. * TemplateControl.jvm.cs: performance improvement, added cache for
  141. methods and events in user code
  142. 2007-03-26 Marek Habersack <[email protected]>
  143. * TemplateControl.cs: make local resources work with master
  144. pages - use the AppRelativeVirtualPath for resource resolution.
  145. * TemplateParser.cs: support the meta:resourcekey attribute in
  146. Page and Control directives. Fixes bug #81204.
  147. 2007-03-21 Marek Habersack <[email protected]>
  148. * UnknownAttributeDescriptor.cs: an internal helper class for
  149. custom directive attributes support.
  150. * BaseParser.cs: ThrowParseException can now take variadic
  151. parameters, for convenience.
  152. * TemplateParser.cs: add support for custom attributes for the
  153. Page and Control directives.
  154. Added support for the CodeFileBaseClass directive. Fixes bug #81132
  155. 2007-03-20 Igor Zelmanovich <[email protected]>
  156. * Control.cs: fixed ResolveClientUrl method.
  157. 2007-03-18 Marek Habersack <[email protected]>
  158. * BaseParser.cs: fix BaseVirtualDir to always return app-absolute
  159. paths.
  160. 2007-03-17 Marek Habersack <[email protected]>
  161. * MasterPageParser.cs: remove superfluous #ifdef
  162. * TemplateParser.cs: use VirtualPathUtility here
  163. 2007-03-14 Vladimir Krasnov <[email protected]>
  164. * TemplateControl.jvm.cs: fixed WireupAutomaticEvents, performance
  165. optimization
  166. 2007-03-13 Marek Habersack <[email protected]>
  167. * TemplateParser.cs: name generated classes the same way MS.NET
  168. does - include the app-relative path to the control/page in the
  169. class name.
  170. 2007-03-13 Adar Wesley <[email protected]>
  171. * Page.cs: improved Async Page implementation.
  172. 2007-03-13 Marek Habersack <[email protected]>
  173. * TemplateControl.cs: implement AppRelativeVirtualPath. Closes bug
  174. #80634.
  175. 2007-03-12 Marek Habersack <[email protected]>
  176. * RootBuilder.cs: change the error text to be less misleading.
  177. 2007-03-12 Igor Zelmanovich <[email protected]>
  178. * AttributeCollection.cs:
  179. * CssStyleCollection.cs: fixed: works w/o state bag.
  180. 2007-03-12 Igor Zelmanovich <[email protected]>
  181. * HtmlTextWriter.cs: fixed:
  182. - Fixed writing background-image style attribute (different behavior in
  183. 1.1 and 2.0).
  184. - Does not encode 'name' attribute.
  185. - Always encode style attributes (for 2.0 only).
  186. 2007-03-06 Adar Wesley <[email protected]>
  187. * Page.cs: initial implementation of support for Async=true. Added
  188. initial support for ViewStateEncryption. Implemented
  189. CreateHtmlTextWriterFromType.
  190. * PageAsyncTask.cs: Created class to support Async pages.
  191. * ObjectStateFormatter.cs: Added support for ViewState encryption.
  192. * HtmlTextWriter.cs: Fixed constructor to accept null TextWriter
  193. to conform to MS behavior.
  194. 2007-03-05 Vladimir Krasnov <[email protected]>
  195. * Control.jvm.cs: fixed TemplateSourceDirectory property
  196. 2007-03-03 Marek Habersack <[email protected]>
  197. * TemplateParser.cs: support but ignore the Async and AsyncTimeOut
  198. page directive attributes.
  199. Support the LinePragmas page directive attribute.
  200. * PageParser.cs: added support for the
  201. MaintainScrollPositionOnPostBack page directive attribute.
  202. 2007-02-26 Igor Zelmanovich <[email protected]>
  203. * TemplateControl.cs:
  204. * TemplateControl.jvm.cs: fixed: AutoEventWireup feature:
  205. Method 'Page_XXX' is declared in the base class must be
  206. called even is private.
  207. 2007-02-26 Vladimir Krasnov <[email protected]>
  208. * Control.cs: fixed AppRelativeTemplateSourceDirectory property, should
  209. not return AppRelativeTemplateSourceDirectory of master page
  210. 2007-02-26 Igor Zelmanovich <[email protected]>
  211. * ClientScriptManager.cs: fixed: GetScriptLiteral escapes back-slash:
  212. 2007-02-22 Igor Zelmanovich <[email protected]>
  213. * TemplateControl.cs: added missing property AppRelativeVirtualPath
  214. 2007-02-21 Konstantin Triger <[email protected]>
  215. * TemplateParser.cs: remove CodeGenerator.IsValidLanguageIndependentIdentifier
  216. check from Global.asax inherits attribute to let inherits="A.B" construct.
  217. 2007-02-20 Igor Zelmanovich <[email protected]>
  218. * ObjectStateFormatter.cs:
  219. optimization for serialization of primitive type arrays
  220. 2007-02-19 Igor Zelmanovich <[email protected]>
  221. * ClientScriptManager.cs:
  222. * Control.cs:
  223. * Page.cs:
  224. implemented PostBackOptions.TrackFocus feature.
  225. 2007-02-14 Igor Zelmanovich <[email protected]>
  226. * Page.cs: for 2.0: refactoring:
  227. prepare infrastructure for Form.SubmitDisabledControls feature
  228. 2007-02-18 Eyal Alaluf <[email protected]>
  229. * Control.jvm.cs, Control.cs: Move TemplateSourceDirectory to .jvm file.
  230. * Control.jvm.cs, Page.jvm.cs: Centralize Portlet specific API in Page.jvm
  231. * Page.cs, Page.jvm.cs, ClientScriptManager.cs: Support for Http callbacks
  232. for J2EE portlets.
  233. 2007-02-14 Igor Zelmanovich <[email protected]>
  234. * Page.cs: for 2.0:
  235. '__EVENTTARGET' and '__EVENTARGUMENT' hidden fields are
  236. registered only once.
  237. 2007-02-14 Igor Zelmanovich <[email protected]>
  238. * Page.cs: for 2.0: '__doPostBack' declared as function of form.
  239. convention to use 'currForm' instead 'myForm'
  240. 2007-02-14 Igor Zelmanovich <[email protected]>
  241. * Page.cs:
  242. * ClientScriptManager.cs:
  243. including 'webform.js' requires '__doPostBack' on the form be rendered.
  244. 2007-02-14 Igor Zelmanovich <[email protected]>
  245. * Page.cs:
  246. * ClientScriptManager.cs:
  247. refactoring: 'theForm' variable is always declared on client.
  248. '__EVENTTARGET' and '__EVENTARGUMENT' hidden fields is rendered using
  249. RegisterHiddenField API. 'WebForm_OnSubmit' declared as function of form.
  250. 2007-02-14 Vladimir Krasnov <[email protected]>
  251. * Page.cs: fixed OnInit, adding css should throw exception if no header
  252. present on the page
  253. 2007-02-14 Igor Zelmanovich <[email protected]>
  254. * Page.cs: __doPostBack considers 2.0 features
  255. such RegisterOnSubmitStatement
  256. 2007-02-14 Igor Zelmanovich <[email protected]>
  257. * Page.cs:
  258. * ClientScriptManager.cs:
  259. implemented RegisterOnSubmitStatement for 2.0
  260. 2007-02-13 Igor Zelmanovich <[email protected]>
  261. * ClientScriptManager.cs: EventValidation feature optimization on Callback.
  262. 2007-02-13 Igor Zelmanovich <[email protected]>
  263. * Page.cs: fixed exception handling on Callback at client.
  264. 2007-02-08 Marek Habersack <[email protected]>
  265. * Page.cs: Make sure to create specific cultures.
  266. 2007-02-08 Vladimir Krasnov <[email protected]>
  267. * ClientScriptManager.cs: added array declaration also as member of
  268. form in TARGET_J2EE for j2ee portal support.
  269. Added validators context init for GetClientValidationEvent under
  270. TARGET_J2EE for j2ee portal support.
  271. * Page.cs: fixed OnFormPostRender, render array declarations after
  272. postback script.
  273. 2007-02-04 Igor Zelmanovich <[email protected]>
  274. * Page.cs:
  275. * ClientScriptManager.cs:
  276. client scripts (webform.js, callback.js and
  277. MaintainScrollPositionOnPostBack.js) were merged into one resource file.
  278. 2007-02-04 Igor Zelmanovich <[email protected]>
  279. * Page.cs:
  280. http://msdn2.microsoft.com/en-us/library/ms178141.aspx
  281. LAMESPEC: on Callback IsPostBack is set to false, but true.
  282. 2007-02-04 Igor Zelmanovich <[email protected]>
  283. * Page.cs:
  284. VerifyRenderingInServerForm does not fire exception when IsCallback
  285. 2007-02-04 Igor Zelmanovich <[email protected]>
  286. * Page.cs:
  287. * ClientScriptManager.cs:
  288. fixed RegisterClientScriptInclude: all includes that was registered before
  289. rendering are rendered at begin form.
  290. 2007-02-02 Marek Habersack <[email protected]>
  291. * TemplateParser.cs: Do not register controls here.
  292. 2007-02-02 Adar Wesley <[email protected]>
  293. * Control.cs: Changed UniqueId implementation to have '$' and not ':'
  294. to conform to MS. This led to updating several Tests that referenced
  295. the UniqueId as string.
  296. 2007-01-30 Eyal Alaluf <[email protected]>
  297. * ClientScriptManager.cs: Fix Igor's last changes for TARGET_JVM.
  298. 2007-01-29 Igor Zelmanovich <[email protected]>
  299. * Page.cs:
  300. * ClientScriptManager.cs:
  301. CallBack works with EvantValidation.
  302. 2007-01-25 Eyal Alaluf <[email protected]>
  303. * Page.cs: Change code to use the 'theForm' property when generating
  304. JavaScript code. Ensure that we pass 'theForm' as param to the JS funcs.
  305. * Page.jvm.cs, Control.jvm.cs: Implement the 'theForm' property to include
  306. the portlet namespace. Moved 'PortletNamespace' from Control.jvm.cs
  307. * Page.jvm.cs, Control.jvm.cs, ClientScriptManager.cs: Added support for
  308. saving hidden fields for TARGET_J2EE Portlets re-render.
  309. * Control.cs: Under TARGET_J2EE portal support add the PortletNamespace
  310. to all the control IDs to ensure they different between portlets.
  311. 2007-01-24 Vladimir Krasnov <[email protected]>
  312. * Page.cs: fixed CheckForValidationSupport,
  313. SupportsEventValidationAttribute should be checked at only one level
  314. 2007-01-23 Vladimir Krasnov <[email protected]>
  315. * TemplateControl.jvm.cs: ParseControl not supported, added limited
  316. implementation if TestDeviceFilter
  317. 2007-01-22 Konstantin Triger <[email protected]>
  318. * ClientScriptManager.cs: ensure the callback client script is
  319. registered before the client script includes are rendered.
  320. 2007-01-22 Konstantin Triger <[email protected]>
  321. * Page.cs, ClientScriptManager.cs: ensure the web form client script is
  322. registerd before the client script includes are rendered.
  323. 2007-01-21 Konstantin Triger <[email protected]>
  324. * Page.cs: move the WriteClientScriptIncludes to the top of the form,
  325. according to the MSDN.
  326. 2007-01-20 Miguel de Icaza <[email protected]>
  327. * XhtmlTextWriter.cs: comment out unused code.
  328. * ThemeProvider.cs: comment out unused code.
  329. * DataSourceView.cs: Comment unused variable.
  330. * ClientScriptManager.cs: Put the expandoAttributes inside the 2.0
  331. code
  332. * Control.cs: Put _templateControl inside the NET_2_0 ifdef
  333. 2007-01-20 Marek Habersack <[email protected]>
  334. * TemplateParser.cs: Check whether the base type is in the root
  335. namespace.
  336. 2007-01-18 Eyal Alaluf <[email protected]>
  337. * Control.jvm.cs: Added PortletNamespace property.
  338. 2007-01-16 Vladimir Krasnov <[email protected]>
  339. * TemplateControl.jvm.cs: remover TemplateSourceDirectory propery
  340. * Control.cs: moved TemplateSourceDirectory from TemplateControl for
  341. TARGET_JVM, fixed AppRelativeTemplateSourceDirectory
  342. 2007-01-16 Vladimir Krasnov <[email protected]>
  343. * TemplateControl.jvm.cs: added 2.0 event names for wiring up
  344. 2007-01-15 Ilya Kharmatsky <ilya - at - decode-systems.com>
  345. * Control.cs:
  346. - IsViewStateEnabled - removed check for non-null page, since
  347. the control by definition should come with enabled
  348. view state, even if it not 'attached' to the page
  349. - HasEvents() - implementation (still could produce bug in exotic scenarios
  350. when all events added to 'this' control has been removed
  351. through the property 'Events', but currently we can't see
  352. better implementation)
  353. 2007-01-14 Eyal Alaluf <[email protected]>
  354. * Control.jvm.cs, Page.jvm.cs: Added TARGET_J2EE specific files.
  355. * Page.cs, ClientScriptManager.cs, Control.cs: Added J2EE portal
  356. support for TARGET_J2EE.
  357. 2007-01-12 Miguel de Icaza <[email protected]>
  358. * Control.cs: Remove comment, it provides no information about
  359. what could be wrong.
  360. 2007-01-08 Vladimir Krasnov <[email protected]>
  361. * PageTheme.cs: implemented
  362. * Page.cs: fixed InitializeTheme, added PageTheme page initialization
  363. * TemplateControl.cs,
  364. * TemplateControl.jvm.cs: added XPath, XPathSelect overloads with
  365. IXmlNamespaceResolver parameter
  366. * XPathBinder.cs: added Eval, Select overloads with
  367. IXmlNamespaceResolver parameter, refactored
  368. 2007-01-08 Vladimir Krasnov <[email protected]>
  369. * TemplateControl.jvm.cs: added GetGlobalResourceObject
  370. 2007-01-07 Igor Zelmanovich <[email protected]>
  371. * Page.cs: refactoring: used RegisterHiddenField for _VIEWSTATE field.
  372. 2007-01-04 Igor Zelmanovich <[email protected]>
  373. * Control.cs: ensure 'id' attribute will be rendered if
  374. ClientID was accessed but ID is generated by the Page,
  375. important for custom controls developing.
  376. 2007-01-04 Igor Zelmanovich <[email protected]>
  377. * Page.cs: fixed: InitializeCulture should be called
  378. before creating controls.
  379. 2007-01-03 Marek Habersack <[email protected]>
  380. * Page.cs: Make sure the ValidatorOnSubmit function is defined for the
  381. document before attempting to use it.
  382. 2007-01-01 Vladimir Krasnov <[email protected]>
  383. * Control.cs: fixed ResolveClientUrl, wrong when control that calls
  384. this method and the page are in different folders
  385. 2006-12-31 Gonzalo Paniagua Javier <[email protected]>
  386. * Page.cs: show the validation summary when client validation and
  387. linkbuttons are used. Patch by Juraj Skripsky.
  388. 2006-12-31 Igor Zelmanovich <[email protected]>
  389. * Page.cs: fixed: EventValidation is not performed for CallBack request.
  390. 2006-12-27 Igor Zelmanovich <[email protected]>
  391. * Page.cs: fixed: RegisterRequiresPostBack feature.
  392. 2006-12-21 Marek Habersack <[email protected]>
  393. * ControlBuilder.cs: Add support for tag mapping in 2.0
  394. 2006-12-20 Marek Habersack <[email protected]>
  395. * TemplateParser.cs: make sure Context.ApplicationInstance is not
  396. valid before adding application assembly.
  397. 2006-12-11 Igor Zelmanovich <[email protected]>
  398. * Page.cs: fixed and optimized ProcessPostData
  399. The "second try" used for controls that created at OnLoad.
  400. fixed for controls that use RgisterRequeresPostBack to handle post data.
  401. 2006-11-29 Igor Zelmanovich <[email protected]>
  402. * Page.cs: The specified theme must exist as either an application theme.
  403. If the theme does not exist, an HttpException exception s thrown.
  404. 2006-12-09 Marek Habersack <[email protected]>
  405. * HiddenFieldPageStatePersister.cs: Implement the 2.0 class (used
  406. also in the 1.x profile)
  407. * ObjectStateFormatter.cs: Implement the IStateFormatter interface
  408. * ClientScriptManager.cs: Use IStateFormatter instead of
  409. LosFormatter.
  410. Use the IStateFormatter interface when registering the hidden
  411. field with the state.
  412. * LosFormatter.cs: Use ObjectStateFormatter
  413. * PageStatePersister.cs: Make the class available as internal for
  414. 1.x profile.
  415. Constructor throws an exception on its page parameter being null.
  416. Implemented several properties: ControlState, ViewState, Page,
  417. StateFormatter
  418. * Page.cs: Use new state persister for all the profiles.
  419. Use the new HiddenFieldPageStatePersister class.
  420. * IStateFormatter.cs: Make the class available as internal for 1.x profile.
  421. 2006-12-04 Vladimir Krasnov <[email protected]>
  422. * TemplateControl.jvm.cs: fixed TemplateSourceDirectory initialization
  423. 2006-11-29 Marek Habersack <[email protected]>
  424. * TemplateParser.cs: if the OutputCache directive is present, make
  425. sure the cache does not expire the current output.
  426. 2006-11-29 Igor Zelmanovich <[email protected]>
  427. * Page.cs: added missing methods and properties:
  428. AsyncMode
  429. AsyncTimeout
  430. IsAsync
  431. UniqueFilePathSuffix
  432. MaxPageStateFieldLength
  433. ViewStateEncryptionMode
  434. AddOnPreRenderCompleteAsync
  435. AddOnPreRenderCompleteAsync
  436. ExecuteRegisteredAsyncTasks
  437. CreateHtmlTextWriterFromType
  438. RegisterRequiresViewStateEncryption
  439. 2006-11-29 Igor Zelmanovich <[email protected]>
  440. * Page.cs: Master property returns null when no HttpContext.
  441. 2006-11-29 Igor Zelmanovich <[email protected]>
  442. * Page.cs: InitializeCulture method is called before OnPreInit.
  443. 2006-11-28 Marek Habersack <[email protected]>
  444. * TemplateControlParser.cs: Use the new TemplateParser methods to
  445. register controls/namespaces
  446. * TemplateParser.cs: Implement support for the
  447. system.web/pages/namespaces collection instead of hard-coding the
  448. namespaces into the source.
  449. Refactoring: added two internal methods to handle both the
  450. system.web/pages/controls registration and the Register directive.
  451. Added a new internal method to pull the system.web/pages/controls
  452. collection before parsing.
  453. 2006-11-27 Marek Habersack <[email protected]>
  454. * SimpleWebHandlerParser.cs: Added support for looking up types in
  455. the top-level assemblies (App_Code et al)
  456. 2006-11-27 Igor Zelmanovich <[email protected]>
  457. * Control.cs: implemented EnsureID method.
  458. 2006-11-27 Igor Zelmanovich <[email protected]>
  459. * Control.cs: implemented Focus methods.
  460. 2006-11-27 Igor Zelmanovich <[email protected]>
  461. * Page.cs: implemented SetFocus methods.
  462. * PageLifeCycle.cs:
  463. 2006-11-27 Igor Zelmanovich <[email protected]>
  464. * ClientScriptManager.cs: refactoring:
  465. extracted method RegisterWebFormClientScript
  466. 2006-11-27 Igor Zelmanovich <[email protected]>
  467. * Control.cs: implemented OpenFile()
  468. 2006-11-26 Igor Zelmanovich <[email protected]>
  469. * Page.cs:
  470. * Control.cs:
  471. implemented ClearChildState(), ClearChildControlState() and
  472. IsChildControlStateCleared
  473. 2006-11-26 Igor Zelmanovich <[email protected]>
  474. * Page.cs:
  475. * ClientScriptManager.cs:
  476. implemented RegisterExpandoAttribute feature
  477. 2006-11-23 Igor Zelmanovich <[email protected]>
  478. * ListSourceHelper.cs: optimization of implementation
  479. 2006-11-23 Igor Zelmanovich <[email protected]>
  480. * ListSourceHelper.cs: implemented
  481. 2006-11-21 Igor Zelmanovich <[email protected]>
  482. * DataSourceView.cs: fixed: constructor throws ArgumentNullException
  483. 2006-11-21 Igor Zelmanovich <[email protected]>
  484. * Page.cs: fixed: PreviousPage property
  485. when CrossPostBack is processed PreviousPage is initialized
  486. only if PreviousPage property is called.
  487. 2006-11-21 Igor Zelmanovich <[email protected]>
  488. * DataSourceControl.cs: fixed: Focus(), EnableTheming
  489. 2006-11-21 Marek Habersack <[email protected]>
  490. * Control.cs: Make ClientIDSeparator private for !NET_2_0
  491. 2006-11-21 Igor Zelmanovich <[email protected]>
  492. * Page.cs: fixed: LoadControlState is called for controls
  493. that added on Load and latter
  494. 2006-11-20 Marek Habersack <[email protected]>
  495. * Control.cs: Implementations of a few missing properties.
  496. * Page.cs: Added support for automatic culture detection from the
  497. user's browser.
  498. * PageParser.cs: Added support for "auto" cultures in the Page
  499. directive.
  500. 2006-11-20 Igor Zelmanovich <[email protected]>
  501. * ClientScriptManager.cs: fixed: ValidateEvent feature:
  502. client side return eventArgument as empty string
  503. for controls that set it as null
  504. 2006-11-18 Marek Habersack <[email protected]>
  505. * ClientScriptManager.cs: Implemented two missing
  506. GetPostBackEventReference overloads. Made one of the overloads
  507. internal for .NET < 2.0.
  508. 2006-11-17 Marek Habersack <[email protected]>
  509. * PostBackOptions.cs: Renamed the constructors parameters to match
  510. those Microsoft .NET uses.
  511. targetControl must not be passed null to the constructor.
  512. * ClientScriptManager.cs: Support for event validation.
  513. Implemented a GetPostBackHyperlink overload.
  514. Implemented the RegisterForEventValidation methods.
  515. Implemented the ValidateEvent method.
  516. Added support for saving/restoring event validation state.
  517. * Page.cs: EnableEventValidation can be set only from the config
  518. files (the <pages> element), the Page directive or from
  519. Page_Init. After Page_Init returns, an exception is thrown.
  520. Made GetFormatter internal, so that ClientScriptManager can use
  521. it.
  522. Added the internal LifeCycle property which contains the current
  523. life cycle stage of the page request processing.
  524. Added calls to save/restore event validation state.
  525. Added checks for whether child controls of the page support event
  526. validation or not.
  527. Added calls to ClientScriptManager.ValidateEvent in appropriate
  528. places.
  529. * PageLifeCycle.cs: Added the PageLifeCycle enum, used in event
  530. validation.
  531. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  532. * LosFormatter.cs:
  533. * ObjectStateFormatter.cs: match MS 1.x and 2.0 behaviour for null and
  534. empty strings.
  535. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  536. * SimpleWebHandlerParser.cs: 'using' for file reading.
  537. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  538. * Page.cs: revert r67514 until after tagging for the next release.
  539. 2006-11-12 Igor Zelmanovich <[email protected]>
  540. * LiteralControl.cs: fixed: constructors & Text property
  541. 2006-11-09 Igor Zelmanovich <[email protected]>
  542. * Page.cs: fixed: LoadControlState is called for controls
  543. that added on Load and latter, for 1.x refactoring only
  544. 2006-11-02 Igor Zelmanovich <[email protected]>
  545. * ClientScriptManager.cs:
  546. fixed: checks arguments for null in public methods,
  547. fixed public interface.
  548. 2006-10-23 Igor Zelmanovich <[email protected]>
  549. * PostBackOptions.cs: fixed: default values of properties
  550. 2006-10-22 Igor Zelmanovich <[email protected]>
  551. * CssStyleCollection.cs:
  552. * AttributeCollection.cs:
  553. fixed: style collection is synchronized with style attribute
  554. 2006-10-19 Igor Zelmanovich <[email protected]>
  555. * ClientScriptManager.cs: fixed: renders id attribute in hidden field
  556. 2006-10-18 Marek Habersack <[email protected]>
  557. * TemplateParser.cs: reference System.Resources when compiling a
  558. control.
  559. * TemplateControl.cs: implement the GetGlobalResourceObject
  560. ASP.NET 2.0 APIs.
  561. 2006-10-12 Igor Zelmanovich <[email protected]>
  562. * Page.cs: fixed: for 2.0 only
  563. When Page processes Callback IsPostBack = false, but it still needs
  564. LoadViewState/ControlState and ProcessPostData
  565. 2006-10-11 Igor Zelmanovich <[email protected]>
  566. * DataSourceSelectArguments.cs: fixed:
  567. SortExpression not returns null,
  568. Empty property returns new instance each time
  569. 2006-10-10 Igor Zelmanovich <[email protected]>
  570. * DataSourceSelectArguments.cs:
  571. fixed: RaiseUnsupportedCapabilitiesError method.
  572. 2006-10-09 Igor Zelmanovich <[email protected]>
  573. * DataSourceSelectArguments.cs: fixed: Equals method.
  574. 2006-10-09 Gonzalo Paniagua Javier <[email protected]>
  575. * CssStyleCollection.cs: don't clear the collection of properties, but
  576. create a new one.
  577. 2006-10-06 Gonzalo Paniagua Javier <[email protected]>
  578. * CssStyleCollection.cs: 'style' can be modified on our back, so build
  579. the style table every time instead of keeping one that is not in sync.
  580. Fixes bug #79587.
  581. 2006-09-25 Igor Zelmanovich <[email protected]>
  582. * Page.cs: fixed: Cross-page postback feature in ASP.NET 2.0
  583. When page is invoked by cross-page posting, PreviousPage processed all
  584. live-cycle up to OnLoadComplite included.
  585. IsPostBack, IsCallBack and IsCrossPagePostBack returns relevant values.
  586. 2006-09-20 Gonzalo Paniagua Javier <[email protected]>
  587. * TemplateParser.cs: patch by Joel Reed that makes use of the namespace
  588. collection from the PagesConfiguration to add new namespaces when
  589. generating the page/control code.
  590. 2006-09-18 Gonzalo Paniagua Javier <[email protected]>
  591. * PageParser.cs: support the EnableEventValidation attribute.
  592. 2006-09-18 Igor Zelmanovich <[email protected]>
  593. * Page.cs: fixed: Title property works properly
  594. 2006-09-17 Igor Zelmanovich <[email protected]>
  595. * ClientScriptManager.cs: added helper method
  596. 2006-09-14 Igor Zelmanovich <[email protected]>
  597. * Page.cs: fixed: GetValidators(string), Validate(string) works properly
  598. 2006-09-08 Robert Jordan <[email protected]>
  599. * Page.cs: assure that RenderTrace is called even if an
  600. exception occurred. Fixes bug #78930.
  601. 2006-09-08 Gonzalo Paniagua Javier <[email protected]>
  602. * TemplateControl.cs: search for the new Page_* event handlers in 2.0.
  603. Patch by Marek Habersack that fixes bug #78268.
  604. 2006-09-07 Lluis Sanchez Gual <[email protected]>
  605. * Page.cs: Use lowercase getElementById in the javascript that
  606. checks the browser.
  607. 2006-08-22 Vladimir Krasnov <[email protected]>
  608. * KeyedListEnumerator.cs: fixed Current property to return real object
  609. instead of DictionaryEntry
  610. 2006-09-06 Gonzalo Paniagua Javier <[email protected]>
  611. * Page.cs: don't use the Browser object, as it slows down process
  612. request time *a lot*. Fixes bug #79206.
  613. 2006-09-05 Konstantin Triger <[email protected]>
  614. * Page.cs: Imlemented InitOutputCache(OutputCacheParameters cacheSettings).
  615. * OutputCacheParameters.cs: added an implementation.
  616. 2006-09-04 Igor Zelmanovich <[email protected]>
  617. * CssStyleCollection.cs: fixed: background-image style attribute
  618. 2006-08-31 Konstantin Triger <[email protected]>
  619. * StaticPartialCachingControl.cs: added forwarding implementation for
  620. 2.0 version of BuildCachedControl().
  621. 2006-08-30 Igor Zelmanovich <[email protected]>
  622. * Page.cs: added internal method
  623. * ClientScriptManager.cs:
  624. 2006-08-30 Igor Zelmanovich <[email protected]>
  625. * ClientScriptManager.cs: added helper method
  626. 2006-08-22 Vladimir Krasnov <[email protected]>
  627. * Page.cs: fixed ApplyMasterPage, masterPageFile can be empty string
  628. if compiled with .net aspx parser
  629. fixed OnInit, GetStyleSheets may return null if no css files found by
  630. .net aspx parser
  631. 2006-08-22 Vladimir Krasnov <[email protected]>
  632. * TemplateControl.jvm.cs: fixed WireupAutomaticEvents, removed access
  633. modifiers check on event handlers
  634. 2006-08-22 Vladimir Krasnov <[email protected]>
  635. * Control.cs: implemented AppRelativeTemplateSourceDirectory for aspx
  636. parser 2.0
  637. * TemplateControl.jvm.cs: fixed AppRelativeVirtualPath
  638. fixed TemplateSourceDirectory, should not work on master pages.
  639. 2006-08-20 Vladimir Krasnov <[email protected]>
  640. * MasterPageParser.jvm.cs: fixed path resolving
  641. GetCompiledMasterInstance
  642. 2006-08-17 Vladimir Krasnov <[email protected]>
  643. * TemplateControl.jvm.cs: fixed data binding API, implemented
  644. AppRelativeVirtualPath, ReadStringResource
  645. 2006-08-17 Vladimir Krasnov <[email protected]>
  646. * Page.cs: added stubs to run aspx files compiled by .net
  647. 2006-08-17 Vladimir Krasnov <[email protected]>
  648. * MasterPageParser.jvm.cs: implemented
  649. 2006-08-10 Andrew Skiba <[email protected]>
  650. * Page.cs: render css path as a virtual path.
  651. 2006-08-09 Robert Jordan <[email protected]>
  652. * Control.cs: add the 2.0 ResolveClientUrl method.
  653. Expose ResolveClientUrl as internal for the 1.1 profile.
  654. Fixes bug #77539.
  655. 2006-08-08 Vladimir Krasnov <[email protected]>
  656. * added MasterPageParser.jvm.cs
  657. 2006-08-08 Vladimir Krasnov <[email protected]>
  658. * ControlBuilder.jvm.cs: added BuildObject method
  659. 2006-08-08 Vladimir Krasnov <[email protected]>
  660. * ParseChildrenAttribute.cs: fixed ChildControlType property to
  661. compliant to .net
  662. * UserControl.cs: fixed ParseChildren attribute to be compliant
  663. to .net
  664. 2006-08-08 Igor Zelmanovich <[email protected]>
  665. * Page.cs: implemented MaintainScrollPositionOnPostBack feature
  666. 2006-08-06 Vladimir Krasnov <[email protected]>
  667. * Control.cs: fixed EnableTheming proprty, fixes bug when child
  668. control has EnableTheming=false and parent has true.
  669. 2006-07-31 Vladimir Krasnov <[email protected]>
  670. * MasterPage.cs: fixed default values, fixed AddContentTemplate
  671. 2006-07-31 Vladimir Krasnov <[email protected]>
  672. * Control.cs: fixed EnableTheming proprty, fixes the bug when skins
  673. are applied even if EnableTheming property was set to false.
  674. 2006-07-24 Andrew Skiba <[email protected]>
  675. * DataSourceView.cs: refactor to keep the original exception stack.
  676. 2006-07-21 Gonzalo Paniagua Javier <[email protected]>
  677. * PostBackOptions.cs: default to String.Empty for several field values.
  678. Patch by Marek Habersack.
  679. 2006-07-20 Gonzalo Paniagua Javier <[email protected]>
  680. * Page.cs: when ProcessRequest is not called, get the session from
  681. the current context. Fixes bug #78730.
  682. 2006-07-20 Gonzalo Paniagua Javier <[email protected]>
  683. * Page.cs: fix IsPostback for AJAX calls to match MS behavior. Patch
  684. by Peijen Lin that closes bug #78646.
  685. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  686. * TemplateControlParser.cs: fix compilation caching when more than one
  687. @control is compiled from source. Closes bug #78626.
  688. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  689. * Page.cs: add the 2.0 Items property. Fixes bug #78467.
  690. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  691. * Page.cs: use the new internal LosFormatter.SerializeToBase64.
  692. * LosFormatter.cs: always work on base 64 strings even if the
  693. input/output is on a Stream. Fixes bug #78640.
  694. 2006-06-08 Konstantin Triger <[email protected]>
  695. * Page.cs: For loading themes, use '~/App_Themes' instead of
  696. './App_Themes' to enable theme support for files in sub folders.
  697. 2006-05-25 Andrew Skiba <[email protected]>
  698. * Control.cs: move 2.0 stuff into ifdef NET_2_0
  699. 2006-05-25 Andrew Skiba <[email protected]>
  700. * Page.cs, Control.cs: Fix the order of OnInit invocation of controls
  701. created via master page content (see
  702. http://lists.ximian.com/pipermail/mono-devel-list/2006-May/018585.html ).
  703. 2006-05-11 Andrew Skiba <[email protected]>
  704. * Page.cs, PageTheme.cs: This patch uses LinkedStyleSheets from the
  705. PageTheme and from StyleSheetPageTheme to insert links in page header.
  706. 2006-05-10 Andrew Skiba <[email protected]>
  707. * TemlpateParser.cs: surround file name with quotes
  708. 2006-05-08 Chris Toshok <[email protected]>
  709. * ControlBuilder.cs (ResetState): set renderIndex to 0 here. This
  710. fixes the last thing keeping the test in #76818 from working.
  711. 2006-05-07 Andrew Skiba <[email protected]>
  712. * Page.cs: if no theme is defined in aspx, read default from web.config.
  713. Same for the style sheet theme.
  714. 2006-04-27 Andrew Skiba <[email protected]>
  715. * TemplateParser.cs: format according to
  716. http://lists.ximian.com/pipermail/mono-devel-list/2006-April/018096.html
  717. 2006-04-25 Chris Toshok <[email protected]>
  718. * PageThemeParser.cs (LinkedStyleSheets): reformat.
  719. 2006-04-25 Konstantin Triger <[email protected]>
  720. * Control.cs: implementation for IsViewStateEnabled.
  721. 2006-04-25 Andrew Skiba <[email protected]>
  722. * Control.cs: fix null pointer exception
  723. 2006-04-23 Andrew Skiba <[email protected]>
  724. * PageThemeParser.cs: add LinkedStyleSheets property
  725. 2006-04-16 Andrew Skiba <[email protected]>
  726. * TemplateParser.cs: add internal method AddAssemblyByFileName
  727. 2006-04-16 Konstantin Triger <[email protected]>
  728. * SimpleWebHandlerParser.cs: correctly resolve GACs dependencies.
  729. 2006-04-11 Konstantin Triger <[email protected]>
  730. * Page.cs, TemplateControl.cs: refactoring implementing Page.GetDataItem().
  731. 2006-04-10 Chris Toshok <[email protected]>
  732. * PageThemeFileParser.cs (AddDirective): allow Register directives
  733. in skin files.
  734. 2006-04-02 Chris Toshok <[email protected]>
  735. * Control.cs (DesignMode): always return false for now. Fixes
  736. #77991.
  737. 2006-03-24 Gonzalo Paniagua Javier <[email protected]>
  738. * ControlBuilder.cs: when creating a default property builder, handle
  739. strings specially.
  740. * StringPropertyBuilder.cs: new builder used in TextBox 2.0.
  741. 2006-03-15 Vladimir Krasnov <[email protected]>
  742. * ControlCollection.cs: fixed CopyTo method, fixes bug when if target
  743. index is not zero
  744. 2006-03-13 Chris Toshok <[email protected]>
  745. * HtmlTextWriterTag.cs: no [Serializable] in 2.0.
  746. * HtmlTextWriterAttribute.cs: same.
  747. * HtmlTextWriterStyle.cs: same.
  748. * VirtualReferenceType.cs: new enum.
  749. 2006-03-13 Chris Toshok <[email protected]>
  750. * UserControl.cs: rework InitializeAsUserControl and
  751. InitializeAsUserControlInternal - the Internal variety doesn't set
  752. this.page to null now.
  753. * MasterPage.cs (CreateMasterPage): map the masterPageFile path,
  754. and also remove a line of spew.
  755. 2006-03-09 Vladimir Krasnov <[email protected]>
  756. * Added PageParser.jvm.cs, WebServiceParser.jvm.cs
  757. 2006-03-07 Chris Toshok <[email protected]>
  758. * Page.cs (InitializeStyleSheet): load the style sheet theme using
  759. ThemeDirectoryCompiler.
  760. (InitializeTheme): load the page's theme using
  761. ThemeDirectoryCompiler.
  762. (InternalProcessRequest): call InitializeTheme after OnPreInit.
  763. (FrameworkInitialize): call InitializeStyleSheet.
  764. (PageTheme,StyleSheetPageTheme): new properties to get the
  765. respective themes.
  766. * Control.cs (ApplyStyleSheetSkin): new method. Calls ApplySkin
  767. on the ControlSkin (if there is one) for this control in the
  768. page's StyleSheetSkin.
  769. (ApplyThemeRecursively): applies the page's theme recursively to
  770. the control hierarchy. Must be done this way because the control
  771. tree is already present when we apply the theme (it has to be,
  772. since theme's override settings).
  773. * PageTheme.cs (GetControlSkin): add internal call to do the
  774. lookup for us.
  775. * PageThemeFileParser.cs: the parser object that represents each
  776. individual skin file.
  777. * PageThemeParser.cs: the parser object that represents the entire
  778. theme directory.
  779. * PageThemeBuilder.cs: this class generates the right exception on
  780. the right event, but it's not hooked up yet.
  781. 2006-03-02 Chris Toshok <[email protected]>
  782. * Control.cs (ApplyStyleSheetTheme): remove the exception, and add
  783. a MonoTODO.
  784. * Page.cs (Theme): implement setter/getter.
  785. (StyleSheetTheme): same.
  786. * PageParser.cs (ProcessMainAttributes): parse the Theme and
  787. StyleSheetTheme attributes.
  788. 2006-02-27 Chris Toshok <[email protected]>
  789. * TemplateControl.cs: corcompare work.
  790. * ExpressionBindingCollection.cs: same.
  791. * HierarchicalDataSourceControl.cs: same.
  792. * PostBackOptions.cs: same.
  793. * ClientScriptManager.cs: same.
  794. * FilterableAttribute.cs: same.
  795. * ControlCollection.cs: same.
  796. * DataBindingCollection.cs: same.
  797. * PropertyEntry.cs: mark ctor internal.
  798. * SimpleWebHandlerParser.cs: mark the 2.0 ctor as internal.
  799. * Page.cs: stub out two Theme oriented 2.0 properties.
  800. * DataBinder.cs: remove the obsolete attribute on the ctor.
  801. * TwoWayBoundPropertyEntry.cs: remove this.
  802. * ControlBuilder.cs (BindingContainerType): virtual in 2.0.
  803. * ThemeProvider: new (stubbed) class.
  804. * SkinBuilder.cs: same.
  805. * PageTheme.cs: same.
  806. * ControlSkin.cs: same.
  807. * ControlSkinProc.cs: rename this to ControlSkinDelegate.cs.
  808. * SimplePropertyEntry.cs: mark ctor as internal.
  809. * IThemeResolutionService.cs: enable the 3 members of this
  810. interface.
  811. 2006-02-27 Chris Toshok <[email protected]>
  812. * ListSourceHelper.cs: this class is static.
  813. * Page.cs: add some EditorBrowsable attributes to the 2.0 events.
  814. 2006-02-27 Chris Toshok <[email protected]>
  815. * DataSourceView.cs: Name isn't virtual.
  816. * DataSourceControl.cs: beat this class over the head with the
  817. corcompare stick.
  818. * DataSourceControlBuilder.cs: new stubbed control builder for
  819. DataSourceControl.
  820. 2006-02-23 Chris Toshok <[email protected]>
  821. * Page.cs: more corcompare work.
  822. 2006-02-23 Chris Toshok <[email protected]>
  823. * Page.cs (ProcessCallbackData): track change to
  824. ICallbackEventHandler iface.
  825. * ICallbackEventHandler.cs: enable the proper members of this
  826. interface.
  827. * DataSourceSelectArguments.cs: reformat getter/setters.
  828. 2006-02-22 Cesar Lopez Nataren <[email protected]>
  829. * HtmlTextWriter.cs: Added method WriteEncodedText for the .NET 2.0 profile.
  830. 2006-02-14 Gonzalo Paniagua Javier <[email protected]>
  831. * WebHandlerParser.cs:
  832. * WebServiceParser.cs:
  833. * UserControlParser.cs:
  834. * PageParser.cs: added new ctor that uses a TextReader as input.
  835. * TemplateControlParser.cs: new Reader property.
  836. * SimpleWebHandlerParser.cs: new Reader property and ctor.
  837. 2006-02-12 Cesar Lopez Nataren <[email protected]>
  838. * HtmlTextWriter.cs: Implemented IsValidFormAttribute and
  839. WriterBreak for the .NET 2.0 profile.
  840. 2006-02-10 Gonzalo Paniagua Javier <[email protected]>
  841. * IThemeResolutionService.cs: this is now added to the
  842. sources file, but some other stuff does not compile yet as the
  843. interface changed after the beta.
  844. * ObjectConverter.cs: removed extra attribute.
  845. * ObjectStateFormatter.cs: add IStateFormatter for 2.0.
  846. * ICallbackEventHandler.cs: update the interface, but commented the
  847. 'good' stuff out, since other files need to be fixed too.
  848. 2006-02-07 Chris Toshok <[email protected]>
  849. * ControlBuilder.cs: rename flushOutputStatements to
  850. methodStatements to at least reflect that they're in that method.
  851. 2006-02-07 Chris Toshok <[email protected]>
  852. * MasterPage.cs (CreateMasterPage): don't nullref on null
  853. contentTemplateCollection.
  854. * ControlBuilder.cs: add a flushOutputStatements field.
  855. * PageParser.cs (ProcessMainAttributes): handle Title attribute.
  856. (Title): add getter.
  857. * Page.cs (Title): implement getter/setter.
  858. (InternalProcessRequest): after calling ApplyMasterPage, apply the
  859. page's Title directive if there is one.
  860. (AddContentTemplate): make the EditorBrowsable attribute apply to
  861. the method, not the field.
  862. 2006-02-07 Chris Toshok <[email protected]>
  863. * MasterPage.cs: rework this file, adding some static methods
  864. gleaned from MS stack traces, and clear up the propogation of
  865. content templates between nested master pages.
  866. * Control.cs (TemplateControl): implement.
  867. * TemplateControl.cs: re-indent some of the code.
  868. (ReadStringRecource): according to msdn2, these throw
  869. NotSupportedException.
  870. * MasterPageParser.cs (HandleOption): implement. assign our
  871. master page's MasterPageFile from the UserControl property.
  872. * UserControl.cs (InitializeAsUserControlInternal): new method
  873. that allows initialization without a page.
  874. * UserControlParser.cs (ProcessMainAttributes): for 2.0 handle
  875. MasterPageFile attributes, so we can have nested master pages.
  876. (MasterPageFile): add a 2.0 specific property.
  877. * TemplateControlParser.cs: in .net 2.0, our base class is
  878. BaseTemplateParser.
  879. (HandleOptions): be consistent and call base.HandleOptions.
  880. * BaseTemplateParser.cs: new (stubbed) class.
  881. * MasterPageControlBuilder.cs: new file, not filled in (and really
  882. not used either.)
  883. * Page.cs (InternalProcessRequest): call ApplyMasterPage.
  884. (SaveExistingContentTemplates): nuke.
  885. (ReapplyExistingContentTemplate): nuke.
  886. (ApplyMasterPage): if we have a master page, call
  887. MasterPage.ApplyMasterPageRecursive with it and add it to our
  888. controls.
  889. (set_MasterPageFile): remove call to SaveExistingContentTemplates.
  890. (get_Master): call MasterPage.CreateMasterPage.
  891. (AddContentTemplate): keep track of the page's content templates
  892. in a local Hashtable - they aren't our master page's content
  893. templates.
  894. 2006-02-01 Chris Toshok <[email protected]>
  895. * TemplateParser.cs: CONFIGURATION_2_0 => NET_2_0, and replace
  896. calls to GetWebApplicationSection with GetSection.
  897. * SimpleWebHandlerParser.cs: same.
  898. * Page.cs: same.
  899. * PageParser.cs: same.
  900. * BaseParser.cs: same.
  901. 2006-01-27 Chris Toshok <[email protected]>
  902. * MasterPage.cs (ContentTemplatesInternal): add get/set for the
  903. actual Hashtable.
  904. * Page.cs (SaveExistingContentTemplates): store off the existing
  905. MasterPage content templates so they can be reapplied when setting
  906. MasterPageFile to something else.
  907. (ReapplyExistingContentTemplates): set masterPage's
  908. ContentTemplates to our saved copy.
  909. (set_MasterPageFile): save off the current content templates
  910. before clearing masterPage.
  911. (get_Master): reapply the saved content templates after we create
  912. the new MasterPage.
  913. 2006-01-25 Chris Toshok <[email protected]>
  914. * ClientScriptManager.cs (RegisterClientScriptResource): last
  915. patch, I swear. How can 1 line of code have 3 bugs?
  916. 2006-01-25 Chris Toshok <[email protected]>
  917. * ClientScriptManager.cs (RegisterClientScriptResource): gah, fix
  918. problem with last commit - unquote "resourceName" so it uses the
  919. parameter instead of the string constant.
  920. 2006-01-22 Chris Toshok <[email protected]>
  921. * RootBuilder.cs (.cctor): use a 2.0 friendly hashtable ctor to
  922. quiet mcs.
  923. * PageParser.cs (ProcessMainAttributes): i missed a
  924. CONFIGURATION_2_0 block.
  925. * BoundPropertyEntry.cs (.ctor): mark as internal to fix
  926. corcompare.
  927. 2006-01-18 Konstantin Triger <[email protected]>
  928. * ObjectStateFormatter.cs: preserve emptiness in ColorFormatter.
  929. 2006-01-18 Konstantin Triger <[email protected]>
  930. * HtmlTextWriter.cs: perform case insensitive compare;
  931. return correct key in default case.
  932. 2006-01-11 Chris Toshok <[email protected]>
  933. * ClientScriptManager.cs (RegisterClientScriptResource):
  934. implement.
  935. 2006-01-11 Vladimir Krasnov <[email protected]>
  936. * ObjectStateFormatter.cs: Removed TARGET_JVM parts in
  937. TypeFormatter.Read
  938. 2006-01-10 Chris Toshok <[email protected]>
  939. * Page.cs (ValidateCollection): in NET_2_0 if event validation is
  940. off, return true.
  941. 2006-01-09 Chris Toshok <[email protected]>
  942. * Page.cs: fix a lot of indentation, and add the
  943. EnableEventValidation .net 2.0 property.
  944. 2006-01-09 Vladimir Krasnov <[email protected]>
  945. * ObjectStateFormatter.cs: Merged TARGET_JVM parts in
  946. TypeFormatter.Read, TypeFormatter.Write from /main/5
  947. 2006-01-09 Konstantin Triger <[email protected]>
  948. * Page.cs: make ProcessRequest virtual under TARGET_JVM.
  949. 2006-01-04 Chris Toshok <[email protected]>
  950. * TemplateParser.cs (.ctor): kinda gross, but handle the
  951. AddAssembliesInBin case here.
  952. * SimpleWebHandlerParser.cs (.ctor): same.
  953. 2006-01-04 Chris Toshok <[email protected]>
  954. * SimpleWebHandlerParser.cs: Remove the declaration of
  955. compilationConfig in the CONFIGURATION_2_0 case. it's
  956. unnecessary.
  957. (.ctor): ifdef out the AddAssembliesInBin call in the
  958. CONFIGURATION_2_0 case. need to revisit this.
  959. (CompilationConfig): add a CONFIGURATION_2_0 version.
  960. * BaseParser.cs: Remove the declaration of compilationConfig in
  961. the CONFIGURATION_2_0 case. it's unnecessary.
  962. 2005-12-08 Gonzalo Paniagua Javier <[email protected]>
  963. * Control.cs: use _controls instead of the property wherever possible.
  964. 2005-12-05 Gonzalo Paniagua Javier <[email protected]>
  965. * Control.cs: use the _controls field instead of the Controls property.
  966. Fixes bug #76919.
  967. 2005-11-30 Sebastien Pouliot <[email protected]>
  968. * KeyedList.cs: Fixed for IOrderedDictionary change in 2.0 final.
  969. Now internal.
  970. * KeyedListEnumerator.cs: Now internal.
  971. 2005-11-29 Gonzalo Paniagua Javier <[email protected]>
  972. * ControlCollection.cs: allow 'null' in Remove.
  973. 2005-11-28 Chris Toshok <[email protected]>
  974. * Page.cs (GetFormatter): CONFIGURATION_2_0 work.
  975. * TemplateParser.cs (..ctor): CONFIGURATION_2_0 work.
  976. (PagesConfig): add a CONFIGURATION_2_0 version that returns a
  977. PagesSection.
  978. * PageParser.cs (ProcessMainAttributes): CONFIGURATION_2_0 work.
  979. * BaseParser.cs (CompilationConfig): add a CONFIGURATION_2_0
  980. version that returns a CompilationSection.
  981. 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
  982. * SimpleWebHandlerParser.cs: removed 'codebehind' related stuff.
  983. 2005-11-09 Chris Toshok <[email protected]>
  984. * ViewStateEncryptionMode.cs: new 2.0 enum.
  985. 2005-11-08 Gonzalo Paniagua Javier <[email protected]>
  986. * TemplateParser.cs: fixes #76423. Not tested properly.
  987. 2005-11-07 Gonzalo Paniagua Javier <[email protected]>
  988. * Page.cs: call LoadViewStateRecursive when the Form collection has
  989. not been used by a different page (GetTypeHashCode). This fixes problems
  990. when calling Server.Transfer while preserving Form and QueryString,
  991. as the page we transfer to used the view state stored in the Form, which
  992. contained the serialized data for the page calling Server.Transfer
  993. instead.
  994. 2005-10-31 Gonzalo Paniagua Javier <[email protected]>
  995. * Page.cs: add/remove the error before/after invoking OnError.
  996. 2005-10-27 Gonzalo Paniagua Javier <[email protected]>
  997. * Page.cs: call OnError when there's an exception (not for TAE). Fixes
  998. bug #76572.
  999. 2005-10-25 Gonzalo Paniagua Javier <[email protected]>
  1000. * TemplateControl.cs:
  1001. * PartialCachingControl.cs: if a control is cacheable, LoadControl
  1002. returns a PartialCachingControl that holds the VaryBy* and takes care
  1003. of partial caching and rendering. Fixes bug #76547.
  1004. 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
  1005. * Page.cs: don't cache the 'Validate()' results. IsValid retests
  1006. the validators again.
  1007. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  1008. * DesignerDataBoundLiteralControl.cs: changed autoid api.
  1009. * DataBoundLiteralControl.cs: changed autoid api.
  1010. * Control.cs: fixlet for UniqueID and weird test case. Removed
  1011. PreventAutoID and only use the property to set that value.
  1012. * LiteralControl.cs: changed autoid api.
  1013. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  1014. * AttributeCollection.cs: avoid code duplication and
  1015. don't add "style" to the bag, or it will overwrite the settings made
  1016. by CssStyleCollection.
  1017. * CssStyleCollection.cs: make it throw where MS throws.
  1018. Minimize the number of times we create the "style" string and take
  1019. care of updating it for the AttributeCollection. FillStyle and
  1020. BagToString are now private. One should use the 2.0 (internal in <2.0)
  1021. Value property.
  1022. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  1023. * Control.cs: fix HasChildViewStates.
  1024. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  1025. * LosFormatter.cs: when the default ctor is used, MAC is disabled.
  1026. Fixes bug #76240.
  1027. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  1028. * ObjectTagBuilder.cs: only fail when no id and no attributes.
  1029. 2005-09-23 Sebastien Pouliot <[email protected]>
  1030. * DataBindingCollection.cs: Using an hashtable is a nice trick but
  1031. we need to copy values (not the DictionaryEntry) in CopyTo.
  1032. * Page.cs: IsValid throws an exception if the page hasn't be
  1033. validated. VerifyRenderingInServerForm doesn't throw an exception
  1034. during unit testing (without a context?) but does in normal ops.
  1035. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1036. * LosFormatter.cs: the exceptions thrown have a 500 httpCode. Really
  1037. save the allocation of new MemoryStreams when possible. Thanks to
  1038. Sebastien again.
  1039. 2005-09-23 Ben Maurer <[email protected]>
  1040. * HtmlTextWriter.cs: Initial support for escaping.
  1041. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1042. * ViewStateOutputHashStream.cs: Removed. It didn't last long.
  1043. * Page.cs: almost restored to its previous state, but now that we found
  1044. that LosFormatter ctor that takes 'enableMac', moved the logic to
  1045. add the hash and validate there. Thanks to Sebastien for his input.
  1046. * LosFormatter.cs: implemented the missing ctors and support for
  1047. "MAC" validation of the data.
  1048. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1049. * Page.cs:
  1050. * ViewStateOutputHashStream.cs: added support for viewstate MAC. It
  1051. prevents the viewstate being altered on the client and it's disabled
  1052. by default as per the documentation, but MS machine.config has it
  1053. enabled in machine.config.
  1054. 2005-09-22 Miguel de Icaza <[email protected]>
  1055. * DataBindingCollection.cs: Raise the event, remove MonoTODO.
  1056. * MinimizableAttributeTypeConverter.cs: Fix warning, compare to a
  1057. string.
  1058. 2005-09-21 Sebastien Pouliot <[email protected]>
  1059. * Control.cs: Added null checks for Trace as it can be null when
  1060. rendering (like it was for 39 unit tests).
  1061. 2005-09-21 Gonzalo Paniagua Javier <[email protected]>
  1062. * Page.cs: reverted hacks used with the wrong method of getting a
  1063. control rendered size.
  1064. * Control.cs: if the trace is enabled, save control rendered size.
  1065. 2005-09-19 Sebastien Pouliot <[email protected]>
  1066. * Page.cs: Remove references to IPageParser (removed from 2.0 RC). We
  1067. now use HtmlHeader directly.
  1068. * UrlPropertyAttribute.cs: Removed AllowedTypes property (2.0 RC) and
  1069. rewrote Equals to avoid dual type cast.
  1070. 2005-09-19 Sebastien Pouliot <[email protected]>
  1071. * SupportsEventValidationAttribute.cs: New attribute added in 2.0 RC.
  1072. 2005-09-19 Sebastien Pouliot <[email protected]>
  1073. * ControlBuilder.cs: Added BuildObject override for 2.0 profile.
  1074. * TagPrefixAttribute.cs: Added LinkDemand for AspNetHostingPermission
  1075. with Minimal level. Fixed checks on ctor.
  1076. * TemplateBuilder.cs: Added LinkDemand and InheritanceDemand for
  1077. AspNetHostingPermission with Minimal level.
  1078. * TemplateContainerAttribute.cs: Added LinkDemand for
  1079. AspNetHostingPermission with Minimal level.
  1080. * TemplateControl.cs: Added LinkDemand and InheritanceDemand for
  1081. AspNetHostingPermission with Minimal level. Fixed checks/exceptions.
  1082. Stubbed IFilterResolutionService for CAS testing.
  1083. * TemplateControlParser.cs: Added LinkDemand and InheritanceDemand for
  1084. AspNetHostingPermission with Minimal level.
  1085. * TemplateParser.cs: Added LinkDemand and InheritanceDemand for
  1086. AspNetHostingPermission with Minimal level.
  1087. * ThemeableAttribute.cs: Added LinkDemand for AspNetHostingPermission
  1088. with Minimal level. Removed IDispose interface.
  1089. * ToolboxDataAttribute.cs: Added LinkDemand for
  1090. AspNetHostingPermission with Minimal level. Fixed IsDefaultAttribute
  1091. to work on both 1.x and 2.0 profiles.
  1092. * Triplet.cs: Added LinkDemand and (only for 1.x) InheritanceDemand
  1093. for AspNetHostingPermission with Minimal level.
  1094. * UserControl.cs: Added LinkDemand and InheritanceDemand for
  1095. AspNetHostingPermission with Minimal level. Stubbed
  1096. IFilterResolutionService for CAS testing.
  1097. * UserControlControlBuilder.cs: Added LinkDemand and InheritanceDemand
  1098. for AspNetHostingPermission with Minimal level.
  1099. * ValidationPropertyAttribute.cs: Added LinkDemand for
  1100. AspNetHostingPermission with Minimal level.
  1101. * ValidatorCollection.cs: Added LinkDemand for AspNetHostingPermission
  1102. with Minimal level.
  1103. * WebResourceAttribute.cs: Removed extra ctor and added setter to
  1104. PerformSubstitution.
  1105. * WebServiceParser.cs: Added LinkDemand and InheritanceDemand for
  1106. AspNetHostingPermission with Minimal level.
  1107. 2005-09-15 Sebastien Pouliot <[email protected]>
  1108. * ParseChildrenAttribute.cs: Added LinkDemand for
  1109. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1110. casting. Added new ctor and public fields (2.0). Changed
  1111. ChildControlType setter visibility to internal.
  1112. * PartialCachingAttribute.cs: Added LinkDemand for
  1113. AspNetHostingPermission with Minimal level. Added new ctor and
  1114. SqlDependency property (2.0).
  1115. * PartialCachingControl.cs: Added LinkDemand and InheritanceDemand for
  1116. AspNetHostingPermission with Minimal level.
  1117. * PersistenceModeAttribute.cs: Added LinkDemand for
  1118. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1119. casting.
  1120. * PersistChildrenAttribute.cs: Added LinkDemand for
  1121. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1122. casting.
  1123. * PropertyConverter.cs: Added LinkDemand for AspNetHostingPermission
  1124. with Minimal level. Class is static in 2.0.
  1125. * RootBuilder.cs: Added LinkDemand and, for 2.0, InheritanceDemand for
  1126. AspNetHostingPermission with Minimal level. Class is no more sealed in
  1127. 2.0. Added new (2.0) BuiltObjects property.
  1128. * SimpleWebHandlerParser.cs: Added LinkDemand and InheritanceDemand
  1129. for AspNetHostingPermission with Minimal level.
  1130. * StateItem.cs: Added LinkDemand for AspNetHostingPermission with
  1131. Minimal level.
  1132. * StateBag.cs: Added LinkDemand for AspNetHostingPermission with
  1133. Minimal level. Removed SetDirty() which was called (2.0) but did
  1134. nothing.
  1135. * StaticPartialCachingControl.cs: Added LinkDemand and
  1136. InheritanceDemand for AspNetHostingPermission with Minimal level.
  1137. 2005-09-15 Sebastien Pouliot <[email protected]>
  1138. * Html32TextWriter.cs: Added LinkDemand and InheritanceDemand for
  1139. AspNetHostingPermission with Minimal level. Added new 2.0 properties
  1140. (but the generated HTML doesn't use them).
  1141. * HtmlTextWriter.cs: Added LinkDemand and InheritanceDemand for
  1142. AspNetHostingPermission with Minimal level.
  1143. * ImageClickEventArgs.cs: Added LinkDemand for AspNetHostingPermission
  1144. with Minimal level.
  1145. * LiteralControl.cs: Added LinkDemand and InheritanceDemand for
  1146. AspNetHostingPermission with Minimal level. Default Text is null.
  1147. * LosFormatter.cs: Added LinkDemand and InheritanceDemand for
  1148. AspNetHostingPermission with Minimal level. Stubbed new 2.0 ctor.
  1149. * ObjectConverter.cs: Added LinkDemand and InheritanceDemand for
  1150. AspNetHostingPermission with Minimal level. Obsoleted ctor for 2.0.
  1151. * ObjectTagBuilder.cs: Added LinkDemand for AspNetHostingPermission
  1152. with Minimal level. Added check for null id (HttpException).
  1153. * Page.cs: Added LinkDemand and InheritanceDemand for
  1154. AspNetHostingPermission with Minimal level. Throw some HttpException
  1155. when no context is available.
  1156. * Pair.cs: Added LinkDemand for AspNetHostingPermission with Minimal
  1157. level. InheritanceDemand too for 1.x.
  1158. * PageParser.cs: Added LinkDemand for AspNetHostingPermission with
  1159. Minimal level.
  1160. 2005-09-14 Sebastien Pouliot <[email protected]>
  1161. * DataBinder.cs: Added LinkDemand for AspNetHostingPermission with
  1162. Minimal level. Fixed some exceptions.
  1163. * DataBindingCollection.cs: Added LinkDemand for
  1164. AspNetHostingPermission with Minimal level. Added 2.0 method and
  1165. event.
  1166. * DataBindingHandlerAttribute.cs: Added LinkDemand for
  1167. AspNetHostingPermission with Minimal level.
  1168. * DataBinding.cs: Added LinkDemand for AspNetHostingPermission with
  1169. Minimal level. Simplified Equals (reduced casts).
  1170. * DataBoundLiteralControl.cs: Added LinkDemand for
  1171. AspNetHostingPermission with Minimal level. Implemented ITextControl
  1172. for 2.0.
  1173. * DesignerDataBoundLiteralControl.cs: Added LinkDemand for
  1174. AspNetHostingPermission with Minimal level.
  1175. * DesignTimeParseData.cs: Added LinkDemand for AspNetHostingPermission
  1176. with Minimal level. Added new 2.0 properties.
  1177. * DesignTimeTemplateParser.cs: Added LinkDemand for
  1178. AspNetHostingPermission with Minimal level. Made class static and
  1179. stubbed missing methods (2.0).
  1180. * EmptyControlCollection.cs: Added LinkDemand and InheritanceDemand
  1181. for AspNetHostingPermission with Minimal level. Changed Add* methods
  1182. exceptions to HttpException.
  1183. 2005-09-14 Sebastien Pouliot <[email protected]>
  1184. * AttributeCollection.cs: Added LinkDemand for AspNetHostingPermission
  1185. with Minimal level.
  1186. * BaseParser.cs: Added LinkDemand and InheritanceDemand for
  1187. AspNetHostingPermission with Minimal level.
  1188. * BasePartialCachingControl.cs: Added LinkDemand and InheritanceDemand
  1189. for AspNetHostingPermission with Minimal level.
  1190. * CompiledTemplateBuilder.cs: Added LinkDemand for
  1191. AspNetHostingPermission with Minimal level.
  1192. * ConstructorNeedsTagAttribute.cs: Added LinkDemand for
  1193. AspNetHostingPermission with Minimal level.
  1194. * ControlBuilderAttribute.cs: Added LinkDemand for
  1195. AspNetHostingPermission with Minimal level. Simplified Equals and
  1196. IsDefaultAttribute.
  1197. * ControlBuilder.cs: Added LinkDemand and InheritanceDemand for
  1198. AspNetHostingPermission with Minimal level.
  1199. * ControlCachePolicy.cs: Hided ctor and removed SupportsCaching setter
  1200. * ControlCollection.cs: Added LinkDemand and InheritanceDemand for
  1201. AspNetHostingPermission with Minimal level. Fixed possible stack
  1202. overflow in Add* methods. Fixed CopyTo as we're not allocating the
  1203. array based on the number of items.
  1204. * Control.cs: Added LinkDemand and InheritanceDemand for
  1205. AspNetHostingPermission with Minimal level. Fixed 2.0 signatures.
  1206. * CssStyleCollection.cs: Added LinkDemand for AspNetHostingPermission
  1207. with Minimal level.
  1208. * IStyleSheet.cs: Fixed parameter orders (2.0).
  1209. 2005-09-10 Gonzalo Paniagua Javier <[email protected]>
  1210. * TemplateParser.cs: default VS 2005 pages are compiled fine now.
  1211. 2005-09-07 Chris Toshok <[email protected]>
  1212. * MinimizableAttributeTypeConverter.cs: new class, whose existence
  1213. we know about because of corcompare, and for whose implementation
  1214. we have exclusively nunit to thank.
  1215. 2005-09-06 Chris Toshok <[email protected]>
  1216. * RootBuilder.cs (.cctor): doh, add all the new html controls
  1217. here.
  1218. 2005-08-31 Chris Toshok <[email protected]>
  1219. * DataSourceSelectArguments.cs (Empty): this is apparently,
  1220. according to corcompare, a property, not a field. go figure.
  1221. (Equals): implement.
  1222. (IsEmpty): remove all mention of it.
  1223. 2005-08-29 Chris Toshok <[email protected]>
  1224. * StateBag.cs (GetChar): add.
  1225. 2005-08-28 Chris Toshok <[email protected]>
  1226. * Page.cs: more random corcompare work.
  1227. (PageAdapter): implement.
  1228. 2005-08-28 Chris Toshok <[email protected]>
  1229. * Page.cs (.ctor): set our initial ID to "__Page".
  1230. (SmartNavigation): obsolete in 2.0.
  1231. (FindControl): new implementation. Just check our own ID against
  1232. the control we're looking for. otherwise pass it along to
  1233. base.FindControl.
  1234. (GetPostBackClientHyperlink): obsolete in 2.0.
  1235. 2005-08-28 Chris Toshok <[email protected]>
  1236. * ClientScriptManager.cs: public sealed in 2.0
  1237. * IAdaptableTextWriter.cs: new 2.0 interface.
  1238. * IHierarchyData.cs: fix return type for GetParent.
  1239. 2005-08-28 Chris Toshok <[email protected]>
  1240. * Pair.cs: mark serializable and sealed in 2.0.
  1241. 2005-08-26 Sebastien Pouliot <[email protected]>
  1242. * CssStyleCollection.cs: Implemented setter for Value (2.0) using the
  1243. existing (but internal) FillStyle method. Rewrote BagToString to use an
  1244. HtmlTextWriter so we get the "right" format for background-image url.
  1245. 2005-08-26 Sebastien Pouliot <[email protected]>
  1246. * CssStyleCollection.cs: Implemented this[HtmlTextWriterStyle],
  1247. Remove(HtmlTextWriterStyle) and the getter for Value (all 2.0). Removed
  1248. the extra space from last patch because they break some unit tests.
  1249. 2005-08-26 Lluis Sanchez Gual <[email protected]>
  1250. * CssStyleCollection.cs: Added some spacing.
  1251. * HtmlTextWriter.cs: Made style and attribute tables static.
  1252. Implemented StaticGetStyleName().
  1253. 2005-08-26 Sebastien Pouliot <[email protected]>
  1254. * CssStyleCollection.cs: Stubbed new 2.0 stuff to allow TableStyleTest
  1255. compilation.
  1256. * HtmlTextWriter.cs: Fix style rendering for BackgroundImage in 2.0.
  1257. The new rendering formats the value as "url(" + original + ")".
  1258. 2005-08-26 Sebastien Pouliot <[email protected]>
  1259. * HtmlTextWriter.cs: Added support for VerticalAlign style (as it
  1260. depends on the HtmlTextWriterStyle ordering).
  1261. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1262. * HtmlTextWriter.cs: remove 'mistaken end of statement' and FIXME.
  1263. 2005-08-25 Sebastien Pouliot <[email protected]>
  1264. * HtmlTextWriterStyle.cs: Added missing VerticalAlign in 2.0 (which
  1265. fixed the rest of the enum values).
  1266. * UrlPropertyAttribute.cs: Removed the .ctor accepting an UrlTypes
  1267. parameter to match 2.0 API. Added a setter to the AllowedTypes
  1268. property.
  1269. 2005-08-24 Chris Toshok <[email protected]>
  1270. * Control.cs (get_Adapter): Instead of throwing an exception, just
  1271. return null, so we can write the rest of the Control specific
  1272. Adapter code and just not enable any of those code paths until we
  1273. have actual adapters. Also flag TODO.
  1274. (EnsureChildControls): Call out to Adapter.CreateChildControls if
  1275. we have an adapter.
  1276. (RenderChildren): call "RenderControl (writer, adapter)" if we
  1277. have an adapter.
  1278. (RenderControl): implement the adapter case naively.
  1279. (LoadRecursive): call out to Adapter.OnLoad if we have one.
  1280. (PreRenderRecursiveInternal): call out to Adapter.OnPrerender if
  1281. we have one.
  1282. (InitRecursive): call out to Adapter.OnInit if we have one.
  1283. 2005-08-24 Chris Toshok <[email protected]>
  1284. * Page.cs (GetPostBackEventReference): track change to
  1285. ClientScriptManager and don't call a removed method.
  1286. * ClientScriptManager.cs: track more recent docs and corcompare
  1287. output.
  1288. 2005-08-24 Sebastien Pouliot <[email protected]>
  1289. * KeyedList.cs: Fixed bug when removing an unexisting object.
  1290. * StateManagedCollection.cs: Fixed API for beta2. Fixed buglets found
  1291. in implementing RoleGroupCollection.
  1292. 2005-08-22 Sebastien Pouliot <[email protected]>
  1293. * Page.cs: Use Control property (and not the _control variable) to get
  1294. the User (so the virtual Control property can be overriden properly).
  1295. Sadly this doesn't seems to be the case for other properties (like
  1296. Request).
  1297. 2005-08-18 Dick Porter <[email protected]>
  1298. * ControlCachePolicy.cs, PersistChildrenAttribute.cs,
  1299. UserControl.cs, DesignerDataBoundLiteralControl.cs,
  1300. PageStatePersister.cs, DataBoundLiteralControl.cs, Control.cs,
  1301. BasePartialCachingControl.cs, LiteralControl.cs: 2.0 API fixes and
  1302. stubs and attribute fixes
  1303. 2005-08-13 Sebastien Pouliot <[email protected]>
  1304. * Control.cs: Add protected virtual SetDesignModeState, in 2.0
  1305. profile, as this is required for the Login control.
  1306. 2005-08-11 Dick Porter <[email protected]>
  1307. * CssStyleCollection.cs: Tweak the css string format to pass a
  1308. unit test
  1309. * AttributeCollection.cs: Don't NRE if someone sets the "style"
  1310. attribute to null.
  1311. 2005-08-05 Ben Maurer <[email protected]>
  1312. * HtmlTextWriter.cs: Revert the patch below, see test case
  1313. 2005-08-05 Dick Porter <[email protected]>
  1314. * HtmlTextWriter.cs: Make <option> tags render inline, to match
  1315. the ms output
  1316. 2005-08-03 Ben Maurer <[email protected]>
  1317. * HtmlTextWriter.cs: Optmize this not to do insane amounts of
  1318. allocation for large pages, etc.
  1319. 2005-07-30 Chris Toshok <[email protected]>
  1320. * Page.cs (VerifyRenderingInServerForm): copy MS's error message
  1321. since our form-errors jsunit tests depend on it.
  1322. 2005-07-30 Chris Toshok <[email protected]>
  1323. * DataBinder.cs (FormatResult): make internal, not private.
  1324. 2005-07-29 Ben Maurer <[email protected]>
  1325. * StateBag.cs: Don't remove when tracking viewstate, as per msft
  1326. docs.
  1327. 2005-07-29 Ben Maurer <[email protected]>
  1328. * StateBag.cs: Actually *remove* items that are null. Duh.
  1329. 2005-07-21 Peter Dennis Bartok <[email protected]>
  1330. * Page.cs: Need to throw exception when accessing Request but no
  1331. context exists
  1332. 2005-07-20 Chris Toshok <[email protected]>
  1333. * ClientScriptManager.cs (GetClientValidationEvent): the JS we
  1334. stick in onclick handlers for buttons/links/etc.
  1335. * Page.cs (GetSubmitStatements): new function to return
  1336. scriptManager.WriteSubmitStatements. Used by HtmlForm.
  1337. (AreValidatorsUplevel): used by many of the button/linkbutton
  1338. controls (the ones that can CauseValidation) to tell whether or
  1339. not to emit client side validation calls.
  1340. 2005-07-20 Chris Toshok <[email protected]>
  1341. * WebResourceAttribute.cs: make internal (and available) in
  1342. !NET_2_0.
  1343. 2005-07-20 Chris Toshok <[email protected]>
  1344. * ClientScriptManager.cs (GetWebResourceUrl): make internal (but
  1345. available) in !NET_2_0.
  1346. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1347. * Control.cs: Added IDataBindingsAccessor interface methods
  1348. 2005-07-18 Ben Maurer <[email protected]>
  1349. * HtmlTextWriter.cs: Fix nested indentation
  1350. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1351. * Control.cs: Added missing IParserAccessor.AddParsedSubObject
  1352. interface method
  1353. 2005-07-18 Ben Maurer <[email protected]>
  1354. * HtmlTextWriter.cs: Fix indentation (somewhat at least)
  1355. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1356. * Control.cs:
  1357. - Default name for controls on MS.Net is "_ctl" not "_ctrl"
  1358. - MS does not append 'a' for auto-generated names
  1359. 2005-07-17 Ben Maurer <[email protected]>
  1360. * AttributeCollection.cs: Use the invariant culture.
  1361. * StateBag.cs: "Duh" optimization: return null when there are no
  1362. dirty items in the view state
  1363. 2005-07-14 Ben Maurer <[email protected]>
  1364. * StateBag.cs: A "short" version of my favorite method.
  1365. * HtmlTextWriter.cs: New method to get the tag name staticly.
  1366. 2005-07-14 Duncan Mak <[email protected]>
  1367. * DataBindingHandlerAttribute.cs: Fixed after receiving some
  1368. comments from Gonzalo.
  1369. 2005-07-13 Jackson Harper <[email protected]>
  1370. * PropertyConverter.cs: No public constructors.
  1371. 2005-07-13 Ben Maurer <[email protected]>
  1372. * HtmlTextWriter.cs: Remove debugging spew. Style cleanup
  1373. 2005-07-12 Ben Maurer <[email protected]>
  1374. * HtmlTextWriter.cs: Make styles work.
  1375. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1376. * AttributeCollection.cs:
  1377. - Changes to match MS behaviour, the "style" attribute is always
  1378. added to the list, in addition to being added to the
  1379. CssStyleCollection. Also added check for "style" attribute when
  1380. setting via index setter
  1381. - When "Style" attribute is added, CssStyleCollection is
  1382. automatically created
  1383. - The style keyword needs to be lowercase
  1384. 2005-07-11 Ben Maurer <[email protected]>
  1385. * HtmlTextWriter.cs: Missing a PopEndTag here.
  1386. * PropertyConverter.cs: Pass tests
  1387. 2005-07-09 Miguel de Icaza <[email protected]>
  1388. * DataBindingHandlerAttribute.cs: Create the "Default" property.
  1389. 2005-07-09 Duncan Mak <[email protected]>
  1390. * DataBindingHandlerAttribute.cs: Implemented.
  1391. 2005-07-08 Ben Maurer <[email protected]>
  1392. * HtmlTextWriter.cs: Much better compliance with msft
  1393. 2005-07-08 Jackson Harper <[email protected]>
  1394. * ToolbarDataAttribute.cs: New implementation.
  1395. 2005-07-07 Jackson Harper <[email protected]>
  1396. * PropertyConverter.cs: New implementation.
  1397. 2005-07-07 Ben Maurer <[email protected]>
  1398. * StateBag.cs: Noticed an issue where SetDirty was called when the
  1399. key did not exist.
  1400. 2005-07-07 Ben Maurer <[email protected]>
  1401. * StateBag.cs: Add a method that gets a string or else a default
  1402. value.
  1403. 2005-07-07 Dick Porter <[email protected]>
  1404. * StateBag.cs: Added internal SetDirty (void) method to fix the
  1405. build
  1406. 2005-07-07 Sebastien Pouliot <[email protected]>
  1407. * HtmlTextWriter.cs: Small fixlet when attribute has no value.
  1408. 2005-07-07 Miguel de Icaza <[email protected]>
  1409. * HtmlTextWriter.cs: Return the stuff in lowercase to pass the
  1410. tests.
  1411. * StateBag.cs: Add NET_2_0 SetDirty method to get the build
  1412. going.
  1413. 2005-07-07 Sebastien Pouliot <[email protected]>
  1414. * HtmlTextWriter.cs: Small fixlet (required for the unit tests).
  1415. 2005-07-06 Ben Maurer <[email protected]>
  1416. * HtmlTextWriter.cs: Make sure to clear attributes when they are
  1417. written.
  1418. * StateBag.cs: New impl
  1419. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1420. * Page.cs:
  1421. * Control.cs: avoid the creation of the EventHandlerList and accessing
  1422. to it whenever possible. Fix ENABLE_THEMING constant.
  1423. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1424. * TemplateParser.cs:
  1425. * TemplateControlParser.cs:
  1426. * UserControlParser.cs: detect circular references when a control tries
  1427. to register itself as a tag. Fixes bug #75376.
  1428. 2005-06-14 Gonzalo Paniagua Javier <[email protected]>
  1429. * PageParser.cs: don't try to compile the master page if it wan't
  1430. provided. Use MapPath from the base classes instead of the long
  1431. version. Fixes bug #75269 that prevented xsp2 from working properly.
  1432. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  1433. * MasterPage.cs: Clear the default content of placeholders before
  1434. adding the page content. Fixes bug #75193.
  1435. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  1436. * PageParser.cs: Added MasterType property. Get the type from the
  1437. MasterType directive.
  1438. * MasterPageParser.cs: Added GetCompiledMasterType method.
  1439. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  1440. * UserControl.cs:
  1441. * Page.cs:
  1442. * Control.cs: updates for 1.1 SP1
  1443. 2005-06-06 Lluis Sanchez Gual <[email protected]>
  1444. * Control.cs: Added new DataBind() overload for 2.0. The old
  1445. method calls this new overload.
  1446. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  1447. * TemplateParser.cs: ignore empty assembly.Location for in-memory
  1448. generated assemblies.
  1449. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  1450. * Page.cs: added AddContentTemplate method.
  1451. 2005-05-26 Gonzalo Paniagua Javier <[email protected]>
  1452. * AttributeCollection.cs: html-encode attribute values. Fixes
  1453. bug #73771.
  1454. 2005-05-26 Lluis Sanchez Gual <[email protected]>
  1455. * DataSourceView.cs: Fix api.
  1456. * NonVisualControlAttribute.cs: Implemented.
  1457. * IDataItemContainer.cs: Added missing properties.
  1458. * Control.cs: Added new EnableTheming and SkinID properties.
  1459. * HierarchicalDataSourceControl.cs: Implemented missing methods.
  1460. 2005-05-13 Lluis Sanchez Gual <[email protected]>
  1461. * ControlCollection.cs: Added internal setter for ReadOnly.
  1462. 2005-05-09 Geoff Norotn <[email protected]>
  1463. * TemplateParser.cs: Silently remove the CodeFile attribute that ASP.NET 2.0
  1464. uses instead of codebehind.
  1465. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  1466. * Page.cs: as setting CurrentCulture is slow, don't set it if the
  1467. culture has not changed since before the page started processing.
  1468. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  1469. * TemplateParser.cs: LoadWithPartialName returns null if the assembly is
  1470. not found.
  1471. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  1472. * TemplateParser.cs:
  1473. * SimpleWebHandlerParser.cs: removed values assigned and neved used.
  1474. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  1475. * SimpleWebHandlerParser.cs:
  1476. * TemplateParser.cs: always get the location (full path) for assemblies,
  1477. even the ones from the GAC.
  1478. * BaseCompiler.cs: check that DynamicBase directory exists before
  1479. creating the TempFileCollection.
  1480. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  1481. * ClientScriptManager.cs: Use a linked list instead of a Hashtable
  1482. to store the scripts. In this way, scripts will be rendered in the
  1483. same order as they have been registered. It shouldn't be slower
  1484. since pages don't have many scripts.
  1485. 2005-04-21 Lluis Sanchez Gual <[email protected]>
  1486. * IEditableTextControl.cs: Implemented.
  1487. * DataBinder.cs: Marked constructor as obsolete in 2.0.
  1488. In GetDataItem, check for the IDataItemContainer interface
  1489. in the container.
  1490. * TemplateControl.cs: Improved check for data item.
  1491. 2005-04-21 Gonzalo Paniagua Javier <[email protected]>
  1492. * TemplateParser.cs: we still need LoadWithPartialName if Load fails.
  1493. * Page.cs: ensure _requiresPostBack is emptied if we didn't have a copy
  1494. for second postback.
  1495. 2005-04-20 Rafael Teixeira <[email protected]>
  1496. * TemplateParser.cs: Adding support for Strict/Explicit attributes
  1497. for @Page/@Control directives as documented at
  1498. http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconControlDirective.asp.
  1499. First step don't choke on them. Fixing #74671
  1500. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  1501. * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
  1502. there from the time when Load wasn't working properly. First part of the
  1503. fix to 74500.
  1504. 2005-04-15 Lluis Sanchez Gual <[email protected]>
  1505. * ControlBuilder.cs: The BindingContainerType property happens
  1506. to exist in 2.0, so I made it public. Added ParentTemplateBuilder,
  1507. which is used to get the binding container that is managing
  1508. the current two-way binding context.
  1509. * TemplateBuilder.cs: Added some methods and an internal class
  1510. to support two-way bindings.
  1511. * CompiledBindableTemplateBuilder.cs: Implemented.
  1512. * IBindableTemplate.cs: This interface inherits from ITemplate.
  1513. 2005-04-14 Lluis Sanchez Gual <[email protected]>
  1514. * ControlBuilder.cs: Added BindingContainerType property,
  1515. which works like NamingContainerType but takes into account
  1516. template builders with a specific container type (specified
  1517. using the TemplateContainerAttribute.
  1518. * StateManagedCollection.cs: Reimplemented Save/Load view
  1519. state methods. The existing implementation was not correct
  1520. in all cases.
  1521. 2005-04-08 Lluis Sanchez Gual <[email protected]>
  1522. * DataSourceView.cs: Added null check.
  1523. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  1524. * TemplateControl.cs:
  1525. * Page.cs: Moved Eval and XPath from Page
  1526. to TemplateControl.
  1527. * StateManagedCollection.cs: Avoid saving null state.
  1528. 2005-04-01 Lluis Sanchez Gual <[email protected]>
  1529. * DataSourceView.cs: Rethrow exceptions not handled by operation
  1530. callbacks.
  1531. * ITextControl.cs: Removed event.
  1532. * CollectionBuilder.cs: Don't crash when a collection has more
  1533. than one indexer.
  1534. 2005-03-23 Lluis Sanchez Gual <[email protected]>
  1535. * Control.cs: Added a new internal property: HasRenderMethodDelegate.
  1536. * HtmlTextWriterAttribute.cs: Replaced wrong enum value.
  1537. * HtmlTextWriter.cs: Register new ASP.NET 2.0 attributes
  1538. 2005-03-16 Lluis Sanchez Gual <[email protected]>
  1539. * ClientScriptManager.cs: Fix build.
  1540. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  1541. * Utils.cs, Control.cs: Don't use Page.GetPostBackClientEvent
  1542. since it is deprecated in 2.0.
  1543. * Page.cs: Deprecated GetPostBackClientEvent and similar methods
  1544. in 2.0. Moved callback management methods to ClientScriptManager.
  1545. * ClientScriptManager.cs: Moved here deprecated methods from Page.
  1546. In GetPostBackEventReference (PostBackOptions), don't use the
  1547. WebForm_DoPostback script if the post can be done with a simple
  1548. __doPostBack call.
  1549. * PostBackOptions.cs: Fixed default values for some properties.
  1550. 2005-03-09 Gonzalo Paniagua Javier <[email protected]>
  1551. * Control.cs: in FindControl, throw if there's more than one control
  1552. with the same ID. Fixes bug #73479.
  1553. 2005-03-04 Lluis Sanchez Gual <[email protected]>
  1554. * Page.cs: Load control state before loading view state, and the
  1555. same for saving.
  1556. * DataSourceSelectArguments.cs: Fix recursive property call.
  1557. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  1558. * DataSourceView.cs: Fixed incorrect implementation of
  1559. RaiseUnsupportedCapabilityError.
  1560. * IDataItemContainer.cs: Added new properties.
  1561. * Page.cs: Implemented Form property.
  1562. * Control.cs: Fixed formatting.
  1563. * StateManagedCollection.cs: Track view state of items loaded
  1564. in LoadViewState.
  1565. 2005-02-22 Lluis Sanchez Gual <[email protected]>
  1566. * FilterableAttribute.cs: Fix endless loop.
  1567. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  1568. * Page.cs: Implemented missing events.
  1569. 2005-02-17 Gonzalo Paniagua Javier <[email protected]>
  1570. * BoundPropertyEntry.cs:
  1571. * PropertyEntry.cs:
  1572. * TwoWayBoundPropertyEntry.cs: implemented.
  1573. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  1574. * Page.cs: Added support for validation groups. Some fixes in
  1575. SavePageControlState().
  1576. * IFilterResolutionService.cs: Removed extra field.
  1577. * INavigateUIData.cs: Added missing field.
  1578. * ICheckBoxControl.cs, IStaticTextControl.cs, ITextControl.cs:
  1579. Implemented new interfaces.
  1580. 2005-02-04 Lluis Sanchez Gual <[email protected]>
  1581. * Page.cs: Implemented support for cross page postback. Implemented
  1582. support for postback with options. Fixed several method and property
  1583. signatures for 2.0.
  1584. * PostBackOptions.cs: Added some TODOs.
  1585. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  1586. * ParseChildrenAttribute.cs: Set the correct default value for the
  1587. childType property.
  1588. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  1589. * ParseChildrenAttribute.cs: Added 2.0 property.
  1590. * Pair.cs, Triplet.cs: Make classes serializable and sealed in 2.0.
  1591. * Page.cs: Added support for control state.
  1592. * TemplateBuilder.cs: ContainerType should be internal.
  1593. * Control.cs: Added some new 2.0 methods.
  1594. 2005-01-21 Lluis Sanchez Gual <[email protected]>
  1595. * PageParser.cs: Read the MasterPageFile attribute.
  1596. * UserControlParser.cs: Not sealed any more since we need to inherit from
  1597. it. Added new constructor with an additional "type" parameter.
  1598. * MasterPageParser.cs: Parser for master pages.
  1599. * Page.cs: Added support for master pages.
  1600. * MasterPage.cs: Implemented.
  1601. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  1602. * TemplateBuilder.cs: Added a special constructor that takes an
  1603. attribute provider as parameter. The container type for the template
  1604. may be defined in a TemplateContainerAttribute.
  1605. * ControlBuilder.cs: Create the TemplateBuilder using that special
  1606. constructor.
  1607. * TemplateContainerAttribute.cs: Added 2.0 property and ctor.
  1608. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  1609. * IStyleSheet.cs: Added missing "using".
  1610. * Page.cs: Implemented Header property.
  1611. * CssStyleCollection.cs: Made BagToString method internal.
  1612. * RootBuilder.cs: Register HtmlHead control.
  1613. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  1614. * CssStyleCollection.cs: Minor (!) fix.
  1615. * HtmlTextWriter.cs: Register names for new 2.0 styles.
  1616. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  1617. * CssStyleCollection.cs: Make it work as a standalone collection.
  1618. * HtmlTextWriter.cs: Added static method for getting style names.
  1619. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  1620. * ControlCollection.cs: fix off-by-one and store a null at the end to
  1621. remove the reference to the removed control.
  1622. 2004-12-10 Lluis Sanchez Gual <[email protected]>
  1623. * ClientScriptManager.cs: Added GetScriptLiteral helper method.
  1624. 2004-12-02 Lluis Sanchez Gual <[email protected]>
  1625. * Page.cs: Added support for callback events. Moved theform variable
  1626. outside the __doPostBack function, so it can be used by other
  1627. scripts.
  1628. * StateBag.cs: Implemented SetDirty().
  1629. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  1630. * Control.cs: when saving "Visible" into the ViewState, save the value
  1631. for this precise control, as using the Visible property might give us
  1632. Control's parent visibility. Fixes bug #69200.
  1633. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  1634. * Control.cs: fixed ResolveUrl for relative URLs when using cookie-less
  1635. sessions.
  1636. * System.Web.Util/UrlUtils.cs: made (Insert|Get|Remove)SessionId use
  1637. the appRoot + SessionID + vpath format.
  1638. Fixes the 3 issues reported in bug #66623.
  1639. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  1640. * Page.cs: Moved code for managing client scripts to ClientScriptManager,
  1641. which is public in 2.0 and internal in 1.1.
  1642. * ClientScriptManager.cs: Implemented.
  1643. 2004-11-25 Sanjay Gupta <[email protected]>
  1644. * DataSourceView.cs: Removed extra method.
  1645. 2004-11-24 Sanjay Gupta <[email protected]>
  1646. * DataSourveViewSelectCallback.cs: Corrected method signature.
  1647. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  1648. * ControlBuilder.cs: Always check for the ParseChildrenAttribute,
  1649. even if the class doesn't implement IParserAccessor.
  1650. * WebResourceAttribute.cs: Allow multiple attributes of this type.
  1651. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  1652. * DataSourceView.cs: Moved here implementation of DataSourceViewChanged
  1653. from SqlDataSourceView.cs.
  1654. 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
  1655. * Control.cs: unified a few bool fields into an int one.
  1656. * ControlCollection.cs: use an array internally instead of always
  1657. allocating an arraylist. Also added our own enumerator.
  1658. * EmptyControlCollection.cs: there's no 'special' ctor now in the base
  1659. class.
  1660. 2004-11-05 Sanjay Gupta <[email protected]>
  1661. * DataSourceView.cs: Changes in access modifiers of methods.
  1662. 2004-10-20 Sanjay Gupta <[email protected]>
  1663. * DataSourceCapabilities.cs: Added Flags attribute.
  1664. * DataSourceSelectArguments.cs: Updated.
  1665. * DataSourveView.cs: Updated.
  1666. 2004-10-19 Sanjay Gupta <[email protected]>
  1667. * HierarchicalDataSourceView.cs: Corrected class definition and updated.
  1668. 2004-10-18 Gonzalo Paniagua Javier <[email protected]>
  1669. * HierarchicalDataSourceView.cs: fix typo.
  1670. 2004-10-18 Sanjay Gupta <[email protected]>
  1671. * HierarchicalDataSourceView.cs: Updated.
  1672. 2004-10-18 Sanjay Gupta <[email protected]>
  1673. * DataSourceSelectArguments.cs: Initial implementation.
  1674. 2004-10-12 Sanjay Gupta <[email protected]>
  1675. * UrlPropertyAttribute.cs: Corrected implementation of Equals () method.
  1676. 2004-10-12 Sanjay Gupta <[email protected]>
  1677. * UrlTypes.cs: Updated.
  1678. 2004-10-12 Sanjay Gupta <[email protected]>
  1679. * UrlPropertyAttribute.cs: Added new file.
  1680. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  1681. * Control.cs: even if the control has no children the naming container
  1682. may contain the control we're looking for. Fixes bug #67304.
  1683. 2004-09-30 Gonzalo Paniagua Javier <[email protected]>
  1684. * AspGenerator.cs: added OtherTags.
  1685. 2004-09-24 Sanjay Gupta <[email protected]>
  1686. * ControlValuePropertyAttribute.cs: Initial implementation.
  1687. 2004-09-24 Sanjay Gupta <[email protected]>
  1688. * IPaginationContainer.cs: Corrected name of class.
  1689. 2004-09-24 Sanjay Gupta <[email protected]>
  1690. * IDReferencePropertyAttribute.cs: Completed implementation.
  1691. 2004-09-24 Sanjay Gupta <[email protected]>
  1692. * ThemeableAttribute.cs:
  1693. * FilterableAttribute.cs: Code scrubbing and optimization.
  1694. 2004-09-14 Sanjay Gupta <[email protected]>
  1695. * ThemeableAttribute.cs: Completed implementation.
  1696. 2004-09-14 Sanjay Gupta <[email protected]>
  1697. * FilterableAttribute.cs: Completed implementation.
  1698. 2004-09-14 Sanjay Gupta <[email protected]>
  1699. * Control.cs: Added new attributes and a method.
  1700. * FilterableAttribute.cs: New attribute, initial implementation.
  1701. * ThemeableAttribute.cs: New attribute, initial implemenataion.
  1702. 2004-09-09 Gonzalo Paniagua Javier <[email protected]>
  1703. * TemplateParser.cs: ensure bin directory exists before trying to access
  1704. it. Fixes bug #65446 (not closed yet due to dependencies).
  1705. 2004-09-09 Sanjay Gupta <[email protected]>
  1706. * Control.cs: Implemented methods of interface IExpressionAccessor.
  1707. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1708. * SimpleWebHandlerParser.cs: correctly cache Type instead of the
  1709. assembly for ashx/asmx. Otherwise we need to open the file and check
  1710. for the class name in there. Thanks to Ben for pointing this out.
  1711. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1712. * TemplateParser.cs: removed creation of StringWriter. It's not used.
  1713. * Control.cs: don't create the EventHandlerList until requested.
  1714. 2004-09-03 Sanjay Gupta <[email protected]>
  1715. * Control.cs: Added new interfaces implemented in .Net 2.0.
  1716. * ExpressionBinding.cs: Added new class.
  1717. * ExpressionBindingCollection.cs: Added new class.
  1718. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  1719. * LiteralControl.cs: stylized. This control has EnableViewState disabled
  1720. by default and doesn't get an automatic ID. When text is null -> "".
  1721. 2004-08-31 Sanjay Gupta <[email protected]>
  1722. * ControlSkinProc.cs:
  1723. * DataSourceViewOperationCallback.cs:
  1724. * DataSourceViewSelectCallback.cs:
  1725. * ExtractTemplateValuesMethod.cs: Explicit modifier "sealed" not
  1726. required in definition as delegates by default are sealed.
  1727. 2004-08-31 Sanjay Gupta <[email protected]>
  1728. * IDReferencePropertyAttribute.cs: Corrected and changed from interface
  1729. to class.
  1730. * IMobileTextWriter.cs: Corrected method signatures.
  1731. 2004-08-09 Sanjay Gupta <[email protected]>
  1732. * ControlSkinProc.cs:
  1733. * DataSourceViewOperationCallback.cs:
  1734. * DataSourceViewSelectCallback.cs:
  1735. * ExtractTemplateValuesMethod.cs: Added new delegates.
  1736. 2004-08-06 Sanjay Gupta <[email protected]>
  1737. * IBindableTemplate.cs:
  1738. * ICallbackEventHandler.cs:
  1739. * IControlBuilderAccessor.cs:
  1740. * IControlDesignerAccessor.cs:
  1741. * IControlTypeFilter.cs:
  1742. * IDataItemContainer.cs:
  1743. * IDataSourceViewSchemaAccessor.cs:
  1744. * IDReferencePropertyAttribute.cs:
  1745. * IExpressionsAccessor.cs:
  1746. * IFilterResolutionService.cs:
  1747. * IItemPaginationInfo.cs:
  1748. * IMobileTextWriter.cs:
  1749. * IPageHeader.cs:
  1750. * IPaginationContainer.cs:
  1751. * IPaginationInfo.cs:
  1752. * IResourceResolutionService.cs:
  1753. * IResourceUrlGenerator.cs:
  1754. * IStateFormatter.cs:
  1755. * IStyleSheet.cs:
  1756. * IThemeResolutionService.cs:
  1757. * IUrlResolutionService.cs:
  1758. * IUserControlTypeResolutionService.cs: Added new files for Interfaces.
  1759. 2004-08-05 Sanjay Gupta <[email protected]>
  1760. * PostBackOptions.cs: Added new file and implemented the class.
  1761. 2004-08-04 Gonzalo Paniagua Javier <[email protected]>
  1762. * HtmlTextWriterTag.cs: readded author name.
  1763. 2004-08-04 Sanjay Gupta <[email protected]>
  1764. * HtmlTextWriterAttribute.cs:
  1765. * HtmlTextWriterStyle.cs: Added .Net 2.0 enumerations.
  1766. * CompilationMode.cs:
  1767. * ConflictOptions.cs:
  1768. * DataSourceCacheExpiry.cs:
  1769. * DataSourceCapabilities.cs:
  1770. * DataSourceOperation.cs:
  1771. * TemplateContentType.cs:
  1772. * TemplateInstance.cs:
  1773. * UrlTypes.cs:
  1774. * VerificationConditionalOperator.cs:
  1775. * VerificationReportLevel.cs:
  1776. * VerificationRule.cs:
  1777. * XhtmlMobileDocType.cs: Added enumerations.
  1778. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  1779. * Control.cs: style. Reverted previous patch modification of
  1780. TemplateSourceDirectory (failed when the control is reparented). Use
  1781. HasControls() and Controls all over instead of _controls, as Controls
  1782. property and HasControls() might be overriden.
  1783. 2004-07-27 Alon Gazit <[email protected]>
  1784. * Control.cs: Changed the implementation of TemplateSourceDirectory
  1785. and GetDefaultName(). replaced foreach statements with for statements,
  1786. in order to improve performence.
  1787. 2004-07-27 Alon Gazit <[email protected]>
  1788. * Page.cs: changed the implementation of GetViewStateString().
  1789. if the view state object is null there is no need to perform
  1790. Serialization.
  1791. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  1792. * TemplateControl.cs: don't include private methods of base classes when
  1793. auto-attaching events. Fixes bug 61569.
  1794. 2004-07-14 Alon Gazit <[email protected]>
  1795. * HtmlTextWriter.cs: changed the Hashtables to case insensitive.
  1796. 2004-07-08 Pablo Baena <[email protected]>
  1797. * Page.cs: added workaround for __doPostBack script on Netscape 4.xx
  1798. 2004-07-02 Gonzalo Paniagua Javier <[email protected]>
  1799. * Page.cs: added additional checks for saving/displaying trace data.
  1800. * PageParser.cs: removed checks for trace enabled in configuration
  1801. files.
  1802. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  1803. * ControlCollection.cs: when clearing the control collection, tell the
  1804. owners about the removal. Fixes bug #60800.
  1805. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  1806. * Page.cs: don't nullify _context after processing the request as there
  1807. are events not triggered yet. Fixes bug #60726.
  1808. 2004-06-24 Gonzalo Paniagua Javier <[email protected]>
  1809. * HtmlTextWriter.cs: only create a closing tag for unknown tags. Fixes
  1810. bug #60681.
  1811. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  1812. * PageParser.cs:
  1813. * UserControlParser.cs: set the page/user control base type even when no
  1814. default directive provided. Fixes bug #60572.
  1815. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  1816. * PageParser.cs: use default trace settings from web.config and check
  1817. if trace is only requested for local connections. Fixes bug #60180.
  1818. 2004-06-16 Gonzalo Paniagua Javier <[email protected]>
  1819. * SimpleWebHandlerParser.cs: implemented GetCompiledTypeFromCache. When
  1820. we read the default directive, check the cache for the Type and if
  1821. present, don't keep reading and store the type found.
  1822. * WebHandlerParser.cs:
  1823. * WebServiceParser.cs: try GetCompiledTypeFromCache before actually
  1824. compiling.
  1825. 2004-06-14 Gonzalo Paniagua Javier <[email protected]>
  1826. * Control.cs: properly fixed bug #59794.
  1827. 2004-06-10 Gonzalo Paniagua Javier <[email protected]>
  1828. * Control.cs:
  1829. (ResolveUrl): fixed typo when dealing with relative urls. Closes bug
  1830. #59794.
  1831. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  1832. * SimpleWebHandlerParser.cs:
  1833. * TemplateParser.cs: pass the language when compiling from a file.
  1834. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  1835. * SimpleWebHandlerParser.cs: if we have a global.asax, move its
  1836. reference to the end to help mcs loading the assemblies. Fixes bug
  1837. #58768.
  1838. * TemplateParser.cs: same as above. Removed some kludges to workaround
  1839. loading assemblies from bin path that are now in the runtime. Don't
  1840. load the assemblies in bin if not needed, but still reference them
  1841. when compiling.
  1842. 2004-06-07 Alon Gazit <[email protected]>
  1843. * Page.cs: Changed Page.ProcessPostData().
  1844. After the change ,the state of controls that aren't visible is saved
  1845. during a postback.
  1846. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1847. * Page.cs: removed obsolete MonoTODO from RegisterOnSubmitStatement.
  1848. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  1849. * Page.cs: IsPostBack also returns true when method is GET and we have
  1850. viewstate information in the query string. Fixes bug #58151.
  1851. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  1852. * Page.cs: removed obsolete TODO. Only check if Trace is enabled, not
  1853. HttpRutime.TraceManager.
  1854. * PageParser.cs: for 'trace' we have 2 variables now. Added support
  1855. for 'buffer' attribute.
  1856. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  1857. * Page.cs: implemented ClientTarget.
  1858. * PageParser.cs: support for clientTarget and check for validity.
  1859. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  1860. * Control.cs:
  1861. * Html32TextWriter.cs:
  1862. * HtmlTextWriter.cs:
  1863. * SimpleWebHandlerParser.cs:
  1864. * TemplateControl.cs: Added protected missing members and attributes.
  1865. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  1866. * ObjectStateFormatter.cs: use ObjectFormatter methods instead of
  1867. calling a protected method of another object.
  1868. 2004-06-03 Atsushi Enomoto <[email protected]>
  1869. * ObjectStateFormatter.cs : csc build fix. Protected Read()/Write()
  1870. (of other objects) are called in TypeConverterFormatter.
  1871. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  1872. * ObjectStateFormatter.cs: before choosing the binary formatter, check
  1873. if the object type has a TypeConverter that can convert to/from string.
  1874. Fixes bug #59495.
  1875. * Page.cs: call GetViewStateString from outside the WriteLine. This
  1876. allows writing to the Response when getting the string without breaking
  1877. the HTML generated.
  1878. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  1879. * HtmlTextWriter.cs: render end tag for unknown tags.
  1880. Patch frmo Markus Krutner. Fixes bug #59466.
  1881. 2004-05-24 Gonzalo Paniagua Javier <[email protected]>
  1882. * Page.cs: call DeterminePostBackMode only once per request. Patch by
  1883. Evain Jb.
  1884. 2004-05-12 Gonzalo Paniagua Javier <[email protected]>
  1885. * Html32TextWriter.cs: stub contributed by Matthijs ter Woord
  1886. [meddochat].
  1887. * ObjectTagBuilder.cs: remove the HasBody override as MS does not have
  1888. that.
  1889. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  1890. * SimpleWebHandlerParser.cs:
  1891. * TemplateParser.cs: for the assembly names given in the 'assembly'
  1892. attribute, use LoadWithPartialName instead of Load.
  1893. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  1894. * Page.cs: return HttpContext.Current if _context has not yet been
  1895. assigned to. Fixes bug #55245.
  1896. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  1897. * TemplateParser.cs: don't add import statement or assemblies from
  1898. global.asax to every file. Fixes bug #55496.
  1899. 2004-03-09 Juraj Skripsky <[email protected]>
  1900. * DataBinder.cs: allow unquoted string expressions (e.g. "[test]") and
  1901. handle single quotes and a few corner cases correctly (see test cases).
  1902. 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
  1903. * TemplateControl.cs: fixed typos and added new method names to the set
  1904. of page events.
  1905. 2004-02-23 Gonzalo Paniagua Javier <[email protected]>
  1906. * ControlBuilder.cs: added SetTagName().
  1907. * ObjectTagBuilder.cs: use SetTagName so that we can properly close
  1908. <object> builders if the closing tag is provided.
  1909. 2004-02-16 Jackson Harper <[email protected]>
  1910. * Page.cs: Set cacheability for Location.DownStream.
  1911. 2004-02-10 Jackson Harper <[email protected]>
  1912. * TemplateParser.cs: Use full path if the assembly is in the
  1913. private bin directory. Patch by Gonzalo Paniagua Javier.
  1914. 2004-02-09 Jackson Harper <[email protected]>
  1915. * Page.cs: Set cacheability for server side caching.
  1916. 2004-01-30 Jackson Harper <[email protected]>
  1917. * Control.cs: Ensure that dynamically loaded controls are
  1918. initialized.
  1919. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  1920. * ApplicationFileParser.cs: check for error in directives. Use
  1921. GlobalAsaxCompiler.CompileApplicationType for compiling.
  1922. * ObjectTagBuilder.cs: load the Type and check for errors.
  1923. * TemplateParser.cs: add assemblies and imports from global.asax.
  1924. Now we properly create accessors for session and application objects in
  1925. the application itself, pages and controls. First step for fixing
  1926. bug #53387.
  1927. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  1928. * TemplateControl.cs: small speedup for WireUpautomaticEvents. Thanks
  1929. to Eric Lindvall for pointing this out.
  1930. 2004-01-15 Jackson Harper <[email protected]>
  1931. * TemplateParser.cs: Detect if we are parsing a control or page
  1932. properly.
  1933. * Page.cs: vary by params and vary by headers can be null now.
  1934. 2004-01-15 Martin Willemoes Hansen <[email protected]>
  1935. * HtmlTextWriter.cs: Fixed OutputTab routine to generate correct
  1936. indention.
  1937. 2004-01-14 Jackson Harper <[email protected]>
  1938. * Page.cs: If we have a postback that wasn't sent through a
  1939. postback script (ie user hit submit on a input type=submit) call
  1940. Validate so page validation occurs. This fixes bug #52770.
  1941. 2004-01-14 Jackson Harper <[email protected]>
  1942. * Page.cs: Don't tell the response to cache anymore. This is done
  1943. when the cacheability is modified by a callback. Set the cache's
  1944. duration.
  1945. 2004-01-14 Jackson Harper <[email protected]>
  1946. * TemplateParser.cs: If varybyparam is set to "none" make it null
  1947. so we dont get a param named null in the outputcache key.
  1948. 2004-01-14 Jackson Harper <[email protected]>
  1949. * BasePartialCachingControl.cs: Use varyby attributes in key
  1950. generation.
  1951. 2004-01-14 Jackson Harper <[email protected]>
  1952. * TemplateParser.cs: Add all the outputcache attribute error
  1953. messages.
  1954. 2004-01-13 Jackson Harper <[email protected]>
  1955. * TemplateParser.cs: Add VaryByControls and Shared output cache
  1956. properties. These are not assigned yet.
  1957. * TemplateControlParser.cs: Do not ignore the OutputCache
  1958. attribute.
  1959. * BasePartialCachingControl.cs: Initial implementation. Keys are
  1960. still not created properly.
  1961. * StaticPartialCachingControl.cs: Assign properties in base class,
  1962. implement CreateControl.
  1963. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  1964. * ApplicationFileParser.cs: adde DefaultBaseTypeName property.
  1965. * PageParser.cs: support validateRequest.
  1966. * TemplateControlParser.cs: get default values from system.web/pages
  1967. section.
  1968. * TemplateParser.cs: added separate method for changing base type
  1969. (Inherits or system.web/pages).
  1970. * UserControlParser.cs: support system.web/pages defined base type.
  1971. 2004-01-11 Andreas Nahr <[email protected]>
  1972. * UserControl.cs: Added missing attribute, implemented method
  1973. * Page.cs: Added missing attribute, implemented method
  1974. 2004-01-10 Jackson Harper <[email protected]>
  1975. * Page.cs: Handle trace being enabled in the config file.
  1976. 2004-01-10 Jackson Harper <[email protected]>
  1977. * Page.cs: Save trace data before rendering it.
  1978. * System.Web.dll.sources: Add TraceData.cs
  1979. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  1980. * Page.cs: removed a couple of MonoTODO on methods we're not gonna
  1981. implement. Applied patch from Jan Jaros ([email protected]) to
  1982. ensure that Unload event is raised. Fixes bug #52555.
  1983. 2004-01-02 Zoltan Varga <[email protected]>
  1984. * KeyedList.cs: 'private' is not allowed on explicit interface
  1985. implementations. Fixes 1.2 build.
  1986. 2003-12-31 Jackson Harper <[email protected]>
  1987. * TemplateControlParser.cs: When registering tag prefixs make sure
  1988. the file exists and throw the correct error if it does not.
  1989. 2003-12-25 Jackson Harper <[email protected]>
  1990. * Page.cs: Throw error if the session is accessed when sessions
  1991. are disabled.
  1992. 2003-12-18 Jackson Harper <[email protected]>
  1993. * Page.cs: Write Trace info.
  1994. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  1995. * LosFormatter.cs: new ctor for 1.1. The default ctor is public.
  1996. * Page.cs: added ViewStateUserKey and made RegisterclientScriptFile
  1997. internal.
  1998. * PageParser.cs: the ctor is public.
  1999. * PartialCachingAttribute.cs: added new ctor and Shared property.
  2000. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  2001. * Page.cs: assign the ErrorPage to the context if we get an exception
  2002. when processing the page which only calls Unload.
  2003. * PageParser.cs: handle ErrorPage.
  2004. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  2005. * ObjectStateFormatter.cs: added formatters for Unit and FontUnit, which
  2006. are not [Serializable]. Fixes bug #52244.
  2007. 2003-12-16 Jackson Harper <[email protected]>
  2008. * Page.cs: Render trace data when tracing is enabled.
  2009. 2003-12-15 Jackson Harper <[email protected]>
  2010. * PageParser.cs: Add Trace and Trace mode attributes.
  2011. 2003-12-15 Jackson Harper <[email protected]>
  2012. * Page.cs: Use the context trace object.
  2013. 2003-12-14 Alon Gazit <[email protected]>
  2014. * AttributeCollection.cs: Changed AttributeCollection.Render().
  2015. After the change attributes ,that their value is null, aren't
  2016. rendered.
  2017. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  2018. * Control.cs: remove a few dangling ^M, don't set values for fields
  2019. that has the default value. If Visible is modified and we're tracking
  2020. viewstate, save and restore it. Fixes bug #48689.
  2021. 2003-12-11 Jackson Harper <[email protected]>
  2022. * Control.cs: Give null for the ID if it hasn't been explicitly
  2023. set. This fixes bug #51520.
  2024. 2003-12-08 Jackson Harper <[email protected]>
  2025. * PageParser.cs: Ignore the SmartNavigation attribute for now.
  2026. 2003-12-05 Jackson Harper <[email protected]>
  2027. * DataBinder.cs (GetIndexedPropertyValue): Check if container is
  2028. an IList and use a cast instead of reflection to retrieve the item
  2029. if it is. Fixes bug #51759.
  2030. 2003-12-04 Alon Gazit <[email protected]>
  2031. * Page.cs: Changed Page.ID so it will call Control.ID.
  2032. Fixed Bug 51682.
  2033. 2003-12-02 Jackson Harper <[email protected]>
  2034. * Page.cs: Implemented registered array declarations. Patch by
  2035. Benjamin Jemlich <[email protected]>
  2036. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  2037. * TemplateParser.cs: basic check for 'classname' attribute and added
  2038. patch by [email protected] for bug #51568, which fixes automatic class
  2039. names for pages starting with a number.
  2040. 2003-11-30 Ben Maurer <[email protected]>
  2041. * LosFormatter.cs: Use ObjectStateFormatter. Pretty big size
  2042. reduction.
  2043. * ObjectStateFormatter.cs: Comment out tracing.
  2044. 2003-11-30 Gonzalo Paniagua Javier <[email protected]>
  2045. * Page.cs: fixed UICulture, LCID and Culture. Set the thread
  2046. [UI]Culture before processing the request.
  2047. * PageParser.cs: read Culture, UICulture and LCID attributes. Added
  2048. properties for these. Partially contributed by Mohammad Damt.
  2049. Fixes bug #51511.
  2050. 2003-11-27 Jackson Harper <[email protected]>
  2051. * TemplateParser.cs: Ignore aspCompat attribute. This fixes bug
  2052. 51434.
  2053. 2003-11-22 Ben Maurer <[email protected]>
  2054. * ObjectStateFormatter.cs: Fix bug when reading small ints.
  2055. Add some tracing so we can see what is going on.
  2056. 2003-11-21 Jackson Harper <[email protected]>
  2057. * Page.cs: Set vary by params when cache location is Server.
  2058. 2003-11-21 Ben Maurer <[email protected]>
  2059. * ObjectStateFormatter.cs: v2 file. In v1.x this will be
  2060. internal as LosFormatter will eventually use it to save
  2061. the view state.
  2062. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  2063. * PersistChildrenAttribute.cs:
  2064. * PersistenceModeAttribute.cs: implemented.
  2065. * TODO: Removed file.
  2066. * OutputCacheLocation.cs:
  2067. * TemplateControlParser.cs:
  2068. * HtmlInputFile.cs: class status based fixes.
  2069. 2003-11-19 Jackson Harper <[email protected]>
  2070. * Page.cs: Always set the cache expire time. Tell the response to
  2071. cache itself for server side cached pages.
  2072. 2003-11-19 Jackson Harper <[email protected]>
  2073. * Control.cs: Remove ResolveBaseUrl. ResolveUrl does the same
  2074. thing, some corner cases still need work though. Was this the
  2075. shortest lived method in the history of mono?
  2076. 2003-11-19 Jackson Harper <[email protected]>
  2077. * Control.cs: New method for resolving urls that use ~/ to denote
  2078. the applications base directory.
  2079. 2003-11-19 Jackson Harper <[email protected]>
  2080. * TemplateParser.cs: Fix typo in error message.
  2081. 2003-11-19 Gonzalo Paniagua Javier <[email protected]>
  2082. * TemplateControlParser.cs: support @Reference. Fixes bug #49572. Thanks
  2083. to Sanjay Gupta.
  2084. 2003-11-19 Todd Berman <[email protected]>
  2085. * KeyedList.cs:
  2086. * KeyedListEnumerator.cs: New v2 implementations.
  2087. 2003-11-17 Ben Maurer <[email protected]>
  2088. * StateManagedCollection.cs: Implement.
  2089. 2003-11-13 Jackson Harper <[email protected]>
  2090. * Page.cs: Initial implementation of InitOutputCache.
  2091. * TemplateParser.cs: Page OutputCache options
  2092. 2003-11-09 Ben Maurer <[email protected]>
  2093. * HierarchicalDataSourceControl.cs: Implement.
  2094. 2003-11-09 Ben Maurer <[email protected]>
  2095. * XPathBinder.cs: Implemented.
  2096. 2003-11-08 Ben Maurer <[email protected]>
  2097. * DataSourceView.cs:
  2098. * IDataSource.cs:
  2099. * ListSourceHelper.cs:
  2100. * DataSourceControl.cs:
  2101. * HierarchicalDataSourceView.cs:
  2102. * IHierarchicalDataSource.cs: Move v2 stuff.
  2103. 2003-11-07 Jackson Harper <[email protected]>
  2104. * Control.cs (ResolveUrl): Special case for urls that consist of
  2105. only a page anchor. ie <a href="#top">. This fixes bug #50165.
  2106. 2003-11-07 Ben Maurer <[email protected]>
  2107. * IHierarchicalEnumerable.cs:
  2108. * IHierarchyData.cs:
  2109. * INavigateUIData.cs: New v2 interfaces.
  2110. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  2111. * Page.cs: patch by Alon Gazit <[email protected]> to remove extra
  2112. space in generated javascript.
  2113. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  2114. * LosFormatter.cs: encoding updates.
  2115. * Page.cs: implemented CodePage and ContentType.
  2116. * PageParser.cs: handle CodePage, ContentEncoding and ResponseEncoding
  2117. attributes.
  2118. 2003-11-04 Ben Maurer <[email protected]>
  2119. * Control.cs (GetWebResourceUrl): new v2 function
  2120. * Page.cs (GetWebResourceUrl): ditto.
  2121. make the JS we generate work with moz if the form is not a child
  2122. of document.
  2123. * WebResourceAttribute.cs: Added, new v2 attribute.
  2124. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  2125. * DesignTimeTemplateParser.cs: added FIXME related to PageParser.
  2126. * PageParser.cs: initialize the parser in the constructor, not just
  2127. before compiling and reference the application assembly.
  2128. * SimpleWebHandlerParser.cs: reference the assembly that contains the
  2129. application Type.
  2130. * TemplateControl.cs:
  2131. * TemplateControlParser.cs: fix BenM #1 bug. Now we pass correct virtual
  2132. path and physical path when compiling a user control.
  2133. * TemplateParser.cs: new AddApplicationAssembly ().
  2134. * UserControlParser.cs: now we get valid values in the ctor.
  2135. Referencing the application assembly fixes bug #49652.
  2136. 2003-10-18 Gonzalo Paniagua Javier <[email protected]>
  2137. * TemplateControl.cs: moved NoParamsInvoker class to its own file.
  2138. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  2139. * BaseParser.cs: added CompilationConfig property.
  2140. * TemplateParser.cs:
  2141. * SimpleWebHandlerParser.cs: added CompilationConfig property.
  2142. Don't hardcode assembly names any more, assemblies in bin are added
  2143. depending on the configuration. The default language is also taken
  2144. from the configuration.
  2145. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2146. * LosFormatter.cs: fixed bug #49604. Patch by [email protected].
  2147. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2148. * Control.cs: removed some debug lines.
  2149. * Page.cs: implemented RegisterOnSubmitStatement
  2150. * TemplateControl.cs: fixed wire up for methods with no parameters.
  2151. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2152. * PageParser.cs: ignore ValidateRequest by now.
  2153. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  2154. * System.Web.UI/TemplateControl.cs: support for wiring up events without
  2155. parameters.
  2156. 2003-10-08 Pedro Martnez Juli <[email protected]>
  2157. * PageParser.cs: drop some useless code.
  2158. 2002-10-29 Gaurav Vaish <gvaish_mono AT lycos.com>
  2159. * Utils.cs : GetScriptLocation(HttpContext) - Partial Implementation.
  2160. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  2161. * System.Web.UI/PageParser.cs:
  2162. * System.Web.UI/TemplateControlParser.cs: honour the input file given
  2163. as argument.
  2164. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  2165. * Control.cs:
  2166. (ClearChildViewState): doh! Don't clear control viewstate but the
  2167. viewstate of possible children.
  2168. (LoadViewStateRecursive): load viewstate even when control is not
  2169. visible.
  2170. Fixes bug #49024.
  2171. The rest are just dangling ^M removed.
  2172. * DataBoundLiteralControl.cs:
  2173. (LoadViewState): we get an object [], not a string [].
  2174. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  2175. * Control.cs: implemented ClearChildViewState ().
  2176. 2003-09-22 Gonzalo Paniagua Javier <[email protected]>
  2177. * Page.cs: store unique IDs for controls requiring postback. Fixes bug
  2178. #47985.
  2179. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  2180. * SimpleWebHandlerParser.cs: add the ashx/asmx file itself to the
  2181. dependencies so that it's recompiled when changed.
  2182. 2003-09-18 Gonzalo Paniagua Javier <[email protected]>
  2183. * LosFormatter.cs: fixed Deserialize for empty viewstate.
  2184. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2185. * Page.cs: check if controls that require postback have
  2186. been changed by an event and register them to be notified of data
  2187. changed event.
  2188. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2189. * Control.cs: patch by [email protected] (Yaron Shkop) that fixes
  2190. bug #47866.
  2191. 2003-08-21 Gonzalo Paniagua Javier <[email protected]>
  2192. * LosFormatter.cs: handle Unit and FonrUnit as special cases as they
  2193. are not serializable. Fixes bug #47784.
  2194. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2195. * Control.cs: index the viewstates saved by the control position, not
  2196. the control name. Fixes bug #47697.
  2197. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2198. * ControlCollection.cs:
  2199. * EmptyControlCollection.cs: create a minimum ArrayList for this.
  2200. * BaseParser.cs: added setter for BaseVirtualDir.
  2201. * Page.cs: fixed message when restoring view state fails.
  2202. * UserControlParser.cs: set the BaseVirtualDirectory to handle the case
  2203. when a relative path to the control is given. Fixes bug #47685.
  2204. 2003-08-18 Gonzalo Paniagua Javier <[email protected]>
  2205. * Control.cs: when we load the viewstate for a control that has children
  2206. viewstates and the child is not found, keep its viewstate around and
  2207. wait until the child is added to load the viewstate. Fixes bug #47697.
  2208. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  2209. * TemplateControl.cs: more Delegate.CreateDelegate fixes.
  2210. 2003-08-01 Andreas Nahr <[email protected]>
  2211. * PartialCachingControl.cs: is not abstract
  2212. 2003-08-01 Gonzalo Paniagua Javier <[email protected]>
  2213. * SimpleHandlerFactory.cs: implemented GetHandler.
  2214. * WebHandlerParser.cs: new file that parses .ashx files.
  2215. 2003-07-30 Andreas Nahr <[email protected]>
  2216. * PersistenceModeAttribute.cs: Fixed wrong AttributeUsage
  2217. 2003-07-30 Andreas Nahr <[email protected]>
  2218. * UserControl.cs: Added attribute
  2219. * BasePartialCachingControl.cs: New class and paritally implemented
  2220. * DesignerDataBoundLiteralControl.cs: New class and implemented
  2221. * DesignTimeTemplateParser.cs:
  2222. * PartialCachingControl.cs:
  2223. * StaticPartialCachingControl.cs: New class and paritally implemented
  2224. 2003-07-27 Andreas Nahr <[email protected]>
  2225. * ApplicationFileParser.cs: Fixed signature
  2226. * DesignTimeParseData.cs: Added missing properties, implemented
  2227. * Page.cs: Added attributes
  2228. * PageParser.cs:
  2229. * TemplateControlParser.cs:
  2230. * TemplateParser.cs:
  2231. * UserControlParser.cs: Fixed signature
  2232. 2003-07-17 Andreas Nahr <[email protected]>
  2233. * HtmlControlPersistableAttribute.cs: Added
  2234. * IgnoreUnknownContentAttribute.cs: Added
  2235. 2003-07-17 Andreas Nahr <[email protected]>
  2236. * IUserControlDesignerAccessor.cs: Added and implemented
  2237. * Control.cs: Missing member added, added all attributes
  2238. * Page.cs: Added attributes, fixed signature
  2239. * TemplateControl.cs: Fixed signature, added all attributes
  2240. * UserControl.cs: Added all attributes, added and implemented missing interface
  2241. 2003-07-17 Gonzalo Paniagua Javier <[email protected]>
  2242. * ControlCollection.cs: fixed bug #46472.
  2243. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  2244. * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
  2245. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  2246. * SimpleWebHandlerParser.cs: updated to new compilation interface.
  2247. * TemplateParser.cs: use the new parameter when compiling.
  2248. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  2249. * Page.cs: also keep the value for the second try on handling postback
  2250. events.
  2251. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  2252. * BaseParser.cs: fixed MapPath for non-rooted files.
  2253. * PageParser.cs: don't pass a non-virtual file around.
  2254. * TemplateControlParser.cs: InputFile uses MapPath now. Take care of
  2255. the exception teh may be throw by MapPath on an invalid path.
  2256. * TemplateParser.cs: removed unused method.
  2257. * UserControlParser.cs: modified inputfile. The result is the same, but
  2258. this one is better.
  2259. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  2260. * RootBuilder.cs: throw exception when the tagprefix is not valid or
  2261. not found.
  2262. 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
  2263. * TemplateControlParser.cs: return after processing @Register.
  2264. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  2265. * TemplateParser.cs: Added support for server side includes.
  2266. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  2267. * TemplateControl.cs: fixed the flags used to find the methods that
  2268. are automatically hooked up on events.
  2269. * TemplateParser.cs: don't compile a source file directly. Use the
  2270. cache instead.
  2271. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  2272. * BaseParser.cs: Location property is now here. Added a couple of
  2273. convenience methods to throw a ParseException.
  2274. * TemplateParser.cs:
  2275. * TemplateControlParser.cs:
  2276. * PageParser.cs: throw ParseException where appropiate.
  2277. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  2278. * ApplicationFileParser.cs: use the generator to actually parse the
  2279. file.
  2280. * ControlBuilder.cs: small fix in NamingContainerType because
  2281. TemplateBuilders have a null ControlType. When a control is appended
  2282. to a parent, assign the child's parent.
  2283. * UserControlParser.cs: fixed the value of InputFile.
  2284. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2285. * ApplicationFileParser.cs: store the Context and override
  2286. BaseVirtualDir so that it's the application path.
  2287. * BaseParser.cs: removed CurrentVirtualPath property.
  2288. * TemplateControlParser.cs: use BaseVirtualDir.
  2289. * UserControlParser.cs: removed CurrentVirtualPath.
  2290. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2291. * TemplateParser.cs: always reference all the assemblies in bin
  2292. directory.
  2293. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2294. * ApplicationFileParser.cs: it works now. Prior to these changes, we
  2295. were using the compiler directly.
  2296. * BaseParser.cs: added some useful properties and methods.
  2297. * CodeBuilder.cs: use ILocation.
  2298. * CodeRenderBuilder.cs: use ILocation.
  2299. * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
  2300. * ControlBuilder.cs: made it useful.
  2301. * DataBindingBuilder.cs: the control type for data bound text is
  2302. DataBoundLiteralControl now.
  2303. * ObjectTagBuilder.cs: store some object tag attributes.
  2304. * PageParser.cs: handle page-only directives.
  2305. * RootBuilder.cs: bah.
  2306. * SimpleWebHandlerParser.cs: made it dummy.
  2307. * TemplateControl.cs: Modified file.
  2308. * TemplateControlParser.cs: handle directives that are common to pages
  2309. and user controls.
  2310. * TemplateParser.cs: utility methods and handling of directives that
  2311. are common to app, page and user controls.
  2312. * UserControl.cs: added ControlBuilderAttribute.
  2313. * UserControlControlBuilder.cs: builder for user controls.
  2314. * UserControlParser.cs: use the new interfaces.
  2315. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  2316. * ControlBuilder.cs: line and fileName are protected now.
  2317. * CodeBuilder.cs: base class for the next 2 files.
  2318. * CodeRenderBuilder.cs: builder for code render.
  2319. * DataBindingBuilder.cs: builder for data binding.
  2320. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  2321. * ITagNameToTypeMapper.cs: made it internal.
  2322. * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
  2323. * ObjectTag.cs:
  2324. * RootBuilder.cs: initial builder.
  2325. 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
  2326. * CollectionBuilder.cs:
  2327. * TemplateBuilder.cs: new classes derived from ControlBuilder that
  2328. represent a property or a ITemplate.
  2329. * ControlBuilder.cs: implemented all the missing bits.
  2330. * TemplateParser.cs: added mapping from tag name to Type feature.
  2331. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  2332. * Control.cs: have i definitely fixed naming container stuff this time?
  2333. * LosFormatter.cs: activated binary serialization code.
  2334. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  2335. * Control.cs:
  2336. (AddedControl): fixed default id assignation when the sequence of
  2337. AddedControl until it's included in the page or one of its controls
  2338. does not pass through a naming container.
  2339. 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
  2340. * Control.cs: give different default names depending on the place where
  2341. it is assigned. Implemented ResolveURl (no more ~ rendered in
  2342. attributes!).
  2343. 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
  2344. * Control.cs: when adding a control, assign default names to th
  2345. children that don't have one.
  2346. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  2347. * SimpleWebHandlerParser.cs: modified to use the new parser interface.
  2348. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  2349. * Control.cs: some more tweaks to naming containers stuff.
  2350. * DataBinder.cs: don't throw exception if the container is null.
  2351. * Page.cs: now we can render client scripts, startup scripts and hidden
  2352. fields. Only render __VIEWSTATE if there is someone that will take care
  2353. of it.
  2354. (RaisePostBackEvents): first try the last one that required raise event,
  2355. then try __EVENTTARGET.
  2356. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  2357. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  2358. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  2359. FindControl work with NamingContainers.
  2360. * ControlCollection.cs: notify the parent when clearing the collection.
  2361. * LosFormatter.cs: Added debugging output and generate a valid
  2362. viewstate even for unknown types.
  2363. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  2364. viewstate.
  2365. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  2366. * Page.cs: make it fire the LoadData related events also for controls
  2367. such as ImageButton, whose variable(s) in the query string are of the
  2368. form ctrl_name.x and only fire them once per control.
  2369. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2370. * DataBinder.cs:
  2371. (GetPropertyValue): don't try to get the property as indexed
  2372. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2373. * DataBinder.cs: use TypeDescriptor to get the properties and their
  2374. values.
  2375. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  2376. * Control.cs:
  2377. (AddedControl): take the children to the same state of the parent.
  2378. (InitRecursive): set the page of the children.
  2379. * Page.cs: removed one line (it's done a few lines above).
  2380. * UserControl.cs:
  2381. (OnInit): always call InitializeAsUserControl
  2382. (InitializeAsUserControl): sets the page for the control.
  2383. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  2384. * Control.cs: fixed bug #36037.
  2385. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2386. * BaseParser.cs: a couple of path fixes to make it work
  2387. when the page is not in the root directory.
  2388. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2389. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  2390. reporting the bug.
  2391. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  2392. * BaseParser.cs: use MapPath and context to locate files.
  2393. * Control.cs: implemented MapPathSecure.
  2394. * TemplateControl.cs: use UrlUtils to generate the path.
  2395. * TemplateControlParser.cs: use the context and MapPath.
  2396. * UserControl.cs: implemented MapPath.
  2397. * UserControlParser.cs: added context parameter to constructor.
  2398. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  2399. * Control.cs: implemented MapPathSecure.
  2400. * Page.cs: fixed Server property.
  2401. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  2402. * DataBinder.cs: try the indexer if the property is not found in
  2403. GetPropertyValue ().
  2404. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  2405. * Control.cs: added AutoEventWireup internal property.
  2406. * Page.cs: removed page events wire up from here.
  2407. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  2408. and user controls events.
  2409. * TemplateControlParser.cs: process the options that are applicable
  2410. once we have the instance of the control.
  2411. * TemplateParser.cs: also stores the options.
  2412. * UserControl.cs: hook up events before initializing the control.
  2413. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2414. * Control.cs: new method to set bindingContainer value.
  2415. * TemplateControl.cs: added controls are not binding containers.
  2416. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2417. * Control.cs: implemented TemplateSourceDirectory.
  2418. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  2419. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  2420. * UserControl.cs: fixed SetAttribute.
  2421. * UserControlParser.cs: set the correct base type.
  2422. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  2423. * TemplateParser.cs: fixed BaseType.
  2424. * UserControlParser.cs: helper class to compile user controls.
  2425. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  2426. * LosFormatter.cs: added DateTime to special types.
  2427. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2428. * LosFormatter.cs: added array serialization support. Disabled binary
  2429. serialization and add some debugging code.
  2430. * StateBag.cs: the length of the list of value can be less than the
  2431. length if the list of keys when remaining values are null.
  2432. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  2433. * Page.cs: return something useful in GetPostBackClientEvent.
  2434. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  2435. * Page.cs: implemented FileDependecies and made it protected.
  2436. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  2437. * Control.cs: save control names instead of the controls
  2438. themselves to the ViewState.
  2439. * LosFormatter.cs: added support for serializing unknown
  2440. types. BinaryFormatter does not work so you better don't store anything
  2441. of unknown Type in ViewState.
  2442. * Page.cs: GetViewStateString works now using LosFormatter.
  2443. Complete "Control execution lifecycle" by unloading all the child
  2444. controls. Check for null in RaisePostBackEvents.
  2445. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  2446. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  2447. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  2448. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  2449. * LosFormatter.cs: Use WebEncoding.Encoding.
  2450. * Control.cs:
  2451. * Page.cs: fixed namespace.
  2452. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  2453. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  2454. * Control.cs: added some trace information.
  2455. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  2456. * SimpleHandlerFactory.cs: new handler for .ashx files.
  2457. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  2458. * System.Web.UI/PageHandlerFactory.cs: new file.
  2459. * System.Web.UI/PageParser.cs:
  2460. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  2461. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  2462. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  2463. * Control.cs: implemented ObBubbleEvent.
  2464. * Page.cs: temporary workaround to make POST work with xsp server.
  2465. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  2466. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  2467. return pvt methods.
  2468. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  2469. * SimpleWebHandlerParser.cs: New file.
  2470. * WebServiceParser.cs: New file.
  2471. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  2472. * LosFormatter.cs: almost fully implemented.
  2473. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  2474. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  2475. * EmptyControlCollection.cs: throw correct exception.
  2476. * LosFormatter.cs: stubbed out.
  2477. * OutputCacheLocation.cs: little fix.
  2478. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  2479. * System.Web.UI/ApplicationFileParser.cs:
  2480. * System.Web.UI/BaseParser.cs:
  2481. * System.Web.UI/PageParser.cs:
  2482. * System.Web.UI/TemplateControl.cs:
  2483. * System.Web.UI/TemplateControlParser.cs:
  2484. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  2485. System.Web.
  2486. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  2487. * Page.cs: request to render postback script can be after form started
  2488. rendering.
  2489. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  2490. * Page.cs: added more page events to invoke automagically if some
  2491. methods are defined.
  2492. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  2493. * Control.cs:
  2494. (SaveViewState): save state even when control is not visible.
  2495. (SaveViewStateRecursive):
  2496. (LoadViewStateRecursive): made internal.
  2497. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  2498. * Page.cs: improved event raising to allow client postback for a wider
  2499. variety of actions (clicking an hyperlink, ...).
  2500. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  2501. * UserControl.cs: implemented Load/SaveViewState.
  2502. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  2503. * AttributeCollection.cs:
  2504. (Add): handle 'style' through styleCollection.
  2505. * CssStyleCollection.cs:
  2506. (fillStyle): renamed to FillStyle and made it internal.
  2507. * Page.cs:
  2508. (GetViewStateString): fixed, broken after other recent changes.
  2509. (ProcessPostData): allow a second try for postback data after OnLoad.
  2510. (ProcessRequest): clear controls collection, removed call to
  2511. UnloadRecursive.
  2512. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  2513. * Control.cs: uncommented Dispose.
  2514. * Page.cs:
  2515. (DeterminePostBackMode): more checkings.
  2516. (GetPostBackClientHyperLink): implemented.
  2517. (GetPostBackEventReference): added some comments with the HTML that MS
  2518. generates for that.
  2519. (ProcessRequest): fixed processing order. The page is unloaded after
  2520. a request and regenerated from view state on subsequents posts.
  2521. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  2522. * Control.cs: fixed related to ViewState. Added RemovedControl.
  2523. * ControlCollection.cs: notify owner of control removal.
  2524. * CssStyleCollection.cs: almost rewritten to make it render the style
  2525. attribute after changes to it.
  2526. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  2527. Removed Xml code.
  2528. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  2529. HybridDictionary: it makes the program give an InvalidCastException at
  2530. runtime. Why?
  2531. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  2532. * Page.cs: fire Init and Load events for all children.
  2533. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  2534. * UserControl.cs: New file.
  2535. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  2536. * ControlBuilderAttribute.cs: finished implementation.
  2537. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2538. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  2539. property to false.
  2540. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2541. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  2542. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  2543. Hashtable. Added internal .ctor.
  2544. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  2545. Equals and GetHashCode.
  2546. * System.Web.UI/DataBoundLiteralControl.cs:
  2547. (LoadViewState):
  2548. (SaveViewState): implemented.
  2549. * System.Web.UI/Page.cs: FileDependencies is not public.
  2550. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  2551. (GetHashCode):
  2552. (Equals):
  2553. (IsDefaultAttribute): implemented.
  2554. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  2555. * Control.cs: fixed Visible property.
  2556. * Page.cs: fixed GetViewStateString.
  2557. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2558. * System.Web.UI/Page.cs:
  2559. (GetViewStateString): new function to give the server access to the
  2560. generated view state string.
  2561. (Validate): d'oh!
  2562. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2563. * Control.cs:
  2564. (SaveViewstateRecursive): implemented.
  2565. (SaveViewState): fixed.
  2566. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  2567. * Page.cs: added code to save view state to an xml file. It's not
  2568. being used right now.
  2569. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  2570. * System.Web.UI/LiteralControl.cs:
  2571. Fixes based on class status page:
  2572. - Add attributes (DefaultEvent, ParseChildren).
  2573. - Fix declarations.
  2574. - Explicitly implement some interfaces (IPostBackDataHandler
  2575. and IPostBackEventHandler).
  2576. - Implemented some missing methods.
  2577. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  2578. * Control.cs: reimplemented FindControls.
  2579. * Page.cs:
  2580. (.ctor): set the page for this control.
  2581. (IsPostBack): return valid value.
  2582. (DeterminePostBackMode): finished.
  2583. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  2584. (ProcessPostData): implemented. Raises change and postback events.
  2585. (ProcessRequest): changed to support reuse of the instance.
  2586. (RegisterRequiresPostBack): implemented.
  2587. * ValidatorCollection.cs: implemented all methods.
  2588. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  2589. * Control.cs:
  2590. * Page.cs: first attemp to save view state.
  2591. * HtmlForm.cs: don't render Action.
  2592. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  2593. * Page.cs: implemented more properties using information we already
  2594. have in Context.
  2595. (OnFormRender):
  2596. (OnFormPostRender):
  2597. (VerifyRenderingInServerForm): implemented.
  2598. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  2599. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  2600. out runtime. Renamed Page_Init and Page_Load.
  2601. After this, we can load a dll and render HTML in linux.
  2602. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  2603. * Control.cs:
  2604. (AddedControl): new function that is called whenever a control is
  2605. added to a collection of controls in a container. It sets the defaults
  2606. except for Page.
  2607. * ControlCollection.cs: call AddedControl in Add/AddAt.
  2608. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  2609. SetStaticString and SetDataBoundString.
  2610. * Page.cs: removed SetDefaults.
  2611. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  2612. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  2613. by xsp.
  2614. * Control.cs:
  2615. (BindingContainer): implemented.
  2616. (EnsureChildControls): avoid stack overflow.
  2617. * DataBinder.cs: implemented Eval and PropertyValue.
  2618. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  2619. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  2620. bug as in regular attributes).
  2621. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  2622. * Control.cs: implemented PreventAutoID.
  2623. * Page.cs:
  2624. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  2625. been called.
  2626. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2627. * Page.cs:
  2628. (Validators): if the collection is null, create one.
  2629. (GetPostBackEventReference 2): don't throw exception.
  2630. (GetPostBackClientEvent): return a string with containing the method
  2631. name, the control name and the argument.
  2632. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2633. * Page.cs: SetPage is now called SetDefaults and also sets a default
  2634. ID for controls that don't have one yet.
  2635. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2636. * Page.cs:
  2637. (GetPostBackClient):
  2638. (RegisterRequiresPostBack): don't throw NotImplementedException to
  2639. keep going.
  2640. (ProcessRequest): set the current page as the Page property for *all*
  2641. the controls, not just the direct children of the page.
  2642. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  2643. * Control.cs:
  2644. (MapPathSecure): until security is implemented, return the same path
  2645. received as argument.
  2646. (RenderControl): call OnPreRender before rendering the control. So
  2647. AdRotator can read its configuration file.Is there any other place
  2648. where this should be done?
  2649. * HtmlTextWriter.cs:
  2650. (AddAttribute): fixed. Now it really stores attributes.
  2651. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  2652. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  2653. * ControlCollection.cs:
  2654. (AddAt): if index is -1 behave as a plain Add.
  2655. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  2656. * Page.cs: for each child control to render, assign Control.Page.
  2657. Probably also needed in HtmlContainerControl derived classes.
  2658. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  2659. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  2660. fine and takes care of the details.
  2661. * Control.cs: added HasChildren property.
  2662. * StateBag.cs: fixed a couple of nasty bugs.
  2663. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  2664. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  2665. Invoke Page_Init and/or Page_Load if the user supplied them (though
  2666. this should depend on AutoEventWireUp attribute of Page directive).
  2667. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  2668. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  2669. * Page.cs:
  2670. (ProcessRequest): implemented.
  2671. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  2672. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  2673. methods.
  2674. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  2675. * Page.cs:
  2676. (FileDependencies): now is public public.
  2677. (EnableViewStateMAC): uncommented and made protected.
  2678. (GetTypeHashCode): added method.
  2679. 2002-05-24 Duncan Mak <[email protected]>
  2680. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  2681. * StateBag.cs (Item): Changed the visibility level of the this
  2682. [object] indexer.
  2683. Misc. formatting edits, fixing some bugs introduced by the indentation.
  2684. * DataBinder.cs (Eval)
  2685. (GetIndexedPropertyValue)
  2686. (GetPropertyValue): Fixed return types.
  2687. 2002-05-21 Miguel de Icaza <[email protected]>
  2688. * HtmlTextWriter.cs: Use this to change the member instances.
  2689. 2002-05-17 Duncan Mak <[email protected]>
  2690. * AttributeCollection.cs:
  2691. * ControlCollection.cs:
  2692. * CssStyleCollection.cs:
  2693. * DataBindingCollection.cs:
  2694. * EmptyControlCollection.cs: Added missing Collection classes.
  2695. 2002-05-17 Duncan Mak <[email protected]>
  2696. * BaseParser.cs:
  2697. * TemplateParser.cs: Implemented. BaseParser is weird because
  2698. there is no documentation on what it does.
  2699. * ControlBuilder.cs:
  2700. * DataBinder.cs:
  2701. * DataBinding.cs: Added.
  2702. * DataBoundLiteralControl.cs:
  2703. * Triplet.cs: Added.
  2704. * RenderMethod.cs: Added this delegate for Control.cs
  2705. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  2706. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  2707. 2002-05-14 Duncan Mak <[email protected]>
  2708. * ValidationPropertyAttribute.cs: Added to CVS.
  2709. 2002-05-10 Duncan Mak <[email protected]>
  2710. * ConstructorNeedsTagAttribute.cs:
  2711. * ControlBuilderAttribute.cs:
  2712. * ImageClickEventArgs.cs:
  2713. * ParseChildrenAttribute.cs:
  2714. * PartialCachingAttribute.cs:
  2715. * PersistChildrenAttribute.cs:
  2716. * PersistenceModeAttribute.cs:
  2717. * TemplateContainerAttribute.cs: Added to CVS.
  2718. * PersistanceMode.cs: Removed, fixed typo.
  2719. * PersistenceMode.cs: Replacing above.
  2720. * StateBag.cs (this): Fixed indexer, it takes a string as the
  2721. index, not an object.
  2722. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  2723. * Page.cs (Validators): return type should be ValidatorCollection,
  2724. not ValidatedCollection.
  2725. * TagPrefixAttribute.cs: Added to CVS.
  2726. 2002-05-07 Duncan Mak <[email protected]>
  2727. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  2728. 2002-03-26 Gaurav Vaish <[email protected]>
  2729. * DataBindingHandlerAttribute.cs
  2730. - Completed
  2731. * ToolboxDataAttribute.cs - Completed
  2732. 2002-01-03 Nick Drochak <[email protected]>
  2733. * DesignTimeParseData.cs: initialze static member to avoid compile
  2734. error
  2735. * PropertyConverter.cs: remove uneeded exception variables from
  2736. catch blocks.
  2737. 2002-01-02 Nick Drochak <[email protected]>
  2738. * DesignTimeParseData.cs: fix header to show correct class name
  2739. 2001-12-21 Gaurav Vaish <[email protected]>
  2740. * StateBag.cs - Completed
  2741. 2001-12-19 Gaurav Vaish <[email protected]>
  2742. * Pair.cs - Small undocumented class. Completed.
  2743. 2001-12-18 Gaurav Vaish <[email protected]>
  2744. * DesignTimeParseData.cs - Initial implementation
  2745. * StateBag.cs - Initial implementation
  2746. 2001-12-17 Gaurav Vaish <[email protected]>
  2747. * PropertyConverter.cs - Undocumented class. Completed.
  2748. * Utils.cs - Undocumented, private class.
  2749. Initial implementation
  2750. 2001-08-28 Bob Smith <[email protected]>
  2751. * Control.cs: Figured out some undocumented API.
  2752. * Added TODO.
  2753. * BuildMethod.cs: Initial implementation.
  2754. * BuildTemplateMethod.cs: Initial implementation.
  2755. * HtmlTextWriterAttribute.cs: Initial implementation.
  2756. * HtmlTextWriterStyle.cs: Initial implementation.
  2757. * HtmlTextWriterTag.cs: Initial implementation.
  2758. * IAttributeAccessor.cs: Initial implementation.
  2759. * IDataBindingsAccessor.cs: Initial implementation.
  2760. * ImageClickEventHandler.cs: Initial implementation.
  2761. * INamingContainer.cs: Initial implementation.
  2762. * IParserAccessor.cs: Initial implementation.
  2763. * IPostBackDataHandler.cs: Initial implementation.
  2764. * IPostBackEventHandler.cs: Initial implementation.
  2765. * IStateManager.cs: Initial implementation.
  2766. * ITagNameToTypeMapper.cs: Initial implementation.
  2767. * ITemplate.cs: Initial implementation.
  2768. * IValidator.cs: Initial implementation.
  2769. * OutputCacheLocation.cs: Initial implementation.
  2770. * PersistanceMode.cs: Initial implementation.
  2771. * StateItem.cs: Initial implementation.
  2772. 2001-08-27 Bob Smith <[email protected]>
  2773. * Control.cs: Bug fixes and implementations.
  2774. 2001-08-24 Bob Smith <[email protected]>
  2775. * Control.cs: Bug fixes.
  2776. 2001-08-23 Bob Smith <[email protected]>
  2777. * Control.cs: More implementation. Events reworked for performance.
  2778. 2001-08-22 Bob Smith <[email protected]>
  2779. * LiteralControl.cs: Implemented.
  2780. * Control.cs: Even more implementation (Events). What a beast.
  2781. 2001-08-20 Bob Smith <[email protected]>
  2782. * Control.cs: More implementation. Not done yet. Shutter.
  2783. 2001-08-17 Bob Smith <[email protected]>
  2784. * Control.cs: Partial implementation.