ChangeLog 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. 2007-03-13 Marek Habersack <[email protected]>
  2. * AppResourceFilesCollection.cs: added separate constructor for
  3. local resources handling.
  4. * TemplateControlCompiler.cs: request the local resource object
  5. with proper virtual path.
  6. * BaseCompiler.cs: added code to assing AppRelativeVirtualPath
  7. property in the page/control constructor.
  8. * AppResourcesCompiler.cs: does not require specifying manually
  9. whether it's a global or local resource compiler anymore. New
  10. constructors take care of that.
  11. Changed to compile local resources on demand, when a control/page
  12. is parsed.
  13. 2007-03-12 Marek Habersack <[email protected]>
  14. * AspParser.cs: revert r73587 as it breaks more than it fixes.
  15. * AspComponentFoundry.cs: try to register foundries from App_Code
  16. assemblies if tag prefix and its namespace are defined. Fixes bug
  17. #78797.
  18. * BuildManager.cs, BaseCompiler.cs: CodeAssemblies is a collection
  19. of Assembly instances, not strings.
  20. * CachingCompiler.cs: make sure items in the CodeAssemblies and
  21. TopLevelAssemblies are really instances of the Assembly class
  22. before trying to use them.
  23. CodeAssemblies is a collection of Assembly instances, not
  24. strings.
  25. * AppCodeCompiler.cs: on MS.NET CodeAssemblies is a collection of
  26. assemblies, not paths to assemblies.
  27. 2007-03-10 Marek Habersack <[email protected]>
  28. * PageCompiler.cs, BaseCompiler.cs: refactoring: moved the
  29. CreateProfileProperty and InternalCreatePageProperty to
  30. BaseCompiler from PageCompiler.
  31. * GlobalAsaxCompiler.cs: generate the Profile property for the
  32. Global_asax class.
  33. 2007-03-09 Marek Habersack <[email protected]>
  34. * AppCodeCompiler.cs: Add the GetProfile method to the
  35. ProfileCommon auto-generated class.
  36. * AppResourcesCompiler.cs: attempt to load the resource file
  37. earlier in the process, to gracefully handle empty files.
  38. * ThemeDirectoryCompiler.cs: make compiled themes depend on the
  39. .skin and .css files composing the theme.
  40. 2007-03-05 Marek Habersack <[email protected]>
  41. * PageThemeCompiler.cs: Use correct theme path for
  42. AppRelativeTemplateSourceDirectory.
  43. Do not process builders of type CodeRenderBuilder.
  44. Make sure builder.ControlType is not null before depending on it.
  45. * ThemeDirectoryCompiler.cs: theme parser should be passed the
  46. virtual directory of the theme.
  47. 2007-03-03 Marek Habersack <[email protected]>
  48. * PageCompiler.cs: Added support for setting the
  49. MaintainScrollPositionOnPostBack property if the corresponding
  50. page directive attribute is found.
  51. * Directive.cs: added the MaintainScrollPositionOnPostBack and
  52. LinePragmas directives.
  53. 2007-03-02 Marek Habersack <[email protected]>
  54. * AppCodeCompiler.cs: Correctly process App_Code directories which
  55. have no compilable files in the top-level directory. Fixes bug
  56. #80998.
  57. Write preservation files for the App_Code assemblies.
  58. 2007-03-01 Marek Habersack <[email protected]>
  59. * AspParser.cs: fix GetVerbatim for cases when the end is
  60. e.g. --> or --%> and the string matched is ---> or ---%>
  61. respectively. The new code always backs out to make sure the end is
  62. matched correctly.
  63. 2007-02-27 Marek Habersack <[email protected]>
  64. * TemplateControlCompiler.cs: ParseExpression returns an object,
  65. don't assume any concrete type.
  66. Use the current culture when converting the expression to a
  67. string.
  68. * ConnectionStringsExpressionBuilder.cs: Implement support for
  69. expressions of the <%$ ConnectionStrings:StringName %> form
  70. 2007-02-19 Marek Habersack <[email protected]>
  71. * ResourceExpressionBuilder.cs: Do not prepend the .Resources prefix here
  72. 2007-02-16 Marek Habersack <[email protected]>
  73. * CachingCompiler.cs, BaseCompiler.cs: Make sure that no assembly
  74. is referenced twice by the compiler(s).
  75. * TemplateControlCompiler.cs: Fix the problem with cultures which
  76. have a comma as their decimal separator and font/whatever
  77. units. New code does not reparse the text representation of the
  78. unit on the runtime (e.g. 0.9em) but instead it constructs the
  79. property using the FontUnit/Unit constructors which take,
  80. respectively, Unit and double/unittype parameters. This avoids
  81. culture-specific parsing.
  82. Also fix converting from invariant strings in a culture-aware
  83. environment (e.g. in a page that uses Culture="auto") during the
  84. page parsing phase.
  85. 2007-02-12 Marek Habersack <[email protected]>
  86. * PreservationFile.cs: Support preservation (assembly mapping)
  87. files (the ones with .compiled extension in the ASP.NET temporary
  88. directory). This one implements a loader/saver class.
  89. * AppResourcesCompiler.cs: support for assembly name mapping.
  90. * AppCodeCompiler.cs: support for assembly name mapping.
  91. 2007-02-08 Marek Habersack <[email protected]>
  92. * TemplateControlCompiler.cs: Fix TemplateSourceDirectory.
  93. * AspComponentFoundry.cs: Avoid duplicate control registration
  94. exception.
  95. * ResourceExpressionBuilder.cs: Make sure all the global resources
  96. are looked up using the "Resources." prefix.
  97. * AppResourcesCompiler.cs: Make sure all the global resources are
  98. embedded with the "Resources." prefix.
  99. 2007-02-02 Marek Habersack <[email protected]>
  100. * AspGenerator.cs: Move the cache insert code to a separate method, for
  101. use from other places.
  102. * AspComponentFoundry.cs: Register controls mentioned in web.config, but
  103. defer their compilation to the moment when they are actually requested.
  104. 2007-01-22 Marek Habersack <[email protected]>
  105. * ThemeDirectoryCompiler.cs: Make sure the code works for empty themes.
  106. 2007-01-20 Miguel de Icaza <[email protected]>
  107. * ClientBuildManager.cs: Remove unused variable (this could be a
  108. real problem, we never use the appPhysicalTargetDir)
  109. * AssemblyBuilder.cs: Remove unused field.
  110. * AppResourceFilesCollection.cs: Remove unused field.
  111. * TemplateControlCompiler.cs (GetExpressionFromString): Remove
  112. unused variable.
  113. * AppResourcesCompiler.cs: Remove unused variable.
  114. * AppSettingsExpressionBuilder.cs (GetAppSetting): remove unused
  115. parameter.
  116. * PageCompiler.cs: Put InternalCreatePageProperty inside the
  117. NET_2_0 block to eliminate warnings.
  118. 2007-01-20 Gert Driesen <[email protected]>
  119. * BaseCompiler.cs: Fixed build on 1.0 profile.
  120. 2007-01-20 Marek Habersack <[email protected]>
  121. * BaseCompiler.cs: If the control base type is in the root
  122. namespace, make sure global:: is prepended to it.
  123. * TemplateControlCompiler.cs: AutoHandlers is obsolete in 2.0,
  124. mark it as such in the generated code as well.
  125. * AppCodeCompiler.cs: Include debug information if configured in
  126. web.config. Fixes bug #80096.
  127. 2007-01-17 Marek Habersack <[email protected]>
  128. * AppCodeCompiler.cs: Reference toplevel assemblies (at this stage
  129. App_GlobalResources) when compiling App_Code sources.
  130. * CachingCompiler.cs: Reference toplevel assemblies when compiling
  131. e.g. Global.asax
  132. * AppResourcesCompiler.cs: Close the streams properly.
  133. * AspGenerator.cs: Don't ignore thead/tbody anymore.
  134. 2007-01-15 Marek Habersack <[email protected]>
  135. * WsdlBuildProvider.cs: New build provider for WSDL files.
  136. Compile only when System.Web.Services are present.
  137. * TemplateControlCompiler.cs: Forgotten in the previous commit -
  138. don't pass the current culture to GetLocalResourceObject, let the
  139. method figure it out on its own.
  140. 2007-01-05 Marek Habersack <[email protected]>
  141. * AppResourceFilesCollection.cs: new class to keep and manage
  142. collection of resource files for the App_{Global,Local}Resources
  143. folders.
  144. * TemplateControlCompiler.cs: rely on
  145. HttpContext.GetLocalResourceObject to select the correct culture.
  146. * AppResourceFileInfo.cs: new class for keeping resource files
  147. information.
  148. * AppResourcesCompiler.cs: new implementation.
  149. 2006-12-20 Marek Habersack <[email protected]>
  150. * AssemblyBuilder.cs: add an internal version of the
  151. AddCodeCompileUnit method.
  152. * AppCodeCompiler.cs: implement support for ProfileCommon
  153. generation from properties named in the <profile> element in
  154. Web.config.
  155. * PageCompiler.cs: create the Profile property in 2.0 code.
  156. 2006-12-12 Vladimir Krasnov <[email protected]>
  157. * ThemeDirectoryCompiler.jvm.cs: fixed virtual path for themes
  158. 2006-12-10 Igor Zelmanovich <[email protected]>
  159. * ThemeDirectoryCompiler.cs: refactoring.
  160. 2006-11-28 Marek Habersack <[email protected]>
  161. * BuildManager.cs: Add an internal property to signal whether or
  162. not we have any resources from App_{Global,Local}Resources
  163. * AspGenerator.cs: Register controls from
  164. system.web/pages/controls collection before parsing.
  165. * AppResourcesCompiler.cs: Let the build process know if we have
  166. compiled any resources from App_{Global,Local}Resources
  167. 2006-11-27 Marek Habersack <[email protected]>
  168. * CachingCompiler.cs: Automatically reference App_Code
  169. assemblies.
  170. * AppCodeCompiler.cs: Add ~/bin/*.dll to the referenced assemblies
  171. when compiling.
  172. 2006-11-25 Marek Habersack <[email protected]>
  173. * AppResourcesCompiler.cs: small optimizations.
  174. * AppResourceFilesCompiler.cs: small optimizations.
  175. 2006-11-21 Gonzalo Paniagua Javier <[email protected]>
  176. * WebServiceCompiler.cs: add the type to the cache after getting it
  177. from the compiled assembly.
  178. 2006-11-20 Marek Habersack <[email protected]>
  179. * AppCodeCompiler.cs: Reference assemblies listed in
  180. system.web/compilation/assemblies.
  181. Don't create empty assemblies.
  182. 2006-11-19 Igor Zelmanovich <[email protected]>
  183. * TemplateControlCompiler.cs: fixed:
  184. When <%# Bind(...) %>-expression is used more then once for same control
  185. The variable associated with this control is declared only once.
  186. 2006-11-18 Marek Habersack <[email protected]>
  187. * AppResourceFilesCompiler.cs: Fixed an exception thrown when
  188. files with names like File.resources or File.resx are found in the
  189. resource directories.
  190. 2006-11-16 Marek Habersack <[email protected]>
  191. * ForceCopyBuildProvider.cs: Added the build provider for
  192. copy-only files.
  193. * MasterPageBuildProvider.cs: Added the build provider for Master
  194. Pages.
  195. * IgnoreFileBuildProvider.cs: Make the class sealed.
  196. * AppCodeCompiler.cs: Fixed BuildProvider creation for a path. Now
  197. correctly uses the BuildProviderCollection to retrieve the
  198. appropriate builder and maps the physical input file path into
  199. application relative path when setting the virtual path of the
  200. build provider.
  201. 2006-11-13 Marek Habersack <[email protected]>
  202. * AssemblyBuilder.cs: Added referenced assemblies support. Added a
  203. constructor with just the CodeDomProvider argument. CreateCodeFile
  204. now uses the code provider's file extension. Added internal method
  205. to add pre-generated source code files. Added a BuildAssembly
  206. overload that takes no virtual path as the
  207. parameter. BuildAssembly now uses an array of source files instead
  208. of compile units and also handles embedded resources and
  209. referenced assemblies. BuildAssembly deletes the temporary files
  210. if MONO_ASPNET_NODELET isn't set in the environment.
  211. * AppCodeCompiler.cs: Use the FileUtils methods for temporary file
  212. creation. Use the build providers collection to build unknown
  213. files in App_Code. Use AssemblyBuilder to compile the assembly.
  214. * AppResourceFilesCompiler.cs: Use the FileUtils methods for
  215. temporary file creation.
  216. * WebHandlerBuildProvider.cs: Added the BuildProviderAppliesTo
  217. attribute.
  218. * UserControlBuildProvider.cs: Added the BuildProviderAppliesTo
  219. attribute.
  220. * PageBuildProvider.cs: Added the BuildProviderAppliesTo
  221. attribute.
  222. * WebServiceBuildProvider.cs: Added the BuildProviderAppliesTo
  223. attribute.
  224. * IgnoreFileBuildProvider.cs: Added the BuildProviderAppliesTo
  225. attribute.
  226. 2006-11-08 Marek Habersack <[email protected]>
  227. * BuildProvider.cs: Implemented the GetCustomString
  228. method. Removed the necessity to retrieve the CompilationSection
  229. twice when GetDefaultCompilerType is called.
  230. * AppResourcesCompiler.cs: Added resource compiler results
  231. handling.
  232. * AppCodeCompiler.cs: The App_Code compiler classes
  233. * BuildManager.cs: Implement the CodeAssemblies property.
  234. Added an internal TopLevelTypes property to be used in the custom
  235. GetType methods. Implemented the GetCompiledCustomString method.
  236. Implemented the GetType method overloads. Implemented the
  237. GetVirtualPathDependencies method.
  238. * BaseCompiler.cs: Reference the assemblies from App_Code, if any
  239. 2006-10-18 Marek Habersack <[email protected]>
  240. * TemplateControlCompiler.cs: add support for resource
  241. expressions in tag attributes.
  242. * ResourceExpressionBuilder.cs: add support for resource
  243. expressions in tag attributes.
  244. * BaseCompiler.cs: add global/local resource assemblies to
  245. compilation references, if present.
  246. * AppResourcesCompiler.cs: global/local resources compiler.
  247. * AppResourceFilesCompiler.cs: compiler of resource files.
  248. 2006-10-03 Igor Zelmanovich <[email protected]>
  249. * TemplateControlCompiler.cs: fixed: Bind functions (Data-Binding Syntax).
  250. At run time, the Bind method calls the Eval method, if there is DataItem
  251. != null to bind to.
  252. If there is DataItem == null (like InsertItemTemplate in FormView) Bind
  253. method don't raise exception and works properly to extract data from
  254. bounded controls on postback.
  255. 2006-09-20 Gonzalo Paniagua Javier <[email protected]>
  256. * AspGenerator.cs: if we are tracking non-server tags for
  257. well-formedness, handle tags that do not need to be closed (br, img,...)
  258. Fixes bug #79437.
  259. 2006-09-18 Gonzalo Paniagua Javier <[email protected]>
  260. * PageCompiler.cs: support the EnableEventValidation attribute.
  261. 2006-09-08 Gonzalo Paniagua Javier <[email protected]>
  262. * AspGenerator.cs: after parsing an include file, don't error out if we
  263. still have opened tags unless this was the last file to parse. Fixes
  264. bug #79318.
  265. 2006-09-05 Konstantin Triger <[email protected]>
  266. * ParseException.cs: Ensure the source file stream is closed.
  267. 2006-08-25 Kornél Pál <[email protected]>
  268. * AppSettingsExpressionBuilder.cs: Use assembly name constants.
  269. * ConnectionStringsExpressionBuilder.cs: Use name reference
  270. constants.
  271. * ResourceExpressionBuilder.cs: Use assembly name constants.
  272. 2006-08-20 Vladimir Krasnov <[email protected]>
  273. * ThemeDirectoryCompiler.jvm.cs: implemented GetCompiledInstance
  274. 2006-08-10 Gonzalo Paniagua Javier <[email protected]>
  275. * ClientBuildManager.cs: handle domain shutdown and unload.
  276. Implemented some properties. Commented.
  277. 2006-08-10 Andrew Skiba <[email protected]>
  278. * ThemeDirectoryCompiler.cs: render css path as a virtual path.
  279. 2006-08-08 Vladimir Krasnov <[email protected]>
  280. * added ThemeDirectoryCompiler.jvm.cs
  281. 2006-07-28 Gonzalo Paniagua Javier <[email protected]>
  282. * PageThemeCompiler.cs: Don't generate a 'Items.Clear ()' call if
  283. the property Items does not exist. Patch by Marek Habersack that fixes
  284. bug #78971.
  285. 2006-07-28 Gonzalo Paniagua Javier <[email protected]>
  286. * TemplateControlCompiler.cs: support assigning nullable types.
  287. Patch by Marek Habersack that fixes bug #78970.
  288. 2006-07-13 Gonzalo Paniagua Javier <[email protected]>
  289. * TemplateControlCompiler.cs: make password work again.
  290. 2006-06-21 Juraj Skripsky <[email protected]>
  291. * AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):
  292. MS.NET handles nested quotes differently for server controls and
  293. for "normal" controls. Add a property "AlternatingQuotes" to the
  294. tokenizer and let the parser decide whether it is well-formed or not.
  295. 2006-06-20 Andrew Skiba <[email protected]>
  296. * PageThemeCompiler.cs, TemplateControlCompiler.cs: take care of
  297. UrlPropertyAttribute.
  298. 2006-06-18 Andrew Skiba <[email protected]>
  299. * TemplateControlCompiler.cs: check IsWritablePropertyOrField before
  300. generating code for assignment statement and DataBind event.
  301. 2006-06-15 Juraj Skripsky <[email protected]>
  302. * AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):
  303. Don't allow an attribute value to contain the same quote characters
  304. as the ones used for delimiting the value itself. Add a token
  305. NOTWELLFORMED to signal that case to AspParser. Fixes bug #78643.
  306. 2006-06-08 Konstantin Triger <[email protected]>
  307. * ThemeDirectoryCompiler.cs: use physical path instead of virtual path.
  308. 2006-04-24 Andrew Skiba <[email protected]>
  309. * ThemeDirectoryCompiler.cs: use UrlUtils.Combine to combine pathes
  310. 2006-04-23 Andrew Skiba <[email protected]>
  311. * PageThemeCompiler.cs: initialize __linkedStyleSheets field with the
  312. array of style sheets from the parser
  313. * ThemeDirectoryCompiler.cs: scan *.css files in theme directory and
  314. put them in LinkedStyleSheets of PageThemeParser
  315. 2006-04-20 Chris Toshok <[email protected]>
  316. * BaseCompiler.cs: for 2.0, emit the correct namespace and class
  317. names in the case where you use "NS.ClassName" in the Inherits
  318. attribute. Fixes bug #78135.
  319. 2006-04-20 Gonzalo Paniagua Javier <[email protected]>
  320. * CachingCompiler.cs: no need to play the Wait/PulseAll game, as we
  321. already acquired the lock even when we might have not created the 'key'
  322. to the compilation ticket.
  323. 2006-04-16 Andrew Skiba <[email protected]>
  324. * ThemeDirectoryCompiler.cs: add to the directory parser all the
  325. assemblies found by PageThemeFileParsers
  326. 2006-04-12 Lluis Sanchez Gual <[email protected]>
  327. * TemplateControlCompiler.cs: Properly read all content of
  328. string properties.
  329. 2006-04-11 Andrew Skiba <[email protected]>
  330. * TemplateControlCompiler.cs : fix for partial parsers
  331. 2006-04-11 Andrew Skiba <[email protected]>
  332. * ThemeDirectoryCompiler.cs : map the virtual path to the physical
  333. path
  334. 2006-04-08 Miguel de Icaza <[email protected]>
  335. * TemplateControlCompiler.cs: An attempt to fix the regression
  336. introduced in r58505 (a bug fix for 77762). This was reported in
  337. the mailing list with a batch of new 2.0 failures.
  338. We really need a test suite in NUnit to check on ASP.NET aspx
  339. changes.
  340. 2006-03-27 Robert Jordan <[email protected]>
  341. * CachingCompiler.cs: change the compilation locking scheme
  342. from "one mcs per process" to "one mcs per file".
  343. 2006-03-24 Gonzalo Paniagua Javier <[email protected]>
  344. * System.Web.Compilation/TemplateControlCompiler.cs: handle the new
  345. StringPropertyBuilder.
  346. 2006-03-24 Chris Toshok <[email protected]>
  347. * BaseCompiler.cs (GetCompiledType): fall back to CodeDomProvider
  348. if system.web/compilation doesn't list a compiler for our
  349. language.
  350. 2006-03-13 Chris Toshok <[email protected]>
  351. * TemplateControlCompiler.cs (InitMethod): when generating the
  352. call to ApplyStyleSheetSkin, don't just blindly pass "this" as the
  353. argument to it. Only do that if the class we're compiling is
  354. actually a subclass of Page. If it's not, pass this.Page.
  355. 2006-03-07 Chris Toshok <[email protected]>
  356. * AspGenerator.cs: refactor the parsing code so that we can
  357. initiate parsing from outside this class.
  358. * PageCompiler.cs (PrependStatementsToFrameworkInitialize): new
  359. method, add our StyleSheetTheme assignment here.
  360. (AppendStatementsToFrameworkInitialize): rename AddStatements* to
  361. this.
  362. * TemplateControlCompiler.cs (EnsureID): make protected.
  363. (CreateAssignStatementsFromAttributes): same
  364. (AddChildCall): same.
  365. (CreateControlTree): same.
  366. (CreateFrameworkInitializeMethod): change
  367. "AddStatementsToFrameworkInitialize" to
  368. "AppendStatementsToFrameworkInitialize", and add call to
  369. "PrependStatementsToFrameworkInitialize" before the generation of
  370. "base.FrameworkInitialize()."
  371. * PageThemeCompiler.cs (CreateControlSkinMethod): remove spew.
  372. 2006-03-07 Chris Toshok <[email protected]>
  373. * ThemeDirectoryCompiler.cs: new file.
  374. * PageThemeCompiler.cs: new file.
  375. 2006-03-07 Chris Toshok <[email protected]>
  376. * BaseCompiler.cs: fix typo in "initialize" in multiple places.
  377. (Init): move the CreateMethods call here.
  378. 2006-03-02 Chris Toshok <[email protected]>
  379. * TemplateControlCompiler.cs (InitMethod): emit an assignment for
  380. SkinID just after the creation of our object, and right after that
  381. call "_ctrl.ApplyStyleSheetSkin (page)".
  382. (CreateAssignStatementsFromAttributes): split out the majority of
  383. this code to CreateAssignStatementFromAttribute, and change this
  384. method to simply a loop over the attribute keys. In the 2.0 case,
  385. skip the SkinID property, since that's handled explicitly in
  386. InitMethod.
  387. * PageCompiler.cs (AddStatementsToInitMethod): emit assignments
  388. for Theme and StyleSheetTheme.
  389. 2006-02-23 Chris Toshok <[email protected]>
  390. * TemplateControlCompiler.cs (AddContentTemplateInvocation): track
  391. change from ContentControlBuilderInternal to
  392. ContentBuilderInternal.
  393. (AddCodeRender): same.
  394. 2006-02-16 Gonzalo Paniagua Javier <[email protected]>
  395. * AssemblyBuilder.cs:
  396. * BuildManager.cs: compile the assembly from AssemblyBuilder and use
  397. GetGeneratedType() on the BuildProvider instead of loading the assembly
  398. and trying a wild guess at the type name.
  399. 2006-02-14 Gonzalo Paniagua Javier <[email protected]>
  400. * GlobalAsaxCompiler.cs:
  401. * PageCompiler.cs:
  402. * TemplateControlCompiler.cs: CreateMethods is now internal.
  403. * WebServiceBuildProvider.cs:
  404. * PageBuildProvider.cs:
  405. * UserControlBuildProvider.cs:
  406. * WebHandlerBuildProvider.cs: new build providers.
  407. * BuildProvider.cs: add assemblies.
  408. * BaseCompiler.cs: expose the provider and the compile unit through
  409. properties.
  410. 2006-02-10 Gonzalo Paniagua Javier <[email protected]>
  411. * CompilerType.cs: implemented.
  412. * AssemblyBuilder.cs: implemented most of it.
  413. * WebServiceCompiler.cs:
  414. * CachingCompiler.cs: update 2.0 compiler instance creation code.
  415. * ClientBuildManager.cs: implemented some of its methods. Not yet
  416. ready.
  417. * BuildManager.cs: the more interesting methods are implemented now.
  418. * BaseCompiler.cs: delete the temporary files in case of error.
  419. * BuildProvider.cs: implemented the Get*Compiler* protected methods.
  420. 2006-02-07 Chris Toshok <[email protected]>
  421. * TemplateControlCompiler.cs (AddParsedSubObjectStmt): append the
  422. calls to AddParsedSubObject to a special statement collection --
  423. builder.flushOutputStatements -- not to builder.method.Statements.
  424. (InitMethod): initially, set flushOutputStatements to
  425. method.Statements. If we're dealing with a ContentPlaceHolder,
  426. set flushOutputStatements to be the else block of a conditional we
  427. create. This causes the compiled control to fall back to the
  428. ContentPlaceHolder's child controls in case there's no
  429. corresponding Content template.
  430. (AddChildCall): use methodStatements instead of method.Statements.
  431. (CreateControlTree): same.
  432. * PageCompiler.cs (CreatePropertyAssign): factor out the
  433. string,string implementation and add one that also takes a
  434. CodeExpression; make the string,string implementation call the
  435. three arg one with thisRef.
  436. (AddStatementsToInitMethod): make use of the 3-arg form of
  437. CreatePropertyAssign to reduce code. Also, add support for
  438. setting the page's Title from the parser's Title.
  439. 2006-02-07 Chris Toshok <[email protected]>
  440. * UserControlCompiler.cs (AddStatementsToInitMethod): emit code to
  441. assign __ctrl.MasterPageFile to our master page, if we have one.
  442. * PageCompiler.cs (CreateContructor): remove the MasterPageFile
  443. assignment from here.
  444. (AddStatementsToInitMethod): and move it here.
  445. * TemplateControlCompiler.cs (InitMethod): in the case where
  446. builder is a RootBuilder (we're building the __BuildControlTree
  447. method), call a virtual method so that subclasses can add their
  448. own statements to the method (used by both Page and MasterPage);
  449. Also, in the RootBuilder case, the argument should be the
  450. parser.ClassName type (the class we're building); lastly, expand
  451. the ContentPlaceHolder logic to include all the
  452. ContentTemplates/InstantiateIn magic.
  453. (AddStatementsToInitMethod): empty virtual method.
  454. (AddContentTemplateInvocation): ContentControlBuilder ->
  455. ContentControlBuilderInternal.
  456. (CreateControlTree): same.
  457. (CallBaseFrameworkInitialize): new function, create call to
  458. base.FrameworkInitialize.
  459. (CreateFrameworkInitializeMethod): call CallBaseFrameworkIniitialize.
  460. 2006-02-06 Gonzalo Paniagua Javier <[email protected]>
  461. * IgnoreFileBuildProvider.cs: it's not public.
  462. * BuildProvider.cs: mostly implemented.
  463. 2006-02-01 Chris Toshok <[email protected]>
  464. * WebServiceCompiler.cs: CONFIGURATION_2_0 => NET_2_0, and use
  465. GetSection instead of GetWebApplicationSection.
  466. * CachingCompiler.cs: same.
  467. * AspGenerator.cs: same.
  468. * BaseCompiler.cs: same.
  469. 2006-01-23 Gonzalo Paniagua Javier <[email protected]>
  470. * AspGenerator.cs: ignore 'thead'. Fixes bug #77326.
  471. 2006-01-22 Chris Toshok <[email protected]>
  472. * IgnoreFileBuildProvider.cs: build provider which does nothing.
  473. 2006-01-22 Chris Toshok <[email protected]>
  474. * AspComponentFoundry.cs (.ctor): use a 2.0 friendly form of the
  475. Hashtable ctor to silence a couple of warning.
  476. (CompoundFoundry.ctor): same
  477. * Directive.cs (InitHash): use a 2.0 friendly form of the
  478. Hashtable ctor to silence a couple of warning.
  479. * TagAttributes.cs (MakeHash): use a 2.0 friendly form of the
  480. Hashtable ctor to silence a warning.
  481. (GetDictionary): same.
  482. 2006-01-22 Chris Toshok <[email protected]>
  483. * AppSettingsExpressionBuilder.cs: implement this, patterning it
  484. after an example on msdn. Also, enable the ExpressionEditor
  485. attribute, but use the string rather than the Type overload so we
  486. won't have yet another circular dep.
  487. * ConnectionStringsExpressionBuilder.cs: partial implementation.
  488. Same deal with the ExpressionEditor attribute.
  489. * ResourceExpressionBuilder.cs: same deal with the
  490. ExpressionEditor attribute.
  491. 2006-01-20 Chris Toshok <[email protected]>
  492. * ResourceExpressionBuilder.cs (ParseExpression): implement.
  493. * ResourceExpressionFields.cs: implement.
  494. 2006-01-20 Chris Toshok <[email protected]>
  495. * ClientBuildManagerParameter.cs: implement.
  496. * ClientBuildManagerCallback.cs: this class contains an empty
  497. default implementation.
  498. 2006-01-10 Gonzalo Paniagua Javier <[email protected]>
  499. * AspGenerator.cs: add support for 'src' in <script runat="server">.
  500. Fixes bug #77150.
  501. 2006-01-04 Chris Toshok <[email protected]>
  502. * WebServiceCompiler.cs (GetCompiledType): add CONFIGURATION_2_0
  503. code.
  504. * AspGenerator.cs (CheckLanguage): add CONFIGURATION_2_0 code.
  505. 2005-12-06 Gonzalo Paniagua Javier <[email protected]>
  506. * AspGenerator.cs: fix yesterday's fix.
  507. 2005-12-06 Gonzalo Paniagua Javier <[email protected]>
  508. * AspGenerator.cs: only do special processing for <script> if it has
  509. the runat="server" attribute. Fixes bug #76918.
  510. 2005-12-01 Gonzalo Paniagua Javier <[email protected]>
  511. * TemplateControlCompiler.cs: treat LightGrey as a synonym of LightGray.
  512. Fixes bug #76677.
  513. 2005-11-30 Gonzalo Paniagua Javier <[email protected]>
  514. * TemplateControlCompiler.cs: handle data bound attributes for html
  515. controls. Fixes bug #76785.
  516. 2005-11-28 Chris Toshok <[email protected]>
  517. * CachingCompiler.cs (Compile): CONFIGURATION_2_0 work.
  518. * BaseCompiler.cs (GetCompiledType): CONFIGURATION_2_0 work.
  519. 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
  520. * WebServiceCompiler.cs: fixed caching for web handlers.
  521. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  522. * AspParser.cs: don't change case for verbatim IDs.
  523. Fixes bug #76657.
  524. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  525. * AspParser.cs: when processing verbatim input, throw if we reach EOF
  526. before the expected end of the data.
  527. 2005-09-22 Gonzalo Paniagua Javier <[email protected]>
  528. * CachingCompiler.cs:
  529. * WebServiceCompiler.cs: when caching a type loaded from an assembly
  530. that we didn't compile, make it depend on the file itself, not on a
  531. non-existing cache key. This problem affected performance of web
  532. services and .ashx, making unnecessary extra calls to LoadFrom every
  533. time the cache was cleared.
  534. 2005-09-10 Gonzalo Paniagua Javier <[email protected]>
  535. * BaseCompiler.cs: set the domain's DynamicBase property instead of
  536. guessing it in BaseCompiler.
  537. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  538. * WebServiceCompiler.cs: apply the same fix as in r45440 that fixed bug
  539. 75146 for pages/controls.
  540. 2005-08-09 Miguel de Icaza <[email protected]>
  541. * WebServiceCompiler.cs: Use the new DynamicDir method.
  542. * BaseCompiler.cs: Use the DynamicBase property as a hint, but
  543. since this value is null most of the time, compute the real value.
  544. Added Bonus: if the directory has some kind of permission problem,
  545. try a different directory name.
  546. 2005-07-13 Miguel de Icaza <[email protected]>
  547. * AspGenerator.cs (AspGenerator.CheckLanguage): Use
  548. BaseParser.Context for the context.
  549. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  550. * TagAttributes.cs:
  551. * AspParser.cs:
  552. * TemplateControlCompiler.cs: use invariant culture versions of starts/
  553. endswith.
  554. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  555. * TemplateControlCompiler.cs: comparison between member name and the
  556. first part of the id provided by the user should also be
  557. case-insensitive. Fixes bug #75379.
  558. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  559. * CachingCompiler.cs: use cache.InsertPrivate.
  560. * AspGenerator.cs: use cache.InsertPrivate. Removed extra call to
  561. AddDependency.
  562. 2005-06-24 Gonzalo Paniagua Javier <[email protected]>
  563. * CachingCompiler.cs: create the assemly in the DynamicBase directory,
  564. as all the others, when compiling an assembly from a Src file. Fixes
  565. bug #75371.
  566. 2005-06-15 Gonzalo Paniagua Javier <[email protected]>
  567. * TemplateControlCompiler.cs: if the property is not found, don't forget
  568. about trying the field.
  569. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  570. * Directive.cs: Register the MasterType directive.
  571. * PageCompiler.cs: If a MasterType is specified, add a type specific
  572. Master property. All this fixes bug #75192.
  573. 2005-06-11 Gonzalo Paniagua Javier <[email protected]>
  574. * TemplateControlCompiler.cs: when mapping an attribute name to a field
  575. or property name, there's no need to try with every property and field,
  576. but just the one found when searching by name (no case). There was one
  577. call to ProcessPropertiesAndFields per property or field until found,
  578. now only one if the property/field is found, none otherwise.
  579. 2005-06-11 Gonzalo Paniagua Javier <[email protected]>
  580. * TemplateControlCompiler.cs: allow more than 2 levels when looking for
  581. properties of fields for an attribute like "Prop1-Prop2-Prop3". Fixes
  582. bug #75234.
  583. 2005-06-05 Gonzalo Paniagua Javier <[email protected]>
  584. * BaseCompiler.cs: when the OutputAssembly is null, we can still have
  585. the assembly file there and be able to load it. Thanks to Rogerio and
  586. Mark.
  587. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  588. * AspParser.cs: InvariantCulture love.
  589. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  590. * TemplateControlCompiler.cs: use the Page AddContentTemplate method,
  591. as the one in Master is protected. Fixes bug #75157.
  592. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  593. * AspComponentFoundry.cs: tagnames have precedence over types in
  594. assemblies when they use the same prefix. Fixes bug #71855.
  595. 2005-05-03 Lluis Sanchez Gual <[email protected]>
  596. * WebServiceCompiler.cs: Create the temp directory before
  597. creating the web service source code file.
  598. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  599. * AspGenerator.cs: when checking languages, try to match other aliases
  600. too (ie, 'cs' == 'c#').
  601. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  602. * BaseCompiler.cs: check that DynamicBase directory exists before
  603. creating the TempFileCollection.
  604. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  605. * AspGenerator.cs: use a stack for non-server tags even before getting
  606. to a form. Fixes bug #70274.
  607. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  608. * AspParser.cs: don't error out on ill formed tags if it's not a server
  609. tag (ie, allow something like '<table align="left cellpadding="0">' to
  610. work, as MS does. Fixes bug #67909.
  611. 2005-04-20 Rafael Teixeira <[email protected]>
  612. * BaseCompiler.cs: do the bridge of Explicit/Strict attributes from
  613. @Page/@Control directives to CodeDOM (VB.NET support)
  614. 2005-04-19 Lluis Sanchez Gual <[email protected]>
  615. * AspParser.cs: Fixed parsing of data binding tags in server
  616. tag attributes. Allow <%...%> blocks not assigned to
  617. attributes in client tags.
  618. * TagAttributes.cs: Make sure that data binding blocks in server
  619. tags are always assigned to attributes.
  620. 2005-04-15 Lluis Sanchez Gual <[email protected]>
  621. * TemplateControlCompiler.cs: Implemented support for two-way
  622. binding.
  623. 2005-04-14 Lluis Sanchez Gual <[email protected]>
  624. * TemplateControlCompiler.cs: Use the new BindingContainerType
  625. property to find the type of the binding container.
  626. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  627. * TemplateControlCompiler.cs: Avoid using the GetConverter() trick
  628. for primitive types. Parse an empty color string as Color.Empty.
  629. Get the converter for a property using its PropertyDescriptor.
  630. 2005-04-05 Lluis Sanchez Gual <[email protected]>
  631. * TemplateControlCompiler.cs: Don't autogenerate IDs for
  632. controls inside Content template.
  633. 2005-03-18 Gonzalo Paniagua Javier <[email protected]>
  634. * TemplateControlCompiler.cs: make typedesc.aspx work again.
  635. 2005-02-17 Gonzalo Paniagua Javier <[email protected]>
  636. * ExpressionBuilderContext.cs:
  637. * ExpressionBuilder.cs: implemented.
  638. 2005-02-11 Gonzalo Paniagua Javier <[email protected]>
  639. * AspGenerator.cs: don't fail on <tbody runat=server>. Fixes bug #71856.
  640. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  641. * TemplateControlCompiler.cs: When generating a property value,
  642. check for TypeConverterAttribute in the PropertyInfo, not only in the
  643. property type.
  644. Implemented code generation using InstanceDescriptor, when the type
  645. converter supports conversion to that type.
  646. 2005-01-21 Lluis Sanchez Gual <[email protected]>
  647. * Directive.cs: Added MASTER directive.
  648. * AspGenerator.cs: Use UserControlCompiler for compiling master pages.
  649. * PageCompiler.cs: Set the master file name when generating the page.
  650. * TemplateControlCompiler.cs: When generating the method for a
  651. content holder, register the content holder in the base MasterPage.
  652. Added method for registering a Content control for a MasterPage.
  653. Generate code for Content controls.
  654. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  655. * TemplateControlCompiler.cs: Get the container type from the
  656. template (if it was defined using TemplateContainerAttribute.
  657. 2004-10-29 Gonzalo Paniagua Javier <[email protected]>
  658. * AspGenerator.cs: correctly process script tags that self-closing.
  659. Fixes bug #69657.
  660. 2004-10-27 Gonzalo Paniagua Javier <[email protected]>
  661. * CachingCompiler.cs: when compiling a single .cs file, add the file
  662. itself to dependencies. Fixes bug #68788.
  663. 2004-09-30 Gonzalo Paniagua Javier <[email protected]>
  664. * ControlBuilder.cs: don't close server tags when we get to a closing
  665. tag that is not applied to a server control. Fixes bug #60323.
  666. 2004-09-08 Gonzalo Paniagua Javier <[email protected]>
  667. * WebServiceCompiler.cs: fix buglet in my last commit.
  668. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  669. * BaseCompiler.cs:
  670. * CachingCompiler.cs:
  671. * WebServiceCompiler.cs: correctly cache Type instead of the assembly
  672. for ashx/asmx. Otherwise we need to open the file and check for the
  673. class name in there. Thanks to Ben for pointing this out.
  674. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  675. * AspParser.cs:
  676. * AspTokenizer.cs: prevent quotes from being swallowed when we're
  677. inside a server tag and they are the next non-whitespace character.
  678. Fixes bug #63451.
  679. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  680. * CachingCompiler.cs: don't try to watch for changes in system
  681. assemblies. Fixes bug #64871.
  682. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  683. * AspGenerator.cs: handle builders that need to process inner text
  684. with tags.
  685. * Location.cs: added setters for the properties.
  686. 2004-08-02 Duncan Mak <[email protected]>
  687. * BuildProviderResultFlags.cs:
  688. * IImplicitResourceProvider.cs:
  689. * ImplicitResourceKey.cs:
  690. * IResourceReader.cs: Added.
  691. 2004-07-21 Gonzalo Paniagua Javier <[email protected]>
  692. * AspGenerator.cs: the path for file was treated as virtual, but it's
  693. physical. Fixes bug #61524.
  694. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  695. * AspParser.cs: fixed case-sensitivity issues with #include and its
  696. attributes. Closes #61429.
  697. 2004-07-07 Gonzalo Paniagua Javier <[email protected]>
  698. * BaseCompiler.cs:
  699. * WebServiceCompiler.cs: really create the dlls under DynamicBase
  700. 2004-06-19 Gonzalo Paniagua Javier <[email protected]>
  701. * TemplateControlCompiler.cs: for system colors, use SystemColors class
  702. instead of Color. Fixes bug #60249.
  703. 2004-06-16 Gonzalo Paniagua Javier <[email protected]>
  704. * BaseCompiler.cs: try getting the Type from the cache before doing the
  705. real work. Remove temporary files right after successful compilation.
  706. * CachingCompiler.cs: added GetTypeFromCache.
  707. * UserControlCompiler.cs: nothing interesting.
  708. * WebServiceCompiler.cs: try getting the Type from the cache before
  709. doing anything else. Remove temp files on sucessful compilation.
  710. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  711. * AspGenerator.cs:
  712. * CachingCompiler.cs: use a different prefix when caching compiler
  713. results or Types.
  714. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  715. * BaseCompiler.cs: dynamicBase is now protected. Check
  716. MONO_ASPNET_NODELETE here.
  717. * TemplateControlCompiler.cs: if the type is not known but has a
  718. TypeConverter, invoke ConvertFromString in the generated code.
  719. * WebServiceCompiler.cs: it used a hardcoded C# compiler, now it gets
  720. the compiler from the configuration. Also handle MONO_ASPNET_NODELETE.
  721. * CachingCompiler.cs: updated compilation of web services and simple
  722. web handlers.
  723. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  724. * CSCompiler.cs: removed.
  725. * CachingCompiler.cs: language independent compilation for single files.
  726. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  727. * BaseCompiler.cs:
  728. * WebServiceCompiler.cs: adapted to the 'new' CachingCompiler.
  729. * CachingCompiler.cs: use HttpRuntime.Cache.
  730. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  731. * PageCompiler.cs: fixed Trace and add support for Buffer.
  732. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  733. * PageCompiler.cs: override CreateConstructor to add assignment for
  734. ClientTarget.
  735. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  736. * TemplateControlCompiler.cs: use CodeDelegateCreateExpression instead
  737. of CodeObjectCreateExpression for the render method delegate. Thanks
  738. to Jochen Wezel.
  739. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  740. * BaseCompiler.cs: use DynamicBase for the output assemblies.
  741. 2004-05-12 Gonzalo Paniagua Javier <[email protected]>
  742. * AspGenerator.cs: ObjectTagBuilder do not override HasBody now.
  743. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  744. * AspParser.cs: indent a few lines.
  745. * AspTokenizer.cs: added ungetc() used when we read a '/' in an unquoted
  746. attribute value. This way we can simulate reading 2 characters ahead
  747. (one in ungetc and the other in Peek) and work with values like
  748. text/javascript. Fixes bug #57302.
  749. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  750. * AspParser.cs: ignore whitespace after directives. Fixes bug #58057.
  751. 2004-04-02 Lluis Sanchez Gual <[email protected]>
  752. * TemplateControlCompiler.cs: Fixed build for net_1_0 profile.
  753. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  754. * GlobalAsaxCompiler.cs: removed Imports and Assemblies properties.
  755. 2004-02-23 Gonzalo Paniagua Javier <[email protected]>
  756. * AspGenerator.cs: error out when <object> server tag is not closed.
  757. Ignore any content inside it.
  758. 2004-02-10 Jackson Harper <[email protected]>
  759. * AspTokenizer.cs: Collect discarded characters that might be used
  760. in client side scripts. Patch by Liyu Liu.
  761. * AspParser.cs: Add discarded characters. Patch by Liyu Liu.
  762. 2004-02-10 Jackson Harper <[email protected]>
  763. * BaseCompiler.cs: Use the TempDirectory for compilation. Fixes
  764. bug #54117.
  765. 2004-01-30 Jackson Harper <[email protected]>
  766. * TemplateControlCompiler.cs: Call ToString on the types hashcode,
  767. the build method takes strings not ints.
  768. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  769. * AspGenerator.cs: handle more possible errors in global.asax file.
  770. * BaseCompiler.cs: added utility methods for creating <object> related
  771. properties and fields.
  772. * GlobalAsaxCompiler.cs: keep around applications and session scope
  773. objects builders. Also a list of imports and assemblies added in
  774. global.asax.
  775. * TemplateControlCompiler.cs: use base class methods for <object> stuff.
  776. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  777. * AspGenerator.cs: use the Cache to store compiled Types. Don't parse
  778. pages more than once. Thanks to Eric Lindvall for pointing this out.
  779. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  780. * TemplateControlCompiler.cs: allow handling subproperties for other
  781. types than Style and Font. Fixes bug #53217.
  782. 2004-01-16 Jackson Harper <[email protected]>
  783. * TagAttribute.cs: attributes can be stored as encoded html so we
  784. decode them here.
  785. 2004-01-14 Jackson Harper <[email protected]>
  786. * TemplateControlCompiler.cs: Is a user control is cached and
  787. shared use the controls type hashcode for the GUID so it will be
  788. the same across instances.
  789. 2004-01-13 Jackson Harper <[email protected]>
  790. * TemplateControlCompiler.cs: If an item has the partial caching
  791. attribute build a PartialCachingControl in the parents __Build method.
  792. * BaseCompiler.cs: Add a method for adding class attributes to the
  793. class.
  794. * UserControlCompiler.cs: If caching is enabled on a user control
  795. add the PartialCachingAttribute to it.
  796. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  797. * PageCompiler.cs: invoke Request.ValidateInput if required.
  798. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  799. * AspGenerator.cs: don't rely on GC to close the files parsed. Fixes bug
  800. #52521. Patch by [email protected].
  801. 2003-12-25 Jackson Harper <[email protected]>
  802. * AspGenerator.cs: Allow scriptlets in javascript. This fixes bug
  803. #52522.
  804. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  805. * PageCompiler.cs: assign the ErrorPage property if provided.
  806. 2003-12-15 Jackson Harper <[email protected]>
  807. * PageCompiler.cs: Add Trace and TraceMode to framework initialize
  808. method if they are set.
  809. 2003-12-15 Gonzalo Paniagua Javier <[email protected]>
  810. * AspGenerator.cs: ignore <tbody> when we're inside a server table and
  811. fail when runat="server" is applied to <tbody> with a parse error
  812. instead of waiting for a compilation error. Fixes bug #52157.
  813. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  814. * AspGenerator.cs: basic checking of ID validity. Throw a
  815. ParseException when mixing languages.
  816. 2003-11-30 Gonzalo Paniagua Javier <[email protected]>
  817. * PageCompiler.cs: assign LCID, Culture and/or UICulture in
  818. FrameworInitialize() if provided in @Page.
  819. Fixes bug #51511.
  820. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  821. * TemplateControlCompiler.cs: support for expressions of
  822. System.Drawing.Size type. Allow getting Color from comma separated
  823. numbers, which is not allowed by ColorConverter.
  824. This makes http://www.codeproject.com/aspnet/asppopup.asp work.
  825. 2003-11-13 Jackson Harper <[email protected]>
  826. * PageCompiler.cs: Call InitOutputCache when the OutputCache
  827. directive is set.
  828. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  829. * AspGenerator.cs: use fileEncoding from configuration files.
  830. * PageCompiler.cs: add assign statements for ContentType,
  831. ResponseEncoding and CodePage if supplied.
  832. 2003-10-21 Gonzalo Paniagua Javier <[email protected]>
  833. * TemplateControlCompiler.cs: fix bug #42994. Now we don't generate
  834. a return statement for user controls with 'void' return type.
  835. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  836. * AspParser.cs: fixed bug #49627.
  837. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  838. * BaseCompiler.cs: now gets the CodeCompiler from configuration files.
  839. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  840. * Directive.cs: new attribute for @Page directive in 1.1.
  841. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  842. * AspParser.cs:
  843. * TagAttributes.cs: allow duplicated runat=server attributes and display
  844. error page when duplicated attributes and runat is specified.
  845. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  846. * AspTokenizer.cs: moved token numbers above unicode.
  847. 2003-09-22 Gonzalo Paniagua Javier <[email protected]>
  848. * AspGenerator.cs: don't process code render tags inside scripts. Check
  849. the language of the script and treat javascript as verbatim input.
  850. Fixes bug #48592.
  851. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  852. * TemplateControlCompiler.cs: fixed bug #48212.
  853. 2003-09-18 Gonzalo Paniagua Javier <[email protected]>
  854. * WebServiceCompiler.cs: remove the temporary files here too.
  855. 2003-08-03 Gonzalo Paniagua Javier <[email protected]>
  856. * AspGenerator.cs: fixed bug #46429.
  857. 2003-08-01 Gonzalo Paniagua Javier <[email protected]>
  858. * Directive.cs: support @WebHandler.
  859. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  860. * TemplateControlCompiler.cs: support string []. Fixes bug #46415.
  861. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  862. * BaseCompiler.cs: first look for cached items, then generate the tree.
  863. This should speed things up.
  864. * CachingCompiler.cs: when compiling web services, use the full path of
  865. the .asmx file as key when caching.
  866. * WebServiceCompiler.cs: first look for cached items, then generate
  867. the source file.
  868. 2003-07-04 Gonzalo Paniagua Javier <[email protected]>
  869. * AspParser.cs: more useful error information,
  870. * BaseCompiler.cs:
  871. * CachingCompiler.cs: honor the debug="true" option.
  872. * TemplateControlCompiler.cs: small fixes for templates.
  873. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  874. * BaseCompiler.cs: made Compiler property virtual.
  875. * CachingCompiler.cs: added support for compiling web services.
  876. * WebServiceCompiler.cs: implemented.
  877. 2003-05-22 Gonzalo Paniagua Javier <[email protected]>
  878. * CachingCompiler.cs: fixed bug #43477.
  879. 2003-05-22 Gonzalo Paniagua Javier <[email protected]>
  880. * AspParser.cs:
  881. * AspTokenizer.cs: fixed bugs #43206 and #43371.
  882. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  883. * TemplateControlCompiler.cs: duh! Generate SupportAutoEvents instead
  884. of AutoEventWireup (which is internal). Thanks to Stuart Ballard for
  885. reporting.
  886. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  887. * CompilationException.cs: don't add duplicated lines in the case that
  888. mcs reports several errors for the same one.
  889. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  890. * AspGenerator.cs: fully support including files, ie., treat them just
  891. as C treats #includes.
  892. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  893. * AspGenerator.cs:
  894. * AspParser.cs:
  895. * TagType.cs: Added support for server side includes.
  896. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  897. * CSCompiler.cs: actually add the list of referenced assemblies to the
  898. compiler options. Throw a CompilationException if there's an error.
  899. * CachingCompiler.cs: added a method to compile directly from a source
  900. file.
  901. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  902. * AspGenerator.cs: copy the location before setting the value for the
  903. control builders.
  904. * BaseCompiler.cs: changed parameters for CompilationException.
  905. * CompilationException.cs: it takes now line numbers and error
  906. descriptions from the CompilerErrorCollection.
  907. * Location.cs: used when a copy of an ILocation is needed.
  908. * ParseException.cs: implemented new methods to provide line numbers
  909. and souce file.
  910. * TemplateControlCompiler.cs: throw a ParseException where appropiate.
  911. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  912. * AspGenerator.cs: also support data bind syntax inside tags not
  913. processed as controls. Added debugging method.
  914. * TemplateControlCompiler.cs: reset the number of data binding handlers
  915. in the proper place. Small fix when getting the container type.
  916. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  917. * TemplateControlCompiler.cs: correctly set the TemplateSourceDirectory
  918. value.
  919. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  920. * AspGenerator.cs: handle code render syntax in tag attributes.
  921. * AspParser.cs: the constructor now takes a TextReader.
  922. * TemplateControlCompiler.cs: removed comment.
  923. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  924. * TemplateControlCompiler.cs: added support for data bound properties.
  925. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  926. * AspComponentFoundry.cs: simplified it a lot by using Type and Assembly
  927. instead of their names.
  928. * AspElements.cs: removed. No longer needed.
  929. * AspGenerator.cs: this file is now in charge of interfacing between
  930. the parser and the compiler. It manages the creation of the
  931. ControlBuilder tree and the compilation of the CodeDOM tree.
  932. * AspParser.cs: tag handling is simpler now. Instead of a whole bunch
  933. of different Types, tags are just and id and a set of attributes.
  934. Implement ILocation interface.
  935. * AspTokenizer.cs: added a few methods to help the parser implementing
  936. ILocation.
  937. * BaseCompiler.cs: handles the portions of the CodeDOM tree that are
  938. common to appliaction, page and user control, including the actual
  939. compilation and error handling.
  940. * CSCompiler.cs: compiles C# files using CodeDOM interfaces.
  941. * CachingCompiler.cs: simplified to use the new interfaces.
  942. * CompilationException.cs: it's now using CompilationResult to report
  943. errors.
  944. * CompilationResult.cs: Removed file.
  945. * Directive.cs: to check for the validity of a directive.
  946. * GlobalAsaxCompiler.cs: simplified a lot, as most of the work is done
  947. in BaseCompiler.
  948. * ILocation.cs: interface used to now the exact place where a parse
  949. error happens.
  950. * PageCompiler.cs: generates a couple of methods that are only used in
  951. pages.
  952. * ParseException.cs: use the ILocation interface.
  953. * TagAttributes.cs: handles the attributes of the tags parsed.
  954. * TagType.cs: an enum for the different kinds of tags.
  955. * TemplateControlCompiler.cs: this is the one that does most of the
  956. conversion from teh ControlBuilder tree into a CodeDOM tree.
  957. * UserControlCompiler.cs: simplified as most of the work is done in
  958. its base classes.
  959. * WebServiceCompiler.cs: dummy.
  960. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  961. * AspComponentFoundry.cs: added GetComponentType method.
  962. 2003-03-28 Gonzalo Paniagua Javier <[email protected]>
  963. * AspTokenizer.cs: allow quotes inside server tags that are part of
  964. attribute values.
  965. * CachingCompiler.cs: no more 'FileNotFound' exceptions when the
  966. compilation fails.
  967. 2003-03-27 Gonzalo Paniagua Javier <[email protected]>
  968. * AspGenerator.cs: generate correct appbase path. It was working with
  969. mcs but not with csc.
  970. * BaseCompiler.cs: quote arguments and removed GetRandomFileName.
  971. * CachingCompiler.cs: quote source file.
  972. 2003-03-26 Gonzalo Paniagua Javier <[email protected]>
  973. * AspGenerator.cs: now the Inherits attribute works as expected for
  974. global.asax file.
  975. 2003-03-24 Gonzalo Paniagua Javier <[email protected]>
  976. * CompilationException.cs:
  977. * ParseException.cs: display the correct line number in error messages.
  978. * AspElements.cs: added TargetSchema attribute for control. It's
  979. ignored.
  980. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  981. * BaseCompiler.cs: fixed the hack to work under windows.
  982. * CachingCompiler.cs: under windows, try 'mcs.bat' and then 'mcs'.
  983. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  984. * BaseCompiler.cs: hacks to work-around our buggy System.Uri.
  985. 2003-03-17 George Kodinov <[email protected]>
  986. * BaseCompiler.cs: Removed a FIXME: and added a correct calculation of
  987. app's private bin path
  988. 2003-03-10 Gonzalo Paniagua Javier <[email protected]>
  989. * AspGenerator.cs:
  990. * BaseCompiler.cs:
  991. * CachingCompiler.cs:
  992. * CompilationResult.cs:
  993. * GlobalAsaxCompiler.cs:
  994. * PageCompiler.cs:
  995. * UserControlCompiler.cs: recompile the page if dependencies change.
  996. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  997. * AspGenerator.cs: corrected typo and wrong fix.
  998. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  999. * AspGenerator.cs: fixed code generation for Table/TableRow/TableCell
  1000. when used explicitly.
  1001. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  1002. * AspElements.cs: get the property Type for controls that use
  1003. ParseChildren with a property name.
  1004. * AspGenerator.cs: generate correct signature for the method that
  1005. adds controls to the default property in ParseChildren.
  1006. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  1007. * AspGenerator.cs: rethrow exceptions that may come from parsing or
  1008. compilation if a user control.
  1009. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  1010. * AspGenerator.cs: throw ParseException on parse
  1011. error.
  1012. * AspParser.cs: added Line and Column props.
  1013. * CompilationException.cs: derives now from HtmlizedException.
  1014. * CompilationResult.cs: added fileName field. Fixed set_ExitCode.
  1015. * GlobalAsaxCompiler.cs:
  1016. * PageCompiler.cs:
  1017. * UserControlCompiler.cs: pass the file name in the CompilationResult.
  1018. * ParseException.cs: new exception.
  1019. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  1020. * AspGenerator.cs: remove "file://" from the private bin path. Fixes
  1021. bug #37628.
  1022. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  1023. * AspParser.cs: the parser fires events when it parses an element.
  1024. * GlobalAsaxCompiler.cs:
  1025. * PageCompiler.cs:
  1026. * UserControlCompiler.cs:
  1027. * AspElements.cs: modified to use the new parser interface.
  1028. * AspGenerator.cs: modified to use the new parser. Merge multiple text
  1029. strings into one single LiteralControl.
  1030. * AspTokenizer.cs: added Line and Column properties.
  1031. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  1032. * AspParser.cs: fixed bug #36929.
  1033. 2003-01-21 Tim Haynes <[email protected]>
  1034. * AspGenerator.cs:
  1035. * BaseCompiler.cs:
  1036. * CachingCompiler.cs: changes to work around spaces and
  1037. directory-separators in the local filesystem.
  1038. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  1039. * AspGenerator.cs: make the generated file compile with csc after last
  1040. change.
  1041. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  1042. * AspGenerator.cs: removed unused variable. Added support for
  1043. properties/fields of type string [].
  1044. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  1045. * AspGenerator.cs: modified loading of the parent type now that
  1046. Type.GetType is fixed.
  1047. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  1048. * AspGenerator.cs: cast to Control if the container does not implement
  1049. INamingContainer.
  1050. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  1051. * AspGenerator.cs: fixed a couple of thinkos related to IsSubclassOf.
  1052. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1053. * AspElements.cs: attributes without value lacked a space afterwards.
  1054. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  1055. * AspGenerator.cs: functions for columns don't return anything. Fixed
  1056. typo.
  1057. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  1058. * AspGenerator.cs: add data bound controls to code render function.
  1059. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  1060. * AspComponentFoundry.cs: reworked to allow same prefix for multiple
  1061. controls. You can register 1 assembly plus any number of user controls
  1062. under the same prefix.
  1063. * AspGenerator.cs: don't add duplicate 'using' for the same namespace.
  1064. Hack to allow @Register access to assemblies in other places than bin
  1065. directory.
  1066. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  1067. * AspElements.cs: added 'codebehind' attribute for page, control and
  1068. application. It's ignored by MS, but allowed. Fixed typo.
  1069. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  1070. * AspGenerator.cs: fixed EnableSesssionState handling.
  1071. 2003-01-05 Gonzalo Paniagua Javier <[email protected]>
  1072. * AspGenerator.cs: don't generate instance fields for pages/controls
  1073. when the base class specified in the Inherits attribute already has
  1074. them. Closes bug #36262.
  1075. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  1076. * AspGenerator.cs: generate code like 'control.XXX = value' also for
  1077. public fields (properties were being handled in that way too).
  1078. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  1079. * AspGenerator.cs: now it uses the current HttpContext when creating
  1080. user controls. TemplateSourceDirectory is no longer a dummy value.
  1081. * GlobalAsaxCompiler.cs:
  1082. * PageCompiler.cs:
  1083. * UserControlCompiler.cs: set the context which will be used to locate
  1084. the files.
  1085. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  1086. * AspGenerator.cs: added support for AutoEventWireup attribute in
  1087. @Page and @Control.
  1088. * CompilationResult.cs:
  1089. * GlobalAsaxCompiler.cs:
  1090. * PageCompiler.cs:
  1091. * UserControlCompiler.cs: store the options.
  1092. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  1093. * AspElements.cs: new method Tag.GetElements
  1094. used to parse the inner contents of a tag looking for data binding or
  1095. code render tags.
  1096. New property HtmlControlTag.ParseChildren allows
  1097. differentiation of a couple of HtmlControls that has children as
  1098. properties (namely HtmlTable and HtmlTableRow).
  1099. * AspGenerator.cs: fixed container semantics to
  1100. match BindingContainer one. Implemented Inherits attribute for page and
  1101. control.
  1102. Support HtmlControls that has ChildrenAsProperties.
  1103. Generate code for data binding functions that matches the semantic of
  1104. Container.
  1105. Handle data bound and code render attribute values.
  1106. Set proper value return for TemplateSourceDirectory. Should be relative
  1107. to appPath.
  1108. * BaseCompiler.cs: moved CompilerOptions and
  1109. References handling here.
  1110. * CachingCompiler.cs: copy result of compilation.
  1111. * CompilationException.cs: simple ToString () implementation.
  1112. * CompilationResult.cs: implemented CopyFrom and ToString.
  1113. * GlobalAsaxCompiler.cs:
  1114. * PageCompiler.cs:
  1115. * UserControlCompiler.cs: removed CompilerOptions as it's now handled
  1116. in the base class. Get all the types in the generated assembly and
  1117. look for one that derives from the correct Type.
  1118. 2002-11-30 Gonzalo Paniagua Javier <[email protected]>
  1119. * AspElements.cs: added @Application directive.
  1120. * AspGenerator.cs: make it work also with application files. We
  1121. currently generate an extra private function.
  1122. 2002-11-29 Gonzalo Paniagua Javier <[email protected]>
  1123. * GlobalAsaxCompiler.cs: compiler for global.asax file. If the file
  1124. exists, it will be compiled into an HttpApplication derived class
  1125. (directly or through a user-provided class).
  1126. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  1127. * AspGenerator.cs: fixed target file name and generated class name.
  1128. * BaseCompiler.cs: reference assemblies in PrivateBinPath.
  1129. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  1130. * AspGenerator.cs: reworked user control
  1131. compilation. Provide the options as a Hashtable for use in compilation.
  1132. Create the user controls in the private bin path of the domain.
  1133. * BaseCompiler.cs: base class for the various compiler types.
  1134. * CachingCompiler.cs: actually executes mcs and do some poor caching
  1135. (it will use Cache when finished).
  1136. * CompilationException.cs: this exception has enough information to
  1137. generate a nice error page.
  1138. * CompilationResult.cs: used in caching.
  1139. * PageCompiler.cs: now derives from BaseCompiler
  1140. * TemplateFactory.cs: no longer needed.
  1141. * UserControlCompiler.cs: new class used when compiling user controls.
  1142. * WebServiceCompiler.cs: derives from BaseCompiler.
  1143. 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
  1144. * AspElements.cs: added ServerComment class.
  1145. * AspParser.cs: ignore ServerComments tags. Remove server comments when
  1146. in verbatim mode.
  1147. Fixes #33482.
  1148. * PageCompiler.cs: check if the type is already cached before generating
  1149. the C# file.
  1150. * TemplateFactory.cs: if csFile parameter is null, only checks if we
  1151. already have the page compiled.
  1152. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  1153. * AspGenerator.cs: undo one-liner change.
  1154. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  1155. * AspGenerator.cs: removed a few hacks no longer needed.
  1156. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  1157. * PageCompiler.cs: tracing.
  1158. * TemplateFactory.cs: cache compiled types and tracing.
  1159. * WebServiceCompiler.cs: new parameter in GetTypeFromsource,
  1160. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  1161. * AspComponentFoundry.cs: fixed typo.
  1162. * TemplateFactory.cs: use csc style options.
  1163. * AspGenerator.cs: don't use FileDependencies property of base class.
  1164. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  1165. * System.Web.Compilation/AspElements.cs:
  1166. * System.Web.Compilation/AspGenerator.cs:
  1167. * System.Web.Compilation/AspParser.cs:
  1168. * System.Web.Compilation/PageCompiler.cs:
  1169. * System.Web.Compilation/TemplateFactory.cs: we are now able to compile
  1170. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  1171. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  1172. * AspElements.cs: added WebService directive.
  1173. * WebServiceCompiler.cs: New file.
  1174. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  1175. * PageCompiler.cs: fixed compilation.
  1176. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  1177. * PageCompiler.cs: generate C# file using AspGenerator.
  1178. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  1179. * AspComponentFoundry.cs: LookupFoundry now returns bool.
  1180. * AspGenerator.cs: New file.
  1181. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  1182. * AspComponentFoundry.cs: New file.
  1183. * AspElements.cs: renamed Component to Aspcomponent.
  1184. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  1185. * AspElements.cs:
  1186. * AspParser.cs:
  1187. * AspTokenizer.cs:
  1188. * ChangeLog:
  1189. * PageCompiler.cs:
  1190. * TemplateFactory.cs: first steps to move xsp into System.Web.