Update references

This commit is contained in:
Yuri Chornoivan 2019-11-22 15:34:10 +02:00
parent bb7bf3ca03
commit 2980b21b8d
13 changed files with 15 additions and 15 deletions

View File

@ -86,7 +86,7 @@ bool btrfs::supportToolFound() const
FileSystem::SupportTool btrfs::supportToolName() const
{
return SupportTool(QStringLiteral("btrfs-tools"), QUrl(QStringLiteral("http://btrfs.wiki.kernel.org/")));
return SupportTool(QStringLiteral("btrfs-tools"), QUrl(QStringLiteral("https://btrfs.wiki.kernel.org/")));
}
qint64 btrfs::minCapacity() const

View File

@ -79,7 +79,7 @@ bool exfat::supportToolFound() const
FileSystem::SupportTool exfat::supportToolName() const
{
return SupportTool(QStringLiteral("exfat-utils"), QUrl(QStringLiteral("http://code.google.com/p/exfat/")));
return SupportTool(QStringLiteral("exfat-utils"), QUrl(QStringLiteral("https://github.com/relan/exfat")));
}
qint64 exfat::maxCapacity() const

View File

@ -67,7 +67,7 @@ bool hfs::supportToolFound() const
FileSystem::SupportTool hfs::supportToolName() const
{
return SupportTool(QStringLiteral("hfsutils"), QUrl(QStringLiteral("http://www.mars.org/home/rob/proj/hfs/")));
return SupportTool(QStringLiteral("hfsutils"), QUrl(QStringLiteral("https://www.mars.org/home/rob/proj/hfs/")));
}

View File

@ -68,7 +68,7 @@ bool hfsplus::supportToolFound() const
FileSystem::SupportTool hfsplus::supportToolName() const
{
return SupportTool(QStringLiteral("diskdev_cmds"), QUrl(QStringLiteral("http://opendarwin.org")));
return SupportTool(QStringLiteral("diskdev_cmds"), QUrl(QStringLiteral("https://opensource.apple.com/tarballs/diskdev_cmds/")));
}
qint64 hfsplus::maxCapacity() const

View File

@ -73,7 +73,7 @@ bool linuxswap::supportToolFound() const
FileSystem::SupportTool linuxswap::supportToolName() const
{
return SupportTool(QStringLiteral("util-linux"), QUrl(QStringLiteral("http://www.kernel.org/pub/linux/utils/util-linux-ng/")));
return SupportTool(QStringLiteral("util-linux"), QUrl(QStringLiteral("https://github.com/karelzak/util-linux")));
}
int linuxswap::maxLabelLength() const

View File

@ -94,7 +94,7 @@ bool lvm2_pv::supportToolFound() const
FileSystem::SupportTool lvm2_pv::supportToolName() const
{
return SupportTool(QStringLiteral("lvm2"), QUrl(QStringLiteral("http://sourceware.org/lvm2/")));
return SupportTool(QStringLiteral("lvm2"), QUrl(QStringLiteral("https://sourceware.org/lvm2/")));
}
qint64 lvm2_pv::maxCapacity() const

View File

@ -91,7 +91,7 @@ bool nilfs2::supportToolFound() const
FileSystem::SupportTool nilfs2::supportToolName() const
{
return SupportTool(QStringLiteral("nilfs2-utils"), QUrl(QStringLiteral("http://code.google.com/p/nilfs2/")));
return SupportTool(QStringLiteral("nilfs2-utils"), QUrl(QStringLiteral("https://github.com/nilfs-dev/nilfs-utils")));
}
qint64 nilfs2::minCapacity() const

View File

@ -85,7 +85,7 @@ bool ntfs::supportToolFound() const
FileSystem::SupportTool ntfs::supportToolName() const
{
return SupportTool(QStringLiteral("ntfs-3g"), QUrl(QStringLiteral("http://www.tuxera.com/community/ntfs-3g-download/")));
return SupportTool(QStringLiteral("ntfs-3g"), QUrl(QStringLiteral("https://www.tuxera.com/community/open-source-ntfs-3g/")));
}
qint64 ntfs::minCapacity() const

View File

@ -84,7 +84,7 @@ bool ocfs2::supportToolFound() const
FileSystem::SupportTool ocfs2::supportToolName() const
{
return SupportTool(QStringLiteral("ocfs2-tools"), QUrl(QStringLiteral("http://oss.oracle.com/projects/ocfs2-tools/")));
return SupportTool(QStringLiteral("ocfs2-tools"), QUrl(QStringLiteral("https://oss.oracle.com/projects/ocfs2-tools/")));
}
qint64 ocfs2::minCapacity() const

View File

@ -68,13 +68,13 @@ bool reiser4::supportToolFound() const
FileSystem::SupportTool reiser4::supportToolName() const
{
return SupportTool(QStringLiteral("reiser4progs"), QUrl(QStringLiteral("http://www.kernel.org/pub/linux/utils/fs/reiser4/reiser4progs/")));
return SupportTool(QStringLiteral("reiser4progs"), QUrl(QStringLiteral("https://github.com/edward6/reiser4progs")));
}
qint64 reiser4::maxCapacity() const
{
// looks like it's actually unknown. see
// http://en.wikipedia.org/wiki/Comparison_of_file_systems
// https://en.wikipedia.org/wiki/Comparison_of_file_systems
return Capacity::unitFactor(Capacity::Unit::Byte, Capacity::Unit::EiB);
}

View File

@ -80,7 +80,7 @@ bool reiserfs::supportToolFound() const
FileSystem::SupportTool reiserfs::supportToolName() const
{
return SupportTool(QStringLiteral("reiserfsprogs"), QUrl(QStringLiteral("http://www.kernel.org/pub/linux/utils/fs/reiserfs/")));
return SupportTool(QStringLiteral("reiserfsprogs"), QUrl(QStringLiteral("https://reiser4.wiki.kernel.org/index.php/Reiserfsprogs")));
}
qint64 reiserfs::minCapacity() const

View File

@ -78,7 +78,7 @@ bool xfs::supportToolFound() const
FileSystem::SupportTool xfs::supportToolName() const
{
return SupportTool(QStringLiteral("xfsprogs"), QUrl(QStringLiteral("http://oss.sgi.com/projects/xfs/")));
return SupportTool(QStringLiteral("xfsprogs"), QUrl(QStringLiteral("https://xfs.org/index.php/Getting_the_latest_source_code")));
}
qint64 xfs::minCapacity() const
@ -153,7 +153,7 @@ bool xfs::copy(Report& report, const QString& targetDeviceNode, const QString& s
// xfs_copy behaves a little strangely. It apparently kills itself at the end of main, causing QProcess
// to report that it crashed.
// See http://oss.sgi.com/archives/xfs/2004-11/msg00169.html
// See https://marc.info/?l=linux-xfs&m=110178337825926&w=2
// So we cannot rely on QProcess::exitStatus() and thus not on ExternalCommand::run() returning true.
cmd.run(-1);

View File

@ -72,7 +72,7 @@ bool zfs::supportToolFound() const
FileSystem::SupportTool zfs::supportToolName() const
{
return SupportTool(QStringLiteral("zfs"), QUrl(QStringLiteral("http://zfsonlinux.org/")));
return SupportTool(QStringLiteral("zfs"), QUrl(QStringLiteral("https://zfsonlinux.org/")));
}
qint64 zfs::minCapacity() const