summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-12-14 21:17:31 +0000
committerKarl Berry <karl@freefriends.org>2024-12-14 21:17:31 +0000
commit5be8ab085b8387d285aa26e49e4a040ee34b52a9 (patch)
tree7955a3e71e7c02895cdec2e07ed1180a57a10f5d /Master/texmf-dist
parent69ddfb12aa76de5eae1e06d0013d01a7bab7537c (diff)
checkcites (14dec24)
git-svn-id: svn://tug.org/texlive/trunk@73120 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/support/checkcites/README4
-rw-r--r--Master/texmf-dist/doc/support/checkcites/checkcites-doc.pdfbin296081 -> 296211 bytes
-rw-r--r--Master/texmf-dist/doc/support/checkcites/checkcites-doc.tex10
-rwxr-xr-xMaster/texmf-dist/scripts/checkcites/checkcites.lua8
4 files changed, 11 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/support/checkcites/README b/Master/texmf-dist/doc/support/checkcites/README
index 4e1c29f0c46..30026de3e43 100644
--- a/Master/texmf-dist/doc/support/checkcites/README
+++ b/Master/texmf-dist/doc/support/checkcites/README
@@ -1,5 +1,5 @@
-checkcites.lua -- Version 2.7 from March 3, 2024
-================================================
+checkcites.lua -- Version 2.8 from December 14, 2024
+====================================================
License
-------
diff --git a/Master/texmf-dist/doc/support/checkcites/checkcites-doc.pdf b/Master/texmf-dist/doc/support/checkcites/checkcites-doc.pdf
index 4f8f8f35ec7..6b14ec24781 100644
--- a/Master/texmf-dist/doc/support/checkcites/checkcites-doc.pdf
+++ b/Master/texmf-dist/doc/support/checkcites/checkcites-doc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/checkcites/checkcites-doc.tex b/Master/texmf-dist/doc/support/checkcites/checkcites-doc.tex
index 2b1dbfa163f..11fc99aba5b 100644
--- a/Master/texmf-dist/doc/support/checkcites/checkcites-doc.tex
+++ b/Master/texmf-dist/doc/support/checkcites/checkcites-doc.tex
@@ -20,7 +20,7 @@
\newcommand{\checkcites}{\texttt{checkcites}}
\newcommand{\email}[1]{\small\texttt{#1}}
-\newcommand{\version}{Version 2.7 from March 3, 2024.}
+\newcommand{\version}{Version 2.8 from December 14, 2024.}
\newenvironment{infoblock}[1]
{\par\addvspace{\medskipamount}
@@ -229,7 +229,7 @@ $ checkcites
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.7)
+checkcites.lua -- a reference checker script (v2.8)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2024, Enrico Gregorio, Island of TeX
@@ -266,7 +266,7 @@ $ checkcites --help
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.7)
+checkcites.lua -- a reference checker script (v2.8)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2024, Enrico Gregorio, Island of TeX
@@ -329,7 +329,7 @@ $ checkcites document.aux
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.7)
+checkcites.lua -- a reference checker script (v2.8)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2024, Enrico Gregorio, Island of TeX
@@ -471,7 +471,7 @@ $ checkcites --backend biber document.bcf
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.7)
+checkcites.lua -- a reference checker script (v2.8)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2024, Enrico Gregorio, Island of TeX
diff --git a/Master/texmf-dist/scripts/checkcites/checkcites.lua b/Master/texmf-dist/scripts/checkcites/checkcites.lua
index 83b02d660ee..832e15e73c9 100755
--- a/Master/texmf-dist/scripts/checkcites/checkcites.lua
+++ b/Master/texmf-dist/scripts/checkcites/checkcites.lua
@@ -388,7 +388,7 @@ backends.biber = function(lines, _)
end
else
hit = string.match(line, '^%s*<bcf:datasource type="file" ' ..
- 'datatype="%w+" glob="false">(.+)</bcf:datasource>$')
+ 'datatype="%w+".*>(.+)</bcf:datasource>$')
if hit then
parts = split(hit, '[^,%s]+')
for _, v in ipairs(parts) do
@@ -486,7 +486,7 @@ print("| _| | -_| _| '_| _| | _| -_|_ -|")
print("|___|_|_|___|___|_,_|___|_|_| |___|___|")
print()
print(wrap('checkcites.lua -- a reference ' ..
- 'checker script (v2.7)', 74))
+ 'checker script (v2.8)', 74))
print(wrap('Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda', 74))
print(wrap('Copyright (c) 2024, Enrico Gregorio, Island of TeX', 74))
end
@@ -749,8 +749,8 @@ local function checkcites(args)
if keys['version'] or keys['help'] then
if keys['version'] then
print()
- print(wrap('checkcites.lua, version 2.7 (dated March ' ..
- '3, 2024)', 74))
+ print(wrap('checkcites.lua, version 2.8 (dated December ' ..
+ '14, 2024)', 74))
print(pad('-', 74))
print(wrap('You can find more details about this ' ..