Skip to content

Commit 4c56b22

Browse files
committed
added license
1 parent 1080d9b commit 4c56b22

9 files changed

+816
-2
lines changed

CMakeLists.txt

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
cmake_minimum_required(VERSION 2.8.3)
222
project(catmux)
323

@@ -154,7 +174,7 @@ include_directories(
154174

155175
## Mark executable scripts (Python etc.) for installation
156176
## in contrast to setup.py, you can choose the destination
157-
177+
158178

159179
## Mark executables and/or libraries for installation
160180
# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node

COPYING

+674
Large diffs are not rendered by default.

package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- One license tag required, multiple allowed, one license per tag -->
1313
<!-- Commonly used license strings: -->
1414
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
15-
<license>TODO</license>
15+
<license>GPLv3</license>
1616

1717
<!-- Url tags are optional, but multiple are allowed, one per tag -->
1818
<!-- Optional attribute type can be: website, bugtracker, or repository -->

script/create_session

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
#!/usr/bin/env python
222
from __future__ import print_function
323
import subprocess

src/catmux/__init__.py

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
"""Loads all modules from other files"""
222

323
from window import Window

src/catmux/catmux.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+

src/catmux/session.py

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
"""Contains everything around the config file"""
222
from __future__ import print_function
323

src/catmux/tmux_wrapper.py

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
"""Wraps usage of tmux commands"""
222
from __future__ import print_function
323

src/catmux/window.py

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# -- BEGIN LICENSE BLOCK ----------------------------------------------
2+
3+
# catmux
4+
# Copyright (C) 2018 Felix Mauch
5+
#
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+
# -- END LICENSE BLOCK ------------------------------------------------
20+
121
"""Contains the Window object"""
222
from __future__ import print_function
323

0 commit comments

Comments
 (0)