-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
432 lines (401 loc) · 11.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GSoC 2025</title>
<link rel="stylesheet" href="styles/organization_style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
/* Additional styles for the index page */
.search-container {
margin: 2rem 0;
position: relative;
}
.search-input {
width: 100%;
padding: 1rem 1.5rem;
font-size: 1.1rem;
border: none;
border-radius: 8px;
background: white;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.organizations-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
}
.organization-card {
background: white;
border-radius: 10px;
padding: 1.5rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.organization-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.organization-card a {
color: var(--primary-dark);
text-decoration: none;
font-weight: 500;
background-color: rgba(116, 142, 255, 0.342);
padding: 0;
margin: 0;
box-shadow: none;
display: block;
transition: color 0.2s ease;
}
.organization-card a:hover {
color: var(--accent);
transform: none;
box-shadow: none;
background-color: rgba(116, 142, 255, 0.596);
}
.slogan{
color: rgb(209, 209, 209);
}
.alphabet-nav {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 2rem;
position: sticky;
top: 0;
background: var(--background);
padding: 1rem 0;
z-index: 10;
}
.alphabet-nav a {
background: var(--text-primary);
color: white;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: 600;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}
.alphabet-nav a:hover {
background: var(--primary-light);
color: white;
transform: translateY(-2px);
box-shadow: 2px 2px 2px var(--primary-dark);
}
.section-header {
margin: 2rem 0 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--primary-light);
color: var(--primary-light);
scroll-margin-top: 80px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>GSoC 2025 - Open Source Organizations</h1>
<p class="slogan">Explore 180+ organizations participating in open source initiatives</p>
</div>
</header>
<div class="container">
<div class="search-container">
<input type="text" id="search" class="search-input" placeholder="Search organizations...">
</div>
<div class="alphabet-nav" id="alphabet-nav">
<a href="#A">A</a>
<a href="#B">B</a>
<a href="#C">C</a>
<a href="#D">D</a>
<a href="#E">E</a>
<a href="#F">F</a>
<a href="#G">G</a>
<a href="#H">H</a>
<a href="#I">I</a>
<a href="#J">J</a>
<a href="#K">K</a>
<a href="#L">L</a>
<a href="#M">M</a>
<a href="#N">N</a>
<a href="#O">O</a>
<a href="#P">P</a>
<a href="#Q">Q</a>
<a href="#R">R</a>
<a href="#S">S</a>
<a href="#T">T</a>
<a href="#U">U</a>
<a href="#V">V</a>
<a href="#W">W</a>
<a href="#X">X</a>
<a href="#Y">Y</a>
<a href="#Z">Z</a>
</div>
<div id="organizations-container">
<!-- Organizations will be dynamically populated here -->
</div>
</div>
<footer>
<div class="container">
<p>© 2025 Open Source Organizations Directory</p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
// List of organizations
const organizations = [
"52 North Spatial Information Research GmbH",
"AboutCode",
"Accord Project",
"AFLplusplus",
"Alaska",
"AnkiDroid",
"AOSSIE",
"Apache DataFusion",
"Apache Software Foundation",
"API Dash",
"ArduPilot",
"AsyncAPI",
"BeagleBoard",
"Blender Foundation",
"BRL-CAD",
"cBioPortal for Cancer Genomics",
"CCExtractor Development",
"Center for Translational Data Science",
"Ceph",
"CERN HSF",
"CGAL Project",
"CHAOSS",
"Checker Framework",
"checkstyle",
"Chromium",
"CircuitVerse",
"CloudCV",
"CNCF",
"CRIU",
"D Language Foundation",
"Dart",
"Data for the Common Good",
"DBpedia",
"Debian",
"DeepChem",
"Department of Biomedical Informatics Emory University",
"Django",
"dora-rs",
"Drupal Association",
"Eclipse Foundation",
"Electron",
"Fedora Project",
"FFmpeg",
"FLARE",
"Fortran-lang",
"FOSSASIA",
"FOSSology",
"Free and Open Source Silicon Foundation",
"FreeCAD",
"freifunk",
"GeomScale",
"Git",
"GitLab",
"GNOME Foundation",
"GNSS-SDR",
"GNU Compiler Collection",
"GNU Image Manipulation Program",
"GNU Octave",
"GNU Radio",
"Google DeepMind",
"gprMax",
"GRAME",
"Graphite",
"Haskell",
"HumanAI",
"INCF",
"Inkscape",
"International Catrobat Association",
"Internet Archive",
"Internet Health Report",
"Invesalius",
"IOOS",
"JabRef",
"JAX and Keras",
"JdeRobot",
"Jenkins",
"Jitsi",
"Joomla!",
"JSON Schema",
"KDE Community",
"Keploy",
"Kiwix",
"Kornia",
"Kotlin Foundation",
"kro Kube Resource Orchestrator",
"Kubeflow",
"KubeVirt",
"LabLua",
"Learning Equality",
"LibreOffice",
"libssh",
"Liquid Galaxy project",
"LLVM Compiler Infrastructure",
"Machine Learning for Science",
"MariaDB",
"MBDyn",
"MDAnalysis",
"Meshery",
"MetaBrainz Foundation Inc",
"Micro Electronics Research Lab UITU",
"MIT App Inventor",
"Mixxx",
"National Resource for Network Biology",
"Neovim",
"Neuroinformatics Unit",
"NumFOCUS",
"omegaUp",
"Open Climate Fix",
"Open Food Facts",
"Open HealthCare Network",
"Open Robotics",
"Open Science Initiative for Perfusion Imaging",
"Open Science Labs",
"Open Technologies Alliance GFOSS",
"Open Transit Software Foundation",
"OpenAFS",
"OpenAstronomy",
"OpenCV",
"OpenELIS Global",
"OpenMRS",
"OpenMS",
"OpenStreetMap",
"openSUSE Project",
"OpenVINO Toolkit",
"OpenWISP",
"Oppia Foundation",
"Organic Maps",
"OSGeo (Open Source Geospatial Foundation)",
"OWASP Foundation",
"PAL Robotics",
"PEcAn Project",
"Pharo Consortium",
"Plone Foundation",
"PostgreSQL",
"Processing Foundation",
"Project Mesa",
"Prometheus-Operator",
"Python Software Foundation",
"QC Devs",
"QEMU",
"R project for statistical computing",
"Rizin",
"rocket.chat",
"Rspamd",
"RTEMS Project",
"SageMath",
"Scala Center",
"ScummVM",
"Society for Arts and Technology",
"Software and Computational Systems Lab at LMU Munich",
"SQLancer",
"St. Jude Children's Research Hospital",
"stdlib",
"Stellar group",
"Stichting SU2",
"Sugar Labs",
"SW360",
"Swift",
"SymPy",
"Synfig",
"TARDIS RT Collaboration",
"The FreeBSD Project",
"The Honeynet Project",
"The JPF team",
"The Julia Language",
"The Linux Foundation",
"The Mifos Initiative",
"The NetBSD Foundation",
"The ns 3 Network Simulator Project",
"The P4 Language Consortium",
"The Palisadoes Foundation",
"The Rust Foundation",
"The Tor Project",
"Typelevel",
"UC OSPO",
"Unicode, Inc.",
"Unikraft",
"Uramaki LAB",
"VideoLAN",
"Wagtail",
"Waycrate",
"webpack",
"Wellcome Sanger Tree of Life",
"Zendalona",
"Zulip"
];
// Group organizations by first letter
const groupedOrganizations = {};
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
alphabet.forEach(letter => {
groupedOrganizations[letter] = organizations.filter(org =>
org.trim().toUpperCase().startsWith(letter)
);
});
// Populate the organizations container
const container = document.getElementById('organizations-container');
alphabet.forEach(letter => {
const orgs = groupedOrganizations[letter];
if (orgs.length > 0) {
// Create section header
const header = document.createElement('h2');
header.textContent = letter;
header.id = letter;
header.className = 'section-header';
container.appendChild(header);
// Create grid for this section
const grid = document.createElement('div');
grid.className = 'organizations-grid';
orgs.forEach(org => {
const card = document.createElement('div');
card.className = 'organization-card';
const link = document.createElement('a');
// Format the filename to match your Python script's output
const filename = org.replace(/\s+/g, '_');
link.href = `output/${filename}.html`;
link.textContent = org;
card.appendChild(link);
grid.appendChild(card);
});
container.appendChild(grid);
}
});
// Search functionality
const searchInput = document.getElementById('search');
searchInput.addEventListener('input', function() {
const searchTerm = this.value.toLowerCase();
const cards = document.querySelectorAll('.organization-card');
cards.forEach(card => {
const orgName = card.querySelector('a').textContent.toLowerCase();
if (orgName.includes(searchTerm)) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
// Show/hide section headers based on visible cards
const sections = document.querySelectorAll('.section-header');
sections.forEach(section => {
const nextSibling = section.nextElementSibling;
const hasVisibleCards = Array.from(nextSibling.children).some(
card => card.style.display !== 'none'
);
section.style.display = hasVisibleCards ? 'block' : 'none';
nextSibling.style.display = hasVisibleCards ? 'grid' : 'none';
});
});
});
</script>
</body>
</html>