[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[soa-iwg] Getting started
|
Don, find attached a new version of the getting started page. I includes the accompanying text for the webinar. Webinar itself is still pending I think. On the home page I would also suggest to change the text under the Getting Started heading from "Quick install instructions" to "First steps" or something similar.
Zsolt
|
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# index.php
#
# Author: Ian Skerrett
# Date: 2008-06-18
#
# Description: Pulsar Support Page
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "SOA Initiative Getting Started";
$pageKeywords = "eclipse soa, soa, working group";
$pageAuthor = "Eclipse Foundation, Inc.";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
# $Nav->addCustomNav("My Link", "mypage.php", "_self");
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
# End: page-specific settings
#
# Place your html content in a file called content/en_pagename.php
ob_start();
?>
<div id="midcolumn">
<h1>Getting Started</h1>
<ol>
<li>
<h2>First Steps with the Eclipse SOA Platform for Java and SOA Developers</h2>
<p>This webinar will guide you through the process of using the Eclipse SOA Platform for Java and SOA Developers. You will learn how to generate service provider and consumer from an existing WSDL using the Swordfish tooling. You will also learn how to setup a suitable target platform and execute these particpants.</p>
</li>
</ol>
</div>
<?
$html = ob_get_clean();
# Generate the web page
$App->Promotion = TRUE;
$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>