Fix
This commit is contained in:
52
ngx-fancyindex/template.awk
Executable file
52
ngx-fancyindex/template.awk
Executable file
@@ -0,0 +1,52 @@
|
||||
#! /usr/bin/awk -f
|
||||
#
|
||||
# Copyright © Adrian Perez <aperez@igalia.com>
|
||||
#
|
||||
# Converts an HTML template into a C header suitable for inclusion.
|
||||
# Take a look at the HACKING.rst file to know how to use it :-)
|
||||
#
|
||||
# This code is placed in the public domain.
|
||||
|
||||
BEGIN {
|
||||
varname = 0;
|
||||
print "/* Automagically generated, do not edit! */"
|
||||
vars_count = 0;
|
||||
}
|
||||
|
||||
/^<!--[[:space:]]*var[[:space:]]+[^[:space:]]+[[:space:]]*-->$/ {
|
||||
if (varname) print ";";
|
||||
if ($3 == "NONE") {
|
||||
varname = 0;
|
||||
next;
|
||||
}
|
||||
varname = $3;
|
||||
vars[vars_count++] = varname;
|
||||
print "static const u_char " varname "[] = \"\"";
|
||||
next;
|
||||
}
|
||||
|
||||
/^$/ {
|
||||
if (!varname) next;
|
||||
print "\"\\n\"";
|
||||
next;
|
||||
}
|
||||
|
||||
{
|
||||
if (!varname) next;
|
||||
# Order matters
|
||||
gsub(/[\t\v\n\r\f]+/, "");
|
||||
gsub(/\\/, "\\\\");
|
||||
gsub(/"/, "\\\"");
|
||||
print "\"" $0 "\""
|
||||
}
|
||||
|
||||
|
||||
END {
|
||||
if (varname) print ";";
|
||||
print "#define NFI_TEMPLATE_SIZE (0 \\";
|
||||
for (var in vars) {
|
||||
print "\t+ nfi_sizeof_ssz(" vars[var] ") \\";
|
||||
}
|
||||
print "\t)"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user