Skip to content

URL Cleanup #4

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

Open
wants to merge 1 commit into
base: concourse
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.6.RELEASE/spring-boot-cli-1.4.6.RELEASE-bin.tar.gz
- wget https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.4.6.RELEASE/spring-boot-cli-1.4.6.RELEASE-bin.tar.gz
- tar xvfz spring-boot-cli-1.4.6.RELEASE-bin.tar.gz
- export PATH=$PATH:spring-1.4.6.RELEASE/bin
- spring --version
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Travis Aggregator [![Build Status](https://travis-ci.org/spring-guides/drone-aggregator.svg?branch=master)](https://travis-ci.org/spring-guides/drone-aggregator)

Running more than a handful of CI jobs at http://travis-ci.org? Their usage of screen real estate can leave you scrolling all the time when you really need a quick glance to see if everything is up.
Running more than a handful of CI jobs at https://travis-ci.org? Their usage of screen real estate can leave you scrolling all the time when you really need a quick glance to see if everything is up.

travis-aggregator is a [Spring Boot](http://projects.spring.io/spring-boot/) application that uses [Jsoup](http://jsoup.org) to elegantly grab every [Getting Started Guide](http://spring.io/guides) and construct a slim and trim table with links to each guide as well as its corresponding Travis CI job.
travis-aggregator is a [Spring Boot](https://projects.spring.io/spring-boot/) application that uses [Jsoup](https://jsoup.org) to elegantly grab every [Getting Started Guide](https://spring.io/guides) and construct a slim and trim table with links to each guide as well as its corresponding Travis CI job.

> **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](http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#getting-started-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.
You first need to [install Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#getting-started-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.

## Run the application
Now you can run the application.
Expand Down
4 changes: 2 additions & 2 deletions app.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ class ConcourseAggregator {
@Value('${org:spring-guides}')
String org

@Value('${site:http://spring.io}')
@Value('${site:https://spring.io}')
String site

@Value('${css.selector:a.guide--title}')
String cssSelector

@Value('${issue.site:http://issue-aggregator.guides.spring.io/}')
@Value('${issue.site:https://issue-aggregator.guides.spring.io/}')
String issueSite

@Autowired
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>Travis 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