Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Commit a8fc739

Browse files
authored
Remove kinetic from prerelease website. (#64)
Signed-off-by: Chris Lalancette <[email protected]>
1 parent fd141a6 commit a8fc739

File tree

5 files changed

+7
-39
lines changed

5 files changed

+7
-39
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ virtualenv
1818
Next use `virtualenv` to create a virtualenv:
1919
2020
```
21-
$ python -m virutalenv venv
21+
$ python -m virtualenv venv
2222
```
2323
2424
Dependencies

prerelease_website/static/css/index.css

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ html, body {
2121
height: 100%;
2222
}
2323

24-
.kinetic-column, .melodic-column, .noetic-column {
24+
.melodic-column, .noetic-column {
2525
float: none;
2626
display: table-cell;
2727
}
@@ -37,25 +37,11 @@ html, body {
3737
margin: 0 auto;
3838
}
3939

40-
.kinetic-column
41-
{
42-
height: 100%;
43-
background: #000000;
44-
width: 33%;
45-
border-top: 1px solid #eee;
46-
border-bottom: 1px solid #eee;
47-
border-left: 1px solid #eee;
48-
}
49-
50-
.kinetic-column a {
51-
color: #EB2E28;
52-
}
53-
5440
.melodic-column
5541
{
5642
height: 100%;
5743
background: #1a163b;
58-
width: 33%;
44+
width: 50%;
5945
border-top: 1px solid #eee;
6046
border-bottom: 1px solid #eee;
6147
border-left: 1px solid #eee;
@@ -69,7 +55,7 @@ html, body {
6955
{
7056
height: 100%;
7157
background: #1a2c33;
72-
width: 33%;
58+
width: 50%;
7359
border-top: 1px solid #eee;
7460
border-bottom: 1px solid #eee;
7561
border-left: 1px solid #eee;

prerelease_website/static/css/kinetic.css

Lines changed: 0 additions & 11 deletions
This file was deleted.

prerelease_website/static/js/generate_command.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function load_repositories(ros_distro)
3939
var ubuntu_platforms = repo_list.release_platforms.ubuntu;
4040
if (ubuntu_platforms)
4141
{
42-
var preferred_list = ['xenial', 'bionic', 'focal'];
42+
var preferred_list = ['bionic', 'focal'];
4343
$.each(ubuntu_platforms, function (index, item) {
4444
if ($.inArray(item, preferred_list) != -1)
4545
{

prerelease_website/templates/index.html

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,14 @@ <h1>Select a ROS distribution to Generate a Prerelease Command</h1>
1717
</div>
1818
<div class="row text-center distro-row">
1919
<div style="display: table-row;">
20-
<div class="col-sm-4 kinetic-column text-center">
21-
<a href="/kinetic">
22-
<img class="img-responsive" src="/static/images/kinetic.png" title="Kinetic" width="80%" height="80%" />
23-
<br/>
24-
Kinetic Kame
25-
</a>
26-
</div>
27-
<div class="col-sm-4 melodic-column text-center">
20+
<div class="col-sm-2 melodic-column text-center">
2821
<a href="/melodic">
2922
<img class="img-responsive" src="/static/images/melodic.png" title="Melodic" width="80%" height="80%" />
3023
<br/>
3124
Melodic Morenia
3225
</a>
3326
</div>
34-
<div class="col-sm-4 noetic-column text-center">
27+
<div class="col-sm-2 noetic-column text-center">
3528
<a href="/noetic">
3629
<img class="img-responsive" src="/static/images/noetic.png" title="Noetic" width="80%" height="80%" />
3730
<br/>

0 commit comments

Comments
 (0)