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

View File

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

View File

@ -6,7 +6,7 @@ __license__ = 'GPL v3'
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
__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,
__appname__, __version__)
@ -296,13 +296,14 @@ class Sdist(Command):
for x in open('.bzrignore').readlines():
if not x.startswith('resources/'): continue
p = x.strip().replace('/', os.sep)
d = self.j(tdir, os.path.dirname(p))
if not self.e(d):
os.makedirs(d)
if os.path.isdir(p):
shutil.copytree(p, self.j(tdir, p))
else:
shutil.copy2(p, d)
for p in glob.glob(p):
d = self.j(tdir, os.path.dirname(p))
if not self.e(d):
os.makedirs(d)
if os.path.isdir(p):
shutil.copytree(p, self.j(tdir, p))
else:
shutil.copy2(p, d)
for x in os.walk(os.path.join(self.SRC, 'calibre')):
for f in x[-1]:
if not f.endswith('_ui.py'): continue

File diff suppressed because it is too large Load Diff