Skip to content

Commit

Permalink
Remove kinetic from prerelease website. (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored Oct 22, 2021
1 parent fd141a6 commit a8fc739
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 39 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ virtualenv
Next use `virtualenv` to create a virtualenv:
```
$ python -m virutalenv venv
$ python -m virtualenv venv
```
Dependencies
Expand Down
20 changes: 3 additions & 17 deletions prerelease_website/static/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ html, body {
height: 100%;
}

.kinetic-column, .melodic-column, .noetic-column {
.melodic-column, .noetic-column {
float: none;
display: table-cell;
}
Expand All @@ -37,25 +37,11 @@ html, body {
margin: 0 auto;
}

.kinetic-column
{
height: 100%;
background: #000000;
width: 33%;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
border-left: 1px solid #eee;
}

.kinetic-column a {
color: #EB2E28;
}

.melodic-column
{
height: 100%;
background: #1a163b;
width: 33%;
width: 50%;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
border-left: 1px solid #eee;
Expand All @@ -69,7 +55,7 @@ html, body {
{
height: 100%;
background: #1a2c33;
width: 33%;
width: 50%;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
border-left: 1px solid #eee;
Expand Down
11 changes: 0 additions & 11 deletions prerelease_website/static/css/kinetic.css

This file was deleted.

2 changes: 1 addition & 1 deletion prerelease_website/static/js/generate_command.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function load_repositories(ros_distro)
var ubuntu_platforms = repo_list.release_platforms.ubuntu;
if (ubuntu_platforms)
{
var preferred_list = ['xenial', 'bionic', 'focal'];
var preferred_list = ['bionic', 'focal'];
$.each(ubuntu_platforms, function (index, item) {
if ($.inArray(item, preferred_list) != -1)
{
Expand Down
11 changes: 2 additions & 9 deletions prerelease_website/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,14 @@ <h1>Select a ROS distribution to Generate a Prerelease Command</h1>
</div>
<div class="row text-center distro-row">
<div style="display: table-row;">
<div class="col-sm-4 kinetic-column text-center">
<a href="/kinetic">
<img class="img-responsive" src="/static/images/kinetic.png" title="Kinetic" width="80%" height="80%" />
<br/>
Kinetic Kame
</a>
</div>
<div class="col-sm-4 melodic-column text-center">
<div class="col-sm-2 melodic-column text-center">
<a href="/melodic">
<img class="img-responsive" src="/static/images/melodic.png" title="Melodic" width="80%" height="80%" />
<br/>
Melodic Morenia
</a>
</div>
<div class="col-sm-4 noetic-column text-center">
<div class="col-sm-2 noetic-column text-center">
<a href="/noetic">
<img class="img-responsive" src="/static/images/noetic.png" title="Noetic" width="80%" height="80%" />
<br/>
Expand Down

0 comments on commit a8fc739

Please sign in to comment.