You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2022/07/08 18:15:40 UTC

[beam] branch master updated: [Website] add I/O Connectors link to dropdown list, updating link to relative, update connectors.sass styles

This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 2fcf7d6802f [Website] add I/O Connectors link to dropdown list, updating link to relative, update connectors.sass styles
     new b9093fb20e7 Merge pull request #22106 from [Website] add I/O Connectors link to dropdown list, update I/O Connectors
2fcf7d6802f is described below

commit 2fcf7d6802f60296b82fdccf83e74befb7481419
Author: bulat safiullin <bu...@akvelon.com>
AuthorDate: Thu Jun 30 00:34:00 2022 +0600

    [Website] add I/O Connectors link to dropdown list, updating link to relative, update connectors.sass styles
---
 website/www/site/assets/scss/_connectors.sass              | 7 +++++++
 website/www/site/content/en/documentation/io/connectors.md | 2 +-
 website/www/site/i18n/navbar/en.yaml                       | 2 ++
 website/www/site/layouts/partials/header.html              | 2 ++
 4 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/website/www/site/assets/scss/_connectors.sass b/website/www/site/assets/scss/_connectors.sass
index 2e8b641be35..947473fd850 100644
--- a/website/www/site/assets/scss/_connectors.sass
+++ b/website/www/site/assets/scss/_connectors.sass
@@ -26,6 +26,13 @@ tr .present a
 
 .table-container-wrapper
   overflow-x: auto
+  position: relative
+  z-index: 10
+
+//to prevent table scroll from block in case of overflow-x since h2 has a negative margin which overlaps footer of the table. h2 styles are set in _global.sass
+.table-container-wrapper + h2
+  position: relative
+  z-index: 1
 
 .table-connectors
   th,
diff --git a/website/www/site/content/en/documentation/io/connectors.md b/website/www/site/content/en/documentation/io/connectors.md
index 78585c67e26..0c3abaa70ae 100644
--- a/website/www/site/content/en/documentation/io/connectors.md
+++ b/website/www/site/content/en/documentation/io/connectors.md
@@ -19,7 +19,7 @@ limitations under the License.
 
 Apache Beam I/O connectors provide read and write transforms for the most popular data storage systems so that Beam users can benefit from native optimised connectivity.  With the available I/Os, Apache Beam pipelines can read and write data from and to an external storage type in a unified and distributed way.
 
-I/O connectors denoted _via X-language_ have been made available using the Apache Beam [multi-language pipelines framework](https://beam.apache.org/documentation/programming-guide/#multi-language-pipelines).
+I/O connectors denoted _via X-language_ have been made available using the Apache Beam [multi-language pipelines framework](/documentation/programming-guide/#multi-language-pipelines).
 
 ## Built-in I/O Connectors
 
diff --git a/website/www/site/i18n/navbar/en.yaml b/website/www/site/i18n/navbar/en.yaml
index 64667cf9495..d356d282671 100644
--- a/website/www/site/i18n/navbar/en.yaml
+++ b/website/www/site/i18n/navbar/en.yaml
@@ -46,3 +46,5 @@
   translation: "Case Studies"
 - id: nav-about
   translation: "About"
+- id: nav-connectors
+  translation: "I/O Connectors"
diff --git a/website/www/site/layouts/partials/header.html b/website/www/site/layouts/partials/header.html
index 0977a01523c..6c11c421682 100644
--- a/website/www/site/layouts/partials/header.html
+++ b/website/www/site/layouts/partials/header.html
@@ -65,6 +65,7 @@
            <li><a href={{ "/documentation/" | relLangURL }}>{{ T "nav-documentation-general" }}</a></li>
            <li><a href={{ "/documentation/sdks/java/" | relLangURL }}>{{ T "nav-languages" }}</a></li>
            <li><a href={{ "/documentation/runners/capability-matrix/" | relLangURL }}>{{ T "nav-runners" }}</a></li>
+           <li><a href={{ "/documentation/io/connectors/" | relLangURL }}>{{ T "nav-connectors" }}</a></li>
          </ul>
         </li>
         <li>
@@ -138,6 +139,7 @@
          <li><a class="navbar-dropdown-menu-link" href={{ "/documentation/" | relLangURL }}>{{ T "nav-documentation-general" }}</a></li>
          <li><a class="navbar-dropdown-menu-link" href={{ "/documentation/sdks/java/" | relLangURL }}>{{ T "nav-languages" }}</a></li>
          <li><a class="navbar-dropdown-menu-link" href={{ "/documentation/runners/capability-matrix/" | relLangURL }}>{{ T "nav-runners" }}</a></li>
+         <li><a class="navbar-dropdown-menu-link" href={{ "/documentation/io/connectors/" | relLangURL }}>{{ T "nav-connectors" }}</a></li>
        </ul>
      </li>
      <a class="navbar-link" href={{ "/roadmap/" | relLangURL }}>{{ T "nav-roadmap" }}</a>