changeset 6:f6f726c92e56

Re #8 - License code * State which version of LGPL in headers
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Jan 2009 14:54:25 +0000
parents 7e06c0699257
children 35a7b6525bca
files DuplicateIniLineException.cs DuplicateIniSectionException.cs IBBoard.Ini.mdp IIniLine.cs IniBlankLine.cs IniCommentLine.cs IniFile.cs IniFileReader.cs IniKeyValuePairLine.cs IniLineParser.cs IniSection.cs IniSectionParser.cs InvalidIniSectionException.cs NonExistantIniSection.cs
diffstat 14 files changed, 14 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/DuplicateIniLineException.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/DuplicateIniLineException.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (DuplicateIniLineException.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/DuplicateIniSectionException.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/DuplicateIniSectionException.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (DuplicateIniSectionException.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IBBoard.Ini.mdp	Sun Jan 18 14:30:40 2009 +0000
+++ b/IBBoard.Ini.mdp	Sun Jan 25 14:54:25 2009 +0000
@@ -34,4 +34,5 @@
   <References>
     <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
   </References>
+  <GtkDesignInfo />
 </Project>
\ No newline at end of file
--- a/IIniLine.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IIniLine.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IIniLine.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IniBlankLine.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniBlankLine.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniBlankLine.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IniCommentLine.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniCommentLine.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniCommentLine.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IniFile.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniFile.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniFile.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 using System.Collections;
--- a/IniFileReader.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniFileReader.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniFileReader.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 using System.IO;
--- a/IniKeyValuePairLine.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniKeyValuePairLine.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniKeyValuePairLine.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IniLineParser.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniLineParser.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniLineParser.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/IniSection.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniSection.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniSection.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 using System.Collections;
--- a/IniSectionParser.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/IniSectionParser.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (IniSectionParser.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 using System.Text.RegularExpressions;
--- a/InvalidIniSectionException.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/InvalidIniSectionException.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (InvalidIniSectionException.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;
 
--- a/NonExistantIniSection.cs	Sun Jan 18 14:30:40 2009 +0000
+++ b/NonExistantIniSection.cs	Sun Jan 25 14:54:25 2009 +0000
@@ -1,6 +1,6 @@
 // This file (NonExistantIniSection.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard.
 //
-// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.
+// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
 using System;