No description
Find a file
Calum Lind 84802da29b [Py2to3] Force unicode_literals and fix related issues
* Added `from __future__ import unicode_literals` to every file so
   now all strings in code are forced to be unicode strings unless
   marked as byte string `b'str'` or encoded to byte string `'str'.encode('utf-8')`.

   This is a large change but we have been working towards the goal of unicode
   strings passed in the code so decoding external input and encoding
   output as byte strings (where applicable).

   Note that in Python 2 the `str` type still refers to byte strings.

 * Replaced the use of `str` for `basestring` in isinstance comparison as
   this was the original intention but breaks code when encoutering unicode strings.

 * Marked byte strings in gtkui as the conversion to utf8 is not always handled, mostly
   related to gobject signal names.
2017-02-22 12:36:32 +00:00
deluge [Py2to3] Force unicode_literals and fix related issues 2017-02-22 12:36:32 +00:00
docs [Core] Refactor default add torrent flags into a constant 2016-11-30 23:21:45 +00:00
packaging [#2879] [OSX] Fix dyld error opening file from within Deluge 2017-02-22 11:20:51 +00:00
.gitattributes Update MANIFEST and .gitattributes 2015-08-27 22:51:43 +01:00
.gitignore [Docs] Autogenerate module docs with apidoc 2016-05-22 12:11:41 +01:00
.pylintrc [GTKUI] Refactor gtk imports and code 2016-11-11 22:21:51 +00:00
.travis.yml Change libtorrent minimum dependency to 1.1.1 2017-01-26 12:49:55 +00:00
AUTHORS Update author name as per request 2015-08-17 23:03:48 +01:00
ChangeLog [GTKUI] Fix magnet association button on Windows 2014-09-23 20:22:24 -04:00
DEPENDS Change libtorrent minimum dependency to 1.1.1 2017-01-26 12:49:55 +00:00
gen_web_gettext.py [Py2to3] Force unicode_literals and fix related issues 2017-02-22 12:36:32 +00:00
generate_pot.py [Py2to3] Force unicode_literals and fix related issues 2017-02-22 12:36:32 +00:00
LICENSE Update LICENSE in trunk too.. 2009-04-06 21:17:26 +00:00
MANIFEST.in Revert "Rename version.py to calc_version.py to fix buildd error" 2016-11-26 19:35:53 +00:00
minify_web_js.py [Py2to3] Force unicode_literals and fix related issues 2017-02-22 12:36:32 +00:00
msgfmt.py [Lint] Quote cleanup 2016-11-17 10:19:59 +00:00
README.rst Fix RTD badge in readme 2014-09-22 19:18:34 -04:00
setup.cfg [Tests] Replace isort test with flake8-isort 2016-11-25 12:43:50 +00:00
setup.py [Lint] Fix pylint warnings in setup.py 2017-01-26 12:48:52 +00:00
tox.ini [Tox] Twisted version pin to 16.6 2017-02-14 18:59:34 +00:00
version.py [Py2to3] Force unicode_literals and fix related issues 2017-02-22 12:36:32 +00:00

=========================
 Deluge BitTorrent Client
=========================

|build-status| |docs|

Homepage: http://deluge-torrent.org

Authors:
    Andrew Resch
    Damien Churchill

For contributors and past developers see: 
    AUTHORS

==========================
Installation Instructions:
==========================

For detailed instructions see: http://dev.deluge-torrent.org/wiki/Installing/Source

Ensure build dependencies are installed, see DEPENDS for a full listing.

Build and install by running::

    $ python setup.py build
    $ sudo python setup.py install

================
Contact/Support:
================

:Forum: http://forum.deluge-torrent.org
:IRC Channel: #deluge on irc.freenode.net

===
FAQ
===

For the full FAQ see: http://dev.deluge-torrent.org/wiki/Faq

How to start the various user-interfaces:
    Gtk::

        deluge or deluge-gtk

    Console::

        deluge-console

    Web::

        deluge-web
        Go to http://localhost:8112/ default-password = "deluge"

How do I start the daemon?:
    deluged

I can't connect to the daemon from another machine:
    See: http://dev.deluge-torrent.org/wiki/UserGuide/ThinClient


.. |build-status| image:: https://travis-ci.org/deluge-torrent/deluge.svg
    :target: https://travis-ci.org/deluge-torrent/deluge

.. |docs| image:: https://readthedocs.org/projects/deluge/badge/?version=develop
    :target: https://readthedocs.org/projects/deluge/?badge=develop
    :alt: Documentation Status