Skip to content

Commit

Permalink
Merge pull request #66 from blue-jam/mixed-content
Browse files Browse the repository at this point in the history
htmlify_fullで生成されたsummary.htmlでbootstrap.cssをHTTPSで読み込む
  • Loading branch information
hiroshi-cl authored Sep 13, 2019
2 parents 48be26a + b2cbae6 commit 2852cd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rime/plugins/htmlify_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ def _GenerateHtmlFull(self, ui):
header = u'<!DOCTYPE html>\n<html lang="ja"><head>'
header += (
u'<meta charset="utf-8"/>'
'<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com'
'<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com'
'/bootstrap/3.2.0/css/bootstrap.min.css"></head>\n<body>')
info = u'このセクションは htmlfy_full plugin により自動生成されています '
info = u'このセクションは htmlify_full plugin により自動生成されています '
info += (u'(rev.%(rev)s, uploaded by %(username)s @ %(hostname)s)\n'
% {'rev': rev, 'username': username, 'hostname': hostname})
footer = u'</body></html>'
Expand Down Expand Up @@ -297,7 +297,7 @@ def __init__(self, parent):
super(HtmlifyFull, self).__init__(
'htmlify_full',
'',
'Local version of htmlfy_full. (htmlify_full plugin)',
'Local version of htmlify_full. (htmlify_full plugin)',
'',
parent)

Expand Down

0 comments on commit 2852cd3

Please sign in to comment.