Hi all,
I'm facing the following situation: I'm working on a small RCP application (I'm using Helios release) where I defined a static Welcome page whose content is specified within an HTML file.
I did the following:
1) added to the plugin.xml the org.eclipse.ui.intro extension where the intro and the introProductBinding are defined:
.....
<extension
point="org.eclipse.ui.intro">
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="net.borioli.homearchive.intro">
</intro>
<introProductBinding
introId="net.borioli.homearchive.intro"
productId="net.borioli.homearchive.HomeArchiveProduct">
</introProductBinding>
</extension>
.....
2) added an org.eclipse.ui.intro.config extension to the same plugin.xml:
<extension
id="intro"
name="intro"
point="org.eclipse.ui.intro.config">
<config
introId="net.borioli.homearchive.intro"
id="net.borioli.homearchive.introConfig"
content="introContent.xml">
<presentation
home-page-id="root">
<implementation>
kind="html"
</implementation>
</presentation>
</config>
</extension>
3) added the following introContent.xml file to the plugin root dir:
<?xml version="1.0" encoding="utf-8" ?>
<introContent>
<page id="root" url = "./static/rootPage.html" />
</introContent>
4) created the rootPage.html file in the plugin 'static' dir (static HTML).
The whole thing doesn't work: the product starts correctly but opens a view named 'Welcome' completely empty, without any logged error (or, at least, I was unable to find any error).
Am I missing something?
After some serious Google digging I didn't figure out any solution....Anyway, I'm pretty sure that the introContent.xml is red correctly, since I got a 'File Not Found' error if I rename or move it.
Oh, I'm working on a win32 machine (XP sp 3).
Thank you in advance for any pointer / solution!
[Updated on: Sun, 13 January 2013 09:35] by Moderator