url
Here are 1,247 public repositories matching this topic...
It would be nice to enable a generic fn that can be used to hack add customize use cases
function filterFunc(key, value) {
if (key == 'b') {
// Return an `undefined` value to omit a property.
return;
}
if (key == 'e[f]') {
return value.getTime();
}
if (key == 'e[g][0]') {
return value * 2;
}
return value;
}Error in README
- The example configuration of tunnel.yml: indent charaters uses both tab and spaces, which makes it not parsable.
2 After fixed 1, client throws the following error:
configuration error: tls invalid protocol "sni"
Client version: 2.1
If I create a furl object without a scheme like so:
>>>from furl import furl
>>>x = furl('www.google.com')
It fails in weird ways that aren't exactly intuitive.
I would expect that furl should either raise an error here or create a URL without a scheme.
Instead I get weird results like:
>>> g.origin
'://'
>>> g.host
>>> g.netloc
-
Updated
May 20, 2020 - JavaScript
Ideas:
- Set a minimum dimension for images.
- Find a way to detect dimensions before downloading the image.
-
Updated
Mar 30, 2019 - Swift
-
Updated
May 15, 2020 - TypeScript
Currently most of the examples in the README expect something after the /. Given that matching the "empty path" is a very common scenario users will want to accomplish it could be documented more prominently. I don't have more than anecdotal data on this but I'd expect that it is also often a source of confusion.
(def my-routes ["/" {"" :index ; I'm not even sure if this is correc-
Updated
Jan 30, 2019 - Java
-
Updated
Jan 10, 2020 - JavaScript
-
Updated
Apr 16, 2020 - JavaScript
-
Updated
Sep 27, 2019 - JavaScript
-
Updated
Sep 20, 2019 - PHP
-
Updated
May 2, 2020 - JavaScript
As an occasional standards-user, the lack of a succinct expression of the grammar for valid URL strings is rather frustrating. It makes it rather difficult to follow what's going on and, in particular, to work out whether a given thing is a valid URL. A grammar in EBNF or a similar form would be greatly appreciated and make this spec significantly easier to understand.
bannedregexpurllist:
котик
kitty
e2guardian.conf:
weightedphrasemode = 1
phrasefiltermode = 2
preservecase = 2
hexdecodecontent = off
forcequicksearch = on
When I visit, for example, http://blank.org/?котик - request is blocked, all ok. But when I visit http://blank.org/?КОТИК or http://blank.org/?Котик - all passes.
When I enter http://blank.org/?kitty or http://bl
Input:
new URL('http://a.com')Output:
{
...
href: 'http://a.com/',
origin: 'http://a.com:80',
port: '80',
...
}Expected (as is in Chrome):
{
...
href: 'http://a.com/',
origin: 'http://a.com',
port: '',
...
}Edit: this consequence seems to occur in IE only :/
-
Updated
Aug 4, 2017 - JavaScript
Improve this page
Add a description, image, and links to the url topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the url topic, visit your repo's landing page and select "manage topics."
Coming from
qswe would control how arrays in query parameters would be with thearrayFormatoption (quote fromqsdocs below):