优化打包脚本; load方法支持http远程地址

master
yutent 2023-09-07 10:41:42 +08:00
parent c885d72b8f
commit d499991831
3 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
__pycache__ __pycache__
unpack
*.deb *.deb

View File

@ -7,6 +7,7 @@ if [ -d unpack ]; then
sudo rm -rf unpack sudo rm -rf unpack
fi fi
find usr -type d -name __pycache__ | xargs rm -rf
mkdir -p unpack/DEBIAN mkdir -p unpack/DEBIAN

View File

@ -125,6 +125,9 @@ class WebEngine(WebKit2.WebView):
def load(self, url = '/index.html'): def load(self, url = '/index.html'):
if url.startswith('http:') or url.startswith('https:'):
self.load_uri(url)
else:
if self.root is None: if self.root is None:
raise EnvironmentError('web root dir not set!') raise EnvironmentError('web root dir not set!')
else: else: