mirror of
https://git.sdf.org/humanacollaborator/humanacollabora.git
synced 2025-10-16 12:30:37 -04:00
add github & sourceforge
This commit is contained in:
parent
a2c7b73e67
commit
042bc63f97
3 changed files with 23 additions and 16 deletions
|
@ -1,15 +1,16 @@
|
|||
create table if not exists forgesTbl
|
||||
(url_clrnet text,
|
||||
url_onion text,
|
||||
software text check(software in ('Bitbucket Server', 'Gitea', 'gitlab_ce', 'gitlab_ee', 'Gogs', 'Launchpad', 'Sourcehut', 'other')) not null default 'other',
|
||||
lst_kind text check(lst_kind in ('black', 'gray', 'white')) not null default 'white',
|
||||
hrecaptcha text check(hrecaptcha in ('unavoidable', 'non-essential tasks', 'never')) not null default 'never',
|
||||
dead boolean not null default 0,
|
||||
openpubreg boolean not null default 1,
|
||||
cflogin boolean not null default 0,
|
||||
antitor boolean not null default 0,
|
||||
forced_nfsw boolean not null default 0,
|
||||
aws boolean not null default 0,
|
||||
(url_clrnet text,
|
||||
url_onion text,
|
||||
software text check(software in ('Bitbucket Server', 'Gitea', 'gitlab_ce', 'gitlab_ee', 'Gogs', 'Launchpad', 'Sourcehut', 'other')) not null default 'other',
|
||||
lst_kind text check(lst_kind in ('black', 'gray', 'white')) not null default 'white',
|
||||
hrecaptcha text check(hrecaptcha in ('unavoidable', 'non-essential tasks', 'never')) not null default 'never',
|
||||
dead boolean not null default 0,
|
||||
openpubreg boolean not null default 1,
|
||||
cflogin boolean not null default 0,
|
||||
antitor boolean not null default 0,
|
||||
forced_nfsw boolean not null default 0,
|
||||
aws boolean not null default 0,
|
||||
nation_discrimination boolean not null default 0,
|
||||
notes text,
|
||||
primary key (url_clrnet,url_onion));
|
||||
|
||||
|
@ -17,7 +18,10 @@ insert into forgesTbl (url_clrnet, software, forced_nfsw, aws, notes) values ('h
|
|||
|
||||
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.');
|
||||
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://launchpad.net','Launchpad','JavaScript is non-free, but it''s [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki');
|
||||
insert into forgesTbl (url_clrnet, nation_discrimination, notes) values ('https://sourceforge.net',1,'Important site [functionality does not work without non-free JavaScript](https://www.gnu.org/software/repo-criteria-evaluation.html); access granted or denied based on national origin');
|
||||
insert into forgesTbl (url_clrnet, forced_nfsw, nation_discrimination, notes) values ('https://github.com',1,1,'[copious ethical issues](github.md)');
|
||||
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://launchpad.net','Launchpad','It''s [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki');
|
||||
insert into forgesTbl (url_clrnet, software, dead) values ('https://yerbamate.dev','Gitea',1);
|
||||
insert into forgesTbl (url_clrnet, antitor, notes) values ('https://git.openprivacy.ca',1,'Tor users get 404 - suspected botnet; [listed](https://codeberg.org/crimeflare/cloudflare-tor/src/branch/master/cloudflare_users/cloudflare_supporter.txt) as a Cloudflare supporter');
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://sr.ht','Sourcehut', 'javascript-free');
|
||||
|
@ -37,7 +41,7 @@ insert into forgesTbl (url_clrnet, software) values ('https://framagit.org','git
|
|||
insert into forgesTbl (url_clrnet, software, hrecaptcha, notes) values ('https://git.feneas.org','gitlab_ce','unavoidable','reCAPTCHA impedes registration and imposes non-free s/w');
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://git.hardenedbsd.org','gitlab_ce','possibly restricted to BSD efforts');
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://git.jami.net','gitlab_ce','possibly restricted to Jami efforts');
|
||||
insert into forgesTbl (url_clrnet, software, cflogin, hrecaptcha, notes) values ('https://gitlab.com','gitlab_ee',1,'unavoidable','flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies');
|
||||
insert into forgesTbl (url_clrnet, software, cflogin, hrecaptcha, notes) values ('https://gitlab.com','gitlab_ee',1,'unavoidable','flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies; [copious ethical issues](gitlab-dot-com.md)');
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://gitlab.freedesktop.org','gitlab_ce','possibly restricted to Freedesktop efforts');
|
||||
insert into forgesTbl (url_clrnet, software, notes) values ('https://gitlab.gnome.org','gitlab_ce','possibly restricted to Gnome efforts');
|
||||
insert into forgesTbl (url_clrnet, software, hrecaptcha, notes) values ('https://gitlab.torproject.org','gitlab_ce','non-essential tasks','open registration; repo creation possibly restricted; Google reCAPTCHA is [allegedley](https://lists.gnu.org/archive/html/repo-criteria-discuss/2021-03/msg00000.html) used, but [not at registration time](https://gitlab.onionize.space)');
|
||||
|
@ -50,3 +54,4 @@ update forgesTbl set lst_kind = 'black' where cflogin or antitor or forced_nfsw;
|
|||
update forgesTbl set notes = '**Amazon AWS-hosted**'||case when notes is null then '' else '; '||notes end where aws;
|
||||
update forgesTbl set notes = '**dead site**'||case when notes is null then '' else '; '||notes end where dead;
|
||||
update forgesTbl set notes = '**forced h/reCAPTCHA**'||case when notes is null then '' else '; '||notes end where hrecaptcha = 'unavoidable' and notes not like '%captcha%';
|
||||
update forgesTbl set notes = '**access granted or denied based on national origin**'||case when notes is null then '' else '; '||notes end where nation_discrimination;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue