-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
135 lines (129 loc) · 5.31 KB
/
Copy pathindex.php
File metadata and controls
135 lines (129 loc) · 5.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?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'
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Mylyn Open Source Project";
$pageKeywords = "Mylyn, Eclipse, Tasks, Bugs, Focus, UI";
$pageAuthor = "Mik Kersten";
# 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
#
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<div class="row" >
<div class="col-sm-24 col-md-24 col-lg-24">
Mylyn is the task and application lifecycle management (ALM) framework for Eclipse.<br><br>It provides:
<ul>
<li><b>The revolutionary task-focused interface</b>
<br><i>Realigns the IDE around tasks so that you see only the code that's relevant</i>
<br>
<li><b>A task management tool for developers</b>
<br><i> Mylyn is a IDE tool for ALM</i>
<br>
</li>
<li><b>A broad ecosystem of Agile and ALM integrations</b>
<br><i>Dozens of extensions integrate Mylyn with ALM and developer collaboration tools</i>
<br>
</li>
</ul>
Mylyn's <a href="http://en.wikipedia.org/wiki/Task-focused_interface">task-focused interface
<img border="0" src="/mylyn/images/external-link.png"></a>
reduces information overload and makes multitasking easy.
Mylyn makes tasks a first class part of the IDE, integrates rich and offline editing for
ALM tools, and monitors your programming activity to create a "task context" that
focuses your workspace and automatically links all relevant artifacts to the task-at-hand.
This puts the information you need at your fingertips and improves productivity by reducing
information overload, facilitating multitasking and easing the sharing of expertise.
<br>
<table border="0" cellpadding="5">
<tr height=9>
<tr>
<td width=20></td>
<td><a href="/mylyn/downloads"><img border=0 src="images/downloads.gif"></a></td>
<td>
<table border="0" cellpadding="0">
<tr>
<td><font size=+1><a href="/mylyn/downloads">Downloads</a></font></td>
</tr>
<tr>
<td>
Get the latest and greatest Mylyn release.
<!-- <b><a href="/mylyn/new"><img src="images/star.png"/> What's new</a></b>? -->
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width=20></td>
<td><a href="https://github.com/eclipse-mylyn"><img border=0 src="images/community.jpg"></a></td>
<td>
<table border="0" cellpadding="0">
<tr>
<td><font size=+1><a href="https://github.com/eclipse-mylyn">Support</a></font></td>
</tr>
<tr>
<td>Find support and interact with users and developers.</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width=20></td>
<td><a href="/mylyn/start"><img border=0 src="images/reference.png"></a></td>
<td>
<table border="0" cellpadding="0">
<tr>
<td><font size=+1><a href="/mylyn/start">Get Started</a></font></td>
</tr>
<tr>
<td>Resources for new users, links to tutorials and articles.</td>
</tr>
</table>
</td>
</tr>
<tr height="10"></tr>
</table>
</div>
</div>
</div>
<div id="rightcolumn">
<p align="left">
<a href="http://marketplace.eclipse.org/content/mylyn">
<img src="/mylyn/images/star.png" border="0"/>
Favorite Mylyn on Marketplace</a>
</p>
<p align="left">
<a href="images/mylyn-3.1-screenshot.png"><img alt="Mylyn 3.1 Screenshot" border=0 src="images/tasklist-splash-3.1.png" class="img-responsive"></a>
<br>
<div style="margin-top:0px;">
<iframe width="260" height="160" src="http://www.youtube.com/embed/l2-kZGe_FS8" frameborder="0" allowfullscreen></iframe>
</div>
<br>
</p>
</div>
</div>
EOHTML;
# EclipseCon banner
$App->Promotion = TRUE;
# Generate the web page
$Theme = $App->getThemeClass();
$Theme = $App->getThemeClass($theme);
$Theme->setNavPosition('left');
$Theme->setNav($Nav);
$Theme->setMenu($Menu);
$Theme->setPageAuthor($pageAuthor);
$Theme->setPageKeywords($pageKeywords);
$Theme->setPageTitle($pageTitle);
$Theme->setHtml($html);
$Theme->setBreadcrumb($Breadcrumb);
$Theme->generatePage();