Browse Source

Add website for first run webview

master
Chris Smith 14 years ago
parent
commit
1430fc3ea4
2 changed files with 68 additions and 0 deletions
  1. BIN
      website/contextanalyser/icon.png
  2. 68
    0
      website/contextanalyser/index.html

BIN
website/contextanalyser/icon.png View File


+ 68
- 0
website/contextanalyser/index.html View File

@@ -0,0 +1,68 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+  <title>Context Analyser</title>
5
+  <style type="text/css">
6
+   body {
7
+    font-family: sans-serif;
8
+    margin: 0;
9
+    padding: 0;
10
+   }
11
+
12
+   h1 {
13
+    padding: 5px 0 2px 0;
14
+    margin: 0 0 15px 0;
15
+    text-align: center;
16
+    width: 100%;
17
+    border-bottom: 2px solid #00c;
18
+    font-size: x-large;
19
+    font-variant: small-caps;
20
+   }
21
+
22
+   h1 img { 
23
+    width: 32px;
24
+    height: 32px;
25
+    vertical-align: middle;
26
+   }
27
+
28
+   p {
29
+    margin: 5px 10px 0px 10px;
30
+   }
31
+
32
+   ul {
33
+    margin: 5px 0 0 0;
34
+   }
35
+  </style>
36
+ </head>
37
+ <body>
38
+  <h1><img src="icon.png" alt="Context Analyser"> Context Analyser</h1>
39
+  <p>
40
+   Welcome to the <em>Context Analyser</em>. This application attempts to infer
41
+   your current context by monitoring the device's sensors. 
42
+  </p>
43
+  <p>
44
+   Your <em>context</em> consits of your current:
45
+  </p>
46
+  <ul>
47
+   <li><strong>Activity</strong> - 'walking', 'sitting', etc,</li>
48
+   <li><strong>Location</strong> - 'home', 'work', etc, and</li>
49
+   <li><strong>Company</strong> - 'alone', 'with friends', etc</li>
50
+  </ul>
51
+  <p>
52
+   The context analyser also uses this information to predict your destination
53
+   if you are travelling.
54
+  </p>
55
+  <p>
56
+   The Context Analyser by itself <em>doesn't let you see or do anything</em>.
57
+   This is it! You need to install one or more applications which integrate
58
+   with the Context Analyser to see any benefit. Maybe you'd like to try one
59
+   of these?
60
+  </p>
61
+  <ul class="apps">
62
+   <li><strong>Places</strong> - displays places detected by the Context Analyser</li>
63
+   <li><strong>Locale Plugin</strong> - allows you to program Locale conditions based on your actions</li>
64
+   <li><strong>Context Home Screen</strong> - adapts the stock home screen to include context-aware suggestions</li>
65
+   <li><strong>Clippy</strong> - pops up when the analyser makes predictions and suggests useful actions</li>
66
+  </ul>
67
+ </body>
68
+</html>

Loading…
Cancel
Save