]> source.dussan.org Git - redmine.git/commitdiff
Changelog Generator: Change URL scheme to https.
authorGo MAEDA <maeda@farend.jp>
Sat, 20 Mar 2021 06:55:49 +0000 (06:55 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 20 Mar 2021 06:55:49 +0000 (06:55 +0000)
www.redmine.org no longer supports http.

git-svn-id: http://svn.redmine.org/redmine/trunk@20831 e93f8b46-1217-0410-a6f0-8f06a7374b81

bin/changelog.rb

index 2e17f22834f7522f06e4c71a6a98c44d04d0a055..e8f4beca85f5c7a7012b187c7d6edd46e37940b4 100644 (file)
@@ -89,14 +89,14 @@ module Redmine
     @r_date = $r_date
     @n_branch = $n_branch
 
-    ISSUES_URL = 'http://www.redmine.org/projects/redmine/issues' +
+    ISSUES_URL = 'https://www.redmine.org/projects/redmine/issues' +
                  '?utf8=%E2%9C%93&set_filter=1' +
                  '&f%5B%5D=status_id&op%5Bstatus_id%5D=*' +
                  '&f%5B%5D=fixed_version_id&op%5Bfixed_version_id%5D=%3D' +
                    '&v%5Bfixed_version_id%5D%5B%5D=' + @v_id +
                  '&f%5B%5D=&c%5B%5D=tracker&c%5B%5D=subject' +
                  '&c%5B%5D=category&group_by='
-    VERSIONS_URL = 'http://www.redmine.org/versions/' + @v_id
+    VERSIONS_URL = 'https://www.redmine.org/versions/' + @v_id
 
     PAGINATION_ITEMS_SPAN_SELECTOR = 'div#content p.pagination > span.items'
     ISSUE_TR_SELECTOR = 'div#content table.list.issues > tbody > tr'