From d3c5e4458ed8ba935ce82528fb52e1d5c50f195f Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 29 Oct 2018 11:56:12 +0200 Subject: [PATCH] Fix codegenerated license headers --- .../SourceFiles/codegen/common/cpp_file.cpp | 52 ++++++----- .../codegen/scheme/codegen_scheme.py | 91 ++++++++++--------- 2 files changed, 75 insertions(+), 68 deletions(-) diff --git a/Telegram/SourceFiles/codegen/common/cpp_file.cpp b/Telegram/SourceFiles/codegen/common/cpp_file.cpp index ad80a43eb..48df537a5 100644 --- a/Telegram/SourceFiles/codegen/common/cpp_file.cpp +++ b/Telegram/SourceFiles/codegen/common/cpp_file.cpp @@ -30,31 +30,33 @@ namespace common { namespace { void writeLicense(QTextStream &stream, const ProjectInfo &project) { - stream << "\ -/*\n\ -WARNING! All changes made in this file will be lost!\n\ -Created from '" - << project.source << "' by '" << project.name << "'\n\ -\n\ -This file is part of Telegram Desktop,\n\ -the official desktop version of Telegram messaging app, see https://telegram.org\n\ -\n\ -Telegram Desktop is free software: you can redistribute it and/or modify\n\ -it under the terms of the GNU General Public License as published by\n\ -the Free Software Foundation, either version 3 of the License, or\n\ -(at your option) any later version.\n\ -\n\ -It is distributed in the hope that it will be useful,\n\ -but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ -GNU General Public License for more details.\n\ -\n\ -In addition, as a special exception, the copyright holders give permission\n\ -to link the code of portions of this program with the OpenSSL library.\n\ -\n\ -Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\n\ -Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org\n\ -*/\n"; + stream << R"#(// +// WARNING! All changes made in this file will be lost! +// Created from ')#" + << project.source << "' by '" << project.name << R"#( +// +// This file is part of Kepka, +// an unofficial desktop version of Telegram messaging app, +// see https://github.com/procxx/kepka +// +// Kepka 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 3 of the License, or +// (at your option) any later version. +// +// It 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. +// +// In addition, as a special exception, the copyright holders give permission +// to link the code of portions of this program with the OpenSSL library. +// +// Full license: https://github.com/procxx/kepka/blob/master/LICENSE +// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org +// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx +// +)#"; } } // namespace diff --git a/Telegram/SourceFiles/codegen/scheme/codegen_scheme.py b/Telegram/SourceFiles/codegen/scheme/codegen_scheme.py index bf789f317..c48fb3896 100644 --- a/Telegram/SourceFiles/codegen/scheme/codegen_scheme.py +++ b/Telegram/SourceFiles/codegen/scheme/codegen_scheme.py @@ -905,29 +905,30 @@ textSerializeInit += '\ # module itself header = '\ -/*\n\ -WARNING! All changes made in this file will be lost!\n\ -Created from \'' + os.path.basename(input_file) + '\' by \'codegen_scheme\'\n\ -\n\ -This file is part of Telegram Desktop,\n\ -the official desktop version of Telegram messaging app, see https://telegram.org\n\ -\n\ -Telegram Desktop is free software: you can redistribute it and/or modify\n\ -it under the terms of the GNU General Public License as published by\n\ -the Free Software Foundation, either version 3 of the License, or\n\ -(at your option) any later version.\n\ -\n\ -It is distributed in the hope that it will be useful,\n\ -but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ -GNU General Public License for more details.\n\ -\n\ -In addition, as a special exception, the copyright holders give permission\n\ -to link the code of portions of this program with the OpenSSL library.\n\ -\n\ -Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\n\ -Copyright (c) 2014 John Preston, https://desktop.telegram.org\n\ -*/\n\ +// WARNING! All changes made in this file will be lost!\n\ +// Created from \'' + os.path.basename(input_file) + '\' by \'codegen_scheme\'\n\ +//\n\ +// This file is part of Kepka,\n\ +// an unofficial desktop version of Telegram messaging app,\n\ +// see https://github.com/procxx/kepka\n\ +//\n\ +// Kepka is free software: you can redistribute it and/or modify\n\ +// it under the terms of the GNU General Public License as published by\n\ +// the Free Software Foundation, either version 3 of the License, or\n\ +// (at your option) any later version.\n\ +//\n\ +// It is distributed in the hope that it will be useful,\n\ +// but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ +// GNU General Public License for more details.\n\ +//\n\ +// In addition, as a special exception, the copyright holders give permission\n\ +// to link the code of portions of this program with the OpenSSL library.\n\ +//\n\ +// Full license: https://github.com/procxx/kepka/blob/master/LICENSE\n\ +// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org\n\ +// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx\n\ +//\n\ #pragma once\n\ \n\ #include "mtproto/core_types.h"\n\ @@ -969,26 +970,30 @@ enum {\n\ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpPrime *end, mtpPrime cons, quint32 level, mtpPrime vcons);\n' source = '\ -/*\n\ -WARNING! All changes made in this file will be lost!\n\ -Created from \'' + os.path.basename(input_file) + '\' by \'codegen_scheme\'\n\ -\n\ -This file is part of Telegram Desktop,\n\ -the official desktop version of Telegram messaging app, see https://telegram.org\n\ -\n\ -Telegram Desktop is free software: you can redistribute it and/or modify\n\ -it under the terms of the GNU General Public License as published by\n\ -the Free Software Foundation, either version 3 of the License, or\n\ -(at your option) any later version.\n\ -\n\ -It is distributed in the hope that it will be useful,\n\ -but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ -GNU General Public License for more details.\n\ -\n\ -Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\n\ -Copyright (c) 2014 John Preston, https://desktop.telegram.org\n\ -*/\n\ +// WARNING! All changes made in this file will be lost!\n\ +// Created from \'' + os.path.basename(input_file) + '\' by \'codegen_scheme\'\n\ +//\n\ +// This file is part of Kepka,\n\ +// an unofficial desktop version of Telegram messaging app,\n\ +// see https://github.com/procxx/kepka\n\ +//\n\ +// Kepka is free software: you can redistribute it and/or modify\n\ +// it under the terms of the GNU General Public License as published by\n\ +// the Free Software Foundation, either version 3 of the License, or\n\ +// (at your option) any later version.\n\ +//\n\ +// It is distributed in the hope that it will be useful,\n\ +// but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ +// GNU General Public License for more details.\n\ +//\n\ +// In addition, as a special exception, the copyright holders give permission\n\ +// to link the code of portions of this program with the OpenSSL library.\n\ +//\n\ +// Full license: https://github.com/procxx/kepka/blob/master/LICENSE\n\ +// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org\n\ +// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx\n\ +//\n\ #include "base/assertion.h"\n\ #include "scheme.h"\n\ \n\