/usr/share/software-center/softwarecenter/backend/scagent.py
이 함수의 시작 부분을 열고 편집하십시오.
def query_exhibits(self):
import urllib, json
class Obj:
def __init__(self, obj):
self.obj = obj
def __getattr__(self, name):
if name[:2] == "__": return object.__getattr__(self, name)
return self.obj[name]
self.emit("exhibits", [Obj(x) for x in json.loads(urllib.urlopen("http://localhost:8800/cgi-bin/bannerlist.py").read())])
return
나머지는 그대로 둘 수 있으며 도달하지 않습니다.
당신은 당신의 스크립트를 지원하려면 <iframe>
, 편집
/usr/share/software-center/softwarecenter/ui/gtk3/widgets/exhibits.py
를 찾으십시오 settings.set_property("enable-scripts", False)
. 변경 False
에 True
.
이제 만들고 /var/www/cgi-bin/bannerlist.py
실행 가능하게 만드십시오.
#!/usr/bin/env python
import json
print("Content-type: application/json\n")
print(json.dumps([
{
"html": "<iframe src='file:/tmp/test.html'></iframe>",
"title_translated": "Hey dawg",
"click_url": "http://4chan.org",
"package_names": ("gimp"),
"banner_urls": ["file:/"],
"published": True
},
{
"html": "<iframe src='http://localhost:8800/cgi-bin/banner.py'></iframe>",
"title_translated": "Hey dawg",
"click_url": "http://4chan.org",
"package_names": ("gimp"),
"banner_urls": ["file:/"],
"published": True
}
]))
생성 된 배너 목록을 보여줍니다.
이제 만들고 /var/www/cgi-bin/banner.py
실행 가능하게 만드십시오.
#!/usr/bin/env python3
import time
print("Content-type: image/svg+xml\n")
print("""
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<rect width="300" height="100"
style="fill:rgba(0,0,255,0.5);stroke-width:1;stroke:rgba(0,0,0,0.5)"/>
<text x="0" y="25" fill="black">Time is """ + str(time.time()) + """</text>
</svg>
""")
생성 된 배너를 보여줍니다.
소프트웨어 센터 캐시를 지워야 할 수도 있습니다. 을 사용하여 그렇게 할 수 있습니다 rm -rf ~/.cache/software-center
.
/tmp/test.html
첫 번째 배너가 작동하려면 무언가를 넣어야 합니다.
이 기능을 사용하려면 8800에서 실행되는 웹 서버가 필요합니다 cgi-bin
. 이것을 가지고 있지 않으면 Bash에서 이것을 실행하십시오.
cd /var/www
python -c "import BaseHTTPServer as h, CGIHTTPServer as c;
i = c.CGIHTTPRequestHandler;
i.cgi_directories = ['/cgi-bin'];
h.HTTPServer(('', 8800),i).serve_forever()"
iframe
공간을 채우 려면 스타일을 지정해야 하지만, 알아 내야합니다.