diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-02-23 15:52:01 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-02-23 15:52:01 +1300 |
commit | 554047da85d9ff767077f3ba0126937980daedb9 (patch) | |
tree | 8e541b8e62d834003ef22a957ffef20d3dc0249a /libmproxy/console | |
parent | 62ca9b71ff940221126bf1189eace9de7c485f5f (diff) | |
download | mitmproxy-554047da85d9ff767077f3ba0126937980daedb9.tar.gz mitmproxy-554047da85d9ff767077f3ba0126937980daedb9.tar.bz2 mitmproxy-554047da85d9ff767077f3ba0126937980daedb9.zip |
License notifications, minor docs.
Diffstat (limited to 'libmproxy/console')
-rw-r--r-- | libmproxy/console/common.py | 15 | ||||
-rw-r--r-- | libmproxy/console/flowlist.py | 15 | ||||
-rw-r--r-- | libmproxy/console/flowview.py | 15 | ||||
-rw-r--r-- | libmproxy/console/help.py | 15 | ||||
-rw-r--r-- | libmproxy/console/kveditor.py | 15 | ||||
-rw-r--r-- | libmproxy/console/palettes.py | 15 |
6 files changed, 90 insertions, 0 deletions
diff --git a/libmproxy/console/common.py b/libmproxy/console/common.py index 45152c32..22d9e51d 100644 --- a/libmproxy/console/common.py +++ b/libmproxy/console/common.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + import urwid import urwid.util from .. import utils diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index d8fbe613..c7673ca2 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + import urwid import common diff --git a/libmproxy/console/flowview.py b/libmproxy/console/flowview.py index dc63c067..2ac92ee0 100644 --- a/libmproxy/console/flowview.py +++ b/libmproxy/console/flowview.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + import os, re import urwid import common diff --git a/libmproxy/console/help.py b/libmproxy/console/help.py index 224c6ab7..9509386b 100644 --- a/libmproxy/console/help.py +++ b/libmproxy/console/help.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + import urwid import common from .. import filt diff --git a/libmproxy/console/kveditor.py b/libmproxy/console/kveditor.py index 2997cf7f..ef8ff7e9 100644 --- a/libmproxy/console/kveditor.py +++ b/libmproxy/console/kveditor.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + import copy import urwid import common diff --git a/libmproxy/console/palettes.py b/libmproxy/console/palettes.py index 1710786f..d9d1aeaf 100644 --- a/libmproxy/console/palettes.py +++ b/libmproxy/console/palettes.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program 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. +# +# 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. If not, see <http://www.gnu.org/licenses/>. + dark = [ ('body', 'black', 'dark cyan'), |