Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Calibre > Recipes

Notices

Reply
 
Thread Tools Search this Thread
Old 07-09-2008, 12:56 PM   #31
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,744
Karma: 22446736
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
I'm guessing you still can't figure out the log out code? You should just log in using a browser, save the index page to the disk and use that to develop the parse_index function. Here's a working recipe:

Code:
##    it under the terms of the GNU General Public License as published by
##    the Free Software Foundation; either version 2 of the License, or
##    (at your option) any later version.
##
##    This program is distributed in the hope that it will be useful,
##    but WITHOUT ANY WARRANTY; without even the implied warranty of
##    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##    GNU General Public License for more details.
##
##    You should have received a copy of the GNU General Public License along
##    with this program; if not, write to the Free Software Foundation, Inc.,
##    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import time
import re
from calibre.web.feeds.news import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup

class WallStreetJournalPaper(BasicNewsRecipe):
    import time
    import re
    from calibre.web.feeds.news import BasicNewsRecipe
    from calibre.ebooks.lrf.web.profiles import DefaultProfile
    from calibre.ebooks.BeautifulSoup import BeautifulSoup

    title = 'Wall Street Print Edition'
    __author__ = 'Kovid Goyal'
    simultaneous_downloads = 1
    max_articles_per_feed = 200
    INDEX = 'http://online.wsj.com/page/us_in_todays_paper.html'
    timefmt  = ' [%a, %b %d, %Y]'
    no_stylesheets = False
    html2lrf_options = [('--ignore-tables')]
    issue_date = time.ctime()




    ## Don't grab articles more than 7 days old
    oldest_article = 7

    def get_browser(self):
        br = DefaultProfile.get_browser()
        if self.username is not None and self.password is not None:
            br.open('http://online.wsj.com/login')
            br.select_form(name='login_form')
            br['user']   = self.username
            br['password'] = self.password
            br.submit()
        return br

    preprocess_regexps = [(re.compile(i[0], re.IGNORECASE | re.DOTALL), i[1]) for i in
        [
        ## Remove anything before the body of the article.
        (r'<body.*?<!-- article start', lambda match: '<body><!-- article start'),

        ## Remove any insets from the body of the article.
        (r'<div id="inset".*?</div>.?</div>.?<p', lambda match : '<p'),

        ## Remove anything after the end of the article.
        (r'<!-- article end.*?</body>', lambda match : '</body>'),
        ]
    ]



    def parse_index(self):
        articles = []
        soup = self.index_to_soup(self.INDEX)
        issue_date = time.ctime()

        for a in soup.findAll('a', href=True, attrs={'class':'bold80'}):
	    url = a['href']
	    url = 'http://online.wsj.com'+url.replace('/article', '/article_print')
	    title = self.tag_to_string(a)
	    description = ''
	    articles.append({
		'title':title,
		'date':'',
		'url':url,
		'description':description
		})
	return [('Todays Paper', articles)]
kovidgoyal is offline   Reply With Quote
Old 07-09-2008, 11:47 PM   #32
ddavtian
Addict
ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.
 
Posts: 271
Karma: 332
Join Date: Nov 2003
Location: San Francisco, USA
Device: Sage, Elipsa, Oasis, Galaxy Tab 8U, S22U
Quote:
Originally Posted by kovidgoyal View Post
I'm guessing you still can't figure out the log out code?
As you can see from my questions, figuring out the log out is way out of my league :-)

Thanks a lot for your recipe, it works now!

Not all articles are downloaded, for example only one from first 8 is downloaded, and only 4 from first 30+. I quickly compared downloaded and missed articles, didn't see differences. I tried few times, on 2 different machines, the same result. There must be something in the source code of articles, right?

I've logged out of the page, just in case you want to check it out :-)

Last edited by ddavtian; 07-09-2008 at 11:56 PM.
ddavtian is offline   Reply With Quote
Advert
Old 07-10-2008, 01:46 PM   #33
ddavtian
Addict
ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.
 
Posts: 271
Karma: 332
Join Date: Nov 2003
Location: San Francisco, USA
Device: Sage, Elipsa, Oasis, Galaxy Tab 8U, S22U
I saved the page with 1 level of links with scrapbook (it takes time), then used your latest recipe, got a perfect copy of paper edition, all articles were included.

Thanks a lot for help.
ddavtian is offline   Reply With Quote
Old 07-11-2008, 11:31 AM   #34
moosejons_dad
Zealot
moosejons_dad began at the beginning.
 
Posts: 100
Karma: 18
Join Date: Oct 2006
Location: N.J.
Device: Sony Readers PRS-500 exchanged by Sony for PRS-600, PRS-505,IPAD3,mini
Calibre errors on 4.77

Great tool and use it everyday...
The following feeds do not work for me:

The Wall Street Journal-long error message
Business Week-long error message
Wired Magazine-the download works but does not show the complete articles.

Has anyone else experienced the same problems?
moosejons_dad is offline   Reply With Quote
Old 07-11-2008, 10:53 PM   #35
ddavtian
Addict
ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.ddavtian has a complete set of Star Wars action figures.
 
Posts: 271
Karma: 332
Join Date: Nov 2003
Location: San Francisco, USA
Device: Sage, Elipsa, Oasis, Galaxy Tab 8U, S22U
Businessweek never worked for me. And I never tried wsj from the calibre, always used the command line.
ddavtian is offline   Reply With Quote
Advert
Old 07-12-2008, 10:13 AM   #36
moosejons_dad
Zealot
moosejons_dad began at the beginning.
 
Posts: 100
Karma: 18
Join Date: Oct 2006
Location: N.J.
Device: Sony Readers PRS-500 exchanged by Sony for PRS-600, PRS-505,IPAD3,mini
WAll Street Journal error on Calibre 4.77

The Wall street Journal always worked for me until the 4.77 revision. This is the error that I came up with and my thanks in advance if this can be fixed.


('URLError', u""):
Failed to perform job: Fetch news from The Wall Street Journal
Detailed traceback:
Traceback (most recent call last):
File "parallel.py", line 686, in worker
File "parallel.py", line 659, in work
File "C:\Program Files\calibre\library.zip\calibre\ebooks\lrf\feeds \convert_from.py", line 42, in main
File "C:\Program Files\calibre\library.zip\calibre\web\feeds\main.p y", line 134, in run_recipe
File "calibre\web\feeds\news.pyo", line 473, in download
File "calibre\web\feeds\news.pyo", line 583, in build_index
File "calibre\web\feeds\news.pyo", line 778, in parse_feeds
File "mechanize\_mechanize.pyo", line 203, in open
File "mechanize\_mechanize.pyo", line 229, in _mech_open
File "mechanize\_opener.pyo", line 192, in open
File "mechanize\_http.pyo", line 590, in http_response
File "mechanize\_opener.pyo", line 209, in error
File "urllib2.pyo", line 360, in _call_chain
File "mechanize\_http.pyo", line 135, in http_error_302
File "mechanize\_mechanize.pyo", line 203, in open
File "mechanize\_mechanize.pyo", line 229, in _mech_open
File "mechanize\_opener.pyo", line 181, in open
File "urllib2.pyo", line 399, in _open
File "urllib2.pyo", line 360, in _call_chain
File "mechanize\_http.pyo", line 700, in http_open
File "mechanize\_http.pyo", line 677, in do_open
URLError:
Log:
''
moosejons_dad is offline   Reply With Quote
Old 07-12-2008, 10:17 AM   #37
moosejons_dad
Zealot
moosejons_dad began at the beginning.
 
Posts: 100
Karma: 18
Join Date: Oct 2006
Location: N.J.
Device: Sony Readers PRS-500 exchanged by Sony for PRS-600, PRS-505,IPAD3,mini
Business Week error on Calibre 4.77

Business Week never worked for me. Here is the error on this one.
Thanks for any assistance.

('URLError', u""):
Failed to perform job: Fetch news from Business Week
Detailed traceback:
Traceback (most recent call last):
File "parallel.py", line 686, in worker
File "parallel.py", line 659, in work
File "C:\Program Files\calibre\library.zip\calibre\ebooks\lrf\feeds \convert_from.py", line 42, in main
File "C:\Program Files\calibre\library.zip\calibre\web\feeds\main.p y", line 134, in run_recipe
File "calibre\web\feeds\news.pyo", line 473, in download
File "calibre\web\feeds\news.pyo", line 583, in build_index
File "calibre\web\feeds\news.pyo", line 778, in parse_feeds
File "mechanize\_mechanize.pyo", line 203, in open
File "mechanize\_mechanize.pyo", line 229, in _mech_open
File "mechanize\_opener.pyo", line 181, in open
File "urllib2.pyo", line 399, in _open
File "urllib2.pyo", line 360, in _call_chain
File "mechanize\_http.pyo", line 700, in http_open
File "mechanize\_http.pyo", line 677, in do_open
URLError:
Log:
DEBUG: Skipping article IMAX's Hollywood Card (Tue, 01 Jul, 2008 07:26) from feed Asia as it is too old.

DEBUG: Skipping article IMAX's Hollywood Card (Tue, 01 Jul, 2008 07:26) from feed Asia as it is too old.

DEBUG: Skipping article Why Korea Won't Bite the Apple (Fri, 13 Jun, 2008 08:30) from feed Asia as it is too old.

DEBUG: Skipping article Why Korea Won't Bite the Apple (Fri, 13 Jun, 2008 08:30) from feed Asia as it is too old.

DEBUG: Skipping article Inside the War Against China's Blogs (Fri, 13 Jun, 2008 18:50) from feed Asia as it is too old.

DEBUG: Skipping article Inside the War Against China's Blogs (Fri, 13 Jun, 2008 18:50) from feed Asia as it is too old.

DEBUG: Skipping article Apple's Japan iPhone Strategy (Thu, 05 Jun, 2008 07:56) from feed Asia as it is too old.

DEBUG: Skipping article Apple's Japan iPhone Strategy (Thu, 05 Jun, 2008 07:56) from feed Asia as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Asia as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Asia as it is too old.

DEBUG: Skipping article Made-in-Korea Chevys for GM (Mon, 23 Jun, 2008 07:34) from feed Asia as it is too old.

DEBUG: Skipping article Made-in-Korea Chevys for GM (Mon, 23 Jun, 2008 07:34) from feed Asia as it is too old.

DEBUG: Skipping article Who's Afraid of a Feverish Economy? (Thu, 26 Jun, 2008 17:00) from feed Asia as it is too old.

DEBUG: Skipping article Who's Afraid of a Feverish Economy? (Thu, 26 Jun, 2008 17:00) from feed Asia as it is too old.

DEBUG: Skipping article Global Banks Target Indian Investors (Wed, 25 Jun, 2008 10:00) from feed Asia as it is too old.

DEBUG: Skipping article Global Banks Target Indian Investors (Wed, 25 Jun, 2008 10:00) from feed Asia as it is too old.

DEBUG: Skipping article Hong Kong's New Oil Futures Market (Wed, 25 Jun, 2008 09:06) from feed Asia as it is too old.

DEBUG: Skipping article Hong Kong's New Oil Futures Market (Wed, 25 Jun, 2008 09:06) from feed Asia as it is too old.

DEBUG: Skipping article Inflation Fears Sink Chinese Shares (Tue, 10 Jun, 2008 07:57) from feed Asia as it is too old.

DEBUG: Skipping article Inflation Fears Sink Chinese Shares (Tue, 10 Jun, 2008 07:57) from feed Asia as it is too old.

DEBUG: Skipping article Fujifilm's Flight of Pharmacy (Fri, 30 May, 2008 07:06) from feed Asia as it is too old.

DEBUG: Skipping article Fujifilm's Flight of Pharmacy (Fri, 30 May, 2008 07:06) from feed Asia as it is too old.

DEBUG: Skipping article Hong Kong's Art Aspirations (Fri, 16 May, 2008 07:25) from feed Asia as it is too old.

DEBUG: Skipping article Hong Kong's Art Aspirations (Fri, 16 May, 2008 07:25) from feed Asia as it is too old.

DEBUG: Skipping article Nissan, Toyota Focus on Graying Drivers (Tue, 06 May, 2008 07:08) from feed Asia as it is too old.

DEBUG: Skipping article Nissan, Toyota Focus on Graying Drivers (Tue, 06 May, 2008 07:08) from feed Asia as it is too old.

DEBUG: Skipping article India's Economy Hits the Wall (Tue, 01 Jul, 2008 07:28) from feed Asia as it is too old.

DEBUG: Skipping article India's Economy Hits the Wall (Tue, 01 Jul, 2008 07:28) from feed Asia as it is too old.

DEBUG: Skipping article China: More Millionaires Than France (Wed, 02 Jul, 2008 08:36) from feed Asia as it is too old.

DEBUG: Skipping article China: More Millionaires Than France (Wed, 02 Jul, 2008 08:36) from feed Asia as it is too old.

DEBUG: Skipping article Avoiding the Premium Trap (Wed, 04 Jun, 2008 07:00) from feed Asia as it is too old.

DEBUG: Skipping article Avoiding the Premium Trap (Wed, 04 Jun, 2008 07:00) from feed Asia as it is too old.

DEBUG: Skipping article Rare Japanese Labor Win Prompts New Fears (Mon, 16 Jun, 2008 07:39) from feed Asia as it is too old.

DEBUG: Skipping article Rare Japanese Labor Win Prompts New Fears (Mon, 16 Jun, 2008 07:39) from feed Asia as it is too old.

DEBUG: Skipping article LG Will Clean Up, With or Without GE (Thu, 29 May, 2008 09:10) from feed Asia as it is too old.

DEBUG: Skipping article LG Will Clean Up, With or Without GE (Thu, 29 May, 2008 09:10) from feed Asia as it is too old.

DEBUG: Skipping article Why Toys 'R' Us, Tesco Are Hits in Korea (Tue, 20 May, 2008 06:58) from feed Asia as it is too old.

DEBUG: Skipping article Why Toys 'R' Us, Tesco Are Hits in Korea (Tue, 20 May, 2008 06:58) from feed Asia as it is too old.

DEBUG: Skipping article A New Way to Make Music in India (Fri, 06 Jun, 2008 07:52) from feed Asia as it is too old.

DEBUG: Skipping article A New Way to Make Music in India (Fri, 06 Jun, 2008 07:52) from feed Asia as it is too old.

DEBUG: Skipping article Angkor Wat: A Temple to Tourism? (Mon, 21 Apr, 2008 12:01) from feed Asia as it is too old.

DEBUG: Skipping article Angkor Wat: A Temple to Tourism? (Mon, 21 Apr, 2008 12:01) from feed Asia as it is too old.

DEBUG: Skipping article India's Top Five Yoga Centers (Mon, 21 Apr, 2008 12:02) from feed Asia as it is too old.

DEBUG: Skipping article India's Top Five Yoga Centers (Mon, 21 Apr, 2008 12:02) from feed Asia as it is too old.

DEBUG: Skipping article In Bhutan, Trekking in Style (Mon, 21 Apr, 2008 12:03) from feed Asia as it is too old.

DEBUG: Skipping article In Bhutan, Trekking in Style (Mon, 21 Apr, 2008 12:03) from feed Asia as it is too old.

DEBUG: Skipping article Luxury Leaders: Gucci's Robert Polet (Tue, 01 Jul, 2008 15:55) from feed Autos as it is too old.

DEBUG: Skipping article Luxury Leaders: Gucci's Robert Polet (Tue, 01 Jul, 2008 15:55) from feed Autos as it is too old.

DEBUG: Skipping article Which Auto Brands Should Go? (Mon, 05 May, 2008 13:42) from feed Autos as it is too old.

DEBUG: Skipping article Which Auto Brands Should Go? (Mon, 05 May, 2008 13:42) from feed Autos as it is too old.

DEBUG: Skipping article There Is No Gas Shortage (Tue, 01 Apr, 2008 15:41) from feed Autos as it is too old.

DEBUG: Skipping article There Is No Gas Shortage (Tue, 01 Apr, 2008 15:41) from feed Autos as it is too old.

DEBUG: Skipping article Are You Overpaying for Where You Live? (Mon, 03 Mar, 2008 17:03) from feed Autos as it is too old.

DEBUG: Skipping article Are You Overpaying for Where You Live? (Mon, 03 Mar, 2008 17:03) from feed Autos as it is too old.

DEBUG: Skipping article Special Report: Hi-Tech Cars (Thu, 03 Jul, 2008 09:25) from feed Autos as it is too old.

DEBUG: Skipping article Special Report: Hi-Tech Cars (Thu, 03 Jul, 2008 09:25) from feed Autos as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Autos as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Autos as it is too old.

DEBUG: Skipping article Honda Is June's Only Sales Winner (Tue, 01 Jul, 2008 15:08) from feed Autos as it is too old.

DEBUG: Skipping article Honda Is June's Only Sales Winner (Tue, 01 Jul, 2008 15:08) from feed Autos as it is too old.

DEBUG: Skipping article Kerkorian May Fill Ford's Tank (Wed, 25 Jun, 2008 20:39) from feed Autos as it is too old.

DEBUG: Skipping article Kerkorian May Fill Ford's Tank (Wed, 25 Jun, 2008 20:39) from feed Autos as it is too old.

DEBUG: Skipping article Can Global Automakers Learn From Their Mistakes? (Mon, 16 Jun, 2008 13:20) from feed Autos as it is too old.

DEBUG: Skipping article Can Global Automakers Learn From Their Mistakes? (Mon, 16 Jun, 2008 13:20) from feed Autos as it is too old.

DEBUG: Skipping article Weekend Cars Face an Uncertain Future (Fri, 06 Jun, 2008 14:22) from feed Autos as it is too old.

DEBUG: Skipping article Weekend Cars Face an Uncertain Future (Fri, 06 Jun, 2008 14:22) from feed Autos as it is too old.

DEBUG: Skipping article The Next Victim of the Real Estate Crisis (Mon, 30 Jun, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article The Next Victim of the Real Estate Crisis (Mon, 30 Jun, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article Real Estate: Making the REIT Picks (Tue, 01 Jul, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article Real Estate: Making the REIT Picks (Tue, 01 Jul, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article The Housing Abyss (Thu, 26 Jun, 2008 17:00) from feed Autos as it is too old.

DEBUG: Skipping article The Housing Abyss (Thu, 26 Jun, 2008 17:00) from feed Autos as it is too old.

DEBUG: Skipping article Are Downtowns in Danger of Going Downhill Again? (Fri, 20 Jun, 2008 13:43) from feed Autos as it is too old.

DEBUG: Skipping article Are Downtowns in Danger of Going Downhill Again? (Fri, 20 Jun, 2008 13:43) from feed Autos as it is too old.

DEBUG: Skipping article Top Art Exhibitions for Summer 2008 (Tue, 01 Jul, 2008 13:46) from feed Autos as it is too old.

DEBUG: Skipping article Top Art Exhibitions for Summer 2008 (Tue, 01 Jul, 2008 13:46) from feed Autos as it is too old.

DEBUG: Skipping article No Decline for Business Hotels in 2008 (Wed, 25 Jun, 2008 15:06) from feed Autos as it is too old.

DEBUG: Skipping article No Decline for Business Hotels in 2008 (Wed, 25 Jun, 2008 15:06) from feed Autos as it is too old.

DEBUG: Skipping article Your Corporate Card Is Watching You (Wed, 25 Jun, 2008 15:07) from feed Autos as it is too old.

DEBUG: Skipping article Your Corporate Card Is Watching You (Wed, 25 Jun, 2008 15:07) from feed Autos as it is too old.

DEBUG: Skipping article Online Travel Agencies Trip but Don't Stumble -- Yet (Thu, 19 Jun, 2008 13:48) from feed Autos as it is too old.

DEBUG: Skipping article Online Travel Agencies Trip but Don't Stumble -- Yet (Thu, 19 Jun, 2008 13:48) from feed Autos as it is too old.

DEBUG: Skipping article Drug Use Increasingly Common in All Countries (Tue, 01 Jul, 2008 15:04) from feed Autos as it is too old.

DEBUG: Skipping article Drug Use Increasingly Common in All Countries (Tue, 01 Jul, 2008 15:04) from feed Autos as it is too old.

DEBUG: Skipping article 'Silent Strokes' Strike One in 10 Healthy People (Fri, 27 Jun, 2008 15:20) from feed Autos as it is too old.

DEBUG: Skipping article 'Silent Strokes' Strike One in 10 Healthy People (Fri, 27 Jun, 2008 15:20) from feed Autos as it is too old.

DEBUG: Skipping article Education, Income Affect Heart Attack Survival Rates (Thu, 26 Jun, 2008 14:11) from feed Autos as it is too old.

DEBUG: Skipping article Education, Income Affect Heart Attack Survival Rates (Thu, 26 Jun, 2008 14:11) from feed Autos as it is too old.

DEBUG: Skipping article Here Comes the Sun. So Watch Out (Wed, 11 Jun, 2008 14:21) from feed Autos as it is too old.

DEBUG: Skipping article Here Comes the Sun. So Watch Out (Wed, 11 Jun, 2008 14:21) from feed Autos as it is too old.

DEBUG: Skipping article For Summer, Cocktails Get Freshened Up (Wed, 02 Jul, 2008 15:03) from feed Autos as it is too old.

DEBUG: Skipping article For Summer, Cocktails Get Freshened Up (Wed, 02 Jul, 2008 15:03) from feed Autos as it is too old.

DEBUG: Skipping article EBay Gets Buffeted in Europe (Tue, 01 Jul, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article EBay Gets Buffeted in Europe (Tue, 01 Jul, 2008 00:01) from feed Autos as it is too old.

DEBUG: Skipping article Refocusing on Digital Cameras (Wed, 04 Jun, 2008 16:53) from feed Autos as it is too old.

DEBUG: Skipping article Refocusing on Digital Cameras (Wed, 04 Jun, 2008 16:53) from feed Autos as it is too old.

DEBUG: Skipping article Making Sure Your Art Is Yours (Wed, 28 May, 2008 14:43) from feed Autos as it is too old.

DEBUG: Skipping article Making Sure Your Art Is Yours (Wed, 28 May, 2008 14:43) from feed Autos as it is too old.

DEBUG: Skipping article Ferrari's Winning Boxer (Thu, 13 Dec, 2007 12:09) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari's Winning Boxer (Thu, 13 Dec, 2007 12:09) from feed Classic Cars as it is too old.

DEBUG: Skipping article Post-War Bimmer Racer (Thu, 06 Dec, 2007 14:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article Post-War Bimmer Racer (Thu, 06 Dec, 2007 14:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article Mock Ferrari (Fri, 30 Nov, 2007 17:54) from feed Classic Cars as it is too old.

DEBUG: Skipping article Mock Ferrari (Fri, 30 Nov, 2007 17:54) from feed Classic Cars as it is too old.

DEBUG: Skipping article Grand Lagonda (Tue, 20 Nov, 2007 14:22) from feed Classic Cars as it is too old.

DEBUG: Skipping article Grand Lagonda (Tue, 20 Nov, 2007 14:22) from feed Classic Cars as it is too old.

DEBUG: Skipping article BMW ZZZZZ (Thu, 15 Nov, 2007 13:25) from feed Classic Cars as it is too old.

DEBUG: Skipping article BMW ZZZZZ (Thu, 15 Nov, 2007 13:25) from feed Classic Cars as it is too old.

DEBUG: Skipping article Dramatic Climax (Thu, 08 Nov, 2007 13:27) from feed Classic Cars as it is too old.

DEBUG: Skipping article Dramatic Climax (Thu, 08 Nov, 2007 13:27) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1937 Autobahn Cruiser (Fri, 02 Nov, 2007 15:17) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1937 Autobahn Cruiser (Fri, 02 Nov, 2007 15:17) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supercharged Spyder (Thu, 25 Oct, 2007 13:51) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supercharged Spyder (Thu, 25 Oct, 2007 13:51) from feed Classic Cars as it is too old.

DEBUG: Skipping article Oldest Cadillac (Thu, 18 Oct, 2007 13:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article Oldest Cadillac (Thu, 18 Oct, 2007 13:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Last of the 250s (Thu, 11 Oct, 2007 15:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Last of the 250s (Thu, 11 Oct, 2007 15:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article Beautiful and Brutal British Classic (Thu, 04 Oct, 2007 14:47) from feed Classic Cars as it is too old.

DEBUG: Skipping article Beautiful and Brutal British Classic (Thu, 04 Oct, 2007 14:47) from feed Classic Cars as it is too old.

DEBUG: Skipping article Original 911 (Fri, 21 Sep, 2007 12:41) from feed Classic Cars as it is too old.

DEBUG: Skipping article Original 911 (Fri, 21 Sep, 2007 12:41) from feed Classic Cars as it is too old.

DEBUG: Skipping article Pre-War Jag Roadster (Fri, 14 Sep, 2007 13:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article Pre-War Jag Roadster (Fri, 14 Sep, 2007 13:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1995 Bugatti EB110 GT Coupe (Thu, 06 Sep, 2007 13:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1995 Bugatti EB110 GT Coupe (Thu, 06 Sep, 2007 13:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article The $9 Million Ferrari (Thu, 30 Aug, 2007 15:11) from feed Classic Cars as it is too old.

DEBUG: Skipping article The $9 Million Ferrari (Thu, 30 Aug, 2007 15:11) from feed Classic Cars as it is too old.

DEBUG: Skipping article Super Camaro (Thu, 23 Aug, 2007 13:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article Super Camaro (Thu, 23 Aug, 2007 13:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari's Best for Last (Thu, 09 Aug, 2007 14:17) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari's Best for Last (Thu, 09 Aug, 2007 14:17) from feed Classic Cars as it is too old.

DEBUG: Skipping article The First Italian Supercar (Thu, 02 Aug, 2007 14:28) from feed Classic Cars as it is too old.

DEBUG: Skipping article The First Italian Supercar (Thu, 02 Aug, 2007 14:28) from feed Classic Cars as it is too old.

DEBUG: Skipping article Swinging '60s Spyder (Thu, 26 Jul, 2007 14:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article Swinging '60s Spyder (Thu, 26 Jul, 2007 14:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article A British-Italian-American Coupe? (Fri, 20 Jul, 2007 13:32) from feed Classic Cars as it is too old.

DEBUG: Skipping article A British-Italian-American Coupe? (Fri, 20 Jul, 2007 13:32) from feed Classic Cars as it is too old.

DEBUG: Skipping article Mr. T's Ride (Thu, 12 Jul, 2007 15:23) from feed Classic Cars as it is too old.

DEBUG: Skipping article Mr. T's Ride (Thu, 12 Jul, 2007 15:23) from feed Classic Cars as it is too old.

DEBUG: Skipping article Record-Setting MG (Thu, 05 Jul, 2007 14:40) from feed Classic Cars as it is too old.

DEBUG: Skipping article Record-Setting MG (Thu, 05 Jul, 2007 14:40) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Forgotten Quattro (Fri, 29 Jun, 2007 14:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Forgotten Quattro (Fri, 29 Jun, 2007 14:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article Super Porsche Roadster (Thu, 21 Jun, 2007 14:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article Super Porsche Roadster (Thu, 21 Jun, 2007 14:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article Classic Mini Cooper (Fri, 15 Jun, 2007 16:41) from feed Classic Cars as it is too old.

DEBUG: Skipping article Classic Mini Cooper (Fri, 15 Jun, 2007 16:41) from feed Classic Cars as it is too old.

DEBUG: Skipping article Bugatti Grand Prix Winner (Fri, 08 Jun, 2007 14:09) from feed Classic Cars as it is too old.

DEBUG: Skipping article Bugatti Grand Prix Winner (Fri, 08 Jun, 2007 14:09) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari's Coup (Thu, 31 May, 2007 14:46) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari's Coup (Thu, 31 May, 2007 14:46) from feed Classic Cars as it is too old.

DEBUG: Skipping article Rolls-Royce Unveils Phantom Silver Edition (Wed, 06 Jun, 2007 15:12) from feed Classic Cars as it is too old.

DEBUG: Skipping article Rolls-Royce Unveils Phantom Silver Edition (Wed, 06 Jun, 2007 15:12) from feed Classic Cars as it is too old.

DEBUG: Skipping article Majestic Mercedes (Fri, 25 May, 2007 14:56) from feed Classic Cars as it is too old.

DEBUG: Skipping article Majestic Mercedes (Fri, 25 May, 2007 14:56) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Great Bentley 8 (Thu, 10 May, 2007 16:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Great Bentley 8 (Thu, 10 May, 2007 16:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article Panoramic Panhard (Wed, 16 May, 2007 15:01) from feed Classic Cars as it is too old.

DEBUG: Skipping article Panoramic Panhard (Wed, 16 May, 2007 15:01) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supercharged Shelby (Thu, 03 May, 2007 15:13) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supercharged Shelby (Thu, 03 May, 2007 15:13) from feed Classic Cars as it is too old.

DEBUG: Skipping article Fast Last Aston from the Past (Thu, 26 Apr, 2007 11:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article Fast Last Aston from the Past (Thu, 26 Apr, 2007 11:53) from feed Classic Cars as it is too old.

DEBUG: Skipping article A Very Original Jaguar XK 120 (Mon, 23 Apr, 2007 12:29) from feed Classic Cars as it is too old.

DEBUG: Skipping article A Very Original Jaguar XK 120 (Mon, 23 Apr, 2007 12:29) from feed Classic Cars as it is too old.

DEBUG: Skipping article Iconic Italian Failure (Thu, 19 Apr, 2007 15:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article Iconic Italian Failure (Thu, 19 Apr, 2007 15:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Longest Duesenberg (Fri, 13 Apr, 2007 14:30) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Longest Duesenberg (Fri, 13 Apr, 2007 14:30) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari Failure (Wed, 28 Mar, 2007 14:04) from feed Classic Cars as it is too old.

DEBUG: Skipping article Ferrari Failure (Wed, 28 Mar, 2007 14:04) from feed Classic Cars as it is too old.

DEBUG: Skipping article BMW's Beetle (Thu, 22 Mar, 2007 13:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article BMW's Beetle (Thu, 22 Mar, 2007 13:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article True Bleue Delahaye (Mon, 12 Mar, 2007 13:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article True Bleue Delahaye (Mon, 12 Mar, 2007 13:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supersonic Ghia (Wed, 28 Feb, 2007 15:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article Supersonic Ghia (Wed, 28 Feb, 2007 15:31) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1954 Chevrolet Corvette Roadster (Tue, 20 Feb, 2007 14:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1954 Chevrolet Corvette Roadster (Tue, 20 Feb, 2007 14:49) from feed Classic Cars as it is too old.

DEBUG: Skipping article Putting a Little English on a Chevy (Fri, 16 Feb, 2007 14:19) from feed Classic Cars as it is too old.

DEBUG: Skipping article Putting a Little English on a Chevy (Fri, 16 Feb, 2007 14:19) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1911 Mercer 35R Raceabout (Fri, 09 Feb, 2007 14:24) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1911 Mercer 35R Raceabout (Fri, 09 Feb, 2007 14:24) from feed Classic Cars as it is too old.

DEBUG: Skipping article Little Lotus (Fri, 02 Feb, 2007 16:39) from feed Classic Cars as it is too old.

DEBUG: Skipping article Little Lotus (Fri, 02 Feb, 2007 16:39) from feed Classic Cars as it is too old.

DEBUG: Skipping article Porsche Prototype (Thu, 25 Jan, 2007 15:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article Porsche Prototype (Thu, 25 Jan, 2007 15:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article The World's First Production Supercar? (Fri, 19 Jan, 2007 16:58) from feed Classic Cars as it is too old.

DEBUG: Skipping article The World's First Production Supercar? (Fri, 19 Jan, 2007 16:58) from feed Classic Cars as it is too old.

DEBUG: Skipping article Japan's First Supercar (Wed, 17 Jan, 2007 15:13) from feed Classic Cars as it is too old.

DEBUG: Skipping article Japan's First Supercar (Wed, 17 Jan, 2007 15:13) from feed Classic Cars as it is too old.

DEBUG: Skipping article OSCA Winner (Fri, 05 Jan, 2007 15:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article OSCA Winner (Fri, 05 Jan, 2007 15:26) from feed Classic Cars as it is too old.

DEBUG: Skipping article Better Berlinetta (Thu, 28 Dec, 2006 14:40) from feed Classic Cars as it is too old.

DEBUG: Skipping article Better Berlinetta (Thu, 28 Dec, 2006 14:40) from feed Classic Cars as it is too old.

DEBUG: Skipping article Original GT (Fri, 15 Dec, 2006 14:37) from feed Classic Cars as it is too old.

DEBUG: Skipping article Original GT (Fri, 15 Dec, 2006 14:37) from feed Classic Cars as it is too old.

DEBUG: Skipping article So, You Want to Buy a Collector Car? (Fri, 13 Jan, 2006 14:44) from feed Classic Cars as it is too old.

DEBUG: Skipping article So, You Want to Buy a Collector Car? (Fri, 13 Jan, 2006 14:44) from feed Classic Cars as it is too old.

DEBUG: Skipping article Car Collecting Is Burning Rubber (Thu, 05 Jan, 2006 12:24) from feed Classic Cars as it is too old.

DEBUG: Skipping article Car Collecting Is Burning Rubber (Thu, 05 Jan, 2006 12:24) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Smart Way to Shop for a Classic (Mon, 02 Jan, 2006 18:38) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Smart Way to Shop for a Classic (Mon, 02 Jan, 2006 18:38) from feed Classic Cars as it is too old.

DEBUG: Skipping article Are Your Ready to Own a Vintage Auto? (Mon, 02 Jan, 2006 18:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article Are Your Ready to Own a Vintage Auto? (Mon, 02 Jan, 2006 18:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article Famous Postwar Bentleys on Sale (Mon, 13 Mar, 2006 13:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article Famous Postwar Bentleys on Sale (Mon, 13 Mar, 2006 13:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article Retromobiles on the Block (Wed, 08 Feb, 2006 13:38) from feed Classic Cars as it is too old.

DEBUG: Skipping article Retromobiles on the Block (Wed, 08 Feb, 2006 13:38) from feed Classic Cars as it is too old.

DEBUG: Skipping article Muscle Cars Roar Onto the Block (Thu, 26 Jan, 2006 12:23) from feed Classic Cars as it is too old.

DEBUG: Skipping article Muscle Cars Roar Onto the Block (Thu, 26 Jan, 2006 12:23) from feed Classic Cars as it is too old.

DEBUG: Skipping article Concept Cars: The Hottest New Collectibles (Fri, 27 Jan, 2006 13:14) from feed Classic Cars as it is too old.

DEBUG: Skipping article Concept Cars: The Hottest New Collectibles (Fri, 27 Jan, 2006 13:14) from feed Classic Cars as it is too old.

DEBUG: Skipping article This GTO Needs More Retro (Fri, 30 Dec, 2005 11:00) from feed Classic Cars as it is too old.

DEBUG: Skipping article This GTO Needs More Retro (Fri, 30 Dec, 2005 11:00) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1965 Shelby GT 350 (Thu, 29 Dec, 2005 10:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1965 Shelby GT 350 (Thu, 29 Dec, 2005 10:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1976 Trans Am (Thu, 29 Dec, 2005 11:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article 1976 Trans Am (Thu, 29 Dec, 2005 11:43) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Man Behind the Restored Hudsons (Thu, 29 Dec, 2005 12:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article The Man Behind the Restored Hudsons (Thu, 29 Dec, 2005 12:05) from feed Classic Cars as it is too old.

DEBUG: Skipping article Diamonds in the Rust (Thu, 29 Dec, 2005 12:10) from feed Classic Cars as it is too old.

DEBUG: Skipping article Diamonds in the Rust (Thu, 29 Dec, 2005 12:10) from feed Classic Cars as it is too old.

DEBUG: Skipping article New (Battery) Life for Hybrids (Thu, 05 Jan, 2006 18:09) from feed Hybrids as it is too old.

DEBUG: Skipping article New (Battery) Life for Hybrids (Thu, 05 Jan, 2006 18:09) from feed Hybrids as it is too old.

DEBUG: Skipping article Toyota: Greener Cars -- and Factories (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article Toyota: Greener Cars -- and Factories (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article No Road Trips for Toyota's i-unit (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article No Road Trips for Toyota's i-unit (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article What Makes a Hybrid Hot (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article What Makes a Hybrid Hot (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article Toyota Grows a Greener Lexus (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article Toyota Grows a Greener Lexus (Tue, 03 Jan, 2006 16:51) from feed Hybrids as it is too old.

DEBUG: Skipping article BMW Unveils The Turbosteamer Concept (Wed, 28 Dec, 2005 15:30) from feed Hybrids as it is too old.

DEBUG: Skipping article BMW Unveils The Turbosteamer Concept (Wed, 28 Dec, 2005 15:30) from feed Hybrids as it is too old.

DEBUG: Skipping article A New Breed Of High-Performance Electric Car (Wed, 28 Dec, 2005 16:29) from feed Hybrids as it is too old.

DEBUG: Skipping article A New Breed Of High-Performance Electric Car (Wed, 28 Dec, 2005 16:29) from feed Hybrids as it is too old.

DEBUG: Skipping article "Trybrid" Runs on Three Sources (Wed, 28 Dec, 2005 16:36) from feed Hybrids as it is too old.

DEBUG: Skipping article "Trybrid" Runs on Three Sources (Wed, 28 Dec, 2005 16:36) from feed Hybrids as it is too old.

DEBUG: Skipping article Taxicabs Start to Turn Green (Wed, 28 Dec, 2005 14:33) from feed Hybrids as it is too old.

DEBUG: Skipping article Taxicabs Start to Turn Green (Wed, 28 Dec, 2005 14:33) from feed Hybrids as it is too old.

DEBUG: Skipping article Hybrid Owners Drive Away Happy (Wed, 28 Dec, 2005 14:38) from feed Hybrids as it is too old.

DEBUG: Skipping article Hybrid Owners Drive Away Happy (Wed, 28 Dec, 2005 14:38) from feed Hybrids as it is too old.

DEBUG: Skipping article Sales Continue to Speed Up (Wed, 28 Dec, 2005 14:48) from feed Hybrids as it is too old.

DEBUG: Skipping article Sales Continue to Speed Up (Wed, 28 Dec, 2005 14:48) from feed Hybrids as it is too old.

DEBUG: Skipping article 10 Easy Ways to Save Gas (Wed, 28 Dec, 2005 14:55) from feed Hybrids as it is too old.

DEBUG: Skipping article 10 Easy Ways to Save Gas (Wed, 28 Dec, 2005 14:55) from feed Hybrids as it is too old.

DEBUG: Skipping article Figuring Out Federal Incentives (Wed, 28 Dec, 2005 15:04) from feed Hybrids as it is too old.

DEBUG: Skipping article Figuring Out Federal Incentives (Wed, 28 Dec, 2005 15:04) from feed Hybrids as it is too old.

DEBUG: Skipping article Local and Regional Incentives (Wed, 28 Dec, 2005 15:08) from feed Hybrids as it is too old.

DEBUG: Skipping article Local and Regional Incentives (Wed, 28 Dec, 2005 15:08) from feed Hybrids as it is too old.

DEBUG: Skipping article Private Companies Offer Incentives (Wed, 28 Dec, 2005 15:19) from feed Hybrids as it is too old.

DEBUG: Skipping article Private Companies Offer Incentives (Wed, 28 Dec, 2005 15:19) from feed Hybrids as it is too old.

DEBUG: Skipping article Peugeot's Futuristic Quad (Wed, 28 Dec, 2005 17:30) from feed Hybrids as it is too old.

DEBUG: Skipping article Peugeot's Futuristic Quad (Wed, 28 Dec, 2005 17:30) from feed Hybrids as it is too old.

DEBUG: Skipping article How Hybrids Work (Wed, 28 Dec, 2005 15:21) from feed Hybrids as it is too old.

DEBUG: Skipping article How Hybrids Work (Wed, 28 Dec, 2005 15:21) from feed Hybrids as it is too old.

DEBUG: Skipping article Plugging In to Electric Power (Wed, 28 Dec, 2005 15:23) from feed Hybrids as it is too old.

DEBUG: Skipping article Plugging In to Electric Power (Wed, 28 Dec, 2005 15:23) from feed Hybrids as it is too old.

DEBUG: Skipping article Will Global Growth Help Starbucks? (Wed, 02 Jul, 2008 13:35) from feed Europe as it is too old.

DEBUG: Skipping article Will Global Growth Help Starbucks? (Wed, 02 Jul, 2008 13:35) from feed Europe as it is too old.

DEBUG: Skipping article Chevy Malibu'sQuantum Leap (Mon, 10 Dec, 2007 13:18) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Chevy Malibu'sQuantum Leap (Mon, 10 Dec, 2007 13:18) from feed Auto Reviews as it is too old.

DEBUG: Skipping article BMW's Z4 Gets Its Props (Tue, 10 Apr, 2007 14:56) from feed Auto Reviews as it is too old.

DEBUG: Skipping article BMW's Z4 Gets Its Props (Tue, 10 Apr, 2007 14:56) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Pontiac's Budget Porsche (Fri, 26 Jan, 2007 13:46) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Pontiac's Budget Porsche (Fri, 26 Jan, 2007 13:46) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Mazda: More Miata for the Money (Fri, 15 Dec, 2006 15:53) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Mazda: More Miata for the Money (Fri, 15 Dec, 2006 15:53) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Aston Martin's AAA Bond Rating (Fri, 17 Nov, 2006 14:29) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Aston Martin's AAA Bond Rating (Fri, 17 Nov, 2006 14:29) from feed Auto Reviews as it is too old.

DEBUG: Skipping article The Audi A4 Cabriolet Gets an A (Tue, 14 Nov, 2006 15:11) from feed Auto Reviews as it is too old.

DEBUG: Skipping article The Audi A4 Cabriolet Gets an A (Tue, 14 Nov, 2006 15:11) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Mercedes' Super Coupe (Mon, 08 Oct, 2007 14:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Mercedes' Super Coupe (Mon, 08 Oct, 2007 14:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Audi's TT Doubles the Pleasure (Mon, 30 Jul, 2007 12:57) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Audi's TT Doubles the Pleasure (Mon, 30 Jul, 2007 12:57) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Super Duper Mini Cooper (Tue, 29 May, 2007 10:54) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Super Duper Mini Cooper (Tue, 29 May, 2007 10:54) from feed Auto Reviews as it is too old.

DEBUG: Skipping article BMW's 1 Series: Small and Sporty (Fri, 08 Jun, 2007 14:06) from feed Auto Reviews as it is too old.

DEBUG: Skipping article BMW's 1 Series: Small and Sporty (Fri, 08 Jun, 2007 14:06) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Jaguar's New XKR: One Fine Ride (Fri, 06 Apr, 2007 15:36) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Jaguar's New XKR: One Fine Ride (Fri, 06 Apr, 2007 15:36) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Nissan's Ultimate Hybrid (Fri, 03 Aug, 2007 16:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Nissan's Ultimate Hybrid (Fri, 03 Aug, 2007 16:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Hybrid Heaven in a Lexus (Wed, 08 Mar, 2006 12:50) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Hybrid Heaven in a Lexus (Wed, 08 Mar, 2006 12:50) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota Highlander: The Camry of SUVs (Wed, 08 Aug, 2007 19:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota Highlander: The Camry of SUVs (Wed, 08 Aug, 2007 19:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Honda Accord: America's Next No. 1? (Mon, 19 Nov, 2007 14:50) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Honda Accord: America's Next No. 1? (Mon, 19 Nov, 2007 14:50) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Altima With Attitude (Mon, 05 Nov, 2007 10:34) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Altima With Attitude (Mon, 05 Nov, 2007 10:34) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Volvo's Sizzling S80 (Mon, 29 Oct, 2007 14:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Volvo's Sizzling S80 (Mon, 29 Oct, 2007 14:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Cadillac's Stellar CTS (Mon, 22 Oct, 2007 12:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Cadillac's Stellar CTS (Mon, 22 Oct, 2007 12:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Ford Taurus: Tired Bull (Fri, 12 Oct, 2007 13:37) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Ford Taurus: Tired Bull (Fri, 12 Oct, 2007 13:37) from feed Auto Reviews as it is too old.

DEBUG: Skipping article America's Best Small Pickup (Mon, 12 Nov, 2007 15:07) from feed Auto Reviews as it is too old.

DEBUG: Skipping article America's Best Small Pickup (Mon, 12 Nov, 2007 15:07) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Chevy's Biggest, Baddest Truck (Mon, 01 Oct, 2007 14:30) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Chevy's Biggest, Baddest Truck (Mon, 01 Oct, 2007 14:30) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota's Rugged Tundra (Fri, 15 Jun, 2007 16:53) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota's Rugged Tundra (Fri, 15 Jun, 2007 16:53) from feed Auto Reviews as it is too old.

DEBUG: Skipping article GMC's High Sierra (Tue, 08 May, 2007 15:36) from feed Auto Reviews as it is too old.

DEBUG: Skipping article GMC's High Sierra (Tue, 08 May, 2007 15:36) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Ford F250: Super Super Duty (Thu, 08 Mar, 2007 14:44) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Ford F250: Super Super Duty (Thu, 08 Mar, 2007 14:44) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Saturn's Terrific Vue (Fri, 14 Sep, 2007 13:12) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Saturn's Terrific Vue (Fri, 14 Sep, 2007 13:12) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota's More Refined Highlander (Thu, 30 Aug, 2007 15:00) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Toyota's More Refined Highlander (Thu, 30 Aug, 2007 15:00) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Suzuki's Bland Vitara (Wed, 18 Jul, 2007 14:14) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Suzuki's Bland Vitara (Wed, 18 Jul, 2007 14:14) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Land Rover LR2: Second Time's the Charm (Thu, 28 Jun, 2007 22:14) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Land Rover LR2: Second Time's the Charm (Thu, 28 Jun, 2007 22:14) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Subaru B9 Tribeca (Wed, 28 Dec, 2005 17:40) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Subaru B9 Tribeca (Wed, 28 Dec, 2005 17:40) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 BMW 3-Series Touring (Wed, 28 Dec, 2005 17:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 BMW 3-Series Touring (Wed, 28 Dec, 2005 17:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Mazda5 (Tue, 27 Dec, 2005 22:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Mazda5 (Tue, 27 Dec, 2005 22:22) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Audi A6 Avant 3.2 quattro (Tue, 27 Dec, 2005 21:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article 2006 Audi A6 Avant 3.2 quattro (Tue, 27 Dec, 2005 21:15) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Chrysler's Tony Town & Country (Mon, 26 Nov, 2007 16:26) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Chrysler's Tony Town & Country (Mon, 26 Nov, 2007 16:26) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Scion xB: Bigger but Thirstier (Fri, 17 Aug, 2007 15:28) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Scion xB: Bigger but Thirstier (Fri, 17 Aug, 2007 15:28) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Subaru Legacy Wagon: Best for Last (Tue, 27 Mar, 2007 13:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Subaru Legacy Wagon: Best for Last (Tue, 27 Mar, 2007 13:25) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Full Caliber (Tue, 29 Aug, 2006 14:11) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Full Caliber (Tue, 29 Aug, 2006 14:11) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Rowdy Audi (Thu, 13 Jul, 2006 16:44) from feed Auto Reviews as it is too old.

DEBUG: Skipping article Rowdy Audi (Thu, 13 Jul, 2006 16:44) from feed Auto Reviews as it is too old.

DEBUG: Skipping article The Future of Gambling (Fri, 27 Jun, 2008 14:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Future of Gambling (Fri, 27 Jun, 2008 14:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Fixing Fishman (Wed, 04 Jun, 2008 12:23) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Fixing Fishman (Wed, 04 Jun, 2008 12:23) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Yves and Mitch's Excellent Venture (Mon, 02 Jun, 2008 12:29) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Yves and Mitch's Excellent Venture (Mon, 02 Jun, 2008 12:29) from feed Innovation & Design as it is too old.

DEBUG: Skipping article C.K. Prahalad: The New Age of Innovation (Mon, 19 May, 2008 10:52) from feed Innovation & Design as it is too old.

DEBUG: Skipping article C.K. Prahalad: The New Age of Innovation (Mon, 19 May, 2008 10:52) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Institutional Innovations (Mon, 02 Jun, 2008 11:54) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Institutional Innovations (Mon, 02 Jun, 2008 11:54) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Why GE Is Getting Out of the Kitchen (Fri, 16 May, 2008 00:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Why GE Is Getting Out of the Kitchen (Fri, 16 May, 2008 00:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Is U.S. Innovation Headed Offshore? (Wed, 07 May, 2008 11:34) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Is U.S. Innovation Headed Offshore? (Wed, 07 May, 2008 11:34) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Braving Brazil's 'Airline Graveyard' (Tue, 06 May, 2008 17:15) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Braving Brazil's 'Airline Graveyard' (Tue, 06 May, 2008 17:15) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Delta-Northwest: Unlikely to Fly (Wed, 30 Apr, 2008 11:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Delta-Northwest: Unlikely to Fly (Wed, 30 Apr, 2008 11:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article How Google Fuels Its Idea Factory (Tue, 29 Apr, 2008 21:16) from feed Innovation & Design as it is too old.

DEBUG: Skipping article How Google Fuels Its Idea Factory (Tue, 29 Apr, 2008 21:16) from feed Innovation & Design as it is too old.

DEBUG: Skipping article HP Labs' Latest Experiment: Itself (Thu, 17 Apr, 2008 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article HP Labs' Latest Experiment: Itself (Thu, 17 Apr, 2008 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Life on the Edge: Learning from Facebook (Wed, 02 Apr, 2008 13:35) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Life on the Edge: Learning from Facebook (Wed, 02 Apr, 2008 13:35) from feed Innovation & Design as it is too old.

DEBUG: Skipping article BlackBerry: Innovation Behind the Icon (Fri, 04 Apr, 2008 17:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article BlackBerry: Innovation Behind the Icon (Fri, 04 Apr, 2008 17:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Real World 2.0 (Fri, 21 Mar, 2008 14:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Real World 2.0 (Fri, 21 Mar, 2008 14:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Innovation Through Acquisition (Fri, 29 Feb, 2008 14:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Innovation Through Acquisition (Fri, 29 Feb, 2008 14:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Facebook's Big Facelift (Wed, 21 May, 2008 14:16) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Facebook's Big Facelift (Wed, 21 May, 2008 14:16) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Pure Digital Flips the Script (Thu, 17 Apr, 2008 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Pure Digital Flips the Script (Thu, 17 Apr, 2008 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Speedo: Innovation in the Aqua Lab (Mon, 14 Apr, 2008 11:09) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Speedo: Innovation in the Aqua Lab (Mon, 14 Apr, 2008 11:09) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Cell Phone Made of ...Tapioca? (Mon, 17 Mar, 2008 00:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Cell Phone Made of ...Tapioca? (Mon, 17 Mar, 2008 00:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Is It Worth It? (Mon, 10 Mar, 2008 15:36) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Is It Worth It? (Mon, 10 Mar, 2008 15:36) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Walking While You Work (Fri, 15 Feb, 2008 10:58) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Walking While You Work (Fri, 15 Feb, 2008 10:58) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Learning from Tata's Nano (Wed, 27 Feb, 2008 15:32) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Learning from Tata's Nano (Wed, 27 Feb, 2008 15:32) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Really Good Collapsible Bike (Mon, 04 Feb, 2008 12:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Really Good Collapsible Bike (Mon, 04 Feb, 2008 12:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Apple: More Than a Pretty Face (Fri, 04 Jan, 2008 12:29) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Apple: More Than a Pretty Face (Fri, 04 Jan, 2008 12:29) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Bright Future of LEDs (Fri, 21 Dec, 2007 12:15) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Bright Future of LEDs (Fri, 21 Dec, 2007 12:15) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A New Blueprint for Cisco (Thu, 13 Dec, 2007 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A New Blueprint for Cisco (Thu, 13 Dec, 2007 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Danone Innovates to Help Feed the Poor (Mon, 28 Apr, 2008 02:08) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Danone Innovates to Help Feed the Poor (Mon, 28 Apr, 2008 02:08) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Ripe Time for Open Innovation (Thu, 03 Apr, 2008 10:24) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Ripe Time for Open Innovation (Thu, 03 Apr, 2008 10:24) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Giving the Poor a Means to Work (Fri, 22 Feb, 2008 12:05) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Giving the Poor a Means to Work (Fri, 22 Feb, 2008 12:05) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Billion Dollar Innovation (Fri, 07 Dec, 2007 15:05) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Billion Dollar Innovation (Fri, 07 Dec, 2007 15:05) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Rural Health Clinic in a Box (Thu, 29 Nov, 2007 13:50) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Rural Health Clinic in a Box (Thu, 29 Nov, 2007 13:50) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Designing the 'Care' into Health Care (Wed, 21 Nov, 2007 10:43) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Designing the 'Care' into Health Care (Wed, 21 Nov, 2007 10:43) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Gunning for Google (Mon, 08 Oct, 2007 11:46) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Gunning for Google (Mon, 08 Oct, 2007 11:46) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Seek the Magic with Service Prototypes (Wed, 12 Sep, 2007 11:52) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Seek the Magic with Service Prototypes (Wed, 12 Sep, 2007 11:52) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Johnson & Johnson'sBig Design Challenge (Thu, 29 May, 2008 09:36) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Johnson & Johnson'sBig Design Challenge (Thu, 29 May, 2008 09:36) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Art Museum as Research Lab (Mon, 25 Feb, 2008 13:03) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Art Museum as Research Lab (Mon, 25 Feb, 2008 13:03) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Ferrari for the Skies (Fri, 01 Feb, 2008 10:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Ferrari for the Skies (Fri, 01 Feb, 2008 10:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Touchable Tasting Menu (Fri, 25 Jan, 2008 12:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Touchable Tasting Menu (Fri, 25 Jan, 2008 12:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Richard Sapper: Fifty Years at the Drawing Board (Wed, 16 Jan, 2008 16:22) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Richard Sapper: Fifty Years at the Drawing Board (Wed, 16 Jan, 2008 16:22) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Design: A Strong Showing in Miami (Mon, 10 Dec, 2007 17:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Design: A Strong Showing in Miami (Mon, 10 Dec, 2007 17:47) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Peter Senge's Necessary Revolution (Wed, 11 Jun, 2008 14:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Peter Senge's Necessary Revolution (Wed, 11 Jun, 2008 14:55) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Strange Case of the Missing Microfiber (Fri, 30 May, 2008 13:18) from feed Innovation & Design as it is too old.

DEBUG: Skipping article The Strange Case of the Missing Microfiber (Fri, 30 May, 2008 13:18) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Bringing Green Mainstream (Mon, 17 Mar, 2008 11:49) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Bringing Green Mainstream (Mon, 17 Mar, 2008 11:49) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Using Nature as a Design Guide (Mon, 11 Feb, 2008 11:22) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Using Nature as a Design Guide (Mon, 11 Feb, 2008 11:22) from feed Innovation & Design as it is too old.

DEBUG: Skipping article America's Green Economy (Mon, 11 Feb, 2008 17:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article America's Green Economy (Mon, 11 Feb, 2008 17:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A New Model for Green Design (Fri, 18 Jan, 2008 16:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A New Model for Green Design (Fri, 18 Jan, 2008 16:40) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Deconstructing the Energy Bill (Fri, 21 Dec, 2007 12:13) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Deconstructing the Energy Bill (Fri, 21 Dec, 2007 12:13) from feed Innovation & Design as it is too old.

DEBUG: Skipping article How Green Is That Gizmo? (Thu, 20 Dec, 2007 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article How Green Is That Gizmo? (Thu, 20 Dec, 2007 17:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article New Clout for Cradle to Cradle Design (Wed, 19 Sep, 2007 12:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article New Clout for Cradle to Cradle Design (Wed, 19 Sep, 2007 12:00) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Debate over 'Greenwashing' (Fri, 13 Jul, 2007 10:11) from feed Innovation & Design as it is too old.

DEBUG: Skipping article A Debate over 'Greenwashing' (Fri, 13 Jul, 2007 10:11) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Good Design, Good Business in China (Mon, 21 Apr, 2008 11:39) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Good Design, Good Business in China (Mon, 21 Apr, 2008 11:39) from feed Innovation & Design as it is too old.

DEBUG: Skipping article And the Best Knockoff Is… (Fri, 08 Feb, 2008 11:13) from feed Innovation & Design as it is too old.

DEBUG: Skipping article And the Best Knockoff Is… (Fri, 08 Feb, 2008 11:13) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Red Dot Awards: Inspired Design (Mon, 10 Dec, 2007 11:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Red Dot Awards: Inspired Design (Mon, 10 Dec, 2007 11:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Life-Saving Design (Mon, 10 Sep, 2007 11:28) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Life-Saving Design (Mon, 10 Sep, 2007 11:28) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Leveling the Field in the Weight Room (Thu, 19 Jul, 2007 17:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Leveling the Field in the Weight Room (Thu, 19 Jul, 2007 17:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Jonathan Ive and Apple Win Again (Thu, 07 Jun, 2007 11:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Jonathan Ive and Apple Win Again (Thu, 07 Jun, 2007 11:01) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Building Better Brands (Fri, 25 May, 2007 11:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Building Better Brands (Fri, 25 May, 2007 11:20) from feed Innovation & Design as it is too old.

DEBUG: Skipping article Inside Beijing's National Swimming Center (Wed, 02 Jul, 2008 13:56) from feed Architecture as it is too old.

DEBUG: Skipping article Inside Beijing's National Swimming Center (Wed, 02 Jul, 2008 13:56) from feed Architecture as it is too old.

DEBUG: Skipping article Battersea Power Station's Sustainable Makeover (Fri, 27 Jun, 2008 14:26) from feed Architecture as it is too old.

DEBUG: Skipping article Battersea Power Station's Sustainable Makeover (Fri, 27 Jun, 2008 14:26) from feed Architecture as it is too old.

DEBUG: Skipping article The Best U.S. Cities, by Design (Wed, 25 Jun, 2008 11:28) from feed Architecture as it is too old.

DEBUG: Skipping article The Best U.S. Cities, by Design (Wed, 25 Jun, 2008 11:28) from feed Architecture as it is too old.

DEBUG: Skipping article Going Green Is Good for Your Wallet (Fri, 27 Jun, 2008 14:34) from feed Architecture as it is too old.

DEBUG: Skipping article Going Green Is Good for Your Wallet (Fri, 27 Jun, 2008 14:34) from feed Architecture as it is too old.

DEBUG: Skipping article The Greening of Greensburg (Mon, 05 May, 2008 13:41) from feed Architecture as it is too old.

DEBUG: Skipping article The Greening of Greensburg (Mon, 05 May, 2008 13:41) from feed Architecture as it is too old.

DEBUG: Skipping article The Quad's Not the Only Green Spot on Campus (Fri, 28 Mar, 2008 11:52) from feed Architecture as it is too old.

DEBUG: Skipping article The Quad's Not the Only Green Spot on Campus (Fri, 28 Mar, 2008 11:52) from feed Architecture as it is too old.

DEBUG: Skipping article Bringing in the Green (Wed, 19 Mar, 2008 17:00) from feed Architecture as it is too old.

DEBUG: Skipping article Bringing in the Green (Wed, 19 Mar, 2008 17:00) from feed Architecture as it is too old.

DEBUG: Skipping article Snowmass Resort Shows It's Easy Skiing Green (Wed, 05 Mar, 2008 15:02) from feed Architecture as it is too old.

DEBUG: Skipping article Snowmass Resort Shows It's Easy Skiing Green (Wed, 05 Mar, 2008 15:02) from feed Architecture as it is too old.

DEBUG: Skipping article 3XN Transforms Brown into Green (Wed, 27 Feb, 2008 15:36) from feed Architecture as it is too old.

DEBUG: Skipping article 3XN Transforms Brown into Green (Wed, 27 Feb, 2008 15:36) from feed Architecture as it is too old.

DEBUG: Skipping article Rise of the Carbon-Neutral City (Mon, 11 Feb, 2008 11:47) from feed Architecture as it is too old.

DEBUG: Skipping article Rise of the Carbon-Neutral City (Mon, 11 Feb, 2008 11:47) from feed Architecture as it is too old.

DEBUG: Skipping article Brad Pitt Aims to Make It Right (Mon, 17 Dec, 2007 14:02) from feed Architecture as it is too old.

DEBUG: Skipping article Brad Pitt Aims to Make It Right (Mon, 17 Dec, 2007 14:02) from feed Architecture as it is too old.

DEBUG: Skipping article Solar's Newest Resource (Wed, 28 Nov, 2007 14:47) from feed Architecture as it is too old.

DEBUG: Skipping article Solar's Newest Resource (Wed, 28 Nov, 2007 14:47) from feed Architecture as it is too old.

DEBUG: Skipping article Moving Away from a Carbon Economy (Fri, 09 Nov, 2007 11:35) from feed Architecture as it is too old.

DEBUG: Skipping article Moving Away from a Carbon Economy (Fri, 09 Nov, 2007 11:35) from feed Architecture as it is too old.

DEBUG: Skipping article Asian Cities Go Green (Wed, 07 Nov, 2007 15:25) from feed Architecture as it is too old.

DEBUG: Skipping article Asian Cities Go Green (Wed, 07 Nov, 2007 15:25) from feed Architecture as it is too old.

DEBUG: Skipping article Destiny USA Breaks Ground in Syracuse (Mon, 05 Nov, 2007 11:12) from feed Architecture as it is too old.

DEBUG: Skipping article Destiny USA Breaks Ground in Syracuse (Mon, 05 Nov, 2007 11:12) from feed Architecture as it is too old.

DEBUG: Skipping article Red Sox Turn Green (Fri, 26 Oct, 2007 06:52) from feed Architecture as it is too old.

DEBUG: Skipping article Red Sox Turn Green (Fri, 26 Oct, 2007 06:52) from feed Architecture as it is too old.

DEBUG: Skipping article Traffic-Stopping Parking Structures (Wed, 21 May, 2008 11:20) from feed Architecture as it is too old.

DEBUG: Skipping article Traffic-Stopping Parking Structures (Wed, 21 May, 2008 11:20) from feed Architecture as it is too old.

DEBUG: Skipping article Will China Welcome a Mid-Range Hotel? (Fri, 02 May, 2008 15:08) from feed Architecture as it is too old.

DEBUG: Skipping article Will China Welcome a Mid-Range Hotel? (Fri, 02 May, 2008 15:08) from feed Architecture as it is too old.

DEBUG: Skipping article Hotel Rooms by Design (Wed, 21 May, 2008 14:23) from feed Architecture as it is too old.

DEBUG: Skipping article Hotel Rooms by Design (Wed, 21 May, 2008 14:23) from feed Architecture as it is too old.

DEBUG: Skipping article Jerusalem Bridge Incites Controversy (Fri, 09 May, 2008 11:42) from feed Architecture as it is too old.

DEBUG: Skipping article Jerusalem Bridge Incites Controversy (Fri, 09 May, 2008 11:42) from feed Architecture as it is too old.

DEBUG: Skipping article Has NYC's Development Agenda Stalled? (Fri, 11 Apr, 2008 12:10) from feed Architecture as it is too old.

DEBUG: Skipping article Has NYC's Development Agenda Stalled? (Fri, 11 Apr, 2008 12:10) from feed Architecture as it is too old.

DEBUG: Skipping article London Goes Vertical? (Tue, 18 Mar, 2008 16:01) from feed Architecture as it is too old.

DEBUG: Skipping article London Goes Vertical? (Tue, 18 Mar, 2008 16:01) from feed Architecture as it is too old.

DEBUG: Skipping article Time to Downsize That McMansion (Fri, 14 Mar, 2008 13:05) from feed Architecture as it is too old.

DEBUG: Skipping article Time to Downsize That McMansion (Fri, 14 Mar, 2008 13:05) from feed Architecture as it is too old.

DEBUG: Skipping article The City of the Future (Fri, 07 Mar, 2008 11:22) from feed Architecture as it is too old.

DEBUG: Skipping article The City of the Future (Fri, 07 Mar, 2008 11:22) from feed Architecture as it is too old.

DEBUG: Skipping article Housing the YouTube Generation (Wed, 20 Feb, 2008 11:28) from feed Architecture as it is too old.

DEBUG: Skipping article Housing the YouTube Generation (Wed, 20 Feb, 2008 11:28) from feed Architecture as it is too old.

DEBUG: Skipping article Tel Aviv's Bold Blend of Past and Future (Wed, 02 Jan, 2008 14:36) from feed Architecture as it is too old.

DEBUG: Skipping article Tel Aviv's Bold Blend of Past and Future (Wed, 02 Jan, 2008 14:36) from feed Architecture as it is too old.

DEBUG: Skipping article Indian Tycoon's Tower (Mon, 29 Oct, 2007 14:19) from feed Architecture as it is too old.

DEBUG: Skipping article Indian Tycoon's Tower (Mon, 29 Oct, 2007 14:19) from feed Architecture as it is too old.

DEBUG: Skipping article Safety and Security—Without the Fortress Look (Fri, 19 Oct, 2007 14:06) from feed Architecture as it is too old.

DEBUG: Skipping article Safety and Security—Without the Fortress Look (Fri, 19 Oct, 2007 14:06) from feed Architecture as it is too old.

DEBUG: Skipping article One Giant Leap for Space Tourism (Wed, 05 Sep, 2007 10:57) from feed Architecture as it is too old.

DEBUG: Skipping article One Giant Leap for Space Tourism (Wed, 05 Sep, 2007 10:57) from feed Architecture as it is too old.

DEBUG: Skipping article The Architecture of Jürgen Mayer H (Fri, 14 Mar, 2008 12:28) from feed Architecture as it is too old.

DEBUG: Skipping article The Architecture of Jürgen Mayer H (Fri, 14 Mar, 2008 12:28) from feed Architecture as it is too old.

DEBUG: Skipping article Why I Hate The Hearst Tower (Wed, 23 Jan, 2008 15:35) from feed Architecture as it is too old.

DEBUG: Skipping article Why I Hate The Hearst Tower (Wed, 23 Jan, 2008 15:35) from feed Architecture as it is too old.

DEBUG: Skipping article How to Build a Temple in 10 Days (Wed, 09 Jan, 2008 14:12) from feed Architecture as it is too old.

DEBUG: Skipping article How to Build a Temple in 10 Days (Wed, 09 Jan, 2008 14:12) from feed Architecture as it is too old.

DEBUG: Skipping article Beyond Miami: Dacra Goes Global (Fri, 07 Dec, 2007 14:03) from feed Architecture as it is too old.

DEBUG: Skipping article Beyond Miami: Dacra Goes Global (Fri, 07 Dec, 2007 14:03) from feed Architecture as it is too old.

DEBUG: Skipping article Is New York Losing Its Soul? (Mon, 08 Oct, 2007 14:11) from feed Architecture as it is too old.

DEBUG: Skipping article Is New York Losing Its Soul? (Mon, 08 Oct, 2007 14:11) from feed Architecture as it is too old.

DEBUG: Skipping article Can the Construction Business Remake Itself? (Wed, 03 Oct, 2007 11:59) from feed Architecture as it is too old.

DEBUG: Skipping article Can the Construction Business Remake Itself? (Wed, 03 Oct, 2007 11:59) from feed Architecture as it is too old.

DEBUG: Skipping article The Skyscraper: Still Soaring (Fri, 17 Aug, 2007 12:05) from feed Architecture as it is too old.

DEBUG: Skipping article The Skyscraper: Still Soaring (Fri, 17 Aug, 2007 12:05) from feed Architecture as it is too old.

DEBUG: Skipping article Good Design, Good Business in China (Mon, 21 Apr, 2008 11:39) from feed Architecture as it is too old.

DEBUG: Skipping article Good Design, Good Business in China (Mon, 21 Apr, 2008 11:39) from feed Architecture as it is too old.

DEBUG: Skipping article After the Layoff, the Redesign (Mon, 07 Apr, 2008 18:59) from feed Architecture as it is too old.

DEBUG: Skipping article After the Layoff, the Redesign (Mon, 07 Apr, 2008 18:59) from feed Architecture as it is too old.

DEBUG: Skipping article Jean Nouvel's Moment in the Sun (Thu, 17 Apr, 2008 13:21) from feed Architecture as it is too old.

DEBUG: Skipping article Jean Nouvel's Moment in the Sun (Thu, 17 Apr, 2008 13:21) from feed Architecture as it is too old.

DEBUG: Skipping article Beijing's Giant Airport Terminal To Open (Wed, 27 Feb, 2008 15:27) from feed Architecture as it is too old.

DEBUG: Skipping article Beijing's Giant Airport Terminal To Open (Wed, 27 Feb, 2008 15:27) from feed Architecture as it is too old.

DEBUG: Skipping article The State of American Architecture (Wed, 13 Feb, 2008 16:45) from feed Architecture as it is too old.

DEBUG: Skipping article The State of American Architecture (Wed, 13 Feb, 2008 16:45) from feed Architecture as it is too old.

DEBUG: Skipping article New Orleans Riverfront Plan Gets Green Light (Wed, 16 Jan, 2008 16:07) from feed Architecture as it is too old.

DEBUG: Skipping article New Orleans Riverfront Plan Gets Green Light (Wed, 16 Jan, 2008 16:07) from feed Architecture as it is too old.

DEBUG: Skipping article Coney Island: Rides Again? (Mon, 07 Jan, 2008 12:59) from feed Architecture as it is too old.

DEBUG: Skipping article Coney Island: Rides Again? (Mon, 07 Jan, 2008 12:59) from feed Architecture as it is too old.

DEBUG: Skipping article Housing Slump? What Housing Slump? (Fri, 04 Jan, 2008 12:21) from feed Architecture as it is too old.

DEBUG: Skipping article Housing Slump? What Housing Slump? (Fri, 04 Jan, 2008 12:21) from feed Architecture as it is too old.

DEBUG: Skipping article Whose Bridge Is It Anyway? (Wed, 12 Dec, 2007 14:06) from feed Architecture as it is too old.

DEBUG: Skipping article Whose Bridge Is It Anyway? (Wed, 12 Dec, 2007 14:06) from feed Architecture as it is too old.

DEBUG: Skipping article MTA Presents Plans for New York City (Wed, 05 Dec, 2007 15:04) from feed Architecture as it is too old.

DEBUG: Skipping article MTA Presents Plans for New York City (Wed, 05 Dec, 2007 15:04) from feed Architecture as it is too old.

DEBUG: Skipping article Marcel Breuer Comes to Washington (Wed, 14 Nov, 2007 13:01) from feed Architecture as it is too old.

DEBUG: Skipping article Marcel Breuer Comes to Washington (Wed, 14 Nov, 2007 13:01) from feed Architecture as it is too old.

DEBUG: Skipping article Miami's Design Doyen: Craig Robins (Mon, 12 Nov, 2007 11:24) from feed Architecture as it is too old.

DEBUG: Skipping article Miami's Design Doyen: Craig Robins (Mon, 12 Nov, 2007 11:24) from feed Architecture as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Architecture as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Architecture as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Architecture as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Architecture as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Architecture as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Architecture as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Architecture as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Architecture as it is too old.

DEBUG: Skipping article Wal-Mart Gets a Facelift (Wed, 02 Jul, 2008 11:41) from feed Brand Equity as it is too old.

DEBUG: Skipping article Wal-Mart Gets a Facelift (Wed, 02 Jul, 2008 11:41) from feed Brand Equity as it is too old.

DEBUG: Skipping article Obama's Secret Digital Weapon (Tue, 24 Jun, 2008 18:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article Obama's Secret Digital Weapon (Tue, 24 Jun, 2008 18:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article FedEx Ditches Kinko's (Mon, 09 Jun, 2008 16:06) from feed Brand Equity as it is too old.

DEBUG: Skipping article FedEx Ditches Kinko's (Mon, 09 Jun, 2008 16:06) from feed Brand Equity as it is too old.

DEBUG: Skipping article McDonald's Specialty Coffee Kick (Wed, 14 May, 2008 16:13) from feed Brand Equity as it is too old.

DEBUG: Skipping article McDonald's Specialty Coffee Kick (Wed, 14 May, 2008 16:13) from feed Brand Equity as it is too old.

DEBUG: Skipping article How to Build Brand Friendship (Fri, 09 May, 2008 15:15) from feed Brand Equity as it is too old.

DEBUG: Skipping article How to Build Brand Friendship (Fri, 09 May, 2008 15:15) from feed Brand Equity as it is too old.

DEBUG: Skipping article Get the Most Out of Your Ad Agency (Mon, 25 Feb, 2008 18:42) from feed Brand Equity as it is too old.

DEBUG: Skipping article Get the Most Out of Your Ad Agency (Mon, 25 Feb, 2008 18:42) from feed Brand Equity as it is too old.

DEBUG: Skipping article Wolff Olins' Intuitive Branding (Wed, 06 Feb, 2008 14:53) from feed Brand Equity as it is too old.

DEBUG: Skipping article Wolff Olins' Intuitive Branding (Wed, 06 Feb, 2008 14:53) from feed Brand Equity as it is too old.

DEBUG: Skipping article He Works Hard for the Money (Thu, 24 Jan, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article He Works Hard for the Money (Thu, 24 Jan, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article Xerox Gets a Brand Makeover (Mon, 07 Jan, 2008 11:30) from feed Brand Equity as it is too old.

DEBUG: Skipping article Xerox Gets a Brand Makeover (Mon, 07 Jan, 2008 11:30) from feed Brand Equity as it is too old.

DEBUG: Skipping article Struggles of a Mad Man (Wed, 21 Nov, 2007 11:48) from feed Brand Equity as it is too old.

DEBUG: Skipping article Struggles of a Mad Man (Wed, 21 Nov, 2007 11:48) from feed Brand Equity as it is too old.

DEBUG: Skipping article The American Green House (Mon, 05 Nov, 2007 11:03) from feed Brand Equity as it is too old.

DEBUG: Skipping article The American Green House (Mon, 05 Nov, 2007 11:03) from feed Brand Equity as it is too old.

DEBUG: Skipping article Trucker Hats, Tattoos, and Madonna (Wed, 18 Jun, 2008 12:26) from feed Brand Equity as it is too old.

DEBUG: Skipping article Trucker Hats, Tattoos, and Madonna (Wed, 18 Jun, 2008 12:26) from feed Brand Equity as it is too old.

DEBUG: Skipping article Converse's All-Star Image (Fri, 25 Apr, 2008 13:40) from feed Brand Equity as it is too old.

DEBUG: Skipping article Converse's All-Star Image (Fri, 25 Apr, 2008 13:40) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Icelander Who Wants Saks (Thu, 31 Jan, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Icelander Who Wants Saks (Thu, 31 Jan, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article LG Bets Big on TV Design (Wed, 23 Jan, 2008 17:46) from feed Brand Equity as it is too old.

DEBUG: Skipping article LG Bets Big on TV Design (Wed, 23 Jan, 2008 17:46) from feed Brand Equity as it is too old.

DEBUG: Skipping article Vente-privee.com Refashions Closeouts (Fri, 11 Jan, 2008 12:56) from feed Brand Equity as it is too old.

DEBUG: Skipping article Vente-privee.com Refashions Closeouts (Fri, 11 Jan, 2008 12:56) from feed Brand Equity as it is too old.

DEBUG: Skipping article Philips' Lightbulb Moment (Fri, 07 Dec, 2007 12:41) from feed Brand Equity as it is too old.

DEBUG: Skipping article Philips' Lightbulb Moment (Fri, 07 Dec, 2007 12:41) from feed Brand Equity as it is too old.

DEBUG: Skipping article Steppenwolf's Dramatic Arc (Mon, 17 Dec, 2007 13:42) from feed Brand Equity as it is too old.

DEBUG: Skipping article Steppenwolf's Dramatic Arc (Mon, 17 Dec, 2007 13:42) from feed Brand Equity as it is too old.

DEBUG: Skipping article Dove (D)evolution (Mon, 12 Nov, 2007 11:06) from feed Brand Equity as it is too old.

DEBUG: Skipping article Dove (D)evolution (Mon, 12 Nov, 2007 11:06) from feed Brand Equity as it is too old.

DEBUG: Skipping article At Best Buy, Marketing Goes Micro (Thu, 15 May, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article At Best Buy, Marketing Goes Micro (Thu, 15 May, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article Carbon Confusion (Thu, 06 Mar, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article Carbon Confusion (Thu, 06 Mar, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article The State of Indian Design (Wed, 05 Mar, 2008 14:55) from feed Brand Equity as it is too old.

DEBUG: Skipping article The State of Indian Design (Wed, 05 Mar, 2008 14:55) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Death of Mass Luxury (Thu, 17 Jan, 2008 22:05) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Death of Mass Luxury (Thu, 17 Jan, 2008 22:05) from feed Brand Equity as it is too old.

DEBUG: Skipping article Beware the Advertising Pretest (Fri, 07 Dec, 2007 11:57) from feed Brand Equity as it is too old.

DEBUG: Skipping article Beware the Advertising Pretest (Fri, 07 Dec, 2007 11:57) from feed Brand Equity as it is too old.

DEBUG: Skipping article Little Green Lies (Wed, 24 Oct, 2007 11:30) from feed Brand Equity as it is too old.

DEBUG: Skipping article Little Green Lies (Wed, 24 Oct, 2007 11:30) from feed Brand Equity as it is too old.

DEBUG: Skipping article Haggling Starts to Go the Way of the Tail Fin (Mon, 22 Oct, 2007 11:29) from feed Brand Equity as it is too old.

DEBUG: Skipping article Haggling Starts to Go the Way of the Tail Fin (Mon, 22 Oct, 2007 11:29) from feed Brand Equity as it is too old.

DEBUG: Skipping article This Is Your Brain on Advertising (Mon, 08 Oct, 2007 13:57) from feed Brand Equity as it is too old.

DEBUG: Skipping article This Is Your Brain on Advertising (Mon, 08 Oct, 2007 13:57) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Big Record Labels' Not-So-Big Future (Wed, 10 Oct, 2007 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article The Big Record Labels' Not-So-Big Future (Wed, 10 Oct, 2007 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article Advertising: The Bottom Line (Mon, 14 Apr, 2008 11:10) from feed Brand Equity as it is too old.

DEBUG: Skipping article Advertising: The Bottom Line (Mon, 14 Apr, 2008 11:10) from feed Brand Equity as it is too old.

DEBUG: Skipping article An Ad Man Tests the Limits (Thu, 21 Feb, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article An Ad Man Tests the Limits (Thu, 21 Feb, 2008 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article A Boom in Political Advertising (Mon, 11 Feb, 2008 16:55) from feed Brand Equity as it is too old.

DEBUG: Skipping article A Boom in Political Advertising (Mon, 11 Feb, 2008 16:55) from feed Brand Equity as it is too old.

DEBUG: Skipping article What You Really Want to Buy (Mon, 28 Jan, 2008 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article What You Really Want to Buy (Mon, 28 Jan, 2008 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article NBC: Blindsided by Notre Dame (Thu, 20 Dec, 2007 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article NBC: Blindsided by Notre Dame (Thu, 20 Dec, 2007 17:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article Facebook: Marketers Are Your 'Friends' (Wed, 07 Nov, 2007 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article Facebook: Marketers Are Your 'Friends' (Wed, 07 Nov, 2007 00:01) from feed Brand Equity as it is too old.

DEBUG: Skipping article So Many Ads, So Few Clicks (Fri, 02 Nov, 2007 12:08) from feed Brand Equity as it is too old.

DEBUG: Skipping article So Many Ads, So Few Clicks (Fri, 02 Nov, 2007 12:08) from feed Brand Equity as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Brand Equity as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Brand Equity as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Brand Equity as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Brand Equity as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Brand Equity as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Brand Equity as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Brand Equity as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Auto Design as it is too old.

DEBUG: Skipping article Japan's New Green Car Push (Wed, 02 Jul, 2008 09:42) from feed Auto Design as it is too old.

DEBUG: Skipping article The Electric Car Lives (Mon, 16 Jun, 2008 12:32) from feed Auto Design as it is too old.

DEBUG: Skipping article The Electric Car Lives (Mon, 16 Jun, 2008 12:32) from feed Auto Design as it is too old.

DEBUG: Skipping article Small Is the New Big (Wed, 04 Jun, 2008 12:18) from feed Auto Design as it is too old.

DEBUG: Skipping article Small Is the New Big (Wed, 04 Jun, 2008 12:18) from feed Auto Design as it is too old.

DEBUG: Skipping article Urban Eco-Transport to Hit the Street (Tue, 03 Jun, 2008 17:46) from feed Auto Design as it is too old.

DEBUG: Skipping article Urban Eco-Transport to Hit the Street (Tue, 03 Jun, 2008 17:46) from feed Auto Design as it is too old.

DEBUG: Skipping article Nissan's Design Future (Fri, 30 May, 2008 12:35) from feed Auto Design as it is too old.

DEBUG: Skipping article Nissan's Design Future (Fri, 30 May, 2008 12:35) from feed Auto Design as it is too old.

DEBUG: Skipping article Inside the Tata Nano Factory (Fri, 09 May, 2008 12:41) from feed Auto Design as it is too old.

DEBUG: Skipping article Inside the Tata Nano Factory (Fri, 09 May, 2008 12:41) from feed Auto Design as it is too old.

DEBUG: Skipping article Hot Design for Graying Drivers (Wed, 07 May, 2008 14:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Hot Design for Graying Drivers (Wed, 07 May, 2008 14:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Engineering a Saab Turnaround (Mon, 31 Mar, 2008 15:35) from feed Auto Design as it is too old.

DEBUG: Skipping article Engineering a Saab Turnaround (Mon, 31 Mar, 2008 15:35) from feed Auto Design as it is too old.

DEBUG: Skipping article One World, One Car, One Name (Thu, 13 Mar, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article One World, One Car, One Name (Thu, 13 Mar, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Designing the Cars of the Future (Sun, 02 Mar, 2008 20:05) from feed Auto Design as it is too old.

DEBUG: Skipping article Designing the Cars of the Future (Sun, 02 Mar, 2008 20:05) from feed Auto Design as it is too old.

DEBUG: Skipping article Detroit's New Push for Better Interiors (Mon, 28 Jan, 2008 00:01) from feed Auto Design as it is too old.

DEBUG: Skipping article Detroit's New Push for Better Interiors (Mon, 28 Jan, 2008 00:01) from feed Auto Design as it is too old.

DEBUG: Skipping article The Electric Car Acid Test (Thu, 24 Jan, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article The Electric Car Acid Test (Thu, 24 Jan, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Tata Unveils the World's Cheapest Car (Thu, 10 Jan, 2008 10:51) from feed Auto Design as it is too old.

DEBUG: Skipping article Tata Unveils the World's Cheapest Car (Thu, 10 Jan, 2008 10:51) from feed Auto Design as it is too old.

DEBUG: Skipping article GM Opens Electric Design Studio (Wed, 02 Jan, 2008 14:48) from feed Auto Design as it is too old.

DEBUG: Skipping article GM Opens Electric Design Studio (Wed, 02 Jan, 2008 14:48) from feed Auto Design as it is too old.

DEBUG: Skipping article Nissan Redesigns a Japanese Icon (Mon, 26 Nov, 2007 15:57) from feed Auto Design as it is too old.

DEBUG: Skipping article Nissan Redesigns a Japanese Icon (Mon, 26 Nov, 2007 15:57) from feed Auto Design as it is too old.

DEBUG: Skipping article A Smaller, Friendlier Hummer? (Thu, 17 Apr, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article A Smaller, Friendlier Hummer? (Thu, 17 Apr, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Lexus: Too Japanese for the Japanese (Thu, 20 Mar, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Lexus: Too Japanese for the Japanese (Thu, 20 Mar, 2008 17:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Volkswagen's Integrated Interiors (Mon, 17 Mar, 2008 12:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Volkswagen's Integrated Interiors (Mon, 17 Mar, 2008 12:00) from feed Auto Design as it is too old.

DEBUG: Skipping article Get Ready for Less Boring Green Cars (Fri, 01 Feb, 2008 13:48) from feed Auto Design as it is too old.

DEBUG: Skipping article Get Ready for Less Boring Green Cars (Fri, 01 Feb, 2008 13:48) from feed Auto Design as it is too old.

DEBUG: Skipping article Test-Driving the Mitsubishi I (Wed, 16 Jan, 2008 16:03) from feed Auto Design as it is too old.

DEBUG: Skipping article Test-Driving the Mitsubishi I (Wed, 16 Jan, 2008 16:03) from feed Auto Design as it is too old.

DEBUG: Skipping article The World's Biggest Arcade Game? (Tue, 04 Dec, 2007 16:01) from feed Auto Design as it is too old.

DEBUG: Skipping article The World's Biggest Arcade Game? (Tue, 04 Dec, 2007 16:01) from feed Auto Design as it is too old.

DEBUG: Skipping article Sky-High Concept Car (Mon, 17 Dec, 2007 15:17) from feed Auto Design as it is too old.

DEBUG: Skipping article Sky-High Concept Car (Mon, 17 Dec, 2007 15:17) from feed Auto Design as it is too old.

DEBUG: Skipping article Variable Degrees of Transparency (Mon, 12 Nov, 2007 13:58) from feed Auto Design as it is too old.

DEBUG: Skipping article Variable Degrees of Transparency (Mon, 12 Nov, 2007 13:58) from feed Auto Design as it is too old.

DEBUG: Skipping article The Thrill of Mass Cars (Mon, 16 Jul, 2007 13:30) from feed Auto Design as it is too old.

DEBUG: Skipping article The Thrill of Mass Cars (Mon, 16 Jul, 2007 13:30) from feed Auto Design as it is too old.

DEBUG: Skipping article Meet Alfa's New Male (Wed, 13 Jun, 2007 11:13) from feed Auto Design as it is too old.

DEBUG: Skipping article Meet Alfa's New Male (Wed, 13 Jun, 2007 11:13) from feed Auto Design as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Auto Design as it is too old.

DEBUG: Skipping article In Praise of My Father (Fri, 13 Jun, 2008 12:46) from feed Auto Design as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Auto Design as it is too old.

DEBUG: Skipping article Moving to the Mobile Web (Mon, 23 Jun, 2008 16:13) from feed Auto Design as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Auto Design as it is too old.

DEBUG: Skipping article What Do Teens Want? (Fri, 20 Jun, 2008 11:22) from feed Auto Design as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Auto Design as it is too old.

DEBUG: Skipping article ICON: The People's Plane (Thu, 12 Jun, 2008 01:00) from feed Auto Design as it is too old.
moosejons_dad is offline   Reply With Quote
Old 07-12-2008, 05:07 PM   #38
moosejons_dad
Zealot
moosejons_dad began at the beginning.
 
Posts: 100
Karma: 18
Join Date: Oct 2006
Location: N.J.
Device: Sony Readers PRS-500 exchanged by Sony for PRS-600, PRS-505,IPAD3,mini
The Wall Street Journal

The Wall Street Journal now works..Thanks for your help.
moosejons_dad is offline   Reply With Quote
Old 08-13-2008, 09:10 AM   #39
vinniet
Connoisseur
vinniet has learned how to buy an e-book online
 
Posts: 59
Karma: 97
Join Date: Oct 2007
Location: New Jersey
Device: Sony PRS-500
Wired now does not work. It put part of the article text but it cuts it off the rest. I am sure its with Wired site but I am not sure how to fix it.
vinniet is offline   Reply With Quote
Old 08-13-2008, 11:45 AM   #40
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,744
Karma: 22446736
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
open a ticket for it and I'll look at it when I get time
kovidgoyal is offline   Reply With Quote
Old 04-23-2009, 05:53 PM   #41
thegillons
Junior Member
thegillons began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Apr 2009
Device: Sony PRS-505
********Fixed with ticket, disregard*********

The following recipe for a local paper does fine when converted to LRF, but runs forever when Calibre is converting to ePub. Can anyone tell why? Thanks in advance!

class AdvancedUserRecipe1239753854(BasicNewsRecipe):
title = u'Journal'
oldest_article = 1
max_articles_per_feed = 15
remove_tags_before = dict(id='toolbox')
remove_tags_after = dict(id='commentslist')
remove_tags = [
dict(id='commentslist'), dict(id='toolbox')
]
feeds = [(u'Nation & World', u'http://www2.journalnow.com/content/list/news/nationworld/rss/'), (u'Region', u'http://www2.journalnow.com/content/list/news/regional/rss/'), (u'Local', u'http://www2.journalnow.com/content/list/news/local/rss/'), (u'Opinion', u'http://www2.journalnow.com/content/list/opinion/rss/'), (u'Business', u'http://www2.journalnow.com/content/list/business/rss/'), (u'Lifestyles', u'http://www2.journalnow.com/content/list/living/rss/'), (u'Entertainment', u'http://www2.journalnow.com/content/list/entertainment/rss/')]

Last edited by thegillons; 04-28-2009 at 02:46 PM.
thegillons is offline   Reply With Quote
Old 04-23-2009, 06:16 PM   #42
pghaworth
Fervent Pleasure Seeker
pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.
 
pghaworth's Avatar
 
Posts: 1,220
Karma: 712073
Join Date: Feb 2009
Location: The Windmills of My Mind
Device: Clara HD
Would someone please help me with this recipe. One already exists for the ScienceDaily but I need this specific section of it separated please. I have this condition and I need all the articles going as far back as possible - it may change my quality of life. Thank you for your help!

http://www.sciencedaily.com/rss/heal...bromyalgia.xml

I am posting this where it belongs - in the other recipe thread. I'm ill today and got confused between the two recipe areas. Sorry. Should I delete this one?

Last edited by pghaworth; 04-23-2009 at 10:20 PM. Reason: Wrong thread
pghaworth is offline   Reply With Quote
Old 04-23-2009, 06:19 PM   #43
pghaworth
Fervent Pleasure Seeker
pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.
 
pghaworth's Avatar
 
Posts: 1,220
Karma: 712073
Join Date: Feb 2009
Location: The Windmills of My Mind
Device: Clara HD
Kovid - forgot to mention. Thanks to you and your wonderful program I found Science Daily. Through reading it I discovered a medication that may mean a huge difference in my condition. I already have an appointment with a doctor and it all started with you. If I could hug you I would. Many, many deep, heartfelt thanks.
pghaworth is offline   Reply With Quote
Old 04-23-2009, 08:02 PM   #44
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,744
Karma: 22446736
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
Quote:
Originally Posted by pghaworth View Post
Kovid - forgot to mention. Thanks to you and your wonderful program I found Science Daily. Through reading it I discovered a medication that may mean a huge difference in my condition. I already have an appointment with a doctor and it all started with you. If I could hug you I would. Many, many deep, heartfelt thanks.
Wow that's great to hear. Hope it goes well with the doctor.
kovidgoyal is offline   Reply With Quote
Old 04-23-2009, 10:22 PM   #45
pghaworth
Fervent Pleasure Seeker
pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.pghaworth ought to be getting tired of karma fortunes by now.
 
pghaworth's Avatar
 
Posts: 1,220
Karma: 712073
Join Date: Feb 2009
Location: The Windmills of My Mind
Device: Clara HD
Quote:
Originally Posted by kovidgoyal View Post
Wow that's great to hear. Hope it goes well with the doctor.
Thank you, I'm sure all will go well. The key now is that I need the medication to work for me as well as it has for many others.
pghaworth is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with calibre recipes CaptainJSK Calibre 1 07-11-2010 01:12 AM
Calibre Recipes and iPad/iBooks jbambridge Calibre 8 05-16-2010 04:30 PM
Classification of Recipes in Calibre wayner Calibre 3 11-27-2009 09:48 AM
Problem with my recipes (Calibre 0.6.2) MikeBoud Calibre 18 08-05-2009 10:20 PM


All times are GMT -4. The time now is 06:10 AM.


MobileRead.com is a privately owned, operated and funded community.