website for operations
diff --git a/operations.php b/operations.php
new file mode 100644
index 0000000..2e3a501
--- /dev/null
+++ b/operations.php
@@ -0,0 +1,19 @@
+<?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(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
+/*******************************************************************************
+ * Copyright (c) 2009
+ * 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:
+ *
+ *******************************************************************************/
+
+ $pageTitle = "Edapt - Operations";
+
+ $html = file_get_contents('pages/operations.html');
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
diff --git a/pages/operations.html b/pages/operations.html
new file mode 100644
index 0000000..e328a07
--- /dev/null
+++ b/pages/operations.html
@@ -0,0 +1,39 @@
+<div id="maincontent">
+<div id="midcolumn">
+<h1>Operations</h1>
+
+<p>
+The left hand side provides a list of operations which we found useful in our examples.
+These operations are organized in groups. This list is by no means complete.
+ We pretty much developed these operations in a demand-driven way.
+ If you have an idea for a new operation, do not hesitate to contact us.
+ In addition, there may still be problems in the operations which are not used very often.
+ Please let us know about problems when applying the operations so that we can fix them.
+</p>
+
+<p>
+Each of the operations is documented.
+The documentation consists of a description of the operation itself, a description of each of its parameters and a description of each of its constraints.
+This information is also directly available in the operation browser by pressing F1 while selecting one of the elements.
+</p>
+
+</div>
+
+<div id="rightcolumn">
+<div class="sideitem">
+<div class="modal">
+<h6>Contents</h6>
+ <ul>
+ <li><a href="org.eclipse.emf.edapt.declaration.creation.StructuralPrimitives.php">Structural Primitives</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.simple.NonStructuralPrimitives.php">Non-structural Primitives</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.generalization.GeneralizationOperations.php">Generalization / Specialization Operations</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.inheritance.InheritanceOperations.php">Inheritance Operations</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.delegation.DelegationOperations.php">Delegation Operations</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.replacement.ReplacementOperations.php">Replacement Operations</a></li>
+ <li><a href="org.eclipse.emf.edapt.declaration.merge.MergeOperations.php">Merge Operations</a></li>
+ </ul>
+</div>
+</div>
+</div>
+
+</div>