Wild Stray
Wild Stray
Some useful documentation about Brightcove APIs: http://docs.brightcove.com/en/video-cloud/smart-player-api/references/symbols/brightcove.api.BrightcoveExperience.html http://support.brightcove.com/en/video-cloud/docs/dynamically-loading-player-using-javascript
It seems that is sufficient to add < param name="forceHTML" value="true" / > to the < object > block (always inside a < div class="BrightcoveExperience" > block ) to force...
It might be sufficient to add a plugin for Brightcove with this code: var node = document.createElement("param"); node.setAttribute("name", "forceHTML"); node.setAttribute("value", "true"); var container = document.getElementsByClassName("BrightcoveExperience"); if (container.length > 0) {...
Just solved the console issue deleting all records of **instance_instance** table of /opt/webvirtmgr/webvirtmgr.sqlite3 ``` echo "delete from instance_instance;" | sqlite3 /opt/webvirtmgr/webvirtmgr.sqlite3 ``` Now all server console connects (but it isn't...
...using request.session instead of request._get_cookies and response.cookie might be a solution?
A little patch (far from beeing perfect... eg. CPU usage for guest seems to be always 0 also if there is load...) ``` --- /opt/webvirtmgr.old/instance/views.py 2015-11-27 08:36:15.000000000 +0100 +++ /opt/webvirtmgr/instance/views.py...
``` --- /opt/webvirtmgr.old/console/webvirtmgr-console 2016-01-14 12:39:28.887877598 +0100 +++ /opt/webvirtmgr/console/webvirtmgr-console 2016-01-13 02:05:01.018446547 +0100 @@ -16,6 +16,9 @@ # if VENV_PATH not in sys.path: # sys.path.append(VENV_PATH) +import django +django.setup() + import Cookie import...
Yes, the icon remains giant also after reboot. (anyway I cannot test anymore at the momento: updated to Lollipop and waiting for a compatible version of Xposed)