-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add ui component #4
Open
atomkevich
wants to merge
26
commits into
scalalab3:master
Choose a base branch
from
atomkevich:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 13 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
38f6fd7
Add ui client
atomkevich 8fe4d54
Delete uiDesigner.xml
atomkevich 9a9f4e7
Delete jsLibraryMappings.xml
atomkevich da43c75
Delete vcs.xml
atomkevich a6db745
Add examples
atomkevich dabc22b
Merge remote-tracking branch 'origin/master'
atomkevich 21bf96a
Add examples
atomkevich af8208a
Fix code review
atomkevich 9fe5a64
Merge remote-tracking branch 'upstream/master'
atomkevich 2da46c1
Change structure of application
atomkevich 82b183d
Change structure of application
atomkevich b71bcfd
Add description
atomkevich c1d50f3
Add description
atomkevich 8bc3fce
Merge remote-tracking branch 'upstream/master'
atomkevich 03ff1bf
Merge remote-tracking branch 'upstream/master'
atomkevich fdc7922
Update travis badge to point to fvlad build
fvlad a57abfc
Merge remote-tracking branch 'origin/master' into client
fvlad 2f9e168
Move client files around
fvlad e5172b9
Merge pull request #1 from fvlad/client
atomkevich 5fddb32
add scoring
atomkevich 22cb596
add scoring
atomkevich 243b627
Merge remote-tracking branch 'upstream/master'
atomkevich d56e6bc
Add mxm client
atomkevich 2b0abdb
fix config version
atomkevich 34b2d99
fix versions for 7 java
atomkevich 98ca929
fix versions for 7 java
atomkevich File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# lyrics-engine | ||
|
||
[![Join the chat at https://gitter.im/scalalab3/lyrics-engine](https://badges.gitter.im/scalalab3/lyrics-engine.svg)](https://gitter.im/scalalab3/lyrics-engine?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
[![Join the chat at https://gitter.im/scalalab3/lyrics-engine](https://badges.gitter.im/scalalab3/lyrics-engine.svg)](https://gitter.im/scalalab3/lyrics-engine?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
|
||
|
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
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
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,33 @@ | ||
module.exports = function(grunt) { | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
|
||
watch: { | ||
react: { | ||
files: 'js/react_components/*.jsx', | ||
tasks: ['browserify'] | ||
} | ||
}, | ||
|
||
browserify: { | ||
options: { | ||
transform: [ require('grunt-react').browserify ] | ||
}, | ||
client: { | ||
src: ['js/react_components/*.jsx', 'js/react_components/modules/Home.jsx'], | ||
dest: 'js/scripts/home.js' | ||
}, | ||
js: { | ||
src: ['js/react_components/*.jsx', 'js/react_components/modules/Recommend.jsx'], | ||
dest: 'js/scripts/recommend.js' | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-browserify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
|
||
grunt.registerTask('default', [ | ||
'browserify' | ||
]); | ||
}; |
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 |
---|---|---|
|
@@ -4,4 +4,8 @@ akka { | |
|
||
spray.can.server { | ||
request-timeout = 1s | ||
} | ||
http { | ||
interface = "0.0.0.0" | ||
port = 9000 | ||
} |
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,91 @@ | ||
.form-style-3{ | ||
align-items:center; | ||
max-width: 450px; | ||
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; | ||
} | ||
.form-style-3 label{ | ||
display:block; | ||
margin-bottom: 10px; | ||
} | ||
.form-style-3 label > span{ | ||
float: left; | ||
width: 100px; | ||
color: #f0d215; | ||
font-weight: bold; | ||
font-size: 13px; | ||
text-shadow: 1px 1px 1px #fff; | ||
} | ||
.form-style-3 fieldset{ | ||
border-radius: 10px; | ||
-webkit-border-radius: 10px; | ||
-moz-border-radius: 10px; | ||
margin: 0px 0px 10px 0px; | ||
border: 1px solid #f8ff5f; | ||
padding: 20px; | ||
background: rgba(128, 119, 65, 0.96);; | ||
box-shadow: inset 0px 0px 15px #fff8ad; | ||
-moz-box-shadow: inset 0px 0px 15px #fff0bd; | ||
-webkit-box-shadow: inset 0px 0px 15px #fcffd2; | ||
} | ||
.form-style-3 fieldset legend{ | ||
color: #EBA909; | ||
border-top: 1px solid #fffabd; | ||
border-left: 1px solid #feffc5; | ||
border-right: 1px solid #fffec9; | ||
border-radius: 5px 5px 0px 0px; | ||
-webkit-border-radius: 5px 5px 0px 0px; | ||
-moz-border-radius: 5px 5px 0px 0px; | ||
background: #FFF4F4; | ||
padding: 0px 8px 3px 8px; | ||
box-shadow: -0px -1px 2px #F1F1F1; | ||
-moz-box-shadow:-0px -1px 2px #F1F1F1; | ||
-webkit-box-shadow:-0px -1px 2px #F1F1F1; | ||
font-weight: normal; | ||
font-size: 15px; | ||
} | ||
.form-style-3 textarea{ | ||
width:250px; | ||
height:100px; | ||
} | ||
.form-style-3 input[type=text], | ||
.form-style-3 input[type=date], | ||
.form-style-3 input[type=datetime], | ||
.form-style-3 input[type=number], | ||
.form-style-3 input[type=search], | ||
.form-style-3 input[type=time], | ||
.form-style-3 input[type=url], | ||
.form-style-3 input[type=email], | ||
.form-style-3 select, | ||
.form-style-3 textarea{ | ||
border-radius: 3px; | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border: 1px solid #ffee7a; | ||
outline: none; | ||
color: #f09c18; | ||
padding: 5px 8px 5px 8px; | ||
box-shadow: inset 1px 1px 4px #ffea62; | ||
-moz-box-shadow: inset 1px 1px 4px #ffff9d; | ||
-webkit-box-shadow: inset 1px 1px 4px #fffdae; | ||
background: #fffef0; | ||
width:50%; | ||
} | ||
.form-style-3 input[type=submit], | ||
.form-style-3 input[type=button]{ | ||
background: #eba909; | ||
border: 1px solid #c9610b; | ||
padding: 5px 15px 5px 15px; | ||
color: #ffe275; | ||
box-shadow: inset -1px -1px 3px #ffc920; | ||
-moz-box-shadow: inset -1px -1px 3px #ffda25; | ||
-webkit-box-shadow: inset -1px -1px 3px #ffe85e; | ||
border-radius: 3px; | ||
border-radius: 3px; | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
font-weight: bold; | ||
} | ||
.required{ | ||
color: #ffbe29; | ||
font-weight:normal; | ||
} |
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cannot get, what exactly changed in this file? A few new lines?