/*var package = { "name": "MobileTerminal", "latest": "286u-5", "author": { "name": "Allen Porter", "address": "allen.porter@gmail.com" }, "description": "this is a sample description", "homepage": "http://cydia.saurik.com/terminal.html", "installed": "286u-4", "id": "mobileterminal", "section": "Terminal Support", "size": 552*1024, "maintainer": { "name": "Jay Freeman", "address": "saurik@saurik.com" }, "source": { "name": "Telesphoreo Tangelo" } };*/ $(function () { var id = package.id; var name = package.name; var regarding = encodeURIComponent("Cydia/APT: " + name); $("#name").html(name); $("#latest").html(package.latest); var author = package.author; if (author == null) $(".author").remove(); else { $("#author").html(author.name); $("#author-link").href("mailto:" + author.address + "?subject=" + regarding); } var description = package.description; if (description == null) description = package.tagline; else description = description.replace(/\n/g, "
"); $("#description").html(description); var homepage = package.homepage; if (homepage == null) $(".homepage").remove(); else $("#homepage-link").href(homepage); var installed = package.installed; if (installed == null) $(".installed").remove(); else { $("#installed").html(installed); $("#files-link").href("cydia://files/" + id); } $("#id").html(id); var section = package.section; if (section == null) $(".section").remove(); else $("#section").html(package.section); var size = package.size; if (size == 0) $(".size").remove(); else $("#size").html(size / 1024 + " kB"); var maintainer = package.maintainer; if (maintainer == null) $(".maintainer").remove(); else { $("#maintainer").html(maintainer.name); $("#maintainer-link").href("mailto:" + maintainer.address + "?subject=" + regarding); } var source = package.source; if (source == null) $(".source").remove(); else $("#origin").html(source.name); });