Skip to content

Commit fc75ec8

Browse files
committed
zeppelin configuration
1 parent 8199b8d commit fc75ec8

11 files changed

+3429
-0
lines changed

zeppelin/configuration.xsl

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one
4+
or more contributor license agreements. See the NOTICE file
5+
distributed with this work for additional information
6+
regarding copyright ownership. The ASF licenses this file
7+
to you under the Apache License, Version 2.0 (the
8+
"License"); you may not use this file except in compliance
9+
with the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
-->
19+
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
20+
<xsl:output method="html"/>
21+
<xsl:template match="configuration">
22+
<html>
23+
<body>
24+
<table border="1">
25+
<tr>
26+
<td>name</td>
27+
<td>value</td>
28+
<td>description</td>
29+
</tr>
30+
<xsl:for-each select="property">
31+
<tr>
32+
<td><a name="{name}"><xsl:value-of select="name"/></a></td>
33+
<td><xsl:value-of select="value"/></td>
34+
<td><xsl:value-of select="description"/></td>
35+
</tr>
36+
</xsl:for-each>
37+
</table>
38+
</body>
39+
</html>
40+
</xsl:template>
41+
</xsl:stylesheet>

zeppelin/interpreter-list

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
#
18+
# [name] [maven artifact] [description]
19+
20+
alluxio org.apache.zeppelin:zeppelin-alluxio:0.8.0 Alluxio interpreter
21+
angular org.apache.zeppelin:zeppelin-angular:0.8.0 HTML and AngularJS view rendering
22+
beam org.apache.zeppelin:zeppelin-beam:0.8.0 Beam interpreter
23+
bigquery org.apache.zeppelin:zeppelin-bigquery:0.8.0 BigQuery interpreter
24+
cassandra org.apache.zeppelin:zeppelin-cassandra_2.11:0.8.0 Cassandra interpreter built with Scala 2.11
25+
elasticsearch org.apache.zeppelin:zeppelin-elasticsearch:0.8.0 Elasticsearch interpreter
26+
file org.apache.zeppelin:zeppelin-file:0.8.0 HDFS file interpreter
27+
flink org.apache.zeppelin:zeppelin-flink_2.11:0.8.0 Flink interpreter built with Scala 2.11
28+
hbase org.apache.zeppelin:zeppelin-hbase:0.8.0 Hbase interpreter
29+
ignite org.apache.zeppelin:zeppelin-ignite_2.11:0.8.0 Ignite interpreter built with Scala 2.11
30+
jdbc org.apache.zeppelin:zeppelin-jdbc:0.8.0 Jdbc interpreter
31+
kylin org.apache.zeppelin:zeppelin-kylin:0.8.0 Kylin interpreter
32+
lens org.apache.zeppelin:zeppelin-lens:0.8.0 Lens interpreter
33+
livy org.apache.zeppelin:zeppelin-livy:0.8.0 Livy interpreter
34+
md org.apache.zeppelin:zeppelin-markdown:0.8.0 Markdown support
35+
pig org.apache.zeppelin:zeppelin-pig:0.8.0 Pig interpreter
36+
python org.apache.zeppelin:zeppelin-python:0.8.0 Python interpreter
37+
scio org.apache.zeppelin:zeppelin-scio_2.11:0.8.0 Scio interpreter
38+
shell org.apache.zeppelin:zeppelin-shell:0.8.0 Shell command

0 commit comments

Comments
 (0)