Skip to content

Commit

Permalink
Add melodic to the wiki. (#240)
Browse files Browse the repository at this point in the history
* Add melodic to the wiki.

Signed-off-by: Chris Lalancette <[email protected]>

* Add in the part of the wiki for N-Turtle.

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored and dhood committed Jan 26, 2018
1 parent 8143e53 commit 64fb632
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions macro/Version.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
def execute(macro, args):
if args:
version = str(args)
if version.lower() == 'melodic':
if version.lower() == 'n-turtle':
return ('<span style="background-color:#FFFF00; '
'font-weight:bold; padding: 3px;">'
'Expected in Melodic Morenia</span>')
'Expected in N-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', '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']
distro_names = ['boxturtle', 'cturtle', 'diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'lunar', 'melodic', 'unstable']
distro_names_indexed = ['diamondback', 'electric', 'fuerte', 'groovy', 'hydro', 'indigo', 'jade', 'kinetic', 'lunar', 'melodic', 'unstable'] #boxturtle and cturtle not indexed
distro_names_buildfarm = ['indigo', 'jade', 'kinetic', 'lunar', 'melodic']

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

Expand Down

0 comments on commit 64fb632

Please sign in to comment.