From 7eecad59d7c92cbc416f52a3ad3a26fb0faa524e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 27 Oct 2010 17:42:50 -0600 Subject: [PATCH] ... --- src/calibre/library/server/main.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/calibre/library/server/main.py b/src/calibre/library/server/main.py index 6d01080886..ca36f998bf 100644 --- a/src/calibre/library/server/main.py +++ b/src/calibre/library/server/main.py @@ -25,7 +25,18 @@ def stop_threaded_server(server): server.thread = None def option_parser(): - parser = config().option_parser('%prog '+ _('[options]\n\nStart the calibre content server.')) + parser = config().option_parser('%prog '+ _( +'''[options] + +Start the calibre content server. The calibre content server +exposes your calibre library over the internet. The default interface +allows you to browse you calibre library by categories. You can also +access an interface optimized for mobile browsers at /mobile and an +OPDS based interface for use with reading applications at /opds. + +The OPDS interface is advertised via BonJour automatically. +''' +)) parser.add_option('--with-library', default=None, help=_('Path to the library folder to serve with the content server')) parser.add_option('--pidfile', default=None,