Skip to content

Commit

Permalink
Replaced http with https wherever possible (#2164).
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Dec 2, 2019
1 parent 0fec2b1 commit e503ced
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -3,7 +3,7 @@ Here are a few links, which you might find useful:

- `What is new? <https://opencor.ws/whatIsNew.html>`_

- `OpenCOR tutorial <http://tutorial-on-cellml-opencor-and-pmr.readthedocs.io/en/latest/index.html>`_
- `OpenCOR tutorial <https://tutorial-on-cellml-opencor-and-pmr.readthedocs.io/en/latest/index.html>`_

- `User documentation <https://opencor.ws/user/index.html>`_
- `Developer documentation <https://opencor.ws/developer/index.html>`_
Expand All @@ -12,6 +12,6 @@ Here are a few links, which you might find useful:

- `OpenCOR team <https://opencor.ws/team.html>`_

You might also be interested in our `users <https://groups.google.com/forum/#!forum/opencor-users>`_ and/or `developers <https://groups.google.com/forum/#!forum/opencor-developers>`_ mailing lists, as well as in our `published article <http://dx.doi.org/10.3389/fphys.2015.00026>`_.
You might also be interested in our `users <https://groups.google.com/forum/#!forum/opencor-users>`_ and/or `developers <https://groups.google.com/forum/#!forum/opencor-developers>`_ mailing lists, as well as in our `published article <https://dx.doi.org/10.3389/fphys.2015.00026>`_.

Please `contact us <https://opencor.ws/user/contactUs.html>`_ if you have any questions about OpenCOR.
12 changes: 6 additions & 6 deletions i18n/OpenCOR_fr.ts
Expand Up @@ -165,12 +165,12 @@
<context>
<name>OpenCOR::CheckForUpdatesDialog</name>
<message>
<source>&lt;a href=&quot;%1&quot;&gt;%2 %3&lt;/a&gt; is ready for you to &lt;a href=&quot;http://opencor.ws/downloads/&quot;&gt;download&lt;/a&gt;.</source>
<translation>&lt;a href=&quot;%1&quot;&gt;%2 %3&lt;/a&gt; est prêt à être &lt;a href=&quot;http://opencor.ws/downloads/&quot;&gt;téléchargé&lt;/a&gt;.</translation>
<source>&lt;a href=&quot;%1&quot;&gt;%2 %3&lt;/a&gt; is ready for you to &lt;a href=&quot;https://opencor.ws/downloads/&quot;&gt;download&lt;/a&gt;.</source>
<translation>&lt;a href=&quot;%1&quot;&gt;%2 %3&lt;/a&gt; est prêt à être &lt;a href=&quot;https://opencor.ws/downloads/&quot;&gt;téléchargé&lt;/a&gt;.</translation>
</message>
<message>
<source>The &lt;a href=&quot;%1&quot;&gt;latest snapshot&lt;/a&gt; (%2) is ready for you to &lt;a href=&quot;http://opencor.ws/downloads/&quot;&gt;download&lt;/a&gt;.</source>
<translation>Le &lt;a href=&quot;%1&quot;&gt;dernier snapshot&lt;/a&gt; (%2) est prêt à être &lt;a href=&quot;http://opencor.ws/downloads/&quot;&gt;téléchargé&lt;/a&gt;.</translation>
<source>The &lt;a href=&quot;%1&quot;&gt;latest snapshot&lt;/a&gt; (%2) is ready for you to &lt;a href=&quot;https://opencor.ws/downloads/&quot;&gt;download&lt;/a&gt;.</source>
<translation>Le &lt;a href=&quot;%1&quot;&gt;dernier snapshot&lt;/a&gt; (%2) est prêt à être &lt;a href=&quot;https://opencor.ws/downloads/&quot;&gt;téléchargé&lt;/a&gt;.</translation>
</message>
<message>
<source>No newer version or snapshot of %1 is available.</source>
Expand All @@ -188,8 +188,8 @@
<translation>Les informations sur la version sont mal formatées.</translation>
</message>
<message>
<source>Please &lt;a href=&quot;http://opencor.ws/user/contactUs.html&quot;&gt;contact us&lt;/a&gt; about this error.</source>
<translation>Veuillez &lt;a href=&quot;http://opencor.ws/user/contactUs.html&quot;&gt;nous contacter&lt;/a&gt; au sujet de cette erreur.</translation>
<source>Please &lt;a href=&quot;https://opencor.ws/user/contactUs.html&quot;&gt;contact us&lt;/a&gt; about this error.</source>
<translation>Veuillez &lt;a href=&quot;https://opencor.ws/user/contactUs.html&quot;&gt;nous contacter&lt;/a&gt; au sujet de cette erreur.</translation>
</message>
</context>
<context>
Expand Down
8 changes: 4 additions & 4 deletions src/checkforupdatesdialog.cpp
Expand Up @@ -118,7 +118,7 @@ void CheckForUpdatesEngine::check()
} else {
mStatus = tr("The version information is mal-formatted.")
+"<br/>"
+tr(R"(Please <a href="http://opencor.ws/user/contactUs.html">contact us</a> about this error.)");
+tr(R"(Please <a href="https://opencor.ws/user/contactUs.html">contact us</a> about this error.)");
}
} else {
mStatus = formatMessage(errorMessage, false, true);
Expand Down Expand Up @@ -255,10 +255,10 @@ void CheckForUpdatesDialog::updateGui()
{
// Determine the status of our check

static const QString WhatIsNewUrl = "http://opencor.ws/user/whatIsNew.html?#";
static const QString WhatIsNewUrl = "https://opencor.ws/user/whatIsNew.html?#";

QString versionInformation = tr(R"(<a href="%1">%2 %3</a> is ready for you to <a href="http://opencor.ws/downloads/">download</a>.)");
QString snapshotInformation = tr(R"(The <a href="%1">latest snapshot</a> (%2) is ready for you to <a href="http://opencor.ws/downloads/">download</a>.)");
QString versionInformation = tr(R"(<a href="%1">%2 %3</a> is ready for you to <a href="https://opencor.ws/downloads/">download</a>.)");
QString snapshotInformation = tr(R"(The <a href="%1">latest snapshot</a> (%2) is ready for you to <a href="https://opencor.ws/downloads/">download</a>.)");

if (mEngine->status().isEmpty()) {
if (mGui->includeSnapshotsCheckBox->checkState() == Qt::Checked) {
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/editing/CellMLTextView/i18n/CellMLTextView_fr.ts
Expand Up @@ -340,8 +340,8 @@
<translation>Sauvegarder</translation>
</message>
<message>
<source>the &lt;a href=&quot;https://github.com/cellmlapi/cellml-api/&quot;&gt;CellML validation service&lt;/a&gt; cannot be used in this view, so only validation against the &lt;a href=&quot;http://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format&quot;&gt;CellML Text format&lt;/a&gt; was performed. For full CellML validation, you might want to use the Raw CellML view instead.</source>
<translation>le &lt;a href=&quot;https://github.com/cellmlapi/cellml-api/&quot;&gt;service de validation CellML&lt;/a&gt; ne peut pas être utilisé dans cette vue, donc seule une validation du &lt;a href=&quot;http://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format&quot;&gt;format CellML Text&lt;/a&gt; a été faite. Pour une validation CellML complète, vous pouvez utiliser la vue CellML Brut.</translation>
<source>the &lt;a href=&quot;https://github.com/cellmlapi/cellml-api/&quot;&gt;CellML validation service&lt;/a&gt; cannot be used in this view, so only validation against the &lt;a href=&quot;https://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format&quot;&gt;CellML Text format&lt;/a&gt; was performed. For full CellML validation, you might want to use the Raw CellML view instead.</source>
<translation>le &lt;a href=&quot;https://github.com/cellmlapi/cellml-api/&quot;&gt;service de validation CellML&lt;/a&gt; ne peut pas être utilisé dans cette vue, donc seule une validation du &lt;a href=&quot;https://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format&quot;&gt;format CellML Text&lt;/a&gt; a été faite. Pour une validation CellML complète, vous pouvez utiliser la vue CellML Brut.</translation>
</message>
</context>
<context>
Expand Down
Expand Up @@ -964,7 +964,7 @@ bool CellmlTextViewWidget::parse(const QString &pFileName, QString &pExtra,

if ( (data->cellmlVersion() == CellMLSupport::CellmlFile::Version::Cellml_1_0)
|| (data->cellmlVersion() == CellMLSupport::CellmlFile::Version::Cellml_1_1)) {
pExtra = tr(R"(the <a href="https://github.com/cellmlapi/cellml-api/">CellML validation service</a> cannot be used in this view, so only validation against the <a href="http://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format">CellML Text format</a> was performed. For full CellML validation, you might want to use the Raw CellML view instead.)");
pExtra = tr(R"(the <a href="https://github.com/cellmlapi/cellml-api/">CellML validation service</a> cannot be used in this view, so only validation against the <a href="https://opencor.ws/user/plugins/editing/CellMLTextView.html#CellML Text format">CellML Text format</a> was performed. For full CellML validation, you might want to use the Raw CellML view instead.)");
}

return res;
Expand Down

0 comments on commit e503ced

Please sign in to comment.