├── _layouts ├── default.html ├── page.html ├── post.html └── base.html ├── Gemfile ├── assets ├── img │ ├── favicon.ico │ ├── favicon_orig.ico │ └── fega_favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── Lato │ │ ├── lato-bold.eot │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-italic.eot │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.ttf │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.ttf │ │ ├── lato-italic.woff2 │ │ ├── lato-regular.woff │ │ ├── lato-regular.woff2 │ │ ├── lato-bolditalic.woff │ │ └── lato-bolditalic.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── RobotoSlab │ │ ├── roboto-slab.eot │ │ ├── roboto-slab-v7-bold.eot │ │ ├── roboto-slab-v7-bold.ttf │ │ ├── roboto-slab-v7-bold.woff │ │ ├── roboto-slab-v7-bold.woff2 │ │ ├── roboto-slab-v7-regular.eot │ │ ├── roboto-slab-v7-regular.ttf │ │ ├── roboto-slab-v7-regular.woff │ │ └── roboto-slab-v7-regular.woff2 │ └── fontawesome-webfont.woff2 ├── css │ ├── custom.css │ └── theme_extra.css └── js │ ├── theme.js │ └── modernizr-2.8.3.min.js ├── docs ├── assets │ ├── img │ │ ├── favicon.ico │ │ ├── fega_favicon.ico │ │ └── fega-committee-and-working-groups.jpeg │ └── css │ │ └── custom.css ├── _includes │ └── searchbox.html ├── _config.yml ├── search_data.json ├── topics │ ├── outreach-training │ │ └── index.md │ ├── technical-operational │ │ ├── countries_tech_stack │ │ │ ├── germany_tech_stack.html │ │ │ ├── sweden_tech_stack.html │ │ │ ├── finland_tech_stack.html │ │ │ ├── norway_tech_stack.html │ │ │ ├── portugal_tech_stack.html │ │ │ ├── spain_tech_stack.html │ │ │ ├── component_description.html │ │ │ └── national_nodes_technical_stack.html │ │ └── index.md │ ├── maturity-model │ │ └── index.md │ ├── data-metadata-management │ │ └── index.md │ └── governance-legal │ │ └── index.md ├── search.html ├── _layouts │ └── base.html └── index.md ├── Pipfile ├── Dockerfile ├── _includes ├── searchbox.html ├── ganalytics.html ├── versions.html ├── breadcrumbs.html ├── footer.html ├── nav.html └── toc.html ├── docker-compose.yml ├── mkdocs.yml ├── jekyll-theme-rtd.gemspec ├── _config.yml ├── LICENSE-rtd ├── search_data.json ├── LICENSE-mkdocs ├── LICENSE-jekyll-theme-rtd ├── Vagrantfile ├── .github ├── pull_request_template.md └── ISSUE_TEMPLATE │ ├── request_change.yaml │ └── bug_report.yaml ├── README.md ├── .gitignore ├── CONTRIBUTORS.yaml ├── search.html ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── Pipfile.lock └── LICENSE.md /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | gemspec 5 | -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/img/favicon_orig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/favicon_orig.ico -------------------------------------------------------------------------------- /assets/img/fega_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/fega_favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/assets/img/fega_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/fega_favicon.ico -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/img/fega-committee-and-working-groups.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/fega-committee-and-working-groups.jpeg -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | name = "pypi" 3 | url = "https://pypi.org/simple" 4 | verify_ssl = true 5 | 6 | [dev-packages] 7 | 8 | [packages] 9 | mkdocs = "*" 10 | 11 | [requires] 12 | python_version = "3" 13 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ruby:2.6 2 | 3 | ENV LC_ALL C.UTF-8 4 | ENV LANG en_US.UTF-8 5 | ENV LANGUAGE en_US.UTF-8 6 | 7 | WORKDIR /usr/src/app 8 | 9 | COPY Gemfile jekyll-theme-rtd.gemspec ./ 10 | RUN gem install bundler:2.1.4 && bundle install 11 | 12 | EXPOSE 4000 13 | 14 | -------------------------------------------------------------------------------- /_includes/searchbox.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | -------------------------------------------------------------------------------- /docs/_includes/searchbox.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.5" 2 | 3 | services: 4 | jekyll: 5 | build: 6 | context: ./ 7 | ports: 8 | - 4000:4000 9 | volumes: 10 | - .:/usr/src/app 11 | stdin_open: true 12 | tty: true 13 | command: bundle exec jekyll serve -H 0.0.0.0 -t 14 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: 'Read The Docs Jekyll Theme' 2 | site_description: 'Port of the Read the Docs theme to Jekyll to use with GitHub Pages.' 3 | repo_url: 'https://github.com/carlosperate/jekyll-theme-rtd' 4 | repo_name: 'GitHub' 5 | docs_dir: 'docs/' 6 | site_dir: '_site_mkdocs/' 7 | theme: 'readthedocs' 8 | prev_next_buttons_location: 'both' 9 | copyright: 'Carlos Pereira Atencio' 10 | -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Custom sidebar */ 2 | .wy-side-nav-search { 3 | background-color: #fcfcfc; 4 | } 5 | 6 | .wy-nav-side { 7 | background-color: #185177; 8 | } 9 | 10 | .wy-menu-vertical a { 11 | color: #ffffff; 12 | } 13 | 14 | .wy-menu-vertical a:hover { 15 | background-color: #5e9cc3; 16 | color: #ffffff; 17 | } 18 | 19 | .wy-menu-vertical li.on a, .wy-menu-vertical li.current>a { 20 | color: #185177; 21 | } 22 | -------------------------------------------------------------------------------- /docs/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Custom sidebar */ 2 | .wy-side-nav-search { 3 | background-color: #fcfcfc; 4 | } 5 | 6 | .wy-nav-side { 7 | background-color: #155177; 8 | } 9 | 10 | .wy-menu-vertical a { 11 | color: #ffffff; 12 | } 13 | 14 | .wy-menu-vertical a:hover { 15 | background-color: #5e9cc3; 16 | color: #ffffff; 17 | } 18 | 19 | .wy-menu-vertical li.on a, .wy-menu-vertical li.current>a { 20 | color: #155177; 21 | } 22 | -------------------------------------------------------------------------------- /_includes/ganalytics.html: -------------------------------------------------------------------------------- 1 | {%- if site.google_analytics %} 2 | 3 | 4 | 12 | {%- endif %} 13 | -------------------------------------------------------------------------------- /_includes/versions.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {%- if site.repo_url %} 4 | GitHub 5 | {%- endif %} 6 | {%- if previous_page %} 7 | « Previous 8 | {%- endif %} 9 | {%- if next_page %} 10 | Next » 11 | {%- endif %} 12 | 13 |
14 | -------------------------------------------------------------------------------- /jekyll-theme-rtd.gemspec: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Gem::Specification.new do |spec| 4 | spec.name = "jekyll-theme-rtd" 5 | spec.version = "0.1.0" 6 | spec.authors = ["carlosperate"] 7 | spec.email = ["carlosperate@embeddedlog.com"] 8 | 9 | spec.summary = "Port of the Read the Docs theme to Jekyll to use with GitHub Pages." 10 | spec.homepage = "https://github.com/carlosperate/jekyll-theme-rtd" 11 | spec.license = "MIT" 12 | 13 | spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) } 14 | 15 | spec.add_runtime_dependency "jekyll", "~> 3.8" 16 | 17 | spec.add_development_dependency "bundler", "~> 2.0" 18 | spec.add_development_dependency "rake", "~> 12.0" 19 | spec.add_development_dependency "github-pages", "~> 202" 20 | spec.add_development_dependency "jekyll-remote-theme", "~> 0.4.0" 21 | end 22 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: FEGA Onboarding Knowledge base 2 | description: Knowledge base for Onboarding Federated EGA nodes. 3 | 4 | # Development server config, needed to load some of the content 5 | webrick: 6 | headers: 7 | Access-Control-Allow-Origin: "*" 8 | 9 | # Specific to this theme 10 | baseurl: /FEGA-onboarding 11 | site_author: Federated EGA Knowledge base team 12 | repo_url: '' 13 | edit_on_github: false 14 | github_docs_folder: true 15 | logo: 'https://ega-archive.github.io/FEGA-onboarding/docs/assets/img/FEGA-logo-generic.svg' 16 | site_favicon: 'https://ega-archive.github.io/FEGA-onboarding/docs/assets/img/fega_favicon.ico' 17 | sticky_navigation: true 18 | prev_next_buttons_location: None 19 | #prev_next_buttons_location: top 20 | #prev_next_buttons_location: bottom 21 | #prev_next_buttons_location: both 22 | search_enabled: true 23 | #google_analytics: UA-XXXXX-Y 24 | #google_analytics_anonymize_ip: true 25 | # The highlight.js library provides 79 different colours for their syntax highlighting. The default is github-gist. 26 | hljs_style: github-gist 27 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: FEGA Onboarding Knowledge base 2 | description: Knowledge base for Onboarding Federated EGA nodes. 3 | 4 | # Development server config, needed to load some of the content 5 | webrick: 6 | headers: 7 | Access-Control-Allow-Origin: "*" 8 | 9 | # Specific to this theme 10 | site_author: Federated EGA Knowledge base team 11 | repo_url: '' 12 | edit_on_github: false 13 | github_docs_folder: true 14 | logo: 'https://ega-archive.github.io/FEGA-onboarding/assets/img/FEGA-logo-generic.svg' 15 | site_favicon: 'https://ega-archive.github.io/FEGA-onboarding/assets/img/fega_favicon.ico' 16 | sticky_navigation: true 17 | prev_next_buttons_location: None 18 | #prev_next_buttons_location: top 19 | #prev_next_buttons_location: bottom 20 | #prev_next_buttons_location: both 21 | search_enabled: true 22 | #google_analytics: UA-XXXXX-Y 23 | #google_analytics_anonymize_ip: true 24 | # The highlight.js library provides 79 different colours for their syntax highlighting. The default is github-gist. 25 | hljs_style: github-gist 26 | 27 | remote_theme: carlosperate/jekyll-theme-rtd 28 | -------------------------------------------------------------------------------- /LICENSE-rtd: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Ben Balter 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /search_data.json: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | nav_exclude: true 4 | search_exclude: true 5 | --- 6 | { 7 | {%- for site_page in site.pages %} 8 | {%- unless site_page.search_exclude == true %} 9 | "{{ site_page.url | slugify }}": { 10 | "title": "{{ site_page.title | xml_escape }}", 11 | "content": {{site_page.content | markdownify | newline_to_br | replace: '
', ' ' | strip_html | normalize_whitespace | jsonify }}, 12 | "url": " {{ site_page.url | xml_escape }}", 13 | "author": "{{ site_page.author | xml_escape }}" 14 | }, 15 | {%- endunless %} 16 | {%- endfor %} 17 | {%- for site_post in site.posts %} 18 | {%- unless site_page.search_exclude == true %} 19 | "{{ site_post.url | slugify }}": { 20 | "title": "{{ site_post.title | xml_escape }}", 21 | "content": {{site_post.content | markdownify | newline_to_br | replace: '
', ' ' | strip_html | normalize_whitespace | jsonify }}, 22 | "url": " {{ site_post.url | xml_escape }}", 23 | "author": "{{ site_post.author | xml_escape }}" 24 | }{%- unless forloop.last %},{%- endunless %} 25 | {%- endunless %} 26 | {%- else %} 27 | {%- comment %} Dirty trick: There is a comma at the end of the sites loop, so we need at least one entry after {% endcomment %} 28 | ".": { 29 | ".": "." 30 | } 31 | {%- endfor %} 32 | } 33 | -------------------------------------------------------------------------------- /docs/search_data.json: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | nav_exclude: true 4 | search_exclude: true 5 | --- 6 | { 7 | {%- for site_page in site.pages %} 8 | {%- unless site_page.search_exclude == true %} 9 | "{{ site_page.url | slugify }}": { 10 | "title": "{{ site_page.title | xml_escape }}", 11 | "content": {{site_page.content | markdownify | newline_to_br | replace: '
', ' ' | strip_html | normalize_whitespace | jsonify }}, 12 | "url": " {{ site_page.url | absolute_url }}", 13 | "author": "{{ site_page.author | xml_escape }}" 14 | }, 15 | {%- endunless %} 16 | {%- endfor %} 17 | {%- for site_post in site.posts %} 18 | {%- unless site_page.search_exclude == true %} 19 | "{{ site_post.url | slugify }}": { 20 | "title": "{{ site_post.title | xml_escape }}", 21 | "content": {{site_post.content | markdownify | newline_to_br | replace: '
', ' ' | strip_html | normalize_whitespace | jsonify }}, 22 | "url": " {{ site_post.url | absolute_url }}", 23 | "author": "{{ site_post.author | xml_escape }}" 24 | }{%- unless forloop.last %},{%- endunless %} 25 | {%- endunless %} 26 | {%- else %} 27 | {%- comment %} Dirty trick: There is a comma at the end of the sites loop, so we need at least one entry after {% endcomment %} 28 | ".": { 29 | ".": "." 30 | } 31 | {%- endfor %} 32 | } 33 | -------------------------------------------------------------------------------- /LICENSE-mkdocs: -------------------------------------------------------------------------------- 1 | Copyright © 2014, Tom Christie. All rights reserved. 2 | 3 | Redistribution and use in source and binary forms, with or 4 | without modification, are permitted provided that the following 5 | conditions are met: 6 | 7 | Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | Redistributions in binary form must reproduce the above copyright 10 | notice, this list of conditions and the following disclaimer in 11 | the documentation and/or other materials provided with the 12 | distribution. 13 | 14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 15 | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 16 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 19 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 22 | USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 23 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 25 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 | POSSIBILITY OF SUCH DAMAGE. 27 | -------------------------------------------------------------------------------- /LICENSE-jekyll-theme-rtd: -------------------------------------------------------------------------------- 1 | BSD 2-Clause License 2 | 3 | Copyright (c) 2017, Ben Balter 4 | Copyright (c) 2014, Tom Christie 5 | Copyright (c) 2019, Carlos Pereira Atencio 6 | All rights reserved. 7 | 8 | Redistribution and use in source and binary forms, with or without 9 | modification, are permitted provided that the following conditions are met: 10 | 11 | 1. Redistributions of source code must retain the above copyright notice, this 12 | list of conditions and the following disclaimer. 13 | 14 | 2. Redistributions in binary form must reproduce the above copyright notice, 15 | this list of conditions and the following disclaimer in the documentation 16 | and/or other materials provided with the distribution. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 22 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 24 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 25 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 26 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- 1 | Vagrant.configure("2") do |config| 2 | config.vm.box = "ubuntu/bionic64" 3 | 4 | # Adding a recognisable names to vagrant and the virtual machine 5 | config.vm.define "jekyll-theme-rtd" do |t| 6 | end 7 | config.vm.provider "virtualbox" do |v| 8 | v.name = "jekyll-theme-rtd" 9 | end 10 | 11 | # This Ubuntu image creates a ubuntu-bionic-18.04-cloudimg-console.log file 12 | # https://betacloud.io/get-rid-of-ubuntu-xenial-16-04-cloudimg-console-log/ 13 | config.vm.provider "virtualbox" do |vb| 14 | vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ] 15 | end 16 | 17 | # Configure the network to access the server from the host localhost:4000 18 | config.vm.network "forwarded_port", guest: 4000, host: 4000, host_ip: "127.0.0.1" 19 | config.vm.provider "virtualbox" do |vb| 20 | vb.memory = "2048" 21 | end 22 | config.vm.provision "shell", privileged: false, inline: <<-SHELL 23 | # Update the system 24 | sudo apt-get -y update 25 | sudo apt-get -y install ruby-full 26 | # Needed to build some gems 27 | sudo apt-get -y install build-essential zlib1g-dev 28 | sudo gem install bundler 29 | # Set up gem environment 30 | cd /vagrant 31 | bundle install 32 | SHELL 33 | 34 | config.vm.provision "shell", privileged: false, run: "always", inline: <<-SHELL 35 | # On every 'vagrant up' run the Jekyll server, add --detach to run in the background 36 | cd /vagrant 37 | bundle exec jekyll serve --host 0.0.0.0 --watch --force_polling 38 | SHELL 39 | end 40 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ## Description 5 | 6 | 7 | ## Motivation and Context 8 | 9 | 10 | 11 | ## How has this been tested? 12 | 13 | 14 | 15 | 16 | ## What should reviewers focus on? 17 | 18 | 19 | ## Types of changes 20 | 21 | - [ ] Bug fix (non-breaking change which fixes an issue) 22 | - [ ] New content (non-breaking change which adds new content) 23 | - [ ] Modified content (non-breaking change which modifies existing content) 24 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 25 | 26 | ## Checklist: 27 | 28 | 29 | - [ ] I have read the CONTRIBUTING.md guide. 30 | - [ ] My changes follow the code style of this project. 31 | - [ ] I have updated supporting documentation, if required. 32 | - [ ] I have added my details to the CONTRIBUTORS.yaml file. 33 | -------------------------------------------------------------------------------- /_includes/breadcrumbs.html: -------------------------------------------------------------------------------- 1 |
2 | 24 | 25 | {%- if (site.prev_next_buttons_location == 'top' or site.prev_next_buttons_location =='both') and (previous_page or next_page) %} 26 | 34 | {%- endif %} 35 | 36 |
37 |
38 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 38 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_change.yaml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: 🚀 Form to create a request for changes. 3 | title: "[FEATURE]: " 4 | labels: ["feature"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | This form is a template to **create a request for changes**. It can be used, for example, to add a new section or functionality to the [FEGA onboarding webpages](https://ega-archive.github.io/FEGA-onboarding/). 10 | Thank you for contributing to the Federated European Genome-phenome Archive (FEGA)! 11 | 12 | - type: dropdown 13 | id: feature-type 14 | attributes: 15 | label: Feature type(s) 16 | description: What type(s) of feature are you requesting? Select as many categories as you see fit from the dropdown menu. 17 | multiple: true 18 | options: 19 | - Content modification 20 | - Content addition 21 | - Website appearance 22 | - GitHub repository 23 | - Other/unsure 24 | validations: 25 | required: true 26 | 27 | - type: input 28 | id: location 29 | attributes: 30 | label: Location 31 | description: Please indicate the website URL or GitHub repository path where the requested change is located. 32 | placeholder: e.g. https://ega-archive.github.io/FEGA-onboarding/topics/maturity-model/ 33 | validations: 34 | required: true 35 | 36 | - type: textarea 37 | id: change-description 38 | attributes: 39 | label: Description of the change 40 | description: Please describe the change you are requesting. Make it as detailed as possible. 41 | placeholder: e.g. I would like to request a new section be added at... 42 | validations: 43 | required: true 44 | 45 | - type: textarea 46 | id: change-reason 47 | attributes: 48 | label: Reason for the change 49 | description: Please explain why the change is being requested and what value it adds. 50 | placeholder: e.g. Having a section about ... would ease the learning pace of... 51 | validations: 52 | required: true 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Federated EGA logo, colored logo of storage disk with human figure emerging from behind and the text Federated European Genome-phenome Archive on the right. 2 | 3 | # Establishing a Federated EGA Node 4 | 5 | Welcome to the GitHub repository that hosts onboarding materials for establishing a Federated EGA Node! 6 | 7 | ## What am I doing here? 8 | 9 | If you are reading this, you are probably looking for information on how to join the Federated EGA Network. Great! There is a lot of information here for you. 10 | 11 | ## How do I start? 12 | 13 | We suggest you explore these materials on the public website here: **https://ega-archive.github.io/FEGA-onboarding** 14 | 15 | These materials provide guidance for establishing a node in the Federated EGA Network. The materials are based on the knowledge and experiences of current nodes and their use cases. Your node's development might differ depending on your use cases and mandates from stakeholders. Please view these materials as suggestions and best practices - not hard requirements! 16 | 17 | ## Usage 18 | 19 | The content of the material is developed collaboratively in shared Google documents and Markdown. A templating system ([Jekyll](http://jekyllrb.com/)) is used to format the onboarding materials and generate a website (https://ega-archive.github.io/FEGA-onboarding). The theme used is [Read-the-docs](https://docs.readthedocs.io/en/stable/index.html) and Github Pages version by [jekyll-theme-rtd](https://github.com/carlosperate/jekyll-theme-rtd). 20 | 21 | If you want to build the website locally, please have a look at this tutorial (**TBD**). 22 | 23 | ## Acknowledgements 24 | 25 | We would like to thank all contributors, especially those mentioned in the [Contributors list](CONTRIBUTORS.yaml), the Federated EGA community for their support, and our funding partners. 26 | 27 | Please see our [contributing guide](CONTRIBUTING.md) for information on how to contribute to the generation and maintenance of these materials. Thank you in advance for your contributions! 28 | 29 | ## License 30 | 31 | The content of the FEGA onboarding materials and website are licensed under the [Creative Commons Attribution Share Alike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). 32 | 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- 1 | name: Report a bug 2 | description: 🐛 Form to report bugs in the FEGA onboarding materials 3 | title: "[BUG]: " 4 | labels: ["bug"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | This form is a template for **reporting bugs in the FEGA onboarding materials** (e.g. wrong URLs, typos, broken formatting). For issues concerning Central EGA (e.g. download client, [ega-archive](https://ega-archive.org/) website) please contact ``helpdesk [at] ega-archive.org``. 10 | Thank you for your support to the Federated European Genome-phenome Archive (FEGA)! 11 | - type: input 12 | id: bug-title 13 | attributes: 14 | label: Bug summary 15 | description: Please provide a summary or title for the bug. 16 | placeholder: e.g. Typo in the maturity model documentation 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: to-reproduce 21 | attributes: 22 | label: To reproduce 23 | description: Please explain in detail what led you to observe the bug to help us reproduce it while we try to fix it. 24 | placeholder: | 25 | e.g. Steps to reproduce: 26 | 1. Go to the maturity model documentation (https://ega-archive.github.io/FEGA-onboarding/topics/maturity-model/) 27 | 2. Observe a typo in the first paragraph of the ``Learn about the FEGA Maturity Model`` section 28 | validations: 29 | required: true 30 | - type: textarea 31 | id: observed-behaviour 32 | attributes: 33 | label: Observed behaviour 34 | description: Please explain the behaviour you observed and considered a bug. Include any error messages or warnings you observed. 35 | placeholder: e.g. The description says "Gobbernance" 36 | validations: 37 | required: true 38 | - type: textarea 39 | id: expected-behaviour 40 | attributes: 41 | label: Expected behaviour 42 | description: Please explain what you expected to happen if there was no bug. 43 | placeholder: e.g. The description says "Governance" 44 | validations: 45 | required: true 46 | - type: textarea 47 | id: additional-context 48 | attributes: 49 | label: Additional context 50 | description: Use this section to add any context, including error messages or screenshots (if applicable), that could aid in the fixing of the bug. 51 | validations: 52 | required: false 53 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ########### 2 | # Project # 3 | ########### 4 | .vscode/ 5 | .vagrant/ 6 | .sass-cache 7 | _site/ 8 | _site_mkdocs/ 9 | 10 | ########### 11 | # Node.js # 12 | ########### 13 | # Logs 14 | logs 15 | *.log 16 | npm-debug.log* 17 | yarn-debug.log* 18 | yarn-error.log* 19 | lerna-debug.log* 20 | 21 | # Diagnostic reports (https://nodejs.org/api/report.html) 22 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 23 | 24 | # Runtime data 25 | pids 26 | *.pid 27 | *.seed 28 | *.pid.lock 29 | 30 | # Directory for instrumented libs generated by jscoverage/JSCover 31 | lib-cov 32 | 33 | # Coverage directory used by tools like istanbul 34 | coverage 35 | *.lcov 36 | 37 | # nyc test coverage 38 | .nyc_output 39 | 40 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 41 | .grunt 42 | 43 | # Bower dependency directory (https://bower.io/) 44 | bower_components 45 | 46 | # node-waf configuration 47 | .lock-wscript 48 | 49 | # Compiled binary addons (https://nodejs.org/api/addons.html) 50 | build/Release 51 | 52 | # Dependency directories 53 | node_modules/ 54 | jspm_packages/ 55 | 56 | # TypeScript v1 declaration files 57 | typings/ 58 | 59 | # TypeScript cache 60 | *.tsbuildinfo 61 | 62 | # Optional npm cache directory 63 | .npm 64 | 65 | # Optional eslint cache 66 | .eslintcache 67 | 68 | # Optional REPL history 69 | .node_repl_history 70 | 71 | # Output of 'npm pack' 72 | *.tgz 73 | 74 | # Yarn Integrity file 75 | .yarn-integrity 76 | 77 | # dotenv environment variables file 78 | .env 79 | .env.test 80 | 81 | ######## 82 | # Ruby # 83 | ######## 84 | *.gem 85 | *.rbc 86 | /.config 87 | /coverage/ 88 | /InstalledFiles 89 | /pkg/ 90 | /spec/reports/ 91 | /spec/examples.txt 92 | /test/tmp/ 93 | /test/version_tmp/ 94 | /tmp/ 95 | 96 | ## Documentation cache and generated files: 97 | /.yardoc/ 98 | /_yardoc/ 99 | /doc/ 100 | /rdoc/ 101 | 102 | ## Environment normalization: 103 | /.bundle/ 104 | /vendor/bundle 105 | /lib/bundler/man/ 106 | 107 | # for a library or gem, you might want to ignore these files since the code is 108 | # intended to run in multiple environments; otherwise, check them in: 109 | Gemfile.lock 110 | .ruby-version 111 | .ruby-gemset 112 | 113 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 114 | .rvmrc 115 | 116 | ###################### 117 | # OS generated files # 118 | ###################### 119 | # macoOS 120 | .DS_Store 121 | .DS_Store? 122 | .AppleDouble 123 | .LSOverride 124 | ._* 125 | .Spotlight-V100 126 | .Trashes 127 | Icon? 128 | 129 | # Windows 130 | Thumbs.db 131 | ehthumbs.db 132 | ehthumbs_vista.db 133 | *.stackdump 134 | [Dd]esktop.ini 135 | $RECYCLE.BIN/ 136 | *.lnk 137 | 138 | # Linux 139 | *~ 140 | .fuse_hidden* 141 | .directory 142 | .Trash-* 143 | .nfs* 144 | -------------------------------------------------------------------------------- /CONTRIBUTORS.yaml: -------------------------------------------------------------------------------- 1 | # List of contributors 2 | # 3 | # tags: name, email, twitter, gitter, orcid, elixir_node 4 | 5 | # example entry 6 | 7 | # contributer-1: 8 | # name: Fake Name 9 | # email: fake.name@ebi.ac.uk 10 | # twitter: fakename 11 | # gitter: fakename 12 | # orcid: 0000-0000-0000-0000 13 | # elixir_node: xx 14 | 15 | # elixir_node cv: [be, ch, cz, de, dk, ee, embl, es, fi, fr, gr, hu, ie, is, it, lu, nl, no, pt, se, si, uk] 16 | 17 | --- 18 | # Please add yourself below in alphabetical order 19 | 20 | ahornos: 21 | name: Albert Hornos Vidal 22 | email: ahornos@bsc.es 23 | orcid: 0000-0002-7330-668X 24 | elixir_node: es 25 | 26 | ainajene: 27 | name: Aina Jené Cortada 28 | email: aina.jene@crg.eu 29 | orcid: 0000-0001-7721-7097 30 | elixir_node: es 31 | 32 | alex-dem: 33 | name: Alexandros Dimopoulos 34 | email: dimopoulos@fleming.gr 35 | orcid: 0000-0002-4602-2040 36 | elixir_node: gr 37 | 38 | amycurwin: 39 | name: Amy Curwin 40 | email: amy.curwin@crg.eu 41 | orcid: 0000-0003-1086-2483 42 | elixir_node: es 43 | 44 | biodataadmin: 45 | name: Jorge dos Santos Oliveira 46 | email: jorge.oliveira@tecnico.ulisboa.pt 47 | orcid: 0000-0001-6425-2176 48 | elixir_node: pt 49 | 50 | blankdots: 51 | name: Stefan Negru 52 | email: stefan.negru@csc.fi 53 | orcid: 0000-0002-6544-5022 54 | elixir_node: fi 55 | 56 | brane007: 57 | name: Brane Leskošek 58 | email: brane.leskosek@mf.uni-lj.si 59 | orcid: 0000-0001-5202-2349 60 | elixir_node: si 61 | 62 | d-salgado: 63 | name: David Salgado 64 | email: david.salgado@france-bioinformatique.fr 65 | orcid: 0000-0002-5905-3591 66 | elixir_node: fr 67 | 68 | ealloza: 69 | name: Eva Alloza Anguiano 70 | email: ealloza@bsc.es 71 | twitter: EvaAlloza 72 | orcid: 0000-0001-8385-9336 73 | elixir_node: es 74 | 75 | fracassandocasualmente: 76 | name: Miguel Conrado Santos 77 | email: miguel.conrado.santos@tecnico.ulisboa.pt 78 | elixir_node: pt 79 | 80 | jmenglund: 81 | name: Markus Englund 82 | email: markus.englund@nbis.se 83 | orcid: 0000-0003-1688-7112 84 | elixir_node: se 85 | 86 | lauportell: 87 | name: Laura Portell Silva 88 | email: laura.portell@bsc.es 89 | orcid: 0000-0003-0390-3208 90 | elixir_node: es 91 | 92 | lilachic: 93 | name: Liisa Lado-Villar 94 | email: liisa.lado-villar@csc.fi 95 | orcid: 96 | elixir_node: fi 97 | 98 | mfreeberg: 99 | name: Mallory Freeberg 100 | email: mfreeberg@ebi.ac.uk 101 | twitter: MalloryFreeberg 102 | gitter: malloryfreeberg 103 | orcid: 0000-0003-2949-3921 104 | elixir_node: embl 105 | 106 | m-casado: 107 | name: Marcos Casado Barbero 108 | email: mcasado@ebi.ac.uk 109 | orcid: 0000-0002-7747-6256 110 | elixir_node: embl 111 | 112 | silviabah: 113 | name: Silvia Bahena Hernandez 114 | email: sbahena@ebi.ac.uk 115 | orcid: 0000-0002-2734-0449 116 | elixir_node: embl 117 | -------------------------------------------------------------------------------- /docs/topics/outreach-training/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | excerpt: Outreach, communications, and training aspects of establishing a Federated EGA node 3 | layout: default 4 | title: Outreach and Training 5 | nav_order: 3 6 | has_children: false 7 | has_toc: false 8 | --- 9 | # Outreach and Training 10 | 11 | Welcome! If you are involved in outreach, communications, or training aspects of establishing a Federated EGA node, you are in the right place. 12 | 13 | **You might find this page useful if you are:** 14 | - a data steward 15 | - a support officer 16 | - an outreach or communications officer 17 | - coordinating, organising, or providing training 18 | 19 | **By exploring these materials, you will be able to:** 20 | - Interact with FEGA communication channels 21 | - Find FEGA outreach materials 22 | - Share news and updates related to FEGA and its nodes 23 | 24 | ## 1. Engage communication channels 25 | 26 | ### Internal channels 27 | - The ELIXIR Federated Human Data (FHD) Community is the main entry-point for a Node interested in joining the FEGA Network: 28 | - Join the ELIXIR FHD Mailing List (select "Human Data") to hear about the latest updates and events from the FHD community. You will need to log-in into the ELIXIR intranet. 29 | - Attend the ELIXIR FHD Community Calls to engage with the FEGA community. 30 | - Federated EGA has mailing lists for various communications: 31 | - FEGA Strategic Committee mailing list (invitation-only): For discussing strategic planning and direction of FEGA. 32 | - FEGA Operations Committee mailing list (invitation-only): For reviewing operational performance and coordinating technical roadmaps. 33 | 34 | ### External channels 35 | - Follow the EGA Twitter account 36 | - Mention Federated EGA by using: 37 | - the hashtag #FederatedEGA 38 | - a combination of hashtag and mention #Federated @EGAarchive 39 | 40 | ## 2. Incorporate communication materials 41 | - FEGA logo (svg format) Federated EGA logo, colored logo of storage disk with human figure emerging from behind and the text Federated European Genome-phenome Archive on the right. 42 |

43 | 44 | ## 3. Follow news and updates 45 | - "Federated EGA Updates in 2022" (ELIXIR AHM 2022) (8 June 2022) 46 | - "Working together towards a Federated European Genome-phenome Archive for Publishing and re-using sensitive research data" (15 March 2022) 47 | - "Federated EGA: where are we now?" (ELIXIR AHM 2021) (11 June 2021) 48 | - FEGA page on EGA website 49 | 50 | ## 4. What's next? 51 | 52 | Coming soon! 53 | -------------------------------------------------------------------------------- /search.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: Search 4 | nav_exclude: true 5 | search_exclude: true 6 | --- 7 | 8 |

Search Results

9 | 10 |
11 | Enter a search query in the search box on the left. 12 |
13 | 14 | 15 | 16 | 90 | -------------------------------------------------------------------------------- /assets/css/theme_extra.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Wrap inline code samples otherwise they shoot of the side and 3 | * can't be read at all. 4 | * 5 | * https://github.com/mkdocs/mkdocs/issues/313 6 | * https://github.com/mkdocs/mkdocs/issues/233 7 | * https://github.com/mkdocs/mkdocs/issues/834 8 | */ 9 | .rst-content code { 10 | white-space: pre-wrap; 11 | word-wrap: break-word; 12 | padding: 2px 5px; 13 | } 14 | 15 | /** 16 | * Make code blocks display as blocks and give them the appropriate 17 | * font size and padding. 18 | * 19 | * https://github.com/mkdocs/mkdocs/issues/855 20 | * https://github.com/mkdocs/mkdocs/issues/834 21 | * https://github.com/mkdocs/mkdocs/issues/233 22 | */ 23 | .rst-content pre code { 24 | white-space: pre; 25 | word-wrap: normal; 26 | display: block; 27 | padding: 12px; 28 | font-size: 12px; 29 | } 30 | 31 | /* 32 | * Fix link colors when the link text is inline code. 33 | * 34 | * https://github.com/mkdocs/mkdocs/issues/718 35 | */ 36 | a code { 37 | color: #2980B9; 38 | } 39 | a:hover code { 40 | color: #3091d1; 41 | } 42 | a:visited code { 43 | color: #9B59B6; 44 | } 45 | 46 | /* 47 | * The CSS classes from highlight.js seem to clash with the 48 | * ReadTheDocs theme causing some code to be incorrectly made 49 | * bold and italic. 50 | * 51 | * https://github.com/mkdocs/mkdocs/issues/411 52 | */ 53 | pre .cs, pre .c { 54 | font-weight: inherit; 55 | font-style: inherit; 56 | } 57 | 58 | /* 59 | * Fix some issues with the theme and non-highlighted code 60 | * samples. Without and highlighting styles attached the 61 | * formatting is broken. 62 | * 63 | * https://github.com/mkdocs/mkdocs/issues/319 64 | */ 65 | .rst-content .no-highlight { 66 | display: block; 67 | padding: 0.5em; 68 | color: #333; 69 | } 70 | 71 | 72 | /* 73 | * Additions specific to the search functionality provided by MkDocs 74 | */ 75 | 76 | .search-results { 77 | margin-top: 23px; 78 | } 79 | 80 | .search-results article { 81 | border-top: 1px solid #E1E4E5; 82 | padding-top: 24px; 83 | } 84 | 85 | .search-results article:first-child { 86 | border-top: none; 87 | } 88 | 89 | form .search-query { 90 | width: 100%; 91 | border-radius: 50px; 92 | padding: 6px 12px; /* csslint allow: box-model */ 93 | border-color: #D1D4D5; 94 | } 95 | 96 | /* 97 | * Improve inline code blocks within admonitions. 98 | * 99 | * https://github.com/mkdocs/mkdocs/issues/656 100 | */ 101 | .rst-content .admonition code { 102 | color: #404040; 103 | border: 1px solid #c7c9cb; 104 | border: 1px solid rgba(0, 0, 0, 0.2); 105 | background: #f8fbfd; 106 | background: rgba(255, 255, 255, 0.7); 107 | } 108 | 109 | /* 110 | * Account for wide tables which go off the side. 111 | * Override borders to avoid wierdness on narrow tables. 112 | * 113 | * https://github.com/mkdocs/mkdocs/issues/834 114 | * https://github.com/mkdocs/mkdocs/pull/1034 115 | */ 116 | .rst-content .section .docutils { 117 | width: 100%; 118 | overflow: auto; 119 | display: block; 120 | border: none; 121 | } 122 | 123 | td, th { 124 | border: 1px solid #e1e4e5 !important; /* csslint allow: important */ 125 | border-collapse: collapse; 126 | } 127 | 128 | /* Footer revision string. */ 129 | .commit code { 130 | font-size: 0.9em !important; 131 | } 132 | -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: Search 4 | nav_exclude: true 5 | search_exclude: true 6 | --- 7 | 8 |

Search Results

9 | 10 |
11 | Enter a search query in the search box on the left. 12 |
13 | 14 | 15 | 16 | 90 | -------------------------------------------------------------------------------- /docs/topics/technical-operational/countries_tech_stack/germany_tech_stack.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 |
#ComponentGermany
1URLhttps://www.ghga.de/
2Credentials
3FEGA Node Encryption key pair
4FEGA Node MQ
5Submitter Inbox
6Ingest Pipeline
7Archive storage
8Archive File Database
9Backup Storage
10Main Source Code Repository
11Main Programming Language
12Deployment Method
13Helpdesk Management SystemZammad
14Helpdesk Portal Technology
15Monitoring Tool
16Metadata Submission Method
17Download Solution
18Data Access Tool
19General Contact
112 | -------------------------------------------------------------------------------- /docs/topics/technical-operational/countries_tech_stack/sweden_tech_stack.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 |
#ComponentSweden
1URLhttps://nbis.se/infrastructure/sensitive-data-archive.html
2Credentials
3FEGA Node Encryption key pair
4FEGA Node MQ
5Submitter InboxS3 Proxy
6Ingest Pipeline
7Archive storageS3
8Archive File Database
9Backup Storage
10Main Source Code Repositoryhttps://github.com/neicnordic/sda-pipeline
11Main Programming LanguageGolang
12Deployment MethodKubernetes
13Helpdesk Management SystemRedmine
14Helpdesk Portal Technology
15Monitoring Tool
16Metadata Submission MethodCentral EGA submitter Portal
17Download Solution
18Data Access Tool
19General Contact
107 | -------------------------------------------------------------------------------- /docs/topics/technical-operational/countries_tech_stack/finland_tech_stack.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 |
#ComponentFinland
1URLhttps://research.csc.fi/-/fega
2Credentials
3FEGA Node Encryption key pair
4FEGA Node MQ
5Submitter InboxSFTP
6Ingest Pipeline
7Archive storagePOSIX / S3(dev)
8Archive File Database
9Backup StorageTape
10Main Source Code Repositoryhttps://github.com/neicnordic/sda-pipeline
11Main Programming LanguageGolang
12Deployment MethodKubernetes
13Helpdesk Management SystemRT - request tracker
14Helpdesk Portal Technology
15Monitoring Tool
16Metadata Submission MethodCentral EGA submitter Portal / Planning Developement of own Portal
17Download Solutionhttps://docs.csc.fi/data/sensitive-data/fega_application/
18Data Access Toolhttps://github.com/CSCfi/rems
19General Contact
107 | -------------------------------------------------------------------------------- /docs/topics/technical-operational/countries_tech_stack/norway_tech_stack.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 |
#ComponentNorway
1URLhttps://ega.elixir.no/
2Credentials
3FEGA Node Encryption key pair
4FEGA Node MQ
5Submitter InboxREST API
6Ingest Pipeline
7Archive storageS3
8Archive File Database
9Backup Storage
10Main Source Code Repositoryhttps://github.com/neicnordic/sda-pipeline
11Main Programming LanguageGolang
12Deployment MethodDocker Swarm
13Helpdesk Management SystemRT - request tracker
14Helpdesk Portal Technology
15Monitoring Tool
16Metadata Submission MethodCentral EGA submitter Portal
17Download Solution
18Data Access Toolhttps://ega.elixir.no/retrieval.html
19General Contact
107 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | {%- comment -%} 2 | This will generate a list (