From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 07B391F4D7 for ; Thu, 16 Jun 2022 16:18:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yhbt.net; s=selector1; t=1655396327; bh=UcAAvXtAhUTRNo46ln3qnboWwbVGpl/OxiwOEe/MRbs=; h=From:To:Subject:Date:From; b=H54jrXnpaKXjPwswC3+h2PMVTFcjjx2+LIkoMrFlBq3irWMqphngEZVHtg05z7Q+k 2OW9sGU76dDqx9lVGaGfJkkTbffrsQEfLxzHUtLSr9dRd6bjwyTMv+S1DUy7p4tMa1 mC5nyoVt/TzcQElS5vnljIgAUOMmpqqSNsiQUKvk= From: Eric Wong To: clogger-public@yhbt.net Subject: [PATCH] doc: drop git:// URLs, use shorter domain for IMAP links Date: Thu, 16 Jun 2022 16:18:46 +0000 Message-Id: <20220616161846.1723-1-bofh@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: git:// is rarely necessary these days, and IMAP (unlike NNTP) doesn't advertise hostnames in its protocol, so we can use a shorter one to avoid advertising other projects. And stylize our domain name since "YHBT" is an acronym. --- .olddoc.yml | 15 +++++++-------- GNUmakefile | 2 +- README | 16 ++++++++-------- clogger.gemspec | 4 ++-- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.olddoc.yml b/.olddoc.yml index efcc429..2ed15c3 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -1,16 +1,15 @@ --- -rdoc_url: https://yhbt.net/clogger/ -cgit_url: https://yhbt.net/clogger.git -git_url: git://yhbt.net/clogger.git -public_email: clogger-public@yhbt.net +rdoc_url: https://YHBT.net/clogger/ +cgit_url: https://YHBT.net/clogger.git +git_url: https://YHBT.net/clogger.git +public_email: clogger-public@YHBT.net ml_url: -- https://yhbt.net/clogger-public/ +- https://YHBT.net/clogger-public/ - http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/clogger-public/ -- imaps://news.public-inbox.org/inbox.comp.lang.ruby.clogger.0 +- imaps://YHBT.net/inbox.comp.lang.ruby.clogger.0 - imap://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.clogger.0 - nntps://news.public-inbox.org/inbox.comp.lang.ruby.clogger - nntp://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.clogger source_code: -- git clone git://yhbt.net/clogger.git -- git clone https://yhbt.net/clogger.git +- git clone https://YHBT.net/clogger.git - torsocks git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/clogger.git diff --git a/GNUmakefile b/GNUmakefile index dec2f5a..b75e10c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ all:: -RSYNC_DEST := yhbt.net:/srv/yhbt/clogger/ +RSYNC_DEST := YHBT.net:/srv/yhbt/clogger/ rfpackage := clogger include pkg.mk test-ext: diff --git a/README b/README index 3c5e419..2bbe9e7 100644 --- a/README +++ b/README @@ -100,13 +100,13 @@ that receives a "<<" method: The latest development happens in git and is published to the following: - git clone https://yhbt.net/clogger.git - git clone git://repo.or.cz/clogger.git + git clone https://YHBT.net/clogger.git + git clone https://repo.or.cz/clogger.git You may also browse and download snapshot tarballs: -* https://yhbt.net/clogger.git -* http://repo.or.cz/w/clogger.git (gitweb) +* https://YHBT.net/clogger.git +* https://repo.or.cz/w/clogger.git (gitweb) We use email for coordination and development, see below: @@ -115,8 +115,8 @@ We use email for coordination and development, see below: All feedback (bug reports, user/development discussion, patches, pull requests) is done via publicly-archived email: -* https://yhbt.net/clogger-public/ -* imaps://news.public-inbox.org/inbox.comp.lang.ruby.clogger.0 +* https://YHBT.net/clogger-public/ +* imaps://YHBT.net/inbox.comp.lang.ruby.clogger.0 * nntps://news.public-inbox.org/inbox.comp.lang.ruby.clogger Tor users may also access HTTP, IMAP, and NNTP archives via .onion: @@ -131,9 +131,9 @@ username + password will work. No subscription or real names will ever be required to email us. Do not send HTML email, do not top post. -* mailto:clogger-public@yhbt.net +* mailto:clogger-public@YHBT.net -Homepage: https://yhbt.net/clogger/ +Homepage: https://YHBT.net/clogger/ == INSTALL diff --git a/clogger.gemspec b/clogger.gemspec index d8d40d2..769b7ff 100644 --- a/clogger.gemspec +++ b/clogger.gemspec @@ -4,11 +4,11 @@ manifest = File.exist?('.manifest') ? Gem::Specification.new do |s| s.name = %q{clogger} s.version = (ENV['VERSION'] || '2.1.0').dup - s.homepage = 'https://yhbt.net/clogger/' + s.homepage = 'https://YHBT.net/clogger/' s.authors = ["cloggers"] s.summary = 'configurable request logging for Rack' s.description = File.read('README').split("\n\n")[1] - s.email = %q{clogger-public@yhbt.net} + s.email = %q{clogger-public@YHBT.net} s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f| File.exist?(f) end