qedproject 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/qedproject +0 -0
- data/lib/qedproject/libraries/ember.rb +27 -0
- data/lib/qedproject/libraries/jquerymobile.rb +2 -2
- data/lib/qedproject/version.rb +1 -1
- data/lib/qedproject.rb +2 -2
- data/templates/suite.html +8 -1
- data/vendor/ember/app.js +7 -0
- data/vendor/ember/apple-touch-icon-114x114-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-57x57-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-72x72-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon.png +0 -0
- data/vendor/ember/ember-0.9.js +14745 -0
- data/vendor/ember/favicon.ico +0 -0
- data/vendor/ember/style.css +141 -0
- data/vendor/ember/templates/index.html +57 -0
- data/vendor/jquerymobile/ajax-loader.png +0 -0
- data/vendor/jquerymobile/icons-18-black.png +0 -0
- data/vendor/jquerymobile/icons-18-white.png +0 -0
- data/vendor/jquerymobile/icons-36-black.png +0 -0
- data/vendor/jquerymobile/icons-36-white.png +0 -0
- data/vendor/jquerymobile/{jquery.mobile-1.0rc2.css → jquery.mobile-1.0.css} +250 -295
- data/vendor/jquerymobile/{jquery.mobile-1.0rc2.js → jquery.mobile-1.0.js} +456 -319
- metadata +19 -13
- data/lib/qedproject/libraries/jquerytmpl.rb +0 -10
- data/vendor/jquerytmpl/VERSION +0 -1
- data/vendor/jquerytmpl/jquery.tmpl.min.js +0 -10
Binary file
|
@@ -0,0 +1,141 @@
|
|
1
|
+
|
2
|
+
/* ==== Scroll down to find where to put your styles :) ==== */
|
3
|
+
|
4
|
+
/* HTML5 ✰ Boilerplate */
|
5
|
+
|
6
|
+
html, body, div, span, object, iframe,
|
7
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
8
|
+
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
|
9
|
+
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
|
10
|
+
fieldset, form, label, legend,
|
11
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
12
|
+
article, aside, canvas, details, figcaption, figure,
|
13
|
+
footer, header, hgroup, menu, nav, section, summary,
|
14
|
+
time, mark, audio, video {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
font-size: 100%;
|
19
|
+
font: inherit;
|
20
|
+
vertical-align: baseline;
|
21
|
+
}
|
22
|
+
|
23
|
+
article, aside, details, figcaption, figure,
|
24
|
+
footer, header, hgroup, menu, nav, section {
|
25
|
+
display: block;
|
26
|
+
}
|
27
|
+
|
28
|
+
blockquote, q { quotes: none; }
|
29
|
+
blockquote:before, blockquote:after,
|
30
|
+
q:before, q:after { content: ''; content: none; }
|
31
|
+
ins { background-color: #ff9; color: #000; text-decoration: none; }
|
32
|
+
mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
|
33
|
+
del { text-decoration: line-through; }
|
34
|
+
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
|
35
|
+
table { border-collapse: collapse; border-spacing: 0; }
|
36
|
+
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
|
37
|
+
input, select { vertical-align: middle; }
|
38
|
+
|
39
|
+
body { font:13px/1.231 sans-serif; *font-size:small; }
|
40
|
+
select, input, textarea, button { font:99% sans-serif; }
|
41
|
+
pre, code, kbd, samp { font-family: monospace, sans-serif; }
|
42
|
+
|
43
|
+
html { overflow-y: scroll; }
|
44
|
+
a:hover, a:active { outline: none; }
|
45
|
+
ul, ol { margin-left: 2em; }
|
46
|
+
ol { list-style-type: decimal; }
|
47
|
+
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }
|
48
|
+
small { font-size: 85%; }
|
49
|
+
strong, th { font-weight: bold; }
|
50
|
+
td { vertical-align: top; }
|
51
|
+
|
52
|
+
sub, sup { font-size: 75%; line-height: 0; position: relative; }
|
53
|
+
sup { top: -0.5em; }
|
54
|
+
sub { bottom: -0.25em; }
|
55
|
+
|
56
|
+
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 15px; }
|
57
|
+
textarea { overflow: auto; }
|
58
|
+
.ie6 legend, .ie7 legend { margin-left: -7px; }
|
59
|
+
input[type="radio"] { vertical-align: text-bottom; }
|
60
|
+
input[type="checkbox"] { vertical-align: bottom; }
|
61
|
+
.ie7 input[type="checkbox"] { vertical-align: baseline; }
|
62
|
+
.ie6 input { vertical-align: text-bottom; }
|
63
|
+
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }
|
64
|
+
button, input, select, textarea { margin: 0; }
|
65
|
+
input:valid, textarea:valid { }
|
66
|
+
input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; }
|
67
|
+
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }
|
68
|
+
|
69
|
+
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
|
70
|
+
::selection { background:#FF5E99; color:#fff; text-shadow: none; }
|
71
|
+
a:link { -webkit-tap-highlight-color: #FF5E99; }
|
72
|
+
|
73
|
+
button { width: auto; overflow: visible; }
|
74
|
+
.ie7 img { -ms-interpolation-mode: bicubic; }
|
75
|
+
|
76
|
+
body, select, input, textarea { color: #444; }
|
77
|
+
h1, h2, h3, h4, h5, h6 { font-weight: bold; }
|
78
|
+
a, a:active, a:visited { color: #607890; }
|
79
|
+
a:hover { color: #036; }
|
80
|
+
|
81
|
+
/*
|
82
|
+
// ========================================== \\
|
83
|
+
|| ||
|
84
|
+
|| Your styles ! ||
|
85
|
+
|| ||
|
86
|
+
\\ ========================================== //
|
87
|
+
*/
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
|
104
|
+
.hidden { display: none; visibility: hidden; }
|
105
|
+
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
|
106
|
+
.visuallyhidden.focusable:active,
|
107
|
+
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
|
108
|
+
.invisible { visibility: hidden; }
|
109
|
+
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
|
110
|
+
.clearfix:after { clear: both; }
|
111
|
+
.clearfix { zoom: 1; }
|
112
|
+
|
113
|
+
|
114
|
+
@media all and (orientation:portrait) {
|
115
|
+
|
116
|
+
}
|
117
|
+
|
118
|
+
@media all and (orientation:landscape) {
|
119
|
+
|
120
|
+
}
|
121
|
+
|
122
|
+
@media screen and (max-device-width: 480px) {
|
123
|
+
|
124
|
+
/* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
@media print {
|
129
|
+
* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
|
130
|
+
-ms-filter: none !important; }
|
131
|
+
a, a:visited { color: #444 !important; text-decoration: underline; }
|
132
|
+
a[href]:after { content: " (" attr(href) ")"; }
|
133
|
+
abbr[title]:after { content: " (" attr(title) ")"; }
|
134
|
+
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
|
135
|
+
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
|
136
|
+
thead { display: table-header-group; }
|
137
|
+
tr, img { page-break-inside: avoid; }
|
138
|
+
@page { margin: 0.5cm; }
|
139
|
+
p, h2, h3 { orphans: 3; widows: 3; }
|
140
|
+
h2, h3{ page-break-after: avoid; }
|
141
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]--> <!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]--> <!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]--> <!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
|
3
|
+
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
7
|
+
|
8
|
+
<title></title>
|
9
|
+
<meta name="description" content="">
|
10
|
+
<meta name="author" content="">
|
11
|
+
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
13
|
+
|
14
|
+
<link rel="shortcut icon" href="images/favicon.ico">
|
15
|
+
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
|
16
|
+
|
17
|
+
<% if @project.jammit -%>
|
18
|
+
<link rel="stylesheet" href="assets/app.css">
|
19
|
+
<% else -%>
|
20
|
+
<link rel="stylesheet" href="stylesheets/style.css">
|
21
|
+
<% end -%>
|
22
|
+
<!--[if lt IE 9]>
|
23
|
+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
24
|
+
<![endif]-->
|
25
|
+
|
26
|
+
<script type="text/javascript">
|
27
|
+
|
28
|
+
var _gaq = _gaq || [];
|
29
|
+
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
|
30
|
+
_gaq.push(['_trackPageview']);
|
31
|
+
|
32
|
+
(function() {
|
33
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
34
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
35
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
36
|
+
})();
|
37
|
+
|
38
|
+
</script>
|
39
|
+
|
40
|
+
|
41
|
+
</head>
|
42
|
+
<body>
|
43
|
+
|
44
|
+
<h1>My Ember Project</h1>
|
45
|
+
|
46
|
+
|
47
|
+
<% if @project.jammit -%>
|
48
|
+
<script src="assets/app.js"></script>
|
49
|
+
<% else -%>
|
50
|
+
<% @project.js_assets.each do |js| -%>
|
51
|
+
<script src="javascripts/<%=js %>"></script>
|
52
|
+
<% end -%>
|
53
|
+
<% end -%>
|
54
|
+
|
55
|
+
</body>
|
56
|
+
</html>
|
57
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|