Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-29Remove ChangeLog files from the repoAlexander Köplinger
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
2010-07-102010-07-09 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlInputButton.cs: if ServerClick handler is found, do NOT attribute-encode the onclick attribute. svn path=/trunk/mcs/; revision=160185
2010-06-21 2010-06-21 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlControl.cs: PreProcessRelativeReference deos not atribute-encode the attribute value. Fixes bug #596430 2010-06-21 Marek Habersack <mhabersack@novell.com> * HtmlImageTest.cs: fixed an invalid test. svn path=/trunk/mcs/; revision=159250
2010-06-022010-06-01 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlHead.cs: added code to render description and keywords metas if the corresponding HtmlMeta controls aren't found and the user set either Description or Keywords properties. 2010-06-01 Marek Habersack <mhabersack@novell.com> * TemplateControlCompiler.cs: added new virtual method, AddStatementsToInitMethodBottom and renamed AddStatementsToInitMethod to AddStatementsToInitMethodTop. * PageCompiler.cs: code to set Meta{Description,Keywords} properties, if present. 2010-06-01 Marek Habersack <mhabersack@novell.com> * PageParser.cs: added support for MetaDescription and MetaKeywords main directive attributes * Page.cs: implemented MetaDescription and MetaKeywords 4.0 properties. svn path=/trunk/mcs/; revision=158303
2009-12-222009-12-22 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: RenderChildren is slightly more efficient now. 2009-12-22 Marek Habersack <mhabersack@novell.com> * Page.cs: form javascript declaration block is rendered only if necessary. Fixes bug #566541 * ClientScriptManager.cs: added internal property ScriptsPresent used to determine if it is necessary to render form javascript declaration block. Hidden fields block is output without indenting the controls and without rendering trailing empty line. Made Write{Begin,End}ScriptBlock slightly faster. svn path=/trunk/mcs/; revision=148840
2009-11-132009-11-13 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: reverted part of the previous patch - action is not set to the result of calling ResolveClientUrl(action) anymore. Fixes bug #554324 svn path=/trunk/mcs/; revision=146086
2009-10-302009-10-30 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HttpRequest.cs: added internal property ClientFilePath, which may have a different value than FilePath when virtual path has been rewritten, but the caller specified that the client paths should still be constructed using the original url. * HttpContext.cs: RewritePath always sets Request.FilePath, Request.ClientFilePath is set only when setClientFilePath is true. This makes client urls work correctly when url rewriting is being used. 2009-10-30 Marek Habersack <mhabersack@novell.com> * Control.cs: ResolveClientUrl takes base path from Request.ClientFilePath, so that it works correctly for rewritten urls. 2009-10-30 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs: action is built using Request.ClientFilePath (instead of Request.FilePath) and ResolveClientUrl, so that it's correct even if url rewriting is being used. svn path=/trunk/mcs/; revision=145069
2009-10-012009-09-30 Gonzalo Paniagua Javier <gonzalo@novell.com>Gonzalo Paniagua Javier
* HtmlSelectBuilder.cs: <option> allows the value of the 'selected' attribute to be a boolean or the string "selected", which is treated as "true". svn path=/trunk/mcs/; revision=143105
2009-06-162009-06-16 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlHeadBuilder.cs: use faster String.Compare overloads. * HtmlHead.cs: implemented 4.0 properties Description and Keywords. 2009-06-16 Marek Habersack <mhabersack@novell.com> * IPersistedSelector.cs: removed AspNetHostingPermission attributes from the 4.0 profile. * IDataBoundControl.cs, IDataBoundItemControl.cs, IDataBoundListControl.cs, IFieldControl.cs: added * DetailsView.cs: control implements 4.0 IDataBoundItemControl interface. * DataBoundControl.cs: implemented 4.0 property DataSourceObject and made the InternalPerformDataBinding method internal for the 4.0 profile. 2009-06-16 Marek Habersack <mhabersack@novell.com> * net_4_0_System.Web.dll.sources: Added System.Web.UI.WebControls/IDataBoundControl.cs, System.Web.UI.WebControls/IDataBoundItemControl.cs, System.Web.UI.WebControls/IDataBoundListControl.cs,, System.Web.UI.WebControls/IFieldControl.cs svn path=/trunk/mcs/; revision=136192
2009-06-122009-06-11 Gonzalo Paniagua Javier <gonzalo@novell.com>Gonzalo Paniagua Javier
* HtmlTitle.cs: HtmlTitle allows children that are not LiteralControls. Fixes bug #511882. svn path=/trunk/mcs/; revision=135958
2009-05-152009-05-15 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: if application isn't running on /, make sure we generate the correct relative path for the action form attribute. svn path=/trunk/mcs/; revision=134176
2009-04-152009-04-15 Gonzalo Paniagua Javier <gonzalo@novell.com>Gonzalo Paniagua Javier
* HtmlInputText.cs: make sure we're inside a Page before dereferencing it. svn path=/trunk/mcs/; revision=131730
2008-11-062008-11-06 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: added the undocumented, but supported, Action attribute. Fixes bug #442104 svn path=/trunk/mcs/; revision=118098
2008-10-172008-10-17 Marek Habersack <mhabersack@novell.com>Marek Habersack
* ImageMap.cs: added the SupportsEventValidation attribute to the class. Validate the event in RaisePostBackEvent (). Register for event validation in Render (). * DropDownList.cs, ListBox.cs: validate the event in LoadPostData (). * TextBox.cs: validate the event in LoadPostData (). Register for event validation in AddAttributesToRender (). * HiddenField.cs: validate the event in RaisePostDataChangedEvent. Register for event validation in Render (). * RadioButton.cs: validate the event in LoadPostData (). Register for event validation in InternalAddAttributesToRender. * CheckBox.cs, RadioButtonList.cs: validate the event in RaisePostDataChangedEvent. * Menu.cs: added the SupportsEventValidation attribute to the class. Validate the event in RaisePostBackEvent (). Register for event validation in GetClientEvent (). * DetailsView.cs, GridView.cs: validate the event in RaisePostBackEvent (). Register for validation in GetCallbackScript () and in OnPreRender * Button.cs, Table.cs, BulletedList.cs, Calendar.cs, LinkButton.cs, ImageButton.cs, TreeView.cs: validate the event in RaisePostBackEvent (). 2008-10-17 Marek Habersack <mhabersack@novell.com> * Control.cs: added the ValidateEvent internal method, used by classes descending from Control to automatically trigger event validation. * Page.cs: removed the CheckForValidationSupport method. It moved to Control.cs RaisePostBackEvent no longer validates the events, this functionality has been moved to Control.ValidateEvent. 2008-10-17 Marek Habersack <mhabersack@novell.com> * HtmlInputHidden.cs: validate the event in LoadPostDataInternal. * HtmlInputButton.cs: validate the event in RaisePostBackEventInternal (). Register for event validation in RenderAttributes () * HtmlTextArea.cs: validate the event in RaisePostBackDataChangedEvent (). * HtmlButton.cs: validate the event in RaisePostBackEvent (). Register for event validation in RenderAttributes () * HtmlAnchor.cs: validate the event in RaisePostBackEvent (). Register for event validation in RenderAttributes (). * HtmlInputRadioButton.cs, HtmlSelect.cs: validate the event in LoadPostData. * HtmlInputText.cs, HtmlInputImage.cs, HtmlInputCheckBox.cs, HtmlInputPassword.cs: validate the event in RaisePostDataChangedEvent (). 2008-10-17 Marek Habersack <mhabersack@novell.com> * MenuAdapterTest.cs: work around event validation failure in the test environment. 2008-10-17 Marek Habersack <mhabersack@novell.com> * PageTest.cs: use a custom version of HtmlInputHidden control to work around the new event validation code which doesn't work in this instance. svn path=/trunk/mcs/; revision=116231
2008-10-082008-10-07 Christian Hergert <christian.hergert@gmail.com>Christian Hergert
* System.Web.UI.HtmlControls/HtmlImage.cs: Do not render the src attribute if it is null or empty. An empty src attribute makes browsers download the current page url as the url of the image. * Test/System.Web.UI.HtmlControls/HtmlImageTest.cs: Add test to make sure the src attribute is not rendered when it is empty. svn path=/trunk/mcs/; revision=115158
2008-08-292008-08-29 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HttpApplication.cs: do not cache handlers which aren't reusable. 2008-08-29 Marek Habersack <mhabersack@novell.com> * HtmlHead.cs: call base.OnInit () If Page is null, throw an exception. svn path=/trunk/mcs/; revision=111939
2008-07-31++ System.Web.UI.HtmlControls/ChangeLog (working copy)Dean Brettle
* HtmlControl.cs (PreProcessRelativeReference), HtmlForm.cs (RenderAttributes), HtmlInputButton (RenderAttributes), HtmlInputRadioButton (RenderAttributes), HtmlSelect (RenderChildren): Encode attributes that could contain HTML special chars. * HtmlSelect (RenderChildren): HTML-encode option text. ++ Test/System.Web.UI.HtmlControls/ChangeLog (working copy) * HtmlInputButtonTest.cs, HtmlImageTest.cs, HtmlFormTest.cs, HtmlInputRadioButtonTest.cs, HtmlSelectTest.cs: Added tests for HTML-encoded of attributes. svn path=/trunk/mcs/; revision=109349
2008-06-302008-06-30 Marek Habersack <mhabersack@novell.com>Marek Habersack
* AspGenerator.cs: hush the warnings and fix invalid type comparison. * AssemblyBuilder.cs: hush the warnings and add some debugging CWLs. * AspParser.cs, AppResourcesCompiler.cs, TemplateBuildProvider.cs, CachingCompiler.cs, BaseCompiler.cs, TemplateControlCompiler.cs, SimpleBuildProvider.cs, BuildManager.cs: hush the warnings 2008-06-30 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs: hush the warnings 2008-06-30 Marek Habersack <mhabersack@novell.com> * ObjectDataSourceView.cs, Menu.cs, DataList.cs, CustomValidator.cs: hush the warnings 2008-06-30 Marek Habersack <mhabersack@novell.com> * MachineKeyRegistryStorage.cs: hush the warnings 2008-06-30 Marek Habersack <mhabersack@novell.com> * SqliteMembershipProvider.cs, SqliteRoleProvider.cs: remove unused method * SqlRoleProvider.cs, AspNetDBSchemaChecker.cs: hush the warnings 2008-06-30 Marek Habersack <mhabersack@novell.com> * UserControlParser.cs: hush the warnings and remove unnecessary code. * ControlCachePolicy.cs, PageParser.cs, ControlBuilder.cs, TemplateParser.cs, SimpleWebHandlerParser.cs, TemplateControl.cs, ApplicationFileParser.cs: hush the warnings * Page.cs: Context is protected internal in .NET 3.5 Initialize encryption IVs before returning the transform. * Control.cs: Hush the warnings. 2008-06-30 Marek Habersack <mhabersack@novell.com> * HttpRuntime.cs, HttpApplication.cs: hush the warnings * HttpContext.cs: Hush the warnings. 2008-06-30 Marek Habersack <mhabersack@novell.com> * SqliteProfileProvider.cs: remove unused method 2008-06-30 Marek Habersack <mhabersack@novell.com> * CompilationSection.cs: hush the warnings svn path=/trunk/mcs/; revision=106886
2008-06-09* HtmlAnchor.cs: Do not render empty name, target or title attribute.Gert Driesen
Removed extra check for target attribute in RenderAttributes. Use string.Empty instead of "", and check string's Length instead of comparison with "" or string.Empty. Minor code formatting. * HtmlAnchorTest.cs: Added RenderAttributes tests for empty or null HRef, Name, Target and Title. svn path=/trunk/mcs/; revision=105270
2008-06-042008-06-04 Juraj Skripksy <js@hotfeet.ch>Juraj Skripsky
* HtmlAnchor.cs (Render): Add missing call to ClientScriptManager.RegisterForEventValidation. Fixes bug #397142. svn path=/trunk/mcs/; revision=104878
2008-06-042008-06-04 Juraj Skripsky <js@hotfeet.ch>Juraj Skripsky
* HtmlAnchor.cs: Do not render an empty href attribute. svn path=/trunk/mcs/; revision=104864
2008-02-13* HtmlForm.cs: fixed action attribute in RenderAttributes under TARGET_JVMVladimir Krasnov
svn path=/trunk/mcs/; revision=95563
2008-02-062008-02-06 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlMeta.cs: render XHTML compliant tag if not in the Legacy mode. Fixes bug #3544252008-02-06 Marek Habersack <mhabersack@novell.com> svn path=/trunk/mcs/; revision=95013
2008-01-172008-01-17 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* HtmlSelect.cs: refactoring. svn path=/trunk/mcs/; revision=93138
2008-01-172008-01-17 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* HtmlSelect.cs: fix databinding (only 2.0), state management. svn path=/trunk/mcs/; revision=93134
2008-01-142008-01-14 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* HtmlSelect.cs: Fix infinite recursion (only in 2.0) found using Gendarme. svn path=/trunk/mcs/; revision=92855
2008-01-072008-01-07 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* ClientScriptManager.cs: * Control.jvm.cs: * Page.cs: * Page.jvm.cs: for TARGET_J2EE ensure page life cycle is completed in CrossPagePostBack. 2007-01-07 Igor Zelmanovich <igorz@mainsoft.com> * Button.cs: * ImageButton.cs: * LinkButton.cs: for TARGET_J2EE used CreateActionUrl instead ResolveClientUrl in GetPostBackOptions. 2007-01-07 Igor Zelmanovich <igorz@mainsoft.com> * HtmlForm.cs: refactoring. svn path=/trunk/mcs/; revision=92387
2007-12-132007-12-13 Marek Habersack <mhabersack@novell.com>Marek Habersack
* ClientScriptManager.cs, MasterPageParser.cs, Control.cs, Page.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * Menu.cs, TreeView.cs: optimize use of String.Format in OnPreRender. Speed optimization - use String.Concat instead of String.Format in some cases. * GridView.cs, DetailsView.cs: optimize use of String.Format in OnPreRender. * CheckBox.cs, AccessDataSource.cs, WebColorConverter.cs, WebControl.cs,TextBox.cs, DropDownList.cs, ValidationSummary.cs, ListBox.cs, Panel.cs, BaseValidator.cs, LinkButton.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs, HtmlButton.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * AssemblyResourceLoader.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * SessionId.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * SqlProfileProvider.cs, ProfileParser.cs: speed optimization - use String.Concat instead of String.Format in some cases. 2007-12-13 Marek Habersack <mhabersack@novell.com> * ApplicationManager.cs, ApplicationHost.cs, DefaultVirtualPathProvider.cs: speed optimization - use String.Concat instead of String.Format in some cases. svn path=/trunk/mcs/; revision=91230
2007-11-072007-11-07 Juraj Skripsky <js@hotfeet.ch>Juraj Skripsky
* HtmlForm.cs (RenderAttributes): Render ClientID of DefaultButton. Fixes bug #339426 for master pages. svn path=/trunk/mcs/; revision=89077
2007-11-062007-11-06 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: a small DetermineRenderUplevel optimization - the result is now cached in a nullable boolean variable. Render the 'onkeypress' attribute if DefaultButton is used. Fixes bug #339426. 2007-11-06 Marek Habersack <mhabersack@novell.com> * Page.cs: formatting svn path=/trunk/mcs/; revision=88959
2007-08-272007-08-27 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlForm.cs: make sure the ID is set before HtmlControls renders the attributes. Fixes bug #82596 svn path=/trunk/mcs/; revision=84871
2007-08-05* HtmlHead.cs: refactoring, used AddAttribute overload without encoding on ↵Vladimir Krasnov
known attribute values svn path=/trunk/mcs/; revision=83501
2007-07-31* HtmlControl.cs: fixed PreProcessRelativeReference, should be used ↵Vladimir Krasnov
ResolveClientUrl svn path=/trunk/mcs/; revision=83081
2007-07-162007-07-16 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlHeadBuilder.cs: the <meta> tag should be supported as well. * HtmlTitle.cs: if the tag has any children, or the render method delegate has been defined, render the children. Output the contents of Text otherwise. Fixes bug #82102 svn path=/trunk/mcs/; revision=82025
2007-05-082007-05-08 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlInputButton.cs: button of type 'reset' does not invoke OnServerClick event. 'reset' buttons clear all the controls in the form to their default values. svn path=/trunk/mcs/; revision=76912
2007-05-04Another in the series of compatibility fixes discovered thanks to the ↵Marek Habersack
QuickStarts... :) 2007-05-04 Marek Habersack <mhabersack@novell.com> * HtmlAnchor.cs: use ResolveClientUrl when generating attributes. Necessary if the control is in a master page which is in a different directory than the current page. 2007-05-04 Marek Habersack <mhabersack@novell.com> * AdRotator.cs: use the new GetPhysicalFilePath method to look up the physical path of the ad file. 2007-05-04 Marek Habersack <mhabersack@novell.com> * TemplateControlCompiler.cs: do not query the parent for TemplateSourceDirectory if we are generating code for a Master Page. 2007-05-04 Marek Habersack <mhabersack@novell.com> * Control.cs: added an internal method to resolve a physical path to a file from its virtual path considering the possibility that a control is placed in a master page, which in turn is referenced from a directory another than that of master page itself. svn path=/trunk/mcs/; revision=76665
2007-05-012007-05-01 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HttpCapabilitiesBase.cs: move the User-Agent code to a separate internal method. 2007-05-01 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs: do not use User-Agent directly, we must take ClientTarget into account. 2007-05-01 Marek Habersack <mhabersack@novell.com> * BaseValidator.cs: do not use User-Agent directly, we must take ClientTarget into account. 2007-05-01 Marek Habersack <mhabersack@novell.com> * PageParser.cs: clientTarget comparisons must be case-insensitive svn path=/trunk/mcs/; revision=76522
2007-04-272007-04-27 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlHeadBuilder.cs: support <link> tags - we need to map virtual paths that might happen in them. svn path=/trunk/mcs/; revision=76363
2007-04-182007-04-18 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* BaseValidator.cs: for TARGET_J2EE: used Page.Request.Browser to determine RenderUplevel 2007-04-18 Igor Zelmanovich <igorz@mainsoft.com> * HtmlForm.cs: for TARGET_J2EE: used Page.Request.Browser to determine RenderUplevel svn path=/trunk/mcs/; revision=75870
2007-04-172007-04-17 Marek Habersack <mhabersack@novell.com>Marek Habersack
* culevel/culevel.exe.sources: added * culevel/Makefile (thisdir): added * culevel/CompileUplevel.cs: added * Makefile (thisdir): added the culevel subdirectory to the list. 2007-04-17 Marek Habersack <mhabersack@novell.com> * Makefile (thisdir): added tools/culevel to the list of subdirectories - it must be compiled before compiling the classes since System.Web depends on it. 2007-04-17 Marek Habersack <mhabersack@novell.com> * Makefile (System.Web/UplevelHelper.cs): autogenerate the file if it doesn't exist. * System.Web.dll.sources: added the System.Web/UplevelHelper.cs file. It is autogenerated by the culevel compiler. * UplevelHelperDefinitions.xml: added default uplevel browsers definition file. This serves as input to the culevel compiler in the tools directory at the top of the mcs tree. 2007-04-17 Marek Habersack <mhabersack@novell.com> * WebUIValidation_2.0.js: added HaveRegexp () function to detect if the browser supports the RegExp class. Use GetElement () everywhere. * WebUIValidation.js: added HaveRegexp () function to detect if the browser supports the RegExp class. * webform.js: use WebForm_GetElementById everywhere. 2007-04-17 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs: use the new uplevel browser detection code. 2007-04-17 Marek Habersack <mhabersack@novell.com> * BaseValidator.cs: use the new uplevel browser detection code. svn path=/trunk/mcs/; revision=75818
2007-04-112007-04-11 Marek Habersack <mhabersack@novell.com>Marek Habersack
* HtmlInputHidden.cs: * HtmlSelect.cs: * HtmlInputText.cs: * HtmlSelect.cs: * HtmlInputText.cs: * HtmlInputImage.cs: * HtmlInputFile.cs: * HtmlInputCheckBox.cs: * HtmlInputRadioButton.cs: * HtmlInputImage.cs: do not register the control for post back processing or if it's disabled. 2007-04-11 Marek Habersack <mhabersack@novell.com> * ImageButton.cs: implement the Enable property and do not register for post back if the control isn't enabled. 2007-04-11 Marek Habersack <mhabersack@novell.com> * Page.cs: check whether control passed to RegisterRequiresPostBack implements the IPostBackDataHandler interface. svn path=/trunk/mcs/; revision=75594
2007-04-062007-04-06 Marek Habersack <mhabersack@novell.com>Marek Habersack
* ClientScriptManager.cs: render the 'type' attribute in WriteScript and do not render the 'language' attribute when in NET_2_0+ mode. 2007-04-06 Marek Habersack <mhabersack@novell.com> * HttpUtility.cs: added a constant that contains the default query parameter character. ParseQueryString supports queries with both '&' and ';' parameter separators. 2007-04-06 Marek Habersack <mhabersack@novell.com> * HtmlForm.cs: render the 'name' attribute only when in non-xhtml compliant mode. 2007-04-06 Marek Habersack <mhabersack@novell.com> * AssemblyResourceLoader.cs: use the correct query parameter separator char for the current platform version. Fixes bug #80633. svn path=/trunk/mcs/; revision=75480
2007-02-192007-02-14 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* Page.cs: for 2.0: refactoring: prepare infrastructure for Form.SubmitDisabledControls feature 2007-02-19 Igor Zelmanovich <igorz@mainsoft.com> * HtmlInputCheckBox.cs: * HtmlInputControl.cs: * HtmlInputHidden.cs: * HtmlInputRadioButton.cs: * HtmlInputText.cs: * HtmlSelect.cs: * HtmlTextArea.cs: fixed: Form.SubmitDisabledControls feature: not all HtmlInputControl need to be reenabled on client. svn path=/trunk/mcs/; revision=73102
2007-02-18add Http callback support for J2EE portlets.Eyal Alalouf
svn path=/trunk/mcs/; revision=73071
2007-01-21 * SiteMapNode.cs (GetExplicitResourceString): implement.Miguel de Icaza
* HttpContext.cs (GetGlobalResourceObject): remove unused variable. * StaticFileHandler.cs (ProcessRequest): remove unused variable. * HttpApplication.cs (ProcessError): Remove unused variable. 2007-01-20 Miguel de Icaza <miguel@novell.com> * ClientBuildManager.cs: Remove unused variable (this could be a real problem, we never use the appPhysicalTargetDir) * AssemblyBuilder.cs: Remove unused field. * AppResourceFilesCollection.cs: Remove unused field. * TemplateControlCompiler.cs (GetExpressionFromString): Remove unused variable. * AppResourcesCompiler.cs: Remove unused variable. * AppSettingsExpressionBuilder.cs (GetAppSetting): remove unused parameter. * PageCompiler.cs: Put InternalCreatePageProperty inside the NET_2_0 block to eliminate warnings. 2007-01-20 Miguel de Icaza <miguel@novell.com> * HandlerFactoryConfiguration.cs (LoadType): remove unused variable. (ctor): do not assign parent, we do not use it, keep the code for reference. 2007-01-20 Miguel de Icaza <miguel@novell.com> * ApplicationManager.cs: Remove unused variable. (ShutdownAll) remove unused variables. * ApplicationHost.cs: Protect create_dir lock 2007-01-20 Miguel de Icaza <miguel@novell.com> * SqlRoleProvider.cs: comment out unused code. * SqlMembershipProvider.cs: Removed unused variables. Remove unused variable. * AnonymousIdentificationModule.cs (ClearAnonymousIdentifier): remove unused variable. This might be a real bug. 2007-01-20 Miguel de Icaza <miguel@novell.com> * SessionStateModule.cs: Removed unused variables. 2007-01-20 Miguel de Icaza <miguel@novell.com> * SessionDictionary.cs: Removed unused variable (dirty). 2007-01-20 Miguel de Icaza <miguel@novell.com> * XhtmlTextWriter.cs: comment out unused code. * ThemeProvider.cs: comment out unused code. * DataSourceView.cs: Comment unused variable. * ClientScriptManager.cs: Put the expandoAttributes inside the 2.0 code * Control.cs: Put _templateControl inside the NET_2_0 ifdef 2007-01-20 Miguel de Icaza <miguel@novell.com> * HtmlHead.cs: comment out unused code, in particular metadata is commented out because nothing could have triggered its creation. * HtmlButton.cs: Move declaration of `csm' inside the 1.1 case. 2007-01-20 Miguel de Icaza <miguel@novell.com> * DataControlFieldCollection.cs (RemoveAt): remove unused variable. * RoleGroupCollection.cs (OnValidate): Flag as protected, as it should not show up. * RadioButton.cs (RaisePostDataChangedEvent): This method was not used in 1.0, so put the whole method in 2.0 2007-01-20 Miguel de Icaza <miguel@novell.com> * WebPart.cs: Remove * PersonalizableAttribute.cs: Remove extra API that was wrong as well. 2006-11-28 Miguel de Icaza <miguel@novell.com> * WebPart.cs: 2007-01-20 Miguel de Icaza <miguel@novell.com> * FileUtils.cs (CreateTemporaryFile): Remove unused variable. svn path=/trunk/mcs/; revision=71399
2007-01-16* HtmlLink.cs: fixed RenderAttributes, href should be resolvedVladimir Krasnov
svn path=/trunk/mcs/; revision=71151
2007-01-14Add portal supportEyal Alalouf
svn path=/trunk/mcs/; revision=70988
2007-01-14process relative URL to the image.Eyal Alalouf
svn path=/trunk/mcs/; revision=70976
2007-01-072007-01-07 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* HtmlInputRadioButton.cs: fixed: LoadPostData. svn path=/trunk/mcs/; revision=70594
2007-01-072007-01-07 Igor Zelmanovich <igorz@mainsoft.com>Igor Zelmanovich
* HtmlImputImage.cs: fixed: OnServerClick. svn path=/trunk/mcs/; revision=70592