Up...
Content-type: text/plain
Author: andar
Revision: 5828
Log:
Add man pages for deluge-console and deluge-gtk
Update the other man pages
Diff:
Modified: branches/1.2_RC/ChangeLog
===================================================================
--- branches/1.2_RC/ChangeLog 2009-10-09 00:40:46 UTC (rev 5827)
+++ branches/1.2_RC/ChangeLog 2009-10-09 16:26:10 UTC (rev 5828)
@@ -2,7 +2,10 @@
==== GtkUI ====
* Fix path errors when adding torrents externally in Windows
* Fix localclient authentication by stripping the lines read from the auth
file
-
+
+==== Misc ====
+ * Add man pages for deluge-console and deluge-gtk
+
=== Deluge 1.2.0_rc1 (07 October 2009) ===
==== Core ====
* Implement new RPC protocol DelugeRPC replacing XMLRPC
@@ -168,7 +171,7 @@
* Fix #729 tracker icons not being saved in the correct location
* Add support for more tracker icons
* Fix being able to connect to a local daemon from another user account
-
+
=== Deluge 1.1.0 - "Time gas!" (10 January 2009) ===
==== Core ====
* Implement #79 ability to change outgoing port range
Added: branches/1.2_RC/docs/man/deluge-console.1
===================================================================
--- branches/1.2_RC/docs/man/deluge-console.1 (rev 0)
+++ branches/1.2_RC/docs/man/deluge-console.1 2009-10-09 16:26:10 UTC (rev
5828)
@@ -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 <[email protected]>.
+.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
Added: branches/1.2_RC/docs/man/deluge-gtk.1
===================================================================
--- branches/1.2_RC/docs/man/deluge-gtk.1 (rev 0)
+++ branches/1.2_RC/docs/man/deluge-gtk.1 2009-10-09 16:26:10 UTC (rev
5828)
@@ -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 <[email protected]>.
+.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
Modified: branches/1.2_RC/docs/man/deluge.1
===================================================================
--- branches/1.2_RC/docs/man/deluge.1 2009-10-09 00:40:46 UTC (rev 5827)
+++ branches/1.2_RC/docs/man/deluge.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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
Modified: branches/1.2_RC/docs/man/deluged.1
===================================================================
--- branches/1.2_RC/docs/man/deluged.1 2009-10-09 00:40:46 UTC (rev 5827)
+++ branches/1.2_RC/docs/man/deluged.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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 @@
.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 @@
http://www.deluge-torrent.org/
.SH AUTHOR
-This manual page was written by Andrew Resch <[email protected]>.
+This manual page was written by Andrew Resch <[email protected]>.
.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
Modified: branches/1.2_RC/setup.py
===================================================================
--- branches/1.2_RC/setup.py 2009-10-09 00:40:46 UTC (rev 5827)
+++ branches/1.2_RC/setup.py 2009-10-09 16:26:10 UTC (rev 5828)
@@ -279,7 +279,7 @@
def run(self):
class FakeModule(object):
def __init__(self, *args, **kwargs): pass
-
+
def __call__(self, *args, **kwargs):
return FakeModule()
@@ -299,7 +299,7 @@
print "Skipping Exception: ", e
return FakeModule()
__builtins__.__import__ = new_import
-
+
BuildDoc.run(self)
class build(_build):
@@ -382,7 +382,11 @@
('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
Added: trunk/docs/man/deluge-console.1
===================================================================
--- trunk/docs/man/deluge-console.1 (rev 0)
+++ trunk/docs/man/deluge-console.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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 <[email protected]>.
+.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
Added: trunk/docs/man/deluge-gtk.1
===================================================================
--- trunk/docs/man/deluge-gtk.1 (rev 0)
+++ trunk/docs/man/deluge-gtk.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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 <[email protected]>.
+.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
Modified: trunk/docs/man/deluge.1
===================================================================
--- trunk/docs/man/deluge.1 2009-10-09 00:40:46 UTC (rev 5827)
+++ trunk/docs/man/deluge.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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
Modified: trunk/docs/man/deluged.1
===================================================================
--- trunk/docs/man/deluged.1 2009-10-09 00:40:46 UTC (rev 5827)
+++ trunk/docs/man/deluged.1 2009-10-09 16:26:10 UTC (rev 5828)
@@ -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 @@
.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 @@
http://www.deluge-torrent.org/
.SH AUTHOR
-This manual page was written by Andrew Resch <[email protected]>.
+This manual page was written by Andrew Resch <[email protected]>.
.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
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2009-10-09 00:40:46 UTC (rev 5827)
+++ trunk/setup.py 2009-10-09 16:26:10 UTC (rev 5828)
@@ -279,7 +279,7 @@
def run(self):
class FakeModule(object):
def __init__(self, *args, **kwargs): pass
-
+
def __call__(self, *args, **kwargs):
return FakeModule()
@@ -299,7 +299,7 @@
print "Skipping Exception: ", e
return FakeModule()
__builtins__.__import__ = new_import
-
+
BuildDoc.run(self)
class build(_build):
@@ -382,7 +382,11 @@
('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
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---