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 162b665 commit 6213dc2
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/plugins/miscellaneous/Core/src/corecliutils.cpp
Expand Up @@ -654,7 +654,7 @@ void cleanPresentationMathml(QDomElement *pDomElement)
// Merge successive child mrow elements, as long as their parent is not an
// element that requires a specific number of arguments (which could become
// wrong if we were to merge two successive mrow elements)
// Note: see http://www.w3.org/TR/MathML2/chapter3.html#id.3.1.3.2 for the
// Note: see https://w3.org/TR/MathML2/chapter3.html#id.3.1.3.2 for the
// list of the elements to check...

static const QString Mfrac = "mfrac";
Expand Down
Expand Up @@ -915,7 +915,7 @@ void Property::setDoubleValue(double pDoubleValue, bool pEmitSignal)
{
// Set our value, should it be of double type
// Note: we want as much precision as possible, hence we use a precision of
// 15 decimals (see http://en.wikipedia.org/wiki/Double_precision)...
// 15 decimals (see https://en.wikipedia.org/wiki/Double_precision)...

if (mType == Type::Double) {
setValue(QString::number(pDoubleValue, 'g', 15), false, pEmitSignal);
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/solver/CVODESolver/src/cvodesolverplugin.cpp
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC CVODESolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses <a href="http://computation.llnl.gov/projects/sundials/cvode">CVODE</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise <a href="http://computation.llnl.gov/projects/sundials/cvode">CVODE</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses <a href="https://computation.llnl.gov/projects/sundials/cvode">CVODE</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise <a href="https://computation.llnl.gov/projects/sundials/cvode">CVODE</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList() << "SUNDIALS",
Expand Down
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC ForwardEulerSolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the <a href="http://en.wikipedia.org/wiki/Euler_method">Forward Euler method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="http://en.wikipedia.org/wiki/Euler_method">méthode Forward Euler</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the <a href="https://en.wikipedia.org/wiki/Euler_method">Forward Euler method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="https://en.wikipedia.org/wiki/Euler_method">méthode Forward Euler</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList(),
Expand Down
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC FourthOrderRungeKuttaSolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the fourth-order <a href="http://en.wikipedia.org/wiki/Runge–Kutta_methods">Runge-Kutta method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="http://en.wikipedia.org/wiki/Runge–Kutta_methods">méthode Runge-Kutta</a> du quatrième ordre pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the fourth-order <a href="https://en.wikipedia.org/wiki/Runge–Kutta_methods">Runge-Kutta method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="https://en.wikipedia.org/wiki/Runge–Kutta_methods">méthode Runge-Kutta</a> du quatrième ordre pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList(),
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/solver/HeunSolver/src/heunsolverplugin.cpp
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC HeunSolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the <a href="http://en.wikipedia.org/wiki/Heun's_method">Heun's method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="http://en.wikipedia.org/wiki/Heun's_method">méthode de Heun</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the <a href="https://en.wikipedia.org/wiki/Heun's_method">Heun's method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="https://en.wikipedia.org/wiki/Heun's_method">méthode de Heun</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList(),
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/solver/KINSOLSolver/src/kinsolsolverplugin.cpp
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC KINSOLSolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses <a href="http://computation.llnl.gov/projects/sundials/kinsol">KINSOL</a> to solve <a href="https://en.wikipedia.org/wiki/Nonlinear_system#Nonlinear_algebraic_equations">non-linear algebraic systems</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise <a href="http://computation.llnl.gov/projects/sundials/kinsol">KINSOL</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Nonlinear_system#Nonlinear_algebraic_equations">systèmes algébriques non-linéaires</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses <a href="https://computation.llnl.gov/projects/sundials/kinsol">KINSOL</a> to solve <a href="https://en.wikipedia.org/wiki/Nonlinear_system#Nonlinear_algebraic_equations">non-linear algebraic systems</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise <a href="https://computation.llnl.gov/projects/sundials/kinsol">KINSOL</a> pour résoudre des <a href="https://en.wikipedia.org/wiki/Nonlinear_system#Nonlinear_algebraic_equations">systèmes algébriques non-linéaires</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList() << "SUNDIALS",
Expand Down
Expand Up @@ -35,8 +35,8 @@ PLUGININFO_FUNC SecondOrderRungeKuttaSolverPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the second-order <a href="http://en.wikipedia.org/wiki/Runge–Kutta_methods">Runge-Kutta method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="http://en.wikipedia.org/wiki/Runge–Kutta_methods">méthode Runge-Kutta</a> du deuxième ordre pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the second-order <a href="https://en.wikipedia.org/wiki/Runge–Kutta_methods">Runge-Kutta method</a> to solve <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">ODEs</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la <a href="https://en.wikipedia.org/wiki/Runge–Kutta_methods">méthode Runge-Kutta</a> du deuxième ordre pour résoudre des <a href="https://en.wikipedia.org/wiki/Ordinary_differential_equation">EDOs</a>.)"));

return new PluginInfo(PluginInfo::Category::Solver, true, false,
QStringList(),
Expand Down
Expand Up @@ -1319,7 +1319,7 @@ void GraphPanelPlotLegendWidget::renderLegend(QPainter *pPainter,
// Note: this is based on QwtLegend::renderLegend() and it fixes a problem
// with the layout when it has its expanding directions set to
// horizontal. More information on this issue can be found at
// http://www.qtcentre.org/threads/68983-Problem-with-QwtDynGridLayout-layoutItems()...
// https://qtcentre.org/threads/68983-Problem-with-QwtDynGridLayout-layoutItems()...

if (!mActive) {
return;
Expand Down
Expand Up @@ -34,8 +34,8 @@ PLUGININFO_FUNC QScintillaWidgetPluginInfo()
{
Descriptions descriptions;

descriptions.insert("en", QString::fromUtf8(R"(a plugin to support <a href="http://www.riverbankcomputing.co.uk/software/qscintilla/">QScintilla</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter <a href="http://www.riverbankcomputing.co.uk/software/qscintilla/">QScintilla</a>.)"));
descriptions.insert("en", QString::fromUtf8(R"(a plugin to support <a href="https://www.riverbankcomputing.com/software/qscintilla/intro">QScintilla</a>.)"));
descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter <a href="https://www.riverbankcomputing.com/software/qscintilla/intro">QScintilla</a>.)"));

return new PluginInfo(PluginInfo::Category::Widget, false, false,
QStringList() << "Core" << "QScintilla",
Expand Down

0 comments on commit 6213dc2

Please sign in to comment.