vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 2c515ab13c6376587cd568b39a552c0659e7c549
parent 4628e4519de043aae343b4d0a1e2f110bd40aa8a
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Wed,  3 Feb 2021 22:17:57 +0100

Merge pull request #1355 from jjlin/global-domains

Sync global_domains.json with upstream
Diffstat:
Msrc/static/global_domains.json | 11++++++++++-
Mtools/global_domains.py | 7++++---
2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/src/static/global_domains.json b/src/static/global_domains.json @@ -508,7 +508,8 @@ "disneymoviesanywhere.com", "go.com", "disney.com", - "dadt.com" + "dadt.com", + "disneyplus.com" ], "Excluded": false }, @@ -885,5 +886,13 @@ "yandex.uz" ], "Excluded": false + }, + { + "Type": 84, + "Domains": [ + "sonyentertainmentnetwork.com", + "sony.com" + ], + "Excluded": false } ] \ No newline at end of file diff --git a/tools/global_domains.py b/tools/global_domains.py @@ -10,16 +10,17 @@ import urllib.request from collections import OrderedDict -if len(sys.argv) != 2: - print("usage: %s <OUTPUT-FILE>" % sys.argv[0]) +if not (2 <= len(sys.argv) <= 3): + print("usage: %s <OUTPUT-FILE> [GIT-REF]" % sys.argv[0]) print() print("This script generates a global equivalent domains JSON file from") print("the upstream Bitwarden source repo.") sys.exit(1) OUTPUT_FILE = sys.argv[1] +GIT_REF = 'master' if len(sys.argv) == 2 else sys.argv[2] -BASE_URL = 'https://github.com/bitwarden/server/raw/master' +BASE_URL = 'https://github.com/bitwarden/server/raw/%s' % GIT_REF ENUMS_URL = '%s/src/Core/Enums/GlobalEquivalentDomainsType.cs' % BASE_URL DOMAIN_LISTS_URL = '%s/src/Core/Utilities/StaticStore.cs' % BASE_URL