Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add lunar to active distros #199

Merged
merged 1 commit into from
Feb 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions macro/Version.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
def execute(macro, args):
if args:
version = str(args)
if version.lower() == 'l-turtle':
# TODO Change when l-turtle name is decided
if version.lower() == 'm-turtle':
# TODO Change when m-turtle name is decided
return ('<span style="background-color:#FFFF00; '
'font-weight:bold; padding: 3px;">'
'Expected in L-Turtle</span>')
'Expected in M-Turtle</span>')
else:
return ('<span style="background-color:#FFFF00; '
'font-weight:bold; padding: 3px;">'
Expand Down
6 changes: 3 additions & 3 deletions macro/macroutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

NETWORK_TIMEOUT = 3

distro_names = ['boxturtle', 'cturtle', 'diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'unstable']
distro_names_indexed = ['diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'unstable'] #boxturtle and cturtle not indexed
distro_names_buildfarm = ['indigo', 'jade', 'kinetic']
distro_names = ['boxturtle', 'cturtle', 'diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'lunar', 'unstable']
distro_names_indexed = ['diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'lunar', 'unstable'] #boxturtle and cturtle not indexed
distro_names_buildfarm = ['indigo', 'jade', 'kinetic', 'lunar']

doc_url = "http://docs.ros.org/"

Expand Down