summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-11-20 10:07:51 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-11-20 10:07:51 +0800
commitad7a6a0b3c67bf3c4f781c3af4bb298682e5709e (patch)
treea9c34da4263f30bc2fadd4675a78c7df1e9037dd
parente07f3d0a84b85285057d047077395b61fd1b37ba (diff)
downloadpttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar.gz
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar.bz2
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar.lz
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar.xz
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.tar.zst
pttbbs-ad7a6a0b3c67bf3c4f781c3af4bb298682e5709e.zip
s/����\&\#22531\;/���}/g;
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@577 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/util/udnnews.pl14
1 files changed, 11 insertions, 3 deletions
diff --git a/pttbbs/util/udnnews.pl b/pttbbs/util/udnnews.pl
index 4d37a26a..5e19ae88 100644
--- a/pttbbs/util/udnnews.pl
+++ b/pttbbs/util/udnnews.pl
@@ -20,11 +20,20 @@ chdir '/home/bbs';
getudnnewstitle(\@titles);
foreach( @titles ){
postout({brdname => 'udnnews',
- title => FormatChinese($_->[1]),
+ title => strreplace(FormatChinese($_->[1])),
owner => 'udnnews.',
content => getudnnewscontent("http://www.udn.com/NEWS/FOCUSNEWS/$_->[0]")});
}
+sub strreplace
+{
+ my($str) = @_;
+ $str =~ s/¢Ì/¤Q/g;
+ $str =~ s/¢Î/¤Ê/g;
+ $str =~ s/´å¿ü\&\#22531\;/´å´}/g;
+ return $str;
+}
+
sub getudnnewscontent($)
{
my($url) = @_;
@@ -38,8 +47,7 @@ sub getudnnewscontent($)
$content =~ s/\r//g;
$content =~ s/\n\n\n/\n\n/g;
$content =~ s/\n\n\n//g;
- $content =~ s/¢Ì/¤Q/g;
- $content =~ s/¢Î/¤Ê/g;
+ $content = strreplace($content);
undef $ret;
foreach( split(/\n/, $content) ){
s/ //g;