authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-02-18 16:47:24 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-02-18 16:47:24 -08:00
log7ea09ec54a45ddcb55c867c3b48e71e3c94119d6
tree4b2455e7059dd63624b0c96dec29f7f34816dec4
parentc39e4d6ff492cf72c9d2f271bf0f39d121f83bc0

add link to remote url for file


4 files changed, 12 insertions(+), 1 deletions(-)

scripts/_common.zig+6-1
...@@ -31,8 +31,13 @@ pub fn Main(comptime T: type) type {...@@ -31,8 +31,13 @@ pub fn Main(comptime T: type) type {
31 \\// See http://www.unicode.org/reports/tr44/ for more information.31 \\// See http://www.unicode.org/reports/tr44/ for more information.
32 \\//32 \\//
33 \\33 \\
34 \\
35 );34 );
35 try w.print(
36 \\// Based on the source file: {s}
37 \\//
38 \\
39 \\
40 , .{T.source_url});
36 try w.writeAll(T.dest_header);41 try w.writeAll(T.dest_header);
3742
38 const req = try zfetch.Request.init(alloc, T.source_url, null);43 const req = try zfetch.Request.init(alloc, T.source_url, null);
src/arabic_shaping.zig+2
...@@ -1,6 +1,8 @@...@@ -1,6 +1,8 @@
1// This file is part of the Unicode Character Database1// This file is part of the Unicode Character Database
2// See http://www.unicode.org/reports/tr44/ for more information.2// See http://www.unicode.org/reports/tr44/ for more information.
3//3//
4// Based on the source file: https://unicode.org/Public/13.0.0/ucd/ArabicShaping.txt
5//
46
5pub const Shaping = struct {7pub const Shaping = struct {
6 codepoint: u21,8 codepoint: u21,
src/bidi_brackets.zig+2
...@@ -1,6 +1,8 @@...@@ -1,6 +1,8 @@
1// This file is part of the Unicode Character Database1// This file is part of the Unicode Character Database
2// See http://www.unicode.org/reports/tr44/ for more information.2// See http://www.unicode.org/reports/tr44/ for more information.
3//3//
4// Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiBrackets.txt
5//
46
5pub const BracketPairing = struct {7pub const BracketPairing = struct {
6 codepoint: u21,8 codepoint: u21,
src/blocks.zig+2
...@@ -1,6 +1,8 @@...@@ -1,6 +1,8 @@
1// This file is part of the Unicode Character Database1// This file is part of the Unicode Character Database
2// See http://www.unicode.org/reports/tr44/ for more information.2// See http://www.unicode.org/reports/tr44/ for more information.
3//3//
4// Based on the source file: https://unicode.org/Public/13.0.0/ucd/Blocks.txt
5//
46
5pub const Block = struct {7pub const Block = struct {
6 from: u21,8 from: u21,