📄 maketags
字号:
#!/usr/bin/perl
# This file is part of the KDE libraries
#
# Copyright (C) 1998 Waldo Bastian (bastian@kde.org)
# 1999 Lars Knoll (knoll@kde.org)
# Copyright (C) 2004 Apple Computer, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with this library; see the file COPYING.LIB. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
#----------------------------------------------------------------------------
#
# KDE HTML Widget -- Script to generate htmltags.c and htmltags.h
#
use strict;
open IN, "htmltags.in"
or die "Can't open in\n";
open header, ">htmltags.h"
or die "Can't open header\n";
open out, ">htmltags.gperf"
or die "Can't open out\n";
print out "%{\n/* This file is automatically generated from htmltags.in by maketags, do not edit */\n/* Copyright 1999 Lars Knoll */\n#include \"htmltags.h\"\n%}\n";
print out "struct tags {\n const char *name;\n int id;\n};\n%%\n";
print header "/* This file is automatically generated from
htmltags.in by maketags, do not edit */\n/* Copyright 1999 Lars Knoll */\n/* Copyright 2004 Apple Computer, Inc. */\n\n#ifndef KHTML_TAGS_H\n#define KHTML_TAGS_H\n\n#include \"dom/dom_string.h\"\n\n";
print header "DOM::DOMString getTagName(unsigned short id);\n\n";
my $num = 0;
my $openTags = "";
my $closeTags = "";
while (<IN>) {
chomp;
my $attr = $_;
$num += 1;
my $up = uc($attr);
$openTags .= " \"$up\",\n";
$closeTags .= " \"/$up\",\n";
$up =~ s/-/_/;
print out $attr . ", ID_" . $up . "\n";
print header "const unsigned short ID_$up = $num;\n";
}
print out "anchor, ID_A\n";
print out "image, ID_IMG\n";
print out "listing, ID_PRE\n";
$num += 1;
print header "const unsigned short ID_TEXT = $num;\n";
$num += 1;
print header "const unsigned short ID_COMMENT = $num;\n";
print header "const unsigned short ID_LAST_TAG = $num;\n";
print header "const unsigned short ID_CLOSE_TAG = 32000;\n";
print out "%%\n";
close out;
print header "\n#endif\n";
close header;
my $result = system("/bin/sh", "-c", "gperf -a -L 'ANSI-C' -D -E -C -l -o -t -k '*' -NfindTag -Hhash_tag -Wwordlist_tag htmltags.gperf > htmltags.c");
if ($result) {
unlink "htmltags.c";
exit $result;
}
open IN, "htmltags.c" or die;
my $numLines = 0;
while (<IN>) {
$numLines++;
}
$numLines += 2;
chomp $openTags;
chomp $closeTags;
open OUT, ">>htmltags.c" or die;
print OUT <<END
#line $numLines "htmltags.c"
using DOM::DOMString;
static const char * const openTagNames[] = {
0,
$openTags
"TEXT",
"COMMENT"
};
static const char * const closeTagNames[] = {
0,
$closeTags
};
DOMString getTagName(unsigned short id)
{
if (id > ID_CLOSE_TAG) {
int index = id - ID_CLOSE_TAG;
if (index >= ID_TEXT)
return DOMString();
return closeTagNames[index];
}
if (id > ID_LAST_TAG)
return DOMString();
return openTagNames[id];
}
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -