
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Easily add a Cookie consent banner, upon the user’s first visit to the site, to alert the users about the cookies and get consent for setting them.
Add this line to your application's Gemfile:
gem 'cookiesalert'
And then execute:
$ bundle
Add in "application.js":
//= require cookiesalert/cookie
//= require cookiesalert/cookies_alert
Run Javascript check when load/ready:
$( document ).ready(function() {
cookies.check();
});
Javascript optional parameters to select "#text_div" and add listener in "#button_confirm" to accept cookies:
cookies.check({
div : '#div',
btn : '#button',
expires : 7 //Days
});
Add optional styles in "application.css":
*= require cookiesalert/cookies_alert
Import optional view layout:
<%= render "cookies/alert", advice: "Cookies Text", link: "Link Advice", button: "Button" %>
Render optional parameters:
<%= render "cookies/alert", advice: "Cookies Text", link: link_to('Link Advice', root_path, target: '_blank'), button: image_tag('cross_cookies.svg') %>
ESLint file config ".eslintrc.js":
module.exports = {
"env": {
"browser": true,
"commonjs": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-undef" : 0
}
};
Bug reports and pull requests are welcome on GitHub. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
cookiesalert
is Copyright © 2018 CodiTramuntana SL. It is free software, and may be redistributed under the terms specified in the LICENSE file.
Maintained by CodiTramuntana.
The names and logos for CodiTramuntana are trademarks of CodiTramuntana SL.
We love open source software!
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.