Skip to content

Commit

Permalink
Add pentaho-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Maia da Mota committed Mar 19, 2014
1 parent da9e8ab commit 643e778
Show file tree
Hide file tree
Showing 11 changed files with 1,775 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pentaho-plugin/saiku-chart-plus/LICENSES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Licenses
Before you put this project in your production environment,
please visit http://www.highcharts.com/ to learn more about
the Highchart project, and https://developers.google.com/maps/terms
to learn more about the Google GeoChart project.

Saiku Chart Plus is a free and open source software. The UI, contained
in this repository, is available under the terms of the Apache License
Version 2. A copy is attached for your convenience.
File renamed without changes.
File renamed without changes
1 change: 1 addition & 0 deletions pentaho-plugin/saiku-chart-plus/js/google.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

299 changes: 299 additions & 0 deletions pentaho-plugin/saiku-chart-plus/js/highcharts.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions pentaho-plugin/saiku-chart-plus/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin title="Saiku Chart Plus" name="saiku-chart-plus">
<static-paths>
<static-path url="/saiku-chart-plus/images" localFolder="images" />
<static-path url="/saiku-chart-plus/css" localFolder="css" />
<static-path url="/saiku-chart-plus/js" localFolder="js" />
</static-paths>
</plugin>
1,370 changes: 1,370 additions & 0 deletions pentaho-plugin/saiku-chart-plus/saiku/plugins/saiku-chart-plus.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pentaho-plugin/saiku-chart-plus/version.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<version branch='TRUNK'>RC4</version>
Binary file added saiku-server/chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions saiku-server/css/plugin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
#nav, #nav ul{
overflow: visible;
z-index:100;
margin:0;
padding:0;
list-style-type:none;
list-style-position:outside;
position:relative;
line-height:1.5em;
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

#nav a{
display:relative;
padding:0px 5px;
color:#555555;
text-decoration:none;
}

.menu{
border: 1px solid #D5D5D5;
margin: 2px 2px;
}

.menu:hover{
background:#155FB0;
color: #FFFFFF;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
}

.menu ul li:hover{
background:#155FB0;
text-decoration: none;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.menu a:hover{
color:#FFFFFF !important;
}

#nav li{
float:left;
position:relative;
}

#nav ul {
position:absolute;
display:none;
width:13em;
top:1.5em;
}

#nav li ul a{
width:12em;
height:auto;
float:left;
}

#nav ul ul{
top:auto;
}

#nav li ul ul {
left:12em;
margin:0px 0 0 10px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul{
display:none;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul{
display:block;
}

#nav .submenu:after {
content: ">";
color: #666;
position: absolute;
top: 0;
right: 3px;
z-index: 1;
}
File renamed without changes.

0 comments on commit 643e778

Please sign in to comment.