Skip to content

Commit 547b1e9

Browse files
thisisnicianmcook
andauthored
Add links to other repos and match dropdowns to docs site (#653)
- renamed **Documentation** drop-down menu to **Docs** - added **Source** drop-down menu with links to source for different implementations - added Swift to the **Source** and **Docs** menus --------- Co-authored-by: Ian Cook <ianmcook@gmail.com>
1 parent 8c75f48 commit 547b1e9

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

_includes/header.html

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@
2121
<div class="dropdown-menu" aria-labelledby="navbarDropdownGetArrow">
2222
<a class="dropdown-item" href="{{ site.baseurl }}/install/">Install</a>
2323
<a class="dropdown-item" href="{{ site.baseurl }}/release/">Releases</a>
24-
<a class="dropdown-item" href="https://github.com/apache/arrow">Source Code</a>
2524
</div>
2625
</li>
2726
<li class="nav-item dropdown">
2827
<a class="nav-link dropdown-toggle" href="#"
2928
id="navbarDropdownDocumentation" role="button" data-toggle="dropdown"
3029
aria-haspopup="true" aria-expanded="false">
31-
Documentation
30+
Docs
3231
</a>
3332
<div class="dropdown-menu" aria-labelledby="navbarDropdownDocumentation">
3433
<a class="dropdown-item" href="{{ site.baseurl }}/docs">Project Docs</a>
@@ -46,6 +45,31 @@
4645
<a class="dropdown-item" href="{{ site.baseurl }}/docs/r">R</a>
4746
<a class="dropdown-item" href="https://github.com/apache/arrow/blob/main/ruby/README.md">Ruby</a>
4847
<a class="dropdown-item" href="https://docs.rs/arrow/latest">Rust</a>
48+
<a class="dropdown-item" href="https://github.com/apache/arrow/blob/main/swift/Arrow/README.md">Swift</a>
49+
</div>
50+
</li>
51+
<li class="nav-item dropdown">
52+
<a class="nav-link dropdown-toggle" href="#"
53+
id="navbarDropdownSource" role="button" data-toggle="dropdown"
54+
aria-haspopup="true" aria-expanded="false">
55+
Source
56+
</a>
57+
<div class="dropdown-menu" aria-labelledby="navbarDropdownSource">
58+
<a class="dropdown-item" href="https://github.com/apache/arrow">Main Repo</a>
59+
<hr/>
60+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/c_glib">C GLib</a>
61+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/cpp">C++</a>
62+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/csharp">C#</a>
63+
<a class="dropdown-item" href="https://github.com/apache/arrow-go">Go</a>
64+
<a class="dropdown-item" href="https://github.com/apache/arrow-java">Java</a>
65+
<a class="dropdown-item" href="https://github.com/apache/arrow-js">JavaScript</a>
66+
<a class="dropdown-item" href="https://github.com/apache/arrow-julia">Julia</a>
67+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/matlab">MATLAB</a>
68+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/python">Python</a>
69+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/r">R</a>
70+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/ruby">Ruby</a>
71+
<a class="dropdown-item" href="https://github.com/apache/arrow-rs">Rust</a>
72+
<a class="dropdown-item" href="https://github.com/apache/arrow/tree/main/swift">Swift</a>
4973
</div>
5074
</li>
5175
<li class="nav-item dropdown">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h3>Format</h3>
1414
<div class="col-lg-4 mt-3">
1515
<h3>Libraries</h3>
1616
<p>Arrow's libraries implement the format and provide building blocks for a range of <a href="{{ site.baseurl }}/use_cases/">use cases</a>, including high performance analytics. <a href="{{ site.baseurl }}/powered_by/">Many popular projects</a> use Arrow to ship columnar data efficiently or as the basis for analytic engines.</p>
17-
<p>Libraries are available for <a href="{{ site.baseurl }}/docs/c_glib/">C</a>, <a href="{{ site.baseurl }}/docs/cpp/">C++</a>, <a href="https://github.com/apache/arrow/blob/main/csharp/README.md">C#</a>, <a href="https://godoc.org/github.com/apache/arrow/go/arrow">Go</a>, <a href="{{ site.baseurl }}/docs/java/">Java</a>, <a href="{{ site.baseurl }}/docs/js/">JavaScript</a>, <a href="{{ site.baseurl }}/julia/">Julia</a>, <a href="https://github.com/apache/arrow/blob/main/matlab/README.md">MATLAB</a>, <a href="{{ site.baseurl }}/docs/python/">Python</a>, <a href="{{ site.baseurl }}/docs/r/">R</a>, <a href="https://github.com/apache/arrow/blob/main/ruby/README.md">Ruby</a>, and <a href="https://docs.rs/crate/arrow/">Rust</a>.
17+
<p>Libraries are available for <a href="{{ site.baseurl }}/docs/c_glib/">C</a>, <a href="{{ site.baseurl }}/docs/cpp/">C++</a>, <a href="https://github.com/apache/arrow/blob/main/csharp/README.md">C#</a>, <a href="https://godoc.org/github.com/apache/arrow/go/arrow">Go</a>, <a href="{{ site.baseurl }}/docs/java/">Java</a>, <a href="{{ site.baseurl }}/docs/js/">JavaScript</a>, <a href="{{ site.baseurl }}/julia/">Julia</a>, <a href="https://github.com/apache/arrow/blob/main/matlab/README.md">MATLAB</a>, <a href="{{ site.baseurl }}/docs/python/">Python</a>, <a href="{{ site.baseurl }}/docs/r/">R</a>, <a href="https://github.com/apache/arrow/blob/main/ruby/README.md">Ruby</a>, <a href="https://docs.rs/crate/arrow/">Rust</a>, and <a href="https://github.com/apache/arrow/blob/main/swift/Arrow/README.md">Swift</a>.
1818
See <a href="{{ site.baseurl }}/install/">how to install</a> and get started.
1919
</div>
2020
<div class="col-lg-4 mt-3">

0 commit comments

Comments
 (0)