blob: 867e453006b0ea4f4b489d96521b462876cfbc48 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2010 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
*******************************************************************************/
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(); include($App->getProjectCommon());
$localVersion = false;
$pageTitle = "Eclipse BPMN2 Modeler";
// # Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="bigbuttons">
<h3>Primary Links</h3>
<ul>
<li><a id="buttonDownload" href="downloads.php" title="Download">
BPMN2 Modeler Software Install Site</a></li>
<li><a id="buttonDocumentation" href="documentation.php" title="Documentation">
Tutorials, Examples, Videos, Reference Documentation</a></li>
<li><a id="buttonSupport" href="support.php" title="Support">
Bug Tracker, Newsgroup</a></li>
<li><a id="buttonInvolved" href="developers.php" title="Getting Involved">
CVS, Workspace Setup, Wiki, Committers</a></li>
</ul>
</div>
<div id="midcolumn">
<div id="introText">
<h1>BPMN2 Modeler</h1>
<p>The mission of the <a
href="http://www.eclipse.org/projects/project_summary.php?projectid=soa">SOA
Project</a> is to build frameworks and extensible tools that enable the
design, configuration, assembly, deployment, monitoring, and management
of software designed around a Service Oriented Architecture. The project
is guided by the values of transparency, extensibility, vendor
neutrality, community collaboration, agile development, and
standards-based innovation.</p>
<p>There has been a lot of interest recently in the BPMN 2.0 specification, and many feel that what UML is to object modeling,
BPMN 2.0 will be to business process modeling and will become the de facto standard.
<p>
The BPMN2 Modeler is a graphical modeling tool which
allows creation and editing of BPMN ( <a href="http://www.bpmn.org/">Business
Process Modeling Notation</a> ) diagrams. The tool is built on
<a href="http://www.eclipse.org/graphiti">Eclipse Graphiti</a> and uses the
<a href="http://www.eclipse.org/modeling/mdt/?project=bpmn2">BPMN 2.0 EMF meta model</a> currently being developed
within the Eclipse <a href="http://www.eclipse.org/modeling/mdt/">Model
Development Tools</a> (MDT) project. This meta model is compatible with the
<a href="http://www.omg.org/spec/BPMN/2.0/PDF">BPMN 2.0 specification</a> proposed by the
<a href="http://www.osoa.org/display/Main/Home">Object Management Group</a>.
</p>
<img class="displayed" src="/bpmn2-modeler/images/snapshots.gif" width="632" alt="BPMN2 Modeler Snapshots" border="0"/>
</div>
</div>
<div id="rightcolumn">
<div>
<h3>Current Status</h3>
<h4>Service Release 0.2.1 is now available</h4>
<p>
Version 0.2.1 has been released as of January 12, 2013.
The builds will be available here for
<a href="http://download.eclipse.org/bpmn2-modeler/site/0.2.1/">Eclipse indigo (3.7) and Juno (4.2)</a>
and
<a href="http://download.eclipse.org/bpmn2-modeler/site-helios/0.2.1/">helios (3.6)</a>.
See the <a href="noteworthy.php">New &amp; Noteworthy</a> page for what's new.
</p>
</div>
<div>
<h3>In The News</h3>
<h4>Savara</h4>
<p>The BPMN2 Modeler will be part of the community release of <a href="http://www.jboss.org/savara">JBoss Savara</a>.
For more information, please read the <a href="http://docs.jboss.org/savara/releases/2.1.x/eclipseuserguide/html/sid-19693843.html">Savara user documentation</a>
</p>
<h4>jBPM 5.3</h4>
<p>The BPMN2 Modeler will be part of the community release of the <a href="http://www.jboss.org/jbpm">JBoss jBPM Suite</a>.
For more information, please read the <a href="http://docs.jboss.org/jbpm/v5.3/userguide/ch.eclipse-bpmn-plugin.html">jBPM user documentation</a>
</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>