Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/76ccd5c965109019b9f5a6f7505b775aca9c6821 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Add bin file attribute

pull/123/head
Hieromon Ikasamo 6 years ago
parent 1766a99906
commit 76ccd5c965
  1. 9
      src/updateserver/updateserver.py

@ -10,9 +10,9 @@ import json
import logging
import os
import re
import time
import urllib.parse
class UpdateHttpServer:
def __init__(self, port, bind, catalog_dir):
def handler(*args):
@ -120,8 +120,9 @@ def dir_json(path):
else:
e['type'] = "file"
if os.path.splitext(entry)[1] == '.bin':
fn = os.path.join(path, entry)
try:
f = open(os.path.join(path, entry), 'rb')
f = open(fn, 'rb')
c = f.read(1)
f.close()
except Exception as e:
@ -129,6 +130,10 @@ def dir_json(path):
c = b'\x00'
if c == b'\xe9':
e['type'] = "bin"
mtime = os.path.getmtime(fn);
e['date'] = time.strftime('%x', time.localtime(mtime))
e['time'] = time.strftime('%X', time.localtime(mtime))
e['size'] = os.path.getsize(fn)
d.append(e)
return d

Loading…
Cancel
Save