blob: 96485dbfc8641b7c9a01444fbe221a9150ff083f (
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
|
#!/usr/bin/perl
use strict;
use warnings;
my $wiki = "http://wiki.inkscape.org/wiki/index.php";
if (@ARGV < 1) {
print "Usage: $0 <release-number>\n";
}
my $rel = shift @ARGV;
$rel =~ s/\.//;
my @page = `lynx -dump $wiki/ReleaseNotes$rel`;
print "$#page lines\n";
my $seen_overview = 0;
foreach my $line (@page) {
$line =~ s/\[\[\d+\]edit\]//g;
last if $line =~ /^ Previous releases/;
if ($line =~ /^\s+Inkscape 0\.46/) {
$seen_overview = 1;
}
next unless $seen_overview;
print $line;
}
print "\nFor information on prior releases, please see:\n";
print " $wiki/Inkscape\n";
|