[Pkg-anonymity-tools] [onionshare] 64/140: added GPLv3 license to each source file
Ulrike Uhlig
u-guest at moszumanska.debian.org
Mon Sep 29 20:33:48 UTC 2014
This is an automated email from the git hooks/post-receive script.
u-guest pushed a commit to branch master
in repository onionshare.
commit a6e99fcc21178c46f52192766b15c5d27c33f0c9
Author: Micah Lee <micah at micahflee.com>
Date: Tue Sep 2 12:10:42 2014 -0700
added GPLv3 license to each source file
---
bin/onionshare | 18 ++++++++++++++++++
bin/onionshare-gui | 18 ++++++++++++++++++
onionshare/__init__.py | 18 ++++++++++++++++++
onionshare/helpers.py | 18 ++++++++++++++++++
onionshare/onionshare.py | 19 ++++++++++++++++++-
onionshare/strings.py | 18 ++++++++++++++++++
onionshare/web.py | 18 ++++++++++++++++++
onionshare_gui/__init__.py | 18 ++++++++++++++++++
onionshare_gui/common.py | 18 ++++++++++++++++++
onionshare_gui/downloads.py | 18 ++++++++++++++++++
onionshare_gui/file_selection.py | 18 ++++++++++++++++++
onionshare_gui/onionshare_gui.py | 18 ++++++++++++++++++
onionshare_gui/options.py | 18 ++++++++++++++++++
onionshare_gui/server_status.py | 18 ++++++++++++++++++
setup.py | 19 ++++++++++++++++++-
setup/onionshare-launcher.py | 18 ++++++++++++++++++
test/onionshare_helpers_test.py | 18 ++++++++++++++++++
test/onionshare_strings_test.py | 18 ++++++++++++++++++
test/onionshare_test.py | 18 ++++++++++++++++++
test/onionshare_web_test.py | 18 ++++++++++++++++++
test/test_helpers.py | 18 ++++++++++++++++++
21 files changed, 378 insertions(+), 2 deletions(-)
diff --git a/bin/onionshare b/bin/onionshare
index 7f390db..1035ddd 100755
--- a/bin/onionshare
+++ b/bin/onionshare
@@ -1,4 +1,22 @@
#!/usr/bin/env python
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 sys, os
try:
diff --git a/bin/onionshare-gui b/bin/onionshare-gui
index 78e0001..20055f6 100755
--- a/bin/onionshare-gui
+++ b/bin/onionshare-gui
@@ -1,4 +1,22 @@
#!/usr/bin/env python
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 sys, os
try:
diff --git a/onionshare/__init__.py b/onionshare/__init__.py
index 4da95c7..3860ca8 100644
--- a/onionshare/__init__.py
+++ b/onionshare/__init__.py
@@ -1 +1,19 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from onionshare import *
diff --git a/onionshare/helpers.py b/onionshare/helpers.py
index 9d9193b..a479b77 100644
--- a/onionshare/helpers.py
+++ b/onionshare/helpers.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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, inspect, hashlib, base64, hmac, platform, zipfile
from itertools import izip
diff --git a/onionshare/onionshare.py b/onionshare/onionshare.py
index 998753b..b308114 100644
--- a/onionshare/onionshare.py
+++ b/onionshare/onionshare.py
@@ -1,4 +1,21 @@
-# -*- coding: utf-8 -*-
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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, sys, subprocess, time, argparse, inspect, shutil, socks, socket, threading
from stem.control import Controller
diff --git a/onionshare/strings.py b/onionshare/strings.py
index 3808f93..9ae2e74 100644
--- a/onionshare/strings.py
+++ b/onionshare/strings.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 json, locale
import helpers
diff --git a/onionshare/web.py b/onionshare/web.py
index 501e8da..0186042 100644
--- a/onionshare/web.py
+++ b/onionshare/web.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 Queue, mimetypes, platform, os, sys, zipfile, urllib2
from flask import Flask, Response, request, render_template_string, abort
diff --git a/onionshare_gui/__init__.py b/onionshare_gui/__init__.py
index 011371c..b7fb3ff 100644
--- a/onionshare_gui/__init__.py
+++ b/onionshare_gui/__init__.py
@@ -1 +1,19 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from onionshare_gui import *
diff --git a/onionshare_gui/common.py b/onionshare_gui/common.py
index 4394a26..904849a 100644
--- a/onionshare_gui/common.py
+++ b/onionshare_gui/common.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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, inspect, platform
def get_onionshare_gui_dir():
diff --git a/onionshare_gui/downloads.py b/onionshare_gui/downloads.py
index cae474f..03d40ca 100644
--- a/onionshare_gui/downloads.py
+++ b/onionshare_gui/downloads.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from PyQt4 import QtCore, QtGui
import common
diff --git a/onionshare_gui/file_selection.py b/onionshare_gui/file_selection.py
index 5b7c8b8..de876e6 100644
--- a/onionshare_gui/file_selection.py
+++ b/onionshare_gui/file_selection.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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
from PyQt4 import QtCore, QtGui
diff --git a/onionshare_gui/onionshare_gui.py b/onionshare_gui/onionshare_gui.py
index 5ef2918..cbfb4b2 100644
--- a/onionshare_gui/onionshare_gui.py
+++ b/onionshare_gui/onionshare_gui.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from __future__ import division
import os, sys, subprocess, inspect, platform, argparse, threading, time, math, inspect, platform
from PyQt4 import QtCore, QtGui
diff --git a/onionshare_gui/options.py b/onionshare_gui/options.py
index e0e3038..c192be2 100644
--- a/onionshare_gui/options.py
+++ b/onionshare_gui/options.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from PyQt4 import QtCore, QtGui
import common
diff --git a/onionshare_gui/server_status.py b/onionshare_gui/server_status.py
index 00e5a4b..eb3a162 100644
--- a/onionshare_gui/server_status.py
+++ b/onionshare_gui/server_status.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 platform
from PyQt4 import QtCore, QtGui
diff --git a/setup.py b/setup.py
index 492e7ac..6a27094 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,22 @@
#!/usr/bin/env python
-# -*- coding: utf-8 -*-
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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, sys, platform
from glob import glob
diff --git a/setup/onionshare-launcher.py b/setup/onionshare-launcher.py
index 14803cb..a5e04a8 100644
--- a/setup/onionshare-launcher.py
+++ b/setup/onionshare-launcher.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from __future__ import division
import os, sys, subprocess, time, hashlib, platform, json, locale, socket, argparse, Queue, inspect, base64, random, functools, logging, ctypes, hmac, shutil
from itertools import izip
diff --git a/test/onionshare_helpers_test.py b/test/onionshare_helpers_test.py
index e022e02..eb84cc3 100644
--- a/test/onionshare_helpers_test.py
+++ b/test/onionshare_helpers_test.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from onionshare import helpers
from nose import with_setup
diff --git a/test/onionshare_strings_test.py b/test/onionshare_strings_test.py
index ea20a74..6eea5b9 100644
--- a/test/onionshare_strings_test.py
+++ b/test/onionshare_strings_test.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 locale
from onionshare import strings
from nose import with_setup
diff --git a/test/onionshare_test.py b/test/onionshare_test.py
index afd955b..cf616de 100644
--- a/test/onionshare_test.py
+++ b/test/onionshare_test.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 socket
from onionshare import OnionShare
from nose import with_setup
diff --git a/test/onionshare_web_test.py b/test/onionshare_web_test.py
index fc545a1..91a0492 100644
--- a/test/onionshare_web_test.py
+++ b/test/onionshare_web_test.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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/>.
+"""
from onionshare import web
from nose import with_setup
diff --git a/test/test_helpers.py b/test/test_helpers.py
index ae0f85b..c470514 100644
--- a/test/test_helpers.py
+++ b/test/test_helpers.py
@@ -1,3 +1,21 @@
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014 Micah Lee <micah at micahflee.com>
+
+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 tempfile
class MockSubprocess():
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/onionshare.git
More information about the Pkg-anonymity-tools
mailing list