www.pgadmin.org now supports https.

This commit is contained in:
Dave Page
2016-05-21 13:54:12 -04:00
parent 0a354055a9
commit 1724787f2a
6 changed files with 7 additions and 7 deletions

View File

@@ -190,4 +190,4 @@ pgAdmin is released under the
liberal Open Source licence similar to BSD or MIT, and approved by the Open liberal Open Source licence similar to BSD or MIT, and approved by the Open
Source Initiative. The copyright for the project source code, website and Source Initiative. The copyright for the project source code, website and
documentation is attributed to the documentation is attributed to the
`pgAdmin Development Team <http://www.pgadmin.org/development/team.php>`_. `pgAdmin Development Team <https://www.pgadmin.org/development/team.php>`_.

View File

@@ -34,7 +34,7 @@ setup(
description='PostgreSQL Tools', description='PostgreSQL Tools',
long_description='Administration and management tools for the PostgreSQL database.', long_description='Administration and management tools for the PostgreSQL database.',
url='http://www.pgadmin.org/', url='https://www.pgadmin.org/',
# Author details # Author details
author='The pgAdmin Development Team', author='The pgAdmin Development Team',

View File

@@ -223,7 +223,7 @@ SECURITY_EMAIL_SUBJECT_PASSWORD_CHANGE_NOTICE = \
UPGRADE_CHECK_ENABLED = True UPGRADE_CHECK_ENABLED = True
# Where should we get the data from? # Where should we get the data from?
UPGRADE_CHECK_URL = 'http://www.pgadmin.org/versions.json' UPGRADE_CHECK_URL = 'https://www.pgadmin.org/versions.json'
########################################################################## ##########################################################################
# Storage Manager storage url config settings # Storage Manager storage url config settings

View File

@@ -463,7 +463,7 @@ def index():
product_name=config.APP_NAME, product_name=config.APP_NAME,
download_url=data['pgadmin4']['download_url']) download_url=data['pgadmin4']['download_url'])
flash(msg, 'warning') flash(msg, 'warning')
return render_template( return render_template(
MODULE_NAME + "/index.html", MODULE_NAME + "/index.html",

View File

@@ -54,7 +54,7 @@
</a> </a>
</div> </div>
<div class="col-xs-3 dashboard-link"> <div class="col-xs-3 dashboard-link">
<a href="http://www.pgadmin.org" target="_new"> <a href="https://www.pgadmin.org" target="_new">
<span class="fa fa-4x dashboard-icon fa-globe" aria-hidden="true"></span><br /> <span class="fa fa-4x dashboard-icon fa-globe" aria-hidden="true"></span><br />
pgAdmin Website pgAdmin Website
</a> </a>

View File

@@ -36,7 +36,7 @@ class HelpModule(PgAdminModule):
priority= 200, priority= 200,
target= '_blank', target= '_blank',
icon='fa fa-external-link', icon='fa fa-external-link',
url= 'http://www.pgadmin.org/' ), url= 'https://www.pgadmin.org/' ),
MenuItem(name= 'mnu_postgresql_website', MenuItem(name= 'mnu_postgresql_website',
label= gettext('PostgreSQL Website'), label= gettext('PostgreSQL Website'),
@@ -59,7 +59,7 @@ class HelpModule(PgAdminModule):
priority=200, priority=200,
title=gettext('pgAdmin Website'), title=gettext('pgAdmin Website'),
icon='fa fa-external-link', icon='fa fa-external-link',
content='http://www.pgadmin.org/'), content='https://www.pgadmin.org/'),
Panel( Panel(
name='pnl_postgresql_website', name='pnl_postgresql_website',