uzuuzu-core 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/uzuuzu-core/controller/view/error/404.rhtml +47 -47
- data/lib/uzuuzu-core/controller/view/error/500.rhtml +47 -47
- data/uzuuzu-core.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.5
|
|
@@ -8,16 +8,11 @@
|
|
|
8
8
|
<link rel="shortcut icon" href="/favicon.ico"/>
|
|
9
9
|
<!-- meta -->
|
|
10
10
|
<title><%= localize(:not_found) %></title>
|
|
11
|
-
<!-- css -->
|
|
12
|
-
<%= css 'css/kendo.common.min.css' %>
|
|
13
|
-
<%= css 'css/kendo.default.min.css' %>
|
|
14
|
-
<!-- css -->
|
|
15
11
|
<!-- script -->
|
|
16
|
-
<%= js 'js/jquery.min.js' %>
|
|
17
|
-
<%= js 'js/jquery.jrumble.1.3.min.js' %>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<!-- script -->
|
|
12
|
+
<%= js '/js/jquery.min.js' %>
|
|
13
|
+
<%= js '/js/jquery.jrumble.1.3.min.js' %>
|
|
14
|
+
<!--[if lt IE 9]><%= js 'http://html5shiv.googlecode.com/svn/trunk/html5.js' %><![endif]-->
|
|
15
|
+
<!-- script -->
|
|
21
16
|
<style type="text/css">
|
|
22
17
|
body {
|
|
23
18
|
margin: 0;
|
|
@@ -27,14 +22,6 @@
|
|
|
27
22
|
text-align: center;
|
|
28
23
|
background-color: #EEEEEE;
|
|
29
24
|
}
|
|
30
|
-
a.uzufactory {
|
|
31
|
-
display: inline-block;
|
|
32
|
-
background-image: url('http://www.uzuuzu.jp/img/uzufactory.png');
|
|
33
|
-
background-repeat: no-repeat;
|
|
34
|
-
background-color: transparent;
|
|
35
|
-
width: 159px;
|
|
36
|
-
height: 53px;
|
|
37
|
-
}
|
|
38
25
|
#wrapper {
|
|
39
26
|
text-align: center;
|
|
40
27
|
width: 100%;
|
|
@@ -51,17 +38,6 @@
|
|
|
51
38
|
height: 100px;
|
|
52
39
|
font-size: 13px;
|
|
53
40
|
background-color: #EEEEEE;
|
|
54
|
-
margin-top: 200px;
|
|
55
|
-
}
|
|
56
|
-
#footer div.buttons {
|
|
57
|
-
position: absolute;
|
|
58
|
-
left: 100px;
|
|
59
|
-
top: 0px;
|
|
60
|
-
}
|
|
61
|
-
#footer div.copyright {
|
|
62
|
-
position: absolute;
|
|
63
|
-
left: 100px;
|
|
64
|
-
bottom: 10px;
|
|
65
41
|
}
|
|
66
42
|
#footer div.powerdby {
|
|
67
43
|
position: absolute;
|
|
@@ -69,6 +45,19 @@
|
|
|
69
45
|
right: 100px;
|
|
70
46
|
bottom: 10px;
|
|
71
47
|
}
|
|
48
|
+
#footer div.powerdby a {
|
|
49
|
+
display: inline-block;
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
color: #555555;
|
|
52
|
+
background-image: url('http://www.uzuuzu.jp/favicon.png');
|
|
53
|
+
background-repeat: no-repeat;
|
|
54
|
+
background-color: transparent;
|
|
55
|
+
background-position-x: 90px;
|
|
56
|
+
background-size: contain;
|
|
57
|
+
width: 150px;
|
|
58
|
+
height: 32px;
|
|
59
|
+
padding-top: 16px;
|
|
60
|
+
}
|
|
72
61
|
#contents {
|
|
73
62
|
width: 980px;
|
|
74
63
|
margin: 0 auto;
|
|
@@ -90,28 +79,45 @@
|
|
|
90
79
|
padding: 24px 18px 18px 18px;
|
|
91
80
|
font-size: 14px;
|
|
92
81
|
}
|
|
82
|
+
.clearfix:after {
|
|
83
|
+
content: ".";
|
|
84
|
+
display: block;
|
|
85
|
+
clear: both;
|
|
86
|
+
height: 0;
|
|
87
|
+
visibility: hidden;
|
|
88
|
+
}
|
|
89
|
+
.clearfix {
|
|
90
|
+
min-height: 1px;
|
|
91
|
+
}
|
|
92
|
+
* html .clearfix {
|
|
93
|
+
height: 1px;
|
|
94
|
+
/*¥*//*/
|
|
95
|
+
height: auto;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
/**/
|
|
98
|
+
}
|
|
93
99
|
</style>
|
|
94
100
|
<script text="text/javascript">
|
|
95
|
-
|
|
101
|
+
<!--
|
|
96
102
|
// initialize
|
|
97
|
-
$(function(){
|
|
103
|
+
$(function() {
|
|
98
104
|
// use jrunble
|
|
99
105
|
$('a').jrumble({
|
|
100
|
-
x: 2,
|
|
101
|
-
y: 2,
|
|
102
|
-
rotation: 1,
|
|
103
|
-
speed: 15,
|
|
104
|
-
opacity: false,
|
|
105
|
-
opacityMin: 0.5
|
|
106
|
+
x : 2,
|
|
107
|
+
y : 2,
|
|
108
|
+
rotation : 1,
|
|
109
|
+
speed : 15,
|
|
110
|
+
opacity : false,
|
|
111
|
+
opacityMin : 0.5
|
|
106
112
|
});
|
|
107
|
-
|
|
108
|
-
$('a').hover(function(){
|
|
113
|
+
|
|
114
|
+
$('a').hover(function() {
|
|
109
115
|
$(this).trigger('startRumble');
|
|
110
|
-
}, function(){
|
|
116
|
+
}, function() {
|
|
111
117
|
$(this).trigger('stopRumble');
|
|
112
118
|
})
|
|
113
119
|
});
|
|
114
|
-
|
|
120
|
+
-->
|
|
115
121
|
</script>
|
|
116
122
|
</head>
|
|
117
123
|
<body>
|
|
@@ -125,14 +131,8 @@
|
|
|
125
131
|
</div>
|
|
126
132
|
<div class="clearFix"></div>
|
|
127
133
|
<div id="footer">
|
|
128
|
-
<div class="copyright">
|
|
129
|
-
<span>Copyright © 2011 uzufactory </span>
|
|
130
|
-
</div>
|
|
131
134
|
<div class="powerdby">
|
|
132
|
-
|
|
133
|
-
<br />
|
|
134
|
-
<a class="uzufactory" href="http://www.uzuuzu.jp/"> </a>
|
|
135
|
-
<img src="http://www.uzuuzu.jp/img/logo.png" height="60px"/>
|
|
135
|
+
<a href="http://www.uzuuzu.jp/page/oss/ruby_uzuuzu">powererd by</a>
|
|
136
136
|
</div>
|
|
137
137
|
</div>
|
|
138
138
|
</div>
|
|
@@ -8,16 +8,11 @@
|
|
|
8
8
|
<link rel="shortcut icon" href="/favicon.ico"/>
|
|
9
9
|
<!-- meta -->
|
|
10
10
|
<title><%= localize(:server_error) %></title>
|
|
11
|
-
<!-- css -->
|
|
12
|
-
<%= css 'css/kendo.common.min.css' %>
|
|
13
|
-
<%= css 'css/kendo.default.min.css' %>
|
|
14
|
-
<!-- css -->
|
|
15
11
|
<!-- script -->
|
|
16
|
-
<%= js 'js/jquery.min.js' %>
|
|
17
|
-
<%= js 'js/jquery.jrumble.1.3.min.js' %>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<!-- script -->
|
|
12
|
+
<%= js '/js/jquery.min.js' %>
|
|
13
|
+
<%= js '/js/jquery.jrumble.1.3.min.js' %>
|
|
14
|
+
<!--[if lt IE 9]><%= js 'http://html5shiv.googlecode.com/svn/trunk/html5.js' %><![endif]-->
|
|
15
|
+
<!-- script -->
|
|
21
16
|
<style type="text/css">
|
|
22
17
|
body {
|
|
23
18
|
margin: 0;
|
|
@@ -27,14 +22,6 @@
|
|
|
27
22
|
text-align: center;
|
|
28
23
|
background-color: #EEEEEE;
|
|
29
24
|
}
|
|
30
|
-
a.uzufactory {
|
|
31
|
-
display: inline-block;
|
|
32
|
-
background-image: url('http://www.uzuuzu.jp/img/uzufactory.png');
|
|
33
|
-
background-repeat: no-repeat;
|
|
34
|
-
background-color: transparent;
|
|
35
|
-
width: 159px;
|
|
36
|
-
height: 53px;
|
|
37
|
-
}
|
|
38
25
|
#wrapper {
|
|
39
26
|
text-align: center;
|
|
40
27
|
width: 100%;
|
|
@@ -51,17 +38,6 @@
|
|
|
51
38
|
height: 100px;
|
|
52
39
|
font-size: 13px;
|
|
53
40
|
background-color: #EEEEEE;
|
|
54
|
-
margin-top: 200px;
|
|
55
|
-
}
|
|
56
|
-
#footer div.buttons {
|
|
57
|
-
position: absolute;
|
|
58
|
-
left: 100px;
|
|
59
|
-
top: 0px;
|
|
60
|
-
}
|
|
61
|
-
#footer div.copyright {
|
|
62
|
-
position: absolute;
|
|
63
|
-
left: 100px;
|
|
64
|
-
bottom: 10px;
|
|
65
41
|
}
|
|
66
42
|
#footer div.powerdby {
|
|
67
43
|
position: absolute;
|
|
@@ -69,6 +45,19 @@
|
|
|
69
45
|
right: 100px;
|
|
70
46
|
bottom: 10px;
|
|
71
47
|
}
|
|
48
|
+
#footer div.powerdby a {
|
|
49
|
+
display: inline-block;
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
color: #555555;
|
|
52
|
+
background-image: url('http://www.uzuuzu.jp/favicon.png');
|
|
53
|
+
background-repeat: no-repeat;
|
|
54
|
+
background-color: transparent;
|
|
55
|
+
background-position-x: 90px;
|
|
56
|
+
background-size: contain;
|
|
57
|
+
width: 150px;
|
|
58
|
+
height: 32px;
|
|
59
|
+
padding-top: 16px;
|
|
60
|
+
}
|
|
72
61
|
#contents {
|
|
73
62
|
width: 980px;
|
|
74
63
|
margin: 0 auto;
|
|
@@ -90,28 +79,45 @@
|
|
|
90
79
|
padding: 24px 18px 18px 18px;
|
|
91
80
|
font-size: 14px;
|
|
92
81
|
}
|
|
82
|
+
.clearfix:after {
|
|
83
|
+
content: ".";
|
|
84
|
+
display: block;
|
|
85
|
+
clear: both;
|
|
86
|
+
height: 0;
|
|
87
|
+
visibility: hidden;
|
|
88
|
+
}
|
|
89
|
+
.clearfix {
|
|
90
|
+
min-height: 1px;
|
|
91
|
+
}
|
|
92
|
+
* html .clearfix {
|
|
93
|
+
height: 1px;
|
|
94
|
+
/*¥*//*/
|
|
95
|
+
height: auto;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
/**/
|
|
98
|
+
}
|
|
93
99
|
</style>
|
|
94
100
|
<script text="text/javascript">
|
|
95
|
-
|
|
101
|
+
<!--
|
|
96
102
|
// initialize
|
|
97
|
-
$(function(){
|
|
103
|
+
$(function() {
|
|
98
104
|
// use jrunble
|
|
99
105
|
$('a').jrumble({
|
|
100
|
-
x: 2,
|
|
101
|
-
y: 2,
|
|
102
|
-
rotation: 1,
|
|
103
|
-
speed: 15,
|
|
104
|
-
opacity: false,
|
|
105
|
-
opacityMin: 0.5
|
|
106
|
+
x : 2,
|
|
107
|
+
y : 2,
|
|
108
|
+
rotation : 1,
|
|
109
|
+
speed : 15,
|
|
110
|
+
opacity : false,
|
|
111
|
+
opacityMin : 0.5
|
|
106
112
|
});
|
|
107
|
-
|
|
108
|
-
$('a').hover(function(){
|
|
113
|
+
|
|
114
|
+
$('a').hover(function() {
|
|
109
115
|
$(this).trigger('startRumble');
|
|
110
|
-
}, function(){
|
|
116
|
+
}, function() {
|
|
111
117
|
$(this).trigger('stopRumble');
|
|
112
118
|
})
|
|
113
119
|
});
|
|
114
|
-
|
|
120
|
+
-->
|
|
115
121
|
</script>
|
|
116
122
|
</head>
|
|
117
123
|
<body>
|
|
@@ -125,14 +131,8 @@
|
|
|
125
131
|
</div>
|
|
126
132
|
<div class="clearFix"></div>
|
|
127
133
|
<div id="footer">
|
|
128
|
-
<div class="copyright">
|
|
129
|
-
<span>Copyright © 2011 uzufactory </span>
|
|
130
|
-
</div>
|
|
131
134
|
<div class="powerdby">
|
|
132
|
-
|
|
133
|
-
<br />
|
|
134
|
-
<a class="uzufactory" href="http://www.uzuuzu.jp/"> </a>
|
|
135
|
-
<img src="http://www.uzuuzu.jp/img/logo.png" height="60px"/>
|
|
135
|
+
<a href="http://www.uzuuzu.jp/page/oss/ruby_uzuuzu">powererd by</a>
|
|
136
136
|
</div>
|
|
137
137
|
</div>
|
|
138
138
|
</div>
|
data/uzuuzu-core.gemspec
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: uzuuzu-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.5
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Takuya Kondo
|
|
@@ -196,7 +196,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
196
196
|
requirements:
|
|
197
197
|
- - ">="
|
|
198
198
|
- !ruby/object:Gem::Version
|
|
199
|
-
hash: -
|
|
199
|
+
hash: -1861676627813116205
|
|
200
200
|
segments:
|
|
201
201
|
- 0
|
|
202
202
|
version: "0"
|