Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
7de42f8e
Commit
7de42f8e
authored
Mar 08, 2016
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed copyright and license notices from the top of every source file
parent
d207720a
Changes
40
Hide whitespace changes
Inline
Side-by-side
Showing
40 changed files
with
22 additions
and
78 deletions
+22
-78
LICENSE
LICENSE
+20
-0
MANIFEST.in
MANIFEST.in
+1
-0
__init__.py
blink/__init__.py
+0
-2
aboutpanel.py
blink/aboutpanel.py
+0
-2
accounts.py
blink/accounts.py
+0
-2
chatwindow.py
blink/chatwindow.py
+0
-2
__init__.py
blink/configuration/__init__.py
+0
-3
account.py
blink/configuration/account.py
+0
-2
addressbook.py
blink/configuration/addressbook.py
+0
-2
datatypes.py
blink/configuration/datatypes.py
+0
-2
settings.py
blink/configuration/settings.py
+0
-2
contacts.py
blink/contacts.py
+0
-2
event.py
blink/event.py
+0
-2
filetransferwindow.py
blink/filetransferwindow.py
+0
-2
history.py
blink/history.py
+0
-2
logging.py
blink/logging.py
+0
-3
mainwindow.py
blink/mainwindow.py
+0
-2
preferences.py
blink/preferences.py
+0
-2
presence.py
blink/presence.py
+0
-2
resources.py
blink/resources.py
+0
-2
__init__.py
blink/screensharing/__init__.py
+0
-2
_rfb.pyx
blink/screensharing/_rfb.pyx
+0
-2
vncclient.py
blink/screensharing/vncclient.py
+0
-2
vncviewer.py
blink/screensharing/vncviewer.py
+0
-2
sessions.py
blink/sessions.py
+0
-2
__init__.py
blink/update/__init__.py
+0
-2
windows.py
blink/update/windows.py
+0
-2
util.py
blink/util.py
+0
-2
__init__.py
blink/widgets/__init__.py
+0
-2
buttons.py
blink/widgets/buttons.py
+0
-2
color.py
blink/widgets/color.py
+0
-2
containers.py
blink/widgets/containers.py
+0
-2
frames.py
blink/widgets/frames.py
+0
-2
graph.py
blink/widgets/graph.py
+0
-2
labels.py
blink/widgets/labels.py
+0
-2
lineedit.py
blink/widgets/lineedit.py
+0
-2
util.py
blink/widgets/util.py
+0
-2
video.py
blink/widgets/video.py
+0
-2
zrtp.py
blink/widgets/zrtp.py
+0
-3
copyright
debian/copyright
+1
-1
No files found.
LICENSE
0 → 100644
View file @
7de42f8e
Copyright 2010-2016 AG Projects (http://ag-projects.com)
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Blink is licensed under GNU General Public License version 3. A copy of the
license is available at http://www.gnu.org/licenses/gpl-3.0.html
The following additional restrictions:
* You may not alter the name of the software (Blink)
* You may not alter the Copyright and About notices
MANIFEST.in
View file @
7de42f8e
include LICENSE
include MANIFEST.in
include build_inplace
...
...
blink/__init__.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'Blink'
]
...
...
blink/aboutpanel.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'AboutPanel'
]
...
...
blink/accounts.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'AccountModel'
,
'ActiveAccountModel'
,
'AccountSelector'
,
'AddAccountDialog'
,
'ServerToolsAccountModel'
,
'ServerToolsWindow'
]
...
...
blink/chatwindow.py
View file @
7de42f8e
# Copyright (C) 2013 AG Projects. See LICENSE for details.
#
from
__future__
import
division
...
...
blink/configuration/__init__.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
blink/configuration/account.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
"""Blink account settings extensions."""
...
...
blink/configuration/addressbook.py
View file @
7de42f8e
# Copyright (C) 2013 AG Projects. See LICENSE for details.
#
"""Blink addressbook settings extensions."""
...
...
blink/configuration/datatypes.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
"""Definitions for datatypes used in configuration extensions."""
...
...
blink/configuration/settings.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
"""Blink settings extensions."""
...
...
blink/contacts.py
View file @
7de42f8e
# Copyright (C) 2010-2013 AG Projects. See LICENSE for details.
#
__all__
=
[
'Group'
,
'Contact'
,
'BonjourNeighbour'
,
'GoogleContact'
,
'ContactModel'
,
'ContactSearchModel'
,
'ContactListView'
,
'ContactSearchListView'
,
'ContactEditorDialog'
,
'GoogleContactsDialog'
,
'URIUtils'
]
...
...
blink/event.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'CallFunctionEvent'
]
...
...
blink/filetransferwindow.py
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
__all__
=
[
'FileTransferWindow'
]
...
...
blink/history.py
View file @
7de42f8e
# Copyright (C) 2013 AG Projects. See LICENSE for details.
#
__all__
=
[
'HistoryManager'
]
...
...
blink/logging.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
# This module will be replaced by an improved logging system. -Luci
#
__all__
=
[
'LogManager'
]
...
...
blink/mainwindow.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'MainWindow'
]
...
...
blink/preferences.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'PreferencesWindow'
,
'AccountListView'
,
'SIPPortEditor'
]
...
...
blink/presence.py
View file @
7de42f8e
# Copyright (C) 2013 AG Projects. See LICENSE for details.
#
__all__
=
[
'PresenceManager'
,
'PendingWatcherDialog'
]
...
...
blink/resources.py
View file @
7de42f8e
# Copyright (C) 2010-2013 AG Projects. See LICENSE for details.
#
"""Provide access to Blink's resources"""
...
...
blink/screensharing/__init__.py
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
__all__
=
[
'ScreensharingWindow'
,
'VNCViewer'
,
'VNCClient'
,
'RFBSettings'
,
'ServerDefault'
,
'TrueColor'
,
'HighColor'
,
'LowColor'
]
...
...
blink/screensharing/_rfb.pyx
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
__all__ = ['RFBClient', 'RFBClientError']
...
...
blink/screensharing/vncclient.py
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
__all__
=
[
'VNCClient'
,
'RFBSettings'
,
'ServerDefault'
,
'TrueColor'
,
'HighColor'
,
'LowColor'
]
...
...
blink/screensharing/vncviewer.py
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
from
__future__
import
division
...
...
blink/sessions.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'ClientConference'
,
'ConferenceDialog'
,
'AudioSessionModel'
,
'AudioSessionListView'
,
'ChatSessionModel'
,
'ChatSessionListView'
,
'SessionManager'
]
...
...
blink/update/__init__.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'IUpdateManager'
,
'UpdateManager'
]
...
...
blink/update/windows.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
import
os
...
...
blink/util.py
View file @
7de42f8e
# Copyright (C) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'QSingleton'
,
'call_in_gui_thread'
,
'call_later'
,
'run_in_gui_thread'
]
...
...
blink/widgets/__init__.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
blink/widgets/buttons.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'ToolButton'
,
'ConferenceButton'
,
'StreamButton'
,
'SegmentButton'
,
'SingleSegment'
,
'LeftSegment'
,
'MiddleSegment'
,
'RightSegment'
,
'RecordButton'
,
'SwitchViewButton'
,
'StateButton'
,
'AccountState'
]
...
...
blink/widgets/color.py
View file @
7de42f8e
# Copyright (c) 2012 AG Projects. See LICENSE for details.
#
__all__
=
[
'ColorScheme'
,
'ColorUtils'
,
'ColorHelperMixin'
]
...
...
blink/widgets/containers.py
View file @
7de42f8e
# Copyright (c) 2014 AG Projects. See LICENSE for details.
#
__all__
=
[
'SlidingStackedWidget'
]
...
...
blink/widgets/frames.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'BackgroundFrame'
]
...
...
blink/widgets/graph.py
View file @
7de42f8e
# Copyright (c) 2014 AG Projects. See LICENSE for details.
#
__all__
=
[
'Graph'
,
'GraphWidget'
,
'HeightScaler'
,
'LogarithmicScaler'
,
'MaxScaler'
,
'SoftScaler'
]
...
...
blink/widgets/labels.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'DurationLabel'
,
'IconSelector'
,
'LatencyLabel'
,
'PacketLossLabel'
,
'Status'
,
'StatusLabel'
,
'StreamInfoLabel'
,
'ElidedLabel'
,
'ContactState'
]
...
...
blink/widgets/lineedit.py
View file @
7de42f8e
# Copyright (c) 2010 AG Projects. See LICENSE for details.
#
__all__
=
[
'LineEdit'
,
'ValidatingLineEdit'
,
'SearchBox'
,
'LocationBar'
]
...
...
blink/widgets/util.py
View file @
7de42f8e
# Copyright (c) 2010-2013 AG Projects. See LICENSE for details.
#
__all__
=
[
'QtDynamicProperty'
,
'ContextMenuActions'
]
...
...
blink/widgets/video.py
View file @
7de42f8e
# Copyright (C) 2014 AG Projects. See LICENSE for details.
#
from
__future__
import
division
...
...
blink/widgets/zrtp.py
View file @
7de42f8e
# Copyright (C) 2015 AG Projects. See LICENSE for details.
#
__all__
=
[
'ZRTPWidget'
]
...
...
debian/copyright
View file @
7de42f8e
...
...
@@ -11,7 +11,7 @@ Upstream Author(s):
Copyright:
Copyright (C) 2010-201
3
AG Projects
Copyright (C) 2010-201
6
AG Projects
License:
...
...
Write
Preview
Markdown
is supported
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