1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Changelog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.querystring.js"></script>
<script type="text/javascript" src="js/data-loader-engine.js"></script>
<script type="text/javascript" src="js/ios_version_check.js"></script>
<style>
@media (max-width: 767px) {
body{background:#efeff4!important;margin:0;padding:0;border:0;outline:0;box-sizing:border-box}
}
</style>
<script type="text/javascript">
bundleid = $.QueryString['p'];
var contentBlocks = {
"#changeLogList" :
{"type":"articles"
,"source" :"changelog"
,"titleSource" :"version"
,"paragraphSource" :"change"
,"titleElement" : "<h5>"
,"paragraphContainer": "<ul class='list-group'>"
,"paragraphElement" : "<li class='list-group-item'>"
}
}
$( document ).ready(function() {
$.ajax({
type : "GET",
dataType: "xml",
url : (bundleid+"/changelog.xml"),
success : function(xml){
data_loader_engine(contentBlocks,xml)
},
cache : false,
error: function() {
$("#packageError").show();
$("#packageInformation").hide();
}
}); //ajax
}); // ready
</script>
</head>
<body>
<br />
<div id="packageInformation">
<div class="container" id="changeLogList">
</div>
</div>
<div id="packageError" style="display:none">
<div class="container">
<div class="alert alert-danger">
<strong>Oh snap!</strong> The package you are tying to view is not hosted on this repository.
</div>
</div>
</div>
<!-- REPO FOOTER -->
<script type="text/javascript">
var repoContents = {
"#repoFooterLinks" :
{"type":"custom"
,"source":"repo>footerlinks>link"
,"render":function(element,source) {
$.each(source, function(index,data) {
var a = $("<a class='link-item list-group-item'>");
a.attr("href",$(data).find('url').text());
if ($(data).find('iconclass')) {
var i = $("<span>")
i.attr("class",$(data).find('iconclass').text());
console.log(i);
$(a).append(i);
}
$(a).append($(data).find('name').text());
$(element).append(a);
}); //each
} //render
}
}
$( document ).ready(function() {
$.ajax({type: "GET", dataType: "xml",url : ("../repo.xml"),cache: false,
success : function(xml){
data_loader_engine(repoContents,xml);
if (navigator.userAgent.search(/Cydia/) != -1) {
$("a").each(function() {
console.log($(this).text());
$(this).attr("target","_blank");
});
}
},
error: function() {$("#contactInfo").hide()}
}); //ajax
}); // ready
</script>
<div id="contactInfo">
<div class="container">
<h5>CONTACT</h5>
<ul class="list-group" id="repoFooterLinks">
</ul>
</div>
</div>
<!-- REPO FOOTER ENDS -->
</body>
</html>
|