Various helper methods for development.
Project description
.. image:: https://travis-ci.org/IMIO/imio.helpers.svg?branch=master
:target: https://travis-ci.org/IMIO/imio.helpers
.. image:: https://coveralls.io/repos/IMIO/imio.helpers/badge.png?branch=master
:target: https://coveralls.io/r/IMIO/imio.helpers?branch=master
====================
imio.helpers
====================
Various helper methods for development.
Contributors
============
- Simon Delcourt, simon.delcourt@imio.be
- Gauthier Bastien, gauthier.bastien@imio.be
Changelog
=========
0.4.13 (2016-01-22)
-------------------
- Use safe_unicode() instead of unicode(), especially in xhtml.markEmptyTags
to avoid UnicideDecode errors.
[gbastien]
0.4.12 (2016-01-21)
-------------------
- Added test when an uid (path) is no more in the portal_catalog,
it does not break catalog.addOrUpdateColumns.
[gbastien]
- In xhtml.xhtmlContentIsEmpty, do no more consider tag children in _isEmpty,
a tag rendering nothing (text_content().strip() is empty) will be considered empty.
[gbastien]
0.4.11 (2015-11-12)
-------------------
- Added 'cache.cleanRamCache' method that will invalidateAll ram.cache.
[gbastien]
0.4.10 (2015-08-21)
-------------------
- Add get_environment method and test.
[bsuttor]
- is_develop_environment method is true if global environment variable 'ENV' is equal to 'dev'.
[bsuttor]
- Added 'cache' module with helper methods 'cleanVocabularyCacheFor' that will clean
instance.memoize cache defined on a named vocabulary and 'cleanRamCacheFor' that
will clean ram.cache defined on a given method.
[gbastien]
0.4.9 (2015-04-21)
------------------
- In xhtml.addClassToLastChildren, do not define an empty class attribute. Indeed, not
managed tags were decorated with a 'class=""' attribute, this is no more the case.
[gbastien]
0.4.8 (2015-04-20)
------------------
- Manage every text formatting tags in xhtml.addClassToLastChildren and
do not break on unknwon tags.
[gbastien]
- Replace special characters by corresponding HTML entity in xhtml.addClassToLastChildren
so rendered content still contains original HTML entities. This avoid HTML entities being
rendered as UTF-8 characters and some weirdly recognized (" ").
[gbastien]
0.4.7 (2015-03-06)
------------------
- Adapted method xhtml.addClassToLastChildren to mark parent tag containing unhandled tags.
[gbastien]
0.4.6 (2015-02-26)
------------------
- Added method markEmptyTags that will mark empty tags of a given
xhtmlContent with a specific CSS class.
[gbastien]
- Removed method security.call_as_super_user as we will rely on
plone.api.env.adopt_roles to execute some methods as super user.
[gbastien]
0.4.5 (2015-02-05)
------------------
- Added method to test if the buildout is in development mode (IS_DEV_ENV=True).
[sgeulette]
- Added method to generate a password following criterias.
[sgeulette]
0.4.4 (2015-01-29)
------------------
- Make it possible to pass specific class by tag to hxtml.addClassToLastChildren,
this way, a specific class can be set depending on the node tag.
[gbastien]
0.4.3 (2015-01-20)
------------------
- Added method addClassToLastChildren that will add a specific class attribute
to last tags of a given xhtmlContent.
[gbastien]
0.4.2 (2014-09-19)
------------------
- Do not consider xhtmlContent to easily empty : xhtmlContent is empty if it does not produce
text, does not have attributes and does not have children.
[gbastien]
- Use method xhtmlContentIsEmpty in method removeBlanks to avoid duplicating code and logic.
[gbastien]
0.4.1 (2014-09-11)
------------------
- Corrected bug in 'removeBlanks' that removed children of an empty parent tag, that leaded
to removal of complex trees like <u><li>My text</li><li>My second text</li></ul>.
[gbastien]
0.3 (2014-09-04)
----------------
- Corrected bug in 'xhtmlContentIsEmpty' that did not managed correctly complex HTML tree.
We use now lxml method 'text_content' to check if a HTML structure will render something or not.
[gbastien]
0.2 (2014-08-27)
----------------
- Added xhtml.py module with helper methods for XHTML content :
- 'removeBlanks' that will remove blank lines of a given xhtmlContent;
- 'xhtmlContentIsEmpty' that will check if given xhtmlContent will produce something when rendered.
[gbastien]
0.1 (2014-08-18)
----------------
- Initial release.
[sdelcourt]
:target: https://travis-ci.org/IMIO/imio.helpers
.. image:: https://coveralls.io/repos/IMIO/imio.helpers/badge.png?branch=master
:target: https://coveralls.io/r/IMIO/imio.helpers?branch=master
====================
imio.helpers
====================
Various helper methods for development.
Contributors
============
- Simon Delcourt, simon.delcourt@imio.be
- Gauthier Bastien, gauthier.bastien@imio.be
Changelog
=========
0.4.13 (2016-01-22)
-------------------
- Use safe_unicode() instead of unicode(), especially in xhtml.markEmptyTags
to avoid UnicideDecode errors.
[gbastien]
0.4.12 (2016-01-21)
-------------------
- Added test when an uid (path) is no more in the portal_catalog,
it does not break catalog.addOrUpdateColumns.
[gbastien]
- In xhtml.xhtmlContentIsEmpty, do no more consider tag children in _isEmpty,
a tag rendering nothing (text_content().strip() is empty) will be considered empty.
[gbastien]
0.4.11 (2015-11-12)
-------------------
- Added 'cache.cleanRamCache' method that will invalidateAll ram.cache.
[gbastien]
0.4.10 (2015-08-21)
-------------------
- Add get_environment method and test.
[bsuttor]
- is_develop_environment method is true if global environment variable 'ENV' is equal to 'dev'.
[bsuttor]
- Added 'cache' module with helper methods 'cleanVocabularyCacheFor' that will clean
instance.memoize cache defined on a named vocabulary and 'cleanRamCacheFor' that
will clean ram.cache defined on a given method.
[gbastien]
0.4.9 (2015-04-21)
------------------
- In xhtml.addClassToLastChildren, do not define an empty class attribute. Indeed, not
managed tags were decorated with a 'class=""' attribute, this is no more the case.
[gbastien]
0.4.8 (2015-04-20)
------------------
- Manage every text formatting tags in xhtml.addClassToLastChildren and
do not break on unknwon tags.
[gbastien]
- Replace special characters by corresponding HTML entity in xhtml.addClassToLastChildren
so rendered content still contains original HTML entities. This avoid HTML entities being
rendered as UTF-8 characters and some weirdly recognized (" ").
[gbastien]
0.4.7 (2015-03-06)
------------------
- Adapted method xhtml.addClassToLastChildren to mark parent tag containing unhandled tags.
[gbastien]
0.4.6 (2015-02-26)
------------------
- Added method markEmptyTags that will mark empty tags of a given
xhtmlContent with a specific CSS class.
[gbastien]
- Removed method security.call_as_super_user as we will rely on
plone.api.env.adopt_roles to execute some methods as super user.
[gbastien]
0.4.5 (2015-02-05)
------------------
- Added method to test if the buildout is in development mode (IS_DEV_ENV=True).
[sgeulette]
- Added method to generate a password following criterias.
[sgeulette]
0.4.4 (2015-01-29)
------------------
- Make it possible to pass specific class by tag to hxtml.addClassToLastChildren,
this way, a specific class can be set depending on the node tag.
[gbastien]
0.4.3 (2015-01-20)
------------------
- Added method addClassToLastChildren that will add a specific class attribute
to last tags of a given xhtmlContent.
[gbastien]
0.4.2 (2014-09-19)
------------------
- Do not consider xhtmlContent to easily empty : xhtmlContent is empty if it does not produce
text, does not have attributes and does not have children.
[gbastien]
- Use method xhtmlContentIsEmpty in method removeBlanks to avoid duplicating code and logic.
[gbastien]
0.4.1 (2014-09-11)
------------------
- Corrected bug in 'removeBlanks' that removed children of an empty parent tag, that leaded
to removal of complex trees like <u><li>My text</li><li>My second text</li></ul>.
[gbastien]
0.3 (2014-09-04)
----------------
- Corrected bug in 'xhtmlContentIsEmpty' that did not managed correctly complex HTML tree.
We use now lxml method 'text_content' to check if a HTML structure will render something or not.
[gbastien]
0.2 (2014-08-27)
----------------
- Added xhtml.py module with helper methods for XHTML content :
- 'removeBlanks' that will remove blank lines of a given xhtmlContent;
- 'xhtmlContentIsEmpty' that will check if given xhtmlContent will produce something when rendered.
[gbastien]
0.1 (2014-08-18)
----------------
- Initial release.
[sdelcourt]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
imio.helpers-0.4.13.zip
(39.1 kB
view hashes)