From 3ad811d6daf7be202baa412b5161fda10aeb1133 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sun, 16 Oct 2005 09:21:07 +0000 Subject: [PATCH] Add missing file headers. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@579 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../BooBinding/Project/Src/AssemblyInfo.cs | 9 ++++++- .../Project/AssemblyInfo.cs | 24 +++++------------- .../Project/BooPrinterVisitorWithComments.cs | 24 +++++------------- .../Project/ConvertVisitor.cs | 24 +++++------------- .../Project/ConvertVisitorExpressions.cs | 24 +++++------------- .../Project/ConvertVisitorGlobal.cs | 24 +++++------------- .../Project/ConvertVisitorStatements.cs | 24 +++++------------- .../Project/ConvertVisitorTypeMembers.cs | 24 +++++------------- .../Project/Converter.cs | 24 +++++------------- .../Project/ConverterSettings.cs | 24 +++++------------- .../Project/FindUnneededLabelsVisitor.cs | 24 +++++------------- .../Project/Parser.cs | 24 +++++------------- .../Project/RefactoryVisitor.cs | 24 +++++------------- .../Project/RenameLocalsVisitor.cs | 24 +++++------------- .../Project/ReplaceBreakStatementsVisitor.cs | 24 +++++------------- .../Project/VariableResolver.cs | 24 +++++------------- .../Test/ComplexTests.cs | 24 +++++------------- .../Test/ErrorTests.cs | 24 +++++------------- .../Test/ExpressionTests.cs | 24 +++++------------- .../Test/GlobalTests.cs | 24 +++++------------- .../Test/MemberTests.cs | 24 +++++------------- .../Test/StatementTests.cs | 24 +++++------------- .../Test/TestHelper.cs | 24 +++++------------- .../Boo/StandaloneConverter/AssemblyInfo.cs | 25 +++++-------------- .../Boo/StandaloneConverter/Main.cs | 24 +++++------------- .../MetaData/COR_FIELD_OFFSET.cs | 8 +++++- .../MetaData/IMetaDataImport.cs | 8 +++++- .../Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs | 2 +- .../Project/Configuration/AssemblyInfo.cs | 4 +-- .../Misc/NAntAddIn/Test/AssemblyInfo.cs | 2 +- .../Test/AssemblyInfo.cs | 10 ++++++-- .../CustomLineManager/CustomLineManager.cs | 6 ++--- .../CustomLineManager/ICustomLineManager.cs | 6 ++--- .../Project/Src/Util/FileReader.cs | 12 ++++----- src/Tools/CheckFileHeaders/Main.cs | 2 ++ 35 files changed, 192 insertions(+), 454 deletions(-) diff --git a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs index 4f528cee80..e817ce439e 100644 --- a/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/Boo/BooBinding/Project/Src/AssemblyInfo.cs @@ -1,4 +1,11 @@ -using System.Reflection; +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// + +using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs index 6528cbc35d..8bfbd040e6 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/AssemblyInfo.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System.Reflection; using System.Runtime.CompilerServices; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs index 5153eb94bf..f34c12bb4f 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/BooPrinterVisitorWithComments.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs index 198bb578e5..8813e6838c 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitor.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs index 6670223aa7..63d9ea37ff 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorExpressions.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs index de2b31eabf..01889244b8 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorGlobal.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs index ec0ec8d6cf..4c31f4307a 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorStatements.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs index b1845b3067..390e1206e8 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConvertVisitorTypeMembers.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs index fec1981c20..9550a1191d 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Converter.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NR = ICSharpCode.NRefactory.Parser.AST; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs index 59d58858da..29b3400305 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ConverterSettings.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using Boo.Lang.Compiler; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs index 59cc6d0fa4..c5517dabb9 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/FindUnneededLabelsVisitor.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs index d142cc780d..352c860389 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/Parser.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs index 869dbbb685..0a6ec78ad4 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RefactoryVisitor.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using ICSharpCode.NRefactory.Parser; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs index 8ae07e532b..0a170f00d9 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/RenameLocalsVisitor.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs index 62dc04bfdf..4c8fa7eb19 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/ReplaceBreakStatementsVisitor.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs index 95183d5d25..92d05e0788 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Project/VariableResolver.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs index c78fbd1dbd..02b5aa514b 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ComplexTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NUnit.Framework; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs index 39fb0c55c8..02d80efa4e 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ErrorTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.IO; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs index 1cff07af64..93a0d19d7d 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NUnit.Framework; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs index c0175b253c..6c8a409e28 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/GlobalTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NUnit.Framework; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs index ed1b5aedb4..33314b877a 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NUnit.Framework; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs index a099ce6051..51af636d58 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using NUnit.Framework; diff --git a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs index 27652ae255..c7b0dad763 100644 --- a/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs +++ b/src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/TestHelper.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.IO; diff --git a/src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs b/src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs index 9efe1184ec..c3bc972392 100644 --- a/src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs +++ b/src/AddIns/BackendBindings/Boo/StandaloneConverter/AssemblyInfo.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System.Reflection; using System.Runtime.CompilerServices; @@ -43,4 +31,3 @@ using System.Runtime.CompilerServices; // numbers with the '*' character (the default): [assembly: AssemblyVersion("2.0.0.1")] - diff --git a/src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs b/src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs index bf6b8439f4..4f8839c2ed 100644 --- a/src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs +++ b/src/AddIns/BackendBindings/Boo/StandaloneConverter/Main.cs @@ -1,21 +1,9 @@ -#region license -// Copyright (c) 2005, Daniel Grunwald (daniel@danielgrunwald.de) -// All rights reserved. -// -// NRefactoryToBoo is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// NRefactoryToBoo is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with NRefactoryToBoo; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#endregion +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.Collections.Generic; diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs index 1423ca26ef..51b43dd967 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/COR_FIELD_OFFSET.cs @@ -1,3 +1,10 @@ +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// + namespace DebuggerInterop.MetaData { using System; @@ -10,4 +17,3 @@ namespace DebuggerInterop.MetaData public uint ulOffset; } } - diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs index 67aaa5cd92..7e6883b88d 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerInterop/MetaData/IMetaDataImport.cs @@ -1,3 +1,10 @@ +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// + namespace DebuggerInterop.MetaData { using System; @@ -133,4 +140,3 @@ namespace DebuggerInterop.MetaData void IsGlobal([In] uint pd, out int pbGlobal); } } - diff --git a/src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs b/src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs index 6c78b8e085..23a324effc 100644 --- a/src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs +++ b/src/AddIns/Misc/NAntAddIn/ConsoleApp/AssemblyInfo.cs @@ -30,7 +30,7 @@ using System.Runtime.CompilerServices; // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.1.0.2094")] +[assembly: AssemblyVersion("2.0.0.1")] // The following attributes specify the key for the sign of your assembly. See the // .NET Framework documentation for more information about signing. diff --git a/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs b/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs index a34ff4897c..b325bae819 100644 --- a/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs +++ b/src/AddIns/Misc/NAntAddIn/Project/Configuration/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// +// // 2002-2005 AlphaSierraPapa // GNU General Public License // @@ -30,7 +30,7 @@ using System.Runtime.CompilerServices; // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.1.0.2094")] +[assembly: AssemblyVersion("2.0.0.1")] // The following attributes specify the key for the sign of your assembly. See the // .NET Framework documentation for more information about signing. diff --git a/src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs b/src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs index 3b54521b06..b325bae819 100644 --- a/src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs +++ b/src/AddIns/Misc/NAntAddIn/Test/AssemblyInfo.cs @@ -30,7 +30,7 @@ using System.Runtime.CompilerServices; // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.1.0.2094")] +[assembly: AssemblyVersion("2.0.0.1")] // The following attributes specify the key for the sign of your assembly. See the // .NET Framework documentation for more information about signing. diff --git a/src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs b/src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs index f976075ae3..8db737e269 100644 --- a/src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs +++ b/src/Libraries/ICSharpCode.Build.Tasks/Test/AssemblyInfo.cs @@ -1,4 +1,11 @@ -using System.Reflection; +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// + +using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following @@ -24,4 +31,3 @@ using System.Runtime.CompilerServices; // numbers with the '*' character (the default): [assembly: AssemblyVersion("2.0.0.1")] - diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs index b16a0fbed3..b63eac7d94 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/CustomLineManager.cs @@ -1,8 +1,8 @@ // -// -// +// 2002-2005 AlphaSierraPapa +// GNU General Public License // -// +// $Revision$ // using System; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs index 109e4ba6dc..7587676df6 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Document/CustomLineManager/ICustomLineManager.cs @@ -1,8 +1,8 @@ // -// -// +// 2002-2005 AlphaSierraPapa +// GNU General Public License // -// +// $Revision$ // using System; diff --git a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs index 743978f0a6..71ec1fb6aa 100644 --- a/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs +++ b/src/Libraries/ICSharpCode.TextEditor/Project/Src/Util/FileReader.cs @@ -1,9 +1,9 @@ -/* - * Created by SharpDevelop. - * User: Daniel Grunwald - * Date: 03.10.2005 - * Time: 11:57 - */ +// +// 2002-2005 AlphaSierraPapa +// GNU General Public License +// +// $Revision$ +// using System; using System.IO; diff --git a/src/Tools/CheckFileHeaders/Main.cs b/src/Tools/CheckFileHeaders/Main.cs index 92a407a4f2..7353f79b2a 100644 --- a/src/Tools/CheckFileHeaders/Main.cs +++ b/src/Tools/CheckFileHeaders/Main.cs @@ -193,6 +193,8 @@ namespace CheckFileHeaders return "d_erchoff@hotmail.com"; case "Georg Brandl": return "g.brandl@gmx.net"; + case "Ivo Kovacka": + return "ivok@internet.sk"; case "none": return ""; default: