aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/header.inc26
-rw-r--r--financial-news.html13
-rw-r--r--lang.js28
3 files changed, 67 insertions, 0 deletions
diff --git a/common/header.inc b/common/header.inc
index bb392abf..11d92f51 100644
--- a/common/header.inc
+++ b/common/header.inc
@@ -1,3 +1,29 @@
1 <script>
2 /*
3 @licstart The following is the entire license notice for the
4 JavaScript code in this page.
5
6 Copyright (C) 2014,2015 GNUnet e.V.
7
8 The JavaScript code in this page is free software: you can
9 redistribute it and/or modify it under the terms of the GNU
10 General Public License (GNU GPL) as published by the Free Software
11 Foundation, either version 3 of the License, or (at your option)
12 any later version. The code is distributed WITHOUT ANY WARRANTY;
13 without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
15
16 As additional permission under GNU GPL version 3 section 7, you
17 may distribute non-source (e.g., minimized or compacted) forms of
18 that code without the copy of the GNU GPL normally required by
19 section 4, provided you include this license notice and a URL
20 through which recipients can access the Corresponding Source.
21
22 @licend The above is the entire license notice
23 for the JavaScript code in this page.
24 */
25 </script>
26
1 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 27 <meta http-equiv="X-UA-Compatible" content="IE=edge">
2 <meta name="viewport" content="width=device-width, initial-scale=1"> 28 <meta name="viewport" content="width=device-width, initial-scale=1">
3 <meta name="author" content=""> 29 <meta name="author" content="">
diff --git a/financial-news.html b/financial-news.html
index 528e1c41..a5bc05b8 100644
--- a/financial-news.html
+++ b/financial-news.html
@@ -13,6 +13,19 @@
13 <h1 lang="en">Financial News</h1> 13 <h1 lang="en">Financial News</h1>
14 </div> 14 </div>
15 <div class="row"> 15 <div class="row">
16
17 <div class="col-lg-12">
18 <h2>17-3-2015: Pointing Fingers in Apple Pay Fraud</h2>
19 <p>Apple Pay may be easy to use, but the simplistic
20 user identification creates opportunities for fraud,
21 resulting in much higher fraud rates than even with traditional
22 credit card systems.<br>
23 Taler does not require user identification, enabling
24 ease of use while also being effective against fraud.
25 </p>
26 <p><a class="btn btn-info" href="http://www.nytimes.com/2015/03/17/business/banks-find-fraud-abounds-in-apple-pay.html?_r=0" role="button">Source</a></p>
27 </div>
28
16 <div class="col-lg-12"> 29 <div class="col-lg-12">
17 <h2>6-12-2014: Visa and MasterCard's uncompetitive business practices</h2> 30 <h2>6-12-2014: Visa and MasterCard's uncompetitive business practices</h2>
18 <p>The Visa and MasterCard duopoly has eliminated competition among 31 <p>The Visa and MasterCard duopoly has eliminated competition among
diff --git a/lang.js b/lang.js
index c00cf34a..2bb9ea2f 100644
--- a/lang.js
+++ b/lang.js
@@ -1,3 +1,29 @@
1/**
2 * @licstart The following is the entire license notice for the
3 * JavaScript code in this page.
4 *
5 * Copyright (C) 2014 GNUnet e.V.
6 *
7 * The JavaScript code in this page is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU
9 * General Public License (GNU GPL) as published by the Free Software
10 * Foundation, either version 3 of the License, or (at your option)
11 * any later version. The code is distributed WITHOUT ANY WARRANTY;
12 * without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
14 *
15 * As additional permission under GNU GPL version 3 section 7, you
16 * may distribute non-source (e.g., minimized or compacted) forms of
17 * that code without the copy of the GNU GPL normally required by
18 * section 4, provided you include this license notice and a URL
19 * through which recipients can access the Corresponding Source.
20 *
21 * @licend The above is the entire license notice
22 * for the JavaScript code in this page.
23 */
24
25// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
26
1function supports_html5_storage() { 27function supports_html5_storage() {
2 try { 28 try {
3 return 'sessionStorage' in window && window['sessionStorage'] !== null; 29 return 'sessionStorage' in window && window['sessionStorage'] !== null;
@@ -51,3 +77,5 @@ function activate_menu()
51 b[i].setAttribute('class', s + ' active'); 77 b[i].setAttribute('class', s + ' active');
52 } 78 }
53} 79}
80
81// @license-end