From 4ccce6a95a1e3166e68b1617e5fddf0440ef1630 Mon Sep 17 00:00:00 2001 From: humanacollaborator Date: Mon, 12 Apr 2021 09:33:35 -0400 Subject: [PATCH] add gitee.com --- forge_comparison.md | 1 + input_data/forges.sql | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/forge_comparison.md b/forge_comparison.md index 33e2fa4..283a6da 100644 --- a/forge_comparison.md +++ b/forge_comparison.md @@ -15,6 +15,7 @@ The following forges have no significant ethical issues: [framagit.org](https://framagit.org)|🟢|Gitlab CE 13.10.2|n|n|n|n|[may become more restricted](https://framablog.org/2019/09/26/lets-de-frama-tify-the-internet) in mid-2021| [notabug.org](https://notabug.org)([🧅](http://qs3zumwfci4tntnd.onion))|🟢|Gogs|n|n|n|n|based on [liberated](https://notabug.org/hp/gogs) fork of Gogs; [supports Tor](https://notabug.org/tor) (the *onion* web UI is currently disabled in response to attack but the onion site accepts git connections); supports SSH keys and SSH over Tor to NAB's onion service; no e-voting; NAB doesn't associate PGP keys to users, so PGP signed commits may be unavailable or more manual work needed.| [launchpad.net](https://launchpad.net)|🟢|Launchpad|n|n|n|n|It's [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki| +[gitee.com](https://gitee.com)|🟢|OSCHINA|n|n|n|n|based in China; registration over Tor with throwaway email works; no automatic mirror (unlike Gitea); some areas written in simplified chinese| [sr.ht](https://sr.ht)|🟢|Sourcehut|n|n|n|n|javascript-free| [git.jami.net](https://git.jami.net)|🟢|Gitlab (CE)|n|n|n|n|possibly restricted to Jami efforts; acces to help page blocked to non-members so CE/EE unknown| [gitlab.freedesktop.org](https://gitlab.freedesktop.org)|🟢|Gitlab (CE)|n|n|n|n|possibly restricted to Freedesktop efforts| diff --git a/input_data/forges.sql b/input_data/forges.sql index 58fbd69..75adbc6 100644 --- a/input_data/forges.sql +++ b/input_data/forges.sql @@ -12,11 +12,13 @@ create table if not exists forgesTbl forced_nfsw boolean not null default 0, aws boolean not null default 0, nation_discrimination boolean not null default 0, - notes text, + notes text, primary key (url_clrnet,url_onion)); /* check(software in ('Bitbucket Server', 'Gitea', 'gitlab_ce', 'gitlab_ee', 'Gogs', 'Launchpad', 'Sourcehut', 'other')) not null default 'other'*/ - + +insert into forgesTbl (url_clrnet, software, notes) values ('https://gitee.com','OSCHINA','based in China; registration over Tor with throwaway email works; no automatic mirror (unlike Gitea); some areas written in simplified chinese'); + insert into forgesTbl (url_clrnet, software, forced_nfsw, aws, notes) values ('https://bitbucket.org','Bitbucket Server',1,1,'needs non-free javascript that [clusterfucks uMatrix](https://github.com/privacytoolsIO/privacytools.io/issues/843#issuecomment-483830547); has some relationship with Netlify; access to source code [restricted](https://en.wikipedia.org/wiki/Bitbucket#Bitbucket_Server)'); insert into forgesTbl (url_clrnet, url_onion, software, notes) values ('https://notabug.org','http://qs3zumwfci4tntnd.onion','Gogs','based on [liberated](https://notabug.org/hp/gogs) fork of Gogs; [supports Tor](https://notabug.org/tor) (the *onion* web UI is currently disabled in response to attack but the onion site accepts git connections); supports SSH keys and SSH over Tor to NAB''s onion service; no e-voting; NAB doesn''t associate PGP keys to users, so PGP signed commits may be unavailable or more manual work needed.');