From 2fd9678ab5c0b785c18679925db1ba697f1c8612 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 20 Nov 2018 14:39:54 -0700 Subject: [PATCH] v2.1.4: update links and urls --- AUTHORS | 2 +- README.md | 20 ++++++++++---------- example/cert-store.js | 2 +- example/challenge-store.js | 2 +- example/letsencrypt.js | 2 +- example/serve.js | 2 +- lib/get-acme-urls.js | 2 +- lib/le-acme-request.js | 2 +- node.js | 2 +- package.json | 8 ++++---- test/test-request.js | 2 +- 11 files changed, 23 insertions(+), 23 deletions(-) diff --git a/AUTHORS b/AUTHORS index 996cc58..0bffa3d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,3 @@ ISRG Anatol Sommer -AJ ONeal (https://daplie.com/) +AJ ONeal (https://coolaj86.com/) diff --git a/README.md b/README.md index 7e9e5fc..750553b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # le-acme-core -Looking for **letiny-core**? Check the [v1.x branch](https://github.com/Daplie/le-acme-core/tree/v1.x). +Looking for **letiny-core**? Check the [v1.x branch](https://git.coolaj86.com/coolaj86/le-acme-core.js/tree/v1.x). @@ -21,9 +21,9 @@ Let's Encrypt v2 (aka ACME v2 or ACME draft 11) is available in [acme-v2.js](htt This is a library / framework for building letsencrypt clients. You probably want one of these pre-built clients instead: - * [`letsencrypt`](https://github.com/Daplie/node-letsencrypt) (compatible with the official client) + * [`letsencrypt`](https://git.coolaj86.com/coolaj86/greenlock.js) (compatible with the official client) * `letiny` (lightweight client cli) - * [`letsencrypt-express`](https://github.com/Daplie/letsencrypt-express) (automatic https for express) + * [`letsencrypt-express`](https://git.coolaj86.com/coolaj86/greenlock-express.js) (automatic https for express) ## Install & Usage: @@ -82,7 +82,7 @@ Install le-acme-core and its dependencies. **Note**: it's okay if you're on wind and `ursa` fails to compile. It'll still work. ```bash -git clone https://github.com/Daplie/le-acme-core.git ~/le-acme-core +git clone https://git.coolaj86.com/coolaj86/le-acme-core.js.git ~/le-acme-core pushd ~/le-acme-core npm install @@ -156,7 +156,7 @@ ACME.Acme // Signs requests with JWK Below you'll find a stripped-down example. You can see the full example in the example folder. -* [example/](https://github.com/Daplie/le-acme-core/blob/master/example/) +* [example/](https://git.coolaj86.com/coolaj86/le-acme-core.js/blob/master/example/) #### Register Account & Domain @@ -226,7 +226,7 @@ function runDemo() { ``` **But wait**, there's more! -See [example/letsencrypt.js](https://github.com/Daplie/le-acme-core/blob/master/example/letsencrypt.js) +See [example/letsencrypt.js](https://git.coolaj86.com/coolaj86/le-acme-core.js/blob/master/example/letsencrypt.js) #### Run a Server on 80, 443, and 5001 (https/tls) @@ -273,7 +273,7 @@ http.createServer(acmeResponder).listen(80, function () { ``` **But wait**, there's more! -See [example/serve.js](https://github.com/Daplie/le-acme-core/blob/master/example/serve.js) +See [example/serve.js](https://git.coolaj86.com/coolaj86/le-acme-core.js/blob/master/example/serve.js) #### Put some storage in place @@ -314,14 +314,14 @@ var certStore = { **But wait**, there's more! See -* [example/challenge-store.js](https://github.com/Daplie/le-acme-core/blob/master/challenge-store.js) -* [example/cert-store.js](https://github.com/Daplie/le-acme-core/blob/master/cert-store.js) +* [example/challenge-store.js](https://git.coolaj86.com/coolaj86/le-acme-core.js/blob/master/challenge-store.js) +* [example/cert-store.js](https://git.coolaj86.com/coolaj86/le-acme-core.js/blob/master/cert-store.js) ## Authors * ISRG * Anatol Sommer (https://github.com/anatolsommer) - * AJ ONeal (https://daplie.com) + * AJ ONeal (https://coolaj86.com) ## Licence diff --git a/example/cert-store.js b/example/cert-store.js index 3d44d4c..ae7b11f 100644 --- a/example/cert-store.js +++ b/example/cert-store.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/example/challenge-store.js b/example/challenge-store.js index fea8a47..dd00ca6 100644 --- a/example/challenge-store.js +++ b/example/challenge-store.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/example/letsencrypt.js b/example/letsencrypt.js index a16494c..aa13efd 100644 --- a/example/letsencrypt.js +++ b/example/letsencrypt.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/example/serve.js b/example/serve.js index 1c430cd..66e8424 100644 --- a/example/serve.js +++ b/example/serve.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/lib/get-acme-urls.js b/lib/get-acme-urls.js index 85f71ad..2a083d2 100644 --- a/lib/get-acme-urls.js +++ b/lib/get-acme-urls.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/lib/le-acme-request.js b/lib/le-acme-request.js index d3c630c..f250de6 100644 --- a/lib/le-acme-request.js +++ b/lib/le-acme-request.js @@ -12,7 +12,7 @@ const version = pkgJSON.version; const os = require('os'); const uaDefaults = { - pkg: `Daplie Greenlock/${version}` + pkg: `Greenlock/${version}` , os: ` (${os.type()}; ${process.arch} ${os.platform()} ${os.release()})` , node: ` Node.js/${process.version}` , user: '' diff --git a/node.js b/node.js index 36c09fd..1b9d86c 100644 --- a/node.js +++ b/node.js @@ -1,6 +1,6 @@ /*! * letiny-core - * Copyright(c) 2015 AJ ONeal https://daplie.com + * Copyright(c) 2015 AJ ONeal https://coolaj86.com * Apache-2.0 OR MIT (and hence also MPL 2.0) */ 'use strict'; diff --git a/package.json b/package.json index e0a6588..5ab4466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "le-acme-core", - "version": "2.1.3", + "version": "2.1.4", "description": "A framework for building letsencrypt clients, forked from letiny", "main": "node.js", "browser": "browser.js", @@ -10,13 +10,13 @@ }, "repository": { "type": "git", - "url": "git+https://git.daplie.com/Daplie/le-acme-core.git" + "url": "git+https://git.coolaj86.com/coolaj86/le-acme-core.js.git" }, "license": "MPL-2.0", "bugs": { - "url": "https://git.daplie.com/Daplie/le-acme-core/issues" + "url": "https://git.coolaj86.com/coolaj86/le-acme-core.js/issues" }, - "homepage": "https://git.daplie.com/Daplie/le-acme-core#readme", + "homepage": "https://git.coolaj86.com/coolaj86/le-acme-core.js#readme", "keywords": [ "le-acme", "le-acme-", diff --git a/test/test-request.js b/test/test-request.js index cb258ad..ee07c9b 100644 --- a/test/test-request.js +++ b/test/test-request.js @@ -12,7 +12,7 @@ const chai = require('chai'); chai.use(require('chai-string')); const expect = chai.expect; -const productId = 'Daplie Greenlock'; +const productId = 'Greenlock'; const UA = 'User-Agent'; function checkRequest(req, done, tester) {