From f0208a25e0fb1586c482e0387330568d55513173 Mon Sep 17 00:00:00 2001 From: mward Date: Thu, 18 Feb 2010 16:16:40 +0000 Subject: Initial commit by Webmaster --- .project | 11 ++ _projectCommon.php | 57 +++++++++ download.php | 34 ++++++ images/backgroundMain.png | Bin 0 -> 48237 bytes images/backgroundMainEmpty.png | Bin 0 -> 25738 bytes images/buttonDocumentation.png | Bin 0 -> 14014 bytes images/buttonDocumentation_sel.png | Bin 0 -> 13949 bytes images/buttonDownload.png | Bin 0 -> 19543 bytes images/buttonDownload_new.png | Bin 0 -> 19543 bytes images/buttonDownload_sel.png | Bin 0 -> 19433 bytes images/buttonInvolved.png | Bin 0 -> 16292 bytes images/buttonInvolved_sel.png | Bin 0 -> 16251 bytes images/buttonSupport.png | Bin 0 -> 17050 bytes images/buttonSupport_sel.png | Bin 0 -> 17178 bytes index.php | 30 +++++ midcolumn_example.php | 91 ++++++++++++++ pages/_index.html | 91 ++++++++++++++ project-info/executive-summary.html | 0 project-info/home-page-one-liner.html | 1 + project-info/maillist | 1 + project-info/newsgroup | 1 + project-info/project-info.xml | 198 +++++++++++++++++++++++++++++++ project-info/project-page-paragraph.html | 1 + style.css | 190 +++++++++++++++++++++++++++++ 24 files changed, 706 insertions(+) create mode 100644 .project create mode 100755 _projectCommon.php create mode 100644 download.php create mode 100644 images/backgroundMain.png create mode 100644 images/backgroundMainEmpty.png create mode 100644 images/buttonDocumentation.png create mode 100644 images/buttonDocumentation_sel.png create mode 100644 images/buttonDownload.png create mode 100644 images/buttonDownload_new.png create mode 100644 images/buttonDownload_sel.png create mode 100644 images/buttonInvolved.png create mode 100644 images/buttonInvolved_sel.png create mode 100644 images/buttonSupport.png create mode 100644 images/buttonSupport_sel.png create mode 100755 index.php create mode 100644 midcolumn_example.php create mode 100644 pages/_index.html create mode 100755 project-info/executive-summary.html create mode 100755 project-info/home-page-one-liner.html create mode 100755 project-info/maillist create mode 100755 project-info/newsgroup create mode 100755 project-info/project-info.xml create mode 100755 project-info/project-page-paragraph.html create mode 100644 style.css diff --git a/.project b/.project new file mode 100644 index 0000000..74c5526 --- /dev/null +++ b/.project @@ -0,0 +1,11 @@ + + + naming + + + + + + + + diff --git a/_projectCommon.php b/_projectCommon.php new file mode 100755 index 0000000..22e55dc --- /dev/null +++ b/_projectCommon.php @@ -0,0 +1,57 @@ +setLinkList(array()); + + # Break the navigation into sections + $Nav->addNavSeparator("MyProject", "/default"); + $Nav->addCustomNav("Download", "/project/download.php", "_self", 3); + $Nav->addCustomNav("Documentation", "/project/documentation.php", "_blank", 3); + $Nav->addCustomNav("Support", "/project/support.php", "_blank", 3); + $Nav->addCustomNav("Getting Involved", "/project/developers", "_blank", 3); + + # Define keywords, author and title here, or in each PHP page specifically + $pageKeywords = "xtext, dsl, modeling, domain specific language, textual"; + $pageAuthor = "Your name"; + # $pageTitle = "Xtext"; + + + # top navigation bar + # To override and replace the navigation with your own, uncomment the line below. + # $Menu->setMenuItemList(array()); + # $Menu->addMenuItem("Home", "/project", "_self"); + # $Menu->addMenuItem("Download", "/project/download.php", "_self"); + # $Menu->addMenuItem("Documentation", "/project/documentation.php", "_self"); + # $Menu->addMenuItem("Support", "/project/support.php", "_self"); + # $Menu->addMenuItem("Developers", "/project/developers", "_self"); + + # To define additional CSS or other pre-body headers + # $App->AddExtraHtmlHeader(''); + + # To enable occasional Eclipse Foundation Promotion banners on your pages (EclipseCon, etc) + $App->Promotion = TRUE; + + # If you have Google Analytics code, use it here + # $App->SetGoogleAnalyticsTrackingCode("YOUR_CODE"); +?> \ No newline at end of file diff --git a/download.php b/download.php new file mode 100644 index 0000000..a4c9eb1 --- /dev/null +++ b/download.php @@ -0,0 +1,34 @@ +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 = "MyProject - Download"; + $App->AddExtraHtmlHeader(''); + + $html = << +

$pageTitle

+

All downloads are provided under the terms and conditions of the Eclipse Foundation Software User Agreement unless otherwise specified.

+ +

Galileo - Eclipse 3.5

+

Update site: http://download.eclipse.org/myproject/
+ZIP file: file.zip (10 MiB)

+ +

Helios - Eclipse 3.6 (unreleased)

+

Update site: http://download.eclipse.org/myproject/
+ZIP file: file.zip (10 MiB)

+ + + +EOHTML; + # Generate the web page + $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); +?> \ No newline at end of file diff --git a/images/backgroundMain.png b/images/backgroundMain.png new file mode 100644 index 0000000..6a8578c Binary files /dev/null and b/images/backgroundMain.png differ diff --git a/images/backgroundMainEmpty.png b/images/backgroundMainEmpty.png new file mode 100644 index 0000000..9487b21 Binary files /dev/null and b/images/backgroundMainEmpty.png differ diff --git a/images/buttonDocumentation.png b/images/buttonDocumentation.png new file mode 100644 index 0000000..bbfdde0 Binary files /dev/null and b/images/buttonDocumentation.png differ diff --git a/images/buttonDocumentation_sel.png b/images/buttonDocumentation_sel.png new file mode 100644 index 0000000..8affb93 Binary files /dev/null and b/images/buttonDocumentation_sel.png differ diff --git a/images/buttonDownload.png b/images/buttonDownload.png new file mode 100644 index 0000000..e620092 Binary files /dev/null and b/images/buttonDownload.png differ diff --git a/images/buttonDownload_new.png b/images/buttonDownload_new.png new file mode 100644 index 0000000..e620092 Binary files /dev/null and b/images/buttonDownload_new.png differ diff --git a/images/buttonDownload_sel.png b/images/buttonDownload_sel.png new file mode 100644 index 0000000..d3a0330 Binary files /dev/null and b/images/buttonDownload_sel.png differ diff --git a/images/buttonInvolved.png b/images/buttonInvolved.png new file mode 100644 index 0000000..b3e9a82 Binary files /dev/null and b/images/buttonInvolved.png differ diff --git a/images/buttonInvolved_sel.png b/images/buttonInvolved_sel.png new file mode 100644 index 0000000..346a452 Binary files /dev/null and b/images/buttonInvolved_sel.png differ diff --git a/images/buttonSupport.png b/images/buttonSupport.png new file mode 100644 index 0000000..bd36086 Binary files /dev/null and b/images/buttonSupport.png differ diff --git a/images/buttonSupport_sel.png b/images/buttonSupport_sel.png new file mode 100644 index 0000000..a535fe8 Binary files /dev/null and b/images/buttonSupport_sel.png differ diff --git a/index.php b/index.php new file mode 100755 index 0000000..ab12bd1 --- /dev/null +++ b/index.php @@ -0,0 +1,30 @@ +getProjectCommon()); + $App->AddExtraHtmlHeader(''); + + $localVersion = false; + + # Define these here, or in _projectCommon.php for site-wide values + $pageKeywords = "eclipse, project"; + $pageAuthor = "Your name"; + $pageTitle = "My project home"; + + + // # Paste your HTML content between the EOHTML markers! + $html = file_get_contents('pages/_index.html'); + + # Generate the web page + $App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html); + +?> \ No newline at end of file diff --git a/midcolumn_example.php b/midcolumn_example.php new file mode 100644 index 0000000..e8b3466 --- /dev/null +++ b/midcolumn_example.php @@ -0,0 +1,91 @@ +getProjectCommon()); # All on the same line to unclutter the user's desktop' +/******************************************************************************* + * Copyright (c) 2009 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: + * + *******************************************************************************/ + + # + # Begin: page-specific settings. Change these. + $pageTitle = "Nova #midcolumn Template"; + $pageKeywords = "Nova, template, #midcolumn"; + $pageAuthor = "Nathan Gervais"; + + # Paste your HTML content between the EOHTML markers! + ob_start(); + ?> +
+

<H1> tag

+ +

+ This is a <p> tag. +

+ +

+ This is a <p> tag. With a lot of text.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +

+ + +

<h3> tag

+
+
    +
  • This is an unordered list
  • +
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  • +
  • Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
  • +
  • Curabitur vel lorem in turpis adipiscing dictum. Nunc mi est, scelerisque vitae, venenatis et, euismod et, sem. Praesent aliquet mi vel felis. Pellentesque pellentesque convallis ante. Praesent imperdiet velit vitae justo. Nullam quis purus. Aenean neque enim, consequat non, mattis eu, gravida sed, massa.
  • +
+
    +
  1. This is an ordered list
  2. +
  3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  4. +
  5. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
  6. +
  7. Curabitur vel lorem in turpis adipiscing dictum. Nunc mi est, scelerisque vitae, venenatis et, euismod et, sem. Praesent aliquet mi vel felis. Pellentesque pellentesque convallis ante. Praesent imperdiet velit vitae justo. Nullam quis purus. Aenean neque enim, consequat non, mattis eu, gravida sed, massa.
  8. +
+
+ +

<h2> tag

+ + + + + + + + + + + + + +
Tables look like this
DataData
DataData
+ +
+ + +
+
+
Related Links
+ +
+
+
<h6> tag
+ +
+
+ + + generatePage('Nova', $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); +?> \ No newline at end of file diff --git a/pages/_index.html b/pages/_index.html new file mode 100644 index 0000000..b6287c5 --- /dev/null +++ b/pages/_index.html @@ -0,0 +1,91 @@ +
+

Primary Links

+ +
+ +
+

MyProject - use this header describe what it does

+
+ +

MyProject is a framework for development of cool stuff and +more cool stuff. Just describe your project here very briefly. Use the center +section below for a screenshot, a screenshot collage or a screencast.

+ +

This project was just provisioned. You can see the proposal +here + +

+ +
+ + + +
+ +
+ + +
+ +

Some cool feature

+

MyProject has this really cool feature that you describe here in few words, just as a teaser.

+
+ +
+

Another Feature

+

When working with MyProject, great things happen, and one of them is described here.

+
+ +
+

Another Feature

+

When working with MyProject, great things happen, and one of them is described here.

+
+ +
+

User Experience

+

+Experiment with style.css to create columns for text, just the way you want it. This section +is a bit wider and can contain more words, even small logos or graphics to describe a neat feature in more detail.

+
+ +
+

and much more...

+

Read the MyProject documentation and join the discussion at the forum to understand how powerful MyProject is.

+

Want to know more? About This Project +

+ +
+ +
+ +
+

Current Status

+

Update this section occasionally to let your community know what's new and exciting with your project....

+
+ +
+

New and Noteworthy

+

... or a link to your new and noteworthy.

+
+ +
+

Headlines on the web

+

Project headlines...

+
+ +
+

Another announcement

+

MyProject is pleased to announce...

+
+
\ No newline at end of file diff --git a/project-info/executive-summary.html b/project-info/executive-summary.html new file mode 100755 index 0000000..e69de29 diff --git a/project-info/home-page-one-liner.html b/project-info/home-page-one-liner.html new file mode 100755 index 0000000..e9b2050 --- /dev/null +++ b/project-info/home-page-one-liner.html @@ -0,0 +1 @@ +Phoenix \ No newline at end of file diff --git a/project-info/maillist b/project-info/maillist new file mode 100755 index 0000000..c191d00 --- /dev/null +++ b/project-info/maillist @@ -0,0 +1 @@ +::epf-dev::Mailing list for the Eclipse Process Framework Project. \ No newline at end of file diff --git a/project-info/newsgroup b/project-info/newsgroup new file mode 100755 index 0000000..4cb94f6 --- /dev/null +++ b/project-info/newsgroup @@ -0,0 +1 @@ +::eclipse.technology.epf::The Eclipse Process Framework (EPF) aims at producing a customizable software process enginering framework, with exemplary process content and tools, supporting a broad variety of project types and development styles. Want to know more? See the EPF home page. \ No newline at end of file diff --git a/project-info/project-info.xml b/project-info/project-info.xml new file mode 100755 index 0000000..c3bf39f --- /dev/null +++ b/project-info/project-info.xml @@ -0,0 +1,198 @@ + + + + + + + Phoenix Project + + + Phoenix + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/project-info/project-page-paragraph.html b/project-info/project-page-paragraph.html new file mode 100755 index 0000000..184c8df --- /dev/null +++ b/project-info/project-page-paragraph.html @@ -0,0 +1 @@ +The purpose of this project is to improve the usability of the eclipse.org site, improving productivity and reducing duplication of effort across the eclipse user community. \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..edf76c9 --- /dev/null +++ b/style.css @@ -0,0 +1,190 @@ +@CHARSET "UTF-8"; +#novaContent { + background: url("images/backgroundMain.png") no-repeat; + padding-top: 210px; +} + +#midcolumn { + width: 640px; + padding: 0 10px 10px 10px; +} + +#rightcolumn { + width: 260px; +} + + +h3 { + clear: both; +} + +h7 { + font-weight: bold; + padding: 5px; +} + +a strong { + text-decoration: underline; +} + + +#novaContent { + background: url("images/backgroundMain.png") no-repeat white; + padding-top: 170px; +} + +#introText p.left { + width: 48%; + float: left; +} + +#introText p.right { + width: 48%; + float: right; +} + +#feature_1 { + float: left; + width: 30%; + margin-right: 3%; +} + +#feature_2 { + float: left; + width: 30%; + margin-right: 3% +} + +#feature_3 { + float: left; + width: 30%; +} + +#feature_4 { + clear: both; + float: left; + width: 63%; + margin-right: 3%; +} + +#feature_more { + float: left; + width: 30%; +} + +#bigbuttons { + position: relative; + left: 420px; + top: -170px; +} +#bigbuttons h3{ + visibility: hidden; +} + +#bigbuttons a { +} + +#bigbuttons ul li { + display:block; + list-style-type:none; + background-color: red; + padding: 0; + margin: 0; +} + +#bigbuttons a:hover { + text-decoration: none; +} + +#bigbuttons a { + display: block; + height:77px; width:250px; + padding: 0; + margin: 20px; + text-indent: -9000px; + position: absolute; +} + +#buttonDownload { + background:transparent url("images/buttonDownload.png") no-repeat 0 0; + top: 0px; + left: 0px; +} + +#buttonDownload:hover { + background:transparent url("images/buttonDownload_sel.png") no-repeat 0 0; +} + + +#buttonDocumentation { + background:transparent url("images/buttonDocumentation.png") no-repeat 0 0; + top: 87px; + left: 0px; +} + +#buttonDocumentation:hover { + background:transparent url("images/buttonDocumentation_sel.png") no-repeat 0 0; +} + +#buttonSupport { + background:transparent url("images/buttonSupport.png") no-repeat 0 0; + top: 0px; + left: 280px; +} + +#buttonSupport:hover { + background:transparent url("images/buttonSupport_sel.png") no-repeat 0 0; +} + +#buttonInvolved { + background:transparent url("images/buttonInvolved.png") no-repeat 0 0; + top: 87px; + left: 280px; +} + +#buttonInvolved:hover { + background:transparent url("images/buttonInvolved_sel.png") no-repeat 0 0; +} + +#bigbuttons a * { + visibility: hidden; +} + +#headlines { +} + +#headlines ul li { + margin: 0 0; + list-style-type: none; + list-style-image: none; +} + + +#headlines div.title { + display: inline; + margin-right: 0.5em; +} + +#headlines div.meta { + display: inline; + color: #444444; + font-size: smaller; +} + +#headlines div.item { + display: block; + } + +#screencast { + margin-bottom: 10px; +} + +#newAndNoteworthy a { + display: block; + width:218px; + height:51px; + padding: 0; + text-indent: -9000px; + background:transparent url("images/bannerNewAndNoteworthy08M4.png") no-repeat 0 0; + margin-top: 10px; +} \ No newline at end of file -- cgit v1.2.3