From ca7bed64b66006f3377204c9584c0b1b249ac402 Mon Sep 17 00:00:00 2001 From: Vic Date: Thu, 25 Apr 2019 20:49:37 -0400 Subject: [PATCH] Sync --- other/{stripe => cart}/.gitignore | 0 other/{stripe => cart}/Caddyfile | 0 other/{stripe => cart}/README.md | 2 +- other/{stripe => cart}/s-api/.gitignore | 0 other/{stripe => cart}/s-api/.yarnclean | 0 other/{stripe => cart}/s-api/index.ts | 0 other/{stripe => cart}/s-api/keysEx.yaml | 0 other/{stripe => cart}/s-api/package.json | 0 other/{stripe => cart}/s-api/tsconfig.json | 0 other/{stripe => cart}/www/assets/css/base.pug | 0 .../www/assets/js/stripe-register.js | 0 other/{stripe => cart}/www/chargedPg/dat.yaml | 0 other/{stripe => cart}/www/chargedPg/index.pug | 0 other/{stripe => cart}/www/dat.yaml | 0 other/{stripe => cart}/www/favicon.ico | Bin other/{stripe => cart}/www/form/dat.yaml | 0 other/{stripe => cart}/www/form/index.pug | 3 +++ other/{stripe => cart}/www/index.pug | 0 18 files changed, 4 insertions(+), 1 deletion(-) rename other/{stripe => cart}/.gitignore (100%) rename other/{stripe => cart}/Caddyfile (100%) rename other/{stripe => cart}/README.md (76%) rename other/{stripe => cart}/s-api/.gitignore (100%) rename other/{stripe => cart}/s-api/.yarnclean (100%) rename other/{stripe => cart}/s-api/index.ts (100%) rename other/{stripe => cart}/s-api/keysEx.yaml (100%) rename other/{stripe => cart}/s-api/package.json (100%) rename other/{stripe => cart}/s-api/tsconfig.json (100%) rename other/{stripe => cart}/www/assets/css/base.pug (100%) rename other/{stripe => cart}/www/assets/js/stripe-register.js (100%) rename other/{stripe => cart}/www/chargedPg/dat.yaml (100%) rename other/{stripe => cart}/www/chargedPg/index.pug (100%) rename other/{stripe => cart}/www/dat.yaml (100%) rename other/{stripe => cart}/www/favicon.ico (100%) rename other/{stripe => cart}/www/form/dat.yaml (100%) rename other/{stripe => cart}/www/form/index.pug (99%) rename other/{stripe => cart}/www/index.pug (100%) diff --git a/other/stripe/.gitignore b/other/cart/.gitignore similarity index 100% rename from other/stripe/.gitignore rename to other/cart/.gitignore diff --git a/other/stripe/Caddyfile b/other/cart/Caddyfile similarity index 100% rename from other/stripe/Caddyfile rename to other/cart/Caddyfile diff --git a/other/stripe/README.md b/other/cart/README.md similarity index 76% rename from other/stripe/README.md rename to other/cart/README.md index 93f8815c..a8c2cf87 100644 --- a/other/stripe/README.md +++ b/other/cart/README.md @@ -1,7 +1,7 @@ # stripe -http://stripe.com/docs/checkout/express +https://stripe.com/docs/payments/checkout Client integration diff --git a/other/stripe/s-api/.gitignore b/other/cart/s-api/.gitignore similarity index 100% rename from other/stripe/s-api/.gitignore rename to other/cart/s-api/.gitignore diff --git a/other/stripe/s-api/.yarnclean b/other/cart/s-api/.yarnclean similarity index 100% rename from other/stripe/s-api/.yarnclean rename to other/cart/s-api/.yarnclean diff --git a/other/stripe/s-api/index.ts b/other/cart/s-api/index.ts similarity index 100% rename from other/stripe/s-api/index.ts rename to other/cart/s-api/index.ts diff --git a/other/stripe/s-api/keysEx.yaml b/other/cart/s-api/keysEx.yaml similarity index 100% rename from other/stripe/s-api/keysEx.yaml rename to other/cart/s-api/keysEx.yaml diff --git a/other/stripe/s-api/package.json b/other/cart/s-api/package.json similarity index 100% rename from other/stripe/s-api/package.json rename to other/cart/s-api/package.json diff --git a/other/stripe/s-api/tsconfig.json b/other/cart/s-api/tsconfig.json similarity index 100% rename from other/stripe/s-api/tsconfig.json rename to other/cart/s-api/tsconfig.json diff --git a/other/stripe/www/assets/css/base.pug b/other/cart/www/assets/css/base.pug similarity index 100% rename from other/stripe/www/assets/css/base.pug rename to other/cart/www/assets/css/base.pug diff --git a/other/stripe/www/assets/js/stripe-register.js b/other/cart/www/assets/js/stripe-register.js similarity index 100% rename from other/stripe/www/assets/js/stripe-register.js rename to other/cart/www/assets/js/stripe-register.js diff --git a/other/stripe/www/chargedPg/dat.yaml b/other/cart/www/chargedPg/dat.yaml similarity index 100% rename from other/stripe/www/chargedPg/dat.yaml rename to other/cart/www/chargedPg/dat.yaml diff --git a/other/stripe/www/chargedPg/index.pug b/other/cart/www/chargedPg/index.pug similarity index 100% rename from other/stripe/www/chargedPg/index.pug rename to other/cart/www/chargedPg/index.pug diff --git a/other/stripe/www/dat.yaml b/other/cart/www/dat.yaml similarity index 100% rename from other/stripe/www/dat.yaml rename to other/cart/www/dat.yaml diff --git a/other/stripe/www/favicon.ico b/other/cart/www/favicon.ico similarity index 100% rename from other/stripe/www/favicon.ico rename to other/cart/www/favicon.ico diff --git a/other/stripe/www/form/dat.yaml b/other/cart/www/form/dat.yaml similarity index 100% rename from other/stripe/www/form/dat.yaml rename to other/cart/www/form/dat.yaml diff --git a/other/stripe/www/form/index.pug b/other/cart/www/form/index.pug similarity index 99% rename from other/stripe/www/form/index.pug rename to other/cart/www/form/index.pug index 26dfe032..50eecd56 100644 --- a/other/stripe/www/form/index.pug +++ b/other/cart/www/form/index.pug @@ -5,7 +5,10 @@ head script. ROOT = '#{ROOT}' //- sets global pug and .js from dat.yaml script(src=ROOT + '../assets/js/stripe-register.js') + + // this is nice!!! link(href='//cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css', rel='stylesheet', type='text/css') + //- link(href=ROOT + '../assets/css/base.css', rel='stylesheet', type='text/css') include ../assets/css/base.pug diff --git a/other/stripe/www/index.pug b/other/cart/www/index.pug similarity index 100% rename from other/stripe/www/index.pug rename to other/cart/www/index.pug