Fri, 26 Apr 2013 19:10:52 +0200
Implement touch gestures including left and right history swipes,
relocate help pages, update app cache manifest, and bump version
pending forthcoming release.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <!-- |
michael@0 | 3 | OTPWCalc - One time password challenge response calculator client |
michael@0 | 4 | Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> |
michael@0 | 5 | |
michael@0 | 6 | OTPWCalc is free software: you can redistribute it and/or modify |
michael@0 | 7 | it under the terms of the European Union Public Licence, either |
michael@0 | 8 | version 1.1 of the license, or (at your option) any later version. |
michael@0 | 9 | |
michael@0 | 10 | OTPWCalc is distributed in the hope that it will be useful, |
michael@0 | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty |
michael@0 | 12 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
michael@0 | 13 | the European Union Public License for more details. |
michael@0 | 14 | |
michael@0 | 15 | You should have received a copy of the European Union Public |
michael@0 | 16 | Licence along with OTPWCalc. If not, please refer to |
michael@0 | 17 | <http://joinup.ec.europa.eu/software/page/eupl/>. |
michael@0 | 18 | |
michael@0 | 19 | This file is part of project OTWPCalc, a one time password challenge |
michael@0 | 20 | response calculator client and is found at http://otpwcalc.europalab.com/ |
michael@0 | 21 | |
michael@0 | 22 | help.html: W3C HTML implementation |
michael@0 | 23 | --> |
michael@0 | 24 | |
michael@0 | 25 | <html> |
michael@0 | 26 | <head> |
michael@0 | 27 | <meta charset="utf-8"> |
michael@0 | 28 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
michael@0 | 29 | <title>OTPWCalc</title> |
michael@4 | 30 | <link rel="stylesheet" href="../jquery.mobile/jquery.mobile-1.3.1.min.css" /> |
michael@4 | 31 | <link rel="stylesheet" href="../main.css" /> |
michael@4 | 32 | <script src="../jquery.core/jquery-1.9.1.js"></script> |
michael@0 | 33 | <script src="help.js"></script> |
michael@4 | 34 | <script src="../jquery.mobile/jquery.mobile-1.3.1.min.js"></script> |
michael@0 | 35 | </head> |
michael@0 | 36 | <body> |
michael@0 | 37 | <!-- Data attributes reserved by JQuery Mobile: |
michael@0 | 38 | data-theme, data-ajax, data-filter, data-icon, data-grid, |
michael@0 | 39 | data-rel, data-icon, data-url, data-role, and data-type --> |
michael@4 | 40 | <!-- Also data-dom-cache="true" --> |
michael@4 | 41 | <div data-role="page" class="type-interior oc-swipage" id="helphaupt"> |
michael@0 | 42 | <!-- H1 header data-role good for Search Engine Optimization --> |
michael@0 | 43 | <!--<div data-role="header" data-position="inline">--> |
michael@0 | 44 | <div data-role="header" data-position="fixed" data-id="headhelp"> |
michael@0 | 45 | <h1>OTPWCalc</h1> |
michael@0 | 46 | </div><!-- /header --> |
michael@0 | 47 | <div data-role="content"> |
michael@0 | 48 | <div class="content-primary"> |
michael@0 | 49 | <h1 style="text-align: center; margin: 0;">Help</h1> |
michael@4 | 50 | <a href="hfaq.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-question" data-iconpos="right">F. A. Q.</a> |
michael@4 | 51 | <a href="hqst.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-qstart" data-iconpos="right">Quickstart</a> |
michael@4 | 52 | <a href="hman.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-manpage" data-iconpos="right">Manpage</a> |
michael@4 | 53 | <a href="//list.europalab.com/mailman/listinfo/otpwcalc/" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-email" data-iconpos="right">Mailinglist</a> |
michael@4 | 54 | <a href="hsec.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-security" data-iconpos="right">Security</a> |
michael@4 | 55 | <a href="hsta.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-document" data-iconpos="right">Standards</a> |
michael@0 | 56 | </div><!-- /content-primary --> |
michael@0 | 57 | </div><!-- /content --> |
michael@0 | 58 | </div><!-- /page --> |
michael@0 | 59 | </body> |
michael@0 | 60 | </html> |