From 51e5c43506801e60d8c90ba419a27583d8a1ce60 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 1 Mar 2016 19:46:20 +0100 Subject: add author --- lib/module-trampoline.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/module-trampoline.js b/lib/module-trampoline.js index 22173aa42..1f0247f35 100644 --- a/lib/module-trampoline.js +++ b/lib/module-trampoline.js @@ -17,6 +17,8 @@ /** * Boilerplate to initialize the module system and call main() + * + * @author Florian Dold */ "use strict"; @@ -75,4 +77,4 @@ System.import(me) .catch((e) => { console.log("trampoline failed"); console.error(e.stack); - }); \ No newline at end of file + }); -- cgit v1.2.3 From 9f1f2ce3d10a8f2468368ef79d38554f965aa6a9 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 1 Mar 2016 19:49:09 +0100 Subject: add author --- lib/wallet/cryptoApi.ts | 8 +++++++- lib/wallet/cryptoLib.ts | 2 +- lib/wallet/helpers.ts | 2 ++ lib/wallet/http.ts | 2 +- lib/wallet/types.ts | 2 ++ lib/wallet/wxApi.ts | 3 ++- 6 files changed, 15 insertions(+), 4 deletions(-) diff --git a/lib/wallet/cryptoApi.ts b/lib/wallet/cryptoApi.ts index 300b928db..3cbed89c3 100644 --- a/lib/wallet/cryptoApi.ts +++ b/lib/wallet/cryptoApi.ts @@ -15,6 +15,12 @@ */ +/** + * API to access the Taler crypto worker thread. + * @author Florian Dold + */ + + import {PreCoin} from "./types"; import {Reserve} from "./types"; import {Denomination} from "./types"; @@ -90,4 +96,4 @@ export class CryptoApi { rsaUnblind(sig: string, bk: string, pk: string): Promise { return this.doRpc("rsaUnblind", sig, bk, pk); } -} \ No newline at end of file +} diff --git a/lib/wallet/cryptoLib.ts b/lib/wallet/cryptoLib.ts index 5546dcebe..769cb3356 100644 --- a/lib/wallet/cryptoLib.ts +++ b/lib/wallet/cryptoLib.ts @@ -14,7 +14,6 @@ TALER; see the file COPYING. If not, If not, see */ -import {Denomination} from "./types"; /** * Web worker for crypto operations. * @author Florian Dold @@ -28,6 +27,7 @@ import create = chrome.alarms.create; import {Offer} from "./wallet"; import {CoinWithDenom} from "./wallet"; import {CoinPaySig} from "./types"; +import {Denomination} from "./types"; export function main(worker: Worker) { diff --git a/lib/wallet/helpers.ts b/lib/wallet/helpers.ts index a7d164102..477fce33f 100644 --- a/lib/wallet/helpers.ts +++ b/lib/wallet/helpers.ts @@ -18,6 +18,8 @@ /** * Smaller helper functions that do not depend * on the emscripten machinery. + * + * @author Florian Dold */ import {AmountJson} from "./types"; diff --git a/lib/wallet/http.ts b/lib/wallet/http.ts index 3f7244e40..3bc80f40a 100644 --- a/lib/wallet/http.ts +++ b/lib/wallet/http.ts @@ -81,4 +81,4 @@ export class RequestException { constructor(detail) { } -} \ No newline at end of file +} diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts index a0e22dbca..748df6f4c 100644 --- a/lib/wallet/types.ts +++ b/lib/wallet/types.ts @@ -21,6 +21,8 @@ * are defined in types.ts are intended to be used by components * that do not depend on the whole wallet implementation (which depends on * emscripten). + * + * @author Florian Dold */ import {Checkable} from "./checkable"; diff --git a/lib/wallet/wxApi.ts b/lib/wallet/wxApi.ts index 9871b6e7f..2b69ff82e 100644 --- a/lib/wallet/wxApi.ts +++ b/lib/wallet/wxApi.ts @@ -19,6 +19,7 @@ import {ReserveCreationInfo} from "./types"; /** * Interface to the wallet through WebExtension messaging. + * @author Florian Dold */ @@ -37,4 +38,4 @@ export function getReserveCreationInfo(baseUrl: string, resolve(resp); }); }); -} \ No newline at end of file +} -- cgit v1.2.3 From 0929bf40c475b73077bb72e0b03615cc067c3801 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 1 Mar 2016 19:50:19 +0100 Subject: add author --- gulpfile.js | 2 ++ pogen/pogen.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index fc0134457..a683e7b17 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -25,6 +25,8 @@ * development * - package: create Chrome extension zip file in * build/. + * + * @author Florian Dold */ const gulp = require("gulp"); diff --git a/pogen/pogen.ts b/pogen/pogen.ts index 77f7ea3dc..5ff182e7c 100644 --- a/pogen/pogen.ts +++ b/pogen/pogen.ts @@ -20,6 +20,8 @@ * * Note that duplicate message IDs are NOT merged, to get the same output as * you would from xgettext, just run msguniq. + * + * @author Florian Dold */ /// -- cgit v1.2.3