mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
A basic 'latest apps' widget'
This commit is contained in:
parent
771fe181f1
commit
ae25a82f2f
3 changed files with 27 additions and 3 deletions
18
update.py
18
update.py
|
@ -469,7 +469,7 @@ if repo_keyalias != None:
|
|||
iconfilename = os.path.join(icon_dir, os.path.basename(repo_icon))
|
||||
shutil.copyfile(repo_icon, iconfilename)
|
||||
|
||||
#Update known apks info...
|
||||
# Update known apks info...
|
||||
knownapks = common.KnownApks()
|
||||
for apk in apks:
|
||||
knownapks.recordapk(apk['apkname'], apk['id'])
|
||||
|
@ -501,6 +501,22 @@ for apk in apks:
|
|||
|
||||
knownapks.writeifchanged()
|
||||
|
||||
# Generate latest apps HTML for widget
|
||||
html = '<p>'
|
||||
for line in file(os.path.join('stats', 'latestapps.txt')):
|
||||
appid = line.rstrip()
|
||||
html += '<a href="/repository/browse/?fdid=' + appid + '">'
|
||||
for app in apps:
|
||||
if app['id'] == appid:
|
||||
html += app['Name'] + '</a><br>'
|
||||
break
|
||||
html += '</p>'
|
||||
f = open('repo/latestapps.html', 'w')
|
||||
f.write(html)
|
||||
f.close()
|
||||
|
||||
|
||||
|
||||
print "Finished."
|
||||
print str(apps_inrepo) + " apps in repo"
|
||||
print str(apps_disabled) + " disabled"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue