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 b08e07f commit 6fb5cc1
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion distrib/windows/FileAssociation.nsh
Expand Up @@ -4,7 +4,7 @@ _____________________________________________________________________________
File Association
_____________________________________________________________________________
Based on code taken from http://nsis.sourceforge.net/File_Association
Based on code taken from https://nsis.sourceforge.io/File_Association
Usage in script:
1. !include "FileAssociation.nsh"
Expand Down
4 changes: 2 additions & 2 deletions i18n/OpenCOR_fr.ts
Expand Up @@ -358,8 +358,8 @@
<context>
<name>QObject</name>
<message>
<source>%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse &lt;a href=&quot;http://www.cellml.org/&quot;&gt;CellML&lt;/a&gt; files.</source>
<translation>%1 est un environnement de modélisation multiplate-forme, qui peut être utilisé pour organiser, éditer, simuler et analyser des fichiers &lt;a href=&quot;http://www.cellml.org/&quot;&gt;CellML&lt;/a&gt;.</translation>
<source>%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse &lt;a href=&quot;https://cellml.org/&quot;&gt;CellML&lt;/a&gt; files.</source>
<translation>%1 est un environnement de modélisation multiplate-forme, qui peut être utilisé pour organiser, éditer, simuler et analyser des fichiers &lt;a href=&quot;https://cellml.org/&quot;&gt;CellML&lt;/a&gt;.</translation>
</message>
<message>
<source>Sample</source>
Expand Down
4 changes: 2 additions & 2 deletions res/README.rst
@@ -1,9 +1,9 @@
Some information on the OpenCOR logo:

- |OpenCOR.svg|_: this was created from the original VPH logo, saving the resulting SVG file as an optimised SVG file (using `Inkscape <https://inkscape.org/>`_), and beautifying it using http://xmlbeautifier.com/.
- |OpenCOR.svg|_: this was created from the original VPH logo, saving the resulting SVG file as an optimised SVG file (using `Inkscape <https://inkscape.org/>`_), and beautifying it using https://xmlbeautifier.com/.
- |splashscreen.png|_ (as well as |[OpenCOR]/src/plugins/miscellaneous/Core/res/logo.png|_, although its size was reduced to 35%): this was created by opening |OpenCOR.svg|_ in `Inkscape <https://inkscape.org/>`_, reducing its size to 50%, making a screenshot, extracting the part that is inside the box, and making its background transparent (using `GIMP <https://gimp.org/>`_).
- |OpenCOR.pptx|_: this was created by using a screenshot version of |OpenCOR.svg|_, adding some space around it (e.g. ``50`` pixels), and making sure that it is square.
- ``OpenCOR``\ [\ |.ico|_\ \|\ |.png|_\ \|\ |.icns|_]: these were created by saving a 100% version of |OpenCOR.pptx|_ as a PNG file, using that PNG file as an input to http://iconverticons.com/online/, and downloading the corresponding ``.ico``, ``.png`` (the ``256x256`` pixel version) and ``.icns`` versions.
- ``OpenCOR``\ [\ |.ico|_\ \|\ |.png|_\ \|\ |.icns|_]: these were created by saving a 100% version of |OpenCOR.pptx|_ as a PNG file, using that PNG file as an input to https://iconverticons.com/online/, and downloading the corresponding ``.ico``, ``.png`` (the ``256x256`` pixel version) and ``.icns`` versions.

.. |OpenCOR.svg| replace:: ``OpenCOR.svg``
.. _OpenCOR.svg: https://github.com/opencor/opencor/blob/master/res/OpenCOR.svg
Expand Down
2 changes: 1 addition & 1 deletion src/misc/cliutils.cpp
Expand Up @@ -187,7 +187,7 @@ QString applicationDescription(bool pGuiMode)
{
// Return the application description

QString res = QObject::tr(R"(%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse <a href="http://www.cellml.org/">CellML</a> files.)").arg(R"(<a href=")"+QString(HomePageUrl)+R"(">)"+qAppName()+"</a>");
QString res = QObject::tr(R"(%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse <a href="https://cellml.org/">CellML</a> files.)").arg(R"(<a href=")"+QString(HomePageUrl)+R"(">)"+qAppName()+"</a>");

return pGuiMode?res:plainString(res);
}
Expand Down
Expand Up @@ -44,8 +44,8 @@ PLUGININFO_FUNC CellMLAnnotationViewPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin to annotate <a href="http://www.cellml.org/">CellML</a> files.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour annoter des fichiers <a href="http://www.cellml.org/">CellML</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin to annotate <a href="https://cellml.org/">CellML</a> files.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour annoter des fichiers <a href="https://cellml.org/">CellML</a>.)"));

return new PluginInfo(PluginInfo::Category::Editing, true, false,
QStringList() << "CellMLSupport" << "WebViewerWidget",
Expand Down
Expand Up @@ -46,8 +46,8 @@ PLUGININFO_FUNC CellMLEditingViewPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that provides core <a href="http://www.cellml.org/">CellML</a> editing view facilities.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui fournit les fonctionalités de base d'une vue d'édition <a href="http://www.cellml.org/">CellML</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that provides core <a href="https://cellml.org/">CellML</a> editing view facilities.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui fournit les fonctionalités de base d'une vue d'édition <a href="https://cellml.org/">CellML</a>.)"));

return new PluginInfo(PluginInfo::Category::Editing, false, false,
QStringList() << "CellMLSupport" << "EditingView" << "MathMLViewerWidget",
Expand Down
Expand Up @@ -44,8 +44,8 @@ PLUGININFO_FUNC CellMLTextViewPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin to edit <a href="http://www.cellml.org/">CellML</a> files using the CellML Text format.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour éditer des fichiers <a href="http://www.cellml.org/">CellML</a> à l'aide du format CellML Text.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin to edit <a href="https://cellml.org/">CellML</a> files using the CellML Text format.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour éditer des fichiers <a href="https://cellml.org/">CellML</a> à l'aide du format CellML Text.)"));

return new PluginInfo(PluginInfo::Category::Editing, true, true,
QStringList() << "CellMLEditingView",
Expand Down
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <https://gnu.org/licenses>.
// updated version of Jonathan Cooper's CellML 1.1 to 1.0 converter. The
// update was to make Jonathan's code work with version 1.12 of the CellML
// API. In all cases, the original limitations apply...
// Original code: http://www.cellml.org/tools/jonathan-cooper-s-cellml-1-1-to-1-0-converter/versionconverter-tar.bz2/view
// Original code: https://cellml.org/tools/jonathan-cooper-s-cellml-1-1-to-1-0-converter/versionconverter-tar.bz2/view
// Updated code: https://github.com/nickerso/flattenCellML
//==============================================================================

Expand Down
4 changes: 2 additions & 2 deletions src/plugins/support/CellMLSupport/src/cellmlsupportplugin.cpp
Expand Up @@ -45,8 +45,8 @@ PLUGININFO_FUNC CellMLSupportPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin to support <a href="http://www.cellml.org/">CellML</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter <a href="http://www.cellml.org/">CellML</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin to support <a href="https://cellml.org/">CellML</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter <a href="https://cellml.org/">CellML</a>.)"));

return new PluginInfo(PluginInfo::Category::Support, false, false,
QStringList() << "CellMLAPI" << "Compiler" << "StandardSupport",
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/thirdParty/CellMLAPI/README.rst
@@ -1 +1 @@
Windows binaries for `omniidl <http://omniorb.sourceforge.net/>`__ can be found `here <http://sourceforge.net/projects/omniorb/files/omniORB/omniORB-4.1.5/>`__.
Windows binaries for `omniidl <http://omniorb.sourceforge.net/>`__ can be found `here <https://sourceforge.net/projects/omniorb/files/omniORB/omniORB-4.1.5>`__.
4 changes: 2 additions & 2 deletions src/plugins/tools/CellMLTools/src/cellmltoolsplugin.cpp
Expand Up @@ -51,8 +51,8 @@ PLUGININFO_FUNC CellMLToolsPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin to access various <a href="http://www.cellml.org/">CellML</a>-related tools.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour accéder divers outils en rapport avec <a href="http://www.cellml.org/">CellML</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin to access various <a href="https://cellml.org/">CellML</a>-related tools.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour accéder divers outils en rapport avec <a href="https://cellml.org/">CellML</a>.)"));

return new PluginInfo(PluginInfo::Category::Tools, true, true,
QStringList() << "CellMLSupport",
Expand Down

0 comments on commit 6fb5cc1

Please sign in to comment.