summaryrefslogtreecommitdiff
path: root/src/camel/tests/data/gendoc.pl
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2016-10-11 11:47:14 +0200
committerMilan Crha <mcrha@redhat.com>2016-10-11 11:47:14 +0200
commitd7931c6dd9db1e090f4bb466983c3dced19e2201 (patch)
tree31e31eef195355e800c63be6b4dcfefe6e37bb84 /src/camel/tests/data/gendoc.pl
parent4febe3ae82e850ca9f17229dd2dbd9cdd8708a8f (diff)
downloadevolution-data-server-d7931c6dd9db1e090f4bb466983c3dced19e2201.tar.gz
Reorganize directory structure
Let's have it as it's common to be, which means top level src/ for sources, single data/ for data, and so on.
Diffstat (limited to 'src/camel/tests/data/gendoc.pl')
-rwxr-xr-xsrc/camel/tests/data/gendoc.pl65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/camel/tests/data/gendoc.pl b/src/camel/tests/data/gendoc.pl
new file mode 100755
index 000000000..732f05a4e
--- /dev/null
+++ b/src/camel/tests/data/gendoc.pl
@@ -0,0 +1,65 @@
+#!/usr/bin/perl
+
+# Generate 'documents' in different encodings, from po files
+
+if ($#ARGV < 0) {
+ print "Usage: gendoc.pl pofile pofile ...\n";
+ exit 1;
+}
+
+$fmt = "| fmt -u ";
+
+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";
+
+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++;
+ }
+
+ print "Building $poname.$charset.txt from $name\n";
+
+ open OUT,"$fmt > $poname.$charset.txt";
+ while (!eof(IN)) {
+ $msg = read_msgstr;
+ # de-escape
+ $msg =~ s/\\n/\n/gso;
+ $msg =~ s/\\t/\t/gso;
+ $msg =~ s/\\(.)/$1/gso;
+ print OUT $msg." ";
+ }
+ close OUT;
+ close IN;
+ } else {
+ printf("ignoring $name, probably not intended\n");
+ }
+}
+