uzuuzu-core 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -1,17 +1,78 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1
+ <!DOCTYPE HTML>
2
2
  <html>
3
3
  <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+ <!-- meta -->
5
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
6
+ <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
7
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8
+ <link rel="shortcut icon" href="/favicon.ico"/>
9
+ <!-- meta -->
5
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
+ <!-- script -->
16
+ <%= js 'js/jquery.min.js' %>
17
+ <%= js 'js/jquery.jrumble.1.3.min.js' %>
18
+ <%= js 'js/jquery.tmpl.min.js' %>
19
+ <%= js 'js/kendo.all.min.js' %>
20
+ <!-- script -->
6
21
  <style type="text/css">
7
22
  body {
8
- background-color: white;
9
- color: #333333;
10
- font-family: Arial, sans-serif;
11
23
  margin: 0;
12
- padding: 36px;
13
- line-height: 18px;
14
- font-size: 14px;
24
+ padding: 0;
25
+ width: 100%;
26
+ color: #333333;
27
+ text-align: center;
28
+ background-color: #EEEEEE;
29
+ }
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
+ #wrapper {
39
+ text-align: center;
40
+ width: 100%;
41
+ background-color: white;
42
+ }
43
+ #header {
44
+ width: 980px;
45
+ height: 200px;
46
+ margin: 0 auto;
47
+ }
48
+ #footer {
49
+ position: relative;
50
+ width: 100%;
51
+ height: 100px;
52
+ font-size: 13px;
53
+ 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
+ }
66
+ #footer div.powerdby {
67
+ position: absolute;
68
+ text-align: left;
69
+ right: 100px;
70
+ bottom: 10px;
71
+ }
72
+ #contents {
73
+ width: 980px;
74
+ margin: 0 auto;
75
+ text-align: center;
15
76
  }
16
77
  .section {
17
78
  margin-bottom: 36px;
@@ -30,10 +91,50 @@
30
91
  font-size: 14px;
31
92
  }
32
93
  </style>
94
+ <script text="text/javascript">
95
+ <!--
96
+ // initialize
97
+ $(function(){
98
+ // use jrunble
99
+ $('a').jrumble({
100
+ x: 2,
101
+ y: 2,
102
+ rotation: 1,
103
+ speed: 15,
104
+ opacity: false,
105
+ opacityMin: 0.5
106
+ });
107
+
108
+ $('a').hover(function(){
109
+ $(this).trigger('startRumble');
110
+ }, function(){
111
+ $(this).trigger('stopRumble');
112
+ })
113
+ });
114
+ -->
115
+ </script>
33
116
  </head>
34
117
  <body>
35
- <div class="section">
36
- <h1><%= localize(:not_found) %></h1>
118
+ <div id="wrapper">
119
+ <div id="header"></div>
120
+ <div class="clearFix"></div>
121
+ <div id="contents">
122
+ <div class="section">
123
+ <h1><%= localize(:not_found) %></h1>
124
+ </div>
125
+ </div>
126
+ <div class="clearFix"></div>
127
+ <div id="footer">
128
+ <div class="copyright">
129
+ <span>Copyright © 2011 uzufactory &nbsp;</span>
130
+ </div>
131
+ <div class="powerdby">
132
+ powerd by
133
+ <br />
134
+ <a class="uzufactory" href="http://www.uzuuzu.jp/"> </a>
135
+ <img src="http://www.uzuuzu.jp/img/logo.png" height="60px"/>
136
+ </div>
137
+ </div>
37
138
  </div>
38
139
  </body>
39
140
  </html>
@@ -1,17 +1,78 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1
+ <!DOCTYPE HTML>
2
2
  <html>
3
3
  <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+ <!-- meta -->
5
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
6
+ <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
7
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8
+ <link rel="shortcut icon" href="/favicon.ico"/>
9
+ <!-- meta -->
5
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
+ <!-- script -->
16
+ <%= js 'js/jquery.min.js' %>
17
+ <%= js 'js/jquery.jrumble.1.3.min.js' %>
18
+ <%= js 'js/jquery.tmpl.min.js' %>
19
+ <%= js 'js/kendo.all.min.js' %>
20
+ <!-- script -->
6
21
  <style type="text/css">
7
22
  body {
8
- background-color: white;
9
- color: #333333;
10
- font-family: Arial, sans-serif;
11
23
  margin: 0;
12
- padding: 36px;
13
- line-height: 18px;
14
- font-size: 14px;
24
+ padding: 0;
25
+ width: 100%;
26
+ color: #333333;
27
+ text-align: center;
28
+ background-color: #EEEEEE;
29
+ }
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
+ #wrapper {
39
+ text-align: center;
40
+ width: 100%;
41
+ background-color: white;
42
+ }
43
+ #header {
44
+ width: 980px;
45
+ height: 200px;
46
+ margin: 0 auto;
47
+ }
48
+ #footer {
49
+ position: relative;
50
+ width: 100%;
51
+ height: 100px;
52
+ font-size: 13px;
53
+ 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
+ }
66
+ #footer div.powerdby {
67
+ position: absolute;
68
+ text-align: left;
69
+ right: 100px;
70
+ bottom: 10px;
71
+ }
72
+ #contents {
73
+ width: 980px;
74
+ margin: 0 auto;
75
+ text-align: center;
15
76
  }
16
77
  .section {
17
78
  margin-bottom: 36px;
@@ -30,10 +91,50 @@
30
91
  font-size: 14px;
31
92
  }
32
93
  </style>
94
+ <script text="text/javascript">
95
+ <!--
96
+ // initialize
97
+ $(function(){
98
+ // use jrunble
99
+ $('a').jrumble({
100
+ x: 2,
101
+ y: 2,
102
+ rotation: 1,
103
+ speed: 15,
104
+ opacity: false,
105
+ opacityMin: 0.5
106
+ });
107
+
108
+ $('a').hover(function(){
109
+ $(this).trigger('startRumble');
110
+ }, function(){
111
+ $(this).trigger('stopRumble');
112
+ })
113
+ });
114
+ -->
115
+ </script>
33
116
  </head>
34
117
  <body>
35
- <div class="section">
36
- <h1><%= localize(:server_error) %></h1>
118
+ <div id="wrapper">
119
+ <div id="header"></div>
120
+ <div class="clearFix"></div>
121
+ <div id="contents">
122
+ <div class="section">
123
+ <h1><%= localize(:server_error) %></h1>
124
+ </div>
125
+ </div>
126
+ <div class="clearFix"></div>
127
+ <div id="footer">
128
+ <div class="copyright">
129
+ <span>Copyright © 2011 uzufactory &nbsp;</span>
130
+ </div>
131
+ <div class="powerdby">
132
+ powerd by
133
+ <br />
134
+ <a class="uzufactory" href="http://www.uzuuzu.jp/"> </a>
135
+ <img src="http://www.uzuuzu.jp/img/logo.png" height="60px"/>
136
+ </div>
137
+ </div>
37
138
  </div>
38
139
  </body>
39
- </html>
140
+ </html>
data/uzuuzu-core.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{uzuuzu-core}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Takuya Kondo"]
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.3
5
+ version: 0.1.4
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: 4470451680210993641
199
+ hash: -1780625621818121697
200
200
  segments:
201
201
  - 0
202
202
  version: "0"