├── Chapter 02 - Getting started with Report Designer ├── README.md └── my_reports │ └── my_first_report.prpt ├── Chapter 03 - Getting started with Reporting SDK ├── README.md └── pentaho-reporting-web-app │ ├── README.md │ ├── pom.xml │ ├── resources │ └── sampledata │ │ ├── sampledata.log │ │ ├── sampledata.properties │ │ └── sampledata.script │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ ├── PentahoServlet1.java │ │ └── PentahoServlet2.java │ ├── resources │ └── reports │ │ └── my_first_report.prpt │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── Chapter 04 - Creating a report with Report Designer ├── README.md ├── my_reports │ ├── report_01.prpt │ ├── report_02.prpt │ ├── report_03.prpt │ ├── report_04.prpt │ └── report_05.prpt └── resources │ ├── world.128x128.png │ ├── world.256x256.png │ ├── world.48x48.png │ └── world.64x64.png ├── Chapter 05 - Design and layout in Report Designer ├── README.md └── my_reports │ ├── report_06.prpt │ ├── report_07.prpt │ ├── report_08.prpt │ ├── report_09.prpt │ ├── report_10.prpt │ ├── report_11.prpt │ └── report_12.prpt ├── Chapter 08 - Parametrization, functions, variables and formulas ├── README.md └── my_reports │ ├── sample_with_page_numbering.prpt │ └── sample_with_paramters.prpt ├── Chapter 09 - Internazionalization and localization ├── README.md └── my_reports │ └── report_multilanguage.prpt ├── Chapter 10 - Sub-reports and cross tabs ├── README.md └── my_reports │ ├── crosstab_mdx_datasource.prpt │ ├── crosstab_sql_datasource.prpt │ ├── example_of_index.prpt │ └── subreport.prpt ├── Chapter 11 - The PRPT format and the Java API to build it ├── README.md ├── my_reports │ ├── example_xml.prpt │ └── uncompressed_prpt │ │ ├── META-INF │ │ └── manifest.xml │ │ ├── content.xml │ │ ├── datadefinition.xml │ │ ├── dataschema.xml │ │ ├── datasources │ │ ├── compound-ds.xml │ │ └── sql-ds.xml │ │ ├── layout.xml │ │ ├── meta.xml │ │ ├── mimetype │ │ ├── settings.xml │ │ ├── styles.xml │ │ └── translations.properties └── pentaho-reporting-manual-build │ ├── README.md │ ├── pom.xml │ ├── resources │ └── sampledata │ │ ├── sampledata.log │ │ ├── sampledata.properties │ │ └── sampledata.script │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── PentahoServlet.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── Chapter 12 - Developing using data sources ├── README.md ├── pentaho-reporting-data-source-jdbc │ ├── README.md │ ├── pom.xml │ ├── resources │ │ └── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-kettle │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── CSV Input - Reading customer data.ktr │ │ └── files │ │ │ └── customers-100.txt │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-mondrian │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ │ └── steelwheels.mondrian.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-olap4j │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ │ └── steelwheels.mondrian.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-pmd │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── metadata.xmi │ │ └── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-static-jdbc │ ├── README.md │ ├── pom.xml │ ├── resources │ │ └── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-data-source-table │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp └── pentaho-reporting-data-source-xpath │ ├── README.md │ ├── pom.xml │ ├── resources │ └── xpathexample.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── PentahoServlet.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── Chapter 13 - Internationalization, sub-reports and cross-tabs using Java ├── README.md ├── pentaho-reporting-crosstab │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ │ └── steelwheels.mondrian.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── pentaho-reporting-localization │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── my-first-reporting-project_en.properties │ │ ├── my-first-reporting-project_es.properties │ │ └── sampledata │ │ │ ├── sampledata.log │ │ │ ├── sampledata.properties │ │ │ └── sampledata.script │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── PentahoServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp └── pentaho-reporting-subreport │ ├── README.md │ ├── pom.xml │ ├── resources │ └── sampledata │ │ ├── sampledata.log │ │ ├── sampledata.properties │ │ └── sampledata.script │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── PentahoServlet.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── Chapter 14 - Building interactive reports ├── README.md └── interactive-report │ ├── README.md │ ├── pom.xml │ ├── resources │ ├── interactive_report_1.prpt │ ├── interactive_report_2.prpt │ └── sampledata │ │ ├── sampledata.log │ │ ├── sampledata.properties │ │ └── sampledata.script │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ ├── PentahoServlet.java │ │ └── PentahoServlet2.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── Chapter 15 - Using reports in Pentaho Business Analytics Platform ├── README.md ├── my_dashboards │ ├── my first dashboard.cdfde │ └── my first dashboard.wcdf └── my_reports │ └── my_first_report.prpt ├── Chapter 16 - Using reports in Pentaho Data Integration ├── README.md └── my first transformation.ktr ├── LICENSE └── README.md /Chapter 02 - Getting started with Report Designer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 02 - Getting started with Report Designer/README.md -------------------------------------------------------------------------------- /Chapter 02 - Getting started with Report Designer/my_reports/my_first_report.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 02 - Getting started with Report Designer/my_reports/my_first_report.prpt -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/README.md -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/README.md -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/pom.xml -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/java/com/example/PentahoServlet1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/java/com/example/PentahoServlet1.java -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/java/com/example/PentahoServlet2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/java/com/example/PentahoServlet2.java -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/resources/reports/my_first_report.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/resources/reports/my_first_report.prpt -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/README.md -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/my_reports/report_01.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/my_reports/report_01.prpt -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/my_reports/report_02.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/my_reports/report_02.prpt -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/my_reports/report_03.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/my_reports/report_03.prpt -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/my_reports/report_04.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/my_reports/report_04.prpt -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/my_reports/report_05.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/my_reports/report_05.prpt -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/resources/world.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/resources/world.128x128.png -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/resources/world.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/resources/world.256x256.png -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/resources/world.48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/resources/world.48x48.png -------------------------------------------------------------------------------- /Chapter 04 - Creating a report with Report Designer/resources/world.64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 04 - Creating a report with Report Designer/resources/world.64x64.png -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/README.md -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_06.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_06.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_07.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_07.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_08.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_08.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_09.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_09.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_10.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_10.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_11.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_11.prpt -------------------------------------------------------------------------------- /Chapter 05 - Design and layout in Report Designer/my_reports/report_12.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 05 - Design and layout in Report Designer/my_reports/report_12.prpt -------------------------------------------------------------------------------- /Chapter 08 - Parametrization, functions, variables and formulas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 08 - Parametrization, functions, variables and formulas/README.md -------------------------------------------------------------------------------- /Chapter 08 - Parametrization, functions, variables and formulas/my_reports/sample_with_page_numbering.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 08 - Parametrization, functions, variables and formulas/my_reports/sample_with_page_numbering.prpt -------------------------------------------------------------------------------- /Chapter 08 - Parametrization, functions, variables and formulas/my_reports/sample_with_paramters.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 08 - Parametrization, functions, variables and formulas/my_reports/sample_with_paramters.prpt -------------------------------------------------------------------------------- /Chapter 09 - Internazionalization and localization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 09 - Internazionalization and localization/README.md -------------------------------------------------------------------------------- /Chapter 09 - Internazionalization and localization/my_reports/report_multilanguage.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 09 - Internazionalization and localization/my_reports/report_multilanguage.prpt -------------------------------------------------------------------------------- /Chapter 10 - Sub-reports and cross tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 10 - Sub-reports and cross tabs/README.md -------------------------------------------------------------------------------- /Chapter 10 - Sub-reports and cross tabs/my_reports/crosstab_mdx_datasource.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 10 - Sub-reports and cross tabs/my_reports/crosstab_mdx_datasource.prpt -------------------------------------------------------------------------------- /Chapter 10 - Sub-reports and cross tabs/my_reports/crosstab_sql_datasource.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 10 - Sub-reports and cross tabs/my_reports/crosstab_sql_datasource.prpt -------------------------------------------------------------------------------- /Chapter 10 - Sub-reports and cross tabs/my_reports/example_of_index.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 10 - Sub-reports and cross tabs/my_reports/example_of_index.prpt -------------------------------------------------------------------------------- /Chapter 10 - Sub-reports and cross tabs/my_reports/subreport.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 10 - Sub-reports and cross tabs/my_reports/subreport.prpt -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/README.md -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/example_xml.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/example_xml.prpt -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/META-INF/manifest.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/content.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datadefinition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datadefinition.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/dataschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/dataschema.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datasources/compound-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datasources/compound-ds.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datasources/sql-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/datasources/sql-ds.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/layout.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/meta.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.pentaho.reporting.classic -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/settings.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/styles.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/translations.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/my_reports/uncompressed_prpt/translations.properties -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/README.md -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/pom.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 11 - The PRPT format and the Java API to build it/pentaho-reporting-manual-build/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-jdbc/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/resources/CSV Input - Reading customer data.ktr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/resources/CSV Input - Reading customer data.ktr -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/resources/files/customers-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/resources/files/customers-100.txt -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-kettle/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/steelwheels.mondrian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/resources/steelwheels.mondrian.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-mondrian/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.log -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/steelwheels.mondrian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/resources/steelwheels.mondrian.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-olap4j/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/metadata.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/metadata.xmi -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-pmd/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-static-jdbc/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-table/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/README.md -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/pom.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/resources/xpathexample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/resources/xpathexample.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 12 - Developing using data sources/pentaho-reporting-data-source-xpath/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/README.md -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/README.md -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/pom.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/steelwheels.mondrian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/resources/steelwheels.mondrian.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-crosstab/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/README.md -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/pom.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/my-first-reporting-project_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/my-first-reporting-project_en.properties -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/my-first-reporting-project_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/my-first-reporting-project_es.properties -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-localization/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/README.md -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/pom.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- 1 | /*C26*/SET SCHEMA PUBLIC 2 | DISCONNECT 3 | -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 13 - Internationalization, sub-reports and cross-tabs using Java/pentaho-reporting-subreport/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/README.md -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/README.md -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/pom.xml -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/resources/interactive_report_1.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/resources/interactive_report_1.prpt -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/resources/interactive_report_2.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/resources/interactive_report_2.prpt -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.log -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.properties -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/resources/sampledata/sampledata.script -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/src/main/java/com/example/PentahoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/src/main/java/com/example/PentahoServlet.java -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/src/main/java/com/example/PentahoServlet2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/src/main/java/com/example/PentahoServlet2.java -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter 14 - Building interactive reports/interactive-report/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 14 - Building interactive reports/interactive-report/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /Chapter 15 - Using reports in Pentaho Business Analytics Platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 15 - Using reports in Pentaho Business Analytics Platform/README.md -------------------------------------------------------------------------------- /Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_dashboards/my first dashboard.cdfde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_dashboards/my first dashboard.cdfde -------------------------------------------------------------------------------- /Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_dashboards/my first dashboard.wcdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_dashboards/my first dashboard.wcdf -------------------------------------------------------------------------------- /Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_reports/my_first_report.prpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 15 - Using reports in Pentaho Business Analytics Platform/my_reports/my_first_report.prpt -------------------------------------------------------------------------------- /Chapter 16 - Using reports in Pentaho Data Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 16 - Using reports in Pentaho Data Integration/README.md -------------------------------------------------------------------------------- /Chapter 16 - Using reports in Pentaho Data Integration/my first transformation.ktr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/Chapter 16 - Using reports in Pentaho Data Integration/my first transformation.ktr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcorti/pentaho-8-reporting-for-java-developers/HEAD/README.md --------------------------------------------------------------------------------