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
path: root/mcs
AgeCommit message (Collapse)Author
2005-07-262005-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* FormsAuthentication.cs: the init_vector must be the same accross restarts, otherwise the cookie does not work even when a decryption key is provided. Initialize it to the bytes of the cookie name. Fixes bug #75635. svn path=/branches/mono-1-1-8/mcs/; revision=47701
2005-07-26From HEADGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=47672
2005-07-26From HEADGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=47671
2005-07-042005-07-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* WebConnectionStream.cs: initiate writing the body before trying to read. This fixes the performance problems observed in web services. Closes bug #75455. svn path=/branches/mono-1-1-8/mcs/; revision=46897
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46811
2005-07-01we have no System.Configuration assembly in this branch yetGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46809
2005-07-01removed some files from hereGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46808
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46803
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46802
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46801
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46800
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46799
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46798
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46797
2005-07-01from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46796
2005-07-01backport from headGonzalo Paniagua Javier
svn path=/branches/mono-1-1-8/mcs/; revision=46795
2005-06-152005-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* PageParser.cs: don't try to compile the master page if it wan't provided. Use MapPath from the base classes instead of the long version. Fixes bug #75269 that prevented xsp2 from working properly. svn path=/tags/mono-1-1-8/mcs/; revision=46007
2005-06-13bumpBen Maurer
svn path=/trunk/mcs/; revision=45907
2005-06-132005-06-13 Peter Bartok <pbartok@novell.com>Peter Dennis Bartok
* Icon.cs(ToBitmap): If the icon is not 32bits, create the bitmap through an intermediary step, which turns it into a 32bit version. Fixes #75254 svn path=/trunk/mcs/; revision=45902
2005-06-13ComIStreamMarshaler.cs: Dispose releases managed objects as well, removed ↵Kornél Pál
some unnecessary code; ComIStreamWrapper.cs: Reworked Seek method to proper support of positions beyond the size of stream svn path=/trunk/mcs/; revision=45901
2005-06-132005-06-13 Lluis Sanchez Gual <lluis@novell.com> Lluis Sanchez
* MasterPage.cs: Clear the default content of placeholders before adding the page content. Fixes bug #75193. svn path=/trunk/mcs/; revision=45886
2005-06-132005-06-13 Lluis Sanchez Gual <lluis@novell.com>Lluis Sanchez
* Directive.cs: Register the MasterType directive. * PageCompiler.cs: If a MasterType is specified, add a type specific Master property. All this fixes bug #75192. svn path=/trunk/mcs/; revision=45885
2005-06-132005-06-13 Lluis Sanchez Gual <lluis@novell.com>Lluis Sanchez
* PageParser.cs: Added MasterType property. Get the type from the MasterType directive. * MasterPageParser.cs: Added GetCompiledMasterType method. svn path=/trunk/mcs/; revision=45884
2005-06-13 * XplatUIX11.cs: Override SetAllowDrop on X11 so an error messageJackson Harper
isn't printed when the user enables dropping. (X11 does accept drops). svn path=/trunk/mcs/; revision=45883
2005-06-13 Override SetAllowDrop on X11 so an error message isn't printedJackson Harper
when the user enables dropping. (X11 does accept drops). svn path=/trunk/mcs/; revision=45882
2005-06-13 * TreeView.cs: Remove some TODOS.Jackson Harper
svn path=/trunk/mcs/; revision=45878
2005-06-13merged from mcsMarek Safar
svn path=/trunk/mcs/; revision=45877
2005-06-132005-06-13 Lluis Sanchez Gual <lluis@novell.com>Lluis Sanchez
* RealProxy.cs: Report invalid return type of values using InvalidCastException, like MS.NET. Fixes bug #75203. svn path=/trunk/mcs/; revision=45876
2005-06-132005-06-13 Lluis Sanchez Gual <lluis@novell.com>Lluis Sanchez
* Formatter.cs: Properly initialize protected fields. Fixes bug #75233. svn path=/trunk/mcs/; revision=45874
2005-06-13 * SWF.csproj:Jackson Harper
* System.Windows.Forms.dll.sources: Add MdiClientContext to the build. svn path=/trunk/mcs/; revision=45873
2005-06-13 * System.Windows.Forms.dll.sources: Add MdiClientContext to theJackson Harper
build. * Form.cs: Hook into the mdi framework. * MdiClient.cs: Use the base control collections add method so parents get setup correctly. Set the default back colour and dock style. * MdiChildContext.cs: New class, this bad actor handles an instance of an MDI window. Right now there is only basic support. You can drag, close, and resize windows. Minimize and Maximize are partially implemented. svn path=/trunk/mcs/; revision=45872
2005-06-13Let's wait with this until after the release.Martin Baulig
svn path=/trunk/mcs/; revision=45871
2005-06-13Mon Jun 13 16:57:38 CEST 2005Martin Baulig
svn path=/trunk/mcs/; revision=45870
2005-06-132005-06-13 Martin Baulig <martin@ximian.com>Martin Baulig
* typemanager.cs (TypeManager.GetTypeName): New public function; use this everywhere instead of accessing `Type.FullName' directly; this is neccessary since `Type.FullName' is broken in .NET 2.x. svn path=/trunk/mcs/; revision=45865
2005-06-132005-06-13 Martin Baulig <martin@ximian.com>Martin Baulig
* MonoType.cs (MonoType.getFullName): Added `bool assembly_qualified' argument. (MonoType.AssemblyQualifiedName): The interncall now adds the assembly name, so we don't need to do it here. (MonoType.FullName): Use the new getFullName() API for 2.0. svn path=/trunk/mcs/; revision=45864
2005-06-132005-06-13 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* RuntimeEnvironmentTest.cs: Commented an assert than wasn't true when doing a "make distcheck". svn path=/trunk/mcs/; revision=45862
2005-06-13Updated to be more consistentMarek Safar
svn path=/trunk/mcs/; revision=45861
2005-06-132005-06-13 Marek Safar <marek.safar@seznam.cz>Marek Safar
* compiler-tester: Add check for correct error test case syntax. svn path=/trunk/mcs/; revision=45860
2005-06-13 * XplatUIX11.cs: Mash numbers together properly, otherwise we getJackson Harper
freaky when both vals are negative. NOTE: There are probably other places in XplatUIX11 that this needs to be done. svn path=/trunk/mcs/; revision=45858
2005-06-132005-06-13 Jordi Mas i Hernandez <jordi@ximian.com>Jordi Mas i Hernandez
* DataGrid.cs: implement missing methods, move KeyboardNavigation * DataGridColumnStyle.cs: fixes signature svn path=/trunk/mcs/; revision=45855
2005-06-132005-06-13 Sureshkumar T <tsureshkumar@novell.com>Sureshkumar T
* DataRowCollection.cs: Find (keys, version): Added an overload to find keys matching given DataViewRowState filter. Used in DataSet.Merge and DataTable.LoadDataRow. * DataTable.cs: LoadDataRow (values, LoadOption): Use DataRowCollection.Find (object [], DataViewRowState) overload. * DataRow.cs: - CopyValuesToRow: Create target "records" out of loop. Records should be created once, not for each column. Dispose Unused target records. * MergeManager.cs: - MergeRow: Find rows with matching original records. If not, select with current values. - MergeRow: While adding new row, use NewNotInitializedRow. * ForeignKeyConstraint.cs: IsConstraintViolated: should not check if EnforceConstraints is false. svn path=/trunk/mcs/; revision=45854
2005-06-132005-06-13 Ritvik Mayank <mritvik@novell.com>Ritvik Mayank
* Changed property mime-type and style-eol of TextBoxTest.cs svn path=/trunk/mcs/; revision=45853
2005-06-13* AssemblyBuilderTest.cs: Setting KeyPair of AssemblyName has currently noGert Driesen
effect on PublicKey(Token) and FullName of AssemblyName of the AssemblyBuilder. Test for bug #75246. svn path=/trunk/mcs/; revision=45852
2005-06-13* AssemblyBuilderTest.cs: Removed inheritance from deprecated Assertion class,Gert Driesen
use Assert class instead. svn path=/trunk/mcs/; revision=45851
2005-06-13alrightGonzalo Paniagua Javier
svn path=/trunk/mcs/; revision=45850
2005-06-13mime-type was wrong. Sigh.Gonzalo Paniagua Javier
svn path=/trunk/mcs/; revision=45849
2005-06-13* VBCodeCompiler.cs: Temp source files should have extension ".vb".Gert Driesen
svn path=/trunk/mcs/; revision=45846
2005-06-13* CSharpCodeCompiler.cs: Temp source files should have extension ".cs".Gert Driesen
svn path=/trunk/mcs/; revision=45845
2005-06-132005-06-13 Ritvik Mayank <mritvik@novell.com>Ritvik Mayank
* Test/System.Windows.Forms/ButtonTest.cs : Added tests for Button * Test/System.Windows.Forms/TextBoxTest.cs : Added tests for TextBox * System.Windows.Forms_test.dll.sources : Added ButtonTest.cs and TextBoxTest.cs to .sources file svn path=/trunk/mcs/; revision=45844
2005-06-13To handle Goto in Try, Catch blockManjula GHM
svn path=/trunk/mcs/; revision=45843