diff --git a/docs/man/deluge-console.1 b/docs/man/deluge-console.1 new file mode 100644 index 000000000..67da41cd3 --- /dev/null +++ b/docs/man/deluge-console.1 @@ -0,0 +1,29 @@ +.TH DELUGE-CONSOLE 1 "October 2009" "1.2.0" + +.SH NAME +deluge-console - a bittorrent client curses interface + +.SH SYNOPSIS +.B deluge-console [options] + +.SH DESCRIPTION +.br +.P +Deluge utilizes a client/server model, with 'deluged' being the daemon process and 'deluge-console' being used to launch a console user-interface. +.br +.P +You can pass console commands directly from the command line, see `deluge-console --help` for a list of commands. +Run multiple commands by separating them with a semi-colon (;). + +.SH OPTIONS +See `deluge`. + +.SH SEE ALSO +.B Homepage: +http://www.deluge-torrent.org/ + +.SH AUTHOR +This manual page was written by Andrew Resch . +.br +Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation +.br diff --git a/docs/man/deluge-gtk.1 b/docs/man/deluge-gtk.1 new file mode 100644 index 000000000..0fdeef708 --- /dev/null +++ b/docs/man/deluge-gtk.1 @@ -0,0 +1,28 @@ +.TH DELUGE-GTK 1 "October 2009" "1.2.0" + +.SH NAME +deluge-gtk - a bittorrent client gtk interface + +.SH SYNOPSIS +.B deluge-gtk [options] [torrent] + +.SH DESCRIPTION +.br +.P +Deluge utilizes a client/server model, with 'deluged' being the daemon process and 'deluge-gtk' being used to launch a GTK+ user-interface. +.br +.P +By default, Deluge will run in 'Classic' mode where the daemon functionality will be hidden. You can turn this off in the Preferences dialog. + +.SH OPTIONS +See `deluge`. + +.SH SEE ALSO +.B Homepage: +http://www.deluge-torrent.org/ + +.SH AUTHOR +This manual page was written by Andrew Resch . +.br +Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation +.br diff --git a/docs/man/deluge.1 b/docs/man/deluge.1 index 7cef8b8c6..07637b30a 100644 --- a/docs/man/deluge.1 +++ b/docs/man/deluge.1 @@ -1,4 +1,4 @@ -.TH DELUGE 1 "January 2009" "1.1.2" +.TH DELUGE 1 "October 2009" "1.2.0" .SH NAME deluge - a bittorrent client diff --git a/docs/man/deluged.1 b/docs/man/deluged.1 index 44a7f0d62..d10114ba0 100644 --- a/docs/man/deluged.1 +++ b/docs/man/deluged.1 @@ -1,4 +1,4 @@ -.TH DELUGED 1 "January 2009" "1.1.2" +.TH DELUGED 1 "October 2009" "1.2.0" .SH NAME deluged - a bittorrent client daemon @@ -25,6 +25,10 @@ Show this help message and exit. .I -p PORT, --port=PORT Port daemon will listen on, default is 58846 .TP +.I -i INTERFACE, --interface=INTERFACE +Interface daemon will listen for bittorrent connections on, this should be an IP address +.I -u UI_INTERFACE, --ui-interface=UI_INTERFACE +Interface daemon will listen for UI connections on, this should be an IP address .I -d, --do-not-daemonize Do not daemonize .TP @@ -48,7 +52,7 @@ Sets the log level to 'none', this is the same as `\-L none` http://www.deluge-torrent.org/ .SH AUTHOR -This manual page was written by Andrew Resch . +This manual page was written by Andrew Resch . .br Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation .br diff --git a/setup.py b/setup.py index d9b413bf6..63a5be7f1 100644 --- a/setup.py +++ b/setup.py @@ -279,7 +279,7 @@ class build_docs(BuildDoc): def run(self): class FakeModule(object): def __init__(self, *args, **kwargs): pass - + def __call__(self, *args, **kwargs): return FakeModule() @@ -299,7 +299,7 @@ class build_docs(BuildDoc): print "Skipping Exception: ", e return FakeModule() __builtins__.__import__ = new_import - + BuildDoc.run(self) class build(_build): @@ -382,7 +382,11 @@ _data_files = [ ('share/icons/hicolor/96x96/apps', ['deluge/data/icons/hicolor/96x96/apps/deluge.png']), ('share/applications', ['deluge/data/share/applications/deluge.desktop']), ('share/pixmaps', ['deluge/data/pixmaps/deluge.png', 'deluge/data/pixmaps/deluge.xpm']), - ('share/man/man1', ['docs/man/deluge.1', 'docs/man/deluged.1']) + ('share/man/man1', [ + 'docs/man/deluge.1', + 'docs/man/deluged.1', + 'docs/man/deluge-gtk.1', + 'docs/man/deluge-console.1']) ] # Main setup