Use HTTPS across the project where possible

This commit is contained in:
Oleg Shparber
2015-09-09 01:37:56 -04:00
parent a27905b504
commit 801daa0c57
6 changed files with 12 additions and 12 deletions
+5 -5
View File
@@ -10,11 +10,11 @@
>
> (from WordNet 3.0)
Zeal is a simple offline documentation browser inspired by [Dash](http://kapeli.com/dash/).
Zeal is a simple offline documentation browser inspired by [Dash](https://kapeli.com/dash).
![Screenshot](http://i.imgur.com/SiLvpz8.png)
![Screenshot](https://i.imgur.com/SiLvpz8.png)
[More screenshots](http://imgur.com/a/eVi97)
[More screenshots](https://imgur.com/a/eVi97)
## Build Status
@@ -27,7 +27,7 @@ Windows | [![AppVeyor](https://img.shields.io/appveyor/ci/trollixx/zeal/master.s
## Download
Get binary builds for Windows and Linux from the [download page](http://zealdocs.org/download.html).
Get binary builds for Windows and Linux from the [download page](https://zealdocs.org/download.html).
## How to use
@@ -61,4 +61,4 @@ If you prefer, you can start Zeal with a query from command line:
## Creating your own docsets
You can use [Dash's instructions for generating docsets](http://kapeli.com/docsets).
You can use [Dash's instructions for generating docsets](https://kapeli.com/docsets).
+1 -1
View File
@@ -231,7 +231,7 @@ int main(int argc, char *argv[])
QObject::tr("Qt SQLite driver is not available."),
QMessageBox::Close, QMessageBox::Help);
if (ret == QMessageBox::Help)
QDesktopServices::openUrl(QStringLiteral("http://zealdocs.org/contact.html"));
QDesktopServices::openUrl(QStringLiteral("https://zealdocs.org/contact.html"));
return 0;
}
+2 -2
View File
@@ -11,8 +11,8 @@
</div>
<div class="dynamic"></div>
<footer>
<p><a href="http://zealdocs.org">zealdocs.org</a> | <a href="https://twitter.com/zealdocs">@zealdocs</a><p>
<p><small><a href="http://www.kapeli.com/dash">Get Dash for OS X or iOS</a></small><p>
<p><a href="https://zealdocs.org">zealdocs.org</a> | <a href="https://twitter.com/zealdocs">@zealdocs</a><p>
<p><small><a href="https://www.kapeli.com/dash">Get Dash for OS X or iOS</a></small><p>
</footer>
</body>
</html>
+2 -2
View File
@@ -77,13 +77,13 @@
&lt;br&gt;&lt;br&gt;
Copyright &amp;copy; Zeal Developers, 2013-2015.
&lt;br&gt;
&lt;a href=&quot;http://zealdocs.org&quot;&gt;http://zealdocs.org&lt;/a&gt;
&lt;a href=&quot;https://zealdocs.org&quot;&gt;zealdocs.org&lt;/a&gt;
&lt;br&gt;
&lt;a href=&quot;irc://irc.freenode.net/zealdocs&quot;&gt;#zealdocs&lt;/a&gt; on &lt;a href=&quot;http://www.freenode.net&quot;&gt;Freenode&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
Zeal is an open source software available under the terms of General Public License version 3 (&lt;a href=&quot;http://www.gnu.org/copyleft/gpl.html&quot;&gt;GPLv3&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;
Docsets are courtesy of &lt;a href=&quot;http://kapeli.com/dash&quot;&gt;Dash&lt;/a&gt;.</string>
Docsets are courtesy of &lt;a href=&quot;https://kapeli.com/dash&quot;&gt;Dash&lt;/a&gt;.</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
+1 -1
View File
@@ -516,7 +516,7 @@
<item>
<widget class="QLabel" name="label_4">
<property name="text">
<string>&lt;i&gt;Docsets are provided by &lt;a href=&quot;http://kapeli.com/dash&quot;&gt;Dash&lt;/a&gt;, the OS X Documentation Browser.&lt;/i&gt;</string>
<string>&lt;i&gt;Docsets are provided by &lt;a href=&quot;https://kapeli.com/dash&quot;&gt;Dash&lt;/a&gt;, the OS X Documentation Browser.&lt;/i&gt;</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
+1 -1
View File
@@ -176,7 +176,7 @@ MainWindow::MainWindow(Core::Application *app, QWidget *parent) :
QString(tr("A new version <b>%1</b> is available. Open download page?")).arg(version),
QMessageBox::Yes, QMessageBox::No);
if (ret == QMessageBox::Yes)
QDesktopServices::openUrl(QStringLiteral("http://zealdocs.org/download.html"));
QDesktopServices::openUrl(QStringLiteral("https://zealdocs.org/download.html"));
});
m_backMenu = new QMenu(ui->backButton);