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

Commit

Permalink
blog opens in new tab, page exists fixed, version upgreyedd
Browse files Browse the repository at this point in the history
  • Loading branch information
Unthrottled committed Oct 31, 2017
1 parent 0a4612d commit 5973558
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion angular4/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wiki",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "Project used to demonstrate capabilities of the Vert.x Library",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion angular4/src/app/pages/about/about.htm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>Wiki Pages</h1>
Just add the event into the queue and the event loop will get to it! </p>
<small>#reactive #microservices #scalable</small>
</div>
<p>Also check me out @ <a href="http://blog.acari.io">my blog!</a></p>
<p>Also check me out @ <a target="_blank" href="http://blog.acari.io">my blog!</a></p>
</main>
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion angular4/src/app/pages/archive/ArchivePage.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion angular4/src/app/pages/archive/ArchivePage.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class ArchivePageComponent extends BasePageComponent {
self.failure('): try again.')
}
}, (error: any) => {
if (error.status == 500) {//TODO: SHOULD REALLY BE A 400 BAD REQUEST
if (error.status == 400) {
self.failure('Page already exists!')
} else {
self.failure('): try again.')
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build: ./web-service
ports:
- 80:8989
image: alexsimons/vertx-web-service
image: alexsimons/vertx-web-service:1.0.1
mongo:
image: mongo:latest

Expand Down
2 changes: 1 addition & 1 deletion web-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WORKDIR /app

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

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



Expand Down
2 changes: 1 addition & 1 deletion web-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'


version = '1.0.0'
version = '1.0.1'
sourceCompatibility = 1.8

repositories {
Expand Down

Large diffs are not rendered by default.

This file was deleted.

4 changes: 2 additions & 2 deletions web-service/src/main/resources/webroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<meta charset="utf-8"/>
<title>Wiki</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="styles.css" rel="stylesheet"></head>
<link href="styles.850de7faa05c9219c7c52e712e1810d8.css" rel="stylesheet"></head>
<body>
<div class="boxed-content">
<angular-application>Loading...</angular-application>
</div>
<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>
<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>
</html>

Large diffs are not rendered by default.

0 comments on commit 5973558

Please sign in to comment.