Skip to content

Commit

Permalink
Added Input() class for constructing <input> tag; Added tests for the…
Browse files Browse the repository at this point in the history
… same
  • Loading branch information
bharadwajyarlagadda committed Sep 24, 2016
1 parent 08d98a0 commit 69394cb
Show file tree
Hide file tree
Showing 6 changed files with 1,062 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,34 +1,56 @@
Changelog
=========

Added
^^^^^

- Added classes for building some of the tags:

- ``<input>``

v0.4.1 (2016-09-16)
-------------------

Changed
^^^^^^^

- Moved all the templates for html tags from ``templates/html/tags.py`` to ``templates/html/tags/``


v0.4.0 (2016-09-15)
-------------------

Added
^^^^^

- Added classes for building some of the tags:

- ``<html></html>``
- ``<i></i>``
- ``<iframe></iframe>``
- ``<img>``

Changed
^^^^^^^

- Moved all the classes for constructing tags to separate files for easy accessibility.


v0.3.1 (2016-09-05)
-------------------

Added
^^^^^

- Added validation for URL strings in constructing the tags.


v0.3.0 (2016-09-04)
-------------------

Added
^^^^^

- Added classes for building some of the tags:

- ``<h1></h1>``
Expand All @@ -45,6 +67,9 @@ v0.3.0 (2016-09-04)
v0.2.0 (2016-09-03)
-------------------

Added
^^^^^

- Added classes for building some of the tags:

- ``<colgroup></colgroup>``
Expand All @@ -67,6 +92,9 @@ v0.2.0 (2016-09-03)
v0.1.0 (2016-08-28)
-------------------

Added
^^^^^

- First release.
- Added classes for building some of the tags:

Expand Down
2 changes: 1 addition & 1 deletion korona/__pkg__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__package_name__ = 'korona'
__description__ = 'Package for building html pages'
__url__ = 'https://github.com/bharadwajyarlagadda/korona'
__version__ = '0.4.1'
__version__ = '0.4.2-dev'
__author__ = 'Bharadwaj Yarlagadda'
__email__ = 'yarlagaddabharadwaj@gmail.com'
__license__ = 'MIT License'
4 changes: 2 additions & 2 deletions korona/html/tags/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@

from .head import Head
from .header import Header
from .heading import H1, H2, H3, H4, H5, H6
from .horizontal_rule import HR
from .html import Html

from .italics import I
from .iframe import IFrame
from .image import Img

from .heading import H1, H2, H3, H4, H5, H6
from .input import Input
Loading

0 comments on commit 69394cb

Please sign in to comment.