-
Notifications
You must be signed in to change notification settings - Fork 6
/
platformissues.php
34 lines (26 loc) · 1.14 KB
/
platformissues.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
<?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());
$pageTitle = "Known Platform Issues";
ob_start();
?>
<div id="midcolumn">
<h1>Known Platform Issues</h1>
<p>If you have issues you believe should go in here, please let us know on
the <a href="http://dev.eclipse.org/mailman/listinfo/platform-swt-dev">SWT developer mailing list</a>.</p>
<p><b>Linux</b></p>
<ul>
<li><a href="#copyandpaste">Why am I having problems with cut and paste?</a></li>
</ul>
<p></p>
<hr>
<p></p>
<dl>
<dt><strong><a name="copyandpaste"> Q: Why am I having problems with cut and paste?</a></strong></dt>
<dd>A: Running Klipper in the background can interfere with copy/paste - try closing the Klipper app.
</dd>
</dl>
</div>
<?php
$html = ob_get_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>