mono.git
17 years agoThu Feb 1 12:29:23 CET 2007 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Thu, 1 Feb 2007 11:33:31 +0000 (11:33 -0000)]
Thu Feb 1 12:29:23 CET 2007 Paolo Molaro <lupus@ximian.com>

* configure.in: include LIBS in libmono_ldflags on all archs.
* mint.pc.in, mono-uninstalled.pc.in, mono.pc.in: removed extra -lm.

svn path=/trunk/mono/; revision=72083

17 years agoChanged SocketTest.cs to SocketTest.jvm.cs in project's file.
Ilya Kharmatsky [Thu, 1 Feb 2007 11:05:28 +0000 (11:05 -0000)]
Changed SocketTest.cs to SocketTest.jvm.cs in project's file.

svn path=/trunk/mcs/; revision=72080

17 years ago2007-02-01 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Thu, 1 Feb 2007 10:03:50 +0000 (10:03 -0000)]
2007-02-01 Igor Zelmanovich <igorz@mainsoft.com>

* ValidationSammary.cs: fixed:
control is rendered even if there is no validators on the page.
important if the page contain a client side script that refer to the
id of the validation summary div.

svn path=/trunk/mcs/; revision=72078

17 years ago2007-01-31 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Thu, 1 Feb 2007 08:58:19 +0000 (08:58 -0000)]
2007-01-31  Atsushi Enomoto <atsushi@ximian.com>

* DTMXPathNavigator2.cs : cosmetic performance improvement.

svn path=/trunk/mcs/; revision=72076

17 years agoRestore address test that was there before 71806
Miguel de Icaza [Thu, 1 Feb 2007 06:00:09 +0000 (06:00 -0000)]
Restore address test that was there before 71806

svn path=/trunk/mcs/; revision=72075

17 years ago2007-02-01 Miguel de Icaza <miguel@novell.com>
Miguel de Icaza [Thu, 1 Feb 2007 05:40:11 +0000 (05:40 -0000)]
2007-02-01  Miguel de Icaza  <miguel@novell.com>

* configure.in: Naive attempt at getting -ldl in mono.pc

svn path=/trunk/mono/; revision=72074

17 years agoSmall fix to the parser
Miguel de Icaza [Thu, 1 Feb 2007 05:19:14 +0000 (05:19 -0000)]
Small fix to the parser

svn path=/trunk/mcs/; revision=72072

17 years ago * X11Dnd.cs: Take the keyboard on init to reduce coupling with
Jackson Harper [Wed, 31 Jan 2007 22:49:36 +0000 (22:49 -0000)]
    * X11Dnd.cs: Take the keyboard on init to reduce coupling with
        XplatUIX11.
        * XplatUIX11.cs: Give teh keyboard to teh dnd.

        * X11Display.cs: Give teh keyboard to teh dnd.

svn path=/trunk/mcs/; revision=72061

17 years ago* StreamReader.cs: Removed checks for non-existing directory or file,
Gert Driesen [Wed, 31 Jan 2007 22:33:10 +0000 (22:33 -0000)]
* StreamReader.cs: Removed checks for non-existing directory or file,
since these checks are also performed in FileStream.

Note: ChangeLog went in with separate commit.

svn path=/trunk/mcs/; revision=72060

17 years ago* StreamReader.cs: Removed checks for non-existing directory or file,
Gert Driesen [Wed, 31 Jan 2007 22:31:10 +0000 (22:31 -0000)]
* StreamReader.cs: Removed checks for non-existing directory or file,
since these checks are also performed in FileStream.

svn path=/trunk/mcs/; revision=72058

17 years ago* Encoding.cs: Also set ParamName of the ArgumentException.
Gert Driesen [Wed, 31 Jan 2007 22:22:48 +0000 (22:22 -0000)]
* Encoding.cs: Also set ParamName of the ArgumentException.
* EncodingTest.cs: Improved test for not-supported encoding.

svn path=/trunk/mcs/; revision=72057

17 years agoFixed typo.
Gert Driesen [Wed, 31 Jan 2007 21:37:23 +0000 (21:37 -0000)]
Fixed typo.

svn path=/trunk/mcs/; revision=72056

17 years ago * X11Dnd.cs: Use IDataObject instead of the DataObject class.
Jackson Harper [Wed, 31 Jan 2007 21:19:06 +0000 (21:19 -0000)]
    * X11Dnd.cs: Use IDataObject instead of the DataObject class.
        - Remove some debug code.

svn path=/trunk/mcs/; revision=72055

17 years ago * XplatUIX11.cs: If you set the override cursor during a grab,
Jackson Harper [Wed, 31 Jan 2007 21:10:08 +0000 (21:10 -0000)]
    * XplatUIX11.cs: If you set the override cursor during a grab,
        * it
        should actually override the grab cursor.  This comes into play
        when you are setting custom cursors in a DND feedback method.

svn path=/trunk/mcs/; revision=72054

17 years ago* EncodingTest.cs: Added tests for GetEncoding.
Gert Driesen [Wed, 31 Jan 2007 20:58:30 +0000 (20:58 -0000)]
* EncodingTest.cs: Added tests for GetEncoding.
* Encoding.cs: In GetEncoding (int) do not allow codepage value below zero
and above 0xffff. Modified NotSupportedException to ArgumentException in
GetEncoding (string).
 * corlib_test.dll.sources: Added EncodingTest.cs.

svn path=/trunk/mcs/; revision=72052

17 years ago * X11Dnd.cs: Add support for handling the QueryContinue and
Jackson Harper [Wed, 31 Jan 2007 19:31:01 +0000 (19:31 -0000)]
    * X11Dnd.cs: Add support for handling the QueryContinue and
        GiveFeedback events.
        - Cancel drag and drop actions when the escape key is clicked.
        * XplatUIX11.cs: Let the dnd subsystem get key events, so that
        * it
        can handle the ESCAPE key.
        - Allow dnd to swallow BUTTONUP messages if it needs to.  This
          is
        done when dnd events are continued after the button is released.
        - Add a new helper method so that dnd can translate key events.

svn path=/trunk/mcs/; revision=72049

17 years ago* FileStream.cs: Always resolve to absolute paths for exceptions, when not
Gert Driesen [Wed, 31 Jan 2007 19:26:17 +0000 (19:26 -0000)]
* FileStream.cs: Always resolve to absolute paths for exceptions, when not
in anonymous mode.
* FileStreamTest.cs: Added and improved tests to verify whether the
reported exceptions match that of MS.

svn path=/trunk/mcs/; revision=72048

17 years agoPrepare for Mainsoft.Web
Marek Habersack [Wed, 31 Jan 2007 19:24:23 +0000 (19:24 -0000)]
Prepare for Mainsoft.Web

svn path=/trunk/mono/; revision=72047

17 years ago* StreamReaderTest.cs: Use Assert class instead of deprecation
Gert Driesen [Wed, 31 Jan 2007 18:34:13 +0000 (18:34 -0000)]
*  StreamReaderTest.cs: Use Assert class instead of deprecation
Assertion. Clean-up some tests.

svn path=/trunk/mcs/; revision=72045

17 years agosupport DataDirectory in domain data
Marek Habersack [Wed, 31 Jan 2007 18:34:01 +0000 (18:34 -0000)]
support DataDirectory in domain data

svn path=/trunk/mcs/; revision=72044

17 years agoMoved from olive repository
Marek Safar [Wed, 31 Jan 2007 18:14:49 +0000 (18:14 -0000)]
Moved from olive repository

svn path=/trunk/mcs/; revision=72042

17 years ago2007-01-31 Zoltan Varga <vargaz@gmail.com>
Zoltan Varga [Wed, 31 Jan 2007 18:12:50 +0000 (18:12 -0000)]
2007-01-31  Zoltan Varga  <vargaz@gmail.com>

* mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
ends.

* mini-<ARCH>.c: Use mono_is_regsize_var ().

svn path=/trunk/mono/; revision=72041

17 years ago2007-01-31 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Wed, 31 Jan 2007 16:07:13 +0000 (16:07 -0000)]
2007-01-31  Sebastien Pouliot  <sebastien@ximian.com>

* TestGraphics.cs: Add test case for trailing spaces when calling
MeasureString. #80680

svn path=/trunk/mcs/; revision=72037

17 years ago2007-01-31 Jonathan Pobst <monkey@jpobst.com>
Jonathan Pobst [Wed, 31 Jan 2007 16:00:42 +0000 (16:00 -0000)]
2007-01-31  Jonathan Pobst  <monkey@jpobst.com>

* ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
Mark BehaviorAutoSize as NotWorking, it is font dependent.

svn path=/trunk/mcs/; revision=72035

17 years agoExcluded the tests, which are not working under Grasshopper (all changes under 'TARGE...
Ilya Kharmatsky [Wed, 31 Jan 2007 15:20:18 +0000 (15:20 -0000)]
Excluded the tests, which are not working under Grasshopper (all changes under 'TARGET_JVM' directive)

svn path=/trunk/mcs/; revision=72030

17 years agoAdded SocketTest.jvm.cs - as a fork of SocketTest.cs, due to a big number of 'TARGET_...
Ilya Kharmatsky [Wed, 31 Jan 2007 15:07:34 +0000 (15:07 -0000)]
Added SocketTest.jvm.cs - as a fork of SocketTest.cs, due to a big number of 'TARGET_JVM' specific changes.

svn path=/trunk/mcs/; revision=72028

17 years agoAdditional stubs for net_2_0 methods inserted, bugs fixes (introduced help
Ilya Kharmatsky [Wed, 31 Jan 2007 15:03:59 +0000 (15:03 -0000)]
Additional stubs for net_2_0 methods inserted, bugs fixes (introduced help
method - EnsureStillUsable)

svn path=/trunk/mcs/; revision=72027

17 years agoCompile also IncludeHelperServlet.cs
Noam Lampert [Wed, 31 Jan 2007 14:53:10 +0000 (14:53 -0000)]
Compile also IncludeHelperServlet.cs

svn path=/trunk/mcs/; revision=72026

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 14:16:39 +0000 (14:16 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* CheckBoxList.cs:
* DropDownList.cs:
* ListBox.cs:
* RadioButtonList.cs:
EnsureDataBound is called when PostData is processed to restore
'state' of control if EnableViewState is false

svn path=/trunk/mcs/; revision=72025

17 years ago2007-01-31 Alexander Olk <alex.olk@googlemail.com>
Alexander Olk [Wed, 31 Jan 2007 13:45:54 +0000 (13:45 -0000)]
2007-01-31  Alexander Olk  <alex.olk@googlemail.com>

* FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
make it more obvious what is happening.

svn path=/trunk/mcs/; revision=72024

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 13:19:47 +0000 (13:19 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* GridView.cs: fixed:
RowDataBound is fired for PagerRow.
Styles are applied using MergeWith instead CopyFrom
to allow using custom styles for rows in code-behind.

svn path=/trunk/mcs/; revision=72022

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 12:23:11 +0000 (12:23 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* GridView.cs: fixed: RowCommand event is fired properly.

svn path=/trunk/mcs/; revision=72020

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 11:31:46 +0000 (11:31 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* GridView.cs: fixed: created rows are added in table after initialization.
* BoundField.cs:

svn path=/trunk/mcs/; revision=72018

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 09:14:58 +0000 (09:14 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* Panel.cs: fixed 'background-image' attribute.

svn path=/trunk/mcs/; revision=72015

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 08:50:36 +0000 (08:50 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* BaseDataBoundControl.cs:
* DataBoundControl.cs:
fixed DataBinding flow: RequiresDataBinding is set to false in
PerformSelect().
* HierarchicalDataBoundControl.cs: implemented MarkAsDataBound().

svn path=/trunk/mcs/; revision=72014

17 years ago2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Wed, 31 Jan 2007 08:39:45 +0000 (08:39 -0000)]
2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>

* DetailsView.cs:
* FormView.cs:
fixed DataBinding flow for Insert mode.

svn path=/trunk/mcs/; revision=72013

17 years ago2007-01-30 Mark Mason <mason@broadcom.com>
Mark Mason [Tue, 30 Jan 2007 23:04:15 +0000 (23:04 -0000)]
2007-01-30 Mark Mason <mason@broadcom.com>

   * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
   * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
   * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
   beginning support for CEE_JMP [not quite working yet]
   * tramp-mips.c: LMF handling now works

These changes submitted under the MIT/X11 license.

svn path=/trunk/mono/; revision=72007

17 years ago2007-01-31 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 30 Jan 2007 22:12:37 +0000 (22:12 -0000)]
2007-01-31  Atsushi Enomoto  <atsushi@ximian.com>

* configure.in : w32 build fix; add -lwinmm as Tor suggested.

svn path=/trunk/mono/; revision=72004

17 years agoTo fix the build
Miguel de Icaza [Tue, 30 Jan 2007 21:45:45 +0000 (21:45 -0000)]
To fix the build

svn path=/trunk/mcs/; revision=72002

17 years ago Makefile: Add System.Runtime.Serialization.Formatters.Soap.dll and System.Xml.dll...
Sebastien Pouliot [Tue, 30 Jan 2007 21:00:02 +0000 (21:00 -0000)]
 Makefile: Add System.Runtime.Serialization.Formatters.Soap.dll and System.Xml.dll for building the unit tests.

svn path=/trunk/mcs/; revision=71999

17 years ago2007-01-30 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 30 Jan 2007 20:58:32 +0000 (20:58 -0000)]
2007-01-30  Sebastien Pouliot  <sebastien@ximian.com>

* TestBitmap.cs: Add a test cases for SoapFormatter and Xml
serialization, which "works" under 2.0 but not under 1.1.
* TestImage.cs: Add test case for XmlSerializer on Image type, which
"works" under 2.0 but not under 1.1.

svn path=/trunk/mcs/; revision=71998

17 years ago * X11Display.cs: port over jackson's XplatUIX11.cs fix for DND
Chris Toshok [Tue, 30 Jan 2007 19:42:56 +0000 (19:42 -0000)]
* X11Display.cs: port over jackson's XplatUIX11.cs fix for DND
ButtonRelease handling.

2007-01-30  Chris Toshok  <toshok@ximian.com>

svn path=/trunk/mcs/; revision=71997

17 years ago * XplatUIX11.cs: Don't break when handling button release in
Jackson Harper [Tue, 30 Jan 2007 19:24:24 +0000 (19:24 -0000)]
    * XplatUIX11.cs: Don't break when handling button release in
        * drag
        and drop operations. We need that BUTTONUP message to get
through
        so capture is released.
        * X11Dnd.cs: We don't need to manually grab the pointer anymore,
        this is handled automatically when the mouse is down.

svn path=/trunk/mcs/; revision=71994

17 years ago * FileDialog.cs: OnClickCancelButton gets called whenever the
Jackson Harper [Tue, 30 Jan 2007 18:18:47 +0000 (18:18 -0000)]
    * FileDialog.cs: OnClickCancelButton gets called whenever the
        * dialog
        is closed, so we need to make sure that we aren't changing the
        dialog result when the OK (Open or Save) button has been clicked
        and we are closing the window ourselves.  Note we don't need to
        worry about the cache being written in this case, because it was
        already done in the previous FilOk call.

svn path=/trunk/mcs/; revision=71990

17 years ago2007-01-30 Chris Toshok <toshok@ximian.com>
Chris Toshok [Tue, 30 Jan 2007 18:18:23 +0000 (18:18 -0000)]
2007-01-30  Chris Toshok  <toshok@ximian.com>

* X11Hwnd.cs: port over the XplatUIX11.cs patch for SetIcon.

svn path=/trunk/mcs/; revision=71989

17 years ago* webform.js: fixed WebForm_DoPostback, no need to find form if url is null
Vladimir Krasnov [Tue, 30 Jan 2007 18:03:19 +0000 (18:03 -0000)]
* webform.js: fixed WebForm_DoPostback, no need to find form if url is null

svn path=/trunk/mcs/; revision=71987

17 years ago2007-01-30 Zoltan Varga <vargaz@gmail.com>
Zoltan Varga [Tue, 30 Jan 2007 17:38:11 +0000 (17:38 -0000)]
2007-01-30  Zoltan Varga  <vargaz@gmail.com>

* mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.

* mini.h (NULLIFY_INS): New macro.

svn path=/trunk/mono/; revision=71986

17 years agoAdd test
Miguel de Icaza [Tue, 30 Jan 2007 17:23:02 +0000 (17:23 -0000)]
Add test

svn path=/trunk/mcs/; revision=71985

17 years ago2007-01-30 Atsushi Enomoto <atsushi@ximian.com>
Miguel de Icaza [Tue, 30 Jan 2007 17:22:41 +0000 (17:22 -0000)]
2007-01-30  Atsushi Enomoto  <atsushi@ximian.com>

* TimeZone.cs: According to the docs, we should not throw when
converting to Localtime if we are a negative value.  Instead we

svn path=/trunk/mcs/; revision=71984

17 years ago* HttpResponse.cs: fixed TARGET_J2EE part of Redirect for portlet
Vladimir Krasnov [Tue, 30 Jan 2007 17:17:27 +0000 (17:17 -0000)]
* HttpResponse.cs: fixed TARGET_J2EE part of Redirect for portlet

svn path=/trunk/mcs/; revision=71982

17 years ago2007-01-30 Miguel de Icaza <miguel@novell.com>
Miguel de Icaza [Tue, 30 Jan 2007 16:31:20 +0000 (16:31 -0000)]
2007-01-30  Miguel de Icaza  <miguel@novell.com>

* cs-parser.jay (anonymous_method_expression): move the
before/after productions to the start_anonymous and end_anonymous
methods so the code can be reused for lambda functions.

(lambda_expression_body): wrap expressions implicitly into a
block.

(block): factor out the setup/teardown of parsing a block so we
can reuse that in lambda_expression_body

(lambda_expression): use new anonymous method helper methods.

2007-01-29  Miguel de Icaza  <miguel@novell.com>

* cs-parser.jay: oob_stack make it static (am guessing that is why
we no longer initialize it anymore) and reuse it across
instances.

2007-01-30  Miguel de Icaza  <miguel@novell.com>

* anonymous.cs
(AnonymousMethodExpression.ImplicitStandardConversionExists): turn
this into a virtual method, so we can override it in LambdaExpression.

* driver.cs: Improve diagnostics in case of failure.

* cs-tokenizer.cs: Instead of trying to parse a type and a name,
write a function that is slightly more complex and that parses:

type identifier [, type identifier]* )

The old function would return incorrectly a OPEN_PARENS_LAMBDA for
this expression:

(canEmpty ? i >= 0 : i > 0)

svn path=/trunk/mcs/; revision=71976

17 years ago2007-01-30 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Tue, 30 Jan 2007 16:11:50 +0000 (16:11 -0000)]
2007-01-30 Igor Zelmanovich <igorz@mainsoft.com>

* CheckBox.cs:
does not RegisterRequiresPostBack if is not enabled.

svn path=/trunk/mcs/; revision=71973

17 years ago2007-01-30 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 30 Jan 2007 16:11:47 +0000 (16:11 -0000)]
2007-01-30  Sebastien Pouliot  <sebastien@ximian.com>

* TestBitmap.cs: Add a test case to serialize and deserialize a icon,
which use a decoder-only codec.

svn path=/trunk/mcs/; revision=71972

17 years ago2007-01-30 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 30 Jan 2007 16:10:08 +0000 (16:10 -0000)]
2007-01-30  Sebastien Pouliot  <sebastien@ximian.com>

* Image.cs: Fix serialization of Image/Bitmap that contains ICO. In
this case the image is serialized as a PNG bitmap (note: the ICO codec
is a decoder-only codec).

svn path=/trunk/mcs/; revision=71971

17 years ago2007-01-30 Adar Wesley <adarw@mainsofot.com>
Adar Wesley [Tue, 30 Jan 2007 16:01:16 +0000 (16:01 -0000)]
2007-01-30  Adar Wesley <adarw@mainsofot.com>

        * FontUnitTest.cs: fixed implementation of IFormatProvider

svn path=/trunk/mcs/; revision=71970

17 years ago2007-01-30 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Tue, 30 Jan 2007 16:00:11 +0000 (16:00 -0000)]
2007-01-30 Igor Zelmanovich <igorz@mainsoft.com>

* TreeView.cs:
* TreeView.js:
fixed PopulateOnDemand: used UniqueID to call WebForms_DoCallBack().

svn path=/trunk/mcs/; revision=71969

17 years agoTue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Tue, 30 Jan 2007 15:34:33 +0000 (15:34 -0000)]
Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>

* mini.c: statistical profiler fix for windows, patch
from Tor Lillqvist (tml@novell.com).

svn path=/trunk/mono/; revision=71968

17 years ago2007-01-30 Adar Wesley <adarw@mainsoft.com>
Adar Wesley [Tue, 30 Jan 2007 14:59:58 +0000 (14:59 -0000)]
2007-01-30  Adar Wesley <adarw@mainsoft.com>

        * VirtualPathUtility.cs: fixed exceptions thrown from Combine
        so they are compatible with MS.

        * UrlUtils.cs: fixed GetFile to throw right exception

svn path=/trunk/mcs/; revision=71966

17 years agoUpdated list of files in Grasshopper's project file.
Ilya Kharmatsky [Tue, 30 Jan 2007 14:55:39 +0000 (14:55 -0000)]
Updated list of files in Grasshopper's project file.

svn path=/trunk/mcs/; revision=71965

17 years agoremove client side stack trace
Konstantin Triger [Tue, 30 Jan 2007 14:25:20 +0000 (14:25 -0000)]
remove client side stack trace

svn path=/trunk/mono/; revision=71960

17 years ago * local-propagation.c: Fix bug 80591.
Massimiliano Mantione [Tue, 30 Jan 2007 14:15:41 +0000 (14:15 -0000)]
* local-propagation.c: Fix bug 80591.

svn path=/trunk/mono/; revision=71958

17 years agoIn Dns.cs implemented proper exception handling when trying to resolve not existing...
Ilya Kharmatsky [Tue, 30 Jan 2007 13:41:25 +0000 (13:41 -0000)]
In Dns.cs implemented proper exception handling when trying to resolve not existing address (under 'TARGET_JVM')

svn path=/trunk/mcs/; revision=71957

17 years agoFix last changes for TARGET_JVM.
Eyal Alalouf [Tue, 30 Jan 2007 13:29:26 +0000 (13:29 -0000)]
Fix last changes for TARGET_JVM.

svn path=/trunk/mcs/; revision=71955

17 years agoFix last changes for TARGET_JVM.
Eyal Alalouf [Tue, 30 Jan 2007 13:18:15 +0000 (13:18 -0000)]
Fix last changes for TARGET_JVM.

svn path=/trunk/mcs/; revision=71953

17 years ago2007-01-30 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 30 Jan 2007 11:07:40 +0000 (11:07 -0000)]
2007-01-30  Atsushi Enomoto <atsushi@ximian.com>

* Expression.cs : typo. Close #80669

svn path=/trunk/mcs/; revision=71948

17 years agoFix tests for TARGET_JVM.
Boris Kirzner [Tue, 30 Jan 2007 10:25:31 +0000 (10:25 -0000)]
Fix tests for TARGET_JVM.

svn path=/trunk/mcs/; revision=71947

17 years agomake line-endings uniform
Raja R Harinath [Tue, 30 Jan 2007 09:48:47 +0000 (09:48 -0000)]
make line-endings uniform

svn path=/trunk/mcs/; revision=71946

17 years agofix line endings
Raja R Harinath [Tue, 30 Jan 2007 09:47:17 +0000 (09:47 -0000)]
fix line endings

svn path=/trunk/mcs/; revision=71945

17 years ago2007-01-30 Rolf Bjarne Kvinge <RKvinge@novell.com>
Rolf Bjarne Kvinge [Tue, 30 Jan 2007 09:40:03 +0000 (09:40 -0000)]
2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>

* DateTimePicker.cs: Remove a warning.
* ComboBox.cs: Remove a couple of warnings.
2007-01-29  Chris Toshok  <toshok@ximian.com>

svn path=/trunk/mcs/; revision=71944

17 years ago2007-01-30 yonik <yonik@mainsoft.com>
Yoni Klain [Tue, 30 Jan 2007 08:50:17 +0000 (08:50 -0000)]
2007-01-30  yonik <yonik@mainsoft.com>
* View2007-01-30  yonik <yonik@mainsoft.com>

svn path=/trunk/mcs/; revision=71943

17 years ago2007-01-29 Chris Toshok <toshok@ximian.com>
Chris Toshok [Tue, 30 Jan 2007 06:55:26 +0000 (06:55 -0000)]
2007-01-29  Chris Toshok  <toshok@ximian.com>

* ControlHandleTest.cs: make this compile against mono.  we can
remove the __MonoCS__ ifdefs as we add properties.  Also, split
out the Show() tests because they were failing and I wanted to see
which other tests were passing.

svn path=/trunk/mcs/; revision=71941

17 years ago2007-01-30 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 30 Jan 2007 06:19:53 +0000 (06:19 -0000)]
2007-01-30  Atsushi Enomoto  <atsushi@ximian.com>

        * HttpWebRequestTest.cs : use correct attribute.

svn path=/trunk/mcs/; revision=71940

17 years agox2007-01-29 Chris Toshok <toshok@ximian.com>
Chris Toshok [Mon, 29 Jan 2007 23:40:40 +0000 (23:40 -0000)]
x2007-01-29  Chris Toshok  <toshok@ximian.com>

* XplatUIX11.cs: don't crash, and remove the icon if the user has
set one, if SetIcon is passed a null icon.

svn path=/trunk/mcs/; revision=71932

17 years agoremove extra stuff
Marek Habersack [Mon, 29 Jan 2007 21:55:56 +0000 (21:55 -0000)]
remove extra stuff

svn path=/trunk/mcs/; revision=71922

17 years ago2007-01-29 Jonathan Pobst <monkey@jpobst.com>
Jonathan Pobst [Mon, 29 Jan 2007 21:34:02 +0000 (21:34 -0000)]
2007-01-29  Jonathan Pobst  <monkey@jpobst.com>

* DefaultLayout.cs: MdiClient should always be added last, it should
never Dock:Fill under other controls.  [Fixes a part of bug #80223]

svn path=/trunk/mcs/; revision=71913

17 years ago* HttpWebRequestTest.cs: Added tests for case-sensitive dealing with
Gert Driesen [Mon, 29 Jan 2007 21:25:54 +0000 (21:25 -0000)]
* HttpWebRequestTest.cs: Added tests for case-sensitive dealing with
HTTP method.
* System_test.dll.sources: Added SocketResponder.cs.
* SocketResponser.cs: Utility class for tests that require a listener.

svn path=/trunk/mcs/; revision=71912

17 years ago2007-01-29 Miguel de Icaza <miguel@novell.com>
Miguel de Icaza [Mon, 29 Jan 2007 21:23:14 +0000 (21:23 -0000)]
2007-01-29  Miguel de Icaza  <miguel@novell.com>

* ResXFileRef.cs: Catch the string case and create strings with
the specified encoding from its string source.

svn path=/trunk/mcs/; revision=71911

17 years ago* cs-tokenizer.cs (parse_namespace_or_typename): Don't throw an
Raja R Harinath [Mon, 29 Jan 2007 19:53:52 +0000 (19:53 -0000)]
* cs-tokenizer.cs (parse_namespace_or_typename): Don't throw an
exception on possibly valid code.

svn path=/trunk/mcs/; revision=71910

17 years agoimplement a missing attribute class
Marek Habersack [Mon, 29 Jan 2007 19:47:33 +0000 (19:47 -0000)]
implement a missing attribute class

svn path=/trunk/mcs/; revision=71909

17 years agoImplement a missing Marshal.Copy overload
Marek Habersack [Mon, 29 Jan 2007 19:46:31 +0000 (19:46 -0000)]
Implement a missing Marshal.Copy overload

svn path=/trunk/mcs/; revision=71908

17 years agoadded new test for my latest ModuleBuilde.cs change
Radek Doulik [Mon, 29 Jan 2007 19:25:03 +0000 (19:25 -0000)]
added new test for my latest ModuleBuilde.cs change

svn path=/trunk/mcs/; revision=71905

17 years ago2007-01-25 Radek Doulik <rodo@novell.com>
Radek Doulik [Mon, 29 Jan 2007 19:24:11 +0000 (19:24 -0000)]
2007-01-25  Radek Doulik  <rodo@novell.com>

       * ModuleBuilder.cs: return created type from GetType in case the
       type builder type was already created. Added test-555.cs as
       regression test.

svn path=/trunk/mcs/; revision=71904

17 years ago2007-01-29 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Mon, 29 Jan 2007 16:42:03 +0000 (16:42 -0000)]
2007-01-29 Igor Zelmanovich <igorz@mainsoft.com>

* Page.cs:
* ClientScriptManager.cs:
CallBack works with EvantValidation.

svn path=/trunk/mcs/; revision=71901

17 years ago2007-01-29 Igor Zelmanovich <igorz@mainsoft.com>
Igor Zelmanovich [Mon, 29 Jan 2007 16:31:19 +0000 (16:31 -0000)]
2007-01-29 Igor Zelmanovich <igorz@mainsoft.com>

* MultyView.cs: OnActiveViewChanged is called.

svn path=/trunk/mcs/; revision=71899

17 years ago2007-01-29 Andreia Gaita <avidigal@novell.com>
Andreia Gaita [Mon, 29 Jan 2007 16:08:31 +0000 (16:08 -0000)]
2007-01-29  Andreia Gaita  <avidigal@novell.com>

* TextBox.cs: Redraw when the password characters changes
* TextControl.cs: Check if textbox has a password char and draw
a line of password chars instead of the text in the line. LineTag gets
an extra Draw() method which allows document.Draw to override the text
that will be drawn. Removes 1024 char limitation on length of passworded
lines.

svn path=/trunk/mcs/; revision=71896

17 years ago * TextBoxBase.cs: Deleting sections of text is undoable.
Jackson Harper [Mon, 29 Jan 2007 16:02:43 +0000 (16:02 -0000)]
            * TextBoxBase.cs: Deleting sections of text is undoable.
                * Deleting
        single chars is not.

svn path=/trunk/mcs/; revision=71893

17 years agoMon Jan 29 16:51:33 CET 2007 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Mon, 29 Jan 2007 15:52:34 +0000 (15:52 -0000)]
Mon Jan 29 16:51:33 CET 2007 Paolo Molaro <lupus@ximian.com>

* MonoSymbolWriter.cs: unlink the file before writing it, since it may
be mmapped by the runtime.

svn path=/trunk/mcs/; revision=71892

17 years agoBy : yonik <yonik@mainsoft.com>
Yoni Klain [Mon, 29 Jan 2007 15:50:55 +0000 (15:50 -0000)]
By   : yonik <yonik@mainsoft.com>
Desc : add unload test on the end
Date : 28/01/07

svn path=/trunk/mcs/; revision=71891

17 years agoTest fixes for TARGET_JVM.
Boris Kirzner [Mon, 29 Jan 2007 15:50:28 +0000 (15:50 -0000)]
Test fixes for TARGET_JVM.

svn path=/trunk/mcs/; revision=71890

17 years agoMerge with Hari's Lambda
Miguel de Icaza [Mon, 29 Jan 2007 15:38:46 +0000 (15:38 -0000)]
Merge with Hari's Lambda

svn path=/trunk/mcs/; revision=71887

17 years ago2007-01-28 yonik <yonik@mainsoft.com>
Yoni Klain [Mon, 29 Jan 2007 15:12:59 +0000 (15:12 -0000)]
2007-01-28  yonik <yonik@mainsoft.com>

        * MultiViewTest.cs: Add new tests for post back events

svn path=/trunk/mcs/; revision=71878

17 years ago2007-01-29 Martin Baulig <martin@ximian.com>
Martin Baulig [Mon, 29 Jan 2007 14:24:26 +0000 (14:24 -0000)]
2007-01-29  Martin Baulig  <martin@ximian.com>

* MonoSymbolFile.cs
(MonoSymbolFile.Assembly): Removed this property.
(MonoSymbolFile.Guid): New public property.

svn path=/trunk/mcs/; revision=71871

17 years ago* Panel.cs: fixed AddAttributesToRender for 2.0, text align should be style attribute
Vladimir Krasnov [Mon, 29 Jan 2007 14:23:46 +0000 (14:23 -0000)]
* Panel.cs: fixed AddAttributesToRender for 2.0, text align should be style attribute

svn path=/trunk/mcs/; revision=71870

17 years ago2007-01-29 Marek Sieradzki <marek.sieradzki@gmail.com>
Marek Sieradzki [Mon, 29 Jan 2007 12:54:59 +0000 (12:54 -0000)]
2007-01-29  Marek Sieradzki  <marek.sieradzki@gmail.com>

        * AssemblyResolver.cs: Added.
        * ResolveAssemblyReference.cs: Moved most of code to AssemblyResolver.

svn path=/trunk/mcs/; revision=71866

17 years ago2007-01-29 Marek Sieradzki <marek.sieradzki@gmail.com>
Marek Sieradzki [Mon, 29 Jan 2007 12:52:31 +0000 (12:52 -0000)]
2007-01-29  Marek Sieradzki  <marek.sieradzki@gmail.com>

        * BuildTask.cs (Execute): Log errors that happen when invoking ITask
        .ctor.

        * ConsoleLogger.cs (TargetFinishedHandler)
        (TaskFinishedHandler): Increment error count.

svn path=/trunk/mcs/; revision=71865

17 years agoExcluded test DefaultType in ToolboxItemAttributeTests.cs under 'TARGET_JVM'
Ilya Kharmatsky [Mon, 29 Jan 2007 12:07:01 +0000 (12:07 -0000)]
Excluded test DefaultType in ToolboxItemAttributeTests.cs under 'TARGET_JVM'
configuration.

svn path=/trunk/mcs/; revision=71862

17 years agoFixed missed bracket under 'TARGET_JVM' directive.
Ilya Kharmatsky [Mon, 29 Jan 2007 11:22:06 +0000 (11:22 -0000)]
Fixed missed bracket under 'TARGET_JVM' directive.

svn path=/trunk/mcs/; revision=71861

17 years agoRestore lambda code with fix from previous commit.
Raja R Harinath [Mon, 29 Jan 2007 11:21:26 +0000 (11:21 -0000)]
Restore lambda code with fix from previous commit.
Add reverse-engineered lambda.cs since miguel didn't check it in.

svn path=/trunk/mcs/; revision=71860

17 years agoMon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Mon, 29 Jan 2007 11:15:55 +0000 (11:15 -0000)]
Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>

* Makefile.am: put back the --export-dynamic option as with
the previous gmodule flags (thanks to Robert Jordan).

svn path=/trunk/mono/; revision=71859

17 years agoMon Jan 29 12:04:38 CET 2007 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Mon, 29 Jan 2007 11:07:53 +0000 (11:07 -0000)]
Mon Jan 29 12:04:38 CET 2007 Paolo Molaro <lupus@ximian.com>

* configure.in, mint.pc.in mono-uninstalled.pc.in mono.pc.in:
put back the flag to export symbols from the binary which is
no more provided by gmodule (thanks to Robert Jordan <robertj@gmx.net>
for noticing).

svn path=/trunk/mono/; revision=71858