-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RFC 3986 and WHATWG compliant URL parsing support
- Loading branch information
1 parent
e150b0b
commit 02f5c6b
Showing
128 changed files
with
279,736 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -494,6 +494,12 @@ PRIMARY MAINTAINER: Andrei Zmievski <[email protected]> (2002 - 2002) | |
MAINTENANCE: Maintained | ||
STATUS: Working | ||
------------------------------------------------------------------------------- | ||
EXTENSION: uri | ||
PRIMARY MAINTAINER Máté Kocsis <[email protected]> (2024 - 2024) | ||
MAINTENANCE: Maintained | ||
STATUS: Working | ||
SINCE: 8.5.0 | ||
------------------------------------------------------------------------------- | ||
EXTENSION: zip | ||
PRIMARY MAINTAINER: Pierre-Alain Joye <[email protected]> (2006 - 2011) | ||
Remi Collet <[email protected]> (2013-2020) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2023 Alexander Borisov | ||
* | ||
* Author: Alexander Borisov <[email protected]> | ||
*/ | ||
|
||
#ifndef LEXBOR_PUNYCODE_BASE_H | ||
#define LEXBOR_PUNYCODE_BASE_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include "lexbor/core/base.h" | ||
|
||
|
||
#define LXB_PUNYCODE_VERSION_MAJOR 1 | ||
#define LXB_PUNYCODE_VERSION_MINOR 0 | ||
#define LXB_PUNYCODE_VERSION_PATCH 0 | ||
|
||
#define LEXBOR_PUNYCODE_VERSION_STRING LEXBOR_STRINGIZE(LXB_PUNYCODE_VERSION_MAJOR) "." \ | ||
LEXBOR_STRINGIZE(LXB_PUNYCODE_VERSION_MINOR) "." \ | ||
LEXBOR_STRINGIZE(LXB_PUNYCODE_VERSION_PATCH) | ||
|
||
|
||
#ifdef __cplusplus | ||
} /* extern "C" */ | ||
#endif | ||
|
||
#endif /* LEXBOR_PUNYCODE_BASE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set(DEPENDENCIES "core encoding") | ||
set(DESCRIPTION "The module implemented by PUNYCODE specification. | ||
Specification: https://www.rfc-editor.org/rfc/inline-errata/rfc3492.html") |
Oops, something went wrong.