www.pgadmin.org now supports https.

pull/3/head
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
Source Initiative. The copyright for the project source code, website and
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',
long_description='Administration and management tools for the PostgreSQL database.',
url='http://www.pgadmin.org/',
url='https://www.pgadmin.org/',
# Author details
author='The pgAdmin Development Team',

View File

@ -223,7 +223,7 @@ SECURITY_EMAIL_SUBJECT_PASSWORD_CHANGE_NOTICE = \
UPGRADE_CHECK_ENABLED = True
# 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

View File

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

View File

@ -54,7 +54,7 @@
</a>
</div>
<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 />
pgAdmin Website
</a>

View File

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