diff --git a/_data/common.yml b/_data/common.yml index ec75544..ee24281 100644 --- a/_data/common.yml +++ b/_data/common.yml @@ -49,6 +49,9 @@ platforms: mandrake: name: 'Mandrake/Mandriva Linux' versions: {} + openembedded: + name: 'OpenEmbedded/Yocto Project' + versions: {} opensuse: name: 'openSUSE' versions: {} @@ -108,3 +111,13 @@ package_manager_names: pacman: ['arch'] pip: [] portage: ['gentoo'] + +# These are the platforms currently listed as Tier 1-3 in REP-2000 for currently supported distros. +# It is used to limit the display of platforms when space is at a premium. Items consist of a +# Hash with : '' +current_platforms: + debian: 'Debian' + openembedded: 'OpenEmbedded' + osx: 'macOS' + rhel: 'RHEL' + ubuntu: 'Ubuntu' diff --git a/_layouts/system_deps.html b/_layouts/system_deps.html index f76f7af..5316db4 100644 --- a/_layouts/system_deps.html +++ b/_layouts/system_deps.html @@ -25,9 +25,9 @@ Usage Description - {% for platform in site.data.common.platforms %} + {% for platform in site.data.common.current_platforms %} -
{{platform[0]}}
+
{{platform[1]}}
{% endfor %} @@ -44,11 +44,9 @@ {{dep_usage}} {{dep_description}} - {% for p in site.data.common.platforms %} - {% assign platform = p[0] %} - {% assign platform_details = p[1] %} - {% assign versions = platform_details.versions %} - + {% for cp in site.data.common.current_platforms %} + {% assign platform = cp[0] %} + {% assign versions = site.data.common.platforms[platform].versions %} {% assign found_all = true %} {% assign found_one = false %} diff --git a/_sass/_base.scss b/_sass/_base.scss index f7385c3..5417fdf 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -472,7 +472,7 @@ a.question-link { th.rotatel90 { /* Something you can count on */ - height: 70px; + height: 90px; white-space: nowrap; } @@ -486,5 +486,5 @@ th.rotatel90 > div { } th.rotatel90 > div > span { border-bottom: 2px solid #ccc; - padding: 5px 10px; + padding: 2px 0px; }