...
A zip file containing the Pentaho Design Studio for the Windows platform various platforms is available from the Pentaho Clients download site Sourceforge website. The full design studio download contains Eclipse 3.2 bundled with the all the Pentaho plug-ins needed to run both the action sequence editor as well as the Report Design Wizard. Download the pentaho-design-studio_X.X.X.X.zippds-ce* file, and unzip the file to your location of choice, it will create a directory named "pentaho-design-studio" and extract all its files there. No other setup is required. To run the platform, execute PentahoDesignStudio.exe .
...
or PentahoDesignStudio.sh.
Installing the Plug-ins
A zip file containing the Pentaho Action Sequence Editor plug-in for Eclipse 3.2 on all the platforms is available for download from the Pentaho Clients download site. Download the org.pentaho.designstudio.editors.actionsequence_X.X.X.X.zip and unzip the file into the top level of your Eclipse installation. The zip will extract the files into your Eclipse plugins directory. There will already be many plugins in that directory, both as JAR files and subdirectories. You'll also need the core, org.pentaho.designstudio.editors.core_X.X.X.XX-0.zip and the reports wizard org.pentaho.designstudio.editors.reportwizard_X.X.X.XXX.0 There is no Eclipse Update Manager method to install this plug-in as yet.
...
At this point, you have either installed the standalone Design Studio or installed the Design Studio plug-in into Eclipse. If you haven't have already done so, you should also install and run the Pentaho BI Server and test the samples in samplesbi-developers/getting-started to insure your BI Server is functional. Also try one or two reports in samples/steel-wheels/reports within your environment and with your browser. For more information about installing and configuring the Pentaho BI Server refer to Getting Started with the BI Platform
...
- Select File->New->Project.
- Choose General->Project from the New Project wizard
- If you are using Eclipse prior to 3.2, select Simple project.
- Press the Next> button.
- Enter Pentaho Solutions as the project name. Although any name is fine, this document will refer to Pentaho Solutions
- Uncheck the Use default check box
- Browse to the pentaho-solutions directory. This will be {INSTALL_DIR}/biserver-ce/pentaho-solutions*.
- Select Finish.
You are now have a Design Studio project that is set up to edit and test your samples solution.
...
You should now see your Pentaho Solutions project displayed in the tree on the left side of the Design Studio. If you expand the solution folder you'll see plenty of files. These are the files that make up your solution and are managed within the Design Studio. Let's take a look at one to get a feel of what the Design Studio can do for us. Go ahead and in the left hand tree, open the Pentaho Solutions/samplesbi-developers/getting-started folder. Double-click on the HelloWorld.xaction file and the Action Sequence editor will open in the edit pane.
...
Info | ||
---|---|---|
| ||
Currently, the Design Studio uses the Pentaho BI Server to execute Action Sequences. When pressing the Run button, the Design Studio submits an HTTP request to the server and displays the result in the built in browser. The built in browser is usually the default browser on your computer. This is exactly the same as if you used your browser to navigate the PCI samples and clicked on that Action Sequence. It is why you are prompted to save changes to your Action Sequence when going to the test tab. And, it is why you see a URL next to the Run button. If prompted for a user id and password, use the credentials for your BI Server. |
- Make sure that the Pentaho Server URL points to your running BI Server.
- If it's on your local machine, example is http://localhost:8080/pentaho
- Press the Test Server button. If everything is set up properly, the Pentaho Demo home page should appear.
- Now select the Run button to submit an HTTP request to the BI Server to execute the current action sequence. In the embedded browser window you should see "Hello World. Greetings from the Pentaho BI Platform."
...
Info | ||
---|---|---|
| ||
The original message reads %quote. This notation is used to internationalize action sequences. There are You can create HelloWorld_xx.properties files in the same directory as the action sequence we're currently modifying (the xx being two-letter language abbreviations). Each file has should contain the strings used by this action sequence, translated into the appropriate language. Within Once created, within the Design Studio , you can double click the HelloWorld_en.properties file and find the string assigned to quote and change it to read I did it!. For any strings starting with %, the server will first look for a local properties file, walk the path back to the top of the solution tree looking for the correct .properties file, and finally, use the text it as is. |
...