Skip to content

Commit

Permalink
Replace http URLs with https (apache#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
madrob authored Apr 21, 2021
1 parent 0a11a8b commit fea2b1a
Show file tree
Hide file tree
Showing 24 changed files with 46 additions and 447 deletions.
4 changes: 2 additions & 2 deletions dev-docs/pmc-chair.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Once their ICLA is on file, the Infra team will set up their account and grant t

If the person already has an ICLA on file, anyone on the PMC can go to the https://whimsy.apache.org/roster/committee/lucene[Lucene roster in Whimsy] and add the person.

See also http://apache.org/dev/pmc.html#noncommitter for details on the process.
See also https://apache.org/dev/pmc.html#noncommitter for details on the process.

=== Jira and Confluence Permissions

Expand All @@ -70,7 +70,7 @@ The board will not respond. After 72 hours, check that the mail appears in the B

Once the 72 hours has passed, the Chair can go to the https://whimsy.apache.org/roster/committee/lucene[Lucene roster in Whimsy] and change the person from a Committer to a member of the PMC.

See also: http://www.apache.org/dev/pmc.html#newpmc.
See also: https://www.apache.org/dev/pmc.html#newpmc.

== Security Issues

Expand Down
2 changes: 1 addition & 1 deletion dev-tools/doap/solr.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
Note that the canonical URL may redirect to other non-canonical locations.
-->
<Project rdf:about="http://lucene.apache.org/solr/">
<Project rdf:about="https://solr.apache.org/">
<created>2006-01-17</created>
<license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"/>
<name>Apache Solr</name>
Expand Down
19 changes: 0 additions & 19 deletions dev-tools/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,25 +92,6 @@ of the other tools in this folder.
Example usage for a Release Manager:
python3 -u dev-tools/scripts/buildAndPushRelease.py --push-local /tmp/releases/6.0.1 --sign 6E68DA61 --rc-num 1

### addBackcompatIndexes.py

usage: addBackcompatIndexes.py [-h] [--force] [--no-cleanup] [--temp-dir DIR]
version

Add backcompat index and test for new version. See:
http://wiki.apache.org/lucene-java/ReleaseTodo#Generate_Backcompat_Indexes

positional arguments:
version Version to add, of the form X.Y.Z

optional arguments:
-h, --help show this help message and exit
--force Redownload the version and rebuild, even if it already
exists
--no-cleanup Do not cleanup the built indexes, so that they can be reused
for adding to another branch
--temp-dir DIR Temp directory to build backcompat indexes within

### addVersion.py

usage: addVersion.py [-h] version
Expand Down
272 changes: 0 additions & 272 deletions dev-tools/scripts/addBackcompatIndexes.py

This file was deleted.

8 changes: 4 additions & 4 deletions dev-tools/scripts/releaseWizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ def configure_pgp(gpg_todo):
return False
if length < 4096:
print("Your key length is < 4096, Please generate a stronger key.")
print("Alternatively, follow instructions in http://www.apache.org/dev/release-signing.html#note")
print("Alternatively, follow instructions in https://infra.apache.org/release-signing.html#note")
if not ask_yes_no("Have you configured your gpg to avoid SHA-1?"):
print("Please either generate a strong key or reconfigure your client")
return False
Expand All @@ -1181,7 +1181,7 @@ def configure_pgp(gpg_todo):
if apache_sigs < 1:
print(textwrap.dedent("""\
Your key is not signed by any other committer.
Please review http://www.apache.org/dev/openpgp.html#apache-wot
Please review https://infra.apache.org/openpgp.html#apache-wot
and make sure to get your key signed until next time.
You may want to run 'gpg --refresh-keys' to refresh your keychain."""))
uses_apacheid = is_code_signing_key = False
Expand All @@ -1191,9 +1191,9 @@ def configure_pgp(gpg_todo):
if 'CODE SIGNING KEY' in line.upper():
is_code_signing_key = True
if not uses_apacheid:
print("WARNING: Your key should use your apache-id email address, see http://www.apache.org/dev/release-signing.html#user-id")
print("WARNING: Your key should use your apache-id email address, see https://infra.apache.org/release-signing.html#user-id")
if not is_code_signing_key:
print("WARNING: You code signing key should be labeled 'CODE SIGNING KEY', see http://www.apache.org/dev/release-signing.html#key-comment")
print("WARNING: You code signing key should be labeled 'CODE SIGNING KEY', see https://infra.apache.org/release-signing.html#key-comment")
except Exception as e:
print("Could not check signatures of your key: %s" % e)

Expand Down
Loading

0 comments on commit fea2b1a

Please sign in to comment.