From bec6d4d9306e5badd79ddca115d335636d028ed1 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 20 Mar 2019 16:19:15 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * [ ] http://travis-aggregator.guides.spring.io/ (200) with 1 occurrences could not be migrated: ([https](https://travis-aggregator.guides.spring.io/) result SSLHandshakeException). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://csswizardry.com with 1 occurrences migrated to: https://csswizardry.com ([https](https://csswizardry.com) result 200). * [ ] http://fonts.googleapis.com/css?family=Ubuntu with 1 occurrences migrated to: https://fonts.googleapis.com/css?family=Ubuntu ([https](https://fonts.googleapis.com/css?family=Ubuntu) result 200). * [ ] http://i.ytimg.com/vi/j3rrqOV68ik/mqdefault.jpg with 1 occurrences migrated to: https://i.ytimg.com/vi/j3rrqOV68ik/mqdefault.jpg ([https](https://i.ytimg.com/vi/j3rrqOV68ik/mqdefault.jpg) result 200). * [ ] http://projects.spring.io/spring-boot/ with 1 occurrences migrated to: https://projects.spring.io/spring-boot/ ([https](https://projects.spring.io/spring-boot/) result 200). * [ ] http://projects.spring.io/spring-social-github/ with 1 occurrences migrated to: https://projects.spring.io/spring-social-github/ ([https](https://projects.spring.io/spring-social-github/) result 200). * [ ] http://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.0.RELEASE/spring-boot-cli-1.4.0.RELEASE-bin.tar.gz with 1 occurrences migrated to: https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.0.RELEASE/spring-boot-cli-1.4.0.RELEASE-bin.tar.gz ([https](https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.0.RELEASE/spring-boot-cli-1.4.0.RELEASE-bin.tar.gz) result 200). * [ ] http://spring.io with 1 occurrences migrated to: https://spring.io ([https](https://spring.io) result 200). * [ ] http://spring.io/understanding/oauth with 1 occurrences migrated to: https://spring.io/understanding/oauth ([https](https://spring.io/understanding/oauth) result 200). * [ ] http://www.thymeleaf.org with 1 occurrences migrated to: https://www.thymeleaf.org ([https](https://www.thymeleaf.org) result 200). * [ ] http://bit.ly/app-mgmt-tools-with-boot with 2 occurrences migrated to: https://bit.ly/app-mgmt-tools-with-boot ([https](https://bit.ly/app-mgmt-tools-with-boot) result 301). # Ignored These URLs were intentionally ignored. * http://localhost:8080 with 1 occurrences * http://www.springframework.org/spring-social/social/tags with 1 occurrences * http://www.springframework.org/tags with 1 occurrences * http://www.springframework.org/tags/form with 1 occurrences --- .travis.yml | 2 +- README.md | 8 ++++---- app.groovy | 2 +- static/main.scss | 2 +- templates/home.html | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index cee626d..f2cf5db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ sudo: required before_install: - gem install sass - npm install -g bower -- wget http://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.0.RELEASE/spring-boot-cli-1.4.0.RELEASE-bin.tar.gz +- wget https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.0.RELEASE/spring-boot-cli-1.4.0.RELEASE-bin.tar.gz - tar xvfz spring-boot-cli-1.4.0.RELEASE-bin.tar.gz - export PATH=$PATH:spring-1.4.0.RELEASE/bin - spring --version diff --git a/README.md b/README.md index 665f5a1..1f96aa0 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,17 @@ Are you managing multiple projects hosted at GitHub? Wish there was a way to see all the issues for your projects? Then you've come to the right place. -issue-aggregator is a [Spring Boot](http://projects.spring.io/spring-boot/) application that uses the power of [Spring Social GitHub](http://projects.spring.io/spring-social-github/) to query for issues across multiple repositories. +issue-aggregator is a [Spring Boot](https://projects.spring.io/spring-boot/) application that uses the power of [Spring Social GitHub](https://projects.spring.io/spring-social-github/) to query for issues across multiple repositories. -> **NOTE:** See http://bit.ly/app-mgmt-tools-with-boot for a webinar that walks through this app. +> **NOTE:** See https://bit.ly/app-mgmt-tools-with-boot for a webinar that walks through this app. -[![Webinar showing this app](http://i.ytimg.com/vi/j3rrqOV68ik/mqdefault.jpg)](http://bit.ly/app-mgmt-tools-with-boot) +[![Webinar showing this app](https://i.ytimg.com/vi/j3rrqOV68ik/mqdefault.jpg)](https://bit.ly/app-mgmt-tools-with-boot) ## Getting Started You first need to [install Spring Boot](https://github.com/spring-projects/spring-boot#installing-the-cli). I won't show that here because the instructions behind that link are pretty detailed. I'll just assume you got things set up right. -The next step is registering a GitHub [oauth token](http://spring.io/understanding/oauth). To do that follow these steps: +The next step is registering a GitHub [oauth token](https://spring.io/understanding/oauth). To do that follow these steps: 1. Go to https://github.com/settings/applications. (If you don't have a GitHub profile, this app isn't much use, ehh?) 2. Underneath **Personal Access Tokens** click [Create new token](https://github.com/settings/tokens/new). diff --git a/app.groovy b/app.groovy index 63a67a9..7d2e191 100644 --- a/app.groovy +++ b/app.groovy @@ -48,7 +48,7 @@ class IssueAggregator { @Value('${org:spring-guides}') String org - @Value('${site:http://spring.io}') + @Value('${site:https://spring.io}') String site @Value('${css.selector:a.guide--title}') diff --git a/static/main.scss b/static/main.scss index 782eb39..1cf0104 100644 --- a/static/main.scss +++ b/static/main.scss @@ -94,7 +94,7 @@ h1 { border: 1px solid; } -// Based off http://csswizardry.com, create some classes to style the buttons at the top of the screen. +// Based off https://csswizardry.com, create some classes to style the buttons at the top of the screen. .site-nav__list { float: right; list-style: none; diff --git a/templates/home.html b/templates/home.html index 247f754..103ccd8 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,7 +1,7 @@ - + - + Issue Aggregator