diff options
author | Go MAEDA <maeda@farend.jp> | 2021-03-20 06:55:49 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-03-20 06:55:49 +0000 |
commit | 6d0157568d2e10989af8ee4c6a4482ce6850898b (patch) | |
tree | 8389c1b0a37db260d0c5ce5a05a79930345b9694 /bin | |
parent | 7c7d29e33c6f98d0b81f0055be5d6417d677a207 (diff) | |
download | redmine-6d0157568d2e10989af8ee4c6a4482ce6850898b.tar.gz redmine-6d0157568d2e10989af8ee4c6a4482ce6850898b.zip |
Changelog Generator: Change URL scheme to https.
www.redmine.org no longer supports http.
git-svn-id: http://svn.redmine.org/redmine/trunk@20831 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'bin')
-rw-r--r-- | bin/changelog.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/changelog.rb b/bin/changelog.rb index 2e17f2283..e8f4beca8 100644 --- a/bin/changelog.rb +++ b/bin/changelog.rb @@ -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' |