-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (91 loc) · 5.58 KB
/
index.html
File metadata and controls
109 lines (91 loc) · 5.58 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>The Junction Platform</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body id="mainBody">
<div class="wrapper"></div>
<div class="navbar">
<a href="http://mobisocial.stanford.edu/index.php">Research</a> | <a href="http://mobisocial.stanford.edu/index.php#members">Members</a> | <a href="http://mobisocial.stanford.edu/index.php#publications">Publications</a> | <a href="http://mobisocial.stanford.edu/index.php#software">Software</a>
</div>
<div class="content">
<div id="buttonTry"><a href="demos.html"><img src="assets/button_try.png"/></a></div>
<div id="buttonLearn"><a href="http://mobisocial.stanford.edu/index.php?page=junction"><img src="assets/button_learn.png"/></a></div>
<div class="catchphrase">
<h2>Develop rich, multi-user applications without writing any server code!</h2>
</div>
<table id="videoTable">
<tr>
<td>
<object width="400" height="240"><param name="movie" value="http://www.youtube.com/v/dG4uRyNQVhI?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dG4uRyNQVhI?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="240"></embed></object>
</td>
<td>
<object width="400" height="240"><param name="movie" value="http://www.youtube.com/v/ob1b8gmWm0Q?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ob1b8gmWm0Q?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="240"></embed></object>
</td>
</tr>
<tr>
<td>
<object width="400" height="240"><param name="movie" value="http://www.youtube.com/v/-9QOcDV4VZI?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-9QOcDV4VZI?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="240"></embed></object>
</td>
<td>
<object width="400" height="240"><param name="movie" value="http://www.youtube.com/v/Q7dga2cl6d8?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Q7dga2cl6d8?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="240"></embed></object>
</td>
</tr>
</table>
<h2> What is Junction? </h2>
<p>
Junction is a platform for writing applications that span multiple devices. Junction lets you easily connect two or more phones, web browsers, TVs, tablets, PCs, and servers together to make something happen. A few things you can do with Junction:
<ul>
<li>Mobile-to-mobile applications and games.</li>
<li>Server-side push to web pages.</li>
<li>Use phones to control a settop box or web-based application.</li>
</ul>
<p>
The Junction platform is open source, and also leverages standards when possible to make developing with Junction even easier. Currently, we have libraries for:
<ul>
<li>iOS (for iPhone and iPad)
<li>Java
<li>Android
<li>Javascript
</ul>
</p>
<h2>How does it work?</h2>
<div id="architecture">
<div id="architectureText">
<p>
Junction uses a <em>switchboard</em> service to allow devices to talk to each other. The switchboard runs one or more <em>activities</em>, for example a game of poker or a collaborative whiteboard session.
</p>
<p>
A switchboard can be used for any and all activities. You can host a switchboard yourself or leverage an existing switchboard like ours. And if you're worried about privacy, it's easy to encrypt your activity's traffic so only your devices know what's going on.
</p>
<p>Messaging is just one part of writing distributed programs. Junction also helps you:
<ul>
<li>Find devices to share an activity. With a few lines of code, devices can be paired by sharing a link, showing a QR code, or sending an SMS.
<li>Deploy your application. If two users want to play a game, but only one of them has it involved, Junction will prompt the newcomer to download your application automatically.
<li>Manage state. For more complex applications, Junction includes a system for easily managing objects and state in your distributed program.
</ul>
</p>
</div>
<div id="architectureImg">
<img src="assets/architecture.png"/>
</div>
<div id="architectureFooter"> </div>
</div>
<h2>Get started with Junction</h2>
<p>
Try some applications built on the junction platform:
</p>
<div><a href="demos.html"><img src="assets/button_try.png"/></a></div>
<br/>
<p>
Or build your own:
</p>
<div><a href="http://mobisocial.stanford.edu/index.php?page=junction"><img src="assets/button_learn.png"/></a></div>
<hr/>
</div> <!-- junction -->
</div>
</body>
</html>