blob: 30a280f09a6693cd605920b426e41fdfbcf041cd [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>BPMN2 Modeler on Luna</h4>
<p>
Version 1.1.0 is a <b>big</b> release that adds several new usability enhancements, features and bug fixes.
This is also the first version that will be included in the Luna simultaneous release.
</p>
<p>
Although the official release date is June 25, early version of the build will be available
<a href="http://download.eclipse.org/bpmn2-modeler/updates/luna/1.1.0/">here</a>.
See the <a href="whatsnew/whatsnew-1.1.0.php">New &amp; Noteworthy</a> page for what's new.
</p>
<h4>BPMN2 Modeler has graduated!</h4>
<img align="right" width="70" src="images/egg-graduation.png" border="0" />
<p>
The Graduation and 1.0 Release Review has concluded and version 1.0 is available as of November 6, 2013.
The build is available
<a href="http://download.eclipse.org/bpmn2-modeler/updates/kepler/1.0/">here for Kepler (4.3)</a>.
See the <a href="whatsnew/whatsnew-1.0.php">New &amp; Noteworthy</a> page for what's new.
</p>
<p>
We will be announcing a service release shortly.
</p>
</div>
<div>
<h3>In The News</h3>
<h4>Bug Hunt Contest Announced!</h4>
<p>
The push for <a href="http://en.wikipedia.org/wiki/Bugzilla#Zarro_Boogs">"zarro boogs found"</a> is on and we're counting on you,
the user community, to help us find the last few remaining bugs. Of course, you will be rewarded for your efforts in more ways
than just the simple satisfaction of knowing you have contributed to the project to help make it the best BPMN 2.0
design tool available.
Please see the contest rules on <a href="http://zarroboogsfound.com">Zarroboogsfound.com</a> for details.
</p>
<p>
Happy hug bunting! <img src="/bpmn2-modeler/images/bigsmile.png" width="24" height="24" border="0"/>
</p>
<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>.
Check out this very cool <a href="http://vimeo.com/53007939">demo video</a> by Gary Brown.
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);
?>