forked from jlouback/jscommunicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone-dev.shtml
43 lines (37 loc) · 1.61 KB
/
phone-dev.shtml
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
<!DOCTYPE html>
<head>
<title>Testing</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<link rel="stylesheet" href="style-horizontal.css" type="text/css"/>
<script src="jquery.js" type="text/javascript"></script>
<script src="Arbiter.js" type="text/javascript"></script>
<!--<script src="http://jssip.net/download/jssip-devel.js"></script>-->
<script src="JsSIP.js" type="text/javascript"></script>
<script src="init.js" type="text/javascript"></script>
<script src="config.js" type="text/javascript"></script>
<!-- Each uncompressed source file loaded separately -->
<script src="JSCommManager.js" type="text/javascript"></script>
<script src="JSCommUI.js" type="text/javascript"></script>
<script src="webrtc-check.js" type="text/javascript"></script>
<script src="jssip-helper.js" type="text/javascript"></script>
<script src="parseuri.js" type="text/javascript"></script>
</head>
<body>
<h1>JSCommunicator</h1>
<!-- To make this work, you must
a) have mod_include enabled in Apache (on Debian: a2enmod include)
b) have a Directory element in your server configuration
enabling the Includes option, here is an example:
<Directory /var/www/jquery/>
Options +Includes
</Directory>
If you can't enable SSI for some reason, you can work around this by
simply cutting and pasting the contents of jscommunicator.inc into
this HTML file.
If you just see the reference to include jscommunicator.inc below
when viewing the page source in a browser, your SSI configuration
is not working:
-->
<!--#include file="jscommunicator.inc"-->
</body>
</html>