Skip to content

Commit

Permalink
Prefer https links
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins authored and simi committed Jul 19, 2023
1 parent 7209617 commit ef774ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CC-LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE B
1. Definitions

1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.
2. "Creative Commons Compatible License" means a license that is listed at http://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of derivatives of works made available under that license under this License or either a Creative Commons unported license or a Creative Commons jurisdiction license with the same License Elements as this License.
2. "Creative Commons Compatible License" means a license that is listed at https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of derivatives of works made available under that license under this License or either a Creative Commons unported license or a Creative Commons jurisdiction license with the same License Elements as this License.
3. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License.
4. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike.
5. "Licensor" means the individual, individuals, entity or entities that offers the Work under the terms of this License.
Expand Down
9 changes: 4 additions & 5 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link rel="shortcut icon" href="https://rubygems.org/favicon.ico" type="image/x-icon">
<link href="/atom.xml" rel="alternate" title="RSS" type="application/rss+xml" />
<link href="/stylesheets/application.css" type="text/css" rel="stylesheet" />
<link href="http://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href='https://fonts.googleapis.com/css?family=Roboto:100&subset=greek,latin,cyrillic,latin-ext' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="/javascripts/modernizr.js"></script>
<script type="text/javascript" src="/javascripts/selectivizr.js"></script>
Expand Down Expand Up @@ -73,15 +73,14 @@ <h1><a class="t-display page__heading t-link--black is-active" href="/">Blog</a>
<div class="l-overflow">
<div class="nav--v l-col--r--pad">
<a class="nav--v__link--footer" href="https://status.rubygems.org">Status</a>
<a class="nav--v__link--footer" href="http://uptime.rubygems.org">Uptime</a>
<a class="nav--v__link--footer" href="https://uptime.rubygems.org">Uptime</a>
<a class="nav--v__link--footer" href="https://github.com/rubygems/rubygems.org">Code</a>
<a class="nav--v__link--footer" href="https://rubygems.org/pages/data">Data</a>
<a class="nav--v__link--footer" href="https://groups.google.com/group/rubygems-org">Discuss</a>
<a class="nav--v__link--footer" href="https://rubygems.org/stats">Stats</a>
<a class="nav--v__link--footer" href="/">Blog</a>
<a class="nav--v__link--footer" href="https://rubygems.org/pages/about">About</a>
<a class="nav--v__link--footer" href="http://help.rubygems.org">Help</a>
<a class="nav--v__link--footer" href="http://guides.rubygems.org/rubygems-org-api">API</a>
<a class="nav--v__link--footer" href="https://rubygems.org/pages/about">About</a>
<a class="nav--v__link--footer" href="https://guides.rubygems.org/rubygems-org-api">API</a>
</div>
<div class="l-colspan--l colspan--l--has-border">
<p class="footer__about">RubyGems.org is the Ruby community&rsquo;s gem hosting service. Instantly publish your gems and install them. Use the API to interact and find out more information about available gems. Become a contributor and enhance the site with your own changes.</p>
Expand Down
6 changes: 3 additions & 3 deletions atom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ layout: null
<feed xmlns="http://www.w3.org/2005/Atom">

<title>RubyGems Blog</title>
<link href="http://blog.rubygems.org/atom.xml" rel="self"/>
<link href="http://blog.rubygems.org/"/>
<link href="https://blog.rubygems.org/atom.xml" rel="self"/>
<link href="https://blog.rubygems.org/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://blog.rubygems.org/</id>
<author>
Expand All @@ -17,7 +17,7 @@ layout: null
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="http://blog.rubygems.org{{ post.url }}"/>
<link href="https://blog.rubygems.org{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://blog.rubygems.org{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
Expand Down

0 comments on commit ef774ee

Please sign in to comment.