-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbbe56e
commit 823e4c6
Showing
73 changed files
with
266,456 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -493,6 +493,12 @@ PRIMARY MAINTAINER: Andrei Zmievski <[email protected]> (2002 - 2002) | |
MAINTENANCE: Maintained | ||
STATUS: Working | ||
------------------------------------------------------------------------------- | ||
EXTENSION: url | ||
PRIMARY MAINTAINER Máté Kocsis <[email protected]> (2024 - 2024) | ||
MAINTENANCE: Maintained | ||
STATUS: Working | ||
SINCE: 8.3.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.