Skip to content

Commit

Permalink
Replace rosbridge_server (addresses #12).
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac IY Saito committed Dec 27, 2014
1 parent a5f3a6b commit cb36607
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<url type="repository">https://github.com/tork-a/roswww_pkg</url>

<buildtool_depend>catkin</buildtool_depend>
<run_depend>rosbridge_server</run_depend>
<run_depend>rosbridge_tools</run_depend>
<run_depend>rospy</run_depend>

<export/>
Expand Down
4 changes: 2 additions & 2 deletions script/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

import socket
import subprocess
import tornado.ioloop # rosbridge installs tornado
import tornado.web

from rosbridge_tools import find_tornado
tornado = find_tornado()
import rospy

from roswww.webrequest_handler import WebRequestHandler
Expand Down
3 changes: 2 additions & 1 deletion src/roswww/webrequest_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
#
# Author: Jonathan Mace, Jihoon Lee, Isaac Isao Saito

import tornado.web
from rosbridge_tools import find_tornado
tornado = find_tornado()


class WebRequestHandler(tornado.web.RequestHandler):
Expand Down

0 comments on commit cb36607

Please sign in to comment.