Commit Graph

227 Commits (388d1ca3303128a233cafd275a4472e3c9cd0a17)

Author SHA1 Message Date
ITriskTI 70e46516a1 Update aria2c.rst 2016-02-03 17:29:22 +03:00
Tatsuhiro Tsujikawa a0d851ddfa Fix typo 2016-02-03 22:22:07 +09:00
Tatsuhiro Tsujikawa 25615fcb17 Add "seeder" key to tellStatus RPC response 2016-02-03 22:21:37 +09:00
Tatsuhiro Tsujikawa 0b7ee8be21 Merge pull request #548 from ITriskTI/patch-2
Update aria2c.rst
2016-01-29 21:12:03 +09:00
ITriskTI e48cd33e3f Update aria2c.rst 2016-01-29 13:25:26 +03:00
ITriskTI 415a70bbd6 Fixed warning
WARNING: unknown option: --save-session-file
2016-01-29 13:21:17 +03:00
Tatsuhiro Tsujikawa 8f51793b19 Add --max-mmap-limit option
Set the maximum file size to enable mmap (see --enable-mmap
option). The file size is determined by the sum of all files contained
in one download. For example, if a download contains 5 files, then
file size is the total size of those files. If file size is strictly
greater than the size specified in this option, mmap will be disabled.
2016-01-29 00:14:30 +09:00
Tatsuhiro Tsujikawa eaaf33d9aa Replace sourceforge references with aria2.github.io 2015-12-27 18:03:57 +09:00
Tatsuhiro Tsujikawa d0ccb39880 Add system.listMethods RPC method
system.listMethods just returns the available RPC method names.  It
can be executed without secret token, because it just returns the
method names, and does not alter anything.

See GH-437
2015-12-26 20:58:42 +09:00
Tatsuhiro Tsujikawa b89dc77407 Update doc 2015-12-19 11:35:30 +09:00
ITriskTI 3de11fa246 Update aria2c.rst 2015-12-01 15:40:23 +03:00
Tatsuhiro Tsujikawa 35f08f05ef Add --bt-enable-hook-after-hash-check option
This option sets flag which allows hook command invocation after hash
check (see -V option) in BitTorrent download.  By default, when hash
check succeeds, the command given by --on-bt-download-complete is
executed.  To disable this action, give false to this option.
2015-11-29 18:54:19 +09:00
Tatsuhiro Tsujikawa 6a0638c158 Update doc 2015-11-28 14:12:34 +09:00
Tatsuhiro Tsujikawa e8a9a366db Add --socket-recv-buffer-size option
Set the maximum socket receive buffer in bytes. Specifing 0 will
disable this option. This value will be set to socket file descriptor
using SO_RCVBUF socket option with setsockopt() call.

See GH-487 about the usecase of this option
2015-11-28 14:12:23 +09:00
Tatsuhiro Tsujikawa 699f04d0b8 Disable --deferred-input when --save-session is used together
With --deferred-input=true, aria2 only reads input file to fill active
download slots, while keeping input file open.  Meanwhile,
--save-session saves all download info inside memory, but this does
not take into account of unread item in input file.  This will lead to
lose input data in saved session file.  Also current BufferedFile
implementation used to read/write input/output file take a lock on
Windows.  This effectively prevents session serializer from writing
session data to the same file which is still kept open because of
--deferred-input.  See GH-493
2015-11-28 13:02:21 +09:00
Tatsuhiro Tsujikawa f9ce272bf0 Document errorMessage in aria2.tellStatus RPC method response 2015-11-21 17:07:10 +09:00
Tatsuhiro Tsujikawa 9bce4eb925 doc: Use binary input mode in RPC example python code 2015-11-17 22:30:43 +09:00
Tatsuhiro Tsujikawa e47b012969 mkapiref.py: Add class name to member functions and methods 2015-09-19 19:40:50 +09:00
Tatsuhiro Tsujikawa 8752a6f7cd aria2c.rst: Update copyright year 2015-09-19 18:09:45 +09:00
Tatsuhiro Tsujikawa 79cdca5f5b Merge branch 'pep-394' of https://github.com/wasamasa/aria2 into wasamasa-pep-394 2015-06-05 00:19:22 +09:00
Vasilij Schneidermann 080266ac04 Make script compatible with both Python 2 and 3 2015-06-04 16:10:53 +02:00
ITriskTI 9d59461f9f Update aria2c.rst 2015-06-04 14:50:42 +03:00
Vasilij Schneidermann 8bc1d37b3a Make config and cache files conform to XDG
See http://standards.freedesktop.org/basedir-spec/latest/ for further
details.  This implementation decides the default based on whether a
file exists at the legacy location, if it doesn't, it picks the
XDG-conforming location instead.
2015-06-02 15:54:27 +02:00
Tatsuhiro Tsujikawa 5e9992b2be Add outdated warning to pt translation 2015-05-24 18:43:23 +09:00
ITriskTI b073735d82 Update aria2c.rst 2015-05-19 19:53:43 +03:00
Tatsuhiro Tsujikawa c26da09687 Add --ssh-host-key-md option
Set checksum for SSH host public key.  Use same syntax with --checksum
option.  TYPE is hash type.  The supported hash type is sha-1 or
md5. DIGEST is hex digest.  For example:
sha-1=b030503d4de4539dc7885e6f0f5e256704edf4c3.  This option can be
used to validate server's public key when SFTP is used.  If this
option is not set, which is default, no validation takes place.
2015-05-16 19:43:11 +09:00
Tatsuhiro Tsujikawa 4273885f16 Document --netrc-path option 2015-05-14 21:26:38 +09:00
Tatsuhiro Tsujikawa 3855205026 Exit with 32 status code if checksum verification failed 2015-05-12 23:08:10 +09:00
Tatsuhiro Tsujikawa 5100f96bfa Update doc 2015-05-12 22:52:09 +09:00
ITriskTI 3d5b5cc0e9 Update aria2c.rst 2015-05-04 11:59:06 +03:00
Tatsuhiro Tsujikawa 0ab23e7a8d Document --multiple-interface option
Thic commit documents --multiple-interface option, and move option
handler for it to the place alphabetical order as we do usually
2015-04-22 22:48:49 +09:00
Tatsuhiro Tsujikawa c1879586b7 Add encoding specifier to Russian man page
See GH-341
2015-02-23 23:22:51 +09:00
Tatsuhiro Tsujikawa 8bbb17561f Merge branch 'patch-3' of https://github.com/ITriskTI/aria2 into ITriskTI-patch-3 2015-01-13 23:39:01 +09:00
ITriskTI b8e6ae2a55 Update aria2c.rst 2015-01-13 16:13:44 +03:00
ITriskTI 9c78825fa5 Update aria2c.rst 2015-01-13 16:05:15 +03:00
ITriskTI 1aa4f33333 Fix typo 2015-01-13 16:00:17 +03:00
Tatsuhiro Tsujikawa 7bbf209a02 Escape \ in rst doc 2015-01-12 17:50:24 +09:00
Tatsuhiro Tsujikawa c653c72dc8 Add --bt-force-encryption option
This option requires BitTorrent message payload encryption with
arc4. This is a shorthand of --bt-requre-crypto
--bt-min-crypto-level=arc4.  If true is given, deny legacy BitTorrent
handshake and only use Obfuscation handshake and always encrypt
message payload. This option defaults to false.
2015-01-12 17:46:20 +09:00
ITriskTI 634e1fe73f Update aria2c.rst 2014-12-06 14:21:43 +03:00
Tatsuhiro Tsujikawa 73d752fb1c Add --min-tls-version option
The --min-tls-version option specifies minimum SSL/TLS version to
enable. Possible Values: SSLv3, TLSv1, TLSv1.1, TLSv1.2 Default: TLSv1
2014-12-06 17:50:35 +09:00
Tatsuhiro Tsujikawa ae50b93795 Fix typo 2014-10-27 21:33:32 +09:00
Tatsuhiro Tsujikawa 3b68e1d08c Fix doc: Wrong rpc secret token prefix 2014-10-16 22:37:13 +09:00
ITriskTI 199029143b Update aria2c.rst 2014-10-13 22:16:27 +03:00
Tatsuhiro Tsujikawa f72a303b8d Add --bt-detach-seed-only option
This option excludes seed only downloads when counting concurrent
active downloads (-j option).  This means that if -j3 is given and
this option is turned on and 3 downloads are active and one of those
enters seed mode, then it is excluded from active download count (thus
it becomes 2), and the next download waiting in queue gets started.
But be aware that seeding item is still recognized as active download
in RPC method.
2014-10-14 00:13:29 +09:00
ITriskTI d6fcc50ebd Update aria2c.rst 2014-10-05 15:21:07 +03:00
Tatsuhiro Tsujikawa ddee21ce96 doc: Fix default value of --peer-id-prefix 2014-10-04 22:42:27 +09:00
Tatsuhiro Tsujikawa bee7a8317c Update doc 2014-09-12 02:02:33 +09:00
ITriskTI 19ec70b196 Update aria2c.rst 2014-08-30 13:07:38 +03:00
Tatsuhiro Tsujikawa b8b291187d Remove trac-wiki link
sf.net pulled the plug of hosted apps including trac-wiki.  The link
to the wiki has not worked for some time now.  We submit issue to
sf.net to migrate the wiki content to current sf.net standard wiki.
When the migration is done, we'll add the link to it in the doc.
2014-08-29 23:27:38 +09:00
Nils Maier 8732a24433 Try to set sane limits for RLIMIT_NO_FILE
E.g. on OSX the default is 256, which isn't exactly compatible with
torrent downloads.

Closes GH-257
2014-07-22 21:58:31 +02:00
ITriskTI f1de5bac08 Update aria2c.rst 2014-07-12 18:36:21 +03:00
Tatsuhiro Tsujikawa 4b9b1784f1 Document --pause-metadata option in man page 2014-06-21 00:58:21 +09:00
Nils Maier d02ee723bd Improve aria2.rst and usage texts a bit.
(Keep in mind that I'm not a native speaker either)
- Fix some typos.
- Fix some grammar stuff.
- Clarify some things.
- Add a new paragraph or two...
2014-05-20 18:02:47 +02:00
ITriskTI e890dac87f Update aria2c.rst 2014-03-15 13:01:42 +03:00
Tatsuhiro Tsujikawa a8319a8b78 Add aria2.saveSession RPC method
This method saves the current session to a file specified by
--save-session option. This method returns "OK" if it succeeds.
2014-02-19 22:02:50 +09:00
ITriskTI 8aff857f76 Update aria2c.rst 2014-02-15 15:15:39 +03:00
Tatsuhiro Tsujikawa 1462d6536a Add numStoppedTotal key to aria2.getGlobalStat() RPC method response
It shows the number of stopped downloads in the current session and
not capped by --max-download-result option. On the other hand, the
existing numStopped key also shows the number of stopped downloads,
but it is capped by --max-download-result option.
2014-02-15 19:10:48 +09:00
Tatsuhiro Tsujikawa bdc9c8a991 Document --dscp option in manual page 2014-02-04 21:55:35 +09:00
Tatsuhiro Tsujikawa 7d1aa887ee Add future deprecation warning to --rpc-user and --rpc-passwd 2014-02-02 17:58:56 +09:00
Tatsuhiro Tsujikawa 7f6987a4b4 Implement new RPC authorization using --rpc-secret option 2014-02-02 17:34:07 +09:00
Tatsuhiro Tsujikawa 30e4077440 Add --enable-color option to enable/disable terminal color output 2014-01-30 00:15:05 +09:00
Tatsuhiro Tsujikawa 2571bf4a36 Update copyright year to 2014 2014-01-05 20:54:52 +09:00
Nils Maier caf7213bad Fix theme path (out-of-tree-builds)
Closes GH-164
2013-12-09 16:56:57 +01:00
Nils Maier 32e569ab16 Fix broken EXTRA_DIST 2013-12-09 16:38:45 +01:00
Tatsuhiro Tsujikawa 6f2648f891 Update doc 2013-12-09 23:12:17 +09:00
Tatsuhiro Tsujikawa dc757f49b6 doc: Use sphinx_rtd_theme 2013-12-07 15:34:23 +09:00
ITriskTI efe7d10b18 Update aria2c.rst 2013-12-04 14:57:05 +03:00
Nils Maier 4ce8c4021d Update the docs regardings TLS support 2013-11-20 10:48:15 +01:00
ITriskTI c68297498d Update aria2c.rst 2013-11-17 21:29:37 +03:00
Tatsuhiro Tsujikawa 4d105a2686 Limit number of opened file globally with --bt-max-open-files option
This change changes the behavior of --bt-max-open-files. Previously,
it specifies the maximum number of opened files for each multi-file
download. Since it is more useful to limit the number globally, the
option now specifies the global limit. This change suggests that
aria2.changeOption() method now ignores --bt-max-open-files and
aria2.changeGlobalOption now reads it and dynamically change the
limit.
2013-11-17 19:33:18 +09:00
ITriskTI 667a4725e8 Update aria2c.rst 2013-10-01 10:32:05 +03:00
Nils Maier 1065f9d964 Document that AppleTLS, WinTLS does not support --ca-certitifcate 2013-09-30 16:49:32 +02:00
Nils Maier 41bee45792 Document WinTLS, AppleTLS, PKCS12 for --certificate 2013-09-30 16:49:10 +02:00
Nils Maier 9768aa9fad WinTLS: Document PKCS12-only support. 2013-09-30 13:53:21 +02:00
Tatsuhiro Tsujikawa cf5b049999 Merge branch 'patch-2' of https://github.com/ITriskTI/aria2 into ITriskTI-patch-2 2013-09-25 21:33:23 +09:00
ITriskTI f2137eb784 Fixed a typo in the English manual
Closes #133
2013-09-25 02:51:31 +02:00
ITriskTI 5787b1e161 Update aria2c.rst 2013-09-24 22:39:09 +03:00
Nils Maier 2f1f45bcc5 Document PKCS12 availability 2013-09-22 12:55:27 +02:00
Nils Maier 7ca627bfe9 Fix out-of-tree builds of libaria2api
Also it's not just the `html` target that needs libaria2api generated.

The fix is mighty ackward, as it is not really out-of-tree: libaria2api
still will be but into the srcdir. I settled for this because trying to
do a real include from the build dir is really a mess, either requireing
heavy pre-processing or a custom sphinx Include directive :p
2013-09-09 23:35:15 +02:00
ITriskTI d668a8a604 Update aria2c.rst 2013-09-03 09:23:43 +03:00
Nils Maier 72c5aaa31a Give hint on how to install sphinx-build
... and remove trailing parenthesis from warning messages
2013-08-24 20:09:39 +02:00
Tatsuhiro Tsujikawa d87365efc6 Use @echo instead of $(warning ...) to suppress warning on autoreconf 2013-08-21 00:40:30 +09:00
Nils Maier 02c65e0eca Always build doc/manual-src
Should sphinx-build be not available AND the man file not be prsent,
then just "touch" it into existence (and warn about that)
2013-08-19 00:16:54 +02:00
Nils Maier 4be7ec380f Change defaults: Enable 16M disk cache by default. 2013-08-12 20:51:19 +02:00
Tatsuhiro Tsujikawa de55569de5 Always save control file if --force-save is given 2013-07-28 18:07:29 +09:00
Tatsuhiro Tsujikawa 4ff6a9f1d4 Do the same doc improvements to --follow-metalink 2013-06-12 21:37:30 +09:00
gt 75d3e6f4dd Improvements to --follow-torrent=false documentation. 2013-06-11 23:49:09 +05:30
Tatsuhiro Tsujikawa e8b27b7017 libaria2.rst: Fix typo 2013-05-28 23:45:29 +09:00
Tatsuhiro Tsujikawa 91e0fdbc24 Remove clean-local not to remove generated man pages with `make clean`
Because we don't require sphinx-doc to build distributed archive, the
man pages are generated when making distribution. And We want to keep
the generated man pages with `make clean` there.
2013-05-26 01:14:00 +09:00
Tatsuhiro Tsujikawa 42d3408b50 Add libaria2 tutorial 2013-05-21 23:53:21 +09:00
ITriskTI 8d2191e488 Update aria2c.rst 2013-05-18 15:45:51 +03:00
Tatsuhiro Tsujikawa 798dd406f2 Match ru and pt doc style to en version 2013-05-18 19:06:15 +09:00
Tatsuhiro Tsujikawa aca6b0b68c Update doc style 2013-05-18 19:01:49 +09:00
Tatsuhiro Tsujikawa bb194f6c6b Add missing docs to EXTRA_DIST 2013-05-18 17:14:24 +09:00
Tatsuhiro Tsujikawa 93db904e48 Add reference marker to EXIT STATUS section 2013-05-18 16:37:58 +09:00
Tatsuhiro Tsujikawa 8b7bac60ec Update libaria2.rst 2013-05-18 16:35:50 +09:00
Tatsuhiro Tsujikawa 0ed4fec8a8 Update libaria2.rst 2013-05-18 16:27:13 +09:00
Tatsuhiro Tsujikawa 0adc4b795e Add gid option to Input File section 2013-05-16 23:15:23 +09:00
Tatsuhiro Tsujikawa c7c4d46672 Add changeOption and DownloadHandle::getOption API
In aria2c.rst, define section label for "Input File" section so that
it can be referenced from other document.
2013-05-16 23:09:19 +09:00
Tatsuhiro Tsujikawa 390ad710f1 Update copyright year in aria2c.rst 2013-05-11 22:35:19 +09:00