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/data
AgeCommit message (Collapse)Author
2011-03-16Pretty print MonoVTable in xdebug.Zoltan Varga
2011-03-14Add new ignore file.Gonzalo Paniagua Javier
2011-03-07Fix the previous change.Zoltan Varga
2011-03-07Fix out-of-tree builds.Zoltan Varga
2011-03-07[Mono.Options] Add option header support.Jonathan Pryor
Option headers can be provided via OptionSet.Add(string), and allows forgoing the use of a separate mechanism to provide contextual output. For example, one used to do this: bool show_help = false; new OptionSet { // ... { "help|h|?", v => show_help = v != null }, }.Parse (args); if (show_help) { Console.WriteLine ("usage: sample-app ARGS"); p.WriteOptionDescriptions (Console.Out); // ... } Using the new header support, the "contextual" output can be merged with the option specification: bool show_help = false; new OptionSet { "usage: sample-app ARGS", { "help|h|?", v => show_help = v != null }, }.Parse (args); if (show_help) p.WriteOptionDescriptions (Console.Out); Furthermore, headers can be provided "inline", thus serving as a mechanism to categorize options: // mcs options var p = new OptionSet { "Mono C# compiler, Copyright 2001 - 2011 Novell, Inc.", "mcs [options] source-files", // ... "Resources:", { "linkresource|linkres:", v => /* ... */ }, // ... "", "Options can be of the form -option or /option", };
2011-03-04Install a mono-sgen-gdb.py as well.Zoltan Varga
2011-02-11Pretty print MonoString* too in xdb.Zoltan Varga
2011-01-27[machine.config] Added the <system.transactions> section definitionMarek Habersack
2011-01-24[build] pkg-config support for libmonosgen.Mark Probst
2010-12-13[asp.net] .NET 4.0 declares the <system.web.extensions> section in ↵Marek Habersack
machine.config
2010-12-01Add response file suport to Mono.Options.Jonathan Pryor
Response file support is an "opt-in" feature, performed by adding a ResponseFileSource to the OptionSet initialization logic: var p = new OptionSet () { // normal options here... new ResponseFileSource (), }; Response files make use of the new "ArgumentSource" support, which acts as a low-level argument pre-processor, allowing processing of arguments _before_ Option processing is performed.
2010-11-23Merge branch 'cecil-light'Jb Evain
2010-11-19Web service help fixGonzalo Paniagua Javier
Generate the wsdl document with UTF8 encoding.
2010-11-03Map libcups for macAndrew Jorgensen
Fixes bnc#649994
2010-10-22update cecil.pcJb Evain
2010-09-17ProtocolMapping needed config section, default items and support in ↵Atsushi Eno
ServiceHostBase.
2010-09-17Add working .svc handler in 4.0 web.config, fix standard endpoint handling ↵Atsushi Eno
and get xsp4 working.
2010-09-13implemented large parts of WCF standard endpoints and configuration support.Atsushi Eno
2010-09-07Add wsdl help generator to the 4.0 filesGonzalo Paniagua Javier
Ditto. Fixes bug #636841.
2010-08-30Remove obsolete Microsoft.Vsa and Microsoft.JScriptAndrew Jorgensen
2010-08-19[Fix] update the System.ServiceModel assembly versionJb Evain
2010-08-10Avoid exceptions in gdb when encountering unknown struct types.Zoltan Varga
2010-07-25EOL handlingRaja R Harinath
This set of .gitattributes was automatically generated from the list of files that GIT tried to normalize when I enabled automatic EOL conversion. With this set of attributes, we prevent automated EOL conversion on files that we know will cause trouble down the road.
2010-06-282010-06-28 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-gdb.py: Add pretty printers for more runtime data structures. svn path=/trunk/mono/; revision=159586
2010-05-172010-05-17 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-2.pc.in (Libs): Remove glib dependencies. svn path=/trunk/mono/; revision=157449
2010-05-15This expression builder is implemented nowMarek Habersack
svn path=/trunk/mono/; revision=157379
2010-05-14More 4.0 changesMarek Habersack
svn path=/trunk/mono/; revision=157335
2010-05-14Added ASP.NET 4.0 controlsMarek Habersack
svn path=/trunk/mono/; revision=157334
2010-05-082010-05-07 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-2.pc (Requires): Remove glib dependencies. svn path=/trunk/mono/; revision=156921
2010-04-15Add mono.pc for those using it as a way to probe for MonoMiguel de Icaza
svn path=/trunk/mono/; revision=155433
2010-04-07Added the memoryCache sectionMarek Habersack
svn path=/trunk/mono/; revision=154951
2010-04-022010-04-02 Jb Evain <jbevain@novell.com>Jb Evain
* dotnet35.pc.in: add System.Data.Services.dll. svn path=/trunk/mono/; revision=154728
2010-03-26Patch from Jay R Wren to drop assemblies that are no longer part of Mono 2.8Miguel de Icaza
svn path=/trunk/mono/; revision=154288
2010-03-16Added system.web.mvc2.pcMarek Habersack
svn path=/trunk/mono/; revision=153694
2010-03-082010-03-08 Rodrigo Kumpera <rkumpera@novell.com>Rodrigo Kumpera
* mono.supp: Add hazard pointers supressions. svn path=/trunk/mono/; revision=153280
2010-02-24AddMiguel de Icaza
svn path=/trunk/mono/; revision=152377
2010-02-24Wed Feb 24 15:47:16 CET 2010 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* confiure.in, data/mono-2.pc.in, data/Makefile.am, samples/embed/*: increase the API version. svn path=/trunk/mono/; revision=152356
2010-02-20AddMiguel de Icaza
svn path=/trunk/mono/; revision=152113
2010-02-06Modified the assemblies collection to match what is found in .NET 4.0Marek Habersack
svn path=/trunk/mono/; revision=150977
2010-01-21add XNA public key tokenSebastien Pouliot
svn path=/trunk/mono/; revision=149986
2009-12-14.gitignore.Zoltan Varga
svn path=/trunk/mono/; revision=148363
2009-10-132009-10-13 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-gdb.py: Add an 'xdb' command to flush the debugging info. svn path=/trunk/mono/; revision=144035
2009-10-122009-10-12 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* data/Makefile.am (gdb_DATA): Install mono-gdb.py alongside the mono executable. svn path=/trunk/mono/; revision=143958
2009-10-122009-10-12 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-gdb.py: Update this to gdb 7.0. * mono-gdbinit: Removed, no longer needed. svn path=/trunk/mono/; revision=143957
2009-10-122009-10-12 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* data/gdb-pre7.0: New directory, containing the mono support files for gdb versions before 7.0. svn path=/trunk/mono/; revision=143956
2009-10-092009-10-09 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* mono-gdb.py (MonoSupport.run_hook): Set MONO_XDEBUG to 'gdb' to activate the GDB support mode in the runtime. svn path=/trunk/mono/; revision=143874
2009-10-01Nunit and Mono.Cairo are no longer in the 1.0 dirsMarek Habersack
svn path=/trunk/mono/; revision=143172
2009-10-01Be explicit for 1.1Marek Safar
svn path=/trunk/mono/; revision=143122
2009-10-01Not yet ready not distribute 1.0 machine.configMarek Safar
svn path=/trunk/mono/; revision=143117
2009-09-302009-09-30 Marek Safar <marek.safar@gmail.com>Marek Safar
* runtime/Makefile.am, configure.in: Don't build 1.1 profile svn path=/trunk/mono/; revision=143010