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
flowchart TB | |
subgraph platform | |
subgraph flow | |
F --> CDI | |
F --> Q | |
F --> OSGi | |
F --> MPR | |
F --> POR | |
end | |
subgraph components |
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
[ "$1" = "--skipLinks" ] && skipLinks=true | |
set -e | |
rm -rf migrate | |
mkdir migrate | |
cd migrate | |
renameLinks() { |
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 com.vaadin.flow.component.dialog.tests; | |
import java.io.IOException; | |
import java.lang.reflect.Field; | |
import java.net.URL; | |
import java.util.Collections; | |
import java.util.List; | |
import org.hamcrest.CoreMatchers; |
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
<plugin> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-maven-plugin</artifactId> | |
<version>9.4.19.v20190610</version> | |
<configuration> | |
<scanIntervalSeconds>2</scanIntervalSeconds> | |
<systemProperties> | |
<systemProperty> | |
<name>org.slf4j.simpleLogger.defaultLogLevel</name> | |
<value>debug</value> |
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 com.vaadin.flow.server.frontend; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.util.Arrays; | |
import java.util.HashSet; | |
import java.util.Set; | |
import net.bytebuddy.jar.asm.AnnotationVisitor; | |
import net.bytebuddy.jar.asm.ClassReader; |
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
-ea -Dwebdriver.chrome.driver=/.../target/driver/osx/googlechrome/64bit/chromedriver |
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 com.vaadin.connect.starter; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import org.springframework.boot.web.servlet.error.ErrorController; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.ResponseBody; |
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
user=manolo | |
pass=abc123 | |
app=vaadin-connect-client:c13nts3cr3t | |
url=http://localhost:8080/oauth/token | |
json=`curl $url -X POST -u $app -H "Accept: application/json" -d password=$pass -d username=$user -d grant_type=password 2>/dev/null` | |
echo "$url" | |
echo "$json" | |
echo "" |
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
SAUCE_ACCESS_KEY= | |
SAUCE_USERNAME= | |
npm -g polymer-cli | |
npm i --no-save bower | |
npm i gemini | |
npm i --no-save gemini@^4.0.0 gemini-sauce gemini-polyserve | |
for file in .gemini* |
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
#!/bin/sh | |
[ -z "$1" ] && echo "Usage $0 element-name" && exit | |
name=$1 | |
class=`echo $name | perl -pe 's/(^|-)./uc($&)/ge;s/-//g'` | |
small=`echo $name | perl -pe 's/^vaadin-//g'` | |
Small=`echo $class | perl -pe 's/^Vaadin//g'` | |
git clone git@github.com:vaadin/vaadin-element-skeleton.git $name || exit |
NewerOlder