IGN:Tag release

This commit is contained in:
Kovid Goyal 2011-12-16 14:28:43 +05:30
parent f654bd5bd8
commit 7771162f71
4 changed files with 310 additions and 297 deletions

View File

@ -3,7 +3,6 @@
src/calibre/plugins src/calibre/plugins
resources/images.qrc resources/images.qrc
src/calibre/ebooks/oeb/display/test/*.js src/calibre/ebooks/oeb/display/test/*.js
resources/display/*.js
src/calibre/manual/.build/ src/calibre/manual/.build/
src/calibre/manual/cli/ src/calibre/manual/cli/
src/calibre/manual/template_ref.rst src/calibre/manual/template_ref.rst
@ -17,6 +16,7 @@ resources/ebook-convert-complete.pickle
resources/builtin_recipes.xml resources/builtin_recipes.xml
resources/builtin_recipes.zip resources/builtin_recipes.zip
resources/template-functions.json resources/template-functions.json
resources/display/*.js
setup/installer/windows/calibre/build.log setup/installer/windows/calibre/build.log
src/calibre/translations/.errors src/calibre/translations/.errors
src/cssutils/.svn/ src/cssutils/.svn/

View File

@ -15,8 +15,8 @@ class Sueddeutsche(BasicNewsRecipe):
__author__ = 'Oliver Niesner and Armin Geller' #AGe 2011-12-16 __author__ = 'Oliver Niesner and Armin Geller' #AGe 2011-12-16
use_embedded_content = False use_embedded_content = False
timefmt = ' [%d %b %Y]' timefmt = ' [%d %b %Y]'
oldest_article = 1#7 oldest_article = 7
max_articles_per_feed = 2#50 max_articles_per_feed = 50
no_stylesheets = True no_stylesheets = True
language = 'de' language = 'de'
auto_cleanup = True auto_cleanup = True

View File

@ -6,7 +6,7 @@ __license__ = 'GPL v3'
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>' __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
import sys, os, textwrap, subprocess, shutil, tempfile, atexit, shlex import sys, os, textwrap, subprocess, shutil, tempfile, atexit, shlex, glob
from setup import (Command, islinux, isbsd, basenames, modules, functions, from setup import (Command, islinux, isbsd, basenames, modules, functions,
__appname__, __version__) __appname__, __version__)
@ -296,6 +296,7 @@ class Sdist(Command):
for x in open('.bzrignore').readlines(): for x in open('.bzrignore').readlines():
if not x.startswith('resources/'): continue if not x.startswith('resources/'): continue
p = x.strip().replace('/', os.sep) p = x.strip().replace('/', os.sep)
for p in glob.glob(p):
d = self.j(tdir, os.path.dirname(p)) d = self.j(tdir, os.path.dirname(p))
if not self.e(d): if not self.e(d):
os.makedirs(d) os.makedirs(d)

File diff suppressed because it is too large Load Diff