-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_sideBars.php
71 lines (66 loc) · 2.66 KB
/
_sideBars.php
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
<?php
$side_announce = <<<EOHTML
<div class="sideitem">
<h6>Announce List</h6>
<ul><li>
<a href="http://dev.eclipse.org/mailman/listinfo/mylyn-announce">Sign up</a> to get notified of Mylyn releases.
</li></ul>
</div>
EOHTML;
$side_vote = <<<EOHTML
<div class="sideitem">
<h6>Support Mylyn</h6>
<table>
<tr>
<td width="5"> </td>
<td>
<a href="http://marketplace.eclipse.org/content/mylyn">
<img src="/mylyn/images/star.png" border="0"/>
Star Mylyn as favorite on Eclipse Marketplace</a>
</td>
</tr>
</table>
</div>
EOHTML;
$side_events = <<<EOHTML
<div class="sideitem">
<h6>Events</h6>
<table>
<tr>
</tr>
</table>
</div>
EOHTML;
$side_dev = <<<EOHTML
<div class="sideitem">
<h6>Developer Links</h6>
<ul>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5Bdiscussion%5D&product=Mylar&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">
Bugzilla discussions</a><br>
</li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=Mylar&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=helpwanted&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">
Bugs marked helpwanted</a><br>
</li>
<li><a href="http://www.eclipse.org/eclipse/development/index.php">Eclipse development</a><br>
</li>
</ul>
</div>
EOHTML;
$side_mylynIs = <<<EOHTML
<div class="sideitem">
<h6>What is Mylyn?</h6>
<ul>
<li>
The Myelin substance accelerates our
thoughts by making neurons much more efficient at conducting electricity.
</li>
<li>The Mylyn name
is a tribute to this substance, as many users claim that our tools increase efficiency
to the point where we can <i>code at the speed of thought</i>.
</li>
<li>
The project was <a href="http://www.eclipse.org/mylyn/rename.php">previously called Mylar</a>.
</li>
</div>
EOHTML;
?>