mono.git
21 years agoadded new api function
Dennis Hayes [Wed, 18 Dec 2002 02:19:56 +0000 (02:19 -0000)]
added new api function

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

21 years ago2002-12-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Wed, 18 Dec 2002 02:17:17 +0000 (02:17 -0000)]
2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* System.Web/HttpApplicationFactory.cs: add the context as parameter
when building the application Type.

* System.Web/HttpCookie.cs: new internal constructor.
* System.Web/HttpCookieCollection.cs: new internal method to make a
cookie expire.

* System.Web/HttpRequest.cs: MapPath fixes.
* System.Web/HttpResponse.cs: implemented ApplyAppPathModifier.
* System.Web/HttpRuntime.cs: fixed typo in AppDomainAppVirtualPath.
* System.Web.Compilation/AspGenerator.cs: now it uses the current
HttpContext when creating user controls. TemplateSourceDirectory is no
longer a dummy value.

* System.Web.Compilation/GlobalAsaxCompiler.cs:
* System.Web.Compilation/PageCompiler.cs:
* System.Web.Compilation/UserControlCompiler.cs: set the context which
will be used to locate the files.

* System.Web.UI/BaseParser.cs: use MapPath and context to locate files.
* System.Web.UI/Control.cs: implemented MapPathSecure.
* System.Web.UI/TemplateControl.cs: use UrlUtils to generate the path.
* System.Web.UI/TemplateControlParser.cs: use the context and MapPath.
* System.Web.UI/UserControl.cs: implemented MapPath.
* System.Web.UI/UserControlParser.cs: added context parameter to
constructor.
* System.Web.Util/PathUtil.cs: removed.
* System.Web.Util/UrlUtils.cs: fixed Combine to handle '~'.

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

21 years ago2002-12-17 Ravi Pratap <ravi@ximian.com>
Ravi Pratap M [Tue, 17 Dec 2002 23:36:20 +0000 (23:36 -0000)]
2002-12-17  Ravi Pratap  <ravi@ximian.com>

* class.cs (MethodCore.LabelParameters): Remove the extra
Type [] parameter since it is completely unnecessary. Instead
pass in the method's attributes so that we can extract
the "return" attribute.

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

21 years agoReformat to comply with Mono coding standards.
Jonathan Pryor [Tue, 17 Dec 2002 22:10:50 +0000 (22:10 -0000)]
Reformat to comply with Mono coding standards.

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

21 years agoAdd <system.diagnostics/> to the available .config file sections.
Jonathan Pryor [Tue, 17 Dec 2002 21:50:54 +0000 (21:50 -0000)]
Add <system.diagnostics/> to the available .config file sections.

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

21 years agoImplement DiagnosticsConfigurationHandler, so that .config files can contain
Jonathan Pryor [Tue, 17 Dec 2002 21:42:08 +0000 (21:42 -0000)]
Implement DiagnosticsConfigurationHandler, so that .config files can contain
<system.diagnostics/> configuration sections.

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

21 years agoAdded new mcs test error cs0154.cs
Alejandro Sánchez Acosta [Tue, 17 Dec 2002 17:51:26 +0000 (17:51 -0000)]
Added new mcs test error cs0154.cs

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

21 years agonew test sample
Alejandro Sánchez Acosta [Tue, 17 Dec 2002 17:40:08 +0000 (17:40 -0000)]
new test sample

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

21 years agonew sample test error cs0138.cs
Alejandro Sánchez Acosta [Tue, 17 Dec 2002 17:38:41 +0000 (17:38 -0000)]
new sample test error cs0138.cs

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

21 years ago2002-12-17 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Tue, 17 Dec 2002 16:05:38 +0000 (16:05 -0000)]
2002-12-17  Ville Palo <vi64pa@koti.soon.fi>

* region.xml:
* store.xsd: new xmldoment and xmlschema for testing DataSet
* DataSetTest.cs: Added some Xml-tests.
* AllTests.cs: Added DataSetTest

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

21 years agoProperties implemented. Property paramters still don't work.
Marco Ridoni [Tue, 17 Dec 2002 13:24:41 +0000 (13:24 -0000)]
Properties implemented. Property paramters still don't work.

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

21 years agoImplemented an overloaded method for EmitTopBlock which is called by
Marco Ridoni [Tue, 17 Dec 2002 13:23:38 +0000 (13:23 -0000)]
Implemented an overloaded method for EmitTopBlock which is called by
MethodData.Emit and specifies the function name (needed to get the return
value)

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

21 years ago2002-12-17 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Tue, 17 Dec 2002 09:12:07 +0000 (09:12 -0000)]
2002-12-17  Miguel de Icaza  <miguel@ximian.com>

* cs-parser.jay (parse): Use Report.Error to flag errors instead
of ignoring it and letting the compile continue.

* typemanager.cs (ChangeType): use an extra argument to return an
error condition instead of throwing an exception.

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 07:31:20 +0000 (07:31 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* BaseValidator.cs: return an empty string in GetControlValidationValue
when GetValue returned null.

* CompareValidator.cs: fixed EvaluateIsValid.

* RegularExpressionValidator.cs: fixed EvaluateIsValid.

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:50:26 +0000 (04:50 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Xml.cs: use MapPathSecure to get the path of the document.

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:47:08 +0000 (04:47 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Control.cs: implemented MapPathSecure.
* Page.cs: fixed Server property.

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:44:49 +0000 (04:44 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
and Decrypt, HashPasswordForStoringInConfigFile and Initialize.

* FormsAuthenticationTicket.cs: set cookiePath to the default when no
other provided.

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

21 years agoupdated list file
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:41:15 +0000 (04:41 -0000)]
updated list file

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:40:13 +0000 (04:40 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* AuthConfig.cs:
* AuthenticationConfigHandler.cs: handler and helper class for
system.web/authentication configuration section.

* HttpHandlersSectionHandler.cs: check for null in attributes.

* MachineKeyConfig.cs:
* MachineKeyConfigHandler.cs: handler and helper class for
system.web/machineKey tag.

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

21 years agoforgot to add this from a while back
Nick Drochak [Tue, 17 Dec 2002 04:34:38 +0000 (04:34 -0000)]
forgot to add this from a while back

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:28:10 +0000 (04:28 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* HttpContext.cs: hack to create a default user when there's no one.
Implemented GetConfig (string).

* HttpRequest.cs: fixes to MapPath (string).

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

21 years agoupdated list file
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:23:16 +0000 (04:23 -0000)]
updated list file

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

21 years agooops. Typo
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:20:48 +0000 (04:20 -0000)]
oops. Typo

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:19:27 +0000 (04:19 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* DataSet.cs: implemented DefaultViewManager and GetList.

* DataViewManager.cs: a bit of work on IList and ITypedList needed by
DataList in System.Web.

* DataViewManagerListItemTypeDescriptor.cs: custom type descriptor for
DataViewManager.

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

21 years ago2002-12-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:15:26 +0000 (04:15 -0000)]
2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* GenericIdentity.cs: check arguments and fixed IsAuthenticated.

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

21 years agonew sections
Gonzalo Paniagua Javier [Tue, 17 Dec 2002 04:13:43 +0000 (04:13 -0000)]
new sections

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 04:03:36 +0000 (04:03 -0000)]
2002-12-16  Sebastien Pouliot <spouliot@videotron.ca>

* unix.args: added StrongName.cs, StrongNamePublicKeyBlob.cs
and StrongNameIdentityPermission.cs files.

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 04:02:51 +0000 (04:02 -0000)]
2002-12-16  Sebastien Pouliot <spouliot@videotron.ca>

* corlib_linux_test.args: added StrongNamePublicKeyBlob and
StrongName test files.

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 04:02:11 +0000 (04:02 -0000)]
2002-12-16  Sebastien Pouliot  <spouliot@videotron.ca>

* AllTests.cs: Added test suites for StrongName.
* StrongNameTest.cs: New. Test suite for StrongName (complete).

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 04:01:11 +0000 (04:01 -0000)]
2002-12-16  Sebastien Pouliot  <spouliot@videotron.ca>

* StrongName.cs: New. Implemented.

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 03:59:26 +0000 (03:59 -0000)]
2002-12-16  Sebastien Pouliot  <spouliot@videotron.ca>

AllTests.cs: Added StrongNamePublicKeyBlobTest suite.
StrongNamePublicKeyBlobTest.cs: New. Test suite for
StrongNamePublicKeyBlob.

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

21 years ago2002-12-16 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Tue, 17 Dec 2002 03:58:11 +0000 (03:58 -0000)]
2002-12-16  Sebastien Pouliot  <spouliot@videotron.ca>

* StrongNamePublicKeyBlob.cs: New. Implemented.
* StrongNameIdentityPermission.cs. New. Stubbed (required
for StrongName class).

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

21 years ago2002-12-16 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Mon, 16 Dec 2002 18:50:22 +0000 (18:50 -0000)]
2002-12-16  Ville Palo <vi64pa@koti.soon.fi>

* DataRow.cs
* DataTable.cs: Fixed NullException (rollback -event)
* DataSet.cs: WriteXml -method does not anymore write <?xml... row.

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

21 years ago2002-12-16 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Mon, 16 Dec 2002 18:43:28 +0000 (18:43 -0000)]
2002-12-16  Ville Palo <vi64pa@koti.soon.fi>

* System.Xml/XmlDataDocumentTest.cs: some fixes.

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

21 years ago2002-12-16 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Mon, 16 Dec 2002 18:40:07 +0000 (18:40 -0000)]
2002-12-16  Ville Palo <vi64pa@koti.soon.fi>

* System.Xml/XmlDataDocument.cs: Now rollback works. It means all
types of transactions works, i guess ;)

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

21 years agoRemove file
Miguel de Icaza [Mon, 16 Dec 2002 04:51:17 +0000 (04:51 -0000)]
Remove file

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

21 years agoAdd file in this directory
Miguel de Icaza [Mon, 16 Dec 2002 04:51:07 +0000 (04:51 -0000)]
Add file in this directory

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

21 years agoFlush
Miguel de Icaza [Mon, 16 Dec 2002 04:50:58 +0000 (04:50 -0000)]
Flush

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Mon, 16 Dec 2002 02:02:44 +0000 (02:02 -0000)]
2002-12-15  Sebastien Pouliot <spouliot@videotron.ca>

* unix.args: added PublisherIdentityPermission.cs,
Publisher.cs and PublisherMembershipCondition.cs

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Mon, 16 Dec 2002 02:01:49 +0000 (02:01 -0000)]
2002-12-15  Sebastien Pouliot <spouliot@videotron.ca>

* corlib_linux_test.args: added Publisher and
PublisherMembershipCondition test files.

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Mon, 16 Dec 2002 02:00:52 +0000 (02:00 -0000)]
2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

* AllTests.cs: Added test suites for Publisher and
PublisherMembershipCondition.
* PublisherTest.cs: New. Test suite for Publisher (complete).
* PublisherMembershipConditionTest.cs: New. Test suite for Publisher
PublisherMembershipCondition (incomplete).

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Mon, 16 Dec 2002 01:59:35 +0000 (01:59 -0000)]
2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

* Publisher.cs: New. Implemented.
* PublisherMembershipCondition.cs: New. X509 related stuff implemented.

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Mon, 16 Dec 2002 01:58:22 +0000 (01:58 -0000)]
2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

* PublisherIdentityPermission.cs. New. Stubbed (required
for Publisher class).

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

21 years ago2002-12-16 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
Eduardo Garcia Cebollero [Mon, 16 Dec 2002 00:31:11 +0000 (00:31 -0000)]
2002-12-16  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

* Directory.cs: Some fixes to SMB shares handling, and not compiling
with csc, mcs compiles it correctly (mcs bug 35652)

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

21 years ago2002-12-14 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
Eduardo Garcia Cebollero [Sun, 15 Dec 2002 23:14:30 +0000 (23:14 -0000)]
2002-12-14  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

* Directory.cs: Some fixes related to correct some exceptions thrown

2002-12-11  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

* Directory.cs: Some Exceptions added, fixed GetParent(),
CreateDirectory() should work with unix, native windows and
windows samba shares. Converted end-lines from dos-mode to unix-mode

2002-12-08  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

* Directory.cs: CreateDirectory  works now with Absolute paths
too, not only with relative ones.

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

21 years agoadd mono basic compiler page
Johannes Roith [Sun, 15 Dec 2002 23:03:03 +0000 (23:03 -0000)]
add mono basic compiler page

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

21 years agoFlush
Miguel de Icaza [Sun, 15 Dec 2002 22:13:00 +0000 (22:13 -0000)]
Flush

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

21 years agoUpdate
Miguel de Icaza [Sun, 15 Dec 2002 22:03:47 +0000 (22:03 -0000)]
Update

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

21 years agoFlush
Miguel de Icaza [Sun, 15 Dec 2002 20:18:10 +0000 (20:18 -0000)]
Flush

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Sun, 15 Dec 2002 20:18:04 +0000 (20:18 -0000)]
2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

* X509CertificateTest.cs: Uncommented the GetEffectiveDateString and
GetExpirationDateString tests. Added a test for ToString(true).

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

21 years ago2002-12-15 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Sun, 15 Dec 2002 20:16:44 +0000 (20:16 -0000)]
2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

* X509Certificate.cs: Fixed the date issue. MS implementation always
return the local time for Pacific (GMT-8). Added ToString() and changed
some protected to private to please corcompare.

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

21 years agoadded ErrorLevel.cs
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 19:09:49 +0000 (19:09 -0000)]
added ErrorLevel.cs

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

21 years agoMoved ErrorLevel enum into its own file
Jackson Harper [Sun, 15 Dec 2002 18:02:23 +0000 (18:02 -0000)]
Moved ErrorLevel enum into its own file

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

21 years ago2002-12-15 Alp Toker <alp@atoker.com>
Alp Toker [Sun, 15 Dec 2002 16:38:48 +0000 (16:38 -0000)]
2002-12-15  Alp Toker  <alp@atoker.com>

* makefile.gnu: make sure mcs is in PATH, otherwise tell user to read
INSTALL.txt

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

21 years ago2002-12-15 Nick Drochak <ndrochak@gol.com>
Nick Drochak [Sun, 15 Dec 2002 14:37:52 +0000 (14:37 -0000)]
2002-12-15  Nick Drochak  <ndrochak@gol.com>

* nunit.build: Don't delete Transform.resources now, we don't generate
it anymore.

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

21 years ago2002-12-15 Nick Drochak <ndrochak@gol.com>
Nick Drochak [Sun, 15 Dec 2002 14:18:48 +0000 (14:18 -0000)]
2002-12-15  Nick Drochak  <ndrochak@gol.com>

* Transform.resources: Add file.  This is technically a generated file,
but it will never change for us since we get the sources from the nunit
project anyway.

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

21 years ago2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 12:41:50 +0000 (12:41 -0000)]
2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* ConfigurationSettings.cs: removed type loading hack no longer needed.

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

21 years ago2002-12-15 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Sun, 15 Dec 2002 10:32:32 +0000 (10:32 -0000)]
2002-12-15  Ville Palo <vi64pa@koti.soon.fi>

* DataRow.cs:
* DataRowCollection.cs: Moved event triggering from DataRow to
DataRowCollection.

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

21 years agoAdd new test
Miguel de Icaza [Sun, 15 Dec 2002 08:49:32 +0000 (08:49 -0000)]
Add new test

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

21 years agoAllow configuration settings to be removed. Previously, if you tried to
Jonathan Pryor [Sun, 15 Dec 2002 04:43:37 +0000 (04:43 -0000)]
Allow configuration settings to be removed.  Previously, if you tried to
remove a configuration setting, you'd get an exception saying that there was
no factory for it (i.e. it had already been removed).

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

21 years ago2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 03:54:51 +0000 (03:54 -0000)]
2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* DataBinder.cs: try the indexer if the property is not found in
GetPropertyValue ().

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

21 years ago2002-12-14 Daniel Morgan <danmorg@sc.rr.com>
Daniel Morgan [Sun, 15 Dec 2002 02:27:29 +0000 (02:27 -0000)]
2002-12-14  Daniel Morgan <danmorg@sc.rr.com>

* Mono.Data.Tds.Protocol/Tds70.cs: single quotes in SQL string
need to be escaped as two single quotes

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

21 years ago2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 02:19:34 +0000 (02:19 -0000)]
2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* DefaultTraceListener.cs: now OutputDebugStringW is called from an
internal call (update your runtime!). No more warnings in linux.

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

21 years ago2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 02:17:59 +0000 (02:17 -0000)]
2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* icall.c: added WriteWindowsDebugString internal call.

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

21 years ago2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sun, 15 Dec 2002 02:11:45 +0000 (02:11 -0000)]
2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* reflection.h: added fields to match C# implementation.

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

21 years ago2002-12-12 Daniel Morgan <danmorg@sc.rr.com>
Daniel Morgan [Sun, 15 Dec 2002 01:01:25 +0000 (01:01 -0000)]
2002-12-12  Daniel Morgan <danmorg@sc.rr.com>

* makefile.gnu
* win32.make: removed non-existent file from build

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

21 years ago2002-12-12 Daniel Morgan <danmorg@sc.rr.com>
Daniel Morgan [Sun, 15 Dec 2002 00:52:59 +0000 (00:52 -0000)]
2002-12-12  Daniel Morgan <danmorg@sc.rr.com>

* makefile.gnu: added file for linux build

* win32.make: update file for windows build

* DataGrid.cs: since SetColumnTypes has been fixed in GTK#,
update its use here

* sqlsharpgtk.cs: change Console.WriteLine()s to Error()s or
get rid of the Console.WriteLine()s.  Created new menus Session
and Command and move some menu items.  Implement new menu items
File - New, Open, Save, and Save As

* FileSelectionDialog.cs: added file
to make it easier to use the FileSelection dialog

* SqlEditorSharp.cs: added public methods
LoadFromFile, SaveToFile, and Clear

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

21 years agoFlush
Miguel de Icaza [Sat, 14 Dec 2002 22:27:19 +0000 (22:27 -0000)]
Flush

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

21 years agoRevert Directory.cs patch until its fixed
Miguel de Icaza [Sat, 14 Dec 2002 19:40:15 +0000 (19:40 -0000)]
Revert Directory.cs patch until its fixed

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

21 years agoFixed ms warning issue
Ville Palo [Sat, 14 Dec 2002 17:51:29 +0000 (17:51 -0000)]
Fixed ms warning issue

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

21 years ago2002-12-14 Ville Palo vi64pa@koti.soon.fi>
Ville Palo [Sat, 14 Dec 2002 17:14:37 +0000 (17:14 -0000)]
2002-12-14  Ville Palo vi64pa@koti.soon.fi>

* System.Xml/XmlDataDocumentTest.cs: Added three new tests

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

21 years ago2002-12-14 Ville Palo <vi64pa@koti.soon.fi>
Ville Palo [Sat, 14 Dec 2002 17:11:20 +0000 (17:11 -0000)]
2002-12-14  Ville Palo <vi64pa@koti.soon.fi>

* System.Xml/XmlDataDocument.cs: Adding row via XmlDataDocument to
DataSet's datatable is now possible.

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

21 years ago2002-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sat, 14 Dec 2002 16:33:18 +0000 (16:33 -0000)]
2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* typemanager.cs: fixed cut & paste error in GetRemoveMethod.

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

21 years ago2002-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Sat, 14 Dec 2002 15:58:28 +0000 (15:58 -0000)]
2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.

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

21 years agoFixing versions. Now all it's fine.
Jaime Anguiano Olarra [Fri, 13 Dec 2002 18:42:41 +0000 (18:42 -0000)]
Fixing versions. Now all it's fine.

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

21 years agoAdded a pair Q/A. Not much general things the past days.
Jaime Anguiano Olarra [Fri, 13 Dec 2002 18:21:36 +0000 (18:21 -0000)]
Added a pair Q/A. Not much general things the past days.

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

21 years agoImplemented For..Next..Step
Marco Ridoni [Fri, 13 Dec 2002 16:30:44 +0000 (16:30 -0000)]
Implemented For..Next..Step
Implemented Finally clause in Try..Catch

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

21 years ago2002-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Fri, 13 Dec 2002 15:57:07 +0000 (15:57 -0000)]
2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* System.Web.Compilation/AspGenerator.cs: added support for
AutoEventWireup attribute in @Page and @Control.

* System.Web.Compilation/CompilationResult.cs:
* System.Web.Compilation/GlobalAsaxCompiler.cs:
* System.Web.Compilation/PageCompiler.cs:
* System.Web.Compilation/UserControlCompiler.cs: store the options.

* System.Web.UI/Control.cs: added AutoEventWireup internal property.

* System.Web.UI/Page.cs: removed page events wire up from here.

* System.Web.UI/TemplateControl.cs: new method WireupAutomaticEvents to
hook up page and user controls events.

* System.Web.UI/TemplateControlParser.cs: process the options that are
applicable once we have the instance of the control.

* System.Web.UI/TemplateParser.cs: also stores the options.

* System.Web.UI/UserControl.cs: hook up events before initializing the
control.

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

21 years ago2002-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Fri, 13 Dec 2002 10:05:51 +0000 (10:05 -0000)]
2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* DecimalFormatter.cs: fixed bug #35560.

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

21 years ago2002-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Fri, 13 Dec 2002 09:46:54 +0000 (09:46 -0000)]
2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* namespace.cs: fixed bug #35489.

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

21 years ago2002-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Fri, 13 Dec 2002 09:28:55 +0000 (09:28 -0000)]
2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* DataList.cs: fixed header & footer.

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

21 years agoSorry about this
Miguel de Icaza [Fri, 13 Dec 2002 06:05:38 +0000 (06:05 -0000)]
Sorry about this

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

21 years ago2002-12-12 Juli Mallett <jmallett@FreeBSD.org>
Juli Mallett [Fri, 13 Dec 2002 03:31:36 +0000 (03:31 -0000)]
2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>

* jit.c: If SIGRTMIN is not defined, fall back to SIGUSR1.

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

21 years ago2002-12-12 Juli Mallett <jmallett@FreeBSD.org>
Juli Mallett [Fri, 13 Dec 2002 03:31:33 +0000 (03:31 -0000)]
2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>

* gc.h, gc-internal.h: Rename header for GC internal calls to
gc-internal.h from gc.h as to not clash with Boehm GC having its
header installed as <gc.h> in outside include paths.
* appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
* threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.

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

21 years ago2002-12-12 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Fri, 13 Dec 2002 03:10:37 +0000 (03:10 -0000)]
2002-12-12  Miguel de Icaza  <miguel@ximian.com>

* class.cs: Remove some dead code.

* cs-parser.jay: Estimate the number of methods needed
(RootContext.MethodCount);

* cs-tokenizer.cs: Use char arrays for parsing identifiers and
numbers instead of StringBuilders.

* support.cs (PtrHashtable): Add constructor with initial size;
We can now reduce reallocations of the method table.

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

21 years agoStatically declared events (i.e Sub MySub() Handles b1.Click) work (even
Marco Ridoni [Thu, 12 Dec 2002 23:29:46 +0000 (23:29 -0000)]
Statically declared events (i.e Sub MySub() Handles b1.Click) work (even
if they're probably buggy)
Try..Catch also works. Finally is in the grammat but still soes not work.

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

21 years agoforgotten in last commit
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 20:54:30 +0000 (20:54 -0000)]
forgotten in last commit

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

21 years ago2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 20:45:43 +0000 (20:45 -0000)]
2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* System.Web.UI/Control.cs: new method to set bindingContainer value.
* System.Web.UI/TemplateControl.cs: added controls are not binding
containers.
* System.Web.UI.WebControls/DataList.cs: for header and footer don't
use data source. Instantiate in the DataListItem, not in the DataList.
databind-template.aspx works now.

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

21 years agoAdded -r System.Xml.dll
Ville Palo [Thu, 12 Dec 2002 20:42:18 +0000 (20:42 -0000)]
Added -r System.Xml.dll

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

21 years agoforgot this one
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 20:37:36 +0000 (20:37 -0000)]
forgot this one

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

21 years ago2002-12-11 Juli Mallett <jmallett@FreeBSD.org>
Juli Mallett [Thu, 12 Dec 2002 10:58:37 +0000 (10:58 -0000)]
2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>

* daemon.c, handles-private.h, handles.c, wapi-private.h:
Check for an implementation which says it supports
_POSIX_THREAD_PROCESS_SHARED, rather than just one that
defines the symbol.  Defined but with a value of -1 still
means that it is unsupported.

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

21 years agoReferences to Microsoft.VisualBasic.* have been temporarily disabled
Marco Ridoni [Thu, 12 Dec 2002 10:53:01 +0000 (10:53 -0000)]
References to Microsoft.VisualBasic.* have been temporarily disabled
System.Drawing in driver.cs is referenced by default (just for now)
Added an extra define (EXTRA_DEFAULT_REFS) in driver.cs to allow default
  referencing of a bigger set of system assemblies. Off by default.

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

21 years agoModified a check in AddConstructor (a VB.NET constructor is always named
Marco Ridoni [Thu, 12 Dec 2002 10:50:46 +0000 (10:50 -0000)]
Modified a check in AddConstructor (a VB.NET constructor is always named
'New')

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

21 years agoComment out UTF8... test (it does not exist)
Jackson Harper [Thu, 12 Dec 2002 08:43:17 +0000 (08:43 -0000)]
Comment out UTF8... test (it does not exist)

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

21 years agoPartially implemented bugreport option, also only allow valid options now
Jackson Harper [Thu, 12 Dec 2002 08:33:43 +0000 (08:33 -0000)]
Partially implemented bugreport option, also only allow valid options now

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

21 years ago2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 04:26:24 +0000 (04:26 -0000)]
2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Encoding.cs: g_get_encoding () returns "ASCII". In Default, when the
encoding is not found, default to UTF8Unmarked. Removed comment in
UnixConsoleEncoding, because it's now Default, which gets the
encoding internally using g_get_encoding ().

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

21 years ago2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 03:20:19 +0000 (03:20 -0000)]
2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* list: Modified file.
* System.Web/HttpRuntime.cs: avoid nulls and exception when getting
resource format strings.

* System.Web/StaticFileHandler.cs: added file name to error message.
* System.Web.Compilation/AspElements.cs: new method Tag.GetElements
used to parse the inner contents of a tag looking for data binding or
code render tags.

New property HtmlControlTag.ParseChildren allows
differentiation of a couple of HtmlControls that has children as
properties (namely HtmlTable and HtmlTableRow).

* System.Web.Compilation/AspGenerator.cs: fixed container semantics to
match BindingContainer one. Implemented Inherits attribute for page and
control.

Support HtmlControls that has ChildrenAsProperties.

Generate code for data binding functions that matches the semantic of
Container.

Handle data bound and code render attribute values.

Set proper value return for TemplateSourceDirectory. Should be relative
to appPath.

* System.Web.Compilation/BaseCompiler.cs: moved CompilerOptions and
References handling here.

* System.Web.Compilation/CachingCompiler.cs: copy result of compilation.

* System.Web.Compilation/CompilationException.cs: simple ToString ()
implementation.

* System.Web.Compilation/CompilationResult.cs: implemented CopyFrom and
ToString.

* System.Web.Compilation/GlobalAsaxCompiler.cs:
* System.Web.Compilation/PageCompiler.cs:
* System.Web.Compilation/UserControlCompiler.cs: removed
CompilerOptions as it's now handled in the base class. Get all the
types in the generated assembly and look for one that derives from
the correct Type.

* System.Web.UI/Control.cs: implemented TemplateSourceDirectory.
* System.Web.UI/TemplateControl.cs: implemented LoadControl and
LoadTemplate.

* System.Web.Util/PathUtil.cs: some path handling methods that are not
available in Path.

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

21 years ago2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Thu, 12 Dec 2002 01:03:06 +0000 (01:03 -0000)]
2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* icall.c: assign minor, build and revision in FillName.

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

21 years agoAdd notes
Miguel de Icaza [Thu, 12 Dec 2002 00:22:16 +0000 (00:22 -0000)]
Add notes

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

21 years agoSystem.Runtime.Remoting/RemotingConfiguration.cs added to the build.
Jaime Anguiano Olarra [Wed, 11 Dec 2002 20:37:58 +0000 (20:37 -0000)]
System.Runtime.Remoting/RemotingConfiguration.cs added to the build.

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