在我自己的服务器上托管Google App Engine应用

时间:2014-07-13 07:45:55

标签: python google-app-engine

以下可能吗?

我想托管处理网址收藏夹的应用,例如getFavicon。

网站:http://g.etfv.co来源:https://github.com/potatolondon/getfavicon

我上周通过电子邮件向创作者询问了这篇文章的标题,没有回复。我看到有很多Python涉及,只是将文件放在我的服务器上并没有做任何事情。

1 个答案:

答案 0 :(得分:0)

我发现类似于为node.JS编写的东西并在此处分叉:https://github.com/IdeasNeverCease/getFavicon

编辑:此代码符合我的原始请求,即无论URL如何加载favicon:

var getFavicon = function () {

    var favicon, _tabID = $(".tab.active").attr("data-tab");
    var nodeList = $("iframe" + _tabID).contents().find("link");

    for (var i = 0; i < nodeList.length; i++) {
        // get any type of icon
        if ((nodeList[i].getAttribute("rel") == "icon") || (nodeList[i].getAttribute("rel") == "shortcut icon") || (nodeList[i].getAttribute("rel") == "apple-touch-icon")) {
            favicon = nodeList[i].href; // get absolute path
        }
    }

    return favicon;

};