You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2020/02/11 08:26:23 UTC

[ofbiz-plugins] branch trunk updated (9858400 -> 6f17e22)

This is an automated email from the ASF dual-hosted git repository.

adityasharma pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git.


    from 9858400  Improved: no functional change Added .gitignore file
     new e8021b7  Implemented: Cookie Consent In E-Commerce (OFBIZ-11333) The Cookie Law is a piece of privacy legislation that requires websites to get consent from visitors to store or retrieve any information on their computer, smartphone or tablet. It was designed to protect online privacy, by making consumers aware of how information about them is collected and used online, and give them a choice to allow it or not.
     new 031fb51  Implemented: Cookie Consent In E-Commerce (OFBIZ-11333) Implemented internationalisation by initialising the plugin in header.ftl and using uiLabels for title, message and labels. Thanks Michael Brohl for your inputs
     new 6f17e22  Merge pull request #5 from adityasharma7/OFBIZ-11333

The 4070 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ecommerce/config/EcommerceUiLabels.xml             |  15 ++
 ecommerce/data/DemoWebSitePublishPointData.xml     |  20 ++
 ecommerce/template/includes/Header.ftl             |  15 ++
 ecommerce/webapp/ecommerce/WEB-INF/controller.xml  |   6 +
 .../webapp/ecommerce/js/bsgdprcookies/.gitignore   |   1 +
 .../webapp/ecommerce/js/bsgdprcookies/LICENSE      |  21 ++
 .../webapp/ecommerce/js/bsgdprcookies/README.MD    | 139 ++++++++++
 .../ecommerce/js/bsgdprcookies/demo_advanced.html  |  66 +++++
 .../ecommerce/js/bsgdprcookies/demo_simple.html    |  53 ++++
 .../js/bsgdprcookies/jquery.bs.gdpr.cookies.js     | 289 +++++++++++++++++++++
 .../js/bsgdprcookies/jquery.bs.gdpr.cookies.min.js |  18 ++
 ecommerce/widget/CommonScreens.xml                 |  12 +
 ecommerce/widget/Theme.xml                         |   1 +
 13 files changed, 656 insertions(+)
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/.gitignore
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/LICENSE
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/README.MD
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/demo_advanced.html
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/demo_simple.html
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/jquery.bs.gdpr.cookies.js
 create mode 100644 ecommerce/webapp/ecommerce/js/bsgdprcookies/jquery.bs.gdpr.cookies.min.js