Skip to content
This repository was archived by the owner on Nov 5, 2022. It is now read-only.

Commit 5973558

Browse files
committed
blog opens in new tab, page exists fixed, version upgreyedd
1 parent 0a4612d commit 5973558

13 files changed

+11
-11
lines changed

angular4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wiki",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"description": "Project used to demonstrate capabilities of the Vert.x Library",
66
"scripts": {

angular4/src/app/pages/about/about.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Wiki Pages</h1>
1515
Just add the event into the queue and the event loop will get to it! </p>
1616
<small>#reactive #microservices #scalable</small>
1717
</div>
18-
<p>Also check me out @ <a href="http://blog.acari.io">my blog!</a></p>
18+
<p>Also check me out @ <a target="_blank" href="http://blog.acari.io">my blog!</a></p>
1919
</main>
2020
</span>
2121
</div>

angular4/src/app/pages/archive/ArchivePage.component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular4/src/app/pages/archive/ArchivePage.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class ArchivePageComponent extends BasePageComponent {
4747
self.failure('): try again.')
4848
}
4949
}, (error: any) => {
50-
if (error.status == 500) {//TODO: SHOULD REALLY BE A 400 BAD REQUEST
50+
if (error.status == 400) {
5151
self.failure('Page already exists!')
5252
} else {
5353
self.failure('): try again.')

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
build: ./web-service
55
ports:
66
- 80:8989
7-
image: alexsimons/vertx-web-service
7+
image: alexsimons/vertx-web-service:1.0.1
88
mongo:
99
image: mongo:latest
1010

web-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ WORKDIR /app
2424

2525
COPY --from=packager /app/build/libs /app
2626

27-
ENTRYPOINT ["java", "-jar", "wiki-1.0.0.jar"]
27+
ENTRYPOINT ["java", "-jar", "wiki-1.0.1.jar"]
2828

2929

3030

web-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply plugin: 'application'
99
apply plugin: 'com.github.johnrengelman.shadow'
1010

1111

12-
version = '1.0.0'
12+
version = '1.0.1'
1313
sourceCompatibility = 1.8
1414

1515
repositories {

web-service/src/main/resources/webroot/app.79b5948a004bc95c0bf5.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web-service/src/main/resources/webroot/app.ce177073632a382e4b97.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

web-service/src/main/resources/webroot/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<meta charset="utf-8"/>
77
<title>Wiki</title>
88
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
9-
<link href="styles.css" rel="stylesheet"></head>
9+
<link href="styles.850de7faa05c9219c7c52e712e1810d8.css" rel="stylesheet"></head>
1010
<body>
1111
<div class="boxed-content">
1212
<angular-application>Loading...</angular-application>
1313
</div>
14-
<script type="text/javascript" src="polyfills.ce177073632a382e4b97.js"></script><script type="text/javascript" src="vendor.ce177073632a382e4b97.js"></script><script type="text/javascript" src="app.ce177073632a382e4b97.js"></script></body>
14+
<script type="text/javascript" src="polyfills.79b5948a004bc95c0bf5.js"></script><script type="text/javascript" src="vendor.79b5948a004bc95c0bf5.js"></script><script type="text/javascript" src="app.79b5948a004bc95c0bf5.js"></script></body>
1515
</html>

0 commit comments

Comments
 (0)