Skip to content

Commit

Permalink
[fc] Repository: plone.reload
Browse files Browse the repository at this point in the history
Branch: refs/heads/master
Date: 2021-10-07T16:36:07+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.reload@a37979f

Fix missing doctype, add html lang, use html5 charset to reload page.

Files changed:
M CHANGES.rst
M plone/reload/reload.pt
Repository: plone.reload

Branch: refs/heads/master
Date: 2021-10-13T14:22:34+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.reload@4de12ac

Merge pull request #15 from plone/thet-html5-meta-charset

Fix missing doctype, add html lang, use html5 charset to reload page.

Files changed:
M CHANGES.rst
M plone/reload/reload.pt
  • Loading branch information
thet committed Oct 13, 2021
1 parent 7785b5f commit eeb653f
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions last_commit.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
Repository: plone.rest
Repository: plone.reload


Branch: refs/heads/master
Date: 2021-10-12T20:11:03+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: https://github.com/plone/plone.rest/commit/d63fcaa5f05e2da4d52624fd58df822353e1e029
Date: 2021-10-07T16:36:07+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: https://github.com/plone/plone.reload/commit/a37979fb04bccf73c1306f716315334d920796a0

fix typo after refactoring in docs (#123)
Fix missing doctype, add html lang, use html5 charset to reload page.

* fix typo after refactoring in docs

* add changelog entry
Files changed:
M CHANGES.rst
M plone/reload/reload.pt

b'diff --git a/CHANGES.rst b/CHANGES.rst\nindex 6d15e70..e8a85a8 100644\n--- a/CHANGES.rst\n+++ b/CHANGES.rst\n@@ -14,7 +14,8 @@ New features:\n \n Bug fixes:\n \n-- *add item here*\n+- Fix missing doctype, add html lang, use html5 charset to reload page.\n+ [thet]\n \n \n 3.0.1 (2020-04-22)\ndiff --git a/plone/reload/reload.pt b/plone/reload/reload.pt\nindex 343b5e9..215460f 100644\n--- a/plone/reload/reload.pt\n+++ b/plone/reload/reload.pt\n@@ -1,10 +1,9 @@\n-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"\n+<tal:doctype tal:replace="structure string:&lt;!DOCTYPE html&gt;" />\n+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"\n xmlns:tal="http://xml.zope.org/namespaces/tal">\n <head>\n <title>plone.reload</title>\n- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n+ <meta charset="utf-8" />\n </head>\n <body>\n \n'

Repository: plone.reload


Branch: refs/heads/master
Date: 2021-10-13T14:22:34+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: https://github.com/plone/plone.reload/commit/4de12ac3ecedb47dc9d589769d417bfba9d05358

Merge pull request #15 from plone/thet-html5-meta-charset

Fix missing doctype, add html lang, use html5 charset to reload page.

Files changed:
A news/123.bugfix
M README.rst
M CHANGES.rst
M plone/reload/reload.pt

b'diff --git a/README.rst b/README.rst\nindex 4b91180..ada524a 100644\n--- a/README.rst\n+++ b/README.rst\n@@ -212,7 +212,7 @@ stores all path segments in an array in `self.params`.\n from zope.interface import implementer\n from zope.publisher.interfaces import IPublishTraverse\n \n- @implementer(implementer)\n+ @implementer(IPublishTraverse)\n class MyService(Service):\n \n def __init__(self, context, request):\ndiff --git a/news/123.bugfix b/news/123.bugfix\nnew file mode 100644\nindex 0000000..ee50058\n--- /dev/null\n+++ b/news/123.bugfix\n@@ -0,0 +1 @@\n+Fix typo in `README.rst` [jensens]\n'
b'diff --git a/CHANGES.rst b/CHANGES.rst\nindex 6d15e70..e8a85a8 100644\n--- a/CHANGES.rst\n+++ b/CHANGES.rst\n@@ -14,7 +14,8 @@ New features:\n \n Bug fixes:\n \n-- *add item here*\n+- Fix missing doctype, add html lang, use html5 charset to reload page.\n+ [thet]\n \n \n 3.0.1 (2020-04-22)\ndiff --git a/plone/reload/reload.pt b/plone/reload/reload.pt\nindex 343b5e9..215460f 100644\n--- a/plone/reload/reload.pt\n+++ b/plone/reload/reload.pt\n@@ -1,10 +1,9 @@\n-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"\n+<tal:doctype tal:replace="structure string:&lt;!DOCTYPE html&gt;" />\n+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"\n xmlns:tal="http://xml.zope.org/namespaces/tal">\n <head>\n <title>plone.reload</title>\n- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n+ <meta charset="utf-8" />\n </head>\n <body>\n \n'

0 comments on commit eeb653f

Please sign in to comment.