Abre /usr/share/software-center/softwarecenter/backend/scagent.py
y edita el comienzo de esta función, para que diga:
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
Puedes dejar el resto como está, nunca se alcanzará.
Si desea soporte de scripting en su <iframe>
, edite
/usr/share/software-center/softwarecenter/ui/gtk3/widgets/exhibits.py
y encontrar settings.set_property("enable-scripts", False)
. Cambiar False
a True
.
Ahora hazlo /var/www/cgi-bin/bannerlist.py
y hazlo ejecutable:
#!/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
}
]))
Esto demuestra una lista de pancartas generada.
Ahora hazlo /var/www/cgi-bin/banner.py
y hazlo ejecutable:
#!/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>
""")
Esto demuestra un banner generado.
Es posible que deba borrar la memoria caché del centro de software. Puedes hacerlo usando rm -rf ~/.cache/software-center
.
Obviamente, necesitas poner algo /tmp/test.html
para que el primer banner funcione.
También necesita un servidor web que funcione a 8800 con un cgi-bin
para que esto funcione. Si no tienes esto, ejecuta esto en 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()"
Necesitas diseñar el estilo iframe
para que llene el espacio, pero lo descubriste.
Unable to load page - Problem occurred while loading the URL http:localhost:8800cgi-binbanner.py
(lo mismo para la versión local en/tmp
). La versión anterior funcionaba, pero ahora parece eliminar las barras diagonales en alguna parte. Las exhibiciones están reunidas OK, y puedo imprimir el contenido HTML en la consola y las barras están allí, ¡pero en la aplicación faltan! ¿Qué podría estar pasando?curl
en la consola. Creo que solo elimina las barras en el mensaje de error.