Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

URL Cleanup #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion app.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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}')
Expand Down
2 changes: 1 addition & 1 deletion static/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions templates/home.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<html xmlns:th="https://www.thymeleaf.org">
<head>
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'/>
<title>Issue Aggregator</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
Expand Down