Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'mdt/sbvr/index.php')
-rw-r--r--mdt/sbvr/index.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/mdt/sbvr/index.php b/mdt/sbvr/index.php
deleted file mode 100644
index 22d7ff16..00000000
--- a/mdt/sbvr/index.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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'
-
- #*****************************************************************************
- #
- # index.php
- #
- # Author: Dave Carlson
- # Date: $Id: $
- #
- # Description: SBVR project home page.
- #
- #
- #****************************************************************************
-
- #
- # Begin: page-specific settings. Change these.
- $pageTitle = "SBVR";
- $pageKeywords = "Eclipse, EMF, SBVR, UML";
- $pageAuthor = "Dave Carlson";
-
- # Add page-specific Nav bars here
- # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
- # $Nav->addNavSeparator("My Page Links", "downloads.php");
- # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
- # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
-
- # End: page-specific settings
- #
-
- # Paste your HTML content between the EOHTML markers!
- $html = <<<EOHTML
-
- <div id="midcolumn">
- This project was just provisioned, so there is nothing to see here.
- </div>
-
-EOHTML;
-
-
- # Generate the web page
- $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>

Back to the top