X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.Compilation%2FChangeLog;h=ebfe0f734c5afa34d9ca6160ea0e935839dc2cc8;hb=f99ce750ee781a2584e849a0264300fa4d99aaaa;hp=3045c604e6ae1e1a0d8b5db28e660b97c3b5b67f;hpb=3fe5409741be0d9a071b6465d1b49068c587bf9c;p=mono.git diff --git a/mcs/class/System.Web/System.Web.Compilation/ChangeLog b/mcs/class/System.Web/System.Web.Compilation/ChangeLog index 3045c604e6a..ebfe0f734c5 100644 --- a/mcs/class/System.Web/System.Web.Compilation/ChangeLog +++ b/mcs/class/System.Web/System.Web.Compilation/ChangeLog @@ -1,3 +1,88 @@ +2006-10-03 Igor Zelmanovich + + * 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 + + * 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 + + * PageCompiler.cs: support the EnableEventValidation attribute. + +2006-09-08 Gonzalo Paniagua Javier + + * 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 + + * ParseException.cs: Ensure the source file stream is closed. + +2006-08-25 Kornél Pál + + * AppSettingsExpressionBuilder.cs: Use assembly name constants. + * ConnectionStringsExpressionBuilder.cs: Use name reference + constants. + * ResourceExpressionBuilder.cs: Use assembly name constants. + +2006-08-20 Vladimir Krasnov + + * ThemeDirectoryCompiler.jvm.cs: implemented GetCompiledInstance + +2006-08-10 Gonzalo Paniagua Javier + + * ClientBuildManager.cs: handle domain shutdown and unload. + Implemented some properties. Commented. + +2006-08-10 Andrew Skiba + + * ThemeDirectoryCompiler.cs: render css path as a virtual path. + +2006-08-08 Vladimir Krasnov + + * added ThemeDirectoryCompiler.jvm.cs + +2006-07-28 Gonzalo Paniagua Javier + + * 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 + + * TemplateControlCompiler.cs: support assigning nullable types. + Patch by Marek Habersack that fixes bug #78970. + +2006-07-13 Gonzalo Paniagua Javier + + * TemplateControlCompiler.cs: make password work again. + +2006-06-21 Juraj Skripsky + + * 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 + + * PageThemeCompiler.cs, TemplateControlCompiler.cs: take care of + UrlPropertyAttribute. + +2006-06-18 Andrew Skiba + + * TemplateControlCompiler.cs: check IsWritablePropertyOrField before + generating code for assignment statement and DataBind event. + 2006-06-15 Juraj Skripsky * AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):