diff options
Diffstat (limited to 'extension/background')
-rw-r--r-- | extension/background/db.js | 15 | ||||
-rw-r--r-- | extension/background/db.ts | 18 | ||||
-rw-r--r-- | extension/background/emscriptif.js | 5 | ||||
-rw-r--r-- | extension/background/emscriptif.ts | 5 | ||||
-rw-r--r-- | extension/background/wallet.js | 15 | ||||
-rw-r--r-- | extension/background/wallet.ts | 16 |
6 files changed, 67 insertions, 7 deletions
diff --git a/extension/background/db.js b/extension/background/db.js index f6d81d9ac..d9bff8fee 100644 --- a/extension/background/db.js +++ b/extension/background/db.js @@ -1,3 +1,18 @@ +/* + This file is part of TALER + (C) 2015 GNUnet e.V. + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> + */ "use strict"; const DB_NAME = "taler"; const DB_VERSION = 1; diff --git a/extension/background/db.ts b/extension/background/db.ts index 40c1cdaca..92fff47f8 100644 --- a/extension/background/db.ts +++ b/extension/background/db.ts @@ -1,4 +1,21 @@ +/* + This file is part of TALER + (C) 2015 GNUnet e.V. + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> + */ + "use strict"; + /** * Declarations and helpers for * things that are stored in the wallet's @@ -6,7 +23,6 @@ */ - namespace Db { export interface Mint { baseUrl: string; diff --git a/extension/background/emscriptif.js b/extension/background/emscriptif.js index 5d8623b3e..914cc4a48 100644 --- a/extension/background/emscriptif.js +++ b/extension/background/emscriptif.js @@ -1,7 +1,6 @@ /* - This file is part of TALER - Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors) + (C) 2015 GNUnet e.V. TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -12,7 +11,7 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with - TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ "use strict"; // Size of a native pointer. diff --git a/extension/background/emscriptif.ts b/extension/background/emscriptif.ts index 3daf27b17..e8c9e0cec 100644 --- a/extension/background/emscriptif.ts +++ b/extension/background/emscriptif.ts @@ -1,7 +1,6 @@ /* - This file is part of TALER - Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors) + (C) 2015 GNUnet e.V. TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -12,7 +11,7 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with - TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ "use strict"; diff --git a/extension/background/wallet.js b/extension/background/wallet.js index f1711b435..9f62c29f5 100644 --- a/extension/background/wallet.js +++ b/extension/background/wallet.js @@ -1,3 +1,18 @@ +/* + This file is part of TALER + (C) 2015 GNUnet e.V. + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> + */ /// <reference path="../decl/urijs/URIjs.d.ts" /> /// <reference path="../decl/chrome/chrome.d.ts" /> 'use strict'; diff --git a/extension/background/wallet.ts b/extension/background/wallet.ts index bf91c3e27..f8f75b16f 100644 --- a/extension/background/wallet.ts +++ b/extension/background/wallet.ts @@ -1,3 +1,19 @@ +/* + This file is part of TALER + (C) 2015 GNUnet e.V. + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> + */ + /// <reference path="../decl/urijs/URIjs.d.ts" /> /// <reference path="../decl/chrome/chrome.d.ts" /> 'use strict'; |