diff options
author | nobody <nobody@localhost> | 2001-01-25 00:56:26 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-01-25 00:56:26 +0800 |
commit | a310bf614d8148cf3b8044c2f126b7a3467e5bcd (patch) | |
tree | a11753d8c35a6241e3a6de25969aed4cdfb4ddff /camel/tests/data/genline.pl | |
parent | 93e1f0e581a8f48c5a4596f3325d4dbba5e222cc (diff) | |
download | gsoc2013-evolution-GAL_0_4_99_6.tar.gz gsoc2013-evolution-GAL_0_4_99_6.tar.zst gsoc2013-evolution-GAL_0_4_99_6.zip |
This commit was manufactured by cvs2svn to create tag 'GAL_0_4_99_6'.GAL_0_4_99_6
svn path=/tags/GAL_0_4_99_6/; revision=7784
Diffstat (limited to 'camel/tests/data/genline.pl')
-rwxr-xr-x | camel/tests/data/genline.pl | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/camel/tests/data/genline.pl b/camel/tests/data/genline.pl deleted file mode 100755 index 99ff43c882..0000000000 --- a/camel/tests/data/genline.pl +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/perl - -# Generate 'documents' in different encodings, from po files - -if ($#ARGV < 0) { - print "Usage: genline.pl pofile pofile ...\n"; - exit 1; -} - -sub read_msgstr() -{ - my $str = ""; - while (<IN>) { - if (m/^msgstr \"(.*)\"/) { - $str = $1; - if ($str eq "") { - while (<IN>) { - if (m/\"(.*)\"/) { - $str .= $1; - } else { - last; - } - } - } - return $str; - } - } - return ""; -} - -$unknown = "x-unknown-1"; -open OUT, ">test-lines.h"; - -print OUT <<END; -struct _l { - char *type; - char *line; -} test_lines[] = { -END - -foreach $name (@ARGV) { - if ($name =~ m@([^/]*).po$@) { - $poname = $1; - - open IN,"<$name"; - - $header = read_msgstr; - if ($header =~ /Content-Type:.*charset=([-a-zA-Z0-9]*)/i) { - $charset = $1; - } else { - $charset = $unknown++; - } - - while (!eof(IN)) { - $msg = read_msgstr; - if (length($msg) > 60 && length($msg) < 160) { - print OUT "\t{ \"$charset\", \"$msg\" },\n"; - last; - } -# $msg =~ s/\\n/\n/gso; -# $msg =~ s/\\t/\t/gso; -# $msg =~ s/\\(.)/$1/gso; -# print OUT $msg." "; - } - close IN; - } else { - printf("ignoring $name, probably not intended\n"); - } -} - -print OUT "};\n"; -close OUT; |