ChangeLog 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140
  1. 2007-04-15 Marek Habersack <[email protected]>
  2. * VirtualPathUtility.cs: converted to LF line endings and set the
  3. svn:eol-style property to 'native'
  4. 2007-04-13 Marek Habersack <[email protected]>
  5. * SiteMap.cs: try to look up the current map node in providers
  6. other than the current one. Patch from Mike Morano
  7. <[email protected]>. Fixes bug #81366.
  8. 2007-04-12 Vladimir Krasnov <[email protected]>
  9. * HttpRequest.cs: fixed Params property to be lazy initialzation
  10. collection
  11. * added HttpParamsCollection.cs
  12. 2007-04-11 Konstantin Triger <[email protected]>
  13. * HttpRequest.cs: IsLocal should return true for loopback addresses.
  14. 2007-04-10 Marek Habersack <[email protected]>
  15. * HttpCookie.cs: format the output of HttpCookie.Values.ToString()
  16. in the same way MS.NET does. Fixes bug #81333. Patch from Mike
  17. Morano <[email protected]>.
  18. * XmlSiteMapProvider.cs: add the NotifyFilters.Size to the
  19. watcher flags, so that we watch for modifications to a file when
  20. using Linux inotify.
  21. * HttpApplicationFactory.cs: add the NotifyFilters.Size to the
  22. watcher flags, so that we watch for modifications to a file when
  23. using Linux inotify.
  24. App_Code, App_Browsers and App_GlobalResources watchers must watch
  25. for events with the '*' mask so that they can notice events
  26. related to subdirectory creation/deletion.
  27. Watch for subdirectory events with the App_Code watcher.
  28. 2007-04-07 Marek Habersack <[email protected]>
  29. * HttpException.cs: show a default custom error message if custom
  30. errors are enabled.
  31. Cleaned up the errors HTML, made it XHTML-compliant. Generated
  32. HTML now uses inline CSS styles.
  33. 2007-04-06 Marek Habersack <[email protected]>
  34. * HttpUtility.cs: added a constant that contains the default query
  35. parameter character.
  36. ParseQueryString supports queries with both '&' and ';' parameter
  37. separators.
  38. 2007-04-05 Marek Habersack <[email protected]>
  39. * CapabilitiesLoader.cs: Make sure that the capability names
  40. (keys) are stored in lowercase.
  41. 2007-04-05 Igor Zelmanovich <[email protected]>
  42. * XmlSiteMapProvider.cs:
  43. custom attributes of siteMapNode are loaded properly.
  44. 2007-04-05 Marek Habersack <[email protected]>
  45. * CapabilitiesLoader.cs: add a full default set of capabilities
  46. for cases when browscap.ini is broken, missing or doesn't contain
  47. definition for the client's User-Agent. Makes it possible to surf
  48. asp.net sites from unsupported clients.
  49. 2007-04-04 Juraj Skripsky <[email protected]>
  50. * HttpApplicationFactory.cs: Make sure an web application is
  51. shutdown only once (and Application_End in global.asax is called
  52. only once as well). This is necessary because FileSystemWatcher
  53. emits multiple events when e.g. global.asax is changed.
  54. 2007-04-01 Vladimir Krasnov <[email protected]>
  55. * HttpRequest.cs: fixed Headers property to use optimized
  56. HeadersCollection
  57. * WebROCollection.cs: used StringComparer.OrdinalIgnoreCase for
  58. NET_2_0
  59. * ServerVariablesCollection.cs: used lazy collection fill optimization
  60. * added: HeadersCollection.cs, BaseParamsCollection.cs
  61. 2007-04-01 Konstantin Triger <[email protected]>
  62. * HttpContext.cs:
  63. GetLocalResourceObject - should not prefix resources with 'Resources.'.
  64. 2007-04-01 Konstantin Triger <[email protected]>
  65. * BrowserCapabilities.cs: Default Browser (userAgent) property to 'Unknown'.
  66. 2007-03-29 Vladimir Krasnov <[email protected]>
  67. * HttpContext.cs: timeout methods removed from TARGET_J2EE compilation
  68. * HttpContext.jvm.cs: added stubs for timeout methods
  69. 2007-03-28 Igor Zelmanovich <[email protected]>
  70. * StaticSiteMapProvider.cs:
  71. GetChildNodes does not return null but SiteMapNodeCollection.EmptyCollection.
  72. 2007-03-28 Konstantin Triger <[email protected]>
  73. * BrowserCapabilities.cs:
  74. 1. refactoring.
  75. 2. Break recoursion in case 'browser' capability is not found.
  76. 2007-03-28 Igor Zelmanovich <[email protected]>
  77. * SiteMapNode.cs: fixed GetAllNodes method.
  78. 2007-03-27 Igor Zelmanovich <[email protected]>
  79. * XmlSiteMapProvider.cs: fixed:
  80. resolve app-relative path from config such siteMapFile="~/Web.sitemap".
  81. 2007-03-27 Igor Zelmanovich <[email protected]>
  82. * SiteMapNode.cs:
  83. * XmlSiteMapProvider.cs: fixed: Localize Site-Map Data.
  84. 2007-03-26 Konstantin Triger <[email protected]>
  85. * HttpRequest.cs: correctly handle null and empty virtual pathes in MapPath.
  86. 2007-03-25 Vladimir Krasnov <[email protected]>
  87. * HttpContext.cs: AppGlobalResourcesAssembly static member stored in
  88. AppDomain for TARGET_JVM
  89. 2007-03-24 Marek Habersack <[email protected]>
  90. * HttpRuntime.cs: use ICalls.GetMachineConfigPath instead of
  91. opening the machine.config file and getting its path.
  92. * CapabilitiesLoader.cs: use HttpRuntime.MachineConfigurationDirectory
  93. instead of opening the machine config file and getting its path.
  94. 2007-03-23 Konstantin Triger <[email protected]>
  95. * HttpApplication.cs: complete the pipeline in case of exception during
  96. InitOnce() to avoid a deadlock.
  97. 2007-03-22 Adar Wesley <[email protected]>
  98. * BrowserCapabilities.cs: Added implementation for all capabilities.
  99. changed implementation to throw when capability is not defined in browscaps.ini.
  100. * CapabilitiesLoader.cs: fixed parent resultion bug. added internal support for
  101. browser and browsers capabilities.
  102. 2007-03-21 Vladimir Krasnov <[email protected]>
  103. * HttpContext.jvm.cs, HttpRuntime.cs: cached instance of HttpRuntime
  104. in context in addition to AppDomain
  105. 2007-03-21 Vladimir Krasnov <[email protected]>
  106. * HttpCookie.cs, HttpCookieCollection.cs: used OrdinalIgnoreCase
  107. StringComparer for cookies and values collections
  108. 2007-03-21 Vladimir Krasnov <[email protected]>
  109. * HttpApplication.cs: refactred handlers configuration section as
  110. member of class
  111. 2007-03-20 Marek Habersack <[email protected]>
  112. * HttpRequest.cs: implement AppRelativeCurrentExecutionFilePath.
  113. 2007-03-18 Igor Zelmanovich <[email protected]>
  114. * VirtualPathUtility.cs: fixed GetFileName(), GetExtension() methods.
  115. 2007-03-18 Igor Zelmanovich <[email protected]>
  116. * VirtualPathUtility.cs: fixed GetDirectory() method.
  117. 2007-03-15 Marek Habersack <[email protected]>
  118. * XmlSiteMapProvider.cs: handle cases with no default for the
  119. reskey properly.
  120. 2007-03-15 Igor Zelmanovich <[email protected]>
  121. * HttpRequest.cs: fixed MapPath () method.
  122. 2007-03-15 Igor Zelmanovich <[email protected]>
  123. * VirtualPathUtility.cs: fixed ToAbsolute() method.
  124. 2007-03-15 Igor Zelmanovich <[email protected]>
  125. * VirtualPathUtility.cs: refactoring: class is shared with 1.x.
  126. 2007-03-15 Marek Habersack <[email protected]>
  127. * XmlSiteMapProvider.cs: add support for the enableLocalization
  128. <siteMap> attribute and handle per-node localization resource
  129. strings for explicit localization as well as the resourceKey
  130. attribute to <siteMapNode> for implicit localization (closes bug
  131. #81103).
  132. * SiteMapNode.cs: add support for the resource keys and foreign
  133. attributes.
  134. Implement GetImplicitResourceString.
  135. Add support for translation of the Title and Description
  136. attributes (closes bug #81103) as well as foreign attributes.
  137. 2007-03-15 Igor Zelmanovich <[email protected]>
  138. * VirtualPathUtility.cs: fixed: works properly with appRelative path.
  139. 2007-03-13 Marek Habersack <[email protected]>
  140. * HttpApplicationFactory.cs: resources compiler no longer accepts
  141. a boolean parameter.
  142. * HttpRuntime.cs: Do not compile local resources here anymore.
  143. * HttpContext.cs: if App_LocalResources assembly corresponding to
  144. the virtual path is not found, compile it here.
  145. Look up resources in the "Resources." class path.
  146. 2007-03-13 Igor Zelmanovich <[email protected]>
  147. * HttpUtility.cs: fixed HttpUtillity.HtmlAttributeEncode
  148. '<' char must be encoded.
  149. 2007-03-12 Vladimir Krasnov <[email protected]>
  150. * CapabilitiesLoader.cs: added TARGET_JVM part of static members,
  151. added caching to GetCapabilities method for performance improvement
  152. 2007-03-12 Marek Habersack <[email protected]>
  153. * XmlSiteMapProvider.cs: support custom site map providers. Fixes
  154. bug #81115
  155. 2007-03-06 Vladimir Krasnov <[email protected]>
  156. * StaticFileHandler.cs: fixed ProcessRequest TARGET_JVM path,
  157. if_modified_since fixed in WAR mode
  158. 2007-02-25 Vladimir Krasnov <[email protected]>
  159. * HttpRequest.jvm.cs: fixed LoadWwwForm, should distinguish between
  160. query string and form values
  161. 2007-02-21 Marek Habersack <[email protected]>
  162. * HttpRuntime.cs: BinDirectory returns the bin directory
  163. determined by the application host on the application startup.
  164. * HttpApplicationFactory.cs: Watch the bin directory determined by
  165. the application host on the application startup.
  166. 2007-02-20 Vladimir Krasnov <[email protected]>
  167. * HttpRequest.cs: fixed MapPath, removed TARGET_J2EE block that checks
  168. war root symbol
  169. 2007-02-19 Marek Habersack <[email protected]>
  170. * HttpContext.cs: Make sure all the global resource objects are
  171. sought in the Resources. namespace.
  172. 2007-02-18 Eyal Alaluf <[email protected]>
  173. * HttpContext.jvm.cs, HttpRequest.jvm.cs: Adapt for tunning under test
  174. harness where we don't have a SevletRequest/Response.
  175. 2007-02-13 Vladimir Krasnov <[email protected]>
  176. * HttpApplication.cs: fixed InitOnce, httpModules section is global and
  177. taken from the root web.config
  178. 2007-02-12 Robert Jordan <[email protected]>
  179. * HttpResponseStream.cs (BlockManager.EnsureCapacity):
  180. don't call Marshal.ReAllocHGlobal on NULL because, unlike
  181. realloc(3) and g_realloc, it doesn't support this semantic.
  182. Fixes a part of bug #77075.
  183. 2007-02-12 Marek Habersack <[email protected]>
  184. * HttpRuntime.cs: support for preservation (.compiled) assembly
  185. mapping files.
  186. 2007-02-11 Vladimir Krasnov <[email protected]>
  187. * HttpApplication.cs: added exception pass through from processAction
  188. in j2ee portal
  189. 2007-02-02 Marek Habersack <[email protected]>
  190. * HttpApplicationFactory.cs: make code a bit more compact.
  191. 2007-01-30 Vladimir Krasnov <[email protected]>
  192. * HttpResponse.cs: fixed TARGET_J2EE part of Redirect for portlet
  193. 2007-01-30 Adar Wesley <[email protected]>
  194. * VirtualPathUtility.cs: fixed exceptions thrown from Combine
  195. so they are compatible with MS.
  196. 2007-01-25 Marek Habersack <[email protected]>
  197. * HttpApplication.cs: Make sure that a specific culture is used
  198. when setting the current thread culture.
  199. 2007-01-21 Gonzalo Paniagua Javier <[email protected]>
  200. * HttpServerUtility.cs: implement Execute/Transfer overloads that take
  201. an IHttpHandler. Still missing the documented check for page IsCallback.
  202. Also, on MS when i derive from Page for my IHttpHandler, it works fine,
  203. but if I just implement IHttpHandler, an exception is thrown. This needs
  204. to be researched but, by now, the IHttpHandler version works on mono
  205. and fails on MS.
  206. 2007-01-20 Miguel de Icaza <[email protected]>
  207. * SiteMapNode.cs (GetExplicitResourceString): implement.
  208. * HttpContext.cs (GetGlobalResourceObject): remove unused variable.
  209. * StaticFileHandler.cs (ProcessRequest): remove unused variable.
  210. * HttpApplication.cs (ProcessError): Remove unused variable.
  211. * HttpServerUtility.cs (Execute): Add new overload and rename
  212. parameter to match MS (as they are normative).
  213. 2007-01-17 Marek Habersack <[email protected]>
  214. * HttpApplicationFactory.cs: Implement code and framework to
  215. enable automatic application restarts on changes to folders/files
  216. in a generic way. Patch from Damien Churchill
  217. <[email protected]>, thanks!
  218. Make sure the top-level assemblies (App_Code, resources) are not
  219. referenced twice should a compilation error occur.
  220. 2007-01-16 Atsushi Enomoto <[email protected]>
  221. * TraceData.cs : page could be null. Fixed bug #80480.
  222. 2007-01-15 Ilya Kharmatsky <ilya -at- decode-systems.com>
  223. * VirtualPathUtility.cs: fixed bugs in methods - GetDirectory and
  224. GetExtension, according to the VirtualPathUtilityTest
  225. 2007-01-15 Vladimir Krasnov <[email protected]>
  226. * SiteMapProvider.cs: fixed IsAccessibleToUser, true if
  227. SecurityTrimmingEnabled not enabled, true if Roles exists on node and
  228. rolename is '*'
  229. 2007-01-14 Eyal Alaluf <[email protected]>
  230. * HttpRequest.jvm.cs, HttpContext.jvm.cs: Added TARGET_J2EE specific files.
  231. * HttpContext.cs, HttpResponse.cs, HttpRequest.cs, HttpCookie.cs:
  232. Add J2EE Portal support for TARGET_J2EE.
  233. 2007-01-04 Vladimir Krasnov <[email protected]>
  234. * HttpRequest.cs: fixed IsLocal, should check all ip addresses of host
  235. 2007-01-05 Marek Habersack <[email protected]>
  236. * HttpApplicationFactory.cs: Use the new app resources compiler.
  237. * HttpRuntime.cs: Use the new app resources compiler.
  238. * HttpContext.cs: Reimplement the GetGlobalResourceObject
  239. methods, implement the GetLocalResourceObject methods.
  240. * HttpResponse.cs: Implement the HeaderEncoding property.
  241. 2007-01-04 Andreia Gaita <[email protected]>
  242. * HttpRuntime.cs: Add check for NET_2_0 when initializing
  243. WebConfigurationManager, build failing on 1.1 profile
  244. 2007-01-04 Vladimir Krasnov <[email protected]>
  245. * HttpApplicationFactory.cs, HttpRuntime.cs: WebConfigurationManager
  246. should be initializaed before any possible access to it
  247. 2007-01-04 Vladimir Krasnov <[email protected]>
  248. * HttpRequest.cs: fixed Path property, add call of
  249. Uri.UnescapeDataString in net_2_0
  250. 2007-01-04 Vladimir Krasnov <[email protected]>
  251. * HttpApplication.cs: fixed PreStart, should not set thread culture
  252. to invariant
  253. 2007-01-03 Vladimir Krasnov <[email protected]>
  254. * HttpRequest.cs: fixed jvm version of MakeInputStream, should not
  255. throw exception on zero content length
  256. 2007-01-03 Vladimir Krasnov <[email protected]>
  257. * SiteMap.cs, SiteMapNodeCollection.cs: TARGET_JVM of static members
  258. 2006-12-20 Marek Habersack <[email protected]>
  259. * HttpContext.cs: add internal setter for the Profile property.
  260. * HttpApplicationFactory.cs: Added a shortcut version of
  261. InvokeSessionEnd for use from the 2.0 SessionState code.
  262. 2006-12-18 Vladimir Krasnov <[email protected]>
  263. * HttpRequest.cs: fixed Path property, returns unescaped url
  264. 2006-12-16 Marek Habersack <[email protected]>
  265. * HttpRequest.cs: Fix for http exception during first visit to an
  266. application when the visit path is not the app's virtual root.
  267. 2006-12-12 Igor Zelmanovich <[email protected]>
  268. * SiteMapProvider.cs.cs:
  269. * XmlSiteMapProvider.cs: fixed: because more then one node with empty url
  270. is allowed unique key is generated for each node.
  271. 2006-12-12 Igor Zelmanovich <[email protected]>
  272. * SiteMapProvider.cs.cs: fixed: IsAccessibleToUser resolvs relative url.
  273. * StaticSiteMapProvider.cs: fixed: RemoveNode
  274. 2006-12-12 Igor Zelmanovich <[email protected]>
  275. * VirtualPathUtility.cs: fixed: Combine(), ToAbsolute() methods.
  276. 2006-12-12 Igor Zelmanovich <[email protected]>
  277. * VirtualPathUtility.cs: fixed: IsAppRelative() method.
  278. 2006-12-07 Vladimir Krasnov <[email protected]>
  279. * BrowserCapabilities.cs: fixed MSDomVersion property
  280. 2006-12-05 Igor Zelmanovich <[email protected]>
  281. * VirtualPathUtility.cs: fixed: ToAbsolute() method.
  282. 2006-12-05 Gonzalo Paniagua Javier <[email protected]>
  283. * HttpRequest.cs: call MapPath on the HttpWorkerRequest so that if
  284. FilePath is changed we get the new physical path, not the one of the
  285. original request. Fixes bug #80152.
  286. 2006-12-03 Igor Zelmanovich <[email protected]>
  287. * HttpWriter.cs: reverted r38835.
  288. 2006-12-01 Gonzalo Paniagua Javier <[email protected]>
  289. * HttpWriter.cs: remove unused WriteBytes method.
  290. 2006-11-30 Gonzalo Paniagua Javier <[email protected]>
  291. * HttpRequest.cs: physical path comes from GetFilePathTranslated to
  292. avoid trimming in HttpRequest.MapPath.
  293. 2006-11-29 Marek Habersack <[email protected]>
  294. * HttpApplication.cs: Make use of the handler stack implemented
  295. in HttpContext.
  296. * HttpCacheVaryByHeaders.cs: Optionally omit the vary:* header
  297. value in the 2.0 profile.
  298. * HttpServerUtility.cs: Make use of the handler stack implemented
  299. in HttpContext.
  300. Implemented the UrlToken{Encode,Decode} 2.0 methods.
  301. * HttpResponse.cs: Implemented the IsRequestBeingRedirected
  302. property.
  303. * HttpContext.cs: Implemented the CurrentHandler and PreviousHandler
  304. methods, together with helper functions to handle the handler
  305. stack.
  306. GetSection(string) should be present only in the 2.0 profile.
  307. * HttpCachePolicy.cs: implement the SetNoServerCaching,
  308. SetNoStore, SetNoTransforms, SetValidUntilExpires and
  309. SetOmitVaryStar methods.
  310. Added code to set the no-store and no-transform options of the
  311. Cache-Control header.
  312. 2006-11-25 Gonzalo Paniagua Javier <[email protected]>
  313. * HttpServerUtility.cs: don't prepend extra '?' when the original url
  314. already has a query string. Fixes bug #80042.
  315. 2006-11-24 Miguel de Icaza <[email protected]>
  316. * HttpApplicationFactory.cs (InitType): Also look for "Web.Config"
  317. casing here.
  318. 2006-11-20 Marek Habersack <[email protected]>
  319. * HttpApplication.cs: Added support for automatic detection of
  320. user's preferred language.
  321. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  322. * HttpApplication.cs: don't leak the directory name for non-local
  323. connections.
  324. 2006-11-13 Gonzalo Paniagua Javier <[email protected]>
  325. * CapabilitiesLoader.cs: made the hasstable that contains the properties
  326. for the brower case insensitive. Fixes bug #79795.
  327. 2006-11-13 Gonzalo Paniagua Javier <[email protected]>
  328. * HttpResponse.cs: fix typo that prevented Server.Execute from restoring
  329. the initial output stream used. Closes bug #79916.
  330. 2006-11-12 Marek Habersack <[email protected]>
  331. * HttpContext.cs: Implemented the 2.0 RewritePath overloads.
  332. 2006-11-08 Marek Habersack <[email protected]>
  333. * HttpRuntime.cs: Moved the resource compiler results handling to
  334. the resource compiler itself.
  335. * HttpApplicationFactory.cs: Add invocation of the App_Code
  336. compiler. Moved the resource compiler results handling to the
  337. resource compiler itself. Removed compilation of the local
  338. resources from here - it should be done only when a request
  339. determines that the App_LocalResources directory exists.
  340. 2006-11-07 Andrew Skiba <[email protected]>
  341. * HttpRuntime.cs: TARGET_JVM ifdef
  342. 2006-11-05 Andrew Skiba <[email protected]>
  343. * SiteMapProvider.cs: don't iterate through Roles when they are null.
  344. 2006-11-05 Vladimir Krasnov <[email protected]>
  345. * HttpContext.cs: implemented Profile property
  346. 2006-11-04 Gonzalo Paniagua Javier <[email protected]>
  347. * HttpApplication.cs: the unexpected 'tick' exceptions can be an abort
  348. exception due to timeout or end of the request.
  349. 2006-10-18 Marek Habersack <[email protected]>
  350. * HttpRuntime.cs: add support for compilation of local resources
  351. at the start of request.
  352. * HttpContext.cs: implement the GetGlobalResourceObject APIs
  353. * HttpApplicationFactory.cs: include the bootstrap code for the
  354. global/local resources compiler.
  355. 2006-10-09 Marek Habersack <[email protected]>
  356. * HttpApplication.cs: change the pipeline order for ASP.NET 2.0 to
  357. comply with the Microsoft documentation.
  358. 2006-09-28 Gonzalo Paniagua Javier <[email protected]>
  359. * HttpApplication.cs: this makes the test run successfully. Still need
  360. to figure out why that is null.
  361. 2006-09-28 Gonzalo Paniagua Javier <[email protected]>
  362. * HttpApplication.cs: band-aid patch to help debugging hang running 2.0
  363. tests.
  364. 2006-09-27 Gonzalo Paniagua Javier <[email protected]>
  365. * HttpServerUtility.cs: 1.1 Execute(s) preserves the query string.
  366. Thanks to Hubert Fongarnand. Fixes bug #79506.
  367. 2006-09-26 Gonzalo Paniagua Javier <[email protected]>
  368. * QueueManager.cs: if disposed, always return null for next request.
  369. * HttpRuntime.cs: dispose the queue manager when shutting down the
  370. domain. This will close pending requests with a 503.
  371. * HttpApplication.cs: release the handler before marking the request
  372. as completed. If in PipelineDone context is null, use
  373. HttpContext.Current. Fixes some of those "Tick detected an unhandled
  374. exception" errors printed out.
  375. 2006-09-11 Andrew Skiba <[email protected]>
  376. * XmlSiteMapProvider.cs: ifdef TARGET_JVM
  377. 2006-09-11 Vladimir Krasnov <[email protected]>
  378. * HttpWriter.cs: fixed WriteLine to work correctly in utf-16 encoding
  379. 2006-09-08 Robert Jordan <[email protected]>
  380. * TraceData.cs: fixed NRE if `sizes' is null, which may happen
  381. if a page was unable to save its viewstate and size.
  382. 2006-09-07 Andrew Skiba <[email protected]>
  383. * HttpApplicationFactory.cs: ifdef the previous fix with TARGET_JVM to
  384. pass compilation.
  385. 2006-09-06 Gonzalo Paniagua Javier <[email protected]>
  386. * HttpApplicationFactory.cs: watch web.config too. Fixes bug #78356.
  387. 2006-09-05 Konstantin Triger <[email protected]>
  388. * SiteMapProvider.cs: consider authorization section for access decision.
  389. 2006-09-04 Igor Zelmanovich <[email protected]>
  390. * HttpUtility.cs: fixed UrlPathEncode method.
  391. 2006-08-31 Boris Kirzner <[email protected]>
  392. * VirtualPathUtility.cs : pass parameters in correct order.
  393. 2006-08-21 Gonzalo Paniagua Javier <[email protected]>
  394. * HttpApplicationFactory.cs: handle the 'renamed' event too.
  395. 2006-08-08 Vladimir Krasnov <[email protected]>
  396. * HttpApplication.cs: fixed BeginProcessRequest, TARGET_JVM part
  397. merged
  398. 2006-08-04 Gonzalo Paniagua Javier <[email protected]>
  399. * HttpApplication.cs: don't leak local path names when a file is not
  400. found.
  401. 2006-06-21 Konstantin Triger <[email protected]>
  402. * XmlSiteMapProvider.cs: if the url is relative, make it relative to the
  403. context root.
  404. 2006-06-07 Juraj Skripsky <[email protected]>
  405. * HttpException.cs (GetHtmlizedErrorMessage): Beautify compilation error
  406. page by showing multiple errors on separate lines.
  407. 2006-06-05 Juraj Skripsky <[email protected]>
  408. * HttpRequest.cs: simplify code around uri_builder (and rename
  409. to url_components). Move storage of query_string into
  410. uri_builder.Query and initialize it lazily using
  411. worker_request.GetQueryStringRawBytes() or GetQueryString().
  412. (QueryString): Use HttpUtility.ParseQueryString instead of
  413. duplicating its functionality.
  414. 2006-06-05 Juraj Skripsky <[email protected]>
  415. * HttpUtility.cs (ParseQueryString): move core of
  416. ParseQueryString into internal method to make it available to
  417. HttpRequest.
  418. 2006-06-05 Gonzalo Paniagua Javier <[email protected]>
  419. * HttpApplication.cs: assign the context when run from a thread not in
  420. the threadpool. Patch by Andrew Skiba. Fixes bug #78583.
  421. 2006-05-26 Gonzalo Paniagua Javier <[email protected]>
  422. * HttpApplication.cs: context.Handler does not change for
  423. HttpServerUtility.Execute, so moved setting it into the pipeline instead
  424. of GetHandler.
  425. 2006-05-17 Kazuki Oikawa <[email protected]>
  426. * HttpUtility.cs: implemented ParseQueryString
  427. 2006-05-10 Gonzalo Paniagua Javier <[email protected]>
  428. * HttpUtility.cs: get rid of TryParseHexa.
  429. 2006-04-25 Gonzalo Paniagua Javier <[email protected]>
  430. * HttpApplicationFactory.cs: make sure that the application start event
  431. is run before any request is processed.
  432. 2006-04-24 Gonzalo Paniagua Javier <[email protected]>
  433. * HttpServerUtility.cs: don't reset the query string in Execute() when
  434. the path does not contain it and we have one from the previous request.
  435. Fixes bug #78177.
  436. 2006-04-20 Andrew Skiba <[email protected]>
  437. * SiteMapNode.cs: fix few null reference exceptions
  438. 2006-04-18 Gonzalo Paniagua Javier <[email protected]>
  439. * HttpResponse.cs:
  440. (TransmitFile): make sure we can read the file before buffering it.
  441. 2006-04-18 Gonzalo Paniagua Javier <[email protected]>
  442. * HttpApplicationFactory.cs: don't fail on events that are not
  443. EventHandlers. Patch by Matthew Metnetsky.
  444. 2006-04-11 Andrew Skiba <[email protected]>
  445. * HttpRequest.cs: remove code duplication (see UrlUtils.Combine)
  446. 2006-04-10 Gonzalo Paniagua Javier <[email protected]>
  447. * HttpUtility.cs: allow "%%" as a escape for '%' and ignore invalid
  448. hexadecimal characters. Based on a patch by Vladimir Krasnov.
  449. 2006-04-09 Gonzalo Paniagua Javier <[email protected]>
  450. * HttpWriter.cs: only keep the byte buffer around if its size is less
  451. than or equals to 32K.
  452. 2006-04-08 Miguel de Icaza <[email protected]>
  453. * HttpWriter.cs (Write): Added missing check for null string as
  454. something is now calling it like that.
  455. 2006-03-27 Joshua Tauberer <[email protected]>
  456. * HttpWriter.cs: Avoid creation of a byte[] on each Write()
  457. by reusing and resizing a private array.
  458. 2006-04-07 Gonzalo Paniagua Javier <[email protected]>
  459. * HttpRequest.cs: the field content_length can be < 0 and then we try to
  460. read when there's no data and block.
  461. 2006-04-05 Andrew Skiba <[email protected]>
  462. * HttpUtility: UrlEncode and UrlEncodeUnicode logic unified, behaviour
  463. fixed to match dotnet and http://rfc.net/rfc1738.html
  464. 2006-03-30 Konstantin Triger <[email protected]>
  465. * HttpApplicationFactory.cs: refactoring: remove static modifier from session_end field.
  466. Does not check the behavior as HttpApplicationFactory is a singleton.
  467. 2006-03-27 Gonzalo Paniagua Javier <[email protected]>
  468. * HttpUtility.cs: UrlDecode does not throw if an hexadecimal sequence
  469. fails to parse as an integer. Fixes bug #77931.
  470. 2006-03-23 Gonzalo Paniagua Javier <[email protected]>
  471. * HttpResponse.cs: more fixes for CacheControl: MS allows to set it to
  472. null and "" and the getter value does not completely depend on Cache.
  473. * HttpRequest.cs: fail validating the request input if there's a control
  474. character after a '<'. Fixes XSS_Null test.
  475. All System.Web tests pass again.
  476. 2006-03-22 Robert Jordan <[email protected]>
  477. * HttpCachePolicy.cs: fix the Cache-control header. Fixes bug #77826.
  478. 2006-03-22 Chris Toshok <[email protected]>
  479. * HttpApplication.cs: fix typo - AuthenticateRequest =>
  480. PostAuthenticateRequest.
  481. 2006-03-21 Gonzalo Paniagua Javier <[email protected]>
  482. * ChangeLog:
  483. * HttpRequest.cs: revert part of r58229.
  484. 2006-03-21 Vladimir Krasnov <[email protected]>
  485. * ServerVariablesCollection.cs: fixed "URL" variable, it should not
  486. return path info
  487. 2006-03-20 Gonzalo Paniagua Javier <[email protected]>
  488. * HttpRequest.cs:
  489. (CheckString): style and don't index the string twice per iteration.
  490. 2006-03-19 Gonzalo Paniagua Javier <[email protected]>
  491. * TempFileStream.cs: a FileStream that removes the file once
  492. it is disposed.
  493. * HttpRequest.cs: support for writing request data to on-disk
  494. files if the request is longer than the threshold specified in the
  495. configuration files. In mono this will work for 1.x and 2.0, while with
  496. MS this only works for 2.0.
  497. 2006-03-18 Robert Jordan <[email protected]>
  498. * HttpCachePolicy.cs: expose the validation callbacks.
  499. Fixes bug #77825.
  500. 2006-03-18 Gonzalo Paniagua Javier <[email protected]>
  501. * HttpApplication.cs: fix upper bound when iterating through the module
  502. collection.
  503. 2006-03-16 Gonzalo Paniagua Javier <[email protected]>
  504. * HttpRequest.cs: use the provided content encoding to decode the file
  505. name. Fixes bug #77714.
  506. 2006-03-15 Gonzalo Paniagua Javier <[email protected]>
  507. * HttpResponse.cs: allow setting a Cache-Control header through
  508. AppendHeader. Fixes bug #77775.
  509. 2006-03-15 Chris Toshok <[email protected]>
  510. * XmlSiteMapProvider.cs (RemoveProvider): oops, no override.
  511. * StaticSiteMapProvider.cs (AddNode): call MapUrl.
  512. (FindSiteMapNode): same.
  513. 2006-03-15 Chris Toshok <[email protected]>
  514. * SiteMapProvider.cs (ReturnNodeIfAccessible): new function,
  515. either return the node or throw InvalidOperationException.
  516. (get_RootNode): use ReturnNodeIfAccessible.
  517. (IsAccessibleToUser): flesh this out a bit, and add comments on
  518. how the rest of the implementation should be written.
  519. (FindSiteMapNodeFromKey): implement to match MS behavior, docs be
  520. damned.
  521. * XmlSiteMapProvider.cs: corcompare work.
  522. * StaticSiteMapProvider.cs (AddNode): Add a check to see if node
  523. == RootNode. Not sure if this is actually correct, but it's
  524. required given our implementation of XmlSiteMapProvider. without
  525. this check, we end up assigning RootNode.ParentNode == RootNode,
  526. which makes for an infinite loop when we traverse up the tree.
  527. 2006-03-15 Vladimir Krasnov <[email protected]>
  528. * HttpRequest.cs: fixed MakeInputStream method under TARGET_JVM,
  529. fixed if content lenght value is less that byte received
  530. 2006-03-10 Chris Toshok <[email protected]>
  531. * StaticSiteMapProvider.cs (UrlToNode): this entire file is #if
  532. NET_2_0, no need to embed another #if NET_2_0.
  533. * SiteMapProvider.cs (AddNode): throw NotImplementedException.
  534. (FindSiteMapNode): with null context, return null. don't throw
  535. ArgumentNullException.
  536. (RemoveNode): throw NotImplementedException.
  537. (IsAccessibleToUser): check arguments to make test pass. still
  538. lacking the method's actual functionality.
  539. (ResourceKey): add missing property.
  540. 2006-03-10 Chris Toshok <[email protected]>
  541. * HttpRequest.cs (CheckString): add back in the check for \xff1c
  542. that i took out. oops.
  543. 2006-03-10 Chris Toshok <[email protected]>
  544. * HttpRequest.cs (CheckString): implement as described in
  545. Shackow's "Professional ASP.NET 2.0 Security, Membership, and Role
  546. Management", page 310.
  547. 2006-03-08 Chris Toshok <[email protected]>
  548. * SiteMap.cs: clean this up a bunch. use the SiteMapSection to
  549. initialize the provider collection, and don't add a provider.
  550. web.config handles that for us. Also, don't always return true
  551. from get_Enabled.
  552. 2006-02-28 Chris Toshok <[email protected]>
  553. * HttpCookieMode.cs: corcompare work.
  554. * ProcessShutdownReason.cs: same.
  555. * SiteMapNodeCollection.cs: same.
  556. * SiteMapNode.cs: same.
  557. * SiteMapProvider.cs: same.
  558. * HttpCacheRevalidation.cs: same.
  559. * HttpCacheability.cs: same.
  560. * StaticSiteMapProvider.cs: same.
  561. * HttpValidationStatus.cs: same.
  562. 2006-02-06 Gonzalo Paniagua Javier <[email protected]>
  563. * DefaultHttpHandler.cs: New file.
  564. 2006-02-01 Chris Toshok <[email protected]>
  565. * SiteMap.cs: use GetSection instead of GetWebApplicationSection.
  566. 2006-02-01 Chris Toshok <[email protected]>
  567. * HttpApplication.cs: CONFIGURATION_2_0 => NET_2_0, and use
  568. GetSection instead of GetWebApplicationSection.
  569. * HttpApplication.jvm.cs: same.
  570. * HttpApplicationFactory.cs: same.
  571. * HttpContext.cs: same.
  572. * CapabilitiesLoader.cs: same.
  573. * QueueManager.cs: same.
  574. * HttpRuntime.cs: same.
  575. * TraceManager.cs: same.
  576. * HttpRequest.cs: same.
  577. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  578. * HttpApplication.cs: keep any exception that happens during
  579. initialization.
  580. 2006-01-30 Gonzalo Paniagua Javier <[email protected]>
  581. * HttpDataTransferMode.cs: Removed file.
  582. * HttpRequestPriority.cs: Removed file.
  583. * ApplicationShutdownReason.cs:
  584. * SiteMap.cs:
  585. * HttpRuntime.cs:
  586. * HttpApplication.cs: minor class status fixes.
  587. 2006-01-30 Gonzalo Paniagua Javier <[email protected]>
  588. * VirtualPathUtility.cs: done with all the not implemented methods.
  589. 2006-01-26 Gonzalo Paniagua Javier <[email protected]>
  590. * HttpResponse.cs: use UInt64.Parse for content length. In AppendHeader,
  591. set cache_control through the property to update the cachebility
  592. accordingly. When using the cached headers, don't add again all the
  593. headers to that collection.
  594. * HttpCacheVaryByParams.cs: if there are no params, return null.
  595. Otherwise we get an empty 'Vary' header.
  596. 2006-01-25 Chris Toshok <[email protected]>
  597. * HttpApplication.cs (Start): wrap InitOnce in a try/catch block,
  598. and if there's a configuration error, output it and end things
  599. immediately.
  600. 2006-01-24 Gonzalo Paniagua Javier <[email protected]>
  601. * HttpRequest.cs: fixed the file path when RewritePath is used. Also
  602. add the PathInfo to the Url. Fixes bug #77291.
  603. 2006-01-22 Chris Toshok <[email protected]>
  604. * HttpRequest.cs (ReadBoundary): remove two unused variables to
  605. quiet mcs.
  606. (IsBoundary): remove unused method.
  607. * MimeTypes.cs (.cctor): use a 2.0 friendly form of the Hashtable
  608. ctor to silence a warning.
  609. * HttpCacheVaryByHeaders.cs (.ctor): same.
  610. * HttpCacheVaryByParams.cs (.ctor): same.
  611. * StaticSiteMapProvider.cs (UrlToNode): same.
  612. 2006-01-22 Konstantin Triger <[email protected]>
  613. * HttpWorkerRequest.cs: ensure case insensitivity in header search.
  614. 2006-01-19 Konstantin Triger <[email protected]>
  615. * HttpApplication.jvm.cs: merge HttpApplication.cs changes.
  616. 2006-01-17 Chris Toshok <[email protected]>
  617. * CapabilitiesLoader.cs (Init): use WebConfigurationManager in the
  618. CONFIGURATION_2_0 case.
  619. * HttpRuntime.cs (MachineConfigurationDirectory): same.
  620. 2006-01-16 Chris Toshok <[email protected]>
  621. * HttpApplicationFactory.cs: call WebConfigurationManager.Init in
  622. the CONFIGURATION_2_0 case.
  623. 2006-01-13 Gonzalo Paniagua Javier <[email protected]>
  624. * HttpWriter.cs: made Write (char) less memory hungry. Thanks to Mike
  625. Glenn for pointing this out.
  626. 2006-01-11 Gonzalo Paniagua Javier <[email protected]>
  627. * HttpApplicationFactory.cs: fix condition for ContextAvailable.
  628. 2006-01-11 Vladimir Krasnov <[email protected]>
  629. * HttpResponse.cs: removed TARGET_JVM block from End
  630. * GetJavaTextReader: Merged TARGET_JVM block from LoadFile
  631. to GetJavaTextReader
  632. 2006-01-11 Vladimir Krasnov <[email protected]>
  633. * HttpRequest.cs: removed TARGET_JVM block from MapPath
  634. 2006-01-11 Vladimir Krasnov <[email protected]>
  635. * HttpRequest.cs: little fix in MapPath(), virtualPath.Replace
  636. return value wasnt stored.
  637. 2006-01-10 Gonzalo Paniagua Javier <[email protected]>
  638. * HttpResponse.cs: typo in comment.
  639. * HttpApplicationFactory.cs:
  640. * HttpApplication.cs: don't discard the application used for running the
  641. Application_Start event to allow for Redirect/Transfer to be used. Fail
  642. to get the request/response from the application object as MS does (it
  643. can still be retrieved through HttpContext.Current.blah). Fixes
  644. bug #77162.
  645. 2006-01-09 Vladimir Krasnov <[email protected]>
  646. * CapabilitiesLoader.cs: Merged TARGET_JVM parts in LoadFile
  647. from /main/9
  648. * HttpException.cs: Merged TARGET_JVM parts in GetHtmlizedErrorMessage
  649. from /main/13
  650. * HttpRequest.cs: Merged TARGET_JVM parts in MapPath from /main/29
  651. * HttpResponse.cs: Merged TARGET_JVM parts in End() from /main/30
  652. * StaticFileHandler.cs: Merged TARGET_JVM parts in ProcessRequest
  653. from /main/7
  654. 2006-01-08 Konstantin Triger <[email protected]>
  655. * BrowserCapabilities.cs, HttpBrowserCapabilities.cs,
  656. HttpResponseStream.cs: TARGET_JVM changes to let the compilation
  657. pass with csc 1.1.
  658. 2006-01-04 Chris Toshok <[email protected]>
  659. * HttpContext.cs (IsCustomErrorEnabled): add CONFIGURATION_2_0
  660. code. use a nasty 'using' hack to map the 2.0 CustomErrorsMode to
  661. the 1.x CustomErrorMode name.
  662. (IsDebuggingEnabled): add CONFIGURATION_2_0 code.
  663. (ConfigTimeout): add CONFIGURATION_2_0 code.
  664. * HttpRequest.cs (MakeInputStream): add CONFIGURATION_2_0 code.
  665. * HttpApplication.cs (RedirectCustomError): add CONFIGURATION_2_0
  666. code.
  667. * SiteMap.c (Init): use
  668. WebConfigurationManager.GetWebApplicationSection.
  669. 2005-12-21 Miguel de Icaza <[email protected]>
  670. * HttpUtility.cs (UrlEncodeUnicode): The generated encoding of
  671. unicode values must be in %XXXX format, not %XX sometimes.
  672. 2005-12-08 Robert Jordan <[email protected]>
  673. * MimeTypes.cs: added entry for "jpg".
  674. 2005-12-07 Gonzalo Paniagua Javier <[email protected]>
  675. * HttpRequest.cs: only read up to content-length when provided. Patch
  676. by Peter Teichman.
  677. 2005-12-06 Gonzalo Paniagua Javier <[email protected]>
  678. * HttpCookie.cs: fixed the set_Secure. Closes bug #76906.
  679. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  680. * HttpResponseStream.cs: flush the filter stream before closing.
  681. Patch by Geir Bergum that fixes bug #76753.
  682. 2005-11-28 Chris Toshok <[email protected]>
  683. * HttpContext.cs (Profile): remove the #if false from around this,
  684. as we now have the ProfileBase type.
  685. (GetConfig): add CONFIGURATION_2_0 version.
  686. (GetSection): add CONFIGURATION_2_0 version.
  687. 2005-11-28 Chris Toshok <[email protected]>
  688. * TraceManager.cs (..ctor): CONFIGURATION_2_0 work.
  689. * QueueManager.cs (..ctor): CONFIGURATION_2_0 work.
  690. * HttpRequest.cs (AnonymousID): add 2.0 property.
  691. (MakeInputStream): CONFIGURATION_2_0 work.
  692. * HttpApplication.cs (InitOnce): change around the
  693. CONFIGURATION_2_0 stuff since we need additional Culture foo for
  694. it.
  695. 2005-11-27 Chris Toshok <[email protected]>
  696. * HttpApplication.cs (InitOnce): add Configuration_2.0 code.
  697. (GetHandler): same.
  698. 2005-11-26 Miguel de Icaza <[email protected]>
  699. * HttpResponseStream.cs: Do not try to write zero bytes.
  700. 2005-11-24 Miguel de Icaza <[email protected]>
  701. * WebROCollection.cs: Do not add an empty "=" to the query string
  702. if the key is empty or null.
  703. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  704. * WebROCollection.cs: override ToString and generate a query string from
  705. the key/value pairs. Fixes bug #76779.
  706. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  707. * HttpServerUtility.cs: prevent possible nullref in GetLastError().
  708. 2005-11-07 Jason Diamond <[email protected]>
  709. * HttpRequest.cs: Don't throw exception when Content-Length doesn't
  710. match length of POSTed data. Also, allow charset parameter on
  711. Content-Type header when type is "application/x-www-form-urlencoded".
  712. 2005-11-07 Gonzalo Paniagua Javier <[email protected]>
  713. * WebROCollection.cs: add an ID for the collection. Page needs it.
  714. 2005-11-03 Gonzalo Paniagua Javier <[email protected]>
  715. * HttpRequest.cs: no need to allocate the buffer when all the content
  716. is preloaded.
  717. 2005-11-02 Gonzalo Paniagua Javier <[email protected]>
  718. * HttpApplication.cs: ignore TAE in ProcesssError. The Error event might
  719. redirect or transfer and that causes a TAE to be thrown. Fixes
  720. bug #76573.
  721. 2005-11-01 Chris Toshok <[email protected]>
  722. * VirtualPathUtility.cs: new (partial implementation) to get some
  723. MS provider examples compiling.
  724. 2005-10-31 Gonzalo Paniagua Javier <[email protected]>
  725. * HttpContext.cs: added a new internal overload for ClearError.
  726. 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
  727. * HttpRuntime.cs: invoke callbacks on private items in the cache before
  728. calling disposing the app. factory. This way we get notifications of
  729. removal for all sessions stored in the cache (InProc only).
  730. 2005-10-19 Gonzalo Paniagua Javier <[email protected]>
  731. * HttpResponseStream.cs: reworked buffering so that adjacents blocks are
  732. written at once. Also fix bug #76460.
  733. 2005-10-18 Gonzalo Paniagua Javier <[email protected]>
  734. * HttpResponseStream.cs: when allocating a chunk larger than the
  735. default chunk size, mark all the blocks as taken. Fixes bug
  736. #76452.
  737. 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
  738. * HttpResponse.cs: use HaveFilter instead of Filter.
  739. * HttpResponseStream.cs: allocate chunks of the requested size
  740. when it's > 32KB. Fixes bug #76460.
  741. 2005-10-14 Sebastien Pouliot <[email protected]>
  742. * ServerVariablesCollection.cs: Added a demand for
  743. SerializationFormatter on GetObjectData method (even if it's not
  744. really required in this case as it remove warnings from gendarme.
  745. 2005-10-07 Gonzalo Paniagua Javier <[email protected]>
  746. * HttpResponse.cs:
  747. * HttpRequest.cs: buglets in error checking in Filter.
  748. 2005-10-03 Gonzalo Paniagua Javier <[email protected]>
  749. * OutputFilterStream.cs: proxy class for response filters.
  750. * HttpResponse.cs: moved all the actual write operations into the
  751. response stream. Handle response filtering. When caching, get the
  752. actual length of the data, not the buffer length.
  753. * HttpApplication.cs: if there's no error, invoke the filters before
  754. updating the request cache.
  755. * HttpResponseStream.cs: new Filter property. SendChunkSize is moved
  756. here and now supports writing the final chunk. New method ApplyFilter
  757. that filters the existing buckets and replaces them with the filtered
  758. ones. Modified Write to deal with buffering and filtering.
  759. 2005-10-03 Gonzalo Paniagua Javier <[email protected]>
  760. * HttpResponseStream.cs: allow for writes of more than 32K at once.
  761. 2005-10-03 Gonzalo Paniagua Javier <[email protected]>
  762. * InputFilterStream.cs proxy stream for use by filters.
  763. * HttpRequest.cs: implement input filtering.
  764. 2005-10-02 Eyal Alaluf <[email protected]>
  765. * HttpApplication.jvm.cs - Workaround for use of yield in
  766. HttpApplication.cs HttpRuntime.cs: AppDomain.Unload is not supported
  767. * under TARGET_J2EE
  768. 2005-09-30 Gonzalo Paniagua Javier <[email protected]>
  769. * HttpResponseStream.cs: remove dead code.
  770. 2005-09-29 Sebastien Pouliot <[email protected]>
  771. * HttpClientCertificate.cs: Remove last TODO on IsValid. This now
  772. works when using XSP. Now use flags to determine valid/presence.
  773. 2005-09-26 Chris Toshok <[email protected]>
  774. * HttpApplicationFactory.cs (OnAppFileChanged): add null checks
  775. for bin_watcher and app_file_watcher so we don't get NRE's here.
  776. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  777. * BrowserCapabilities.cs: don't rely on the win32 attribute to be there.
  778. Just use the platform to determine whether Win32 is true or not. Fixes
  779. bug #74777.
  780. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  781. * HttpApplication.cs: fixed typo when setting UI culture. Closes bug
  782. #76189.
  783. 2005-09-22 Gonzalo Paniagua Javier <[email protected]>
  784. * HttpRequest.cs: new SetFilePath() that does not conflict with
  785. SetCurrentExePath. Now when transfering from a page to another,
  786. CurrentExecutionFilePath and FilePath are correct.
  787. 2005-09-21 Gonzalo Paniagua Javier <[email protected]>
  788. * TraceContext.cs: add new method to store size of controls.
  789. * TraceData.cs: render control size.
  790. * HttpResponse.cs: new internal method to get the number of bytes of
  791. buffered output.
  792. * HttpResponseStream.cs: added Length property to the Buckets and new
  793. GetTotalLength.
  794. 2005-09-20 Gonzalo Paniagua Javier <[email protected]>
  795. * TraceData.cs: we have to change the method of getting a control render
  796. size. MS does not do this or otherwise would run into the same bug
  797. (#76051) that this patch fixes. This is temporarily setting the size
  798. to 0.
  799. 2005-09-20 Gonzalo Paniagua Javier <[email protected]>
  800. * HttpResponseStream.cs: implemented Send(stream) for files. Fixes bug
  801. #76145.
  802. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  803. * HttpRuntime.cs: catch errors when compiling global.asax and
  804. initializing the application. Fixes bug #76090.
  805. 2005-09-14 Sebastien Pouliot <[email protected]>
  806. * BrowserCapabilities.cs: Fixed changes (in 2.0) with versions. Fixed
  807. compare with "True" (culture and case sensitivity).
  808. * HttpApplicationState.cs: Added LinkDemand for Minimal. Use the
  809. internal HttpStaticObjectsCollection ctor to avoid the UnmanagedCode
  810. demand.
  811. * HttpContext.cs: Added LinkDemand for Minimal. Added 2.0 properties
  812. and methods to test CAS on them.
  813. * HttpRequest.cs: Added LinkDemand for Minimal. Ensure we return
  814. proper values when worker_request is null.
  815. * HttpResponse.cs: Added LinkDemand for Minimal. Ensure we return
  816. proper values when context or WorkerRequest is null. Added 2.0
  817. properties and methods to test CAS on them.
  818. * HttpRuntime.cs: Added LinkDemand for Minimal. Added PathDiscovery
  819. demands for properties returning directories. Added demand for High
  820. level on AppDomainAppId and AppDomainId properties, Low level on
  821. IsOnUNCShare, Medium level on ProcessRequest and a demand for
  822. UnmanagedCode on UnloadAppDomain method. Constructor also has a
  823. UnmanagedCode demand for 1.x.
  824. * HttpStaticObjectsCollection.cs: Added LinkDemand for Minimal. Added
  825. a UnmanagedCode demand to public ctor. Added internal ctor without the
  826. demand. Changed Serialize and Deserialize methods to public for 2.0.
  827. 2005-09-14 Sebastien Pouliot <[email protected]>
  828. * HttpWorkerRequest.cs: Removed TODO for 2.0 APIs and return the
  829. default values for them.
  830. 2005-09-13 Sebastien Pouliot <[email protected]>
  831. * HttpApplication.cs: : Added LinkDemand and InheritanceDemand (class)
  832. for Minimal. Changed AssemblyLocation to a property (so it doesn't
  833. require special permission, PathDiscovery) to create an instance.
  834. Protected Modules property with a Demand for High level. Added some
  835. missing HttpException for null context.
  836. * HttpServerUtility.cs: Added LinkDemand for Minimal. Added demands
  837. for UnmanagedCode on all CreateObject* methods. Added demand for
  838. Medium level on MachineName and ScriptTimeout properties. Added new
  839. overloaded Transfer method (2.0) to test CAS on it.
  840. * HttpUtility.cs: Added LinkDemand for Minimal. Added [Obsolete] to
  841. ctor (2.0). Changed some return values when 'count' is 0. Added
  842. ParseQueryString (overload) methods for 2.0 (to enabled CAS testing on
  843. them).
  844. * HttpWorkerRequest.cs: Added LinkDemand and InheritanceDemand (class)
  845. for Minimal. Added RequestTraceIdentifier and RootWebConfigPath (2.0)
  846. properties, GetPreloadedEntityBody, GetPreloadedEntityBodyLength,
  847. GetTotalEntityBodyLength and ReadEntityBody (2.0) methods to test CAS
  848. on them. Fixed SendResponseFromMemory to ignore IntPtr.Zero (used in
  849. tests without failures).
  850. * ServerVariablesCollection.cs: Fixed loadServerVariablesCollection
  851. when HttpWorkerRequest is null.
  852. * TraceContext.cs: Added LinkDemand for Minimal. Fixed default Mode
  853. (SortByTime). Added new (2.0) TraceFinished event to test CAS on it.
  854. 2005-09-13 Sebastien Pouliot <[email protected]>
  855. * HttpBrowserCapabilities.cs: Added LinkDemand and InheritanceDemand
  856. (class) for Minimal. Note that current MCS has problem compiling
  857. security attributes on partial class (bug #75969).
  858. * HttpCachePolicy.cs: Added LinkDemand for Minimal. Added 2.0 methods
  859. (stub) to enable CAS tests on them.
  860. * HttpCacheVaryByHeaders.cs: Added LinkDemand for Minimal.
  861. * HttpCacheVaryByParams.cs: Added LinkDemand for Minimal.
  862. * HttpClientCertificate.cs: Added LinkDemand and InheritanceDemand
  863. (class) for Minimal.
  864. * HttpCookie.cs: Added LinkDemand for Minimal.
  865. * HttpCookieCollection.cs: Added LinkDemand for Minimal.
  866. * HttpFileCollection.cs: Added LinkDemand for Minimal.
  867. * HttpModuleCollection.cs: Added LinkDemand for Minimal.
  868. * HttpPostedFile.cs: Added LinkDemand for Minimal.
  869. * HttpRequestPriority.cs: Fix enum values.
  870. * HttpWriter.cs: Added LinkDemand for Minimal.
  871. 2005-09-13 Sebastien Pouliot <[email protected]>
  872. * ProcessInfo.cs: Added LinkDemand and InheritanceDemand (class) for
  873. Minimal.
  874. * ProcessModelInfo.cs: Added LinkDemand and InheritanceDemand (class)
  875. for Minimal. Methods GetCurrentProcessInfo and GetHistory are also
  876. protected by Demand for High level.
  877. 2005-09-13 Sebastien Pouliot <[email protected]>
  878. * HttpCompileException.cs: Added new public ctors and [Serializable]
  879. to 2.0. Added new Message property and GetObjectData (protected by a
  880. demand for SerializationFormatter) for 2.0. Fixed line-ending.
  881. * HttpException.cs: Added LinkDemand and InheritanceDemand (class) for
  882. Minimal. Renamed parameters to match documentation.
  883. * HttpParseException.cs: Added LinkDemand (class) for Minimal. Added
  884. demand for SerializationFormatter on GetObjectData method. Fixed
  885. line-ending.
  886. * HttpRequestValidationException.cs: Added new public ctors and
  887. [Serializable] to 2.0. Added LinkDemand for Minimal.
  888. * HttpUnhandledException.cs: Added new public ctors and [Serializable]
  889. to 2.0. Removed unused internal ctor. Added LinkDemand for Minimal.
  890. Fixed line-ending.
  891. 2005-09-13 Sebastien Pouliot <[email protected]>
  892. * HttpResponseSubstitutionCallback.cs: New. 2.0 delegate.
  893. * TraceContextEventArgs.cs: New. 2.0 class.
  894. * TraceContextEventHandler.cs: New. 2.0 delegate.
  895. 2005-09-13 Gonzalo Paniagua Javier <[email protected]>
  896. * HttpRequest.cs: use GetServerName instead of GetLocalAddress when
  897. building the Url.
  898. 2005-09-09 Gonzalo Paniagua Javier <[email protected]>
  899. * HttpRequest.cs: fix the indexer.
  900. 2005-09-08 Gonzalo Paniagua Javier <[email protected]>
  901. * HttpPostedFile.cs: fixes in Seek and Position.
  902. 2005-09-08 Sebastien Pouliot <[email protected]>
  903. * HttpRequest.cs: Make sure the MemoryStream created have their
  904. contents marked as public - or else you can't call GetBuffer on them!
  905. 2005-09-08 Miguel de Icaza <[email protected]>
  906. * HttpRequest.cs: Patch from Juraj Skripsky <[email protected]> that
  907. fixes UrlReferrer.
  908. 2005-09-08 Gonzalo Paniagua Javier <[email protected]>
  909. * HttpPostedFile.cs: Make this class actually work. Every time we read,
  910. we have to position the underlying stream.
  911. 2005-09-08 Gonzalo Paniagua Javier <[email protected]>
  912. * HttpRequest.cs: reading multipart/form-data works again.
  913. 2005-09-08 Eyal Alaluf <[email protected]>
  914. * HttpRequest.cs: Under TARGET_JVM the input stream must allow GetBuffer.
  915. 2005-09-08 Eyal Alaluf <[email protected]>
  916. * HttpApplicationFactory.cs: TARGET_J2EE/JVM fix.
  917. 2005-09-07 Gonzalo Paniagua Javier <[email protected]>
  918. * HttpRequest.cs: correctly detect multipart/form-data.
  919. 2005-09-07 Gonzalo Paniagua Javier <[email protected]>
  920. * HttpApplicationFactory.cs: recycle after invoking session_end.
  921. 2005-09-06 Gonzalo Paniagua Javier <[email protected]>
  922. * HttpRuntime.cs: remove Console.
  923. * HttpApplicationFactory.cs: don't hook Session_End, but keep
  924. the MethodInfo around for later invocation if needed. Don't call
  925. GetMethods() for every HttpApplication (or derived class) instances.
  926. Added a method, used by SessionStateModule, that will create use an
  927. application without context to invoke Session_End. Keep a pool of
  928. applications that are meant to be used by this method only.
  929. * HttpApplication.cs: add a SetSession method and do not
  930. attach all the events if the application is for Session_End only.
  931. 2005-09-06 Gonzalo Paniagua Javier <[email protected]>
  932. * HttpRuntime.cs: actually unload the domain when requested. Reformatted
  933. FinishUnavailable() and removed the 'Location' header form the error.
  934. * HttpApplicationFactory.cs: set up the watcher for the bin directory.
  935. This also prevents a nullref when global.asax is changed.
  936. 2005-09-06 Gonzalo Paniagua Javier <[email protected]>
  937. * HttpApplication.cs: fixed bug introduced when moving GetHandler call
  938. around. Now we get error pages again.
  939. 2005-09-06 Miguel de Icaza <[email protected]>
  940. * HttpApplication.cs: Catch EndRequest errors as well.
  941. 2005-09-05 Miguel de Icaza <[email protected]>
  942. * HttpApplication.cs: Invoke EndRequest handler before OutputPage
  943. as FormsAuthentication will issue a Redirect from the EndRequest
  944. handler.
  945. 2005-09-05 Gonzalo Paniagua Javier <[email protected]>
  946. * HttpApplication.cs: when writing an error message, catch the possible
  947. write error.
  948. 2005-09-05 Gonzalo Paniagua Javier <[email protected]>
  949. * HttpResponseStream.cs: prevent invalid cast exception if the first
  950. thing written is a file.
  951. 2005-09-04 Gonzalo Paniagua Javier <[email protected]>
  952. * HttpApplication.cs: fix invalid cast exception (bug #75926).
  953. 2005-09-01 Gonzalo Paniagua Javier <[email protected]>
  954. * HttpApplicationFactory.cs: only trigger the Application_Start event
  955. once. It was being invoked more than once when several clients were
  956. hitting the server at the same time on startup.
  957. 2005-09-01 Eyal Alaluf <[email protected]>
  958. * HttpContext.cs HttpResponse.cs HttpWorkerRequest.cs HttpRuntime.cs
  959. HttpApplicationFactory.cs HttpApplication.cs: TARGET_J2EE/JVM fixes.
  960. Mostly workaround limited AppModel in TARGET_J2EE.
  961. 2005-08-31 Gonzalo Paniagua Javier <[email protected]>
  962. * HttpResponse.cs: if the request method is HEAD, that's equivalent to
  963. SuppressContent. Added an internal TransmitFile that allows setting the
  964. final_flush flag.
  965. * StaticFileHandler.cs: use the new internal TransmitFile and remove
  966. generation of Content-Length header, as now it's computed correctly.
  967. * HttpApplication.cs: remove debugging stuff.
  968. * HttpResponseStream.cs: suppress_content is checked in HttpResponse.
  969. 2005-08-31 Miguel de Icaza <[email protected]>
  970. Removed debugging info.
  971. * HttpApplication.cs: Add support for async handlers.
  972. Add extra 2.x methods.
  973. 2005-08-31 Gonzalo Paniagua Javier <[email protected]>
  974. * BrowserCapabilities.cs: removed extra 'using'.
  975. * HttpApplication.cs: use just the 'modcoll' to hold the collection of
  976. modules instead of having a separate 'modules' one.
  977. 2005-08-30 Gonzalo Paniagua Javier <[email protected]>
  978. * HttpApplication.cs: clone the module collection so that
  979. it's not shared between HttpApplications. Call GetHandler() in the
  980. right place.
  981. 2005-08-30 Miguel de Icaza <[email protected]>
  982. * HttpApplication.cs: Add the new 2.x method overloads that take a
  983. data object.
  984. (RunHooks): Pass the extra data instead of null.
  985. * HttpCookie.cs (HttpOnly): Add 2.x cookie header.
  986. * BrowserCapabilities.cs: Move the core of the capabilities into a
  987. separate file. Use partial classes to choose what version to
  988. compile against.
  989. * HttpBrowserCapabilities.cs: Update to move the code elsewhere.
  990. 2005-08-30 Eyal Alaluf <[email protected]>
  991. * HttpResponseStream.cs: Fix a bug introduced by last fix (thanks to
  992. Ben)
  993. 2005-08-30 Eyal Alaluf <[email protected]>
  994. * HttpResponseStream.cs: Compilation fixes for TARGET_JVM. TARGET_JVM
  995. does not support unsafe code. I localized all unsafe code within Chunk
  996. & Block and created a managed version of Chunk.
  997. 2005-08-30 Eyal Alaluf <[email protected]>
  998. * HttpApplicationFactory.cs: Compilation fixes for TARGET_J2EE. Under
  999. TARGET_J2EE static fields are shared by all app domains. We handle
  1000. this difference by explicitly getting/setting values from the app
  1001. domain. Since HttpApplicationFactory has many static fields, I
  1002. refactored it to have one static instance and moved the static fields
  1003. into instance fields.
  1004. 2005-08-29 Eyal Alaluf <[email protected]>
  1005. * HttpRequest.cs: Disable use of IntPtrStream for TARGET_JVM
  1006. 2005-08-29 Eyal Alaluf <[email protected]>
  1007. * HttpContext.cs: Compilation fixes for TARGET_J2EE/JVM
  1008. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  1009. * HttpResponse.cs: don't duplicate the 'charset=' and don't send a
  1010. charset for unknown MIME types.
  1011. * StaticFileHandler.cs: set the Content-Length header here.
  1012. * HttpRequest.cs: prevent nullrefs when we have no 'charset='.
  1013. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  1014. * StaticFileHandler.cs: use TransmitFile instead of WriteFile. This way
  1015. xsp will use sendfile().
  1016. 2005-08-28 Chris Toshok <[email protected]>
  1017. * SiteMapNode.cs: fix IHierarchyData.GetParent.
  1018. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1019. * HttpRequest.cs:
  1020. * IntPtrStream.cs: now we only have a read-only MemoryStream or an
  1021. IntPtrStream. The copy is moved into HttpRequest.
  1022. 2005-08-26 Sebastien Pouliot <[email protected]>
  1023. * WebCategoryAttribute.cs: New. Required internal attribute.
  1024. * WebSysDescriptionAttribute.cs: New. Required internal attribute.
  1025. 2005-08-26 Jackson Harper <[email protected]>
  1026. * HttpResponseStream.cs: Use GetBuffer so the memory isn't
  1027. duplicated.
  1028. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1029. * HttpApplication.cs: GetHandler might return null when, for example,
  1030. a web service fails, but that does not mean that returning a null
  1031. handler should throw another exception, as the web service code
  1032. serialized the error as a faultString. So if the handler is null, just
  1033. don't call ProcessRequest and keep going.
  1034. 2005-08-26 Jackson Harper <[email protected]>
  1035. * HttpResponse.cs: Send the cached headers if this is a cached
  1036. response. Save the headers, date header, and page data. Fix a typo.
  1037. * HttpResponseStream.cs: Add new accesor to get a byte [] of the
  1038. page data.
  1039. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1040. * HttpWorkerRequest.cs: SetEndOfSendNotification is a noop. No matter
  1041. what callback you use that never gets called. In XSP I actually
  1042. implement something for this method.
  1043. * HttpServerUtility.cs: unused variable.
  1044. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1045. * HttpInputStream.cs: new ctor that takes a byte [].
  1046. * IntPtrStream.cs: make it work on a byte [] too.
  1047. * HttpRequest.cs:
  1048. (ContentLength): return 0 for negative numbers or error parsing, but
  1049. keep content_length negative in those cases.
  1050. (MakeInputStream): when there's no content-length (or it's negative),
  1051. we still read the request into a MemoryStream. Use
  1052. IsEntireEntityIsPreloaded() as a fast path.
  1053. 2005-08-25 Sebastien Pouliot <[email protected]>
  1054. * HttpClientCertificate.cs: On 1.x the .ctor throws a
  1055. ArgumentNullException (but 2.0 throws a NRE).
  1056. 2005-08-25 Gonzalo Paniagua Javier <[email protected]>
  1057. * HttpRequest.cs: HttpMethod deserves its own field. Fix IsLocal.
  1058. 2005-08-25 Chris Toshok <[email protected]>
  1059. * HttpApplication.cs (IsReusable): return true.
  1060. (InitOnce): remove the initialization of handler_factory from
  1061. here.
  1062. (GetHandler) and move it here, so we make sure to load handlers
  1063. from all needed web.config files.
  1064. 2005-08-25 Gonzalo Paniagua Javier <[email protected]>
  1065. * HttpServerUtility.cs: use GetHandler().
  1066. * HttpApplication.cs: remove obsolete method. Now Transfe/Execute work.
  1067. 2005-08-25 Gonzalo Paniagua Javier <[email protected]>
  1068. * HttpApplication.cs: no need for the local var. here.
  1069. 2005-08-25 Chris Toshok <[email protected]>
  1070. * HttpApplication.cs (InitOnce): move the initialization of
  1071. modules above the call to HttpApplicationFactory.AttachEvents,
  1072. since that method accesses HttpApplication.Modules. Fixes
  1073. nGallery.
  1074. (IsReusable): mark TODO.
  1075. 2005-08-23 Gonzalo Paniagua Javier <[email protected]>
  1076. * HttpResponseHeader.cs: removed obsolete class.
  1077. * HttpResponse.cs: no more 'obsolete' warnings.
  1078. 2005-08-23 Gonzalo Paniagua Javier <[email protected]>
  1079. * HttpRuntime.cs: implemeted some missing properties.
  1080. 2005-08-22 Gonzalo Paniagua Javier <[email protected]>
  1081. * HttpResponse.cs: implemented RemoveOutputCacheItem().
  1082. 2005-08-22 Gonzalo Paniagua Javier <[email protected]>
  1083. * HttpApplication.cs: implemented GetVaryByCustomString().
  1084. 2005-08-22 Gonzalo Paniagua Javier <[email protected]>
  1085. * HttpRequest.cs: implemented SetHeader (allows adding a header
  1086. circumventing the read-only protection of the collection) and SetForm,
  1087. which just assigns a value of the 'form' collection.
  1088. * HttpServerUtility.cs: NameValueCollection -> WebROCollection.
  1089. 2005-08-22 Gonzalo Paniagua Javier <[email protected]>
  1090. * HttpContext.cs:
  1091. * HttpRequest.cs: implemented RewritePath and supporting methods.
  1092. 2005-08-22 Sebastien Pouliot <[email protected]>
  1093. * HttpRequest.cs: Avoid NRE if work_request if null in the ctor.
  1094. * HttpResponse.cs: Avoid NRE if work_request if null in the ctor.
  1095. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  1096. * HttpApplication.cs: if there's any exception thrown when getting the
  1097. handler, don't add an extra error to the context, as we already have
  1098. one.
  1099. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  1100. * HttpWriter.cs:
  1101. * HttpResponse.cs:
  1102. * HttpWorkerRequest.cs:
  1103. * HttpApplication.cs: added mising attributes and enabled methods
  1104. present in 1.1 SP1.
  1105. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  1106. * WebROCollection.cs: a collection that allows setting IsReadOnly.
  1107. * HttpRequest.cs: implemented MapImageCoordinates(). Use WebROCollection
  1108. instead of a NameValueCollection in Form, Headers, Params, QueryString.
  1109. 2005-08-19 Gonzalo Paniagua Javier <[email protected]>
  1110. * HttpInputStream.cs: new copy ctor.
  1111. * IntPtrStream.cs: getters for base_address and size.
  1112. * HttpRequest.cs: implemented SaveAs(). Use a wrapper on top of
  1113. InputStream so that reading POST form or files does not modify the state
  1114. if InputStream. Don't use uri_builder.Query in QueryStringRaw, as it
  1115. returns the '?'.
  1116. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  1117. * HttpRequest.cs: implemented UserLanguages and reuse code from
  1118. AcceptTypes.
  1119. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  1120. * HttpRequest.cs: implemented AcceptTypes.
  1121. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  1122. * HttpRequest.cs: implemented this[] in terms of Params. Don't add the
  1123. header collection in Params.
  1124. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  1125. * HttpRequest.cs: fix Files property.
  1126. * HttpApplication.cs: invoke the default authentication event after all
  1127. the other auth. modules.
  1128. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  1129. * ServerVariablesCollection.cs: mark the collection as read-only except
  1130. when we fill it. Add the HTTP_blah key/value pairs too.
  1131. 2005-08-18 Chris Toshok <[email protected]>
  1132. * HttpRequest.cs (get_Params): implement.
  1133. 2005-08-17 Chris Toshok <[email protected]>
  1134. * HttpResponse.cs: HttpResponse's Cookie's collection acts
  1135. differently than HttpRequests in that it never returns null from
  1136. the "this [string]" accessor.
  1137. 2005-08-17 Gonzalo Paniagua Javier <[email protected]>
  1138. * HttpRequest.cs: check length 0 case when reading a POST.
  1139. 2005-08-17 Gonzalo Paniagua Javier <[email protected]>
  1140. * HttpContext.cs: added security attributes for User and
  1141. SkipAuthorization properties.
  1142. * HttpApplicationFactory.cs: AttachEvents is now called form the
  1143. application .ctor. Recycle instead of dispose.
  1144. * HttpApplication.cs: attach events to the newly created application.
  1145. 2005-08-15 Jackson Harper <[email protected]>
  1146. * ApplicationShutdownReason.cs: make build
  1147. 2005-08-15 Miguel de Icaza <[email protected]>
  1148. * HttpApplication.cs: Update comments
  1149. * HttpPostedFile.cs: Use a substream to read from the uploaded
  1150. multiparts.
  1151. * HttpRequest.cs: use new code to read the uploaded files.
  1152. 2005-08-12 Miguel de Icaza <[email protected]>
  1153. 2.x API fixage and small additions:
  1154. * HttpResponse.cs: Make constructor internal.
  1155. * HttpRequest.cs (IsLocal): Expose if NET_2.x
  1156. * HttpContext.cs: Remove internal routine.
  1157. * HttpApplication.cs: Add 2.x events.
  1158. * HttpRequest.cs: Another iFolder issue: I was not setting up the
  1159. uri_builder here.
  1160. Fixes to get iFolder to work:
  1161. * HttpApplicationFactory.cs: Set the context when we are initting
  1162. the application.
  1163. * HttpApplication.cs (SetContext): helper routine.
  1164. * HttpResponse.cs: Implement the various cache operations:n
  1165. Expires, ExpiresAbsolute, CacheControl.
  1166. Actually produce the Cache-Control header, the "Cache" property
  1167. takes precedence over the compatibility settings (Expires,
  1168. ExpiresAbsolutely and CacheControl).
  1169. * HttpCachePolicy.cs: Fix style.
  1170. Fix the generation of the headers, use lower-case values, do not
  1171. add the max-value if the value is zero.
  1172. Allow for all possible values in SetCacheability.
  1173. * HttpRuntime.cs (ClrInstallDirectory): Implement.
  1174. * HttpResponseStream.cs: Remove debugging stuff.
  1175. 2005-08-11 Miguel de Icaza <[email protected]>
  1176. Big chunked handling rewrite, and integration of Ben's unmanaged
  1177. output stream.
  1178. * HttpWriter.cs: Delegate chunked encoding writing to the
  1179. HttpResponse.
  1180. * HttpResponse.cs: Rework the chunked encoding system, centralize
  1181. it all.
  1182. * HttpResponseStream.cs: Deploy Ben's bucket-base unmanaged
  1183. buffers code.
  1184. Changed the way that we handle chunked encoding, centralize it
  1185. all;
  1186. Remove a lot of manual handling of buffering turned off, and
  1187. instead delegate it all to Flush, fixes several issues with the
  1188. new framework.
  1189. * HttpWorkerRequest.cs (SendResponseFromMemory (IntPtr, int)):
  1190. Provide a default implementation since currently XSP does not have
  1191. this method implemented.
  1192. 2005-08-11 Sebastien Pouliot <[email protected]>
  1193. * HttpClientCertificate.cs: Culture insensitive int parsing. Fixed
  1194. NET_2_0 build.
  1195. 2005-08-10 Miguel de Icaza <[email protected]>
  1196. * ServerVariablesCollection.cs: For Ben. Implement the header
  1197. fetching here, do not implement it in HttpRequest.cs.
  1198. 2005-08-10 Sebastien Pouliot <[email protected]>
  1199. * HttpClientCertificate.cs: Changed IsPresent logic so that new unit
  1200. tests will work as expected.
  1201. 2005-08-10 Sebastien Pouliot <[email protected]>
  1202. * HttpClientCertificate.cs: Implemented, except for validation. Note
  1203. that the HttpWorkerRequest derived classes must be updated to supply
  1204. the required informations.
  1205. * HttpRequest.cs: Create an HttpClientCertificate on first call to
  1206. ClientCertificate.
  1207. 2005-08-09 Miguel de Icaza <[email protected]>
  1208. * HttpRuntime.cs (AspInstallDirectory): Implement.
  1209. 2005-08-09 Sebastien Pouliot <[email protected]>
  1210. * HttpClientCertificate.cs: New. Stub. It won't be fun to test.
  1211. 2005-08-04 Ben Maurer <[email protected]>
  1212. * HttpContext.cs: Kill a NIE.
  1213. 2005-08-04 Miguel de Icaza <[email protected]>
  1214. * HttpApplicationFactory.cs: Change "Start" event like the "End"
  1215. event, and only do this once, when we init the type.
  1216. Fire the "Application_Start" event after we create the type.
  1217. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  1218. * HttpApplication.cs: catch a ThreadAbort (coming from Response.End)
  1219. here too.
  1220. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  1221. * HttpResponse.cs: setting the Status property resets the
  1222. StatusDescription (see the tests) and the default value for the
  1223. description is the one provided by GetStatusDescription() in
  1224. HttpWorkerRequest.
  1225. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  1226. * HttpRequest.cs: s/boundry/boundary/ and fix typo in array creation.
  1227. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  1228. * HttpApplication.cs: add call to EndOfRequest when everything is said
  1229. and done.
  1230. 2005-08-02 Miguel de Icaza <[email protected]>
  1231. * HttpResponse.cs: Stub for TransmitFile.
  1232. * HttpRequest.cs (IsAuthenticated): Implement.
  1233. 2005-08-01 Miguel de Icaza <[email protected]>
  1234. * HttpRequest.cs: Cope with implementations of HttpWorkerRequest
  1235. (unpatched xsp) that do not send back the PreloadedEntityBody.
  1236. * HttpApplication.cs: keep track of the factory.
  1237. (Dispose): Only dispose once, clean up other variables, release
  1238. the ManualResetEvent.
  1239. Release the handler to the factory.
  1240. * HttpApplicationFactory.cs: Implement a stack to reuse the
  1241. applications.
  1242. * HttpRequest.cs: On uploads, if the ContentLenght is zero, throw
  1243. a 411.
  1244. * HttpRuntime.cs: Recycle the application after using it.
  1245. * HttpPostedFile.cs: Implement SaveAs.
  1246. * HttpContext.cs: Return the "Server" property.
  1247. 2005-08-01 Gonzalo Paniagua Javier <[email protected]>
  1248. * HttpServerUtility.cs: implemented missing bits.
  1249. 2005-08-01 Gonzalo Paniagua Javier <[email protected]>
  1250. * HttpRequest.cs: query string was getting a '?' as the start of the
  1251. first variable name. This makes the asmx help page work again.
  1252. 2005-08-01 Miguel de Icaza <[email protected]>
  1253. * HttpRequest.cs (Cookies, Forms): Add validation.
  1254. (Forms): Add application/x-www-form-urlencoded parsing and
  1255. multipart/form-data parsing.
  1256. (HttpMultiPart): Implement new class to load multi-part data from
  1257. a stream since there is no longer a byte [] that holds the data
  1258. (currently we have an unmanaged IntPtr buffer wrapped as a
  1259. stream). Also the 2.x framework will add support for large
  1260. uploads which are sent directly to disk, which will require the
  1261. FileStream interface.
  1262. (Path, PathInfo): Fill a couple more methods to avoid crashes.
  1263. * HttpContext.cs: Fill another one to get web services summary
  1264. page painting. The page does not work though.
  1265. * HttpApplication.cs: Rework the pipeline to not depend on
  1266. `finally', as `finally' would not be invoked if we choose not to
  1267. call the pipeline again (which happens if the `stop' variable is
  1268. set).
  1269. Instead force the pipeline to go to the shutdown, and yield from
  1270. there after all the release-state callbacks have been invoked.
  1271. 2005-07-31 Miguel de Icaza <[email protected]>
  1272. * HttpApplication.cs: Remove debugging messages since the compiler
  1273. bug has been fixed.
  1274. You must use at least mcs from revision 47879 for the application
  1275. pipeline to work.
  1276. 2005-07-30 Miguel de Icaza <[email protected]>
  1277. * HttpContext.cs: Error handling methods.
  1278. * HttpResponse.cs: Trigger the last event.
  1279. * HttpRuntime.cs: Add queueing of the next request.
  1280. * HttpApplication.cs: Deploy the new yield-based application
  1281. pipeline, add error handling to the pipeline.
  1282. * HttpApplication.cs (AsyncRequestState): Just use the done event
  1283. from the parent.
  1284. 2005-07-29 Miguel de Icaza <[email protected]>
  1285. * HttpResponseStream.cs, HttpRequest.cs: Fix bugs found by nunit.
  1286. * HttpApplication.cs: Fix a race condition.
  1287. * HttpResponseStream.cs: Fix bug, send the size of the buffer that
  1288. we have so far instead of the internal size of the buffer. This
  1289. will need work later to ensure we enforce the Content-Length
  1290. maximum output size if set.
  1291. * ServerVariablesCollection.cs: This class now inherits from
  1292. NameValueCollection, we should probably review what the middle
  1293. class did, there are no dependencies on it.
  1294. I need to write tests to investigate if something is missing or
  1295. has changed in this implementation.
  1296. 2005-07-27 Miguel de Icaza <[email protected]>
  1297. * HttpRequest.cs: No happy replies here, send a 411.
  1298. 2005-07-27 Chris Toshok <[email protected]>
  1299. * HttpResponseHeader.cs: remove spew.
  1300. 2005-07-27 Chris Toshok <[email protected]>
  1301. * HttpResponseHeader.cs (HttpResponseHandler..ctor): use
  1302. HttpWorkerRequest.GetKnownResponseHeaderName instead of
  1303. GetKnownRequestHeaderName. Fixes Response.Redirect until miguel's
  1304. new HttpReponse is online.
  1305. 2005-07-26 Miguel de Icaza <[email protected]>
  1306. * HttpResponse.cs: use_chunked is now a byte-array, if not null,
  1307. we use it to hold the size of the chunked so we do not have to
  1308. allocate many of these.
  1309. (SendSize): Helper routine to send the chunked headers.
  1310. (BinaryWrite): First user of the chunked writer.
  1311. * HttpApplication.cs: Do not crash if they request a Server
  1312. instance, but throw a NotImplementedException.
  1313. * HttpRequest.cs: fix a few problems exposed by the regression
  1314. test suite.
  1315. * HttpRequest.cs (Cookies): use Chris' new constructor to get the
  1316. cookies parsed.
  1317. : The big Uri rework: instead of using QueryString
  1318. as the population mechanism, populate an UriBuilder from the
  1319. various HttpWorkerRequest methods.
  1320. * HttpWorkerRequest.cs (GetProtocol): Implement in terms of
  1321. IsSecure().
  1322. * HttpResponse.cs: Pointed by Ben, Write (null) is a nop instead
  1323. of a crash.
  1324. * HttpContext.cs: Add a couple of properties to help the 2.x
  1325. build.
  1326. * HttpResponse.cs: Make ContentLength a long, add back support for
  1327. session's app_path_mod.
  1328. (ApplyAppPathmodifier): put back.
  1329. (End): Pass a flag to abort so we can tell the exceptions appart
  1330. in HttpApplication.
  1331. (WriteHeaders): Send the HTTP status.
  1332. (Redirect): Implement.
  1333. (Write): Use the Output property to load writer when needed.
  1334. * HttpRequest.cs (ctor): Temporary use of InitFromWR, will fix
  1335. later.
  1336. (MakeInputStream): check content-length size, use routines to load
  1337. the preloaded data, handle incomplete transfers.
  1338. (Query): Do not insert null keys into the collection.
  1339. (Url): implement.
  1340. (UrlReferer): implement.
  1341. * HttpApplication.cs (RunHooks): Catch Thread.Abort, and call
  1342. Thread.ResetAbort after each step.
  1343. Ensure that ReleaseState is called if we ever succeed in acquiring
  1344. the state even if we have stopped the request pipeline.
  1345. Report file not found, directory not found.
  1346. 2005-07-25 Miguel de Icaza <[email protected]>
  1347. * HttpCookieCollection.cs: Add expiration of the cookie.
  1348. * HttpRequest.cs: Add check for ContentLength, use
  1349. GetPreloadedEntityBody, correct number of bytes uploaded.
  1350. 2005-07-21 Miguel de Icaza <[email protected]>
  1351. * HttpResponseHeader.cs: Our implementation of HttpResponse only
  1352. uses the text headers, does not use any constants as XSP would go
  1353. through a slower code path anyways.
  1354. 2005-07-21 Chris Toshok <[email protected]>
  1355. * HttpBrowserCapabilities.cs: enable support for the W3CDomVersion
  1356. and EcmaScriptVersion properties.
  1357. 2005-07-21 Chris Toshok <[email protected]>
  1358. * HttpResponseHeader.cs: hi, i'm stupid and missed String.Replace.
  1359. 2005-07-21 Chris Toshok <[email protected]>
  1360. * HttpResponseHeader.cs: url encode just \r and \n if they're
  1361. present in the value.
  1362. 2005-07-20 Chris Toshok <[email protected]>
  1363. * HttpPostedFile.cs: add missing ContentLength property.
  1364. 2005-07-20 Chris Toshok <[email protected]>
  1365. * HttpCookieCollection.cs: add a new ctor that takes a string (the
  1366. contents of the Cookies: header).
  1367. 2005-07-20 Chris Toshok <[email protected]>
  1368. * HttpCookieCollection.cs: add another ctor (internal, but not
  1369. obsolete, so we aren't passing a stupid HttpResponse in in order
  1370. to change the behavior of the collection.)
  1371. * HttpCookie.cs: init this.values in the internal ctor.
  1372. 2005-07-20 Chris Toshok <[email protected]>
  1373. * HttpCookieCollection.cs: use "auto-fill mode" when we're dealing
  1374. with an HttpResponse's cookie collection. That is, create the
  1375. cookie if the consumer looks it up.
  1376. 2005-07-20 Miguel de Icaza <[email protected]>
  1377. * HttpApplication.cs: Ongoing work on pipeline, I will need to
  1378. redo this later.
  1379. 2005-07-19 Miguel de Icaza <[email protected]>
  1380. * HttpContext.cs (GetService): Implement. Return all of the
  1381. properties that we have access to. Make HttpWorkerRequest the
  1382. first match as this is the only likely reason people need to use
  1383. this.
  1384. * IntPtrStream.cs: Bring from corlib.
  1385. * MultiPartContentParser.cs: use a MemoryStream as HttpInputStream
  1386. will now be using IntPtrStream.
  1387. * HttpRequest.cs (MakeInputStream): move code that loads the
  1388. request here
  1389. (CloseInputStream): Helper method that we will call later to
  1390. ensure that we dispose properly the malloced() block.
  1391. (BinaryRead): Implemented.
  1392. * HttpInputStream.cs: Rewrite to be a descendant of
  1393. IntPtrStream.cs
  1394. 2005-07-18 Miguel de Icaza <[email protected]>
  1395. * HttpApplication.cs (Modules): Add modules support and
  1396. AsyncResult.
  1397. 2005-07-18 Chris Toshok <[email protected]>
  1398. * HttpResponseHeader.cs: initial implementation.
  1399. 2005-07-18 Chris Toshok <[email protected]>
  1400. * HttpModuleCollection.cs (HttpModuleCollection.GetKey): add
  1401. missing method.
  1402. * HttpFileCollection.cs: initial implementation.
  1403. 2005-07-18 Chris Toshok <[email protected]>
  1404. * HttpModuleCollection.cs (HttpModuleCollection.CopyTo): implement
  1405. missing method.
  1406. 2005-07-18 Chris Toshok <[email protected]>
  1407. * HttpModuleCollection.cs: initial implementation.
  1408. 2005-07-18 Chris Toshok <[email protected]>
  1409. * HttpCacheVaryByHeaders.cs: only add the header if it's not
  1410. already in the hash.
  1411. * HttpCacheVaryByParams.cs: only add the param if it's not already
  1412. in the hash.
  1413. 2005-07-18 Chris Toshok <[email protected]>
  1414. * HttpCookie.cs (HttpCookie+CookieNVC.Set): new override to fix an
  1415. MS quirk.
  1416. 2005-07-17 Miguel de Icaza <[email protected]>
  1417. * HttpRequest.cs (Headers, InputStream): implemented two more
  1418. properties.
  1419. * HttpInputStream.cs: All we need is a MemoryStream with writable
  1420. set to false.
  1421. * HttpPostedFile.cs: Use a Stream.
  1422. 2005-07-16 Chris Toshok <[email protected]>
  1423. * HttpCacheVaryByHeaders.cs: make sure we set vary_by_unspecified
  1424. = false in the custom setter.
  1425. 2005-07-16 Chris Toshok <[email protected]>
  1426. * HttpCacheVaryByParams.cs: initial implementation.
  1427. 2005-07-16 Chris Toshok <[email protected]>
  1428. * HttpCacheVaryByHeaders.cs: initial implementation.
  1429. 2005-07-15 Chris Toshok <[email protected]>
  1430. * HttpCookie.cs: one more time.
  1431. 2005-07-15 Chris Toshok <[email protected]>
  1432. * HttpCookie.cs (HttpCookie.GetCookieHeader): use
  1433. expires.ToString().
  1434. 2005-07-15 Chris Toshok <[email protected]>
  1435. * HttpCookie.cs (HttpCookie.GetCookieHeader): implement to fix
  1436. ben's bug.
  1437. 2005-07-15 Chris Toshok <[email protected]>
  1438. * HttpCookieCollection.cs: initial implementation (with a couple
  1439. of labeled inefficiencies.)
  1440. 2005-07-15 Chris Toshok <[email protected]>
  1441. * HttpCookie.cs (HttpCookie.get_HasKeys): use values.HasKeys()
  1442. instead of trying to be smart about it ourselves.
  1443. 2005-07-15 Chris Toshok <[email protected]>
  1444. * HttpCookie.cs: initial implementation. we fail one unit test,
  1445. but it might be due to a bug in NameValueCollection.
  1446. 2005-07-15 Miguel de Icaza <[email protected]>
  1447. * HttpRequest.cs:
  1448. 2005-07-14 Miguel de Icaza <[email protected]>
  1449. * HttpRuntime.cs: Return a few of the values from the AppDomain
  1450. data.
  1451. Put the application shutdown process.
  1452. * HttpApplicationFactory.cs (AddEvent): Fixed bug when more than
  1453. one method existed.
  1454. (FireEvent): Do not ignore errors.
  1455. * HttpContext.cs (GetAppConfig, GetConfig): First success, use
  1456. ConfigurationSettings.GetConfig to get the value that QueueManager
  1457. needed.
  1458. 2005-07-14 Dick Porter <[email protected]>
  1459. * HttpPostedFile.cs: New basic implementation; needs someone to
  1460. figure out what a HttpRequestStream does
  1461. 2005-07-13 Miguel de Icaza <[email protected]>
  1462. * HttpRequest.cs: More work on this file
  1463. * HttpRequest.cs, HttpApplication.cs, HttpContext.cs,
  1464. HttpRuntime.cs: New from scratch implementation.
  1465. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  1466. * SiteMap.cs: Read provider info from the configuration files.
  1467. 2005-06-27 Gonzalo Paniagua Javier <[email protected]>
  1468. * HttpResponseHeader.cs: URL encode \r and \n in header values. Fixes
  1469. bug #75392.
  1470. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  1471. * HttpUtility.cs: fix another stupid buglet in htmldecode.
  1472. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  1473. * HttpContext.cs:
  1474. * HttpResponse.cs:
  1475. * HttpRequest.cs: use StrUtils (invariant culture).
  1476. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  1477. * HttpRequest.cs: use StartsWith when looking for 'multipart/form-data'.
  1478. File uploading was broken since a few commits ago.
  1479. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  1480. * HttpResponse.cs: ensure that the last chunk ('0\r\n\r\n') is sent
  1481. even if response.Close is called before a final flush. MS/IIS fails to
  1482. do this.
  1483. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1484. * HttpRequest.cs: don't print anything for unknown content types in
  1485. ParseFormData. Use lowercase compare.
  1486. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1487. * HttpResponse.cs: invariant love.
  1488. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1489. * HttpResponse.cs: avoid 1 string concat.
  1490. * HttpRequest.cs: fix BinaryRead. It was totally wrong.
  1491. 2005-06-23 Gonzalo Paniagua Javier <[email protected]>
  1492. * HttpUtility.cs: don't append an extra 0 when no digits seen. Fixes
  1493. bug #75370.
  1494. 2005-06-23 Gonzalo Paniagua Javier <[email protected]>
  1495. * HttpUtility.cs: the lower limit for using &#xx; encoding is 160, not
  1496. 128. Reset number back to 0 after use. Fixes bug #75365.
  1497. 2005-06-19 Svetlana Zholkovsky <svetlanaz-at-mainsoft.com>
  1498. * In following classes added TARGET_J2EE or/and TARGET_JVM
  1499. directives:
  1500. - HttpResponse.cs
  1501. - HttpRuntime.cs
  1502. - HttpUtility.cs
  1503. - CapabilitiesLoader.cs
  1504. - HttpApplication.cs
  1505. - HttpApplicationFactory.cs
  1506. - HttpContext.cs
  1507. - HttpException.cs
  1508. - HttpRequest.cs
  1509. * Added Mainsoft's specific files :
  1510. - GhHttpAsyncResult.jvm.cs
  1511. 2005-06-10 Gonzalo Paniagua Javier <[email protected]>
  1512. * HttpRequest.cs: avoid one intermediate buffer when reading the request
  1513. body and fail for over limit content length when the content type is
  1514. not handled as form or multipart data.
  1515. 2005-06-09 Gonzalo Paniagua Javier <[email protected]>
  1516. * HttpResponse.cs: fix the check in Close() so that CloseConnection is
  1517. called even if there has been no final Flush. Fixes bug #75176.
  1518. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  1519. * HttpParseException.cs:
  1520. * HttpResponse.cs:
  1521. * HttpApplication.cs: updates for 1.1 service pack.
  1522. 2005-06-06 Gonzalo Paniagua Javier <[email protected]>
  1523. * HttpUtility.cs: fix InvalidCastException.
  1524. 2005-06-05 Korn__l P__l <[email protected]>
  1525. * HttpWriter.cs: Fixed: _OutputFilter.Close () was called twice.
  1526. 2005-06-02 Gonzalo Paniagua Javier <[email protected]>
  1527. * HttpUtility.cs: modified HtmlDecode so that it does not need to call
  1528. Int32.Parse and handles improper &# sequences. Fixes bug #74907.
  1529. 2005-05-26 Lluis Sanchez Gual <[email protected]>
  1530. * SiteMapNodeCollection.cs: Implemented missing methods. The collection
  1531. does not inherit from CollectionBase any more.
  1532. * SiteMapNode.cs: Track api changes.
  1533. * SiteMapProvider.cs: Moved several methods to the new
  1534. StaticSiteMapProvider class. Other fixes.
  1535. * XmlSiteMapProvider.cs: Watch changes in the xml files. Other fixes.
  1536. * SiteMapProviderCollection.cs: Minor fixes.
  1537. * SiteMap.cs: Added missing event. Avoid double check lock.
  1538. * StaticSiteMapProvider.cs: New class that implements some of the
  1539. funtionality of SiteMapProvider.
  1540. 2005-05-25 Ben Maurer <[email protected]>
  1541. * MimeTypes.cs: Remove extra spaces, they were typos. Fixes 75049.
  1542. 2005-05-13 Atsushi Enomoto <[email protected]>
  1543. * HttpUtility.cs : UrlDecodeToBytes() incorrectly decoded escaped
  1544. characters. Patch by Kazuki Oikawa.
  1545. 2005-05-09 Gonzalo Paniagua Javier <[email protected]>
  1546. * HttpRuntime.cs: PlatformID.Unix.
  1547. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  1548. * HttpResponse.cs: cleaned up the .ctors, fix IsClientConnected and just
  1549. Clear the _Headers array instead of creating a new ArrayList in
  1550. ClearHeaders().
  1551. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  1552. * HttpResponse.cs: we had 2 variables to track client connection status.
  1553. Use only one. Increase the buffer size to 28KB when writing from a file.
  1554. * StaticFileHandler.cs: set the Content-Type before writing the file.
  1555. This allows flushing before all the content is written.
  1556. * HttpApplication.cs: use the variable instead of the property when
  1557. setting the Principal for the current process.
  1558. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  1559. * ReusableMemoryStream.cs:
  1560. * HttpWriter.cs: keep a pool of buffers to avoid allocations.
  1561. 2005-05-07 Gonzalo Paniagua Javier <[email protected]>
  1562. * HttpResponse.cs: no need to save/restore the thread culture when
  1563. getting the Date header. According to Ben's profiling, this is a big
  1564. deal in performance.
  1565. * HttpRuntime.cs: ignore exceptions that might be thrown when unloading
  1566. a domain.
  1567. 2005-05-04 Gonzalo Paniagua Javier <[email protected]>
  1568. * HttpApplicationFactory.cs: ignore any exception thrown when invoking
  1569. an application event.
  1570. 2005-04-23 Gonzalo Paniagua Javier <[email protected]>
  1571. * HttpBrowserCapabilities.cs: fix Win32 property.
  1572. 2005-04-21 Gonzalo Paniagua Javier <[email protected]>
  1573. * HttpResponse.cs: only add the charset when explicitly set or for
  1574. well-known content types.
  1575. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  1576. * HttpCachePolicy.cs:
  1577. * HttpAsyncResult.cs:
  1578. * HttpClientCertificate.cs:
  1579. * HttpException.cs:
  1580. * HttpRuntime.cs:
  1581. * HttpCacheVaryByHeaders.cs:
  1582. * HttpBrowserCapabilities.cs:
  1583. * HttpUtility.cs:
  1584. * HttpCacheVaryByParams.cs: no more warnings.
  1585. * QueueManager.cs: check for local connections with minLocalFreeThreads.
  1586. 2005-04-19 Gonzalo Paniagua Javier <[email protected]>
  1587. * ServerVariablesCollection.cs: shuffled variables, added missing ones
  1588. and call a method in HttpRequest to set the HTTP_ variables.
  1589. * HttpRequest.cs: new method to add HTTP_ variables to a collection.
  1590. 2005-04-19 Gonzalo Paniagua Javier <[email protected]>
  1591. * HttpRequest.cs: GetAllHeaders was returning the value twice instead
  1592. of 'name: value'. When HTTP_ is requested on the output, don't include
  1593. unknown headers.
  1594. 2005-03-23 Gonzalo Paniagua Javier <[email protected]>
  1595. * HttpCookieCollection.cs: when adding more than one cookie with the
  1596. same name, the last one is the winner.
  1597. 2005-03-09 Gonzalo Paniagua Javier <[email protected]>
  1598. * HttpRequest.cs: correctly store the value cookies in Params. Fixes
  1599. bug #73345.
  1600. 2005-02-28 Gonzalo Paniagua Javier <[email protected]>
  1601. * HttpRequest.cs: Path and FilePath also change when RewritePath is
  1602. called. Fixes bug #73055.
  1603. 2005-02-23 Sebastien Pouliot <[email protected]>
  1604. * HttpRequest.cs: Make sure that any access after a ValidateInput
  1605. throws an exception if the data isn't safe.
  1606. 2005-02-22 Gonzalo Paniagua Javier <[email protected]>
  1607. * CapabilitiesLoader.cs: fix the path, as machine.config is now in a
  1608. x.x/ directory below $PREFIX/etc/mono.
  1609. 2005-02-22 Gonzalo Paniagua Javier <[email protected]>
  1610. * HttpRequest.cs: fail on unicode full-width '<' and '>' too. Fixes
  1611. a security report (http://secunia.com/advisories/14325) that wan't
  1612. reported to us before public disclosure.
  1613. 2005-02-18 Gonzalo Paniagua Javier <[email protected]>
  1614. * HttpResponse.cs: send the calculated content length even when it's 0.
  1615. Fixes bug #72655.
  1616. 2005-02-04 Lluis Sanchez Gual <[email protected]>
  1617. * HttpContext.cs: Added internal property to keep a reference to
  1618. the last accessed page. Page uses this to implement PreviousPage.
  1619. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  1620. * ProcessModelInfo.cs: Fixed warning.
  1621. 2005-02-01 Gonzalo Paniagua Javier <[email protected]>
  1622. * TraceContext.cs: writing a message without any other argument is not
  1623. a warniing. Fixes bug #72017.
  1624. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  1625. * HttpApplication.cs: if there are no more handlers, finish the
  1626. request and ensure we call Complete on it. Now FreeTextBox 3.0 works.
  1627. 2004-12-21 Gonzalo Paniagua Javier <[email protected]>
  1628. * HttpRequest.cs: honor the maxRequestSize limit from machine.config.
  1629. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  1630. * HttpApplication.cs: reread application CultureInfo as web.config
  1631. might have changed. Fixes bug #62539.
  1632. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  1633. * HttpResponse.cs: fixed ApplyAppPathModifier to insert the session ID.
  1634. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  1635. * HttpApplicationFactory.cs: monitor changes in global.asax and bin
  1636. directory and shutdown the application when that happens. Fixes bug
  1637. #49651.
  1638. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  1639. * ReusableMemoryStream.cs: copied from System.IO.MemoryStream and
  1640. slightly modified to allow expanding the buffer for cases on which the
  1641. regular MemoryStream don't allow it.
  1642. * HttpWriter.cs: use the new ReusableMemoryStream and fix bug #59841.
  1643. Otherwise we would have to allocate a new MemoryStream...
  1644. 2004-11-28 Gonzalo Paniagua Javier <[email protected]>
  1645. * HttpApplication.cs: Create() is now GetInstance().
  1646. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  1647. * SiteMapNodeCollection.cs: Added missing properties.
  1648. * HttpParseException.cs: Added 2.0 methods and properties.
  1649. * SiteMapNode.cs: Added missing methods and properties.
  1650. * SiteMapProvider.cs, XmlSiteMapProvider.cs,
  1651. SiteMapProviderCollection.cs: IProvider does not exist any
  1652. more, it is now ProviderBase.
  1653. * ISiteMapProvider.cs: Deleted.
  1654. * ParserErrorCollection.cs, ParserError.cs, SiteMapResolveEventArgs.cs:
  1655. Implemented.
  1656. * SiteMap.cs: Minor fixes.
  1657. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  1658. * SiteMapProviderCollection.cs: Fixed warning.
  1659. * HttpApplication.cs: Added new 2.0 events.
  1660. 2004-11-12 Gonzalo Paniagua Javier <[email protected]>
  1661. * HttpResponse.cs: added internl SetHeadersSent.
  1662. * HttpRuntime.cs: don't throw the 'headers already sent' exception
  1663. if we're sending a runtime error.
  1664. 2004-11-11 Gonzalo Paniagua Javier <[email protected]>
  1665. * HttpApplication.cs: undo the TimeoutManager.(Add|Remove) shuffling.
  1666. It causes troubles under heavy load.
  1667. 2004-11-08 Gonzalo Paniagua Javier <[email protected]>
  1668. * SiteMap.cs: don't lock on Type.
  1669. * CapabilitiesLoader.cs: avoid 2 locks when loading data.
  1670. 2004-11-08 Gonzalo Paniagua Javier <[email protected]>
  1671. * HttpRequest.cs: patch by Dennis Gervalle that fixes PhysicalPath in
  1672. presence of rewriting.
  1673. 2004-10-27 Gonzalo Paniagua Javier <[email protected]>
  1674. * HttpApplication.cs: don't hang if a sync step is aborted. Fixes the
  1675. system.web portion of bug #68270.
  1676. 2004-10-10 Gonzalo Paniagua Javier <[email protected]>
  1677. * TraceContext.cs: don't cast to Page is the handler it's
  1678. not a page.
  1679. 2004-10-06 Gonzalo Paniagua Javier <[email protected]>
  1680. * HttpRequest.cs: CurrentExecutionFilePath is the one that
  1681. changes when Transfer or Execute are used, not FilePath.
  1682. * HttpServerUtility.cs: moved form saving/restoring from
  1683. Transfer to Execute, as it's needed there too. the query string is
  1684. correctly set now. Fixes bug #67388.
  1685. * HttpContext.cs: use SetCurrentExePath instead of SetFilePath.
  1686. 2004-10-03 Ben Maurer <[email protected]>
  1687. * HttpResponse.cs: use UtcNow
  1688. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  1689. * HttpResponse.cs: SuppressContent does not throw and clears all the
  1690. buffered output. Fixes bug #67213.
  1691. 2004-09-30 Gonzalo Paniagua Javier <[email protected]>
  1692. * HttpUtility.cs: UrlPathEncode is static. Fixes bug #67155.
  1693. 2004-09-29 Ben Maurer <[email protected]>
  1694. * HttpContext.cs, TimeoutManager: Use DateTime.UtcNow.
  1695. 2004-09-25 Ben Maurer <[email protected]>
  1696. * HttpApplication.cs: Make sure requests are removed from
  1697. the timeout manager. Fixes a major leak. #66751.
  1698. 2004-09-24 Gonzalo Paniagua Javier <[email protected]>
  1699. * HttpApplicationFactory.cs:
  1700. * HttpRuntime.cs: implemented UnloadAppDomain and be ready for domain
  1701. unloading.
  1702. 2004-09-12 Ben Maurer <[email protected]>
  1703. * HttpContext.cs: use CallContext. It is a little bit faster.
  1704. 2004-09-09 Gonzalo Paniagua Javier <[email protected]>
  1705. * HttpStaticObjectsCollection.cs: don't share static session objects
  1706. declared in the application file across the application, but on a
  1707. per-session basis. Fixes bug #65446.
  1708. 2004-09-09 Gonzalo Paniagua Javier <[email protected]>
  1709. * HttpServerUtility.cs: in Transfer(path), don't keep form data if
  1710. the transfer is done from inside a page that received a postback.
  1711. Fixes bug #65613.
  1712. 2004-09-08 Gonzalo Paniagua Javier <[email protected]>
  1713. * HttpValueCollection.cs: fixed signature of ToString (). Closes bug
  1714. #65392.
  1715. 2004-09-06 Ben Maurer <[email protected]>
  1716. * HttpWriter.cs (.ctor): Dont create teh StreamWriter twice
  1717. (Clear): Don't recreate the MemoryStream and StreamWriter
  1718. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1719. * HttpApplication.cs: only add/remove to/from the timeout
  1720. manager when we're in a interruptible step.
  1721. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1722. * TraceContext.cs: when IsEnabled has not been set, return the value
  1723. from the TraceManager. Fixes bug #63469.
  1724. 2004-08-31 Gonzalo Paniagua Javier <[email protected]>
  1725. * HttpRuntime.cs: initialize the response writer when finishing a
  1726. request because it cannot be queued. Under heavy load we made new
  1727. requests be processed before the ones that might be queued. This is
  1728. no longer the case.
  1729. * QueueManager.cs: instead of queueing/dequeuing separately, we now
  1730. have a single method that does everything needed to decide which one
  1731. will be the next request processed.
  1732. 2004-08-27 Gonzalo Paniagua Javier <[email protected]>
  1733. * HttpRuntime.cs: removed initializations to null in .cctor. Prevent
  1734. other requests from avoiding the lock if they are received before the
  1735. configuration system is inited. Ensure that the queue manager is not
  1736. null before using it (it can be null while the first request is being
  1737. processed).
  1738. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  1739. * HttpServerUtility.cs: ensure we have a full virtual path for the
  1740. request being executed.
  1741. 2004-08-02 Duncan Mak <[email protected]>
  1742. * ApplicationShutdownReason.cs: Fixed typos.
  1743. * HttpCookieMode.cs:
  1744. * HttpDataTransferMode.cs:
  1745. * HttpRequestPriority.cs: Added [Serializable] attribute.
  1746. 2004-08-02 Duncan Mak <[email protected]>
  1747. * ApplicationShutdownReason.cs:
  1748. * HttpCookieMode.cs:
  1749. * HttpDataTransferMode.cs:
  1750. * HttpRequestPriority.cs: Added 2.0 enumerations.
  1751. 2004-07-21 Gonzalo Paniagua Javier <[email protected]>
  1752. * HttpApplication.cs: the file not found might be a dependency.
  1753. 2004-07-20 Gonzalo Paniagua Javier <[email protected]>
  1754. * HttpCookie.cs: use invariant when formatting expires date. Fixes bug
  1755. #61690.
  1756. 2004-07-07 Gonzalo Paniagua Javier <[email protected]>
  1757. * HttpApplication.cs: don't keep the session around if we got it from
  1758. the context. Fixes bug #61232.
  1759. 2004-07-06 Gonzalo Paniagua Javier <[email protected]>
  1760. * HttpUtility.cs: fixed stupid bug in UrlDecode from bytes. Closes bug
  1761. #61181.
  1762. 2004-07-02 Gonzalo Paniagua Javier <[email protected]>
  1763. * TraceContext.cs: added internal HaveTrace property whose
  1764. value is true when the page has a Trace attribute.
  1765. 2004-06-15 Gonzalo Paniagua Javier <[email protected]>
  1766. * TraceData.cs: fixed <br> output. Closes bug #60181.
  1767. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  1768. * HttpUtility.cs: check for control characters in the string to encode
  1769. or decode and return the same string if there are none.
  1770. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  1771. * HttpApplication.cs: change/restore the IPrincipal in their own methods
  1772. and make them internal.
  1773. 2004-06-09 Gonzalo Paniagua Javier <[email protected]>
  1774. * HttpContext.cs: reverting Pedro's patch and sending mail with test
  1775. to mono-devel.
  1776. 2004-06-09 Pedro Martnez Juli <[email protected]>
  1777. * HttpContext: User property returns its own "user" value because
  1778. the context can walk through different Threads. When "User" property
  1779. is changed, change "Thread.CurrentPrincipal" too.
  1780. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  1781. * HttpRequest.cs: removed extra ^Ms and fixed style of last patch.
  1782. 2004-06-08 Alon Gazit <[email protected]>
  1783. * HttpRequest.cs: Add a patch for HttpRequest.ServerVariables.
  1784. 2004-06-07 Sebastien Pouliot <[email protected]>
  1785. * HttpContext.cs: User property now get/set Thread.CurrentPrincipal.
  1786. Fix (at least partially) #59683.
  1787. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1788. * HttpRequest.cs: reverting patch from Alon Gazit. Uses the above file
  1789. that doesn't compile.
  1790. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1791. * TraceData.cs: fixes nullref in an application that relies on
  1792. r ["Message"] not being null. Closes bug #59679.
  1793. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1794. * HttpCachePolicy.cs: implemented SetAllowResponseInBrowserHistory.
  1795. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1796. * HttpRuntime.cs: implemented a 5 simple properties that were TODOs.
  1797. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  1798. * HttpBrowserCapabilities.cs: implemented ClrVersion and GetClrVersions.
  1799. * HttpException.cs: removed MonoTODO.
  1800. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  1801. * TraceContext.cs: don't check if HttpRuntime.TraceManager
  1802. is enabled when writing.
  1803. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  1804. * HttpRequest.cs: added ClientTarget internal property.
  1805. 2004-06-03 Lluis Sanchez Gual <[email protected]>
  1806. * HttpApplication.cs: Clear the http handler list after releasing the
  1807. handlers.
  1808. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  1809. * TraceData.cs: html-encode the messages written to the trace. Fixes
  1810. bug #59431.
  1811. 2004-06-01 Gonzalo Paniagua Javier <[email protected]>
  1812. * HttpWorkerRequest.cs: the hashtables are now case-insensitive. Thanks
  1813. to Markus Krutner.
  1814. 2004-05-31 Gonzalo Paniagua Javier <[email protected]>
  1815. * HttpRequest.cs: nullify _sRequestRootVirtualDir and baseVirtualDir
  1816. when SetFilePath is called. This way the cached values are reset and
  1817. get the right value in case someone (namely SessionStateModule +
  1818. cookieless session) changes the FilePath after the property cached its
  1819. value. Fixes bug #59364.
  1820. 2004-05-27 Patrik Torstensson <[email protected]>
  1821. * HttpApplicationFactory.cs: Added SignalError (still todo)
  1822. 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
  1823. * HttpResponse.cs: remove hardcoded "HTTP/1.0" version that kept
  1824. chunked encoding disabled. Fixed chunked suffix and end. Send the
  1825. 'lastchunk' marked when in the final Flush even if the content length
  1826. is 0. This makes mod-mono-server work fine with chunked encoding.
  1827. * HttpRuntime.cs: Set the _firstRequest* variables to true
  1828. earlier. TraceContext don't take any parameter now.
  1829. * TraceManager.cs: don't need a context. Use GetAppConfig.
  1830. 2004-05-25 Gonzalo Paniagua Javier <[email protected]>
  1831. * HttpApplication.cs: set culture/uiculture from configuration and
  1832. restore it after each step. Fixes bug #52851.
  1833. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  1834. * HttpUtility.cs: use lower case in UrlEncode like MS does. Delay
  1835. entities hashtable creation until it's really needed.
  1836. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  1837. * HttpApplicationFactory.cs: if no module matches the name found for a
  1838. possible event, ignore it. Fixes bug #58542.
  1839. 2004-05-16 Patrik Torstensson <[email protected]>
  1840. * HttpRuntime (Init): Removed old todo
  1841. * HttApplication : Implemented IHttpHandlerFactory recycling
  1842. 2004-04-28 Patrik Torstensson
  1843. * HttpApplicationState.cs: Performance, usage of ReaderWriter lock,
  1844. removed MonoTodo
  1845. 2004-04-16 Gonzalo Paniagua Javier <[email protected]>
  1846. * HttpUtility.cs: return null in HtmlDecode for null input instead of
  1847. throwing an exception. Patch by Jan Jaros (bug #57083).
  1848. 2004-04-10 Vladimir Vukicevic <[email protected]>
  1849. * TimeoutManager.cs: Swap the order of initialization of contexts
  1850. and the Timer, to avoid race condition of CheckTimeouts being called
  1851. before contexts gets initialized.
  1852. 2004-03-27 Gonzalo Paniagua Javier <[email protected]>
  1853. * HttpRequestStream.cs: patch from Jan Jaros that fixes bug #56080.
  1854. Now the posted file content does not have the boundaries and headers
  1855. included.
  1856. 2004-03-25 Alon Gazit <[email protected]>
  1857. * HttpRequest.cs: fix ValidateCookieCollection() to prevent
  1858. InvalidCastException.
  1859. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  1860. * HttpValueCollection.cs: don't UrlDecode cookies. Fixes bug #55254.
  1861. 2004-03-01 Larry Ewing <[email protected]>
  1862. * HttpUtility.cs: fix UrlEncodeToBytes count check.
  1863. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  1864. * HttpServerUtility.cs:
  1865. * HttpUtility.cs: added some checks for null. Fixed UrlPathEncode (bug
  1866. #53670).
  1867. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  1868. * HttpUtility.cs: fixed length check. Closes bug #54201.
  1869. Thanks to Michal Moskal. Use MemoryStream instead of an ArrayList when
  1870. decoding.
  1871. 2004-02-11 Jackson Harper <[email protected]>
  1872. * TraceData.cs: Use ToString for cookie/header/var name values so
  1873. null is handled properly.
  1874. 2004-02-09 Gonzalo Paniagua Javier <[email protected]>
  1875. * HttpApplication.cs: ApplicationState is inited by the factory so,
  1876. return that value in the property. when we use the context Session,
  1877. cache it in the instance field.
  1878. * HttpApplicationFactory.cs: fixed target Type for the event when
  1879. hooking application and module events. Initialize application
  1880. and session scope objects. Fixes non-aplication events hook up.
  1881. * HttpStaticObjectsCollection.cs: added StaticItem and delay the
  1882. creation of the objects until they are requested.
  1883. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  1884. * HttpApplicationFactory.cs: fixlet for session events hook.
  1885. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  1886. * HttpApplicationFactory.cs: attach all events from Type and BaseType
  1887. at the same time. Fixes bug #53454.
  1888. 2004-01-27 Jackson Harper <[email protected]>
  1889. * HttpCachePolicy.cs: varybyparams::GetResponseHeader can return
  1890. null now, dont hadd the header if it does.
  1891. * HttpCacheVaryByParams.cs: Return null if there are no items.
  1892. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  1893. * HttpCachePolicy.cs: it's not public.
  1894. * HttpRuntime.cs: wait for requests before disposing the queue.
  1895. 2004-01-15 Jackson Harper <[email protected]>
  1896. * HttpCachePolicy.cs: Fix typo causing varyby params headers to be
  1897. created when they shouldn't be.
  1898. 2004-01-14 Jackson Harper <[email protected]>
  1899. * TraceData.cs: Fix some typos in the output text. Fix control
  1900. position when adding controls recursively.
  1901. 2004-01-14 Jackson Harper <[email protected]>
  1902. * HttpCachePolicy.cs: Expose duration and sliding properties.
  1903. 2004-01-14 Jackson Harper <[email protected]>
  1904. * HttpCachePolicy.cs: Add an event that is fired when the
  1905. cacheability is updated. The response uses this to determine
  1906. whether or not it needs to cache itself.
  1907. * HttpResponse.cs: When the cacheability is updated either create
  1908. or dispose of the cached raw response based on whether or not we
  1909. wil need it. This allows output caching to be controlled
  1910. programatically.
  1911. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  1912. * HttpContext.cs: add setter for ConfigTimeout.
  1913. * HttpException.cs: added Description property and HTML encode some
  1914. unescaped values.
  1915. * HttpRequest.cs: support request validation.
  1916. * HttpRequestValidationException.cs: added message and description.
  1917. * HttpServerUtility.cs: implemented ScriptTimeout.
  1918. 2004-01-11 Jackson Harper <[email protected]>
  1919. * TraceManager.cs: Dont crash if there is no trace config element.
  1920. 2004-01-11 Jackson Harper <[email protected]>
  1921. * HttpRequest.cs: Add property for determining if the request is
  1922. local or not.
  1923. 2004-01-10 Jackson Harper <[email protected]>
  1924. * TraceContext.cs: Handle tracing when it is enabled in the config
  1925. file but not on the page.
  1926. * TraceManager.cs: Get settings from the configuration object.
  1927. * HttpRuntime.cs: Create trace manager in the first request start
  1928. so it can get configuration settings.
  1929. 2004-01-10 Jackson Harper <[email protected]>
  1930. * TraceContext.cs: Save the request path in the trace data.
  1931. * TraceData.cs: Add RequestPath property, make some rendering
  1932. methods internal static so the TraceHandler can use them.
  1933. * TraceManager.cs: Expose trace data, add a method for clearing
  1934. trace data.
  1935. 2004-01-10 Jackson Harper <[email protected]>
  1936. * HttpRuntime.cs: Add trace manager
  1937. * TraceManager.cs: New class for handling trace configuration and
  1938. storing trace data objects.
  1939. * TraceContext.cs: Save trace data to the trace manager. Fix typo.
  1940. 2004-01-10 Jackson Harper <[email protected]>
  1941. * TraceData.cs: New class for storing trace data. Data is stored
  1942. here instead of the trace context so it can be saved and accessed
  1943. from the trace handler.
  1944. * TraceContext.cs: Save data in the TraceData object, let the
  1945. trace data object handle the rendering.
  1946. 2004-01-08 Gonzalo Paniagua Javier <[email protected]>
  1947. * HttpRequest.cs: use ContentEncoding for QueryString. Fixes bug #52577.
  1948. Thanks to Jan Jaros ([email protected]).
  1949. * HttpRequestValidationException.cs: fix comment.
  1950. 2004-01-06 Gonzalo Paniagua Javier <[email protected]>
  1951. * HttpException.cs: default to error 500. Fixes bug #52623.
  1952. 2004-01-04 Jackson Harper <[email protected]>
  1953. * TraceContext.cs: Store and render trace info times. Also render
  1954. cookie sizes. Remove debug code.
  1955. 2004-01-04 Jackson Harper <[email protected]>
  1956. * HttpResponse.cs: Set the cached response date header so it can
  1957. be updated.
  1958. * HttpResponseHeader.cs: Let values be set so we can update cached
  1959. response header values.
  1960. 2004-01-04 Jackson Harper <[email protected]>
  1961. * HttpResponse.cs: Implement RemoveOutputCacheItem.
  1962. 2004-01-04 Jackson Harper <[email protected]>
  1963. * HttpCachePolicy.cs: Add internal method to get the vary by custom string
  1964. * HttpCacheVaryByHeaders.cs: Add internal method to get the header names.
  1965. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  1966. * HttpRuntime.cs: implemented MachineConfigurationDirectory,
  1967. 2004-1-1 Alon Gazit <[email protected]>
  1968. * HttpWriter.cs: add check in Write() in order to prevent
  1969. NullReferenceException.
  1970. 2004-1-1 Alon Gazit <[email protected]>
  1971. * HttpResponse.cs: implemented ExpiresAbsolute and Expires.
  1972. 2003-12-18 Jackson Harper <[email protected]>
  1973. * TraceContext.cs: Write () methods are not warnings.
  1974. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  1975. * HttpBrowserCapabilities.cs: added GetClrVersions ().
  1976. * HttpCachePolicy.cs: added SetAllowResponseInBrowserHistory ().
  1977. * HttpContext.cs: added set_Current and RewritePath (s, s, s) for 1.1.
  1978. * HttpRequest.cs: added set_ContentType, SetPathInfo and ValidateInput.
  1979. * HttpRequestValidationException.cs: new class for 1.1
  1980. * HttpResponse.cs: added RedirectLocation.
  1981. * HttpRuntime.cs: added UnloadAppDomain.
  1982. * HttpServerUtility.cs: Execute (s, t, b) is internal for < 1.2
  1983. * HttpUtility.cs: copied UrlPathEncode from HttpServerUtility.
  1984. * HttpWorkerRequest.cs: added [ComVisible] and made the ctor public.
  1985. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  1986. * HttpContext.cs: implemented IsCustomErrorEnabled and
  1987. IsDebuggingEnabled. Added internal ErrorPage property.
  1988. * HttpRuntime.cs: on error, check if we have a custom error page enabled
  1989. to handle it and redirect.
  1990. * HttpResponse.cs: added RedirectCustomError (), which actually does
  1991. the redirection to the error page.
  1992. 2003-12-16 Jackson Harper <[email protected]>
  1993. * TraceContext.cs: Render all the data, and the stylesheet.
  1994. 2003-12-16 Jackson Harper <[email protected]>
  1995. * TraceContext.cs: Add incomplete render method.
  1996. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  1997. * CapabilitiesLoader.cs: loads browser detection and capabilities data
  1998. from browscap.ini file by Gary J. Keith.
  1999. * HttpBrowserCapabilities.cs: removed almost all TODOs.
  2000. * HttpRequest.cs: fixed Browser property.
  2001. 2003-12-15 Jackson Harper <[email protected]>
  2002. * TraceContext.cs: Initial implementation of storing data.
  2003. * HttpContext.cs: Create and expose a trace object.
  2004. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  2005. * HttpApplication.cs: ThreadAbortException is ok on Redirect.
  2006. * HttpContext.cs: added TimeoutPossible property.
  2007. * HttpResponse.cs: throw ThreadAbortException if End () is called within
  2008. a step in which is possible to timeout.
  2009. Fixes bug #51703.
  2010. 2003-12-04 Jackson Harper <[email protected]>
  2011. * HttpRequest.cs: Cleanup method.
  2012. 2003-12-04 Jackson Harper <[email protected]>
  2013. * HttpValueCollection.cs: Allow blank value names. Posting
  2014. <blank>=SomeValue is valid. And occurs if a radio button does
  2015. not have its name set.
  2016. 2003-12-03 Jackson Harper <[email protected]>
  2017. * HttpResponse.cs: Actually apply an app path modifier in
  2018. ApplyAppPathModifer and add a method to set the app path modifier.
  2019. * HttpRequest.cs: Add utility method for setting a request header.
  2020. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  2021. * HttpApplication.cs: handle FileNotFound and DirectoryNotFound
  2022. exceptions when creating the handler to generate a better error page.
  2023. * HttpException.cs: display the http_code if available. Changed all
  2024. \n by \r\n to make the hidden stack trace readable.
  2025. * StaticFileHandler.cs: don't send the real path in th eerror.
  2026. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  2027. * HttpContext.cs: updated GetConfig and GetAppConfig to new API.
  2028. * HttpResponse.cs: separate initialization of the HttpWriter, as it
  2029. tries to read configuration settings while the config. system is not
  2030. available (ie, before the first request).
  2031. * HttpRuntime.cs: delayed queueManager and response writer
  2032. initialization until the configuration system is working.
  2033. 2003-11-26 Gonzalo Paniagua Javier <[email protected]>
  2034. * HttpRuntime.cs: added request queue handling.
  2035. * QueueManager.cs: simple request queue.
  2036. * TimeoutManager.cs: added some locks to prevent the enumerator used in
  2037. CheckTimeouts to be out of synch.
  2038. 2003-11-25 Jackson Harper <[email protected]>
  2039. * HttpStaticObjectsCollection.cs: Add methods for serialization
  2040. and conversion to/from byte arrays.
  2041. 2003-11-21 Jackson Harper <[email protected]>
  2042. * HttpResponse.cs: When caching data set the content length in the
  2043. cached repsonse so that only that amount will be written back to
  2044. the client. Add method to write a range of binary data.
  2045. * HttpCacheVaryByParams.cs: Add method to retrieve param names.
  2046. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  2047. * HttpApplication.cs:
  2048. * HttpContext.cs:
  2049. * HttpRuntime.cs: add timeout handling.
  2050. * TimeoutManager.cs: new class that takes care of aborting threads on
  2051. timeout.
  2052. 2003-11-19 Jackson Harper <[email protected]>
  2053. * HttpWriter.cs: Use a constant for the buffer size so the cache
  2054. can get the buffer size. Add method to get the buffer.
  2055. * HttpResponse.cs: Methods for getting data to cache, and setting
  2056. vars from the cache.
  2057. * HttpCachePolicy.cs: Expose a pages cache expire time.
  2058. 2003-11-18 Gonzalo Paniagua Javier <[email protected]>
  2059. * HttpResponse.cs:
  2060. * HttpWriter.cs: some fixes to allow closing a response stream without
  2061. messing the rest.
  2062. 2003-11-13 Jackson Harper <[email protected]>
  2063. * HttpCachePolicy.cs: Make sure cacheability and maxage get
  2064. set. Add method to set Http response header data
  2065. * HttpCacheVaryByParams.cs: Add method to create a response header.
  2066. * HttpCacheability.cs: Add ServerAndPrivate and ServerAndNoCache.
  2067. * HttpResponse.cs: Set cache headers.
  2068. 2003-11-11 Ben Maurer <[email protected]>
  2069. * HttpModuleCollection.cs (GetKey): Recursion, again!
  2070. 2003-11-11 Ben Maurer <[email protected]>
  2071. * HttpClientCertificate.cs (ValidUntil): recursion!
  2072. 2003-11-08 Ben Maurer <[email protected]>
  2073. * SiteMapNode.cs (GetDataSourceView): Implement.
  2074. * SiteMapProvider.cs: Typo fixing.
  2075. * XmlSiteMapProvider.cs: We shouldnt resolve here.
  2076. 2003-11-08 Ben Maurer <[email protected]>
  2077. * SiteMap.cs (Init): implement a hack that doesnt need the config
  2078. stuff. Should do that later.
  2079. * SiteMapNodeCollection (OnValidate): Fix recursion.
  2080. * SiteMapProvider.cs: We dont implement some culture stuff work
  2081. around it. Fix typo.
  2082. * XmlSiteMapProvider.cs: Added.
  2083. 2003-11-07 Ben Maurer <[email protected]>
  2084. * ISiteMapProvider.cs:
  2085. * SiteMap.cs:
  2086. * SiteMapNode.cs:
  2087. * SiteMapNodeCollection.cs:
  2088. * SiteMapProvider.cs:
  2089. * SiteMapProviderCollection.cs: V2 sitemap related stuff.
  2090. 2003-11-07 Gonzalo Paniagua Javier <[email protected]>
  2091. * HttpRequest.cs: don't attempt to read more bytes than specified
  2092. content length.
  2093. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  2094. * HttpRequest.cs:
  2095. * HttpResponse.cs:
  2096. * HttpUtility.cs:
  2097. * HttpValueCollection.cs: encoding fixes/updates.
  2098. * HttpWriter.cs: when updating the encoding, flush the existing stream.
  2099. Encoding updates.
  2100. 2003-11-04 Ben Maurer <[email protected]>
  2101. * HttpContext.cs (IsCustomErrorEnabled): dont throw exception, just
  2102. return false (which makes sense, as the custom errors *arent* enabled;
  2103. ie they dont work.
  2104. * HttpResponseStream.cs: you actually can write with len = 0
  2105. 2003-11-03 Jackson Harper <[email protected]>
  2106. * HttpResponse.cs (ContentEncoding): Throw
  2107. ArgumentNullException. Patch by Yaron Shkop.
  2108. 2003-10-30 Atsushi Enomoto <[email protected]>
  2109. * HttpMultipartContentParser.cs : Quick fix for cygwin build.
  2110. CSC complains that constant char cannot be casted as byte.
  2111. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  2112. * HttpApplication.cs: added AssemblyLocation property.
  2113. 2003-10-18 Gonzalo Paniagua Javier <[email protected]>
  2114. * HttpApplicationFactory.cs: use NoParamsInvoker.
  2115. * HttpRequest.cs: support request filters.
  2116. * HttpRequestStream.cs: mono-stylized and added new Set method.
  2117. * NoParamsInvoker.cs: proxy class to invoke user-provided methods
  2118. without parameters that are invoked by EventHandlers.
  2119. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  2120. * HttpResponse.cs: Changed harcoded switch to en-US culture to a switch
  2121. to invariant culture.
  2122. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  2123. * HttpResponse.cs:
  2124. * HttpServerUtility.cs: change the response writer in Execute. Thanks
  2125. to Rich Alimi <[email protected]> for noticing this.
  2126. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  2127. * HttpApplicationFactory.cs: support for wiring up events without
  2128. parameters.
  2129. 2003-10-06 Gonzalo Paniagua Javier <[email protected]>
  2130. * HttpUtility.cs: small memory usage reduction.
  2131. 2003-10-01 Gonzalo Paniagua Javier <[email protected]>
  2132. * HttpApplication.cs: pass the Uri, not the file path to
  2133. when looking for a handler.
  2134. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  2135. * HttpRequest.cs: small fix needed when reading big POST data.
  2136. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  2137. * HttpRequest.cs: Url property: use GetLocalAddress() to get the address
  2138. (this will get the address from the request headers).
  2139. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  2140. * HttpServerUtility.cs: In Transfer(), preserve the query string if
  2141. told to do so.
  2142. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  2143. * HttpApplication.cs: ensure we do all the EndRequest steps. Don't
  2144. filter the output on error.
  2145. * HttpResponse.cs: modified DoFilter to allow bypassing filtering.
  2146. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  2147. * HttpApplication.cs: when the request is completed or an
  2148. error happens, execute all the delegates attached to EndRequest, not
  2149. only the last one. This makes xsp/test/authtest work again.
  2150. * HttpMethodNotAllowedHandler.cs: fixed description for http
  2151. status code.
  2152. 2003-08-22 Gonzalo Paniagua Javier <[email protected]>
  2153. * HttpRequest.cs: quick way of checking that the path is within the
  2154. root for the application. Thanks to Johannes for reporting.
  2155. * HttpRuntime.cs: use the status code from teh exception when it'ss a
  2156. HttpException.
  2157. * StaticFileHandler.cs: forbidden is 403.
  2158. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2159. * HttpServerUtility.cs: fixed path and query. Path by Rich Alimi
  2160. <[email protected]>.
  2161. 2003-08-19 Gonzalo Paniagua Javier <[email protected]>
  2162. * HttpException.cs: make the unhandled error more like the MS one.
  2163. * HttpRuntime.cs: set a 500 error code on unhandled exceptions.
  2164. 2003-08-19 Gonzalo Paniagua Javier <[email protected]>
  2165. * HttpResponse.cs: flush headers when the body length is 0.
  2166. * StaticFileHandler.cs: added If-Modified-Since handling patch slightly
  2167. modified from the original by Piers Haken <[email protected]>.
  2168. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  2169. * HttpResponse.cs: another patch from totte and me. This one prevents
  2170. writing output if the client have disconnected and filters the data
  2171. when there's a non-final Flush in the middle of the process.
  2172. 2003-08-12 Gonzalo Paniagua Javier <[email protected]>
  2173. * HttpApplication.cs: fixed typos. Closes bug #44197.
  2174. 2003-08-12 Gonzalo Paniagua Javier <[email protected]>
  2175. * HttpApplication.cs:
  2176. * HttpApplicationFactory.cs: fix duplicate application OnStart events.
  2177. Patch by Patrik Torstensson.
  2178. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  2179. * HttpApplicationFactory.cs: use the correct Delegate.CreateDelegate
  2180. overload. The previous one only admits static methods.
  2181. 2003-08-01 Andreas Nahr <[email protected]>
  2182. * ProcessModelInfo.cs: Fixed signature
  2183. 2003-07-30 Andreas Nahr <[email protected]>
  2184. * WebCategoryAttribute.cs: Implemented localization
  2185. * WebSysDescriptionAttribute.cs: Implemented localization
  2186. 2003-07-23 Gonzalo Paniagua Javier <[email protected]>
  2187. * HttpRuntime.cs: also clear the headers that may have been set upon
  2188. error processing the request.
  2189. 2003-07-23 Gonzalo Paniagua Javier <[email protected]>
  2190. * HttpResponseStreamProxy.cs: reformatted. Fixed infinite recursion in
  2191. Write method.
  2192. * HttpWriter.cs: flush the filter after writing.
  2193. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  2194. * HttpWriter.cs: avoid duplicating the MemoryStream byte buffer.
  2195. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  2196. * HttpContext.cs: Session doesn't have a setter.
  2197. * HttpResponse.cs: Request is private.
  2198. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  2199. * HttpRequest.cs: fixed Headers property. It was getting known headers
  2200. values instead of known headers names.
  2201. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  2202. * HttpApplication.cs: prevent nullref if an error happens before context
  2203. is set.
  2204. * HttpException.cs: small fix in the stack trace sent.
  2205. * HttpUtility.cs: the lock is not needed.
  2206. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  2207. * HttpRequest.cs: added REMOTE_PORT.
  2208. * HttpValueCollection.cs: fixed bug #45490.
  2209. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  2210. * HttpApplication.cs:
  2211. * HttpApplicationFactory.cs: fire application start and session
  2212. start/end events.
  2213. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  2214. * HttpException.cs: encode as HTML the inner exception that
  2215. is appended as a comment at the end of error pages.
  2216. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  2217. * HttpWriter.cs: don't do anything in Flush. Fixes #42249.
  2218. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  2219. * HtmlizedException.cs: added more virtual methods.
  2220. * HttpException.cs: some work on the output when there's a source
  2221. file present.
  2222. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2223. * HtmlizedException.cs: simplified to cope with the new interface.
  2224. * HttpApplicationFactory.cs: use the application file parser to get the
  2225. application Type.
  2226. * HttpException.cs: small changes. Needs some more work on
  2227. ParseExceptions.
  2228. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  2229. * HttpRequest.cs: fixed Url property.
  2230. 2003-03-24 Gonzalo Paniagua Javier <[email protected]>
  2231. * HtmlizedException.cs:
  2232. * HttpException.cs: display the correct line number in error messages.
  2233. 2003-03-22 Gonzalo Paniagua Javier <[email protected]>
  2234. * HttpCachePolicy.cs: implemented all TODOs.
  2235. * HttpRequestStream.cs: make it internal.
  2236. 2003-03-18 Gonzalo Paniagua Javier <[email protected]>
  2237. * HttpContext.cs: implemented RewritePath in other way.
  2238. * HttpRequest.cs: removed SetPhysicalPath and added SetForm.
  2239. * HttpServerUtility.cs: implemented Transfer (string, bool).
  2240. 2003-03-16 Daniel Lopez Ridruejo <daniel @ rawbyte.com>
  2241. * HttpContext.cs : Implemented RewritePath
  2242. * HttpRequest.cs : Added internal function SetPhysicalPath
  2243. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  2244. * HttpServerUtility.cs: implemented Transfer ().
  2245. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  2246. * HttpRuntime.cs: Cache no longer have a Dispose method.
  2247. * HttpServerUtility.cs: removed MonoTODO.
  2248. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  2249. * HttpHelper.cs: store the values in an ArrayList to get them in correct
  2250. order.
  2251. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  2252. * HttpApplicationFactory.cs: Global.asax takes precedence over
  2253. global.asax if it exists.
  2254. * HttpRequest.cs: use allowCrossAppMapping in MapPath.
  2255. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  2256. * HttpApplication.cs: CreateHttpHandler is now internal.
  2257. * HttpRequest.cs: allow setting QueryStringRaw, which
  2258. invalidates the data obtained from the previous value. Added internal
  2259. SetFilePath method.
  2260. * HttpServerUtility.cs: implemented Execute and GetLastError.
  2261. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  2262. * HttpServerUtility.cs: style.
  2263. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  2264. * HttpApplication.cs: only execute the EndRequest step on error
  2265. condition or request marked as completed. This prevent page events from
  2266. being called when, for example, the url authorization module forbids
  2267. the request.
  2268. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  2269. * HttpRequest.cs: implemented the indexer.
  2270. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  2271. * HtmlizedException.cs: base class for exceptions that makes it easy to
  2272. generate error pages.
  2273. * HttpException.cs: improved error displaying.
  2274. * HttpRuntime.cs: removed debugging output.
  2275. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  2276. * HttpApplication.cs: display the error instead of hanging when we get
  2277. any error before the last step of the request.
  2278. 2003-02-04 Tim Haynes <[email protected]>
  2279. * HttpApplicationFactory.cs: fixed HttpRuntime.Close() to decrement
  2280. instance counter.
  2281. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  2282. * HttpRequest.cs: added BaseVirtualDir property and use it in MapPath.
  2283. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  2284. * HttpRequest.cs: implemented CurrentExecutionFilePath.
  2285. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  2286. * HttpApplication.cs: keep _lasterror if no context. Attach
  2287. application events *after* modules initialization (if not, User is not
  2288. set when the user handler is called).
  2289. * HttpApplicationFactory.cs: made all methods related to
  2290. AttachEvents static. I will fix OnStart/OnEnd for application and
  2291. session later.
  2292. * HttpRequest.cs: don't initialize cookies twice.
  2293. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  2294. * HttpResponse.cs:
  2295. (ApplyAppPathModifiers): return the root directory for "".
  2296. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2297. * HttpUtility.cs: fixed HtmlDecode to avoid ArgumentOutOfRangeException.
  2298. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  2299. * HttpApplication.cs: added new state to handle default authentication.
  2300. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  2301. * HttpContext.cs: removed hack to get the User.
  2302. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  2303. * HttpUtility.cs: fixed bug #36038. Thanks to [email protected] for
  2304. reporting the bug and how to fix it.
  2305. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2306. * HttpCookie.cs: send 'expires' in the header.
  2307. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  2308. * HttpValueCollection.cs: patch from Botjan Vizin
  2309. <[email protected]> that implements ToString (bool).
  2310. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  2311. * HttpApplicationFactory.cs: add the context as parameter when building
  2312. the application Type.
  2313. * HttpCookie.cs: new internal constructor.
  2314. * HttpCookieCollection.cs: new internal method to make a cookie expire.
  2315. * HttpRequest.cs: MapPath fixes.
  2316. * HttpResponse.cs: implemented ApplyAppPathModifier.
  2317. * HttpRuntime.cs: fixed typo in AppDomainAppVirtualPath.
  2318. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  2319. * HttpContext.cs: hack to create a default user when there's no one.
  2320. Implemented GetConfig (string).
  2321. * HttpRequest.cs: fixes to MapPath (string).
  2322. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2323. * HttpRuntime.cs: avoid nulls and exception when getting resource
  2324. format strings.
  2325. * StaticFileHandler.cs: added file name to error message.
  2326. 2002-12-05 Gonzalo Paniagua Javier <[email protected]>
  2327. * HttpResponse.cs: avoid sending chunked content for HTTP/1.1.
  2328. 2002-12-02 Gonzalo Paniagua Javier <[email protected]>
  2329. * HttpApplicationFactory.cs: get the events from the application class,
  2330. fire Application/Session Start/End and add the others as application
  2331. events.
  2332. 2002-11-30 Gonzalo Paniagua Javier <[email protected]>
  2333. * HttpApplicationFactory.cs: compile global.asax file if it exists.
  2334. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  2335. * HttpRequest.cs: provide a default Browser until we detect it.
  2336. * HttpResponse.cs:
  2337. (End): do not close the connection here.
  2338. (Flush (bool)): send the headers when, for example, Redirect () is
  2339. called.
  2340. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2341. * HttpException.cs: simple error output.
  2342. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2343. * HttpApplication.cs: style.
  2344. * HttpException.cs: style.
  2345. * HttpRuntime.cs: only flush the response if there are no errors.
  2346. Otherwise, write an error output.
  2347. * HttpWriter.cs: change Unicode to UTF8.
  2348. 2002-11-09 Gonzalo Paniagua Javier <[email protected]>
  2349. * HttpApplication.cs: don't begin the request using ExecuteNextAsync
  2350. (it fails to work on NetServ).
  2351. * HttpWorkerRequest.cs: typo.
  2352. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  2353. * HttpValueCollection.cs: the value may contain trailing '=' as it is
  2354. UrlEncoded. Don't split name=value based on '='.
  2355. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  2356. * HttpCookie.cs: made GetCookieHeader internal.
  2357. * HttpRequest.cs: get cookies from request.
  2358. * HttpResponse.cs: send cookies. Implemented
  2359. AddFileDependencies (). Added check for _Writer == null in Flush
  2360. (Patrik ;-). Clear the content if HEAD or SupressContent == true.
  2361. Removed redirect hack used in old server.
  2362. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  2363. * HttpRequest.cs: fixed GetRawContent (). Now it only tries to read at
  2364. most ContentLength bytes.
  2365. * HttpResponse.cs: now it sends the headers. Added
  2366. X-Powered-By header :-).
  2367. * HttpRuntime.cs: fixed typo.
  2368. * HttpValueCollection.cs: cosmetic changes.
  2369. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  2370. * HttpApplication.cs: reenabled a few lines of code
  2371. (ThreadPool already fixed).
  2372. * HttpRequest.cs:
  2373. * HttpResponse.cs:
  2374. * HttpUtility.cs:
  2375. * HttpValueCollection.cs:
  2376. * HttpWriter.cs: Use WebEncoding.Encoding.
  2377. 2002-10-25 Gonzalo Paniagua Javier <[email protected]>
  2378. * HttpWriter.cs: changed encoding of the writer from Unicode to UTF8.
  2379. This fixes sending bytes and allows mixing byte with chars.
  2380. 2002-10-25 Gonzalo Paniagua Javier <[email protected]>
  2381. * HttpResponse.cs: implemented WriteFile methods.
  2382. * MimeTypes.cs: removed duplicated entries.
  2383. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  2384. * HttpResponse.cs: don't throw exception in a couple of
  2385. methods not yet implemented.
  2386. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  2387. * HttpApplication.cs: fixed type and handle factories when creating
  2388. IHttpHandler for a request.
  2389. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  2390. * HttpApplication.cs: use handlers from configuration.
  2391. * HttpContext.cs: get handlers from ConfigurationSettings.
  2392. 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
  2393. * HttpMethodNotAllowedHandler.cs:
  2394. * HttpRuntime.cs:
  2395. * StaticFileHandler.cs: Modified file.
  2396. * HttpUtility.cs: implemented all missing methods.
  2397. 2002-09-30 Gonzalo Paniagua Javier <[email protected]>
  2398. * System.Web/HttpApplication.cs: use the static file handler.
  2399. * System.Web/HttpForbiddenHandler.cs: handler to forbid access.
  2400. * System.Web/HttpMethodNotAllowedHandler.cs: handler for method not
  2401. allowed.
  2402. * System.Web/HttpUtility.cs: finished all UrlDecode methods.
  2403. * System.Web/MimeTypes.cs: map from file extension to MIME type.
  2404. * System.Web/StaticFileHandler.cs: serves static files
  2405. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  2406. * System.Web/HttpApplication.cs:
  2407. * System.Web/HttpApplicationFactory.cs:
  2408. * System.Web/HttpRequest.cs:
  2409. * System.Web/HttpRuntime.cs: we are now able to compile pages and use
  2410. HttpApplication, HttpRuntime and SimpleWorkerRequest.
  2411. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  2412. * HttpApplication.cs: added some missing methods.
  2413. * HttpApplicationFactory.cs: get event handlers for the application.
  2414. * HttpAsyncResult.cs: little fixes.
  2415. * HttpRequest.cs: make Encoding work even with no worker request.
  2416. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  2417. * HttpWorkerRequest.cs: mcs doesn't go crazy. It's just me, that forgot
  2418. to add HttpMapPath to the list file...
  2419. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  2420. * HttpWorkerRequest.cs: fixes compilation with mcs. I will add a bug
  2421. report when i get a test case.
  2422. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  2423. * HttpApplicationFactory.cs:
  2424. * HttpCachePolicy.cs:
  2425. * HttpResponseHeader.cs:
  2426. * HttpResponseStream.cs:
  2427. * HttpResponseStreamProxy.cs:
  2428. * HttpValueCollection.cs: misc. fixes based on class status page.
  2429. * IHttpMapPath.cs: New file.
  2430. * HttpRequest.cs: implemented ContentEncoding.
  2431. * HttpWorkerRequest.cs: mono-stylized and implemented
  2432. SendResponseFromMemory.
  2433. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  2434. * HttpContext.cs: reformatted.
  2435. * HttpStaticObjectsCollection.cs: implemented GetEnumertor, CopyTo and
  2436. the indexer.
  2437. 2002-08-05 Patrik Torstensson <[email protected]>
  2438. * HttpApplication.cs: Implemented a state machine to allow handling of
  2439. HttpModules and HttpHandlers. Implementation of async handlers.
  2440. * HttpApplicationFactory.cs: Factory for creating HttpApplication
  2441. instances, including caching.
  2442. * HttpRuntime.cs: Usage of the new HttpApplicationFactory to get a
  2443. application instance to execute requests in and implementation of
  2444. request execution (still no request queue).
  2445. * HttpAsyncResult.cs: New file to handle async module results.
  2446. * HttpRequest.cs: Change signature of Dispose
  2447. * HttpResponse.cs: new internal method allowing filtering to happen
  2448. during the request flow in the state machine.
  2449. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  2450. * HttpApplication.cs: events were not being initialized.
  2451. 2002-07-25 Gonzalo Paniagua Javier <[email protected]>
  2452. * ProcessModelInfo.cs: fixed compilation.
  2453. 2002-07-25 Tim Coleman <[email protected]>
  2454. * ProcessModelInfo.cs:
  2455. New class added
  2456. * HttpParseException.cs:
  2457. * HttpCompileException.cs:
  2458. * HttpUnhandledException.cs:
  2459. Internal constructors added to these
  2460. 2002-07-24 Tim Coleman <[email protected]>
  2461. * ProcessInfo.cs:
  2462. Fix constructor, reference to shutdownreason.
  2463. 2002-07-24 Tim Coleman <[email protected]>
  2464. * HttpCachePolicy.cs:
  2465. Added stubbs to this class.
  2466. * HttpCacheability.cs:
  2467. * HttpCacheRevalidation.cs:
  2468. * HttpValidationStatus.cs:
  2469. * ProcessShutdownReason.cs:
  2470. * ProcessStatus.cs:
  2471. * TraceMode.cs:
  2472. Reorder the enumerations (and in some cases make
  2473. one-based) in order to agree with the .NET
  2474. implementation, based on the class status page.
  2475. * ProcessInfo.cs:
  2476. Implementation of this class.
  2477. 2002-07-23 Tim Coleman <[email protected]>
  2478. * HttpCompileException.cs:
  2479. * HttpParseException.cs:
  2480. * HttpUnhandledException.cs:
  2481. New stubbs created.
  2482. * HttpApplication.cs:
  2483. * HttpBrowserCapabilities.cs:
  2484. Added missing methods stubbs and attributes based
  2485. on the class status page. Also reformatted some
  2486. source for consistency.
  2487. 2002-07-23 Tim Coleman <[email protected]>
  2488. * HttpUtility.cs: Moved entities hashtable into main
  2489. class as a static object, so we don't instantiate
  2490. a new one every time. Also put the hashtable
  2491. building into a lock block.
  2492. 2002-07-22 Tim Coleman <[email protected]>
  2493. * HttpUtility.cs: Cleanup of the code, implementation
  2494. of HtmlDecode/HtmlEncode functions
  2495. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  2496. * HttpResponse.cs: quick&dirty hack to make redirection work. Should
  2497. be out of there once we have SimpleWorkerRequest.
  2498. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  2499. * HttpUtility.cs: little typo, big headache.
  2500. 2002-07-10 Gonzalo Paniagua Javier <[email protected]>
  2501. * HttpRuntime.cs: don't throw NotImplemented in a couple of methods.
  2502. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  2503. * System.Web/HttpResponse.cs:
  2504. Fixes based on class status page:
  2505. - Add attributes (DefaultEvent, ParseChildren).
  2506. - Fix declarations.
  2507. - Explicitly implement some interfaces (IPostBackDataHandler
  2508. and IPostBackEventHandler).
  2509. - Implemented some missing methods.
  2510. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  2511. * HttpContext.cs:
  2512. (Session): return null instead of throwing an exception.
  2513. * HttpRequest.cs:
  2514. (HttpMethod): return RequestType if not set.
  2515. (GetRawContent): return QueryString if we don't have a
  2516. HttpWorkerRequest.
  2517. * HttpUtility.cs: fixed Decode and Encode.
  2518. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  2519. * HttpApplication.cs:
  2520. * HttpContext.cs: added System.Web.SessionState namespace.
  2521. * HttpSessionState.cs: removed. It is under
  2522. System.Web.SessionState.
  2523. 2002-06-10 Duncan Mak <[email protected]>
  2524. * HttpBrowserCapabilities.cs (BackgroundSounds): Fixed typo.
  2525. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  2526. * HttpRequest.cs: implemented Browser property.
  2527. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  2528. * HttpBrowserCapabilities.cs: stubbed out.
  2529. 2002-05-18 Miguel de Icaza <[email protected]>
  2530. * HttpRuntime.cs: Reformat file.
  2531. 2002-05-07 Duncan Mak <[email protected]>
  2532. * HttpBrowserCapabilities.cs: Added, replacing
  2533. HttpBrowserCapabilites because of typo.
  2534. * HttpBrowserCapabilites.cs: Removed, replaced by above.
  2535. * HttpRequest.cs (Browser): Fixed typo.
  2536. 2002-04-12 Patrik Torstensson <[email protected]>
  2537. * HttpApplication.cs: Minor updates
  2538. * HttpApplicationState.cs: Ready.
  2539. * HttpClientCertificate.cs: Signature updates
  2540. * HttpValueCollection.cs: ready
  2541. * HttpStaticObjectsCollection.cs: ready
  2542. * HttpResponseHeader.cs: made internal only
  2543. * HttpResponse.cs: Signature updates
  2544. * HttpPostedFile.cs: ready
  2545. * HttpCacheVaryByHeaders.cs: ready (except communication to policy)
  2546. * HttpCacheVaryByParams.cs: ready (except communication to policy)
  2547. System.Web is now over 60% ready..
  2548. 2002-04-11 Patrik Torstensson <[email protected]>
  2549. * HttpException.cs: 95% ready, only windows dependent code left
  2550. * HttpFileCollection.cs: Finished.
  2551. * HttpRequest.cs: Minor fixes and fixed signature problems
  2552. * HttpResponse.cs: Implementation of missing methods and signature problems
  2553. * HttpResponseHeader.cs: Fixed signature problems
  2554. * HttpRuntime.cs: Fixed signature problems
  2555. * HttpServerUtility.cs: Added support for HttpApplication
  2556. * HttpSessionState.cs: Fixed signature issues
  2557. * HttpUtility.cs: fixed signature issues
  2558. * HttpValueCollection.cs: Support for cookie parsing and fixed signature issues
  2559. * HttpWorkerRequest.cs: Fixed small signature issue
  2560. * HttpWriter.cs: Fixed signature issue
  2561. * HttpApplication.cs: Basic implementation
  2562. * HttpApplicationState.cs: Small fixes to support major change comming up
  2563. * HttpBrowserCapabilities.cs: Added Type method
  2564. * HttpClientCertificate.cs: Almost ready, needs to parse certificate.
  2565. * HttpContext.cs: Fixed signature issues and added last methods.
  2566. * HttpCookie.cs: Full implementation
  2567. * HttpCookieCollection.cs: Full implementation
  2568. * TraceContext.cs: Methods implemented.
  2569. * HttpPostedFile.cs: Placeholder
  2570. * HttpStaticObjectsCollection.cs: Placeholder
  2571. * HttpModuleCollection.cs: Ready, will be used during the major revamp.
  2572. * Fixed a number of other small signature problems also (class status page)
  2573. 2002-04-10 Patrik Torstensson <[email protected]>
  2574. * HttpWorkerRequest.EndOfSendNotification.cs Removed (included in WorkerRequest)
  2575. * Checkin of all new files (noted in last changenote)
  2576. 2002-04-10 Patrik Torstensson <[email protected]>
  2577. * HttpContext.cs: First implementation (basic support, few methods left to impl)
  2578. * HttpException.cs: Partial implementation (basic support)
  2579. * HttpHelper.cs: Header parse helper, used by runtime (non public)
  2580. * HttpRequest.cs: Implementation (all methods there, not all fully impl)
  2581. * HttpRequestStream.cs: Full implementation
  2582. * HttpResponse.cs: Partial implementation(almost all methods)
  2583. * HttpResponseHeader.cs: Header helper
  2584. * HttpResponseStream.cs: Full implementation - Response stream support
  2585. * HttpResponseStreamProxy.cs: Implementation - filter support
  2586. * HttpRuntime.cs: Rewrite to support one IHttpModule (use for testing the runtime)
  2587. * HttpServerUtility.cs: Implemented usage of HttpContext for methods
  2588. and moved encoding functions to HttpUtility.
  2589. * HttpUtility.cs: Added encoding/decoding functions from HttpServerUtility and
  2590. added the Attribute encoding functions.
  2591. * HttpValueCollection.cs: Implementation.
  2592. * HttpWorkerRequest.cs: Rewrite and implementation of all methods (ready)
  2593. * HttpWriter.cs: Implementation (with filter support)
  2594. * HttpFileCollection: Added dummy class (placeholder)
  2595. * HttpApplication.cs: Added dummy class (placeholder)
  2596. * HttpApplicationState.cs: Added dummy class (placeholder)
  2597. * HttpBrowserCapabilities.cs: Added dummy class (placeholder)
  2598. * HtttpCachePolicy.cs: Added dummy class (placeholder)
  2599. * HttpClientCertificate.cs: Added dummy class (placeholder)
  2600. * HttpSessionState.cs: Added dummy class (placeholder)
  2601. * TraceContext.cs: Added dummy class (placeholder)
  2602. 2002/04/10 Nick Drochak <[email protected]>
  2603. * HttpServerUtility.cs: Fix build breaker.
  2604. 2002-03-28 Wictor Wiln <[email protected]>
  2605. * HttpServerUtils.cs : Added some more functionality
  2606. 2002-03-28 Martin Baulig <[email protected]>
  2607. * HttpServerUtils.cs (UrlDecode): You cannot implicitly cast a
  2608. char to a string, use ToString() instead.
  2609. 2002-03-16 Gaurav Vaish <[email protected]>
  2610. * WebCategoryAttribute.cs
  2611. : Added private attribute.
  2612. 2002-03-16 Gaurav Vaish <[email protected]>
  2613. * HttpRuntime.cs : Stubbed methods for
  2614. FormatStringResource(...) in agreement with the various
  2615. overloads available at String.Format(...)
  2616. 2002-01-08 Gaurav Vaish <[email protected]>
  2617. * TODOAttribute.cs : Added, as an internal class to the assembly
  2618. 2002-01-03 Nick Drochak <[email protected]>
  2619. * HttpRuntime.cs: remove uneeded exception variable from catch and
  2620. initialize remaining instance members to avoid compile warnings
  2621. 2002-01-02 Nick Drochak <[email protected]>
  2622. * HttpRuntime.cs: fix spelling error/variable name change.
  2623. 2001-12-18 Gaurav Vaish <[email protected]>
  2624. * HttpRuntime.cs : Initial implementation
  2625. 2001-08-29 Bob Smith <[email protected]>
  2626. * HttpWorkerRequest.cs: Partial Implementation.
  2627. 2001-08-16 Bob Smith <[email protected]>
  2628. * HttpCookieCollection.cs, HttpCookie.cs: Bug fixes.
  2629. 2001-08-09 Bob Smith <[email protected]>
  2630. * BeginEventHandler.cs: Implemented.
  2631. * EndEventHandler.cs: Implemented.
  2632. * HttpCacheability.cs: Implemented.
  2633. * HttpCacheRevalidation.cs: Implemented.
  2634. * HttpCacheValidateHandler.cs: Implemented.
  2635. * HttpCookieCollection.cs: Implemented.
  2636. * HttpCookie.cs: Implemented.
  2637. * HttpValidationStatus.cs: Implemented.
  2638. * HttpWorkerRequest.EndOfSendNotification.cs: Implemented.
  2639. * IHttpAsyncHandler.cs: Implemented.
  2640. * IHttpHandler.cs: Implemented.
  2641. * IHttpHandlerFactory.cs: Implemented.
  2642. * IHttpModule.cs: Implemented.
  2643. * ProcessShutdownReason.cs: Implemented.
  2644. * ProcessStatus.cs: Implemented.
  2645. * TraceMode.cs: Implemented.