mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Update recipes of Uruguay.
Delete diario_salto.recipe, the site has been down for a while. Delete la_diaria.recipe, it requires a paid subscription. Delete unoticias.recipe, the newspaper closed months ago. Add lr21.recipe, newspaper. Update 10minutos.recipe Update 180.recipe Update diario_el_pueblo.recipe Update el_observador.recipe Update el_pais_uy.recipe Update padreydecano.recipe
This commit is contained in:
parent
cad0f939cb
commit
c13bb38178
@ -1,7 +1,17 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Title: Diario 10minutos.com.uy News and Sports Calibre Recipe
|
||||||
|
## Contact: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## License: GNU General Public License v3 - http://www.gnu.org/copyleft/gpl.html
|
||||||
|
## Copyright: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## Written: September 2013
|
||||||
|
## Last Edited: 2016-01-11
|
||||||
|
##
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'
|
__author__ = '2016, Carlos Alves <carlos@carlosalves.info>'
|
||||||
'''
|
'''
|
||||||
10minutos.com.uy
|
10minutos.com.uy
|
||||||
'''
|
'''
|
||||||
@ -27,6 +37,7 @@ class General(BasicNewsRecipe):
|
|||||||
|
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name='div', attrs={'class':['hr', 'titlebar', 'navigation']}),
|
dict(name='div', attrs={'class':['hr', 'titlebar', 'navigation']}),
|
||||||
|
dict(name='div', attrs={'class':'sharedaddy sd-sharing-enabled'}),
|
||||||
dict(name='p', attrs={'class':'post-meta'}),
|
dict(name='p', attrs={'class':'post-meta'}),
|
||||||
dict(name=['object','link'])
|
dict(name=['object','link'])
|
||||||
]
|
]
|
||||||
@ -38,7 +49,7 @@ class General(BasicNewsRecipe):
|
|||||||
p {font-family:Arial,Helvetica,sans-serif;}
|
p {font-family:Arial,Helvetica,sans-serif;}
|
||||||
'''
|
'''
|
||||||
feeds = [
|
feeds = [
|
||||||
(u'Articulos', u'http://10minutos.com.uy/feed/')
|
(u'Articulos', u'http://10minutos.com.uy/?feed=rss2')
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_cover_url(self):
|
def get_cover_url(self):
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Last Edited: 2016-01-11 Carlos Alves <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'
|
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'
|
||||||
@ -22,7 +25,12 @@ class Noticias(BasicNewsRecipe):
|
|||||||
|
|
||||||
oldest_article = 2
|
oldest_article = 2
|
||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
keep_only_tags = [dict(name='div', attrs={'class':'tef-md tef-md-seccion-sociedad'})]
|
remove_tags_after = dict(name='article')
|
||||||
|
keep_only_tags = [
|
||||||
|
dict(name='h3', attrs={'class':'title'}),
|
||||||
|
dict(name='div', attrs={'class':'copete'}),
|
||||||
|
dict(name='article', attrs={'class':'texto'})
|
||||||
|
]
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name=['object','link'])
|
dict(name=['object','link'])
|
||||||
]
|
]
|
||||||
@ -40,7 +48,7 @@ class Noticias(BasicNewsRecipe):
|
|||||||
]
|
]
|
||||||
|
|
||||||
def get_cover_url(self):
|
def get_cover_url(self):
|
||||||
return 'http://www.180.com.uy/tplef/img/logo.gif'
|
pass
|
||||||
|
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
def preprocess_html(self, soup):
|
||||||
|
@ -1,7 +1,17 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Title: Diario El Pueblo News and Sports Calibre Recipe
|
||||||
|
## Contact: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## License: GNU General Public License v3 - http://www.gnu.org/copyleft/gpl.html
|
||||||
|
## Copyright: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## Written: September 2013
|
||||||
|
## Last Edited: 2016-01-11
|
||||||
|
##
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'
|
__author__ = '2013, Carlos Alves <carlos@carlosalves.info>'
|
||||||
|
|
||||||
'''
|
'''
|
||||||
diarioelpueblo.com.uy
|
diarioelpueblo.com.uy
|
||||||
'''
|
'''
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
|
||||||
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'
|
|
||||||
'''
|
|
||||||
diarisalto.com.uy
|
|
||||||
'''
|
|
||||||
|
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
|
||||||
|
|
||||||
class General(BasicNewsRecipe):
|
|
||||||
title = 'Diario Salto'
|
|
||||||
__author__ = 'Carlos Alves'
|
|
||||||
description = 'Noticias de Salto - Uruguay'
|
|
||||||
tags = 'news, sports'
|
|
||||||
language = 'es_UY'
|
|
||||||
timefmt = '[%a, %d %b, %Y]'
|
|
||||||
use_embedded_content = False
|
|
||||||
recursion = 5
|
|
||||||
encoding = 'utf8'
|
|
||||||
remove_javascript = True
|
|
||||||
no_stylesheets = True
|
|
||||||
|
|
||||||
oldest_article = 2
|
|
||||||
max_articles_per_feed = 100
|
|
||||||
keep_only_tags = [dict(name='div', attrs={'class':'post'})]
|
|
||||||
|
|
||||||
remove_tags = [
|
|
||||||
dict(name='div', attrs={'class':['hr', 'titlebar', 'navigation']}),
|
|
||||||
dict(name='div', attrs={'id':'comment'}),
|
|
||||||
dict(name=['object','link'])
|
|
||||||
]
|
|
||||||
|
|
||||||
extra_css = '''
|
|
||||||
h1{font-family:Geneva, Arial, Helvetica, sans-serif;color:#154B7A;}
|
|
||||||
h3{font-size: 14px;color:#999999; font-family:Geneva, Arial, Helvetica, sans-serif;font-weight: bold;}
|
|
||||||
h2{color:#666666; font-family:Geneva, Arial, Helvetica, sans-serif;font-size:small;}
|
|
||||||
p {font-family:Arial,Helvetica,sans-serif;}
|
|
||||||
'''
|
|
||||||
feeds = [
|
|
||||||
(u'Articulos', u'http://www.diariosalto.com.uy/feed/atom')
|
|
||||||
]
|
|
||||||
|
|
||||||
def get_cover_url(self):
|
|
||||||
return 'http://diariosalto.com.uy/demo/wp-content/uploads/2011/12/diario-salto_logo-final-b-b.png'
|
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
|
||||||
for item in soup.findAll(style=True):
|
|
||||||
del item['style']
|
|
||||||
return soup
|
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
##
|
##
|
||||||
## Last Edited: 2013-09-29 Carlos Alves <carlosalves90@gmail.com>
|
## Last Edited: 2016-01-11 Carlos Alves <carlos@carlosalves.info>
|
||||||
##
|
##
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
@ -29,7 +29,8 @@ class Noticias(BasicNewsRecipe):
|
|||||||
oldest_article = 2
|
oldest_article = 2
|
||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
keep_only_tags = [
|
keep_only_tags = [
|
||||||
dict(name='div', attrs={'class':'story collapsed'})
|
dict(name='h1', attrs={'class':'detail-title newDetailTextChange'}),
|
||||||
|
dict(name='div', attrs={'class':'cuerpo air newDetailTextChange'})
|
||||||
]
|
]
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name='div', attrs={'class':['fecha', 'copyright', 'story_right']}),
|
dict(name='div', attrs={'class':['fecha', 'copyright', 'story_right']}),
|
||||||
@ -47,9 +48,11 @@ class Noticias(BasicNewsRecipe):
|
|||||||
p {font-family:Arial,Helvetica,sans-serif;}
|
p {font-family:Arial,Helvetica,sans-serif;}
|
||||||
'''
|
'''
|
||||||
feeds = [
|
feeds = [
|
||||||
(u'Portada', u'http://elobservador.com.uy/rss/portada/'),
|
(u'Portada', u'http://www.elobservador.com.uy/rss/home.xml'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
def get_cover_url(self):
|
||||||
|
return 'http://css.elobservador.com.uy/css/181/images/logo.svg'
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
def preprocess_html(self, soup):
|
||||||
for item in soup.findAll(style=True):
|
for item in soup.findAll(style=True):
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Last Edited: 2016-01-11 Carlos Alves <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'
|
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'
|
||||||
@ -18,8 +21,7 @@ class General(BasicNewsRecipe):
|
|||||||
timefmt = '[%a, %d %b, %Y]'
|
timefmt = '[%a, %d %b, %Y]'
|
||||||
use_embedded_content = False
|
use_embedded_content = False
|
||||||
recursion = 2
|
recursion = 2
|
||||||
encoding = 'iso-8859-1'
|
encoding = 'utf-8'
|
||||||
masthead_url = 'http://www.elpais.com.uy/Images/09/cabezal/logo_PDEP.png'
|
|
||||||
publication_type = 'newspaper'
|
publication_type = 'newspaper'
|
||||||
remove_javascript = True
|
remove_javascript = True
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
@ -27,8 +29,10 @@ class General(BasicNewsRecipe):
|
|||||||
oldest_article = 2
|
oldest_article = 2
|
||||||
max_articles_per_feed = 200
|
max_articles_per_feed = 200
|
||||||
keep_only_tags = [
|
keep_only_tags = [
|
||||||
dict(name='h1'),
|
dict(name='div', attrs={'class':'title'}),
|
||||||
dict(name='div', attrs={'id':'Contenido'})
|
dict(name='div', attrs={'class':'pc'}),
|
||||||
|
dict(name='div', attrs={'class':'image'}),
|
||||||
|
dict(name='div', attrs={'class':'article-content'})
|
||||||
]
|
]
|
||||||
|
|
||||||
conversion_options = {
|
conversion_options = {
|
||||||
@ -58,16 +62,15 @@ class General(BasicNewsRecipe):
|
|||||||
(u'Nacional', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=nacional'),
|
(u'Nacional', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=nacional'),
|
||||||
(u'Internacional', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=internacional'),
|
(u'Internacional', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=internacional'),
|
||||||
(u'Espectaculos', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=espectaculos'),
|
(u'Espectaculos', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=espectaculos'),
|
||||||
(u'Deportes', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=deportes'),
|
|
||||||
(u'Ciudades', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=ciudades'),
|
(u'Ciudades', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=ciudades'),
|
||||||
(u'Economia', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=economia')
|
(u'Economia', u'http://www.elpais.com.uy/formatos/rss/index.asp?seccion=economia')
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_cover_url(self):
|
def get_cover_url(self):
|
||||||
cover_url = None
|
cover_url = None
|
||||||
index = 'http://www.elpais.com.uy'
|
index = 'http://www.elpais.com.uy/impresa/'
|
||||||
soup = self.index_to_soup(index)
|
soup = self.index_to_soup(index)
|
||||||
link_item = soup.find('div',attrs={'class':'boxmedio box257'})
|
link_item = soup.find('div',attrs={'class':'box-dotted-white'})
|
||||||
print link_item
|
print link_item
|
||||||
if link_item:
|
if link_item:
|
||||||
cover_url = 'http://www.elpais.com.uy'+link_item.img['src']
|
cover_url = 'http://www.elpais.com.uy'+link_item.img['src']
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
|
||||||
__author__ = '2010, Gustavo Azambuja <hola at gazambuja.com>'
|
|
||||||
'''
|
|
||||||
ladiaria.com.uy
|
|
||||||
'''
|
|
||||||
|
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
|
||||||
|
|
||||||
class General(BasicNewsRecipe):
|
|
||||||
title = 'La Diaria'
|
|
||||||
__author__ = 'Gustavo Azambuja'
|
|
||||||
description = 'Noticias de Uruguay'
|
|
||||||
language = 'es_UY'
|
|
||||||
timefmt = '[%a, %d %b, %Y]'
|
|
||||||
use_embedded_content = False
|
|
||||||
recursion = 5
|
|
||||||
encoding = 'utf8'
|
|
||||||
remove_javascript = True
|
|
||||||
no_stylesheets = True
|
|
||||||
|
|
||||||
oldest_article = 2
|
|
||||||
max_articles_per_feed = 100
|
|
||||||
keep_only_tags = [dict(id=['article'])]
|
|
||||||
remove_tags = [
|
|
||||||
dict(name='div', attrs={'class':['byline', 'hr', 'titlebar', 'volver-arriba-right']}),
|
|
||||||
dict(name='div', attrs={'id':'discussion'}),
|
|
||||||
dict(name=['object','link'])
|
|
||||||
]
|
|
||||||
|
|
||||||
extra_css = '''
|
|
||||||
h1{font-family:Geneva, Arial, Helvetica, sans-serif;color:#154B7A;}
|
|
||||||
h3{font-size: 14px;color:#999999; font-family:Geneva, Arial, Helvetica, sans-serif;font-weight: bold;}
|
|
||||||
h2{color:#666666; font-family:Geneva, Arial, Helvetica, sans-serif;font-size:small;}
|
|
||||||
p {font-family:Arial,Helvetica,sans-serif;}
|
|
||||||
'''
|
|
||||||
feeds = [
|
|
||||||
(u'Articulos', u'http://ladiaria.com/feeds/articulos')
|
|
||||||
]
|
|
||||||
|
|
||||||
def get_cover_url(self):
|
|
||||||
return 'http://ladiaria.com/edicion/imagenportada/'
|
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
|
||||||
for item in soup.findAll(style=True):
|
|
||||||
del item['style']
|
|
||||||
return soup
|
|
@ -1,37 +1,47 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Title: lr21.com.uy News, Sports, and Blog Calibre Recipe
|
||||||
|
## Contact: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## License: GNU General Public License v3 - http://www.gnu.org/copyleft/gpl.html
|
||||||
|
## Copyright: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## Written: January 2016
|
||||||
|
## Last Edited: 2016-01-11
|
||||||
|
##
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'
|
__author__ = '2016, Carlos Alves <carlos@carlosalves.info>'
|
||||||
|
|
||||||
'''
|
'''
|
||||||
unoticias.com.uy
|
lr21.com.uy
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
class General(BasicNewsRecipe):
|
class General(BasicNewsRecipe):
|
||||||
title = 'UNoticias'
|
title = 'LaRed21'
|
||||||
__author__ = 'Carlos Alves'
|
__author__ = 'Carlos Alves'
|
||||||
description = 'Noticias Uruguay'
|
description = 'LaRed21 Diario Digital'
|
||||||
tags = 'news, sports, politics'
|
tags = 'soccer, futbol, news'
|
||||||
language = 'es_UY'
|
language = 'es_UY'
|
||||||
timefmt = '[%a, %d %b, %Y]'
|
timefmt = '[%a, %d %b, %Y]'
|
||||||
use_embedded_content = False
|
use_embedded_content = False
|
||||||
recursion = 5
|
recursion = 5
|
||||||
encoding = 'ISO-8859-1'
|
encoding = None
|
||||||
remove_javascript = True
|
remove_javascript = True
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
|
|
||||||
oldest_article = 2
|
oldest_article = 10
|
||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
keep_only_tags = [
|
keep_only_tags = [
|
||||||
dict(name='h1', attrs={'class':'nombre'}),
|
dict(name='h1', attrs={'id':'article-title'}),
|
||||||
dict(name='h2', attrs={'class':'copete t20'}),
|
dict(name='h2', attrs={'class':'copete'}),
|
||||||
dict(name='div', attrs={'class':'desc'})
|
dict(name='div', attrs={'class':'article-content clear bottom-1'})
|
||||||
]
|
]
|
||||||
|
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name='div', attrs={'class':['br', 'hr', 'titlebar', 'navigation']}),
|
dict(name='div', attrs={'class':['br', 'hr', 'titlebar', 'navigation']}),
|
||||||
dict(name='div', attrs={'id':'comment'}),
|
dict(name='dl', attrs={'class':'gallery-item'}),
|
||||||
dict(name=['object','link'])
|
dict(name=['object','link'])
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -42,13 +52,11 @@ class General(BasicNewsRecipe):
|
|||||||
p {font-family:Arial,Helvetica,sans-serif;}
|
p {font-family:Arial,Helvetica,sans-serif;}
|
||||||
'''
|
'''
|
||||||
feeds = [
|
feeds = [
|
||||||
(u'Nacionales', u'http://www.unoticias.com.uy/RSS/nacionales.xml'),
|
(u'LaRed21 Diario Digital', u'http://www.lr21.com.uy/feed')
|
||||||
(u'Deportes', u'http://www.unoticias.com.uy/RSS/deportes.xml'),
|
|
||||||
(u'Sociedad', u'http://www.unoticias.com.uy/RSS/Sociedad.xml')
|
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_cover_url(self):
|
def get_cover_url(self):
|
||||||
return 'http://www.unoticias.com.uy/artworks/logos/logo_small.gif'
|
pass
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
def preprocess_html(self, soup):
|
||||||
for item in soup.findAll(style=True):
|
for item in soup.findAll(style=True):
|
@ -1,7 +1,17 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
##
|
||||||
|
## Title: Padreydecano.com News, Sports, and Blog Calibre Recipe
|
||||||
|
## Contact: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## License: GNU General Public License v3 - http://www.gnu.org/copyleft/gpl.html
|
||||||
|
## Copyright: Carlos Alves - <carlos@carlosalves.info>
|
||||||
|
##
|
||||||
|
## Written: September 2013
|
||||||
|
## Last Edited: 2016-01-11
|
||||||
|
##
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = '2013, Carlos Alves <carlosalves90@gmail.com>'
|
__author__ = '2016, Carlos Alves <carlos@carlosalves.info>'
|
||||||
|
|
||||||
'''
|
'''
|
||||||
padreydecano.com
|
padreydecano.com
|
||||||
'''
|
'''
|
||||||
@ -21,7 +31,7 @@ class General(BasicNewsRecipe):
|
|||||||
remove_javascript = True
|
remove_javascript = True
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
|
|
||||||
oldest_article = 2
|
oldest_article = 10
|
||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
keep_only_tags = [
|
keep_only_tags = [
|
||||||
dict(name='h1', attrs={'class':'entry-title'}),
|
dict(name='h1', attrs={'class':'entry-title'}),
|
||||||
@ -44,6 +54,9 @@ class General(BasicNewsRecipe):
|
|||||||
(u'Padre y Decano | Club Atlético Peñarol', u'http://www.padreydecano.com/cms/feed/')
|
(u'Padre y Decano | Club Atlético Peñarol', u'http://www.padreydecano.com/cms/feed/')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
def get_cover_url(self):
|
||||||
|
return 'http://www.padreydecano.com/cms/wp-content/uploads/2011/09/editorial.jpg'
|
||||||
|
|
||||||
def preprocess_html(self, soup):
|
def preprocess_html(self, soup):
|
||||||
for item in soup.findAll(style=True):
|
for item in soup.findAll(style=True):
|
||||||
del item['style']
|
del item['style']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user