ncdc 1.3 released + misc. fixes
This commit is contained in:
parent
9290e21c3b
commit
a328048251
3 changed files with 57 additions and 9 deletions
20
index.cgi
20
index.cgi
|
|
@ -53,6 +53,7 @@ sub home {
|
|||
E;
|
||||
end;
|
||||
h2 'Updates';
|
||||
b '2011-10-14'; txt ' ncdc 1.3 released!'; br;
|
||||
b '2011-09-25'; txt ' ncdc 1.1 released - follwed by a 1.2 quickfix.'; br;
|
||||
b '2011-09-16'; txt ' ncdc 1.0 released!'; br;
|
||||
b '2011-09-15'; txt ' Added some screenshots for ncdu.'; br;
|
||||
|
|
@ -122,6 +123,7 @@ sub ncdu {
|
|||
a href => 'http://packages.debian.org/ncdu', 'Debian'; txt ' - ';
|
||||
a href => 'https://admin.fedoraproject.org/pkgdb/acls/name/ncdu', 'Fedora'; txt ' - ';
|
||||
a href => 'http://www.freshports.org/sysutils/ncdu/', 'FreeBSD'; txt ' - ';
|
||||
a href => 'http://frugalware.org/packages/?op=pkg&srch=ncdu&arch=all&ver=all', 'Frugalware'; txt ' - ';
|
||||
a href => 'http://packages.gentoo.org/package/sys-fs/ncdu', 'Gentoo'; txt ' - ';
|
||||
a href => 'http://www.ipcopaddons.org/addondb.php?action=detail&addonid=67', 'IPCop'; txt ' - ';
|
||||
a href => 'http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/ncdu/', 'OpenBSD'; txt ' - ';
|
||||
|
|
@ -174,7 +176,7 @@ sub ncduchangelog {
|
|||
sub ncdumanual {
|
||||
my $s = shift;
|
||||
$s->htmlHeader(title => 'Manual page', page => 'ncdu', tab => 'man');
|
||||
open my $F, '<', "$ROOT/dat/ncdu-man" or die $!;
|
||||
open my $F, '<:utf8', "$ROOT/dat/ncdu-man" or die $!;
|
||||
pre;
|
||||
txt $_ while(<$F>);
|
||||
end;
|
||||
|
|
@ -227,8 +229,8 @@ sub ncdc {
|
|||
|
||||
h2 'Get ncdc!';
|
||||
p;
|
||||
b 'Latest version:'; txt ' 1.2 (';
|
||||
a href => '/download/ncdc-1.2.tar.gz', 'download';
|
||||
b 'Latest version:'; txt ' 1.3 (';
|
||||
a href => '/download/ncdc-1.3.tar.gz', 'download';
|
||||
txt ' - '; a href => '/ncdc/changes', 'changes';
|
||||
txt ' - '; a href => '/download/ncdc.md5', 'md5';
|
||||
txt ' - '; a href => '/download/ncdc.sha1', 'sha1';
|
||||
|
|
@ -237,6 +239,11 @@ sub ncdc {
|
|||
a href => 'http://g.blicky.net/ncdc.git/', 'this git repository';
|
||||
txt '. The README includes instructions to build ncdc. Check out the ';
|
||||
a href => '/ncdc/man', 'manual'; txt ' to get started.';
|
||||
br;br;
|
||||
txt 'Packages/ports are available for the following systems: ';
|
||||
a href => 'http://aur.archlinux.org/packages.php?ID=50949', 'Arch Linux'; txt ' - ';
|
||||
a href => 'http://packages.gentoo.org/package/net-p2p/ncdc', 'Gentoo'; txt ' - ';
|
||||
a href => 'http://packman.links2linux.org/package/ncdc', 'OpenSUSE'; txt '.';
|
||||
end;
|
||||
|
||||
h2 'Features';
|
||||
|
|
@ -249,7 +256,7 @@ sub ncdc {
|
|||
li 'Share management and file uploading,';
|
||||
li 'Connections and download queue management,';
|
||||
li 'File list browsing,';
|
||||
li 'Single-source and TTH-checked file downloading,';
|
||||
li 'Multi-source and TTH-checked file downloading,';
|
||||
li 'Searching for files,';
|
||||
li 'Secure hub (adcs:// and nmdcs://) and client connections on both protocols.';
|
||||
end;
|
||||
|
|
@ -269,7 +276,6 @@ sub ncdc {
|
|||
more interesting to list a few features that are (relatively) common in other
|
||||
DC clients, but which ncdc doesn\'t do. Yet.";
|
||||
ul;
|
||||
li 'Multi-source downloading,';
|
||||
li 'Segmented downloading,';
|
||||
li 'Bandwidth throttling,';
|
||||
li 'OP features (e.g. client detection, file list scanning and other useful stuff for OPs),';
|
||||
|
|
@ -357,7 +363,7 @@ sub ncdcfaq {
|
|||
connections, so your file transfers will remain unencrypted.<br />
|
||||
The following example stunnel configuration is what I used to connect to
|
||||
the DC Development hub before ncdc had native TLS support:</p>
|
||||
<pre>[dcdev]<br />client = yes<br />accept = 127.0.0.1:16591<br />connect = devpublic.adcportal.com:16591</pre>
|
||||
<pre>[dcdev]<br />client = yes<br />accept = 127.0.0.1:16591<br />connect = hub.dcbase.org:16591</pre>
|
||||
<p>The URL `adc://127.0.0.1:16591/' can then be used to connect to the hub
|
||||
from within ncdc.
|
||||
E;
|
||||
|
|
@ -412,7 +418,7 @@ sub ncdcfaq {
|
|||
sub ncdcmanual {
|
||||
my $s = shift;
|
||||
$s->htmlHeader(title => 'Manual page', page => 'ncdc', tab => 'man');
|
||||
open my $F, '<', "$ROOT/dat/ncdc-man" or die $!;
|
||||
open my $F, '<:utf8', "$ROOT/dat/ncdc-man" or die $!;
|
||||
pre;
|
||||
txt $_ while(<$F>);
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue