forked from eclipse-platform/www.eclipse.org-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.js
More file actions
920 lines (840 loc) · 26.4 KB
/
project.js
File metadata and controls
920 lines (840 loc) · 26.4 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
var eclipse_org_common = { "settings": { "cookies_class": { "name": "eclipse_settings", "enabled": 1 } } };
window.onscroll = function() {
const footer = document.querySelector("#footer>div>a");
footer.style.display = document.documentElement.scrollTop > 100 ? 'inline' : 'none';
};
const scriptBase = new URL(".", document.currentScript.src).href
const apiGitHub = 'https://api.github.com/repos/eclipse-platform/www.eclipse.org-eclipse/contents/';
const markdownBase = `${scriptBase}markdown/?file=`;
const selfHostedMarkdownBase = `${scriptBase}markdown/?f=`;
const newsBase = `${scriptBase}news/news.html?file=`;
let meta = toElements(`
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://eclipseide.org/favicon.ico"/>
`);
let defaultHeader = toElements(`
<a href="https://www.eclipse.org/downloads/packages/">Eclipse IDE</a>
<a href="https://eclipseide.org/working-group/">Working Group</a>
<a href="https://eclipseide.org/release/noteworthy/">New & Noteworthy</a>
<a href="https://marketplace.eclipse.org/">Marketplace</a>
`);
let defaultBreadcrumb = toElements(`
<a href="https://eclipseide.org/">Home</a>
<a href="https://eclipseide.org/projects/">Projects</a>
`);
let defaultNav = toElements(`
<a class="fa-download" href="https://download.eclipse.org/eclipse/downloads/"
title="Download: Distribution Sites">
Download<p>Distribution Sites</p>
</a>
<a class="fa-book" href="https://help.eclipse.org/" title="Documentation: help.eclipse.org">
Documentation<p>help.eclipse.org</p>
</a>
<a class="fa-users" href="${markdownBase}eclipse-ide/.github/main/CONTRIBUTING.md"
title="Contribution: Environment Setup">
Contribution<p>Environment Setup</p>
</a>
<a class="fa-support" href="https://github.com/eclipse-platform/.github/discussions"
title="Support: Discussions">
Support<p>Discussions</p>
</a>
<a class="fa-newspaper-o" href="${scriptBase}news/"
title="News: Noteworthy">
News<p>Noteworthy</p>
</a>
`);
let projectAside = `
<a class="separator" href="https://projects.eclipse.org/projects/eclipse"><i class='fa fa-cube'></i> Eclipse Project</a>
<a href="https://projects.eclipse.org/projects/eclipse.equinox">Equinox</a>
<a href="https://projects.eclipse.org/projects/eclipse.platform">Platform</a>
<a href="${scriptBase}swt"> • SWT</a>
<a href="https://projects.eclipse.org/projects/eclipse.jdt">Java Development Tools</a>
<a href="https://projects.eclipse.org/projects/eclipse.pde">Plug-in Development Environment</a>
`;
let githubAside = `
<span class="separator"><i class='fa fa-github'></i> GitHub</span>
<a href="https://github.com/eclipse-equinox/">Equinox</a>
<a href="https://github.com/eclipse-platform/">Platform</a>
<a href="https://github.com/eclipse-jdt/">Java Development Tools</a>
<a href="https://github.com/eclipse-pde/">Plug-in Development Environment</a>
`;
let markdownAside = `
<span class="separator"><i class='fa fa-edit'></i> Markdown</span>
<a href="${markdownBase}eclipse-platform/eclipse.platform.swt/master/docs">SWT</a>
<a href="${markdownBase}eclipse-platform/eclipse.platform/master/docs">Platform</a>
<a href="${markdownBase}eclipse-platform/eclipse.platform.ui/master/docs">Platform UI</a>
<a href="${markdownBase}eclipse-pde/eclipse.pde/master/docs">PDE</a>
<a href="${markdownBase}eclipse-equinox/p2/master/docs">Equinox p2</a>
<a href="${markdownBase}eclipse-ide/.github/main/">Eclipse IDE</a>
<a href="${markdownBase}eclipse-simrel/.github/main/profile/README.md">Eclipse SimRel</a>
<a href="${markdownBase}eclipse-tycho/tycho/main/README.md">Eclipse Tycho</a>
`;
let defaultAside = toElements(`
${projectAside}
${githubAside}
${markdownAside}
`);
let tableOfContentsAside = '';
let selfContent = document.documentElement.outerHTML;
function redirect(href) {
const location = href != null ?
`${href}${window.location.search}${window.location.hash}` :
new URL(`${selfHostedMarkdownBase}${window.location.pathname.replace(/^\/eclipse\//, '').replace(/\/$/, '/index.html').replace(/\.html$/, '.md')}`);
const body = document.querySelector('body')
replaceChildren(body, "body", ...toElements(`<div style="display: none">If you are not redirected automatically, follow this <a href='${location}'>link</a>.</div>`));
window.location = location;
}
function generate() {
selfContent = document.documentElement.innerHTML;
try {
const head = document.head;
var referenceNode = head.querySelector('script');
for (const element of [...meta]) {
head.insertBefore(element, referenceNode.nextElementSibling)
referenceNode = element;
}
const generators = document.querySelectorAll('[data-generate]');
for (const element of generators) {
const generator = element.getAttribute('data-generate');
const generate = new Function(generator);
generate.call(element, element);
}
const generatedBody = generateBody();
document.body.replaceChildren(...generatedBody);
} catch (exception) {
document.body.prepend(...toElements(`<span>Failed to generate content: <span><b style="color: FireBrick">${exception.message}</b><br/>`));
console.log(exception);
}
}
function generateDefaults(element, id) {
if (id != null && getQueryParameter(id) != null) {
return;
}
const parts = [];
if (!hasElement('header')) {
parts.push(generateDefaultHeader(document.createElement('div')));
}
if (!hasElement('breadcrumb')) {
parts.push(generateDefaultBreadcrumb(document.createElement('div')));
}
if (!hasElement('aside')) {
parts.push(generateDefaultAside(document.createElement('div')));
}
if (!hasElement('nav')) {
parts.push(generateDefaultNav(document.createElement('div')));
}
element.prepend(...parts);
}
function generateBody() {
const col = document.getElementById('aside') ? 'col-md-18' : ' col-md-24';
return toElements(`
<div>
${generateHeader()}
<main id="content">
<div class="novaContent container" id="novaContent">
<div class="row">
<div class="${col} main-col-content">
<div class="novaContent" id="novaContent">
<div class="row">
${generateBreadcrumb()}
</div>
<div class=" main-col-content">
${generateNav()}
<div id="midcolumn">
${generateMainContent()}
</div>
</div>
</div>
</div>
${generateAside()}
${tableOfContentsAside}
</div>
</div>
</main>
<footer id="footer">
<div class="container">
<div class="footer-sections row equal-height-md font-bold">
<div id="footer-eclipse-foundation" class="footer-section col-md-5 col-sm-8">
<div class="menu-heading">Eclipse Foundation</div>
<ul class="nav">
<ul class="nav">
<li><a href="http://www.eclipse.org/org/">About</a></li>
<li><a href="https://projects.eclipse.org/">Projects</a></li>
<li><a href="http://www.eclipse.org/collaborations/">Collaborations</a></li>
<li><a href="http://www.eclipse.org/membership/">Membership</a></li>
<li><a href="http://www.eclipse.org/sponsor/">Sponsor</a></li>
</ul>
</ul>
</div>
<div id="footer-legal" class="footer-section col-md-5 col-sm-8">
<div class="menu-heading">Legal</div>
<ul class="nav">
<ul class="nav">
<li><a href="http://www.eclipse.org/legal/privacy.php">Privacy Policy</a></li>
<li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
<li><a href="http://www.eclipse.org/legal/compliance/">Compliance</a></li>
<li><a href="http://www.eclipse.org/org/documents/Community_Code_of_Conduct.php">Code of
Conduct</a></li>
<li><a href="http://www.eclipse.org/legal/">Legal Resources</a></li>
</ul>
</ul>
</div>
<div id="footer-more" class="footer-section col-md-5 col-sm-8">
<div class="menu-heading">More</div>
<ul class="nav">
<ul class="nav">
<li><a href="http://www.eclipse.org/security/">Report a Vulnerability</a></li>
<li><a href="https://www.eclipsestatus.io/">Service Status</a></li>
<li><a href="http://www.eclipse.org/org/foundation/contact.php">Contact</a></li>
<li><a href="http://www.eclipse.org//projects/support/">Support</a></li>
</ul>
</ul>
</div>
</div>
<div class="col-sm-24">
<div class="row">
<div id="copyright" class="col-md-16">
<p id="copyright-text">Copyright © Eclipse Foundation AISBL. All Rights Reserved.</p>
</div>
</div>
</div>
<a href="#" class="scrollup" onclick="scrollToTop()">Back to the top</a>
</div>
</footer>
</div>
`);
}
function generateMainContent() {
const main = document.body.querySelector('main')
if (main != null) {
return main.outerHTML
}
return `
<main>The body specifies no content.</main>
`;
}
function generateDefaultHeader(element) {
return prependChildren(element, 'header', ...defaultHeader);
}
function generateHeader() {
const elements = document.querySelectorAll('#header>a');
const items = Array.from(elements).map(link => {
link.classList.add('link-unstyled');
return `
<li class="navbar-nav-links-item">
${link.outerHTML}
</li>
`;
});
const mobileItems = Array.from(elements).map(link => {
link.className = 'mobile-menu-item mobile-menu-dropdown-toggle';
return `
<li class="mobile-menu-dropdown">
${link.outerHTML}
</li>
`;
});
return `
<header class="header-wrapper" id="header">
<div class="header-navbar-wrapper">
<div class="container">
<div class="header-navbar">
<a class="header-navbar-brand" href="https://eclipseide.org/">
<div class="logo-wrapper">
<img src="https://eclipse.dev/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo.svg" alt="Eclipse Project" width="150"/>
</div>
</a>
<nav class="header-navbar-nav">
<ul class="header-navbar-nav-links">
${items.join('\n')}
</ul>
</nav>
<div class="header-navbar-end">
<div class="float-right hidden-xs" id="btn-call-for-action">
<a href="https://www.eclipse.org/sponsor/ide/" class="btn btn-huge btn-warning">
<i class="fa fa-star"></i> Sponsor
</a>
</div>
<button class="mobile-menu-btn" onclick="toggleMenu()">
<i class="fa fa-bars fa-xl"/></i>
</button>
</div>
</div>
</div>
</div>
<nav id="mobile-menu" class="mobile-menu hidden" aria-expanded="false">
<ul>
${mobileItems.join('\n')}
</ul>
</nav>
</header>
`;
}
function generateDefaultBreadcrumb(element) {
return prependChildren(element, 'breadcrumb', ...defaultBreadcrumb);
}
function generateBreadcrumb() {
const breadcumbs = document.getElementById('breadcrumb')
if (breadcumbs == null) {
return '';
}
const elements = breadcumbs.children;
const items = Array.from(elements).map(link => `<li>${link.outerHTML}</li>`);
const extraBreachcrumb = generateExtraBreadcrumb();
if (extraBreachcrumb != null) {
items.push(`<li>${extraBreachcrumb}</li>`);
}
return `
<section class="default-breadcrumbs hidden-print breadcrumbs-default-margin"
id="breadcrumb">
<div class="container">
<h3 class="sr-only">Breadcrumbs</h3>
<div class="row">
<div class="col-sm-24">
<ol class="breadcrumb">
${items.join('\n')}
</ol>
</div>
</div>
</div>
</section>
`;
}
function generateExtraBreadcrumb() {
const location = new URL(window.location);
const crumb = getQueryParameter('crumb');
if (crumb) {
return `<span>${crumb}</span>`;
} else {
const file = getQueryParameter('file');
if (file != null) {
const match = file.match(/[^\/]+/g);
if (match.length == 1) {
return `<span>${match[0]}</span>`;
} else if (match.length == 2 && match[0] != 'plans') {
location.search = `file=${match[0]}`;
return `<a href="${location.href}">${match[0]}</a>`;
}
}
}
}
function generateDefaultNav(element) {
return prependChildren(element, 'nav', ...defaultNav);
}
function generateNav() {
const elements = document.body.querySelectorAll('#nav>a');
if (elements.length == 0) {
return '';
}
const items = Array.from(elements).map(element => {
const href = element.getAttribute('href')
const target = element.getAttribute('target') ?? "_self";
const title = element.getAttribute('title') ?? '';
const className = element.className ?? '';
const content = element.innerHTML;
return `
<li class="col-xs-24 col-md-12">
<a class="row" href="${href}" title="${title}"
target="${target}">
<i class="col-xs-3 col-md-6 fa ${className}"></i>
<span class="col-xs-21 c col-md-17">${content}
</span>
</a>
</li>
`;
});
return `
<div class="header_nav">
<div class="col-xs-24 col-md-10 vcenter">
<a href="${scriptBase}">
<img src="${scriptBase}eclipse.svg" alt="The Main Index Page" xwidth="50%" xheight="auto" class="img-responsive header_nav_logo"/>
</a>
</div><!-- NO SPACES
--><div class="col-xs-24 col-md-14 vcenter">
<ul class="clearfix">
${items.join('\n')}
</ul>
</div>
</div>
`;
}
function generateDefaultAside(element) {
return prependChildren(element, 'aside', ...defaultAside);
}
function generateAside() {
const elements = document.body.querySelectorAll('aside>*,#aside>*');
if (elements.length == 0) {
return '';
}
const items = Array.from(elements).map(element => {
const main = element.classList.contains('separator')
element.classList.add('link-unstyled');
if (main) {
element.classList.add('main-sidebar-heading');
return `
<li class="main-sidebar-main-item main-sidebar-item-indented separator">
${element.outerHTML}
</li>
`
} else {
return `
<li class="main-sidebar-item main-sidebar-item-indented">
${element.outerHTML}
</li>
`
}
});
return `
<div class="col-md-6 main-col-sidebar-nav">
<aside class="main-sidebar-default-margin" id="main-sidebar">
<ul class="ul-left-nav" id="leftnav" role="tablist" aria-multiselectable="true">
${items.join('\n')}
</aside>
</div>
`;
}
function generateFileProtocolFailure(location) {
return toElements(`
<div>
<h2>
Cross-Origin Request Blocked
</h2>
The Same Origin Policy disallows reading the following remote resource:
<p>
<code>
<a href="${location}">${location}</a>
</code>
</p>
Reason: CORS request not http:
<p>
[<a class="xlink-unstyled" href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS/Errors/CORSRequestNotHttp">Learn More</a>]
<hr/>
<h3>
Use an Http Server
</h3>
</p>
To test the inclusion functionality you must serve the URI of the containing page from an <a href="https://httpd.apache.org/">http server</a>.
</div>
`);
}
function getXSLT(document) {
for (const node of document.childNodes) {
if (node.nodeName == 'xml-stylesheet') {
const match = /href=['"]([^'"]+)['"']/.exec(node.textContent);
if (match.length == 2) {
return match[1];
}
}
}
}
function sendRequest(location, handler) {
var request = new XMLHttpRequest();
request.open('GET', location);
request.onloadend = function() {
handler(request);
};
request.send();
}
function getHTMLText(request) {
if (request.responseURL.endsWith('.php')) {
const response = JSON.parse(request.responseText);
return blobToText(response.content);
}
const html = request.responseText;
return html;
}
function blobToText(blob) {
const binary = window.atob(blob);
const bytes = new Uint8Array(binary.length);
for (var i = 0; i < binary.length; i++) {
bytes[i] = binary.charCodeAt(i);
}
const decoder = new TextDecoder();
const realText = decoder.decode(bytes);
return realText;
}
function parseHTML(request, handler) {
const location = request.responseURL;
const xml = request.responseXML;
if (xml != null) {
const xslt = getXSLT(xml);
if (xslt) {
sendRequest(new URL(xslt, location), request => {
const xsl = request.responseXML;
const htmlDocument = document.implementation.createHTMLDocument();
addBase(htmlDocument, location);
const xsltProcessor = new XSLTProcessor();
xsltProcessor.importStylesheet(xsl);
const resultDocument = xsltProcessor.transformToFragment(xml, htmlDocument);
handler(resultDocument);
});
return;
}
}
const html = getHTMLText(request);
const htmlDocument = new DOMParser().parseFromString(html, 'text/html');
addBase(htmlDocument, location);
handler(htmlDocument);
}
function newAndNoteworthySubjects(withAcknowledgements) {
const subjects = {
platform: {
label: 'New features in the Platform and Equinox.'
},
jdt: {
label: 'New features for Java developers.'
},
platform_isv: {
label: 'New APIs in the Platform and Equinox.'
},
pde: {
label: 'New features for Plug-in developers'
},
};
if (withAcknowledgements) {
subjects.acknowledgements = {
label: 'Contributor acknowledgements'
};
}
return subjects;
}
function generateNewAndNoteworthy(element) {
const id = 'new-and-noteworthy-target';
element.id = id;
getFileList(apiGitHub + 'news/', /4\.([0-9]+)/, files => {
const items = files.slice(0, 12).map(file => {
const match = file.match;
const version = `4.${match[1]}`;
const minorVersionNumber = Number(match[1]);
const offset = minorVersionNumber - 11;
const year = 2019 + Math.floor(offset / 4);
let quarter;
switch (offset % 4) {
case 0:
{
quarter = "03";
break;
}
case 1:
{
quarter = "06";
break;
}
case 2:
{
quarter = "09";
break;
}
default:
{
quarter = "12";
break;
}
}
const alias = year + "-" + quarter;
const verisonId = `${id}-${version}-a`;
/*
getFileList(apiGitHub + `news/${version}`, /.*(?:\.md|\.html)$/, subjects => {
const properSubjects = new Map();
for (const subject of subjects) {
const subjectMatch = /(?<name>pde|jdt|platform|platform_isv)\.(?<extension>md|html)/.exec(subject.name);
if (subjectMatch != null) {
const name = subjectMatch.groups.name
const url = `${selfHostedMarkdownBase}news/${version}/${subject.name}`;
if (subjectMatch.groups.extension == 'html') {
if (!properSubjects.has(name)) {
properSubjects.set(name, url);
}
} else {
properSubjects.set(name, url);
}
}
}
const children = Object.entries(newAndNoteworthySubjects).map(entry => {
const url = properSubjects.get(entry[0]);
if (url == null) {
return '';
}
return `<li><a href="${url}">${entry[1].label}</a></li>`;
});
const subjectTarget = document.getElementById(verisonId);
subjectTarget.replaceChildren(...toElements(children));
});
}
*/
const defaultFileExtension = minorVersionNumber >= 36 ? '.md' : '.html';
const defaultBaseURL = minorVersionNumber >= 36 ? `${selfHostedMarkdownBase}news/${version}/` : `${newsBase}${version}/`;
const defaultChildren = Object.entries(newAndNoteworthySubjects(minorVersionNumber >= 36)).map(entry => {
return `<li><a href="${defaultBaseURL}${entry[0]}${defaultFileExtension}">${entry[1].label}</a></li>`;
});
return `
<p><a id='${verisonId}-a' href="${defaultBaseURL}index${defaultFileExtension}">${alias} (4.${match[1]}) release:</a></p>
<blockquote>
<ul id='${verisonId}'>
${defaultChildren.join('\n')}
</ul>
</blockquote>
`;
});
const target = document.getElementById(id);
target.replaceChildren(...toElements(`
<h1>Eclipse - New and Noteworthy</h1>
<p>
This page links to the recent new and noteworthy changes in the Eclipse SDK project.
</p>
<ul>
${items.join('\n')}
</ul>
` ));
},
request => {
const target = document.getElementById(id);
target.replaceChildren(...toElements(`<pre>Problem: ${request.responseText}</pre>`));
});
}
function load(location) {
const baseURI = document.baseURI;
const effectiveLocation = location ?? getQueryParameter('file') ?? 'index.html';
const resolvedLocation = new URL(effectiveLocation, baseURI);
sendRequest(resolvedLocation, request => {
if (request.status >= 400) {
const main = document.getElementById('midcolumn');
if (window.location.protocol == 'file:') {
main.append(...generateFileProtocolFailure(resolvedLocation));
}
} else {
parseHTML(request, includedDocument => {
const location = new URL(".", baseURI).toString();
const anchors = includedDocument.querySelectorAll("a[href]");
for (const anchor of anchors) {
const resolvedHref = anchor.href;
if (resolvedHref.startsWith(location)) {
const hrefURL = new URL(resolvedHref);
const hash = hrefURL.hash;
hrefURL.hash = '';
let relative = hrefURL.href.replace(location, '').replace('.php', '.html');
if (relative.endsWith('/')) {
relative = '?file=' + relative + 'index.html';
} else if (relative.endsWith('.html') || relative.endsWith('.php') || relative.endsWith('.xml')) {
relative = '?file=' + relative;
}
const url = new URL(relative, baseURI);
url.hash = hash;
anchor.href = url;
} else {
anchor.href = resolvedHref;
}
}
const imgs = includedDocument.querySelectorAll("img[src]");
for (const img of imgs) {
img.src = img.src;
}
const main = document.getElementById('midcolumn');
if (includedDocument instanceof DocumentFragment) {
main.replaceChildren(...includedDocument.children);
} else {
main.replaceChildren(...includedDocument.body.children);
}
});
}
});
}
function getFileList(location, pattern, handler, errorHandler) {
sendRequest(location, request => {
const map = new Map();
if (request.status >= 400) {
if (errorHandler != null) {
errorHandler(request);
}
return;
}
const files = JSON.parse(request.responseText);
let count = 0;
for (const file of files) {
const match = pattern.exec(file.name);
if (match) {
if (match.length > 1) {
file.match = match;
let ordinal = 0.0;
for (let index = 1; index < match.length; ++index) {
const x = 100000000;
const segment = match[index];
ordinal = ordinal * x + Number(segment ?? '0');
}
const existingValue = map.get(ordinal);
if (existingValue == null || existingValue.name.endsWith('.php')) {
map.set(ordinal, file);
}
} else {
map.set(count++, file);
}
}
}
const entries = [...map].sort((a, b) => {
return b[0] - a[0]
}).map(entry => entry[1]);
handler(entries);
});
}
function generateProjectPlans() {
getFileList(apiGitHub + 'development/plans', /eclipse_project_plan_([0-9]+)[-_.]([0-9]+)(?:[-_.]([0-9]+))?\.xml/, files => {
const items = files.map(file => {
const match = file.match;
const version = `${match[1]}.${match[2]}${match[3] ? '.' + match[3] : ''}`;
return `
<li>
<a href="?file=plans/${file.name}&crumb=${version}">${version}</a>
</li>
`;
});
const main = document.getElementById('midcolumn');
main.replaceChildren(...toElements(`
<h2><span class="fa fa-briefcase"> Plans</span></h2>
<ul>
${items.join('\n')}
</ul>
` ));
});
}
function loadPojectPlan() {
const file = getQueryParameter('file');
if (file) {
load();
} else {
generateProjectPlans();
}
}
function generateProjectReleaseNotes() {
getFileList(apiGitHub + 'development', /readme_eclipse_([0-9]+)[-_.]([0-9]+)(?:[-_.]([0-9]+))?\.html/, files => {
const items = files.map(file => {
const match = file.match;
const version = `${match[1]}.${match[2]}${match[3] ? '.' + match[3] : ''}`;
return `
<li>
<a href="?file=${file.name}&crumb=${version}">${version}</a>
</li>
`;
});
const main = document.getElementById('midcolumn');
main.replaceChildren(...toElements(`
<h2><span class="fa fa-file-text-o"> Release Notes</span></h2>
<ul>
${items.join('\n')}
</ul>
` ));
});
}
function loadProjectReleaseNotes() {
const file = getQueryParameter('file');
if (file) {
load();
} else {
generateProjectReleaseNotes();
}
}
function generateProjectAcknowledgements() {
// acknowledgements_3_2.html
getFileList(apiGitHub + 'development', /acknowledgements_([0-9]+)[-_.]([0-9]+)(?:[-_.]([0-9]+))?\.(?:html|php)/, files => {
const items = files.map(file => {
const match = file.match;
const version = `${match[1]}.${match[2]}${match[3] ? '.' + match[3] : ''}`;
const url = file.name.endsWith('.html') ? file.name : `${apiGitHub}development/${file.name}`;
return `
<li>
<a href="?file=${url}&crumb=${version}">${version}</a>
</li>
`;
});
const main = document.getElementById('midcolumn');
main.replaceChildren(...toElements(`
<h2><span class="fa fa-address-book-o"> Acknowledgements</span></h2>
<p>
Acknowledgements of later releases are directly published in the <a href="../news">News</a> section.
</p>
<ul>
${items.join('\n')}
</ul>
` ));
});
}
function loadProjectAcknowledgements() {
const file = getQueryParameter('file');
if (file) {
load();
} else {
generateProjectAcknowledgements();
}
}
function generateProjectPortingGuides() {
getFileList(apiGitHub + 'development/porting', /eclipse_([0-9]+)[-_.]([0-9]+)(?:[-_.]([0-9]+))?_porting_guide\.(?:html|php)/, files => {
const items = files.map(file => {
const match = file.match;
const version = `${match[1]}.${match[2]}${match[3] ? '.' + match[3] : ''}`;
const url = file.name.endsWith('.html') ? 'porting/' + file.name : `${apiGitHub}development/porting/${file.name}`;
return `
<li>
<a href="?file=${url}&crumb=${version}">${version}</a>
</li>
`;
});
const main = document.getElementById('midcolumn');
main.replaceChildren(...toElements(`
<h2><span class="fa fa-ship"> Porting Guides</span></h2>
<ul>
${items.join('\n')}
</ul>
` ));
});
}
function loadProjectPortingGuides() {
const file = getQueryParameter('file');
if (file) {
load();
} else {
generateProjectPortingGuides();
}
}
function generateSelf(element) {
element.innerText = selfContent.replace(/\t/g, ' ').replace(/\n\n\n+/g, '\n\n').replace(/<\/script><\/body>/, '</script>\n</body>');
}
function hasElement(id) {
return document.getElementById(id) != null;
}
function toElements(text) {
const wrapper = document.createElement('div');
wrapper.innerHTML = text;
return wrapper.children
}
function replaceChildren(element, id, ...children) {
element.id = id;
element.replaceChildren(...children);
return element;
}
function prependChildren(element, id, ...children) {
element.id = id;
element.prepend(...children);
return element;
}
function addBase(htmlDocument, location) {
const base = htmlDocument.createElement('base');
base.href = location;
htmlDocument.head.appendChild(base);
}
function getQueryParameter(id) {
const location = new URL(window.location);
const search = new URLSearchParams(location.search);
return search.get(id);
}
function toggleMenu() {
const mobileMenu = document.getElementById('mobile-menu')
if (mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.remove('hidden');
} else {
mobileMenu.classList.add('hidden');
}
}
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}