Tue, 30 Jul 2013 20:23:00 +0200
Updated jQuery libs, adjusted sources accordingly, and bumped version.
1 <!DOCTYPE html>
2 <!--
3 OTPWCalc - One time password challenge response calculator client
4 Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com>
6 OTPWCalc is free software: you can redistribute it and/or modify
7 it under the terms of the European Union Public Licence, either
8 version 1.1 of the license, or (at your option) any later version.
10 OTPWCalc is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty
12 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 the European Union Public License for more details.
15 You should have received a copy of the European Union Public
16 Licence along with OTPWCalc. If not, please refer to
17 <http://joinup.ec.europa.eu/software/page/eupl/>.
19 This file is part of project OTWPCalc, a one time password challenge
20 response calculator client and is found at http://otpwcalc.europalab.com/
22 hsec.html: W3C HTML implementation
23 -->
25 <html>
26 <head>
27 <meta charset="utf-8">
28 <meta name="viewport" content="width=device-width, initial-scale=1">
29 <title>OTPWCalc</title>
30 <link rel="stylesheet" href="../jquery.mobile/jquery.mobile-1.3.2.min.css" />
31 <link rel="stylesheet" href="../main.css" />
32 <script src="../jquery.core/jquery-2.0.0.min.js"></script>
33 <script src="help.js"></script>
34 <script src="../jquery.mobile/jquery.mobile-1.3.2.min.js"></script>
35 </head>
36 <body>
37 <!-- Data attributes reserved by JQuery Mobile:
38 data-theme, data-ajax, data-filter, data-icon, data-grid,
39 data-rel, data-icon, data-url, data-role, and data-type -->
40 <!-- Also data-dom-cache="true" -->
41 <div data-role="page" class="type-interior oc-swipage" id="security">
42 <div data-role="header" data-position="fixed" data-id="headsecurity">
43 <h1>OTPWCalc</h1>
44 </div><!-- /header -->
45 <div data-role="content">
46 <div data-role="collapsible" data-allow-collapse="false" data-collapsed="false" data-expanded-icon="otpwcalc-security" data-theme="c" data-content-theme="d">
47 <h1>Security</h1>
48 <p style="margin-top: 0; margin-bottom: 0; font-size: 1.1em; line-height: 125%;">General <strong>security concerns</strong> should be directed to the <a target="_blank" href="//list.europalab.com/mailman/listinfo/otpwcalc/">mailing list</a>, while those of a private nature should be sent directly to the <a href="mailto:michael@schloh.com">author</a>. X.509 certificates (for exchanging S/MIME encrypted email) and GnuPG keys (to verify released software signatures) reside on the <a target="_blank" href="//michael.schloh.com/">author's website</a>.</p>
49 <p style="margin-top: 0.5em; margin-bottom: 0; font-size: 1.1em; line-height: 125%;">Please monitor the mailing list and keep your installation of OTPWCalc <strong>up to date</strong>!</p>
50 </div><!-- /collapsible -->
51 </div><!-- /content -->
52 </div><!-- /page -->
53 </body>
54 </html>