Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
47dd3ff0
Commit
47dd3ff0
authored
Jan 31, 2021
by
Christoph Cullmann
🐮
Browse files
use license header as described in README.md
parent
48ca7e8f
Changes
14
Hide whitespace changes
Inline
Side-by-side
addons/search/FolderFilesList.cpp
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2013 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2013 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"FolderFilesList.h"
...
...
addons/search/FolderFilesList.h
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2013 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2013 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef FolderFilesList_h
#define FolderFilesList_h
...
...
addons/search/KateSearchCommand.cpp
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2020 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2020 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"KateSearchCommand.h"
#include
"MatchModel.h"
...
...
addons/search/KateSearchCommand.h
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2020 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2020 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KateSearchCommand_h
#define KateSearchCommand_h
...
...
addons/search/MatchModel.cpp
View file @
47dd3ff0
/***************************************************************************
* This file is part of Kate build plugin
* SPDX-FileCopyrightText: 2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
***************************************************************************/
/*
SPDX-FileCopyrightText: 2021 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"MatchModel.h"
#include
<KLocalizedString>
...
...
addons/search/MatchModel.h
View file @
47dd3ff0
/***************************************************************************
* This file is part of Kate search plugin
* SPDX-FileCopyrightText: 2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
***************************************************************************/
/*
SPDX-FileCopyrightText: 2021 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MatchModel_h
#define MatchModel_h
...
...
addons/search/SearchDiskFiles.cpp
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-FileCopyrightText: 2021 Christoph Cullmann <cullmann@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"SearchDiskFiles.h"
...
...
addons/search/SearchDiskFiles.h
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-FileCopyrightText: 2021 Christoph Cullmann <cullmann@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef SearchDiskFiles_h
#define SearchDiskFiles_h
...
...
addons/search/htmldelegate.cpp
View file @
47dd3ff0
/***************************************************************************
* This file is part of Kate search plugin *
* SPDX-FileCopyrightText: 2011 Kåre Särs <kare.sars@iki.fi> *
* *
* SPDX-License-Identifier: LGPL-2.0-or-later
***************************************************************************/
/*
SPDX-FileCopyrightText: 2011 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"htmldelegate.h"
...
...
addons/search/htmldelegate.h
View file @
47dd3ff0
/***************************************************************************
* This file is part of Kate search plugin *
* SPDX-FileCopyrightText: 2011 Kåre Särs <kare.sars@iki.fi> *
* *
* SPDX-License-Identifier: LGPL-2.0-or-later
***************************************************************************/
/*
SPDX-FileCopyrightText: 2011 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef HTML_DELEGATE_H
#define HTML_DELEGATE_H
...
...
addons/search/plugin_search.cpp
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"plugin_search.h"
#include
"KateSearchCommand.h"
...
...
addons/search/plugin_search.h
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef _PLUGIN_SEARCH_H_
#define _PLUGIN_SEARCH_H_
...
...
addons/search/search_open_files.cpp
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include
"search_open_files.h"
...
...
addons/search/search_open_files.h
View file @
47dd3ff0
/* Kate search plugin
*
* SPDX-FileCopyrightText: 2011-2021 Kåre Särs <kare.sars@iki.fi>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*
* This program 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 this program in a file called COPYING; if not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
SPDX-FileCopyrightText: 2011-21 Kåre Särs <kare.sars@iki.fi>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef _SEARCH_OPEN_FILES_H_
#define _SEARCH_OPEN_FILES_H_
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment