From 2980b21b8de8bcc6c05c1ef79ee3e9f3c040ff7d Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Fri, 22 Nov 2019 15:34:10 +0200 Subject: [PATCH] Update references --- src/fs/btrfs.cpp | 2 +- src/fs/exfat.cpp | 2 +- src/fs/hfs.cpp | 2 +- src/fs/hfsplus.cpp | 2 +- src/fs/linuxswap.cpp | 2 +- src/fs/lvm2_pv.cpp | 2 +- src/fs/nilfs2.cpp | 2 +- src/fs/ntfs.cpp | 2 +- src/fs/ocfs2.cpp | 2 +- src/fs/reiser4.cpp | 4 ++-- src/fs/reiserfs.cpp | 2 +- src/fs/xfs.cpp | 4 ++-- src/fs/zfs.cpp | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/fs/btrfs.cpp b/src/fs/btrfs.cpp index c7c1edb..7f051cf 100644 --- a/src/fs/btrfs.cpp +++ b/src/fs/btrfs.cpp @@ -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 diff --git a/src/fs/exfat.cpp b/src/fs/exfat.cpp index 3173450..f92cdf2 100644 --- a/src/fs/exfat.cpp +++ b/src/fs/exfat.cpp @@ -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 diff --git a/src/fs/hfs.cpp b/src/fs/hfs.cpp index 15677fc..db89025 100644 --- a/src/fs/hfs.cpp +++ b/src/fs/hfs.cpp @@ -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/"))); } diff --git a/src/fs/hfsplus.cpp b/src/fs/hfsplus.cpp index 81341ff..80a6553 100644 --- a/src/fs/hfsplus.cpp +++ b/src/fs/hfsplus.cpp @@ -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 diff --git a/src/fs/linuxswap.cpp b/src/fs/linuxswap.cpp index e535d67..376a883 100644 --- a/src/fs/linuxswap.cpp +++ b/src/fs/linuxswap.cpp @@ -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 diff --git a/src/fs/lvm2_pv.cpp b/src/fs/lvm2_pv.cpp index 6a3a4c7..7bac15a 100644 --- a/src/fs/lvm2_pv.cpp +++ b/src/fs/lvm2_pv.cpp @@ -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 diff --git a/src/fs/nilfs2.cpp b/src/fs/nilfs2.cpp index 5fd15a1..87ceef7 100644 --- a/src/fs/nilfs2.cpp +++ b/src/fs/nilfs2.cpp @@ -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 diff --git a/src/fs/ntfs.cpp b/src/fs/ntfs.cpp index 8639383..ee23322 100644 --- a/src/fs/ntfs.cpp +++ b/src/fs/ntfs.cpp @@ -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 diff --git a/src/fs/ocfs2.cpp b/src/fs/ocfs2.cpp index af8eaaa..0091ce1 100644 --- a/src/fs/ocfs2.cpp +++ b/src/fs/ocfs2.cpp @@ -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 diff --git a/src/fs/reiser4.cpp b/src/fs/reiser4.cpp index 38e1d1e..5d25bd3 100644 --- a/src/fs/reiser4.cpp +++ b/src/fs/reiser4.cpp @@ -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); } diff --git a/src/fs/reiserfs.cpp b/src/fs/reiserfs.cpp index 5bfeb06..5df1a65 100644 --- a/src/fs/reiserfs.cpp +++ b/src/fs/reiserfs.cpp @@ -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 diff --git a/src/fs/xfs.cpp b/src/fs/xfs.cpp index 25d2ef3..734a418 100644 --- a/src/fs/xfs.cpp +++ b/src/fs/xfs.cpp @@ -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); diff --git a/src/fs/zfs.cpp b/src/fs/zfs.cpp index a3cb201..c237da4 100644 --- a/src/fs/zfs.cpp +++ b/src/fs/zfs.cpp @@ -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