-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistillery.html
95 lines (88 loc) · 2.89 KB
/
distillery.html
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
<html>
<head>
<title>Distillery</title>
<link rel="stylesheet" href="main.css">
<script src="util.js"></script>
<script src="parse.js"></script>
<script src="net.js"></script>
<script src="employee.js"></script>
<script src="observable.js"></script>
<script src="view.js"></script>
<script src="model.js"></script>
<script src="manager.js"></script>
<script src="gameModel.js"></script>
<script src="gameView.js"></script>
<script src="userModel.js"></script>
<script src="userView.js"></script>
<script src="aggregate.js"></script>
<script src="simpleUserAggregate.js"></script>
<script src="selectedPanel.js"></script>
<script src="gamesPanel.js"></script>
<script src="friendsPanel.js"></script>
<script src="main.js"></script>
</head>
<body>
<div>
<header>
<img src="icon128.png">
<h1>Distillery</h1>
<aside>
Distillery helps you decide what to play with your <a href="http://store.steampowered.com/">Steam</a>
friends by showing you which games you have in common.
</aside>
<div class="clear"></div>
</header>
<section id="friends">
<h2>Friends</h1>
<form>
<input type="text">
<input type="submit" value="Get friends">
</form>
<div class="content">
<p class="help">
The friends of the user you input above will be displayed here.
Clicking a friend's icon will select that friend.
Users with an orange or red border aren't visible due to their privacy settings -
you won't be able to see which games they own.
<a href="https://steamcommunity.com/">Log in to the Steam Community site</a>
to see your friends whose privacy is set to Friends Only.
</p>
</div>
</section>
<div class="clear"></div>
</div>
<div>
<section id="selected">
<h2>Selected Users</h1>
<form>
<input type="text">
<input type="submit" value="Select this user">
<input type="button" value="Clear">
</form>
<div class="content">
<p class="help">
Users who appear here will have their owned games shown below.
To select a user, you can input their custom URL in the box above if they've chosen one:
<code>http://steamcommunity.com/id/<strong>myCustomURL</strong></code>
Or their ID number, as seen in their default profile page URL:
<code>http://steamcommunity.com/profiles/<strong>12345678901234567</strong></code>
Clicking a selected user's icon will deselect that user.
</p>
</div>
</section>
<section id="games">
<h2>Games</h1>
<div class="content">
<p class="help">
Games owned by the selected users above will be listed here.
The games will be sorted by the number of selected users who own them -
that is, the games which the most users have in common will be at the top.
You can see which users own or don't own a particular game by clicking on
the number of owners.
</p>
</div>
</section>
<div class="clear"></div>
</div>
</body>
</html>