Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def search(self, text):
#
# Update this each time you make a non-cosmetic change.
# It will be added to the WARC files and reported to the tracker.
VERSION = '20241119.01'
VERSION = '20241127.01'
USER_AGENT = 'Archive Team'
TRACKER_ID = 'mediafire'
TRACKER_HOST = 'legacy-api.arpa.li'
Expand Down Expand Up @@ -235,7 +235,7 @@ def realize(self, item):
title = 'mediafire',
project_html = '''
<img class="project-logo" alt="logo" src="https://archiveteam.org/images/thumb/8/8b/Mediafire-icon.png/320px-Mediafire-icon.png" height="50px"/>
<h2>mediafire.com <span class="links"><a href="https://mediafire.com/">Website</a> &middot; <a href="http://tracker.archiveteam.org/mediafire/">Leaderboard</a></span></h2>
<h2>mediafire.com <span class="links"><a href="https://mediafire.com/">Website</a> &middot; <a href="https://tracker.archiveteam.org/mediafire/">Leaderboard</a></span></h2>
'''
)

Expand Down Expand Up @@ -270,7 +270,7 @@ def realize(self, item):
name='shared:rsync_threads', title='Rsync threads',
description='The maximum number of concurrent uploads.'),
UploadWithTracker(
'http://%s/%s' % (TRACKER_HOST, TRACKER_ID),
'https://%s/%s' % (TRACKER_HOST, TRACKER_ID),
downloader=downloader,
version=VERSION,
files=[
Expand All @@ -287,7 +287,7 @@ def realize(self, item):
),
),
SendDoneToTracker(
tracker_url='http://%s/%s' % (TRACKER_HOST, TRACKER_ID),
tracker_url='https://%s/%s' % (TRACKER_HOST, TRACKER_ID),
stats=ItemValue('stats')
)
)