#328 Use https in more places.
Merged 5 years ago by ngompa. Opened 5 years ago by qulogic.
qulogic/FedoraReview https  into  devel

file modified
+1 -1
@@ -27,7 +27,7 @@ 

  ===========

  

  * Branching is following strategy outlined in

-   http://nvie.com/posts/a-successful-git-branching-model

+   https://nvie.com/posts/a-successful-git-branching-model

  * Non-trivial features/changes should ideally be reviewed by at least one

    other developer before merging to devel

  * ``master`` branch is off-limits except for merging new releases. This

file modified
+1 -1
@@ -271,7 +271,7 @@ 

  is needed:

  .nf

  .IP "" 4

- $ wget http://somewhere.com/bad-srpmlink -O my-package-1.2-1.fc16.src.rpm

+ $ wget https://somewhere.com/bad-srpmlink -O my-package-1.2-1.fc16.src.rpm

  $ fedora-review --rpm-spec -n my-package-1.2-1.fc16.src.rpm

  .fi

  .PP

file modified
+1 -1
@@ -2,7 +2,7 @@ 

  #    -*- coding: utf-8 -*-

  #

  # See: https://bugzilla.redhat.com/show_bug.cgi?id=675140#c1

- # From: http://people.redhat.com/mikeb/scripts/download-scratch.py

+ # From: https://people.redhat.com/mikeb/scripts/download-scratch.py

  

  

  #    This program is free software; you can redistribute it and/or modify

file modified
+5 -5
@@ -33,14 +33,14 @@ 

      DIR = ['%{packname}']

      DOCS = ['doc', 'DESCRIPTION', 'NEWS', 'CITATION']

      URLS = [

-         'http://www.bioconductor.org/packages/release/data/'

+         'https://www.bioconductor.org/packages/release/data/'

          'experiment/src/contrib/PACKAGES',

-         'http://www.bioconductor.org/packages/release/data/'

+         'https://www.bioconductor.org/packages/release/data/'

          'annotation/src/contrib/PACKAGES',

-         'http://www.bioconductor.org/packages/release/bioc/'

+         'https://www.bioconductor.org/packages/release/bioc/'

          'src/contrib/PACKAGES',

-         'http://cran.at.r-project.org/src/contrib/PACKAGES',

-         'http://r-forge.r-project.org/src/contrib/PACKAGES',

+         'https://cran.r-project.org/src/contrib/PACKAGES',

+         'https://r-forge.r-project.org/src/contrib/PACKAGES',

      ]

  

      def __init__(self, base):

@@ -248,7 +248,7 @@ 

          info in the settings.

          """

          complement_url = self.settings.upload_target.split('public_html/')[1]

-         url = 'http://%s.fedorapeople.org/%s/' % (

+         url = 'https://%s.fedorapeople.org/%s/' % (

              self.username, complement_url)

          self.info['specurl'] = url + os.path.basename(self.specfile)

          self.info['srpmurl'] = url + os.path.basename(self.srpmfile)

@@ -1,5 +1,5 @@ 

  # See: https://bugzilla.redhat.com/show_bug.cgi?id=675140#c1

- # From: http://people.redhat.com/mikeb/scripts/download-scratch.py

+ # From: https://people.redhat.com/mikeb/scripts/download-scratch.py

  

  ''' Download a scrath build from koji. '''

  

Mostly because I'm tired of trying to find the file to fix so my Review Requests are not using http.

Pull-Request has been merged by ngompa

5 years ago