Connecting Tech Pros Worldwide Help | Site Map

morenews

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 17th, 2005, 01:09 AM
Inge Knudsen
Guest
 
Posts: n/a
Default morenews

I try to use MoreNews 1.0 to get the latest headlines on my website. I
really like the script (http://mberg.buildafrica.org/morenews/ can be
seen in action here: http://www.handystart.com/morenews/news.php )
published under GPL, but there is a bug that is really annoying me. When
there is a subscription site in the xml feed, the news-link below will
be like:
http://www.latimes.com/services/site...pl?x102503623&

....while it's supposed to be just:
http://c.moreover.com/click/here.pl?x102503623&

Has anyone done any work on this script, or is there a genuis that knows
how to correct it? I have tried to make some modefications, but just
can't make it right...

Inge

--
http://www.handystart.com/


  #2  
Old July 17th, 2005, 01:09 AM
Janwillem Borleffs
Guest
 
Posts: n/a
Default Re: morenews


"Inge Knudsen" <antispam@eyepublish.com> schreef in bericht
news:09Qtb.39276$os2.575740@news2.e.nsc.no...[color=blue]
>
> Has anyone done any work on this script, or is there a genuis that knows
> how to correct it? I have tried to make some modefications, but just
> can't make it right...
>[/color]

I have had a quick look at it, and since it is reading the content from the
<url /> element and copying it directly in the output, I don't regard it as
a bug from the script but just as an alternative format of the URL in the
feed.

As far as I can see, you can just leave it as is, but when you really don't
want it, you could try the following workaround to fix the URL's:

Replace the characterData function in the class.morenews.php file with the
following:

function characterData($parser, $data) {
if ($this->tags[$this->cur_tag]) {
if ($this->cur_tag == "URL") {
$strpos = strpos($data, "http://c.moreover.com");
if ($strpos !== false) {
$this->cur_val .= ltrim(substr($data, $strpos));
} else {
$this->cur_val .= ltrim($data);
}
} else {
$this->cur_val .= ltrim($data);
}
}
}


HTH,
JW




  #3  
Old July 17th, 2005, 01:10 AM
Inge Knudsen
Guest
 
Posts: n/a
Default Re: morenews

Janwillem Borleffs wrote:[color=blue]
>
> I have had a quick look at it, and since it is reading the content from the
> <url /> element and copying it directly in the output, I don't regard it as
> a bug from the script but just as an alternative format of the URL in the
> feed.[/color]

The problem is that it messes up the wrong link. If you click on 'Exxon
fined $11.8bn in gas row' here
(http://www.handystart.com/morenews/n...siness+stories)
now, you will be redirected to www.fortune.com....

[color=blue]
> As far as I can see, you can just leave it as is, but when you really don't
> want it, you could try the following workaround to fix the URL's:
>
> Replace the characterData function in the class.morenews.php file with the
> following:
>
> function characterData($parser, $data) {
> if ($this->tags[$this->cur_tag]) {
> if ($this->cur_tag == "URL") {
> $strpos = strpos($data, "http://c.moreover.com");
> if ($strpos !== false) {
> $this->cur_val .= ltrim(substr($data, $strpos));
> } else {
> $this->cur_val .= ltrim($data);
> }
> } else {
> $this->cur_val .= ltrim($data);
> }
> }
> }
>
>
> HTH,[/color]

Sorry, still couldn't make it work...

Thanks,

Inge (is rather stupid when it comes to PHP)

--
http://www.handystart.com/

  #4  
Old July 17th, 2005, 01:10 AM
Janwillem Borleffs
Guest
 
Posts: n/a
Default Re: morenews


"Inge Knudsen" <antispam@eyepublish.com> wrote in message
news:e80ub.39421$os2.577326@news2.e.nsc.no...[color=blue]
>
> Sorry, still couldn't make it work...
>
> Thanks,
>[/color]

Saw the problem, the fix is even easier:

In the class.morenews.php file, extend the $tags array to match the
additional elements:

$this->tags = array( "ARTICLE" => 1,
"URL" => 2,
"HEADLINE_TEXT" => 2,
"SOURCE" => 2,
"MEDIA_TYPE" => 2,
"DOCUMENT_URL" => 2,
"HARVEST_TIME" => 2,
"TAGLINE" =>2,
"CLUSTER" => 2,
"ACCESS_REGISTRATION" => 2,
"ACCESS_STATUS" => 2
);


JW



  #5  
Old July 17th, 2005, 01:10 AM
Inge Knudsen
Guest
 
Posts: n/a
Default Re: morenews

Janwillem Borleffs wrote:
[color=blue]
> "Inge Knudsen" <antispam@eyepublish.com> wrote in message
> news:e80ub.39421$os2.577326@news2.e.nsc.no...
>[color=green]
>>Sorry, still couldn't make it work...
>>
>>Thanks,
>>[/color]
>
>
> Saw the problem, the fix is even easier:
>
> In the class.morenews.php file, extend the $tags array to match the
> additional elements:
>
> $this->tags = array( "ARTICLE" => 1,
> "URL" => 2,
> "HEADLINE_TEXT" => 2,
> "SOURCE" => 2,
> "MEDIA_TYPE" => 2,
> "DOCUMENT_URL" => 2,
> "HARVEST_TIME" => 2,
> "TAGLINE" =>2,
> "CLUSTER" => 2,
> "ACCESS_REGISTRATION" => 2,
> "ACCESS_STATUS" => 2
> );
>[/color]

Thanks, you're my hero :-) It now works perkect. I somehow tried
something like that, but must have missed a tag or two.

Thanks,

Inge

--
http://www.handystart.com/

 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.