Skip to content

Commit

Permalink
Merge pull request #1360 from delftswa2014/peterb-add-package-informa…
Browse files Browse the repository at this point in the history
…tion

Add package information to __init__.py
  • Loading branch information
NielsZeilemaker committed Apr 13, 2015
2 parents 403e2d5 + a7c3b7a commit faac4f6
Show file tree
Hide file tree
Showing 36 changed files with 128 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tribler/Category/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Yuan Yuan
# see LICENSE.txt for license information
'''
The category package contains code to categorize torrents and filter the
categories according to filter preferences.
'''
4 changes: 4 additions & 0 deletions Tribler/Core/APIImplementation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The APIImplementation contains the API for torrents, creating them and maintaining them
'''
4 changes: 4 additions & 0 deletions Tribler/Core/CacheDB/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Jie Yang
# see LICENSE.txt for license information

'''
The CacheDB package contains the cachedDB for Tribler including a notifier and manages different versions
'''
3 changes: 3 additions & 0 deletions Tribler/Core/DecentralizedTracking/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# written by Arno Bakker
# see LICENSE.txt for license information
'''
The DecentralizedTracking package contains the pymdht library for profiling networkinformation.
'''
3 changes: 3 additions & 0 deletions Tribler/Core/Libtorrent/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Written by Egbert Bouman

'''
The Libtorrent package contains code to manage the torrent library.
'''

def checkHandleAndSynchronize(default=None):
def wrap(f):
Expand Down
3 changes: 3 additions & 0 deletions Tribler/Core/Modules/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The Modules package contains the tracker manager
'''
3 changes: 3 additions & 0 deletions Tribler/Core/RawServer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The RawServer package contains the RawServer including a socketHandler and a polling system.
'''
3 changes: 3 additions & 0 deletions Tribler/Core/TFTP/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
Contains the the TFTP handler that should be registered at the RawServer to handle TFTP packets
'''
3 changes: 3 additions & 0 deletions Tribler/Core/TorrentChecker/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The TorrentChecker package contains code that checks and schedules torrents.
'''
3 changes: 3 additions & 0 deletions Tribler/Core/Upgrade/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The upgrade package contains information on how to update Tribler and its database to the new version.
'''
4 changes: 4 additions & 0 deletions Tribler/Core/Utilities/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Utilities package contains different utility files that are used in the project
'''
4 changes: 4 additions & 0 deletions Tribler/Core/Video/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Video package contains the VLCWrapper and code to stream live data in Tribler
'''
5 changes: 5 additions & 0 deletions Tribler/Core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Core package contains the core functionalities of the Tribler project
'''

from threading import RLock
import logging

Expand Down
4 changes: 4 additions & 0 deletions Tribler/Debug/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Boudewijn Schoon
# see LICENSE.txt for license information

'''
The Debug package contains code to do debugging in Tribler.
'''
3 changes: 3 additions & 0 deletions Tribler/Main/Dialogs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The Dialogs package contains the different dialogs that are shown within Tribler
'''
4 changes: 4 additions & 0 deletions Tribler/Main/Utility/Feeds/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Niels Zeilemaker
# see LICENSE.txt for license information

'''
The Feeds package contains different feeds, rss and directory.
'''
4 changes: 4 additions & 0 deletions Tribler/Main/Utility/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by ABC authors
# see LICENSE.txt for license information

'''
The Utility package contains different utility classes used in the Main package
'''
4 changes: 4 additions & 0 deletions Tribler/Main/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Main package contains code for the GUI of Tribler.
'''
5 changes: 5 additions & 0 deletions Tribler/Main/vwxGUI/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Written by Jelle Roozenburg, Maarten ten Brinke, Arno Bakker
# ReWritten by Niels Zeilemaker
# see LICENSE.txt for license information

'''
The vwxGUI package contains code for the regular (non-browser) GUI of Tribler
'''

from time import time
import wx
import inspect
Expand Down
4 changes: 4 additions & 0 deletions Tribler/Main/webUI/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Written by Niels Zeilemaker

'''
The webUI package contains code to create a user interface that can be viewed using a browser.
'''
4 changes: 4 additions & 0 deletions Tribler/Policies/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Policies package contains different code for rate and seeding policies in Tribler.
'''
4 changes: 4 additions & 0 deletions Tribler/Test/API/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The API package contains tests for the API.
'''
4 changes: 4 additions & 0 deletions Tribler/Test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Test package contains unit tests for tribler.
'''
4 changes: 4 additions & 0 deletions Tribler/Utilities/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Written by Arno Bakker
# see LICENSE.txt for license information

'''
The Utility package contains different utility classes used in Tribler
'''
3 changes: 3 additions & 0 deletions Tribler/community/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The community package contains code to create and securely communicate with different communities.
'''
3 changes: 3 additions & 0 deletions Tribler/community/allchannel/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The allchannel package contains the AllChannel community which is used to collect votes for channels, and thereby discover which channels are most popular.
'''
3 changes: 3 additions & 0 deletions Tribler/community/bartercast3/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
Tbe bartercast3 package contains the protocol for indirect reciprocity. Provides the incentive to seeding and proxy relay in Tribler.
'''
3 changes: 3 additions & 0 deletions Tribler/community/bartercast4/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The bartercast4 package TTTODO: what does this do?
'''
3 changes: 3 additions & 0 deletions Tribler/community/channel/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The channel package contains a Dispersy community which is used to implement Channels. Channels are lists "favorite" .torrents create by one or more users
'''
3 changes: 3 additions & 0 deletions Tribler/community/demers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The demers package contains a Dispersy community which can be used to verify the speed of message dissemination
'''
3 changes: 3 additions & 0 deletions Tribler/community/metadata/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The metadata package contains a Dispersy community which can be used to disseminate metadata of torrents
'''
3 changes: 3 additions & 0 deletions Tribler/community/search/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The search package contains a Dispersy community which is used to implement decentralized search in Tribler. It also allows peers to discover new .torrents
'''
3 changes: 3 additions & 0 deletions Tribler/community/template/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The template package contains Example files for communities
'''
5 changes: 5 additions & 0 deletions Tribler/community/tunnel/Socks5/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'''
The Socks5 package contains a basic SOCKS5 server is included which reserves
circuits for its client connections and tunnels UDP packets over them back and
forth.
'''
3 changes: 3 additions & 0 deletions Tribler/community/tunnel/crypto/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The crypto package contains TTTODO: What does this do?
'''
3 changes: 3 additions & 0 deletions Tribler/community/tunnel/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'''
The test package contains tests for the tunnel
'''

0 comments on commit faac4f6

Please sign in to comment.