This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
42 lines (38 loc) · 1.93 KB
/
sidebar.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
<?php
$sidebar = <<<EOHTML
<div class="sideitem">
<h6>Contributors</h6>
<div class="modal">
<ul>
<li><a href="https://www.sap.com" target="_blank">SAP</a></li>
<li><a href="https://www.ibm.com" target="_blank">IBM</a></li>
</ul>
</div>
</div>
<div class="sideitem">
<h6>Previous Talks</h6>
<div class="modal">
<ul>
<li><a href="http://www.slideshare.net/AJohnson1/extending-eclipse-memory-analyzer">Eclipse Summit Europe</a> Ludwigsburg, 4 November, '10</li>
<li><a href="http://www.slideshare.net/AJohnson1/practical-lessons-in-memory-analysis">TheServerSide Java Symposium - Europe</a>, Prague, October '09</li>
<li><a href="http://www.oracle.com/technetwork/java/j1sessn-jsp-156291.html">JavaOne</a>, San Francisco, June '09</li>
<li><a href="http://www.slideshare.net/nayashkova/eclipse-memory-analyzer-presentation-763314">Eclipse Summit Europe</a> Ludwigsburg, 20 November, '08</li>
<li><a href="http://www.java-forum-stuttgart.de">Java Forum Stuttgart</a>, July '08</li>
<li><a href="http://www.oracle.com/technetwork/java/j1sessn-jsp-156539.html">JavaOne</a>, San Francisco, May '08</li>
<li><a href="http://www.andrena.de/Entwicklertag/2008/Vortraege/Memory-Analyzer.html">Andrena Entwicklertag</a>, May '08</li>
<li><a href="http://entwickler.com/konferenzen/planer/show_details.php?konferenzid=59&sessionid=7774">JAX</a>, April '08</li>
<li><a href="http://www.eclipsecon.org/2008/index.php?page=sub/&id=321">EclipseCon</a>, March '08 (Slides)</li>
<li><a href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00ca7f0d-8ee6-2910-5d82-fc3e8dd25300">JavaOne</a>, San Francisco, May '07</li>
</ul>
</div>
</div>
<div class="sideitem">
<h6>Newsgroup</h6>
<ul>
<li>Got questions? Need advice? Miss a feature?
<a href="https://www.eclipse.org/forums/eclipse.memory-analyzer">Newsgroup</a>
</li>
</ul>
</div>
EOHTML
?>