releaseAutomation/wikify_bom_fcl_changes.pl
author Simon Howkins <simonh@symbian.org>
Wed, 14 Apr 2010 12:58:22 +0100
changeset 219 d57b367400c0
parent 192 b20cc3d58393
permissions -rw-r--r--
Updated release notes generation: Added copyright message Proper command line parsing Usage message if inputs are not right Added explanatory preamble to output "NEW" FCLs are marked as such Merge changesets are included in output
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
122
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     1
#!/usr/bin/perl
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     2
# Copyright (c) 2009 Symbian Foundation Ltd
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     3
# This component and the accompanying materials are made available
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     4
# under the terms of the License "Eclipse Public License v1.0"
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     5
# which accompanies this distribution, and is available
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     6
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     7
#
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     8
# Initial Contributors:
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
     9
# Symbian Foundation Ltd - initial contribution.
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    10
# 
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    11
# Contributors:
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    12
#
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    13
# Description:
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    14
# A quick and dirty perl script to take the generated 'changes.txt' from the BOM and wikify the FCL changes.
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    15
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    16
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    17
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    18
use strict;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    19
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    20
my $file = shift @ARGV;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    21
open(FILE, "<$file") or die "Coudln't open $file\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    22
my $fcl = undef;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    23
my $changeset = undef;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    24
my $user = undef;
192
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    25
my $tag = "";
122
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    26
while(my $line = <FILE>)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    27
{
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    28
  if($line =~ m/(\S+)(\/FCL\/\S+)/i)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    29
  {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    30
    my $codeline = $1;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    31
    my $location = $2;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    32
    my $root;
192
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    33
    $tag = "";
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    34
122
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    35
    if ($codeline =~ m/oss/i)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    36
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    37
      $root = "http://developer.symbian.org/oss" 
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    38
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    39
    elsif($codeline =~ m/sfl/i)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    40
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    41
      $root = "https://developer.symbian.org/sfl" 
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    42
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    43
    if (defined $fcl)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    44
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    45
      print "|}\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    46
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    47
    $fcl = $root.$location;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    48
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    49
    my @bits = split ("\/",$location);
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    50
    my $packagename = pop @bits;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    51
    $line = <FILE>; #grab next line 'cos it has the write location
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    52
    $line =~ s/\n//;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    53
    $line =~ s/\///; #just the first one...
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    54
    
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    55
    print "==== ".$packagename." ([".$fcl." ".$line."]) ====\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    56
    print "{|\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    57
  }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    58
  elsif($line =~ m/(\S+)(\/MCL\/\S+)/i)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    59
  {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    60
    if (defined $fcl)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    61
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    62
      print "|}\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    63
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    64
    undef $fcl;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    65
  }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    66
  elsif($line =~ m/^changeset:\s+\S+:(\S+)/)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    67
  {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    68
    #changeset:   118:c5817fd289ec
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    69
    $changeset = $1;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    70
  }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    71
  elsif($line =~ m/^user:\s+(\S.+)$/)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    72
  {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    73
    #changeset:   118:c5817fd289ec
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    74
    $user = $1;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    75
  }
192
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    76
  elsif($line =~ m/^tag:\s+(\S+)/)
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    77
  {
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    78
    #changeset:   118:c5817fd289ec
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    79
    my $preprocessed = $1;
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    80
    $preprocessed =~ s/^tip$//g;
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    81
    if($preprocessed =~ m/\S+/)
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    82
    {
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    83
      $tag = $tag."\'\'\'".$preprocessed."\'\'\' ";
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    84
    }  
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    85
    
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    86
#    $tag = $1." ";
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    87
  }
122
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    88
  elsif( defined $fcl)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    89
  {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    90
    if($line =~ s/^summary:\s+//)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    91
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    92
      $line =~ s/\n//;
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    93
      my $bugzilla = "http:\/\/developer.symbian.org\/bugs\/show_bug.cgi?id=";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    94
      $line =~ s/(bug\s*)(\d+)/\[$bugzilla$2 $1$2\]/gi;
192
b20cc3d58393 wikify_bom_fcl_changes.pl - Added some basic tags displaying.
MattD <mattd@symbian.org>
parents: 122
diff changeset
    95
      print "|[".$fcl."rev\/".$changeset." ".$changeset."]\n|".$tag.$line."\n|-\n";
122
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    96
#      print "|[".$fcl."rev\/".$changeset." ".$changeset."]\n|".$user."\n|".$line."\n|-\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    97
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    98
    #abort: unknown revision 'PDK_3.0.c'!
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
    99
    elsif($line =~ m/^abort:\sunknown\srevision/i)
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   100
    {
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   101
      print "|\'\'\'TODO New FCL - fill in manually!!!\'\'\'\n";
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   102
    }
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   103
  }    
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   104
}
d851824a1039 Added wikify_bom_fcl_changes.pl - a quick script to wikify the FCL changes in the changes.txt that is generated in the BOM dir during a platform build.
MattD <mattd@symbian.org>
parents:
diff changeset
   105
close FILE;