mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
New recipes for Sabah and Zaman by Deniz Oguz
This commit is contained in:
parent
fdc9c86d9a
commit
ae438073b7
152
resources/jquery.simulate.js
Normal file
152
resources/jquery.simulate.js
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
/*
|
||||||
|
* jquery.simulate - simulate browser mouse and keyboard events
|
||||||
|
*
|
||||||
|
* Copyright (c) 2009 Eduardo Lundgren (eduardolundgren@gmail.com)
|
||||||
|
* and Richard D. Worth (rdworth@gmail.com)
|
||||||
|
*
|
||||||
|
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
||||||
|
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
;(function($) {
|
||||||
|
|
||||||
|
$.fn.extend({
|
||||||
|
simulate: function(type, options) {
|
||||||
|
return this.each(function() {
|
||||||
|
var opt = $.extend({}, $.simulate.defaults, options || {});
|
||||||
|
new $.simulate(this, type, opt);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.simulate = function(el, type, options) {
|
||||||
|
this.target = el;
|
||||||
|
this.options = options;
|
||||||
|
|
||||||
|
if (/^drag$/.test(type)) {
|
||||||
|
this[type].apply(this, [this.target, options]);
|
||||||
|
} else {
|
||||||
|
this.simulateEvent(el, type, options);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$.extend($.simulate.prototype, {
|
||||||
|
simulateEvent: function(el, type, options) {
|
||||||
|
var evt = this.createEvent(type, options);
|
||||||
|
this.dispatchEvent(el, type, evt, options);
|
||||||
|
return evt;
|
||||||
|
},
|
||||||
|
createEvent: function(type, options) {
|
||||||
|
if (/^mouse(over|out|down|up|move)|(dbl)?click$/.test(type)) {
|
||||||
|
return this.mouseEvent(type, options);
|
||||||
|
} else if (/^key(up|down|press)$/.test(type)) {
|
||||||
|
return this.keyboardEvent(type, options);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mouseEvent: function(type, options) {
|
||||||
|
var evt;
|
||||||
|
var e = $.extend({
|
||||||
|
bubbles: true, cancelable: (type != "mousemove"), view: window, detail: 0,
|
||||||
|
screenX: 0, screenY: 0, clientX: 0, clientY: 0,
|
||||||
|
ctrlKey: false, altKey: false, shiftKey: false, metaKey: false,
|
||||||
|
button: 0, relatedTarget: undefined
|
||||||
|
}, options);
|
||||||
|
|
||||||
|
var relatedTarget = $(e.relatedTarget)[0];
|
||||||
|
|
||||||
|
if ($.isFunction(document.createEvent)) {
|
||||||
|
evt = document.createEvent("MouseEvents");
|
||||||
|
evt.initMouseEvent(type, e.bubbles, e.cancelable, e.view, e.detail,
|
||||||
|
e.screenX, e.screenY, e.clientX, e.clientY,
|
||||||
|
e.ctrlKey, e.altKey, e.shiftKey, e.metaKey,
|
||||||
|
e.button, e.relatedTarget || document.body.parentNode);
|
||||||
|
} else if (document.createEventObject) {
|
||||||
|
evt = document.createEventObject();
|
||||||
|
$.extend(evt, e);
|
||||||
|
evt.button = { 0:1, 1:4, 2:2 }[evt.button] || evt.button;
|
||||||
|
}
|
||||||
|
return evt;
|
||||||
|
},
|
||||||
|
keyboardEvent: function(type, options) {
|
||||||
|
var evt;
|
||||||
|
|
||||||
|
var e = $.extend({ bubbles: true, cancelable: true, view: window,
|
||||||
|
ctrlKey: false, altKey: false, shiftKey: false, metaKey: false,
|
||||||
|
keyCode: 0, charCode: 0
|
||||||
|
}, options);
|
||||||
|
|
||||||
|
if ($.isFunction(document.createEvent)) {
|
||||||
|
try {
|
||||||
|
evt = document.createEvent("KeyEvents");
|
||||||
|
evt.initKeyEvent(type, e.bubbles, e.cancelable, e.view,
|
||||||
|
e.ctrlKey, e.altKey, e.shiftKey, e.metaKey,
|
||||||
|
e.keyCode, e.charCode);
|
||||||
|
} catch(err) {
|
||||||
|
evt = document.createEvent("Events");
|
||||||
|
evt.initEvent(type, e.bubbles, e.cancelable);
|
||||||
|
$.extend(evt, { view: e.view,
|
||||||
|
ctrlKey: e.ctrlKey, altKey: e.altKey, shiftKey: e.shiftKey, metaKey: e.metaKey,
|
||||||
|
keyCode: e.keyCode, charCode: e.charCode
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else if (document.createEventObject) {
|
||||||
|
evt = document.createEventObject();
|
||||||
|
$.extend(evt, e);
|
||||||
|
}
|
||||||
|
if ($.browser.msie || $.browser.opera) {
|
||||||
|
evt.keyCode = (e.charCode > 0) ? e.charCode : e.keyCode;
|
||||||
|
evt.charCode = undefined;
|
||||||
|
}
|
||||||
|
return evt;
|
||||||
|
},
|
||||||
|
|
||||||
|
dispatchEvent: function(el, type, evt) {
|
||||||
|
if (el.dispatchEvent) {
|
||||||
|
el.dispatchEvent(evt);
|
||||||
|
} else if (el.fireEvent) {
|
||||||
|
el.fireEvent('on' + type, evt);
|
||||||
|
}
|
||||||
|
return evt;
|
||||||
|
},
|
||||||
|
|
||||||
|
drag: function(el) {
|
||||||
|
var self = this, center = this.findCenter(this.target),
|
||||||
|
options = this.options, x = Math.floor(center.x), y = Math.floor(center.y),
|
||||||
|
dx = options.dx || 0, dy = options.dy || 0, target = this.target;
|
||||||
|
var coord = { clientX: x, clientY: y };
|
||||||
|
this.simulateEvent(target, "mousedown", coord);
|
||||||
|
coord = { clientX: x + 1, clientY: y + 1 };
|
||||||
|
this.simulateEvent(document, "mousemove", coord);
|
||||||
|
coord = { clientX: x + dx, clientY: y + dy };
|
||||||
|
this.simulateEvent(document, "mousemove", coord);
|
||||||
|
this.simulateEvent(document, "mousemove", coord);
|
||||||
|
this.simulateEvent(target, "mouseup", coord);
|
||||||
|
},
|
||||||
|
findCenter: function(el) {
|
||||||
|
var el = $(this.target), o = el.offset();
|
||||||
|
return {
|
||||||
|
x: o.left + el.outerWidth() / 2,
|
||||||
|
y: o.top + el.outerHeight() / 2
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.extend($.simulate, {
|
||||||
|
defaults: {
|
||||||
|
speed: 'sync'
|
||||||
|
},
|
||||||
|
VK_TAB: 9,
|
||||||
|
VK_ENTER: 13,
|
||||||
|
VK_ESC: 27,
|
||||||
|
VK_PGUP: 33,
|
||||||
|
VK_PGDN: 34,
|
||||||
|
VK_END: 35,
|
||||||
|
VK_HOME: 36,
|
||||||
|
VK_LEFT: 37,
|
||||||
|
VK_UP: 38,
|
||||||
|
VK_RIGHT: 39,
|
||||||
|
VK_DOWN: 40
|
||||||
|
});
|
||||||
|
|
||||||
|
})(jQuery);
|
33
resources/recipes/sabah.recipe
Normal file
33
resources/recipes/sabah.recipe
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
class AdvancedUserRecipe1253477125(BasicNewsRecipe):
|
||||||
|
title = u'Sabah'
|
||||||
|
__author__ = u'Deniz O\u011fuz'
|
||||||
|
language = 'tr'
|
||||||
|
oldest_article = 1
|
||||||
|
max_articles_per_feed = 20
|
||||||
|
cover_url = 'http://www.sabah.com.tr/c/sb/i/sabah_logo.gif'
|
||||||
|
no_stylesheets = True
|
||||||
|
remove_tags = [dict(name='div', attrs={'style':['width: 200px', 'border-top: #d8d8d8 1px dotted', 'width: 200px; margin-right: 5px', 'padding-top: 1px']})]
|
||||||
|
keep_only_tags = [dict(name='div', attrs={'class':['haber line_height_def', 'haber haber_renk line_height_def']})]
|
||||||
|
extra_css = '''
|
||||||
|
body{font-family:Arial,Helvetica,sans-serif; font-size:small; align:left}
|
||||||
|
h1{font-size:large;}
|
||||||
|
.sh{font-size:large; font-weight:bold}
|
||||||
|
.cap{font-size:xx-small; }
|
||||||
|
.lu{font-size:xx-small; }
|
||||||
|
.ds{font-size:xx-small; }
|
||||||
|
.mvb{font-size:xx-small;}
|
||||||
|
.by1{font-size:x-small; color:#666666}
|
||||||
|
.byd{font-size:x-small;}
|
||||||
|
'''
|
||||||
|
feeds = [(u'Son 24 Saat', u'http://www.sabah.com.tr/rss/Son24Saat.xml'),
|
||||||
|
(u'Ekonomi', u'http://www.sabah.com.tr/rss/Ekonomi.xml'),
|
||||||
|
(u'G\xfcndem', u'http://www.sabah.com.tr/rss/Gundem.xml'),
|
||||||
|
(u'Siyaset', u'http://www.sabah.com.tr/rss/Siyaset.xml'),
|
||||||
|
(u'Yazarlar', u'http://www.sabah.com.tr/rss/Yazarlar.xml'),
|
||||||
|
(u'D\xfcnya', u'http://www.sabah.com.tr/rss/Dunya.xml'),
|
||||||
|
(u'Teknoloji', u'http://www.sabah.com.tr/rss/Teknoloji.xml'),
|
||||||
|
(u'Spor', u'http://www.sabah.com.tr/rss/Spor.xml'),
|
||||||
|
(u'G\xfcn\xfcn \u0130\xe7inden', u'http://www.sabah.com.tr/rss/gununicinden.xml'),
|
||||||
|
(u'Emlak', u'http://www.sabah.com.tr/rss/Emlak.xml'),]
|
20
resources/recipes/zaman.recipe
Normal file
20
resources/recipes/zaman.recipe
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
class ZamanRecipe(BasicNewsRecipe):
|
||||||
|
title = u'Zaman'
|
||||||
|
__author__ = u'Deniz Og\xfcz'
|
||||||
|
language = 'tr'
|
||||||
|
oldest_article = 1
|
||||||
|
max_articles_per_feed = 10
|
||||||
|
|
||||||
|
cover_url = 'http://medya.zaman.com.tr/zamantryeni/pics/zamanonline.gif'
|
||||||
|
feeds = [(u'Gundem', u'http://www.zaman.com.tr/gundem.rss'),
|
||||||
|
(u'Son Dakika', u'http://www.zaman.com.tr/sondakika.rss'),
|
||||||
|
(u'Spor', u'http://www.zaman.com.tr/spor.rss'),
|
||||||
|
(u'Ekonomi', u'http://www.zaman.com.tr/ekonomi.rss'),
|
||||||
|
(u'Politika', u'http://www.zaman.com.tr/politika.rss'),
|
||||||
|
(u'D\u0131\u015f Haberler', u'http://www.zaman.com.tr/dishaberler.rss'),
|
||||||
|
(u'Yazarlar', u'http://www.zaman.com.tr/yazarlar.rss'),]
|
||||||
|
|
||||||
|
def print_version(self, url):
|
||||||
|
return url.replace('www.zaman.com.tr/haber.do?', 'www.zaman.com.tr/yazdir.do?')
|
Loading…
x
Reference in New Issue
Block a user