This is an automated email from the ASF dual-hosted git repository.
adityasharma pushed a change to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git.
from 416b6a1 Improved: no functional change Added .gitignore file
new cea914a 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 0cd36fe 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
The 2 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