-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (122 loc) · 5.3 KB
/
Copy pathindex.html
File metadata and controls
148 lines (122 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ROS Web Client</title>
<!-- libs -->
<script type="text/javascript" src="http://cdn.robotwebtools.org/EventEmitter2/current/eventemitter2.min.js"></script>
<!--<script type="text/javascript" src="http://cdn.robotwebtools.org/roslibjs/current/roslib.min.js"></script>-->
<script type="text/javascript" src="js/roslibjs/build/roslib.min.js"></script>
<script type="text/javascript" src="js/libs/jquery-2.2.0.min.js"></script>
<script type="text/javascript" src="js/libs/mustache.js"></script>
<script type="text/javascript" src="js/libs/util.js"></script>
<!-- my scripts -->
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/events.js"></script>
<script type="text/javascript" src="js/interface.js"></script>
<script type="text/javascript" src="js/html.js"></script>
<script type="text/javascript" src="js/svg.js"></script>
<script type="text/javascript" src="js/render.js"></script>
<script type="text/javascript" src="js/templates.js"></script>
<script type="text/javascript" src="js/widgets.js"></script>
<!-- Math -->
<script type="text/javascript" src="js/libs/robotics/rpy.js"></script>
<script type="text/javascript" src="js/libs/robotics/quaternion.js"></script>
<script type="text/javascript" src="js/libs/robotics/matrix3x3.js"></script>
<!-- WIDGETS -->
<!-- Mav -->
<script type="text/javascript" src="widgets/mav/js/main.js"></script>
<link rel="stylesheet" type="text/css" href="widgets/mav/css/main.css" />
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBGir7uuIvdEOH24VRmNcDCUCHSwmWS6No" async defer></script>
<!-- Waypoint -->
<script type="text/javascript" src="widgets/waypoint/js/main.js"></script>
<link rel="stylesheet" type="text/css" href="widgets/waypoint/css/main.css" />
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/theme1.css" />
<link rel="stylesheet" type="text/css" href="css/ros.css" />
<!-- fonts -->
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Josefin+Slab:400,600' rel='stylesheet' type='text/css'>
<!-- favicon -->
<link rel="shortcut icon" href="img/rosorg-favicon.png" type="image/x-icon" />
</head>
<body>
<div id="header">
<h1>ROS web</h1>
<label>Server address</label>
<!--<input type="text" id="txt_ros_server_address" name="txt_ros_server_address" value="ws://192.168.1.101:9090" />-->
<input type="text" id="txt_ros_server_address" name="txt_ros_server_address" value="ws://127.0.0.1:9090" />
<button id="btn_server_connect" value="Connect">Connect</button>
</div>
<div id="content">
<div id="contentMenu">
<ul>
<li><a href="#" id="widgetAdd">+</a></li>
<li><a href="#" data-id="0" class="jsWidgetShow">Painel ROS</a></li>
</ul>
<div id="widgetList">
</div>
</div>
<div id="contentMain">
<div id="rosPanel" class="contentMain widgetContent" data-widget-id="0">
<div id="rosOptions">
<input type="checkbox" name="ckbRosapiServiceParam" id="ckbRosapiServiceParam" />
<label for="ckbRosapiServiceParam">Hide rosapi services/params</label>
<input type="checkbox" name="ckbRosoutServiceParam" id="ckbRosoutServiceParam" />
<label for="ckbRosoutServiceParam">Hide rosout services/params</label>
<input type="checkbox" name="ckbRosbridgeWebsocketServiceParam" id="ckbRosbridgeWebsocketServiceParam" />
<label for="ckbRosbridgeWebsocketServiceParam">Hide rosbridge websocket services/params</label>
</div>
<div class="content-side fleft w25p">
<h3>Log messages</h3>
<div id="log" class="w100p h100">
<ul id="messages-list"></ul>
</div>
<h3>Nodes</h3>
<div id="nodes" class="w100p mh200">
<table id="nodes-list" class="w100p p5">
<tr>
<th>node name</th>
</tr>
</table>
</div>
<h3>Topics</h3>
<div id="topics" class="w100p mh200">
<table id="topics-list" class="w100p p5">
<tr>
<th>topic name</th>
</tr>
</table>
</div>
</div>
<div class="content-main fleft w40p">
<div id="details">
</div>
</div>
<div class="content-side fleft w30p">
<h3>Services</h3>
<div id="services" class="w100p mh200">
<table id="services-list" class="w100p p5">
<tr>
<th>service</th>
</tr>
</table>
</div>
<h3>Params</h3>
<div id="params" class="w100p mh200">
<table id="params-list" class="w100p p5">
<tr>
<th>param</th>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="footer">
</div>
</body>
</html>