-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
6,912 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: groovy | ||
|
||
jdk: | ||
- oraclejdk7 | ||
|
||
before_script: | ||
- "export DISPLAY=:99.0" | ||
- "sh -e /etc/init.d/xvfb start" | ||
|
||
before_install: | ||
- curl -s get.sdkman.io | bash | ||
- source "$HOME/.sdkman/bin/sdkman-init.sh" | ||
- echo sdkman_auto_answer=true > ~/.sdkman/etc/config | ||
- source "/home/travis/.sdkman/bin/sdkman-init.sh" | ||
- sdk install grails 2.4.3 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
script: grails -Dgeb.env=firefox test-app --non-interactive --stacktrace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#Grails Metadata file | ||
#Tue Apr 11 00:59:32 BRT 2017 | ||
app.grails.version=2.4.3 | ||
app.name=atec | ||
app.servlet.version=2.5 | ||
app.version=0.1 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a manifest file that'll be compiled into application.js. | ||
// | ||
// Any JavaScript file within this directory can be referenced here using a relative path. | ||
// | ||
// You're free to add application-wide JavaScript to this file, but it's generally better | ||
// to create separate JavaScript files as needed. | ||
// | ||
//= require jquery | ||
//= require_tree . | ||
//= require_self | ||
|
||
if (typeof jQuery !== 'undefined') { | ||
(function($) { | ||
$('#spinner').ajaxStart(function() { | ||
$(this).fadeIn(); | ||
}).ajaxStop(function() { | ||
$(this).fadeOut(); | ||
}); | ||
})(jQuery); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* This is a manifest file that'll be compiled into application.css, which will include all the files | ||
* listed below. | ||
* | ||
* Any CSS file within this directory can be referenced here using a relative path. | ||
* | ||
* You're free to add application-wide styles to this file and they'll appear at the top of the | ||
* compiled file, but it's generally better to create a new file per style scope. | ||
* | ||
*= require main | ||
*= require mobile | ||
*= require_self | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
h1, h2 { | ||
margin: 10px 25px 5px; | ||
} | ||
|
||
h2 { | ||
font-size: 1.1em; | ||
} | ||
|
||
.filename { | ||
font-style: italic; | ||
} | ||
|
||
.exceptionMessage { | ||
margin: 10px; | ||
border: 1px solid #000; | ||
padding: 5px; | ||
background-color: #E9E9E9; | ||
} | ||
|
||
.stack, | ||
.snippet { | ||
margin: 0 25px 10px; | ||
} | ||
|
||
.stack, | ||
.snippet { | ||
border: 1px solid #ccc; | ||
-mox-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
} | ||
|
||
/* error details */ | ||
.error-details { | ||
border-top: 1px solid #FFAAAA; | ||
-mox-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
border-bottom: 1px solid #FFAAAA; | ||
-mox-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
box-shadow: 0 0 2px rgba(0,0,0,0.2); | ||
background-color:#FFF3F3; | ||
line-height: 1.5; | ||
overflow: hidden; | ||
padding: 5px; | ||
padding-left:25px; | ||
} | ||
|
||
.error-details dt { | ||
clear: left; | ||
float: left; | ||
font-weight: bold; | ||
margin-right: 5px; | ||
} | ||
|
||
.error-details dt:after { | ||
content: ":"; | ||
} | ||
|
||
.error-details dd { | ||
display: block; | ||
} | ||
|
||
/* stack trace */ | ||
.stack { | ||
padding: 5px; | ||
overflow: auto; | ||
height: 150px; | ||
} | ||
|
||
/* code snippet */ | ||
.snippet { | ||
background-color: #fff; | ||
font-family: monospace; | ||
} | ||
|
||
.snippet .line { | ||
display: block; | ||
} | ||
|
||
.snippet .lineNumber { | ||
background-color: #ddd; | ||
color: #999; | ||
display: inline-block; | ||
margin-right: 5px; | ||
padding: 0 3px; | ||
text-align: right; | ||
width: 3em; | ||
} | ||
|
||
.snippet .error { | ||
background-color: #fff3f3; | ||
font-weight: bold; | ||
} | ||
|
||
.snippet .error .lineNumber { | ||
background-color: #faa; | ||
color: #333; | ||
font-weight: bold; | ||
} | ||
|
||
.snippet .line:first-child .lineNumber { | ||
padding-top: 5px; | ||
} | ||
|
||
.snippet .line:last-child .lineNumber { | ||
padding-bottom: 5px; | ||
} |
Oops, something went wrong.