Re: Feeds Integration

From: David Costa <geeks(at)dotgeek(dot)org>
To: Chris Ryan <xgbe(at)yahoo(dot)com>
Cc: PostgreSQL WWW Mailing List <pgsql-www(at)postgresql(dot)org>
Subject: Re: Feeds Integration
Date: 2004-02-20 14:26:03
Message-ID: B68D9A5A-63B0-11D8-BEFA-000A95EB456A@dotgeek.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-www

On Feb 19, 2004, at 9:43 PM, Chris Ryan wrote:

> If you provide a script I can work through any specific issues
> during implementation.
>

Okay I will email you directly re: implementation :D

> Chris Ryan
>
> --- David Costa <geeks(at)dotgeek(dot)org> wrote:
>>>
>>> Here is an updated query. The URL had slipped my mind as one I
>>> build the URLs from knows practices on GBorg and the body is
>> actually
>>> the full story. You'll note as well in the query below that I added
>> in
>>> for getting the submitter of the news item.
>>>
>>> SELECT headline AS title,
>>>
>>> 'http://gborg.postgresql.org/project/'||project_name||'/news/
>>> newsfull.php?news_id='||news_id
>>> AS link, -- the fully built url to the news item
>>> body, -- the full news text you may want to abbreviate
>> here
>>> member_name AS author, -- member name on gborg of author
>>> submit_date -- date not datetime :(
>>> FROM project_news, project, member
>>> WHERE (project_news.project_id=project.project_id)
>>> AND (project_news.member_id=member.member_id)
>>> AND (project_news.active=true)
>>> AND (project_news.on_homepage=true)
>>> ORDER BY submit_date DESC
>>> LIMIT 10;
>>>
>>
>> Okay. I will need a sample db table table if you want me to test it.
>>
>> Else I don't physically have where to run the query :D
>>
>> Or perhaps I do the script, leave it on my webspace and let you/Marc
>> or
>> Dave to try this out. That would work for me, I don't really need any
>>
>> further access. Without the db I can
>> still do the script ready to run but I cannot test if the query
>> returns
>> what we would expect or not.
>>
>> Thanks again for your support,
>> cheers
>> David Costa
>>
>>>
>>>
>>> Chris Ryan
>>>
>>>
>>> __________________________________
>>> Do you Yahoo!?
>>> Yahoo! Mail SpamGuard - Read only the mail you want.
>>> http://antispam.yahoo.com/tools
>>
>>
>> ---------------------------(end of
>> broadcast)---------------------------
>> TIP 4: Don't 'kill -9' the postmaster
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail SpamGuard - Read only the mail you want.
> http://antispam.yahoo.com/tools

In response to

Browse pgsql-www by date

  From Date Subject
Next Message David Costa 2004-02-20 14:41:47 Re: Feeds Integration
Previous Message Dave Page 2004-02-20 08:08:34 Re: Feeds Integration