summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlookshe <lookshe@fumuga.com>2012-03-07 12:05:45 +0100
committerlookshe <lookshe@fumuga.com>2012-03-07 12:05:45 +0100
commitd40d0e602ca17360dc880cc0ffedeae8f0778fba (patch)
tree63e695572199a57866828f068dc9d4790779ef42
parent5fd5a2093478eb338d3a07b4f94ac04da7748c24 (diff)
fucking wiki api sucks very hard...
-rw-r--r--wiki2.pl24
1 files changed, 17 insertions, 7 deletions
diff --git a/wiki2.pl b/wiki2.pl
index c2033ad..1ce94f3 100644
--- a/wiki2.pl
+++ b/wiki2.pl
@@ -22,18 +22,25 @@ if (defined $result) {
my $newline = "";
my $isDis = 0;
my $ln = 0;
+ my $comment = 0;
foreach my $line (@lines) {
+#print "$line\n";
$line =~ s/<!--.*-->//g;
+ $line=~ s/^}}//g;
+ $line=~ s/^\]\]//g;
$line=~ s/^\s*//;
$line=~ s/\s*$//;
- if ($line && $line =~ m/^\* / && $ln < 3) {
+ $comment = 1 if $line =~ m/^<!--$/;
+ $comment = 0 if $line =~ m/^-->$/;
+ if ($line && $line =~ m/^\* /) {
push(@newlines, $newline);
push(@newlines, $line);
$newline = "";
- $isDis = 1;
+ $isDis = 1 if $ln < 3;
} elsif ($line) {
$newline = "$newline$line ";
$ln++;
+ } elsif ($comment) {
} else {
push(@newlines, $newline);
$newline = "";
@@ -41,28 +48,31 @@ if (defined $result) {
}
push(@newlines, $newline);
$ln = 0;
+ my $lst = 0;
foreach my $line (@newlines) {
- $line=~ s/{{.*}}//g;
+ $line =~ s/<!--.*-->//g;
+ $line=~ s/.*}}//g;
$line=~ s/^\s*//;
$line=~ s/\s*$//;
if ($line !~ m/^\s*$/) {
if ($isDis) {
if ($line =~ m/^\* /) {
+ last if $ln == 3;
+ $lst = 1 if $ln == 2;
print "$line\n";
$ln++;
- last if $ln == 3;
}
} else {
$line = decode_entities($line);
#$line =~ s/\([^\(\)]*\)||\[[^\[\]]*\]//g;
- $line =~ s/\[\[([^\]]*)\]\]/$1/g;
+ $line =~ s/\[\[([^|\]]*\|)?([^\]]*)\]\]/$2/g;
$line =~ s/\'([^\']*)\'/$1/g;
$line =~ s/\[\s*\]//g;
$line =~ s/\(\s*\)//g;
$line =~ s/\[\s*\]//g;
$line =~ s/\(\s*\)//g;
#$line = strip_tags($line);
- $line =~ s/<ref>[^<]*<\/ref>//g;
+ $line =~ s/<ref[^>]*>[^<]*<\/ref>//g;
$line =~ s/\s+/ /g;
$line =~ s/\s([,.\?!])/$1/g;
if ($line =~ m/.{448}.*/) {
@@ -75,7 +85,7 @@ if (defined $result) {
}
}
}
- if ($isDis) {
+ if ($isDis && $lst) {
print "For more see http://$lang.wikipedia.org/wiki/$ARGV[0]\n";
}
} else {