Skip to content
#

cookies

Here are 452 public repositories matching this topic...

requests
psiyan
psiyan commented Feb 28, 2020

When using the url http://docs.python-requests.org/en/latest/, it redirects to https://2.python-requests.org//en/latest/ (notice the extra / before en). This causes a HTTP 404.

Expected Result

The redirect should be to https://2.python-requests.org/en/latest/

Actual Result

HTTP 404

Reproduction Steps

Try to visit the latest en documentation for requests using the

cookieconsent
hodonsky
hodonsky commented Jul 21, 2019

This will be a living issue with a check list. The list will contain either links to issue with related documentation problems, or a exact description of the change to be made to the docs ( do not use line numbers, those will change, as this ticket gets close to completion.

Upon v4, this will expire and new docs will be created.

privacybadger
finn0
finn0 commented Feb 26, 2020

Like other privacy friendly extensions, it would be nice if Privacy Badger also has a "Reload Page" button in its popup.

Sometimes PB breaks websites, and to fix those issues, I've to do some adjustments in "domain slider"; but after adjustments I've to either click on browser's reload icon or press ctrl+R, it would be nice if I can reload page directly from PB popup.

This would be especia

mrbone
mrbone commented Aug 22, 2018

When I want to record the user visit time in the header, I found the 0 value cannot set to cookie only if we convert it to string type, but other number type value can be saved.
I create one test to reproduce the issue:

it('when set value to 0', () => {
      var cookie = new cookies.Cookie('foo', 0 );
      assert.equal(cookie.toHeader(), 'foo=0; path=/; httponly')
 }) //this will
DBi1512
DBi1512 commented Mar 27, 2019
const rectangle = {
  width: 20, 
  height:10,
  area: 200
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width, height, area, perimeter)  //20 10 200 60
//Lets modify the object:width to 30 and perimeter to 80
const rectangle = {
  width: 30, 
  height:10,
  area: 200,
  perimeter:80
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width

Improve this page

Add a description, image, and links to the cookies topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cookies topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.