Use more https://

上级 177586b9
......@@ -10,9 +10,9 @@ Use common-debian-service-https-redirect * ftp-master.debian.org
Use common-debian-service-ssl ftp-master.debian.org
Use common-ssl-HSTS
Redirect permanent /proposed-updates.html http://release.debian.org/proposed-updates/stable.html
Redirect permanent /oldstable-proposed-updates.html http://release.debian.org/proposed-updates/oldstable.html
Redirect permanent /testing/hints/transitions.yaml http://ftp-master.debian.org/transitions.yaml
Redirect permanent /proposed-updates.html https://release.debian.org/proposed-updates/stable.html
Redirect permanent /oldstable-proposed-updates.html https://release.debian.org/proposed-updates/oldstable.html
Redirect permanent /testing/hints/transitions.yaml https://ftp-master.debian.org/transitions.yaml
Alias /users/ /srv/ftp.debian.org/web-users/
<Directory /srv/ftp.debian.org/web-users>
......
......@@ -8,7 +8,7 @@ query:
FROM source s
JOIN fingerprint f ON s.sig_fpr = f.id
JOIN uid u ON f.uid = u.id
url: http://qa.debian.org/developer.php?login={id}&comaint=yes
url: https://qa.debian.org/developer.php?login={id}&comaint=yes
contribution: maint
method: postgres
......@@ -18,5 +18,5 @@ query:
c.name as id
FROM source s
JOIN maintainer c ON s.changedby = c.id
url: http://qa.debian.org/developer.php?login={id}&comaint=yes
url: https://qa.debian.org/developer.php?login={id}&comaint=yes
......@@ -30,7 +30,7 @@ LOGFILE="$logdir/daily_${NOW}.log"
exec >> "$LOGFILE" 2>&1
# get the latest list of wnpp bugs and their source packages
wget -q -O${TMPFILE} http://qa.debian.org/data/bts/wnpp_rm
wget -q -O${TMPFILE} https://qa.debian.org/data/bts/wnpp_rm
chmod go+r ${TMPFILE}
mv ${TMPFILE} /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm
......
......@@ -61,7 +61,7 @@ Check for obsolete or duplicated packages.
-m, --mode=MODE chose the MODE to run in (full, daily, bdo).
-s, --suite=SUITE check suite SUITE.
-R, --rdep-check check reverse dependencies
-w, --wanna-build-dump where to find the copies of http://buildd.debian.org/stats/*.txt"""
-w, --wanna-build-dump where to find the copies of https://buildd.debian.org/stats/*.txt"""
sys.exit(exit_code)
################################################################################
......
......@@ -314,12 +314,12 @@ def table_row(source, version, arch, last_mod, maint, distribution, closes, fing
(name, mail) = maint.split(":", 1)
print "<td class=\"upload-data\">"
print "<span class=\"maintainer\">Maintainer: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
print "<span class=\"maintainer\">Maintainer: <a href=\"https://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
(name, mail) = changedby.split(":", 1)
print "<span class=\"changed-by\">Changed-By: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
print "<span class=\"changed-by\">Changed-By: <a href=\"https://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
if sponsor:
print "<span class=\"sponsor\">Sponsor: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a>@debian.org</span><br/>" % (utils.html_escape(sponsor), utils.html_escape(sponsor))
print "<span class=\"sponsor\">Sponsor: <a href=\"https://qa.debian.org/developer.php?login=%s\">%s</a>@debian.org</span><br/>" % (utils.html_escape(sponsor), utils.html_escape(sponsor))
print "<span class=\"signature\">Fingerprint: %s</span>" % (fingerprint)
print "</td>"
......
......@@ -407,7 +407,7 @@ class Upload(object):
return sponsored
def check_dm_upload(self, fpr, session):
# Quoth the GR (http://www.debian.org/vote/2007/vote_003):
# Quoth the GR (https://www.debian.org/vote/2007/vote_003):
## none of the uploaded packages are NEW
## none of the packages are being taken over from other source packages
for b in self.pkg.changes["binary"].keys():
......
......@@ -566,7 +566,7 @@ def build_file_list(changes, is_a_dsc=0, field="files", hashname="md5sum"):
################################################################################
# see http://bugs.debian.org/619131
# see https://bugs.debian.org/619131
def build_package_list(dsc, session = None):
if not dsc.has_key("package-list"):
return {}
......@@ -1557,7 +1557,7 @@ Cnf = config.Config().Cnf
def parse_wnpp_bug_file(file = "/srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm"):
"""
Parses the wnpp bug list available at http://qa.debian.org/data/bts/wnpp_rm
Parses the wnpp bug list available at https://qa.debian.org/data/bts/wnpp_rm
Well, actually it parsed a local copy, but let's document the source
somewhere ;)
......
......@@ -8,14 +8,14 @@ export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
export TERM=linux
destdir=$ftpdir/doc
urlbase=http://www.debian.org/Bugs/
urlbase=https://www.debian.org/Bugs/
cd $destdir
convert () {
src=$1; dst=$2
rm -f .new-$dst
echo Generating $dst from http://www.debian.org/Bugs/$src ...
echo Generating $dst from https://www.debian.org/Bugs/$src ...
lynx -nolist -dump $urlbase$src | sed -e 's/^ *$//' | perl -00 -ne 'exit if /Back to the Debian Project homepage/; print unless ($.==1 || $.==2 || $.==3 || /^\s*Other BTS pages:$/m)' >.new-$dst
if cmp -s .new-$dst $dst ; then rm -f .new-$dst
else mv -f .new-$dst $dst
......
......@@ -11,6 +11,6 @@ export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
cd $ftpdir/doc
echo Updating archive version of mailing-lists.txt
wget -t1 -T20 -q -N http://www.debian.org/misc/mailing-lists.txt || \
wget -t1 -T20 -q -N https://www.debian.org/misc/mailing-lists.txt || \
echo "Some error occured..."
......@@ -12,5 +12,5 @@ cd ${scriptdir}/masterfiles
echo Updating archive version of pseudo-packages
for file in maintainers description; do
wget -t2 -T20 -q -N http://bugs.debian.org/pseudopackages/pseudo-packages.${file} || echo "Some error occured with $file..."
wget -t2 -T20 -q -N https://bugs.debian.org/pseudopackages/pseudo-packages.${file} || echo "Some error occured with $file..."
done
......@@ -34,5 +34,5 @@ export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
WB_DB_DIR=${WB_DB_DIR:-${scriptdir}/nfu}
for arch in $(dak admin s-a list-arch unstable); do
wget -q http://buildd.debian.org/stats/$arch-all.txt -O ${WB_DB_DIR}/${arch}-all.txt || echo "No w-b dump for ${arch}"
wget -q https://buildd.debian.org/stats/$arch-all.txt -O ${WB_DB_DIR}/${arch}-all.txt || echo "No w-b dump for ${arch}"
done
......@@ -152,7 +152,7 @@ manpagediagnostics()
dsync-flist returns zero on normal operation, decimal 100 on error.
manpagebugs()
See http://bugs.debian.org/dsync. If you wish to report a
See https://bugs.debian.org/dsync. If you wish to report a
bug in bf(apt-get), please see bf(/usr/doc/debian/bug-reporting.txt)
or the bf(bug(1)) command.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册