| <?php |
| $Nav->setLinkList(null); |
| |
| $PR = "modeling/tmf"; |
| $projectName = "TMF"; |
| $defaultProj = "/xtext"; |
| |
| $isEMFserver = (preg_match("/^emf(?:\.torolab\.ibm\.com)$/", $_SERVER["SERVER_NAME"])); |
| $isBuildServer = (preg_match("/^(emft|modeling|build)\.eclipse\.org$/", $_SERVER["SERVER_NAME"])) || $isEMFserver; |
| $isBuildDotEclipseServer = $_SERVER["SERVER_NAME"] == "build.eclipse.org"; |
| $isWWWserver = (preg_match("/^(?:www.|)eclipse.org$/", $_SERVER["SERVER_NAME"])); |
| $isEclipseCluster = (preg_match("/^(?:www.||download.|download1.|build.)eclipse.org$/", $_SERVER["SERVER_NAME"])); |
| $debug = (isset ($_GET["debug"]) && preg_match("/^\d+$/", $_GET["debug"]) ? $_GET["debug"] : -1); |
| $writableRoot = ($isBuildServer ? $_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/" : "/home/data/httpd/writable/www.eclipse.org/"); |
| $writableBuildRoot = $isBuildDotEclipseServer ? "/opt/public/modeling" : "/home/www-data"; |
| |
| $rooturl = "http://" . $_SERVER["HTTP_HOST"] . "/$PR"; |
| $downurl = ($isBuildServer ? "" : "http://www.eclipse.org"); |
| $bugurl = "https://bugs.eclipse.org"; |
| |
| if (isset ($_GET["skin"]) && preg_match("/^(Blue|EclipseStandard|Industrial|Lazarus|Miasma|Modern|OldStyle|Phoenix|PhoenixTest|PlainText|Nova)$/", $_GET["skin"], $regs)) |
| { |
| $theme = $regs[1]; |
| } |
| else |
| { |
| $theme = "solstice"; |
| } |
| |
| /* projects/components in cvs */ |
| /* "proj" => "cvsname" */ |
| $cvsprojs = array (); /* should always be empty */ |
| |
| /* sub-projects/components in cvs for projects/components above (if any) */ |
| /* "cvsname" => array("shortname" => "cvsname") */ |
| $cvscoms = array(); |
| |
| $projects = array( |
| "Xtext" => "xtext", |
| ); |
| |
| $bugcoms = array_flip($projects); |
| $bugcoms = preg_replace("/ /", "%20", $bugcoms); |
| |
| $extraprojects = array(); //components with only downloads, no info yet, "prettyname" => "directory" |
| $nodownloads = array(); //components with only information, no downloads, or no builds available yet, "projectkey" |
| $nonewsgroup = array(); //components without newsgroup |
| $nomailinglist = array(); //components without mailinglist |
| $incubating = array(); // ALL components are incubating |
| $hasmoved = array(); // components which have moved, and to where |
| $nomenclature = "Component"; //are we dealing with "components" or "projects"? |
| |
| include_once $_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/scripts.php"; |
| |
| $regs = null; |
| $proj = (isset($_GET["project"]) && preg_match("/^(" . join("|", $projects) . ")$/", $_GET["project"], $regs) ? $regs[1] : getProjectFromPath($PR)); |
| $projct= preg_replace("#^/#", "", $proj); |
| |
| $buildtypes = array( |
| "R" => "Release", |
| "S" => "Stable", |
| "I" => "Integration", |
| "M" => "Maintenance", |
| "N" => "Nightly" |
| ); |
| |
| $Nav->addCustomNav("About This Project", "/projects/project_summary.php?projectid=" . str_replace("/", ".", $PR), "", 1); |
| $Nav->addNavSeparator($projectName, "$rooturl/"); |
| foreach (array_keys(array_diff($projects, $extraprojects)) as $z) |
| { |
| if (in_array($projects[$z], $nodownloads)) |
| { |
| $Nav->addCustomNav("<acronym title='$z has no downloads yet.'><i style='color:gray'>" . $z . "</i></acronym>", "$rooturl/?project=$projects[$z]", "_self", 2); |
| |
| } |
| else if (isset($hasmoved[$projects[$z]])) |
| { |
| $Nav->addCustomNav("<acronym title='$z has graduated to " . strtoupper($hasmoved[$projects[$z]]) . ".'><i style='color:silver'>" . $z . "</i></acronym>", "http://www.eclipse.org/modeling/" . $hasmoved[$projects[$z]] . "/?project=" . $projects[$z], "_self", 2); |
| } |
| else |
| { |
| $Nav->addCustomNav($z, "$rooturl/?project=$projects[$z]", "_self", 2); |
| } |
| } |
| |
| $Nav->addNavSeparator("Downloads", "$downurl/$PR/downloads/?project=$proj"); |
| $Nav->addCustomNav("eclipse DSL Package", "https://www.eclipse.org/downloads/packages/eclipse-ide-java-and-dsl-developers/lunasr1a", "_self", 2); |
| $Nav->addCustomNav("Update Manager", "$rooturl/updates/", "_self", 2); |
| |
| $Nav->addNavSeparator("Documentation", "https://wiki.eclipse.org/Xtext"); |
| $Nav->addCustomNav("Javadoc", "$downurl/$PR/javadoc", "_self", 2); |
| $Nav->addCustomNav("Plan", "https://projects.eclipse.org/projects/modeling.tmf.xtext", "_self", 2); |
| $Nav->addCustomNav("Release Notes", "https://projects.eclipse.org/projects/modeling.tmf.xtext/current-release", "_self", 2); |
| |
| $Nav->addNavSeparator("Community", "http://wiki.eclipse.org/Modeling_Corner"); |
| $collist = "&columnlist=changeddate%2Cbug_severity%2Cpriority%2Crep_platform%2Cbug_status%2Cproduct%2Ccomponent%2Cversion%2Ctarget_milestone%2short_desc"; |
| $Nav->addCustomNav("Open Bugs", "$bugurl/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=" . $projectName . (isset ($bugcoms[$proj]) ? "&component=$bugcoms[$proj]" : "") . "&query_format=advanced&order=bug_status%2Ctarget_milestone%2Cbug_id$collist", "_self", 2); |
| $Nav->addCustomNav("Submit A Bug", "$bugurl/bugs/enter_bug.cgi?product=" . $projectName . (isset ($bugcoms[$proj]) ? "&component=$bugcoms[$proj]" : ""), "_self", 2); |
| $Nav->addCustomNav("Contributors", "https://projects.eclipse.org/projects/modeling.tmf.xtext/who", "_self", 2); |
| unset ($bugcoms); |
| |
| $App->AddExtraHtmlHeader("<link rel=\"stylesheet\" type=\"text/css\" href=\"/modeling/includes/common.css\"/>\n"); |
| addGoogleAnalyticsTrackingCodeToHeader(); |
| $App->Promotion = TRUE; # set true to enable current eclipse.org site-wide promo |
| ?> |