Skip to content

Commit

Permalink
Removed Caveats from CHANGELOG; Added __future__ import to the tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajyarlagadda committed Sep 16, 2016
1 parent c61355b commit 6a90333
Show file tree
Hide file tree
Showing 17 changed files with 32 additions and 23 deletions.
21 changes: 1 addition & 20 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,13 @@ v0.4.0-dev
- <iframe></iframe>
- <img>

Caveats:

- Korona has no ability to construct inner tags for now. (For ex. <address><p>Hi There</p></address>)
- Korona will be added with constructing the inner tags in the future releases.
- Moved all the classes for constructing tags to separate files for easy accessibility.

v0.3.1
------

- Added validation for URL strings in constructing the tags.

Caveats:

- Korona has no ability to construct inner tags for now. (For ex. <address><p>Hi There</p></address>)

v0.3.0
------

Expand All @@ -40,10 +33,6 @@ v0.3.0
- <header></header>
- <hr>

Caveats:

- Korona has no ability to construct inner tags for now. (For ex. <address><p>Hi There</p></address>)

v0.2.0
------

Expand All @@ -65,10 +54,6 @@ v0.2.0
- <frame>
- <frameset></frameset>

Caveats:

- Korona has no ability to construct inner tags for now. (For ex. <address><p>Hi There</p></address>)

v0.1.0
------

Expand All @@ -87,7 +72,3 @@ v0.1.0
- <canvas></canvas>
- <caption></caption>
- <cite></cite>

Caveats:

- Korona has no ability to construct inner tags for now. (For ex. <address><p>Hi There</p></address>)
2 changes: 1 addition & 1 deletion korona/html/tags/col.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
"""Module for constructing <col> tags."""
"""Module for constructing <col> tag."""

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/colgroup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
"""Module for constructing <colgroup> tags."""
"""Module for constructing <colgroup> tag."""

from __future__ import absolute_import

Expand Down
4 changes: 3 additions & 1 deletion korona/html/tags/delete.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
"""Module for constructing delete tags <del>."""
"""Module for constructing delete tag <del>."""

from __future__ import absolute_import

from ...templates.html.tags import del_tag

Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/description.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing description tags <dd>, <dl>, <dt>."""

from __future__ import absolute_import

from ...templates.html.tags import dd_tag, dl_tag, dt_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/details.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <details> tag."""

from __future__ import absolute_import

from ...templates.html.tags import details_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/dialog.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <dialog> tag."""

from __future__ import absolute_import

from ...templates.html.tags import dialog_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/div.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <div> tag."""

from __future__ import absolute_import

from ...lib.utils import validate_attribute_values
from ...templates.html.tags import div_tag

Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/embed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <embed> tag."""

from __future__ import absolute_import

from ...templates.html.tags import embed_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/fieldset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <fieldset> tag."""

from __future__ import absolute_import

from ...templates.html.tags import fieldset_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/figure.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <figure> tag."""

from __future__ import absolute_import

from ...templates.html.tags import figure_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/footer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <footer> tag."""

from __future__ import absolute_import

from ...templates.html.tags import footer_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/form.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <form> tag."""

from __future__ import absolute_import

from ...lib.utils import validate_attribute_values
from ...templates.html.tags import form_tag

Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/frame.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <frame> tag."""

from __future__ import absolute_import

from ...lib.utils import validate_attribute_values, validate_url
from ...templates.html.tags import frame_tag

Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/frameset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <frameset> tag."""

from __future__ import absolute_import

from ...templates.html.tags import frameset_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/head.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <head> tag."""

from __future__ import absolute_import

from ...templates.html.tags import head_tag


Expand Down
2 changes: 2 additions & 0 deletions korona/html/tags/header.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
"""Module for constructing <header> tag."""

from __future__ import absolute_import

from ...templates.html.tags import header_tag


Expand Down

0 comments on commit 6a90333

Please sign in to comment.