-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathdemos.php
222 lines (198 loc) · 7.72 KB
/
demos.php
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!doctype html>
<html class="dj_webkit dj_chrome dj_contentbox">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The Dojo Toolkit - Demos Index</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Demo for The Dojo Toolkit, dojo, JavaScript Framework" />
<meta name="description" content="The Dojo Toolkit Demo Index" />
<meta name="author" content="JS Foundation" />
<meta name="copyright" content="Copyright 2006-2016 by the JS Foundation" />
<meta name="company" content="JS Foundation" />
<link rel="shortcut icon" href="http://dojotoolkit.org/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="resources/demos.css" type="text/css" media="all" />
<![if gte IE 9]>
<link rel="stylesheet" href="resources/desktop.css" type="text/css"/>
<link rel="stylesheet" href="resources/phone.css" type="text/css" media="only screen and (min-device-width: 320px) and (max-device-width: 480px)"/>
<link rel="stylesheet" href="resources/phone.css" type="text/css" media="only screen and (-webkit-device-pixel-ratio:1.5)"/>
<link rel="stylesheet" href="resources/vtablet.css" type="text/css" media="only screen and (min-device-width: 481px) and (max-device-width: 799px) and (orientation: portrait)"/>
<link rel="stylesheet" href="resources/htablet.css" type="text/css" media="only screen and (min-device-width: 481px) and (max-device-width: 799px) and (orientation: landscape)"/>
<link rel="stylesheet" href="resources/desktop.css" type="text/css" media="(min-device-width: 800px) and (-webkit-device-pixel-ratio:1)" />
<![endif]>
<!--[if lte IE 8]>
<link rel="stylesheet" href="resources/ie.css" type="text/css" media="all" />
<![endif]-->
</head>
<body>
<div class="accessibility">
<a href="#intro">Skip to Content</a>
|
<a href="#nav">Skip to Navigation</a>
</div>
<hr class="hide" />
<div id="page" class="demosPage">
<div id="header">
<div class="container">
<span id="logo"><a href="http://dojotoolkit.org/" title="Home"><img src="http://dojotoolkit.org/images/logo.png" alt="Dojo Toolkit" /></a></span>
<ul id="navigation">
<li class="home"><a href="http://dojotoolkit.org/"><span class="homeIcon"></span></a></li>
<li class="download"><a href="http://dojotoolkit.org/download">Download</a></li>
<li class="features"><a href="http://dojotoolkit.org/features/">Features</a></li>
<li class="demos"><a href="http://demos.dojotoolkit.org/demos/">Demos</a></li>
<li class="docs"><a href="http://dojotoolkit.org/documentation">Documentation</a></li>
<li class="community"><a href="http://dojotoolkit.org/community">Community</a></li>
<li class="blog"><a href="http://dojotoolkit.org/blog">Blog</a></li>
</ul>
</div>
</div>
<hr class="hide" />
<div id="intro">
<div class="innerBox">
<h1>Demo Index</h1>
<!-- end content header -->
<?php
// holder for all the items
$out = array();
$show = false;
if(!empty($_GET["cat"])){
$show = explode(",", $_GET["cat"]);
}
// load the demos described in the resources/ folder that we link but don't ship
if(file_exists("resources/ext_demos.json")){
$ext = json_decode(file_get_contents("resources/ext_demos.json"));
// is there no better obj->array thing I can do here?
foreach($ext->external as $e){
$out[] = array(
"demo" => $e->demo,
"link" => $e->link,
"img" => $e->img,
"rank" => $e->rank,
"header" => $e->header,
"categories" => explode(',', $e->categories)
);
}
}
$exclude = array("resources", ".", "..", ".svn");
$files = scandir("./");
foreach($files as $demo){
if(is_dir($demo) && !in_array($demo, $exclude)){
// setup some item information
$title = $demo;
$rank = 500;
$base = $demo . "/";
$link = $base . "demo.html";
$categories = array("rich");
$readme = $base . "README";
if(file_exists($readme)){
// the second line of the README is the title
$l = file($readme);
$title = $l[1];
// demos with README's are better than those without.
$rank++;
// the last line of the README is supposed to be tags etc
//
// so far only @rank:### is used, but can be any @key:value pair on one line
// to be used here for organization etc
$tagline = $l[count($l)-1];
preg_match_all("/@(\w+):([\-a-zA-Z0-9,]+)\ ?/", $tagline, $matches);
if(is_array($matches[1]) && is_array($matches[2])){
$tags = array_combine($matches[1], $matches[2]);
}else{
$tags = array();
}
switch($tags['rank']){
// marked experimental
case -999 : $rank = 0; $categories = array("exp"); break;
// add the README rank to the overall score
default: $rank += $tags['rank']; break;
}
if(array_key_exists('categories', $tags)){
$categories = explode(',', $tags['categories']);
}
// with a thumbnail, they are higher ranked too
$thumb_img = "resources/images/" . $demo . ".png";
if(file_exists($thumb_img)){
$rank += 20;
}else{
$thumb_img = "resources/images/no_thumb.gif"; // generic dojo img
}
}else{
// experimental demos:
$rank = 0;
$categories = array("exp");
$thumb_img = false;
}
// push this item
$out[] = array(
"demo" => $demo,
"header" => $title,
"link" => $link,
"rank" => $rank,
"img" => $thumb_img,
"categories" => $categories
);
}
}
// sort the out array by the ranks key
foreach ($out as $key => $row) {
$ranks[$key] = $row['rank'];
$d[$key] = $row;
}
array_multisort($ranks, SORT_DESC, $d, SORT_ASC, $out);
function makeList($out, $show, $cat, $title, $type) {
if(empty($show) || in_array($cat, $show)){
print "<h2>$title</h2>";
// generate the list:
print "<ul id='$type'>";
foreach($out as $ranked){
if(in_array($cat, $ranked['categories'])){
// generate the demo item
print "\n\t<li><a href='".$ranked['link']."'>";
print "<span>";
// split the title in two parts around the first hyphen
// some experimental demos do not have header
if(strpos($ranked['header'], "-")){
list($anchor, $desc) = explode("-", $ranked['header'], 2);
print $anchor;
if($desc){
print "<span>" .$desc. "</span>";
}
}else{
print $ranked['header'];
}
print "</span>";
if($ranked['img']){
print "<img src='". $ranked['img'] . "' />";
}
print "</a></li>";
}
}
print "</ul>";
}
}
makeList($out, $show, "graphics", "Graphics & Charting", "mainlist");
makeList($out, $show, "mobile", "Mobile", "mainlist");
makeList($out, $show, "rich", "Rich WebApps", "mainlist");
makeList($out, $show, "external", "3rd Party Demos", "mainlist");
makeList($out, $show, "exp", "Incomplete / Partial Demos:", "explist");
?>
<!--
basic page onload script after dojo.js [if available] - degrades gracefullly
though none of the demos will "work" without JavaScript enabled / dojo.js
-->
<!-- begin footer -->
</div>
</div>
<div id="main">
<div id="content" class="innerBox">
<div id="foot">
<div class="innerBox">
<span class="redundant">©</span> <a href="http://js.foundation">The JS Foundation</a>, All Rights Reserved.
</div>
</div>
</div>
</div>
<hr class="hide" />
</div>
</body>
</html>