forked from eclipse-che/che
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request eclipse-che#13 in CLD/slx.cloud-che from feature/u…
…pdatemaster to master updated to 6.1.0 stable, new keycloak theme * commit 'e58465aaeea236ff051b8176af4581a443c0fd88': (115 commits) fixed fonts and added google fonts fallback added box shadow fix added lato regular as bold added lato light italic updated license header added Lato Light to fonts, removed CHE from login page ST-3764, ST-3613 Create keycloak docker image, and use the latest login theme Remove commented Updated version to 6.1.0 tag [maven-release-plugin] prepare release 6.1.0 RELEASE: Update dependencies versions RELEASE: Update parent pom version RELEASE: Set tags in Dockerfiles CHE-8747. Fix displaying pull request panel (eclipse-che#8760) Add different style for focusable element (eclipse-che#8757) Selenium: Add most common methods to the "SeleniumWebDriverHelper" (eclipse-che#8746) Selenium: increase timeout to check that a menu item is enabled (eclipse-che#8755) Support enter press in refactoring rename form (eclipse-che#8754) Selenium: change a way for selecting an element from suggestions list (eclipse-che#8736) CHE-7278 Properly handle restarting the workspace (eclipse-che#8612) ...
- Loading branch information
Showing
844 changed files
with
14,799 additions
and
7,213 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
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
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
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
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,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2012-2018 Red Hat, Inc. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
which accompanies this distribution, and is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
Contributors: | ||
Red Hat, Inc. - initial API and implementation | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<artifactId>che-agents-parent</artifactId> | ||
<groupId>org.eclipse.che</groupId> | ||
<version>6.1.0</version> | ||
</parent> | ||
<artifactId>ls-camel-agent</artifactId> | ||
<name>Language Server Apache Camel Agent</name> | ||
</project> |
8 changes: 8 additions & 0 deletions
8
agents/ls-camel/src/main/resources/installers/1.0.0/org.eclipse.che.ls.camel.json
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,8 @@ | ||
{ | ||
"id": "org.eclipse.che.ls.camel", | ||
"version": "1.0.0", | ||
"name": "Apache Camel language server", | ||
"description": "Apache Camel intellisense", | ||
"dependencies": [], | ||
"properties": {} | ||
} |
61 changes: 61 additions & 0 deletions
61
agents/ls-camel/src/main/resources/installers/1.0.0/org.eclipse.che.ls.camel.script.sh
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,61 @@ | ||
# | ||
# Copyright (c) 2012-2018 Red Hat, Inc. | ||
# All rights reserved. This program and the accompanying materials | ||
# are made available under the terms of the Eclipse Public License v1.0 | ||
# which accompanies this distribution, and is available at | ||
# http://www.eclipse.org/legal/epl-v10.html | ||
# | ||
# Contributors: | ||
# Red Hat, Inc. - initial API and implementation | ||
# | ||
|
||
|
||
is_current_user_root() { | ||
test "$(id -u)" = 0 | ||
} | ||
|
||
is_current_user_sudoer() { | ||
sudo -n true > /dev/null 2>&1 | ||
} | ||
|
||
set_sudo_command() { | ||
if is_current_user_sudoer && ! is_current_user_root; then SUDO="sudo -E"; else unset SUDO; fi | ||
} | ||
|
||
set_sudo_command | ||
unset PACKAGES | ||
command -v tar >/dev/null 2>&1 || { PACKAGES=${PACKAGES}" tar"; } | ||
command -v curl >/dev/null 2>&1 || { PACKAGES=${PACKAGES}" curl"; } | ||
|
||
AGENT_BINARIES_URI=https://github.com/lhein/camel-language-server/releases/download/untagged-d42064681113e838bd59/camel-lsp-server-1.0.0-SNAPSHOT.jar | ||
CHE_DIR=$HOME/che | ||
LS_DIR=${CHE_DIR}/ls-camel | ||
LS_LAUNCHER=${LS_DIR}/launch.sh | ||
|
||
if [ -f /etc/centos-release ]; then | ||
FILE="/etc/centos-release" | ||
LINUX_TYPE=$(cat $FILE | awk '{print $1}') | ||
elif [ -f /etc/redhat-release ]; then | ||
FILE="/etc/redhat-release" | ||
LINUX_TYPE=$(cat $FILE | cut -c 1-8) | ||
else | ||
FILE="/etc/os-release" | ||
LINUX_TYPE=$(cat $FILE | grep ^ID= | tr '[:upper:]' '[:lower:]') | ||
LINUX_VERSION=$(cat $FILE | grep ^VERSION_ID=) | ||
fi | ||
|
||
MACHINE_TYPE=$(uname -m) | ||
|
||
mkdir -p ${CHE_DIR} | ||
mkdir -p ${LS_DIR} | ||
|
||
|
||
############################### | ||
### Install Apache Camel LS ### | ||
############################### | ||
|
||
curl -L -s ${AGENT_BINARIES_URI} -o ${LS_DIR}/camel-lsp-server.jar | ||
|
||
touch ${LS_LAUNCHER} | ||
chmod +x ${LS_LAUNCHER} | ||
echo "java -jar ${LS_DIR}/camel-lsp-server.jar" > ${LS_LAUNCHER} |
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
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
Oops, something went wrong.