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
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-01-29 21:17:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-01-29 21:17:06 +0300
commitb03e60628764d66654147bfc7a7e1a3242559888 (patch)
tree3599b29c7f180a5cb3e8cea3e875d26b8ecdeeb4 /mcs/class/Mono.Options
parentbf5947a0fd2b523c30833605ee69b2b041aa43f4 (diff)
Remove ChangeLog files from the repo
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
Diffstat (limited to 'mcs/class/Mono.Options')
-rw-r--r--mcs/class/Mono.Options/Assembly/ChangeLog6
-rw-r--r--mcs/class/Mono.Options/ChangeLog43
-rw-r--r--mcs/class/Mono.Options/Mono.Options/ChangeLog56
-rw-r--r--mcs/class/Mono.Options/Test/Mono.Options/ChangeLog51
4 files changed, 0 insertions, 156 deletions
diff --git a/mcs/class/Mono.Options/Assembly/ChangeLog b/mcs/class/Mono.Options/Assembly/ChangeLog
deleted file mode 100644
index 15147cc30bf..00000000000
--- a/mcs/class/Mono.Options/Assembly/ChangeLog
+++ /dev/null
@@ -1,6 +0,0 @@
-2008-10-13 Jonathan Pryor <jpryor@novell.com>
-
- * ChangeLog: Started.
- * AssemblyInfo.cs: Added; assembly-level attributes for
- Mono.Options.dll.
-
diff --git a/mcs/class/Mono.Options/ChangeLog b/mcs/class/Mono.Options/ChangeLog
deleted file mode 100644
index 199d5fec232..00000000000
--- a/mcs/class/Mono.Options/ChangeLog
+++ /dev/null
@@ -1,43 +0,0 @@
-2010-06-09 Jonathan Pryor <jpryor@novell.com>
-
- * Mono.Options_test.dll.sources: Add additional sources.
-
-2008-10-22 Jonathan Pryor <jpryor@novell.com>
-
- * Documentation/en/**/*.xml: s/NDesk.Options/Mono.Options/g (How'd I
- miss this earlier?).
-
-2008-10-22 Jonathan Pryor <jpryor@novell.com>
-
- * Documentation/en/Mono.Options/OptionSet.xml: Document the support for
- nullable types.
-
-2008-10-17 Jonathan Pryor <jpryor@novell.com>
-
- * Makefile: Use NO_INSTALL to prevent installation instead of using
- do-install and do-uninstall.
-
-2008-10-17 Jonathan Pryor <jpryor@novell.com>
-
- * Makefile: Add fixup-docs target, to simplify importing NDesk.Options
- documentation for use in Mono.Options
-
-2008-10-14 Jonathan Pryor <jpryor@novell.com>
-
- * Makefile: Don't bother installing Mono.Options.dll into the GAC (or
- anywhere else), instead just follow a subset of the App Deployment
- Guidelines and install just the source into $prefix/lib/mono-options.
-
-2008-10-14 Jonathan Pryor <jpryor@novell.com>
-
- * Makefile: Install Options.cs into the GAC, so that mono-options.pc
- can perform source install (as suggeted by App Deployment Guidelines).
-
-2008-10-13 Jonathan Pryor <jpryor@novell.com>
-
- * ChangeLog: Started.
- * Makefile: Added; build Mono.Options; do NOT install as an ABI-stable
- package.
- * Mono.Options.dll.sources: Added; sources for Mono.Options.dll.
- * Mono.Options_test.dll.sources: Added; Test sources.
-
diff --git a/mcs/class/Mono.Options/Mono.Options/ChangeLog b/mcs/class/Mono.Options/Mono.Options/ChangeLog
deleted file mode 100644
index a9b6be1b81d..00000000000
--- a/mcs/class/Mono.Options/Mono.Options/ChangeLog
+++ /dev/null
@@ -1,56 +0,0 @@
-2010-06-09 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: Remove use of 'var' so that C# 2.0 can be used.
-
-2010-06-09 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: Fix RemoveItem() and SetItem() so that removing by index
- and using the numeric indexer work as expected.
-
-2010-06-08 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: Don't overly split option values, only split to obtain
- the maximum number of desired values. This better supports e.g. DOS
- paths in multi-value values, e.g. '-DPATH=C:\tmp' would now create
- the values {"PATH", "C:\tmp"} instead of {"PATH", "C", "\tmp"}.
-
-2009-04-18 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: "Code sharing": Use StringCodea.WrappedLines() from
- Cadenza for the line wrapping algorithm. (Only fitting as
- WrappedLines() came from Mono.Options in the first place!)
- Patch thanks to Federico Di Gregorio.
-
-2009-04-18 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: GetLineEnd() shouldn't skip the start character, as it
- may contain '\n' (thus preventing the following text from being
- properly indented).
-
-2009-04-17 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: Viktor Lundgren reported that Option.Description text of
- `"aaa." . "a" x 64` (that is, "aaa." followed by 64 "a"s) would cause
- GetLines() to go into an infinite loop and (eventually) die from an
- OutOfMemoryException. Oops. Fix this, simplify the logic, and turn
- GetLines() into an IEnumerable<string>.
-
-2008-10-23 Jonathan Pryor <jpryor@novell.com>
-
- * Options.cs: Options.cs: Use the underlying target type in the error
- message, because "Could not convert string `' to type Nullable`1..."
- is not nearly as helpful as "Could not convert string `' to type
- Int32...".
-
-2008-10-22 Jonathan Pryor <jpryor@novell.com>
-
- * Option.cs: Add support for nullable types to Options.Parse<T>().
- Namespace "harmonization" with NDesk.Options so that the same source
- file can be used in each project.
-
-2008-10-13 Jonathan Pryor <jpryor@novell.com>
-
- * ChangeLog: Started.
- * Options.cs: Added; Command line option parser. A (renamed) copy of
- NDesk.Options 0.2.1 (see git repo for prior history).
-
diff --git a/mcs/class/Mono.Options/Test/Mono.Options/ChangeLog b/mcs/class/Mono.Options/Test/Mono.Options/ChangeLog
deleted file mode 100644
index 550a2095590..00000000000
--- a/mcs/class/Mono.Options/Test/Mono.Options/ChangeLog
+++ /dev/null
@@ -1,51 +0,0 @@
-2010-06-09 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Make OptionSetTest inherit from ListContract so
- that the IList<T> and ICollection<T> interfaces are fully tested.
- * BaseRocksFixture.cs, CollectionContract.cs, ListContract.cs: Added;
- interface contract tests from Cadenza.
-
-2010-06-08 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Add tests for constrained value splitting.
-
-2008-04-18 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Update WriteOptionDescriptions() for new,
- better-defined line-wrapping semantics.
-
-2008-04-18 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Add test to check \n\n Option.Description handling.
-
-2008-04-17 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Add additional line breaking tests.
- Remove [Category("NotWorking")], as they work for me.
-
-2008-11-10 Raja R Harinath <harinath@hurrynot.org>
-
- * OptionContextTest.cs: Fix syntax error.
- * OptionTest.cs: Likewise.
- * OptionSetTest.cs: Likewise.
- (OptionalValues, CombinationPlatter, Exceptions): Disable for now.
-
-2008-10-23 Jonathan Pryor <jpryor@novell.com>
-
- * OptionSetTest.cs: Add a test for the underlying target type within
- the exception message.
-
-2008-10-22 Jonathan Pryor <jpryor@novell.com>
-
- * OptionContextTest.cs, OptionSetTest.cs, OptionTest.cs, Utils.cs:
- Namespace "harmonization" with Mono.Options, so that we can use
- identical source in each place, thus minimizing the maintenance
- burden.
- * OptionSetTest.cs: Add tests for nullable type support.
-
-2008-10-13 Jonathan Pryor <jpryor@novell.com>
-
- * ChangeLog: Started.
- * OptionContextTest.cs, OptionSetTest.cs, OptionTest.cs, Utils.cs:
- Added; unit tests for Mono.Options 0.2.1.
-