Skip to content

Commit d6c0b74

Browse files
authored
Merge pull request #27 from devkdas/resolve-conf
Resolve conf
2 parents 19e00c3 + 8fa9469 commit d6c0b74

3,330 files changed

Lines changed: 32255 additions & 33163 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ build:
6565
**/*.mk,\
6666
*.m4,\
6767
docs/INSTALL-CMAKE.md,\
68-
lib/curl_config.h.cmake,\
68+
lib/curl_config-cmake.h.in,\
6969
lib/libcurl*.in,\
7070
CMake/**,\
7171
CMakeLists.txt,\
@@ -98,7 +98,7 @@ cmake:
9898
**/CMakeLists.txt,\
9999
CMake/**,\
100100
docs/INSTALL-CMAKE.md,\
101-
lib/curl_config.h.cmake,\
101+
lib/curl_config-cmake.h.in,\
102102
tests/cmake/**\
103103
}"
104104

.github/scripts/badwords.ok

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
2+
#
3+
# SPDX-License-Identifier: curl
4+
#
5+
# whitelisted uses of bad words
6+
# file:[line]:rule
7+
docs/FAQ.md::\bwill\b

.github/scripts/badwords.pl

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
if($ARGV[0] eq "-w") {
3131
shift @ARGV;
3232
my $file = shift @ARGV;
33-
open(W, "<$file");
33+
open(W, "<$file") or die "Cannot open '$file': $!";
3434
while(<W>) {
3535
if(/^#/) {
3636
# allow #-comments
3737
next;
3838
}
39-
if(/^([^:]*):(\d+):(.*)/) {
39+
if(/^([^:]*):(\d*):(.*)/) {
4040
$wl{"$1:$2:$3"}=1;
4141
#print STDERR "whitelisted $1:$2:$3\n";
4242
}
@@ -93,7 +93,13 @@ sub file {
9393

9494
my $ch = "$f:$l:$w";
9595
if($wl{$ch}) {
96-
# whitelisted
96+
# whitelisted filename + line + word
97+
print STDERR "$ch found but whitelisted\n";
98+
next;
99+
}
100+
$ch = $f . "::" . $w;
101+
if($wl{$ch}) {
102+
# whitelisted filename + word
97103
print STDERR "$ch found but whitelisted\n";
98104
next;
99105
}

.github/scripts/badwords.txt

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ tool chain:toolchain
1010
tool-chain:toolchain
1111
wild-card:wildcard
1212
wild card:wildcard
13+
\bthread ?safe[^."t]:thread-safe
14+
\bthread ?unsafe[^."t]:thread-unsafe
15+
multi ?thread:multi-thread
1316
\bit's:it is
1417
aren't:are not
1518
can't:cannot
1619
could've:could have
1720
couldn't:could not
1821
didn't:did not
1922
doesn't:does not
20-
don't=do not
23+
don't:do not
2124
haven't:have not
2225
i'd:I would
2326
i'll:I will
@@ -74,10 +77,10 @@ file names\b:filenames
7477
\buser names\b:usernames
7578
\bpass phrase:passphrase
7679
\bwill\b:rewrite to present tense
77-
\b32bit=32-bit
78-
\b64bit=64-bit
79-
32 bit\b=32-bit
80-
64 bit\b=64-bit
80+
\b32bit:32-bit
81+
\b64bit:64-bit
82+
32 bit\b:32-bit
83+
64 bit\b:64-bit
8184
64-bits:64 bits or 64-bit
8285
32-bits:32 bits or 32-bit
8386
\bvery\b:rephrase using an alternative word

.github/scripts/cmp-config.pl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
'#define HAVE_OPENSSL_PEM_H 1' => 1,
6969
'#define HAVE_OPENSSL_RSA_H 1' => 1,
7070
'#define HAVE_OPENSSL_SSL_H 1' => 1,
71-
'#define HAVE_OPENSSL_X509_H 1' => 1,
7271
'#define HAVE_QUICHE_H 1' => 1,
7372
'#define HAVE_SSL_SET_QUIC_TLS_CBS 1' => 1,
7473
'#define HAVE_SSL_SET_QUIC_USE_LEGACY_CODEPOINT 1' => 1,
@@ -136,6 +135,5 @@ sub grepit {
136135
}
137136
}
138137

139-
140138
# return the exit code from diff
141139
exit system("diff -u /tmp/autotools /tmp/cmake") >> 8;

.github/scripts/codespell-ignore.words

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ bu
77
clen
88
CNA
99
hel
10-
htpt
10+
htpts
1111
inout
1212
PASE
1313
passwor

.github/scripts/pyspelling.words

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ axTLS
5353
backend
5454
backends
5555
backoff
56+
backtick
5657
backticks
5758
balancers
5859
Baratov
@@ -171,8 +172,10 @@ dbg
171172
Debian
172173
DEBUGBUILD
173174
decrypt
175+
decrypted
174176
decrypting
175177
deepcode
178+
defacto
176179
DELE
177180
DER
178181
dereference
@@ -201,6 +204,7 @@ DLLs
201204
DNS
202205
dns
203206
dnsop
207+
DNSSEC
204208
DoH
205209
DoT
206210
doxygen
@@ -214,6 +218,7 @@ dynbuf
214218
EAGAIN
215219
EBCDIC
216220
ECC
221+
ECCN
217222
ECDHE
218223
ECH
219224
ECHConfig
@@ -258,6 +263,7 @@ Fedora
258263
Feltzing
259264
ffi
260265
filesize
266+
filesystem
261267
FindCURL
262268
FLOSS
263269
fnmatch
@@ -299,6 +305,7 @@ Ghedini
299305
giga
300306
Gisle
301307
Glesys
308+
glibc
302309
globbed
303310
globbing
304311
gmail
@@ -380,6 +387,7 @@ imap
380387
IMAPS
381388
imaps
382389
impacket
390+
implementers
383391
init
384392
initializer
385393
inlined
@@ -433,7 +441,9 @@ ldap
433441
LDAPS
434442
ldaps
435443
LF
444+
LGPL
436445
LGTM
446+
libbacktrace
437447
libbrotlidec
438448
libc
439449
libcurl
@@ -567,6 +577,7 @@ Necko
567577
NetBSD
568578
netrc
569579
netstat
580+
NetWare
570581
Netware
571582
NFS
572583
nghttp
@@ -710,6 +721,7 @@ ROADMAP
710721
Roadmap
711722
Rockbox
712723
roffit
724+
RPC
713725
RPG
714726
RR
715727
RRs
@@ -797,6 +809,7 @@ sprintf
797809
src
798810
SRP
799811
SRWLOCK
812+
SSI
800813
SSL
801814
ssl
802815
SSLeay
@@ -961,8 +974,10 @@ wcurl
961974
WebDAV
962975
WebOS
963976
webpage
977+
webpages
964978
WebSocket
965979
WEBSOCKET
980+
Wget
966981
WHATWG
967982
whitespace
968983
Whitespaces
@@ -981,6 +996,7 @@ www
981996
Xbox
982997
XDG
983998
xdigit
999+
XHTML
9841000
Xilinx
9851001
xmllint
9861002
XP

.github/scripts/pyspelling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ matrix:
3030
- 'strong'
3131
- 'em'
3232
sources:
33-
- '**/*.md|!docs/BINDINGS.md|!docs/DISTROS.md|!docs/CIPHERS-TLS12.md|!docs/wcurl.md'
33+
- '**/*.md|!docs/BINDINGS.md|!docs/DISTROS.md|!docs/CIPHERS-TLS12.md|!docs/wcurl.md|!tests/data/data*.md'

.github/scripts/randcurl.pl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ sub randarg {
116116
'26' => 1,
117117
);
118118

119-
120119
sub runone {
121120
my $a;
122121
my $nargs = getnum(60) + 1;

.github/scripts/requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#
33
# SPDX-License-Identifier: curl
44

5-
pyspelling==2.12
5+
pyspelling==2.12.1

0 commit comments

Comments
 (0)