author | victorp@symbian.org |
Wed, 30 Sep 2009 16:05:51 +0100 | |
changeset 68 | 4ed9a3a59ef8 |
parent 62 | 7cd69ef87d2a |
child 71 | 59ba21437bf0 |
permissions | -rw-r--r-- |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
1 |
#!/usr/bin/perl |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
2 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
3 |
# Copyright (c) 2009 Symbian Foundation Ltd |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
4 |
# This component and the accompanying materials are made available |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
5 |
# under the terms of the License "Eclipse Public License v1.0" |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
6 |
# which accompanies this distribution, and is available |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
8 |
# |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
9 |
# Initial Contributors: |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
10 |
# Symbian Foundation Ltd - initial contribution. |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
11 |
# |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
12 |
# Contributors: |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
13 |
# |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
14 |
# Description: |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
15 |
# Map the SFL license to the EULA license, keeping a copy of the original file |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
16 |
# in a parallel tree for creation of a "repair" kit to reinstate the SFL |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
17 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
18 |
use strict; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
19 |
use File::Copy; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
20 |
use File::Path; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
21 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
22 |
my $debug = 0; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
23 |
|
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
24 |
my @oldtext = ( |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
25 |
'terms of the License "Symbian Foundation License v1.0"', |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
26 |
'the URL "http://www.symbianfoundation.org/legal/sfl-v10.html"' |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
27 |
); |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
28 |
my @newtext = ( |
62
7cd69ef87d2a
Clarify what sort of "members" are using the SFL
William Roberts <williamr@symbian.org>
parents:
60
diff
changeset
|
29 |
'terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members', |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
30 |
'the URL "http://www.symbianfoundation.org/legal/licencesv10.html"' |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
31 |
); |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
32 |
|
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
33 |
my @errorfiles = (); |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
34 |
|
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
35 |
sub map_eula($$$) |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
36 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
37 |
my ($file,$shadowdir,$name) = @_; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
38 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
39 |
open FILE, "<$file" or print "ERROR: Cannot open $file: $!\n" and return "Cannot open"; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
40 |
my @lines = <FILE>; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
41 |
close FILE; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
42 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
43 |
my $updated = 0; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
44 |
my @newlines = (); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
45 |
while (my $line = shift @lines) |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
46 |
{ |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
47 |
if (index($line,$newtext[0]) >= 0) |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
48 |
{ |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
49 |
# file already converted - nothing to do |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
50 |
last; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
51 |
} |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
52 |
# under the terms of the License "Symbian Foundation License v1.0" |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
53 |
# which accompanies this distribution, and is available |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
54 |
# at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
55 |
my $pos1 = index $line, $oldtext[0]; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
56 |
if ($pos1 >= 0) |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
57 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
58 |
my $midline = shift @lines; |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
59 |
my $urlline = shift @lines; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
60 |
my $pos2 = index $urlline, $oldtext[1]; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
61 |
if ($pos2 >= 0) |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
62 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
63 |
# Found it - assume that there's only one instance |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
64 |
substr $line, $pos1, length($oldtext[0]), $newtext[0]; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
65 |
substr $urlline, $pos2, length($oldtext[1]), $newtext[1]; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
66 |
push @newlines, $line, $midline, $urlline; |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
67 |
$updated = 1; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
68 |
last; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
69 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
70 |
else |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
71 |
{ |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
72 |
print STDERR "Problem in $file: incorrectly formatted >\n$line$midline$urlline\n"; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
73 |
push @errorfiles, $file; |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
74 |
last; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
75 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
76 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
77 |
push @newlines, $line; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
78 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
79 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
80 |
return if (!$updated); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
81 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
82 |
mkpath($shadowdir, {verbose=>0}); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
83 |
move($file, "$shadowdir/$name") or die("Cannot move $file to $shadowdir/$name: $!\n"); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
84 |
open NEWFILE, ">$file" or die("Cannot overwrite $file: $!\n"); |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
85 |
print NEWFILE @newlines, @lines; |
59
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
86 |
close NEWFILE or die("Failed to update $file: $!\n"); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
87 |
print "* updated $file\n"; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
88 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
89 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
90 |
# Process tree |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
91 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
92 |
sub scan_directory($$) |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
93 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
94 |
my ($path, $shadow) = @_; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
95 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
96 |
opendir DIR, $path; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
97 |
my @files = grep !/^\.\.?$/, readdir DIR; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
98 |
closedir DIR; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
99 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
100 |
foreach my $file (@files) |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
101 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
102 |
my $newpath = "$path/$file"; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
103 |
my $newshadow = "$shadow/$file"; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
104 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
105 |
if (-d $newpath) |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
106 |
{ |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
107 |
scan_directory($newpath, $newshadow); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
108 |
next; |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
109 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
110 |
next if (-B $newpath); # ignore binary files |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
111 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
112 |
map_eula($newpath, $shadow, $file); |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
113 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
114 |
} |
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
115 |
|
69e9b8ca3ae9
Simple utility to change perfectly-formed SFL copyright notices to something else
William Roberts <williamr@symbian.org>
parents:
diff
changeset
|
116 |
scan_directory("/epoc32", "/sfl_epoc32"); |
60
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
117 |
|
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
118 |
printf "%d problem files\n", scalar @errorfiles; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
119 |
print "\t", join("\n\t", @errorfiles), "\n"; |
e86c659b78a0
Fix Bug 387 - full newline processing as per "perlport" guidance
William Roberts <williamr@symbian.org>
parents:
59
diff
changeset
|
120 |