Skip to content

Commit

Permalink
Release of version 0.7.0
Browse files Browse the repository at this point in the history
Use HTTPS instead of plain HTTP for ViaMichelin
  • Loading branch information
bittner committed Sep 14, 2016
1 parent 3358cba commit 5654465
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

0.7.0 (2016-09-14)
------------------

- Implement ViaMichelin provider

0.6.0 (2016-09-02)
------------------

Expand Down
2 changes: 1 addition & 1 deletion djangocms_maps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Universal maps plugin for django CMS
"""

__version__ = '0.7.0.dev0'
__version__ = '0.7.0'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load i18n sekizai_tags staticfiles djangocms_maps %}

{% get_current_language as LANGUAGE_CODE %}
{% addtoblock "js" %}<script src="http://apijsv2.viamichelin.com/apijsv2/api/js?key={{ api_key }}&lang={{ LANGUAGE_CODE|viamichelin }}" type="text/javascript"></script>{% endaddtoblock %}
{% addtoblock "js" %}<script src="https://secure-apijs.viamichelin.com/apijsv2/api/js?key={{ api_key }}&lang={{ LANGUAGE_CODE|viamichelin }}&protocol=https" type="text/javascript"></script>{% endaddtoblock %}
{% addtoblock "js" %}<script src="{% static 'djangocms_maps/js/viamichelin.js' %}"></script>{% endaddtoblock %}

0 comments on commit 5654465

Please sign in to comment.