mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Recipe for Joel on Software (thanks to Darko Miletic)
This commit is contained in:
parent
46c13f6c78
commit
77328e9d47
BIN
src/calibre/gui2/images/news/joelonsoftware.png
Normal file
BIN
src/calibre/gui2/images/news/joelonsoftware.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 390 B |
@ -21,6 +21,7 @@ recipe_modules = ['recipe_' + r for r in (
|
||||
'linux_magazine', 'telegraph_uk', 'utne', 'sciencedaily', 'forbes',
|
||||
'time_magazine', 'endgadget', 'fudzilla', 'nspm_int', 'nspm', 'pescanik',
|
||||
'spiegel_int', 'themarketticker', 'tomshardware', 'xkcd', 'ftd', 'zdnet',
|
||||
'joelonsoftware',
|
||||
)]
|
||||
|
||||
import re, imp, inspect, time, os
|
||||
|
24
src/calibre/web/feeds/recipes/recipe_joelonsoftware.py
Normal file
24
src/calibre/web/feeds/recipes/recipe_joelonsoftware.py
Normal file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>'
|
||||
'''
|
||||
joelonsoftware.com
|
||||
'''
|
||||
|
||||
class Joelonsoftware(BasicNewsRecipe):
|
||||
|
||||
title = 'Joel on Software'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Painless Software Management'
|
||||
no_stylesheets = True
|
||||
use_embedded_content = True
|
||||
|
||||
cover_url = 'http://www.joelonsoftware.com/RssJoelOnSoftware.jpg'
|
||||
|
||||
html2lrf_options = [ '--comment' , description
|
||||
, '--category' , 'blog,software,news'
|
||||
, '--author' , 'Joel Spolsky'
|
||||
]
|
||||
|
||||
feeds = [(u'Articles', u'http://www.joelonsoftware.com/rss.xml')]
|
Loading…
x
Reference in New Issue
Block a user