New test.
[mono.git] / mcs / class / System.Web / System.Web.Compilation / ChangeLog
index 3045c604e6ae1e1a0d8b5db28e660b97c3b5b67f..ebfe0f734c5afa34d9ca6160ea0e935839dc2cc8 100644 (file)
@@ -1,3 +1,88 @@
+2006-10-03 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * TemplateControlCompiler.cs: fixed: Bind functions (Data-Binding Syntax).
+       At run time, the Bind method calls the Eval method, if there is DataItem
+       != null to bind to.
+       If there is DataItem == null (like InsertItemTemplate in FormView) Bind
+       method don't raise exception and works properly to extract data from
+       bounded controls on postback.
+               
+2006-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * AspGenerator.cs: if we are tracking non-server tags for
+       well-formedness, handle tags that do not need to be closed (br, img,...)
+       Fixes bug #79437.
+
+2006-09-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * PageCompiler.cs: support the EnableEventValidation attribute.
+
+2006-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * AspGenerator.cs: after parsing an include file, don't error out if we
+       still have opened tags unless this was the last file to parse. Fixes
+       bug #79318.
+
+2006-09-05  Konstantin Triger <kostat@mainsoft.com>
+
+       * ParseException.cs: Ensure the source file stream is closed.
+
+2006-08-25  Kornél Pál  <kornelpal@gmail.com>
+
+       * AppSettingsExpressionBuilder.cs: Use assembly name constants.
+       * ConnectionStringsExpressionBuilder.cs: Use name reference
+         constants.
+       * ResourceExpressionBuilder.cs: Use assembly name constants.
+
+2006-08-20  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * ThemeDirectoryCompiler.jvm.cs: implemented GetCompiledInstance
+
+2006-08-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * ClientBuildManager.cs: handle domain shutdown and unload.
+       Implemented some properties. Commented.
+
+2006-08-10  Andrew Skiba  <andrews@mainsoft.com>
+
+       * ThemeDirectoryCompiler.cs: render css path as a virtual path.
+
+2006-08-08  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * added ThemeDirectoryCompiler.jvm.cs
+
+2006-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * PageThemeCompiler.cs: Don't generate a 'Items.Clear ()' call if
+       the property Items does not exist. Patch by Marek Habersack that fixes
+       bug #78971.
+
+2006-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * TemplateControlCompiler.cs: support assigning nullable types.
+       Patch by Marek Habersack that fixes bug #78970.
+
+2006-07-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * TemplateControlCompiler.cs: make password work again.
+
+2006-06-21 Juraj Skripsky <js@hotfeet.ch>
+
+       * AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):
+       MS.NET handles nested quotes differently for server controls and
+       for "normal" controls. Add a property "AlternatingQuotes" to the
+       tokenizer and let the parser decide whether it is well-formed or not.
+
+2006-06-20 Andrew Skiba <andrews@mainsoft.com>
+
+       * PageThemeCompiler.cs, TemplateControlCompiler.cs: take care of
+       UrlPropertyAttribute.
+
+2006-06-18 Andrew Skiba <andrews@mainsoft.com>
+
+       * TemplateControlCompiler.cs: check IsWritablePropertyOrField before
+       generating code for assignment statement and DataBind event.
+       
 2006-06-15 Juraj Skripsky <js@hotfeet.ch>
 
        * AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):