-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
executable file
·939 lines (893 loc) · 52.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Pentaho Community</title>
<meta name="description" content="Open source Business Intelligence package including ETL, analysis, metadata and reporting capabilities, now with a totally fresh redesigned interface.">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/cbpScroller.css">
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="shortcut icon" href="img/pentaho_favicon.png" type="image/png">
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body id="pentahoHome" class="pentahoHome home nav-home">
<div class="header-container"></div>
<!-- carousel -->
<div class="wrapper-header-bg">
<div class="wrapper-with-margin">
<div id="owl" class="owl-carousel community-slide">
<!-- Wrapper for slides -->
<div class="item active community-slide">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-desktop">
<div class="text-center">
<img src="img/pcm_de2017.png" alt="" style="max-height: 315px;">
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 left-side-slide">
<h1 style="white-space: nowrap;">Pentaho Community <br> Meeting</h1>
<p><b> Mainz, Germany. Nov 11-12, 2017.</b> <br> #PCM2017</p>
<a class="" href="https://www.eventbrite.de/e/pentaho-community-meeting-2017-registrierung-35566474282" target="pcm2017" style="min-width: 0;">
<span class="btn btn-default btn-header">Register</span>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-mobile">
<div class="text-right">
<img src="img/pcm_de2017.png" alt="" style="max-height: 315px;">
</div>
</div>
</div>
</div>
<div class="item community-slide">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-desktop">
<!-- <img src="img/pentaho-54-screen.png" alt=""> -->
<div class="text-center">
<img src="img/Community_Home_7.1.png" alt="" style="max-height: 315px;">
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 left-side-slide">
<h1 style="letter-spacing: -0.03em;">Pentaho Community Edition 7.1</h1>
<p>Improve Productivity and Performance for Big Data</p>
<a class="hidden-mobile">
<span class="btn btn-default btn-header" id="buttonDownloadCE">Download Section</span>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-mobile">
<!-- <img src="img/pentaho-54-screen.png" alt=""> -->
<div class="text-right">
<img src="img/Community_Home_7.1.png" alt="" style="max-height: 315px;">
</div>
</div>
</div>
</div>
<div class="item community-slide">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-desktop">
<div class="text-center">
<img src="img/Community_Marketplace_cropped.png" alt="" style="max-height: 315px;">
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 left-side-slide">
<h1>Pentaho Marketplace</h1>
<p>Browse through the Pentaho Marketplace website.</p>
<a class="" href="http://www.pentaho.com/marketplace/" target="_blank" style="min-width: 0;">
<span class="btn btn-default btn-header">Launch</span>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 right-side-slide hidden-mobile">
<div class="text-right">
<img src="img/Community_Marketplace_cropped.png" alt="" style="max-height: 315px;">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end carousel -->
<div class="backPage cbp-so-scroller" id="cbp-so-scroller">
<div class="site-container whiteContainerBack" id="hiddenMobile">
<!-- <div class="slider-tabs header"></div> -->
<div class="whiteContainer site-container" style="padding-top: 0;">
<div class="row">
<div class="col-xs-12">
<div id="myCarousel" class="carousel slide">
<ol class="carousel-indicators content">
<li id="description-tab" data-target="#myCarousel" data-slide-to="0" class="active clicked col-xs-4 noSelect">Description</li>
<li id="whatsnew-tab" data-target="#myCarousel" data-slide-to="1" class="col-xs-4 noSelect">Main Features</li>
<li id="marketplace-tab" data-target="#myCarousel" data-slide-to="2" class="col-xs-4 noSelect">Marketplace</li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="item active">
<div class="row" id="whats-new-images">
<div class="col-md-7 col-sm-7">
<h3>An Engagement Mechanism</h3>
<ul>
<li>
<strong>Participate in the Pentaho Community:</strong> By using Pentaho CE, you become part of an active and engaging Community and benefit from its open source contributions.</li>
<li>
<strong>Make valuable contributions:</strong> The Pentaho open source projects deliver better, faster, and more reliable products that are time-tested by the community. Developers, testers, writers, implementers, and most of all users
are directly involved as a team to make high-value software contributions.</li>
</ul>
<h3>A QA Environment</h3>
<ul>
<li>
<strong>Test it:</strong> There are no better testers than people who actually use the Pentaho CE software, reporting bugs, making suggestions, and providing direction for the projects.</li>
</ul>
<h3>An Evaluation Platform</h3>
<ul>
<li>
<strong>Build with CE:</strong> The flexibility of Pentaho CE enables you to jump-start your development, innovate, experiment, find a solution you like, and then upgrade to Pentaho EE when you are ready for production.</li>
</ul>
<div class="gallery-wrapper sub-gallery text-center">
<img src="img/screen1.png" alt="">
<img src="img/screen2.png" alt="">
<img src="img/screen3.png" alt="">
<img src="img/screen4.png" alt="">
<img src="img/screen5.png" alt="">
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://community.hds.com/">HDS Community</a>
<br>
<a target="_blank" href="http://ci.pentaho.com/">CI Builds</a>
<br>
<a target="_blank" href="http://jira.pentaho.com/">JIRA</a>
<br>
<a target="_blank" href="https://github.com/pentaho">Source Code</a>
<br>
<a target="_blank" href="http://forums.pentaho.com/">Community Forums</a>
<br>
<a target="_blank" href="https://groups.google.com/forum/#!forum/pentaho-community">Pentaho Community Mailing List</a>
<br>
<a target="_blank" href="http://webchat.freenode.net/?channels=pentaho">IRC (##pentaho @ Freenode)</a>
<!--
<h1>Community Projects</h1>
<a href="">Kettle</a><br>
<a href="">Reporting</a><br>
<a href="">BI Platform</a><br>
<a href="">Mondrian</a><br>
<a href="">Weka</a>-->
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Info</h4>
<a target="_blank" href="http://community.pentaho.com/contributors/contributor_agreement.php">Contributor Agreement</a>
<br>
<a target="_blank" href="http://wiki.pentaho.com/display/PEOpen/Development+Standards%2C+Guidelines+and+Best+Practices">Development Guide</a>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar info-bar-license">
<h4>License</h4>
<a href="http://www.pentaho.com/license" target="_blank">GNU General Public License Version 2 (GPLv2)</a>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1 gallery-side-description" id="screenshots-description">
<p>The open source platform thrives on participation and cooperation. There are several communication channels available where you can get in contact with the community including blogs, <a target="_blank" href="http://forums.pentaho.com/">forums</a>,
<a target="_blank" href="http://webchat.freenode.net/?channels=pentaho">IRC</a> and the <a target="_blank" href="https://groups.google.com/forum/#!forum/pentaho-community">Pentaho Community Mailing List</a>.</p>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-md-7 col-sm-7">
<br>
<ul>
<li>
<strong>Complete Spark Support:</strong> Pentaho is the only vendor to support Spark with all data integration steps in a visual drag-and-drop environment. Unlike other vendors who require users to build Spark-specific data integration logic – and often require Java development skills – with Pentaho you only need to design your logic once, regardless of execution engine.
</li>
<li>
<strong>Adaptive Execution on Big Data:</strong> Transitioning from one engine for big data processing to another often means users need to re-write and debug their data integration logic for each engine, which takes time. Pentaho’s adaptive execution allows users to match workloads with the most appropriate processing engine, without having to re-write any data integration logic.
</li>
<li>
<strong>Prepare Better Data, Faster:</strong> More visualizations throughout the data prep process allows users to spot check data for quality issues and prototype analytic data, without switching in and out of tools or waiting until the very end to discover data quality problems. Now, users can interact with heat grids, geo maps, and sunbursts, as well as drill-down into data sets for further exploration.
</li>
<li>
<strong>Integrate 3rd Party Visualizations:</strong> Leverage an easy to use and flexible API with full documentation to integrate visualizations from third party libraries such as D3 or FusionCharts.
</li>
</ul>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="row">
<div class="col-lg-12">
<div class="info-bar-marketplace">
<div class="marketplace-box-header"></div>
<div class="link-tab">
<p>Find apps, PDI plugins and more.</p>
<a class="link-marketplacetab" href="http://www.pentaho.com/marketplace/" target="_blank">Visit marketplace website</a>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace Metadata Project</a>
<br>
<a target="_blank" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" title="Marketplace for Pentaho 5.4">Download Marketplace 5.4</a>
<br>
<a target="_blank" href="https://github.com/pentaho/marketplace">Source Code</a>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row" id="marketplace-images">
<div class="col-md-7 col-sm-7">
<p style="margin-top: 25px;">With
<strong>Pentaho Marketplace</strong> you can easily download and install plugins developed by the Pentaho Community, extending the capabilities of your Pentaho platform.</p>
<h3>Objectives</h3>
<ul>
<li>
<strong>Discover plugins: </strong>In Pentaho Marketplace you can browse and install the latest plugins in a very simple way.</li>
<li>
<strong>Submit your plugins: </strong>You can contribute plugins and let everyone benefit from your work. This is a great way to get feedback and other community members involved in your work.</li>
</ul>
<div class="gallery-wrapper sub-gallery text-center">
<img src="img/mplace1.png" alt="">
<img src="img/mplace2.png" alt="">
<img src="img/mplace3.png" alt="">
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar-marketplace">
<div class="marketplace-box-header"></div>
<div class="link-tab">
<p>Find apps, PDI plugins and more.</p>
<a class="link-marketplacetab" href="http://www.pentaho.com/marketplace/" target="_blank">Visit marketplace website</a>
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace Metadata Project</a>
<br>
<a target="_blank" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" title="Marketplace for Pentaho 5.4">Download Marketplace 5.4</a>
<br>
<a target="_blank" href="https://github.com/pentaho/marketplace">Source Code</a>
<br>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1 gallery-side-description" id="screenshots-description">
<p>See the instructions on Github for the <a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace-metadata project</a>. As a side note, the Marketplace itself is a plugin, and the <a target="_blank" href="https://github.com/pentaho/marketplace">code is available at Github</a>.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-container whiteContainerBack" id="showMobile">
<!-- <div class="slider-tabs header"></div> -->
<div class="whiteContainer site-container" style="padding-top: 0; padding-bottom: 40px;">
<div class="row">
<div class="col-xs-12">
<div class="panel-group" id="accordionMain">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordionMain" href="#collapseMainTwo">
<div class="row">
<span class="col-md-12"> Description</span>
</div>
</a>
</h4>
</div>
<div id="collapseMainTwo" class="panel-collapse collapse">
<div class="panel-body" id="">
<div class="row">
<div class="col-lg-12">
<div class="row" id="whats-new-images">
<div class="col-md-7 col-sm-7">
<h3>An Engagement Mechanism</h3>
<ul>
<li>
<strong>Participate in the Pentaho Community:</strong> By using Pentaho CE, you become part of an active and engaging Community and benefit from its open source contributions.</li>
<li>
<strong>Make valuable contributions:</strong> The Pentaho open source projects deliver better, faster, and more reliable products that are time-tested by the community. Developers, testers, writers, implementers, and most of all
users are directly involved as a team to make high-value software contributions.</li>
</ul>
<h3>A QA Environment</h3>
<ul>
<li>
<strong>Test it:</strong> There are no better testers than people who actually use the Pentaho CE software, reporting bugs, making suggestions, and providing direction for the projects.</li>
</ul>
<h3>An Evaluation Platform</h3>
<ul>
<li>
<strong>Build with CE:</strong> The flexibility of Pentaho CE enables you to jump-start your development, innovate, experiment, find a solution you like, and then upgrade to Pentaho EE when you are ready for production.</li>
</ul>
<div class="gallery-wrapper sub-gallery text-center">
<img src="img/screen1.png" alt="">
<img src="img/screen2.png" alt="">
<img src="img/screen3.png" alt="">
<img src="img/screen4.png" alt="">
<img src="img/screen5.png" alt="">
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1 gallery-side-description" id="screenshots-description">
<p>The open source platform thrives on participation and cooperation. There are several communication channels available where you can get in contact with the community including blogs, <a target="_blank" href="http://forums.pentaho.com/">forums</a>,
<a target="_blank" href="http://webchat.freenode.net/?channels=pentaho">IRC</a> and the <a target="_blank" href="https://groups.google.com/forum/#!forum/pentaho-community">Pentaho Community Mailing List</a>.</p>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace Metadata Project</a>
<br>
<a target="_blank" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" title="Marketplace for Pentaho 5.4">Download Marketplace 5.4</a>
<br>
<a target="_blank" href="https://github.com/pentaho/marketplace">Source Code</a>
<br>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Info</h4>
<a target="_blank" href="http://community.pentaho.com/contributors/contributor_agreement.php">Contributor Agreement</a>
<br>
<a target="_blank" href="http://wiki.pentaho.com/display/PEOpen/Development+Standards%2C+Guidelines+and+Best+Practices">Development Guide</a>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar info-bar-license">
<h4>License</h4>
<a href="http://www.pentaho.com/license" target="_blank">GNU General Public License Version 2 (GPLv2)</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordionMain" href="#collapseMainOne">
<div class="row">
<span class="col-md-12"> Main Features</span>
</div>
</a>
</h4>
</div>
<div id="collapseMainOne" class="panel-collapse collapse">
<div class="panel-body" id="">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-md-7 col-sm-7">
<br>
<ul>
<li>
<strong>Complete Spark Support:</strong> Pentaho is the only vendor to support Spark with all data integration steps in a visual drag-and-drop environment. Unlike other vendors who require users to build Spark-specific data integration logic – and often require Java development skills – with Pentaho you only need to design your logic once, regardless of execution engine.
</li>
<li>
<strong>Adaptive Execution on Big Data:</strong> Transitioning from one engine for big data processing to another often means users need to re-write and debug their data integration logic for each engine, which takes time. Pentaho’s adaptive execution allows users to match workloads with the most appropriate processing engine, without having to re-write any data integration logic.
</li>
<li>
<strong>Prepare Better Data, Faster:</strong> More visualizations throughout the data prep process allows users to spot check data for quality issues and prototype analytic data, without switching in and out of tools or waiting until the very end to discover data quality problems. Now, users can interact with heat grids, geo maps, and sunbursts, as well as drill-down into data sets for further exploration.
</li>
<li>
<strong>Integrate 3rd Party Visualizations:</strong> Leverage an easy to use and flexible API with full documentation to integrate visualizations from third party libraries such as D3 or FusionCharts.
</li>
</ul>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="row">
<div class="col-lg-12">
<div class="info-bar-marketplace">
<div class="marketplace-box-header"></div>
<div class="link-tab">
<p>Find apps, PDI plugins and more.</p>
<a class="link-marketplacetab" href="http://www.pentaho.com/marketplace/" target="_blank">Visit marketplace website</a>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace Metadata Project</a>
<br>
<a target="_blank" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" title="Marketplace for Pentaho 5.4">Download Marketplace 5.4</a>
<br>
<a target="_blank" href="https://github.com/pentaho/marketplace">Source Code</a>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordionMain" href="#collapseMainThree">
<div class="row">
<span class="col-md-12"> Marketplace</span>
</div>
</a>
</h4>
</div>
<div id="collapseMainThree" class="panel-collapse collapse">
<div class="panel-body" id="">
<div class="row" id="marketplace-images">
<div class="col-md-7 col-sm-7">
<br><br>
<p>With
<strong>Pentaho Marketplace</strong> you can easily download and install plugins developed by the Pentaho Community, extending the capabilities of your Pentaho platform.</p>
<h3>Objectives</h3>
<ul>
<li>
<strong>Discover plugins: </strong>In Pentaho Marketplace you can browse and install the latest plugins in a very simple way.</li>
<li>
<strong>Submit your plugins: </strong>You can contribute plugins and let everyone benefit from your work. This is a great way to get feedback and other community members involved in your work.</li>
</ul>
<div class="gallery-wrapper sub-gallery text-center">
<img src="img/mplace1.png" alt="">
<img src="img/mplace2.png" alt="">
<img src="img/mplace3.png" alt="">
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1 gallery-side-description" id="screenshots-description">
<p>See the instructions on Github for the <a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace-metadata project</a>. As a side note, the Marketplace itself is a plugin, and the <a target="_blank" href="https://github.com/pentaho/marketplace">code is available at Github</a>.
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar-marketplace">
<div class="marketplace-box-header"></div>
<div class="link-tab">
<p>Find apps, PDI plugins and more.</p>
<a class="link-marketplacetab" href="http://www.pentaho.com/marketplace/" target="_blank">Visit marketplace website</a>
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1">
<div class="info-bar">
<h4>Quick Links</h4>
<a target="_blank" href="https://github.com/pentaho/marketplace-metadata">Marketplace Metadata Project</a>
<br>
<a target="_blank" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" title="Marketplace for Pentaho 5.4">Download Marketplace 5.4</a>
<br>
<a target="_blank" href="https://github.com/pentaho/marketplace">Source Code</a>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="whiteContainerBack">
<div class="whiteContainer" id="pentaho5-container" style="padding-top: 0;">
<div class="row">
<div class="col-lg-12 text-center site-container" id="pentaho5-content">
<a href="http://www.pentaho.com/product/version-7-1-update" target="pentaho70release" style="cursor: pointer !important;">
<img src="img/pentaho-community-7.1-release.jpg" alt="">
</a>
</div>
</div>
</div>
</div>
<div class="lightContainerBack">
<div class="container lightContainer downloadsContainer" id="downloadList">
<div class="row">
<div class="col-lg-4">
<h2 class="h2-dark">Downloads</h2>
</div>
<div class="col-lg-8"></div>
</div>
<div class="row">
<div class="col-lg-12">
<h3>Main Downloads</h3>
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
<div class="row">
<span class="col-md-12"> Business Analytics Platform</span>
</div>
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>Pentaho's modern, simplified, and interactive approach empowers business users to access, discover and blend any data types regardless of their size. With a full spectrum of increasingly advanced analytics tools, from basic reports
to predictive modeling, users can help themselves to analyze and visualize data across multiple measures and dimensions without being dependent on IT.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>
<a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Business%20Intelligence%20Server/7.1/pentaho-server-ce-7.1.0.0-12.zip/download" target="_blank">All OS <img src="img/download-icon.png"></a>
</p>
</div>
<!--div class="col-md-2 other-versions"><a href="https://sourceforge.net/projects/pentaho/files/Business%20Intelligence%20Server/5.0.1-stable/" target="_blank">Other artifacts</a></div-->
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
<div class="row">
<span class="col-md-12"> Data Integration</span>
</div>
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>Pentaho’s Data Integration, also known as Kettle, delivers powerful extraction, transformation, and loading (ETL) capabilities. You can use this stand-alone application to visually design transformations and jobs that extract your existing data and make them available for easy reporting and analysis.</p>
<div class="instructions-block">
<div class="instruction-title">
<div class="showcase-demo-box" data-toggle="modal" data-target="#instructions-popup">
<div class="showcase-demo-box-header text-center cursor-pointer">
<p style="color:#005da6;">How to get PDI up and running</p>
</div>
<span class="magnifier-ico"></span>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Data%20Integration/7.1/pdi-ce-7.1.0.0-12.zip/download" target="_blank">All OS <img src="img/download-icon.png"></a></p>
</div>
<!--<div class="col-md-2 other-versions"><a href="https://sourceforge.net/projects/pentaho/files/Data%20Integration/" target="_blank">Other artifacts</a></div>-->
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
<div class="row">
<span class="col-md-12"> Report Designer</span>
</div>
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>The Report Designer is a graphical tool that generates reports from data streamed through the Data Integration engine without the need for any intermediate staging tables. You can output your reports in several formats, includingPDF,
Excel, HTML, rich-text-file, XML. and CSV.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Report%20Designer/7.1/prd-ce-7.1.0.0-12.zip/download" target="_blank">Windows / Linux <img src="img/download-icon.png"></a></p>
</div>
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Report%20Designer/7.1/prd-ce-mac-7.1.0.0-12.zip/download" target="_blank">Mac OS X <img src="img/download-icon.png"></a></p>
</div>
<div class="col-sm-4 other-versions">
<p style="line-height: 18px;"><a href="https://sourceforge.net/projects/pentaho/files/Report%20Designer/7.1/" target="_blank">Other artifacts</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseEight">
<div class="row">
<span class="col-md-12"> Marketplace</span>
</div>
</a>
</h4>
</div>
<div id="collapseEight" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>Pentaho Marketplace allows users to explore and test the plugins that are most relevant for them. Download and install plugins developed by the Pentaho Community, extending the capabilities of your Pentaho platform.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://ctools.pentaho.com/files/marketplace/marketplace-5.4.0.1-130.zip" target="_blank">Pentaho 5.4 <img src="img/download-icon.png"></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<h3>Design Tools</h3>
<div class="panel-group" id="accordion2">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion2" href="#collapseFour">
<div class="row">
<span class="col-md-12"> Aggregation Designer</span>
</div>
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>The Aggregation Designer provides a simple interface that allows you to create and deploy aggregate tables to improve the performance of your Pentaho Analysis (Mondrian) OLAP cubes.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/mondrian/files/aggregation%20designer/7.1/pad-ce-7.1.0.0-12.zip/download" target="_blank">All OS <img src="img/download-icon.png"></a></p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion2" href="#collapseFive">
<div class="row">
<span class="col-md-12"> Schema Workbench</span>
</div>
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>The Schema Workbench is a visual design interface that allows you to create and test Mondrian OLAP cube schemas. You can present your data multi-dimensionally and let users select which dimensions and measures to explore, interactively
drilling into cross-tabulating data.
</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/mondrian/files/schema%20workbench/3.14.0/psw-ce-3.14.0.0-12.zip/download" target="_blank">All OS <img src="img/download-icon.png"></a></p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion2" href="#collapseSix">
<div class="row">
<span class="col-md-12"> Metadata Editor</span>
</div>
</a>
</h4>
</div>
<div id="collapseSix" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>Metadata Editor is a tool that simplifies your experience when creating reports, and allows you to build metadata domains and relational data models.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>
<a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Pentaho%20Metadata/7.1/pme-ce-7.1.0.0-12.zip/download" target="_blank">All OS <img src="img/download-icon.png"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<h3>Big Data</h3>
<div class="panel-group" id="accordion3">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion3" href="#collapseSeven">
<div class="row">
<span class="col-md-12"> Hadoop Shims</span>
</div>
</a>
</h4>
</div>
<div id="collapseSeven" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>Pentaho uses an abstraction layer to facilitate supporting a broad set of Hadoop distributions and version updates. The plugins which enable compatibility with a specific distribution are called /shims/. Use the link below to get
a list of the currently support distributions and versions.</p>
<p>Pentaho does not ship all available shims with the product and we generally do not have to update a shim for a minor or patch version change. Shims that support older distributions as well as new ones created after release are available
for download <a href="https://pentaho.box.com/50Shims">here</a>. If the note says that a later version of a shim also supports your version, Pentaho recommends using the later version.</p>
<br>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p><a class="btn btn-default btn-green" href="http://sourceforge.net/projects/pentaho/files/Big%20Data%20Shims/7.1/" target="_blank">All OS <img src="img/download-icon.png"></a></p>
</div>
<div class="col-md-2 other-versions">
<p style="line-height: 18px; margin: 0;">
<a href="http://wiki.pentaho.com/display/BAD/Configuring+Pentaho+for+your+Hadoop+Distro+and+Version" target="_blank">More Info</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="helpImproveWrapper">
<div class="helpImprove">
<div class="col-md-7 col-sm-12">
<p>Help us improve this website. Send your feedback to <a href="mailto:[email protected]" class="footer-link">[email protected]</a></p>
</div>
<div class="col-md-5 col-sm-12">
<section class="footer-social-wrapper">
<div class="region region-footer-social">
<div class="content text-right">
<a class="footer-social-item youtube" href="https://www.youtube.com/user/pentaho" target="_blank"></a>
<a class="footer-social-item gplus" href="https://plus.google.com/+Pentahocorporation/posts" target="_blank"></a>
<a class="footer-social-item twitter" href="http://twitter.com/Pentaho" target="_blank"></a>
<a class="footer-social-item facebook" href="http://www.facebook.com/pentaho" target="_blank"></a>
<a class="footer-social-item linkedin" href="http://www.linkedin.com/company/pentaho" target="_blank"></a>
<a class="footer-social-item rss-feed" href="http://www.pentaho.com/blog"></a>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="modal fade dashboard-design-modal" id="instructions-popup" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog instructions">
<div class="modal-content">
<div class="modal-header clearfix">
How to get PDI up and running.
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
</div>
<div class="modal-body">
<div class="backPage instructions clearfix">
<div class="tux">
<div class="row">
<div class="col-xs-12">
<h3 style="margin-top: 0;">Linux</h3>
</div>
</div>
<div class="instruction-text">
<h4 style="margin-top: 10px;">Ubuntu 12.04 and later:</h4>
<ul>
<li>The libwebkitgtk package needs to be installed. This can be done by running <code>apt-get install libwebkitgtk-1.0.0</code></li>
<li>Unzip the downloaded file.</li>
<li>Run spoon.sh file, it should be under /data-integration.</li>
<li>On some installations of Ubuntu 14.04, Unity doesn't display the menu bar. In order to fix that, spoon.sh has a setting to disable this integration, <code>export UBUNTU_MENUPROXY=0</code>. You can try to remove that setting if you wish to see if it works propery on your machine</li>
</ul>
<h4>CentOS 6 Desktop:</h4>
<ul>
<li>The libwebkitgtk package needs to be installed. This can be done by running <code>yum install libwebkitgtk</code></li>
<li>Unzip the downloaded file and run spoon.sh, it should be under /data-integration.</li>
</ul>
</div>
</div>
<div class="win">
<h3>Windows</h3>
<div class="instruction-text">
<p>After unzipping the downloaded file, you can launch Spoon by navigating to the folder /data-integration and double clicking Spoon.bat
<br>br
If you are using Infobright, make sure to copy the following files to your Windows system path (for example %WINDIR%/System32/): </p>
<ul>
<li><code>libswt/win32/infobright_jni_64bit.dll</code> (Windows 64-bit)</li>
<li><code>libswt/win32/infobright_jni.dll</code> (Windows 32-bit)</li>
</ul>
<p>Rename the file to: infobright_jni.dll, then run Spoon.bat to launch Spoon.</p>
</div>
</div>
<div class="osx">
<h3>Mac OS</h3>
<div class="instruction-text">
<p>After unzipping the downloaded file, you can launch Spoon by navigating to the folder /data-integration and double clicking on the "Data Integration" application icon.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-1.12.4.min.js"><\/script>')
</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="js/classie.js"></script>
<script src="js/twitter-bootstrap-hover-dropdown.js"></script>
<script src="js/vendor/owl.carousel.js"></script>
<script src="js/master.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#tabs').tab();
$('.header-container').load('pentaho-templates/header.html');
$("#owl").owlCarousel({
navigation: true, // Show next and prev buttons
slideSpeed: 600,
paginationSpeed: 600,
autoPlay: 10000,
pagination: true,
singleItem: true,
mouseDrag: true,
navigationText: ["", ""]
});
$(".sub-gallery").owlCarousel({
slideSpeed: 600,
paginationSpeed: 600,
autoPlay: 10000,
pagination: true,
singleItem: true,
mouseDrag: true,
touchDrag: true
});
$('.carousel-indicators.content li').click(function() {
$('.carousel-indicators.content li').removeClass('clicked');
$(this).addClass("clicked");
});
});
</script>
<script>
var _gaq = [
['_setAccount', 'UA-1507503-9'],
['_trackPageview']
];
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.src = '//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s)
}(document, 'script'));
</script>
</body>
</html>