]> wimlib.net Git - wimlib/commitdiff
Use HTTPS for all links to website
authorEric Biggers <ebiggers3@gmail.com>
Sat, 5 Dec 2015 20:24:05 +0000 (14:24 -0600)
committerEric Biggers <ebiggers3@gmail.com>
Sat, 19 Dec 2015 16:31:10 +0000 (10:31 -0600)
README
archlinux/PKGBUILD
debian/control
debian/copyright
debian/watch
include/wimlib.h
rpm/wimtools.spec
src/ntfs-3g_apply.c
wimlib.pc.in

diff --git a/README b/README
index ffa855c4818dc263f09958397fe9b8c7a1ccc648..2fce089843ff7d7a46ca958876af5fd429a321de 100644 (file)
--- a/README
+++ b/README
@@ -16,7 +16,7 @@ for Debian and RPM packaging are in the debian/ and rpm/ directories.
 To install wimlib and wimlib-imagex on Windows, just download and extract the
 ZIP file containing the latest binaries.  See README.WINDOWS for more details.
 
-All official wimlib releases are available from http://wimlib.net.
+All official wimlib releases are available from https://wimlib.net.
 
                                    WIM FILES
 
@@ -45,7 +45,7 @@ file extension rather than ".wim".  They are supported in wimlib since v1.6.0.
                              IMAGEX IMPLEMENTATION
 
 wimlib itself is a C library, and it provides a documented public API (See:
-http://wimlib.net/apidoc) for other programs to use.  However, it is also
+https://wimlib.net/apidoc) for other programs to use.  However, it is also
 distributed with a command-line program called "wimlib-imagex" that uses this
 library to implement an imaging tool similar to Microsoft's ImageX.
 wimlib-imagex supports almost all the capabilities of Microsoft's ImageX as well
index 29aa2f798eb2a04def66df5f98219a66ea0cf15f..b8195b1fce18c0c424ee08819b6e605c024b9e80 100644 (file)
@@ -5,7 +5,7 @@ pkgver=1.8.3
 pkgrel=1
 pkgdesc="A library and program to extract, create, and modify WIM files"
 arch=("i686" "x86_64")
-url="http://wimlib.net"
+url="https://wimlib.net"
 license=("custom")
 depends=("openssl" "fuse" "libxml2" "ntfs-3g" "attr")
 optdepends=("cdrkit: for making ISO image of Windows PE"
@@ -14,7 +14,7 @@ optdepends=("cdrkit: for making ISO image of Windows PE"
        "cabextract: for extracting Windows PE from the WAIK"
        "ntfsprogs: for making NTFS filesystems")
 checkdepends=("ntfsprogs")
-source=("http://wimlib.net/downloads/$pkgname-$pkgver.tar.gz")
+source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz")
 
 build() {
        cd "$pkgname-$pkgver"
index 3b14344f6400fa7592dc25ddae532a8f6fe81628..f424296a28c94941b944782d7a4ce90950b18efc 100644 (file)
@@ -7,7 +7,7 @@ Build-Depends: debhelper (>= 8.9.7), autotools-dev, pkg-config,
 Build-Depends-Indep: doxygen
 Standards-Version: 3.9.3
 Section: libs
-Homepage: http://wimlib.net
+Homepage: https://wimlib.net
 Vcs-Git: git://wimlib.net/wimlib
 
 Package: wimlib15
index af3dd447a67d6ae2fe5a8ed5be0e1554a8d65a75..16ffdee6bd73e1913515d1b219f8a20f03b53a68 100644 (file)
@@ -1,6 +1,6 @@
 Format: http://dep.debian.net/deps/dep5
 Upstream-Name: wimlib
-Source: http://wimlib.net
+Source: https://wimlib.net
 
 Files: *
 Copyright: 2012, 2013, 2014 Eric Biggers <ebiggers3@gmail.com>
index 14f0e546058a711150f0f7dafaf24b753c3b48f6..0d727f66f80ae05d7a11edd15a71dc400b4d544c 100644 (file)
@@ -3,4 +3,4 @@
 # Compulsory line, this is a version 3 file
 version=3
 
-http://wimlib.net/downloads/wimlib-(.*)\.tar\.gz
+https://wimlib.net/downloads/wimlib-(.*)\.tar\.gz
index 95c51b213fe47c0a1cc79fc1d4d1f2261a97ab82..094622789c07fc264ead7f6c658536a7ece9b640 100644 (file)
@@ -3,7 +3,7 @@
  * @brief External header for wimlib.
  *
  * This file contains comments for generating documentation with Doxygen.  The
- * built HTML documentation can be viewed at http://wimlib.net/apidoc.  Make
+ * built HTML documentation can be viewed at https://wimlib.net/apidoc.  Make
  * sure to see the <a href="modules.html">Modules page</a> to make more sense of
  * the declarations in this header.
  */
  * Windows Imaging Format.  This documentation is intended for developers only.
  * If you have installed wimlib and want to know how to use the @b wimlib-imagex
  * program, please see the manual pages and also the <a
- * href="http://wimlib.net/gitlist/wimlib/blob/master/README">README
+ * href="https://wimlib.net/gitlist/wimlib/blob/master/README">README
  * file</a>.
  *
  * @section sec_installing Installing
  *
  * @subsection UNIX
  *
- * Download the source code from http://wimlib.net.  Install the library by
+ * Download the source code from https://wimlib.net.  Install the library by
  * running <c>configure && make && sudo make install</c>.  See the README for
  * information about configuration options.  To use wimlib in your program after
  * installing it, include wimlib.h and link your program with <c>-lwim</c>.
@@ -32,8 +32,8 @@
  *
  * Download the Windows binary distribution with the appropriate architecture
  * (i686 or x86_64 --- also called "x86" and "amd64" respectively) from
- * http://wimlib.net.  Link your program with the libwim-15.dll file.  Make sure
- * to also download the source code so you can get wimlib.h, as it is not
+ * https://wimlib.net.  Link your program with the libwim-15.dll file.  Make
+ * sure to also download the source code so you can get wimlib.h, as it is not
  * included in the binary distribution.  If you need to access the DLL from
  * other programming languages, note that the calling convention is "cdecl".
  *
@@ -43,8 +43,8 @@
  * distribution.
  *
  * There is also the <a
- * href="http://wimlib.net/gitlist/wimlib/blob/master/programs/imagex.c"> source
- * code of <b>wimlib-imagex</b></a>, which is complicated but uses most
+ * href="https://wimlib.net/gitlist/wimlib/blob/master/programs/imagex.c">
+ * source code of <b>wimlib-imagex</b></a>, which is complicated but uses most
  * capabilities of wimlib.
  *
  * @section backwards_compatibility Backwards Compatibility
index fcb1f77bb578d764ca539c592b5229cf8939ece3..df9f3da7ef7adfbfd41b9ecd4325860fde1b4a10 100644 (file)
@@ -3,9 +3,9 @@ Summary:   Tools to create, extract, modify, and mount WIM files
 Version:   1.8.3
 Release:   1
 License:   GPLv3+
-URL:       http://wimlib.net
+URL:       https://wimlib.net
 Packager:  Eric Biggers <ebiggers3@gmail.com>
-Source:    http://wimlib.net/downloads/wimlib-%{version}.tar.gz
+Source:    https://wimlib.net/downloads/wimlib-%{version}.tar.gz
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 
 
index 2b4a1efb1bab3bc5b3dfbd12d1b00c9f1c848c33..ccfd6fde54703b4531c7d3205d19987517f79c95 100644 (file)
@@ -455,7 +455,7 @@ ntfs_3g_set_metadata(ntfs_inode *ni, const struct wim_inode *inode,
                                        "the security descriptor is invalid.  If you "
                                        "are extracting a Windows 10 image, this may be "
                                        "caused by a known bug in libntfs-3g.  See: "
-                                       "http://wimlib.net/forums/viewtopic.php?f=1&t=4 "
+                                       "https://wimlib.net/forums/viewtopic.php?f=1&t=4 "
                                        "for more information.\n\n");
                        }
                        return ret;
index 518f554eb9b47c353aaafe0cfc9d49240a1fea6f..9230a2c07afac756a515d85f62219dc84a73057f 100644 (file)
@@ -5,7 +5,7 @@ includedir=@includedir@
 
 Name: wimlib
 Description: Library to extract, create, modify, and mount Windows Imaging (WIM) files
-URL:  http://wimlib.net
+URL:  https://wimlib.net
 Version: @VERSION@
 Libs: -L${libdir} -lwim
 Requires.private: @PKGCONFIG_PRIVATE_REQUIRES@