aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/docs/convert.pl
blob: 9d83f1c0cf0d88867e09d89add355da1324fd831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/perl

die "Usage: $0 <text file> <html file> <TexInfo file>\n"
  unless scalar @ARGV == 3;

my ($text, $html, $texi) = @ARGV;

open TEXT, "<$text" or die "Cannot open text file \"$text\"\n";
open HTML, ">$html" or die "Cannot create html file \"$html\"\n";
open TEXI, ">$texi" or die "Cannot create TexInfo file \"$texi\"\n";

print HTML "<html>";

sub analyze($) {
  my ($line) = @_;
  my ($htmlLine, $texiLine) = ($line, $line);

  # command line options
  $texiLine =~ s/ (--?[a-z-]*)/ \@option{$1}/g;
  $htmlLine =~ s/ (--?[a-z-]*)/ <tt>$1<\/tt>/g;

  # [Class::]function()
  $texiLine =~ s/([^A-Za-z])(([A-Z][A-Za-z0-9]*::)?[A-Za-z0-9]+\(\))/$1\@code{$2}/g;
  $htmlLine =~ s/([^A-Za-z])(([A-Z][A-Za-z0-9]*::)?[A-Za-z0-9]+\(\))/$1<code>$2<\/code>/g;

  # `file'
  $texiLine =~ s/`([A-Za-z.\/]*)'/\@file{$1}/g;
  $htmlLine =~ s/`([A-Za-z.\/]*)'/<tt>`$1'<\/tt>/g;

  # TS...
  $texiLine =~ s/(^|[^A-Z])(TS[A-Za-z_*()]*)/$1\@code{$2}/g;
  $htmlLine =~ s/(^|[^A-Z])(TS[A-Za-z_*()]*)/$1<code>$2<\/code>/g;

  # CXXTEST_
  $texiLine =~ s/(CXXTEST_[A-Z_]*)/\@code{$1}/g;
  $htmlLine =~ s/(CXXTEST_[A-Z_]*)/<tt>$1<\/tt>/g;

  return ($htmlLine, $texiLine);
}

my $line;
my $inRelease = 0;
while ( defined( $line = <TEXT> ) ) {
  chomp $line;
  if ( $line =~ m/^CxxTest Releases/ ) {
    print HTML "<title>CxxTest Releases</title>\n";
    print HTML "<h1>CxxTest Releases</h1>\n\n";

    print TEXI "\@appendix Version history\n";
    print TEXI "\@itemize \@bullet\n";
  }
  elsif ( $line =~ m/^(.*):$/ ) {
    if ( $inRelease ) {
      print HTML "</ul>\n\n";
      print TEXI "\@end itemize\n";
    }

    print HTML "<h2>$1</h2>\n";
    print HTML "<ul>\n";

    print TEXI "\@item\n\@strong{$1}\n";
    print TEXI "\@itemize \@minus\n";

    $inRelease = 1;
  }
  elsif ( $line =~ m/^ - (.*)$/ ) {
    my ($htmlLine, $texiLine) = analyze($1);
    print HTML "<li>$htmlLine</li>\n";
    print TEXI "\@item\n$texiLine\n";
  }
}

if ( $inRelease ) {
  print HTML "</ul>\n\n";
  print TEXI "\@end itemize\n\n";
}

print HTML "</html>\n";
print TEXI "\@end itemize\n";

close TEXT or die "Error closing text file \"$text\"\n";
close HTML or die "Error closing html file \"$html\"\n";
close TEXI or die "Error closing TexInfo file \"$texi\"\n";