This repository was archived by the owner on Apr 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproject.js
56 lines (48 loc) · 2.25 KB
/
project.js
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
const swtScriptBase = new URL(".", document.currentScript.src).href;
home = `${swtScriptBase}index.html`;
const swtGitHub = 'https://github.com/eclipse-platform/eclipse.platform.swt';
defaultBreadcrumb = toElements(`
<a href="https://eclipseide.org/">Home</a>
<a href="https://eclipseide.org/projects/">Projects</a>
<a href="../eclipse/index.html">Eclipse</a>
`);
defaultNav = toElements(`
<a class="fa-download" target="_out" href="https://download.eclipse.org/modeling/emf/emf/builds/"
title="Downloads">
Downloads<p>Update Sites</p>
</a>
<a class="fa-github" target="_out" href="https://github.com/eclipse-emf/"
title="GitHub: Organization">
GitHub<p>Organization</p>
</a>
`);
defaultAside = toElements(`
<a href="${swtScriptBase}index.html" class="separator"><i class='fa fa-cube'></i> Home</a>
<a href="${swtScriptBase}widgets/index.html">Widgets</a>
<a href="${swtScriptBase}snippets/index.html">Snippets</a>
<a href="${swtScriptBase}examples.html">Examples</a>
<a href="${swtScriptBase}faq.html">FAQ</a>
<a href="${swtScriptBase}tools.html">Tools</a>
<a href="${swtScriptBase}Javadoc.html">Javadoc</a>
<a href="${swtScriptBase}docs.html">Documentation</a>
<a href="${swtScriptBase}community.html">Community</a>
<a href="${swtScriptBase}index.html#contact">Contact Us</a>
<a target="_out" href="${swtGitHub}" class="separator"><i class='fa fa-github'></i> GitHub</a>
<a target="_out" href="${swtGitHub}/discussions">Ask a Question</a>
<a target="_out" href="${swtGitHub}/issues">Report a Problem</a>
<a target="_out" href="${swtGitHub}/blob/master/CONTRIBUTING.md">Contribute</a>
`);
/*
$Nav->addNavSeparator("SWT Home", "/swt/");
$Nav->addCustomNav("Widgets", "/swt/widgets/", "_self", 3);
$Nav->addCustomNav("Snippets", "/swt/snippets/", "_self", 3);
$Nav->addCustomNav("Examples", "/swt/examples.php", "_self", 3);
$Nav->addCustomNav("FAQ", "/swt/faq.php", "_self", 3);
$Nav->addCustomNav("Tools", "/swt/tools.php", "_self", 3);
$Nav->addCustomNav("Javadoc", "/swt/javadoc.php", "_self", 3);
$Nav->addCustomNav("Documentation", "/swt/docs.php", "_self", 3);
$Nav->addCustomNav("Community", "/swt/community.php", "_self", 3);
$Nav->addCustomNav("Bugs", "/swt/bugs.php", "_self", 3);
$Nav->addCustomNav("Contact Us", "/swt/#contact", "_self", 3);
*/
defaultNav = toElements('');