-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcallback.html
99 lines (81 loc) · 5.16 KB
/
callback.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
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>OPDS Callback</title>
<meta name="description" content="A message shared between the content provider and an OPDS client." />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" />
<!-- Site CSS -->
<link href="css/opds.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<!-- Navigation -->
<div class="row-fluid hidden-phone">
<a href="index.html"><img src="img/logo.png" alt="Open Publication Distribution System" title="Open Publication Distribution System" /></a>
<ul class="nav nav-pills pull-right">
<li><a href="index.html">Home</a></li>
<li><a href="presentation.html">Presentation</a></li>
<li class="active"><a href="learn.html">Learn</a></li>
<li><a href="https://specs.opds.io">Specifications</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://test.opds.io">Test a client</a></li>
<li><a href="http://opds-validator.appspot.com/">Validate a catalog</a></li>
<li><a href="http://github.com/search?q=OPDS&start_value=1&type=Repositories">Search on GitHub</a></li>
</ul>
</li>
<li><a href="http://groups.google.com/group/openpub">Discussions</a></li>
</ul>
</div>
<div class="row-fluid visible-phone center">
<a href="index.html"><img src="img/logo.png" alt="Open Publication Distribution System" title="Open Publication Distribution System" /></a>
</div>
<hr class="hidden-phone" />
<!-- Presentation -->
<div class="row-fluid append1">
<h1>Callback</h1>
<hr />
<p class="lead">A message shared between the content provider and an OPDS client. They're meant to do all the hard-work for you – download your content, provide extra metadata, add your shelf and provide a catalog – all with a single click.</p>
<p class="lead">Callbacks are an ideal way to link the physical world to the digital world.</p>
</div>
<!-- Main content -->
<div class="row-fluid append1">
<div class="featurette append1">
<img class="featurette-image pull-right" src="img/illustration5.png" alt="A client browsing through books at a retailer" />
<h2 class="featurette-heading">Shop</h2>
<p class="lead">Imagine walking into your favorite indie book retailer, but to buy digital content.</p>
<p class="lead">You can browse around the store or chat with a sales clerk to get recommendations.</p>
</div>
<div class="mini-featurette append2">
<img class="mini-featurette-image pull-left" src="img/illustration6.png" alt="A client buys a book at a retailer and immediately receives it" />
<h2 class="featurette-heading">Acquire</h2>
<p class="lead">Once your selection is done, you can pay with cash or any other payment method.</p>
<p class="lead">No need to set up any kind of account, just give your name and email and you instantly receive a link (to an OPDS callback).</p>
<p class="lead">When you open this link, the reading application receives metadata about your purchase and immediately downloads the content.</p>
</div>
<div class="mini-featurette">
<img class="mini-featurette-image pull-right" src="img/illustration7.png" alt="A tablet where the client's shelf is displayed along with a sales clerk offering her help" />
<h2 class="featurette-heading">Shelf and Catalog</h2>
<p class="lead">Opening the link also sets up your bookshelf and the retailer's catalog for you.</p>
<p class="lead">All your future acquisitions (purchases from a retailer, books borrowed from a library) will be automatically downloaded on your device from now on.</p>
<p class="lead">You can also continue browsing for additional content to acquire since you can now access the full catalog, anywhere you want, right from your device.</p>
</div>
</div>
<hr />
<footer>
<p class="pull-right hidden-phone"><a href="#">Back to top</a></p>
<p>A project of the <a href="http://groups.google.com/group/openpub">OPDS Working Group</a> & <a href="http://www.feedbooks.com/">Feedbooks</a>, © <a href="http://www.lindsaygrime.co.uk/">Lindsay Grime</a> for the illustrations</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>