This file contains hidden or 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
| <link href="../core-scaffold/core-scaffold.html" rel="import"> | |
| <link href="../core-header-panel/core-header-panel.html" rel="import"> | |
| <link href="../core-menu/core-menu.html" rel="import"> | |
| <link href="../core-item/core-item.html" rel="import"> | |
| <link href="../core-icon-button/core-icon-button.html" rel="import"> | |
| <link href="../core-toolbar/core-toolbar.html" rel="import"> | |
| <link href="../google-map/google-map-search.html" rel="import"> | |
| <link href="../core-input/core-input.html" rel="import"> | |
| <link href="../core-menu/core-submenu.html" rel="import"> | |
| <link href="../google-map/google-map.html" rel="import"> |
This file contains hidden or 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
| let QuestionnaireConsumeView = React.createClass({ | |
| mixins: [BackboneReactMixin, State, Navigation], | |
| getInitialState() { | |
| console.log('initialstate'); | |
| return {}; | |
| }, | |
| componentWillReceiveProps(nextProps) { | |
| console.log('coponente will receive props'); | |
| this.overrideModel(); |
This file contains hidden or 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
| var bpmn = require("bpmn"); | |
| console.log("Start process") | |
| bpmn.createUnmanagedProcess(__dirname + "/bpmn/simpleRegistration.bpmn", function(err, myProcess) { | |
| console.log(err) | |
| // we start the process | |
| myProcess.triggerEvent("Start_registration"); |
This file contains hidden or 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
| import io.vertx.core.AsyncResult; | |
| import io.vertx.core.Future; | |
| import io.vertx.core.Handler; | |
| import io.vertx.core.Vertx; | |
| import io.vertx.core.VertxException; | |
| import io.vertx.core.buffer.Buffer; | |
| import io.vertx.core.file.FileSystem; | |
| import io.vertx.ext.web.RoutingContext; | |
| import io.vertx.ext.web.impl.Utils; | |
| import io.vertx.ext.web.templ.ThymeleafTemplateEngine; |
This file contains hidden or 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
| import io.vertx.core.AsyncResult; | |
| import io.vertx.core.Future; | |
| import io.vertx.core.Handler; | |
| import io.vertx.core.Vertx; | |
| import io.vertx.core.VertxException; | |
| import io.vertx.core.buffer.Buffer; | |
| import io.vertx.core.file.FileSystem; | |
| import io.vertx.ext.web.RoutingContext; | |
| import io.vertx.ext.web.impl.Utils; | |
| import io.vertx.ext.web.templ.ThymeleafTemplateEngine; |
This file contains hidden or 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
| plugins { | |
| id "org.flywaydb.flyway" version "3.2.1" | |
| id 'java' | |
| id 'idea' | |
| } | |
| description = 'GR8PI :: Database Model' | |
| sourceCompatibility = 1.8 |
This file contains hidden or 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
| plugins { | |
| id 'org.ajoberstar.github-pages' version '1.4.2' | |
| } | |
| githubPages { | |
| repoUri = 'git@github.com:ieugen/ieugen.ro.git' | |
| pages { | |
| from 'output' | |
| } | |
| } |
This file contains hidden or 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
| /etc/default/alfio | |
| ---- | |
| JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre | |
| MODE=service | |
| #PORT=9001 | |
| JAVA_OPTS="-Ddatasource.driver=org.postgresql.Driver -Ddatasource.url=jdbc:postgresql://localhost:5433/alfio -Ddatasource.username=alfio -Ddatasource.password=secret -Ddatasource.dialect=PGSQL -Ddatasource.validationQuery='SELECT 1'" |
This file contains hidden or 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
| package ro.trusted.web; | |
| import com.google.common.base.Throwables; | |
| import io.vertx.core.Handler; | |
| import io.vertx.core.buffer.Buffer; | |
| import io.vertx.core.http.HttpServerRequest; | |
| import io.vertx.ext.web.RoutingContext; | |
| import lombok.Data; | |
| import org.apache.commons.io.IOUtils; | |
| import org.apache.commons.lang3.StringUtils; |
This file contains hidden or 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
| @Component | |
| public class Account implements gr8pi.graphql.core.api.Account { | |
| @Override | |
| public String getId() { | |
| return "demo"; | |
| } | |
| @Override | |
| public List<Respondent> getRespondents() { |
OlderNewer