index.html
3.46 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
<!doctype html>
<!--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
-->
<html>
<head>
<title>weinre server home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/weinre-icon-64x64.png" />
<script src="versions.js"></script>
<style>
.underline {
border-bottom: solid;
}
h1, h2 {
padding: 0.25em 0.50em;
background-color: #DDD;
border-radius: 0.5em;
-moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em;
}
td {
vertical-align: top;
}
pre {
overflow: auto;
}
textarea {
width: 100%;
}
pre, .indent {
margin-left: 2em;
}
</style>
</head>
<body>
<h1>weinre - <span class="underline">we</span>b <span class="underline">in</span>spector <span class="underline">re</span>mote</h1>
<h2>Access Points</h2>
<table>
<tr><td>debug client user interface: <td> <span id="url-client-ui">???</span>
<tr><td>documentation: <td> <span id="url-target-documentation">???</span>
</table>
<h2>Target Demos</h2>
<p>The following links point to an already instrumented sample application,
run in a couple of different environmental conditions.
<p>First open a new browser window for the debug client user interface, as
specified above. Then open another new browser window for one of the demos
below. They should auto-connect and result in an active debug connection
between the client and the target demo.
<ul>
<li><a href="demo/weinre-demo.html"> the non-minified demo</a>
<li><a href="demo/weinre-demo-min.html"> the minified demo</a>
<li><a href="demo/weinre-demo-strict.html"> the non-minified strict demo</a>
</ul>
<h2>Target Script</h2>
<p>You can use this script to inject the weinre target code into your web page.
<p class="indent"><code><span id="url-target-script">???</span></code>
<p>Example:
<pre>
<script src="<span id="url-target-script-raw">???</span>"></script>
</pre>
<h2>Target Bookmarklet</h2>
<p>You can use this bookmarklet to inject the weinre target code into any
web page you are viewing.
<p>link you can drag to your bookmarks:
<div class="indent">
<span id="url-target-bookmarklet">???</span>
</div>
<p>bookmarklet url in a pre:
<pre id="target-bookmarklet-src-pre"></pre>
<p>bookmarklet url in a textarea:
<div class="indent">
<textarea id="target-bookmarklet-src-text-area"></textarea>
</div>
<h2>Development</h2>
<p>interfaces: <span id="url-interfaces">???</span>
<h2>Versions</h2>
<table>
<tr><td>weinre: <td> <span id="version-weinre">???</span>
<tr><td>build: <td> <span id="version-build">???</span>
</table>
<img src="images/weinre-icon-128x128.png">
<script src="index.js"></script>
</body>
</html>