uzuuzu-cms 0.0.0
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/.document +5 -0
- data/.project +17 -0
- data/.rspec +1 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +99 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/uzuuzu-cms/controller/admin.rb +16 -0
- data/lib/uzuuzu-cms/controller/contents.rb +16 -0
- data/lib/uzuuzu-cms/controller/crud.rb +245 -0
- data/lib/uzuuzu-cms/controller/index.rb +108 -0
- data/lib/uzuuzu-cms/controller/initialize.rb +53 -0
- data/lib/uzuuzu-cms/controller/oauth.rb +10 -0
- data/lib/uzuuzu-cms/controller/openid.rb +105 -0
- data/lib/uzuuzu-cms/controller/page.rb +20 -0
- data/lib/uzuuzu-cms/controller/plugin.rb +16 -0
- data/lib/uzuuzu-cms/controller/user.rb +27 -0
- data/lib/uzuuzu-cms/controller/view/admin/index.rhtml +0 -0
- data/lib/uzuuzu-cms/controller/view/crud/destroy.rhtml +28 -0
- data/lib/uzuuzu-cms/controller/view/crud/edit.rhtml +52 -0
- data/lib/uzuuzu-cms/controller/view/crud/index.rhtml +45 -0
- data/lib/uzuuzu-cms/controller/view/crud/new.rhtml +48 -0
- data/lib/uzuuzu-cms/controller/view/crud/show.rhtml +47 -0
- data/lib/uzuuzu-cms/controller/view/error/404.rhtml +2 -0
- data/lib/uzuuzu-cms/controller/view/error/500.rhtml +2 -0
- data/lib/uzuuzu-cms/controller/view/initialize/step1.rhtml +15 -0
- data/lib/uzuuzu-cms/controller/view/initialize/step2.rhtml +1 -0
- data/lib/uzuuzu-cms/controller/view/initialize/step3.rhtml +0 -0
- data/lib/uzuuzu-cms/controller/view/layout.rhtml +25 -0
- data/lib/uzuuzu-cms/controller/view/openid/index.rhtml +14 -0
- data/lib/uzuuzu-cms/controller/view/user/entry.rhtml +13 -0
- data/lib/uzuuzu-cms/controller.rb +16 -0
- data/lib/uzuuzu-cms/fixture/layout.yaml +110 -0
- data/lib/uzuuzu-cms/model/blog.rb +40 -0
- data/lib/uzuuzu-cms/model/blog_category.rb +15 -0
- data/lib/uzuuzu-cms/model/blog_comment.rb +29 -0
- data/lib/uzuuzu-cms/model/blog_entry.rb +24 -0
- data/lib/uzuuzu-cms/model/contents.rb +43 -0
- data/lib/uzuuzu-cms/model/css.rb +22 -0
- data/lib/uzuuzu-cms/model/file.rb +41 -0
- data/lib/uzuuzu-cms/model/image.rb +41 -0
- data/lib/uzuuzu-cms/model/info.rb +127 -0
- data/lib/uzuuzu-cms/model/javascript.rb +22 -0
- data/lib/uzuuzu-cms/model/layout.rb +22 -0
- data/lib/uzuuzu-cms/model/movie.rb +39 -0
- data/lib/uzuuzu-cms/model/page.rb +167 -0
- data/lib/uzuuzu-cms/model/page_body.rb +28 -0
- data/lib/uzuuzu-cms/model/user.rb +30 -0
- data/lib/uzuuzu-cms/model/wiki.rb +43 -0
- data/lib/uzuuzu-cms/model/wiki_attache.rb +26 -0
- data/lib/uzuuzu-cms/model/wiki_entry.rb +21 -0
- data/lib/uzuuzu-cms/model/wiki_layout.rb +13 -0
- data/lib/uzuuzu-cms/model.rb +24 -0
- data/lib/uzuuzu-cms.rb +5 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/uzuuzu-cms_spec.rb +7 -0
- data/template/app.rb +3 -0
- data/template/config.ru +15 -0
- data/template/public/css/images/ajax-loader.png +0 -0
- data/template/public/css/images/icon-search-black.png +0 -0
- data/template/public/css/images/icons-18-black.png +0 -0
- data/template/public/css/images/icons-18-white.png +0 -0
- data/template/public/css/images/icons-36-black.png +0 -0
- data/template/public/css/images/icons-36-white.png +0 -0
- data/template/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/template/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/template/public/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/template/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/template/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/template/public/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/template/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/template/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/template/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/template/public/css/images/ui-icons_222222_256x240.png +0 -0
- data/template/public/css/images/ui-icons_228ef1_256x240.png +0 -0
- data/template/public/css/images/ui-icons_ef8c08_256x240.png +0 -0
- data/template/public/css/images/ui-icons_ffd27a_256x240.png +0 -0
- data/template/public/css/images/ui-icons_ffffff_256x240.png +0 -0
- data/template/public/css/index.css +146 -0
- data/template/public/css/jquery-ui.css +578 -0
- data/template/public/css/jquery.mobile.css +16 -0
- data/template/public/css/screen.css +30 -0
- data/template/public/dispatch.fcgi +27 -0
- data/template/public/js/jquery-ui.js +784 -0
- data/template/public/js/jquery.js +16 -0
- data/template/public/js/jquery.mobile.js +134 -0
- data/template/public/js/uzuuzu-ui.js +0 -0
- data/template/public/js/uzuuzu.js +0 -0
- data/template/public/js/uzuuzu.mobile.js +0 -0
- data/template/start.rb +29 -0
- data/template/uzuuzu.yaml +43 -0
- data/uzuuzu-cms.gemspec +145 -0
- metadata +207 -0
data/uzuuzu-cms.gemspec
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{uzuuzu-cms}
|
|
8
|
+
s.version = "0.0.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Takuya Kondo"]
|
|
12
|
+
s.date = %q{2011-08-14}
|
|
13
|
+
s.description = %q{cms on uzuuzu}
|
|
14
|
+
s.email = %q{takuya.v3v@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".project",
|
|
22
|
+
".rspec",
|
|
23
|
+
"Gemfile",
|
|
24
|
+
"Gemfile.lock",
|
|
25
|
+
"LICENSE.txt",
|
|
26
|
+
"README.rdoc",
|
|
27
|
+
"Rakefile",
|
|
28
|
+
"VERSION",
|
|
29
|
+
"lib/uzuuzu-cms.rb",
|
|
30
|
+
"lib/uzuuzu-cms/controller.rb",
|
|
31
|
+
"lib/uzuuzu-cms/controller/admin.rb",
|
|
32
|
+
"lib/uzuuzu-cms/controller/contents.rb",
|
|
33
|
+
"lib/uzuuzu-cms/controller/crud.rb",
|
|
34
|
+
"lib/uzuuzu-cms/controller/index.rb",
|
|
35
|
+
"lib/uzuuzu-cms/controller/initialize.rb",
|
|
36
|
+
"lib/uzuuzu-cms/controller/oauth.rb",
|
|
37
|
+
"lib/uzuuzu-cms/controller/openid.rb",
|
|
38
|
+
"lib/uzuuzu-cms/controller/page.rb",
|
|
39
|
+
"lib/uzuuzu-cms/controller/plugin.rb",
|
|
40
|
+
"lib/uzuuzu-cms/controller/user.rb",
|
|
41
|
+
"lib/uzuuzu-cms/controller/view/admin/index.rhtml",
|
|
42
|
+
"lib/uzuuzu-cms/controller/view/crud/destroy.rhtml",
|
|
43
|
+
"lib/uzuuzu-cms/controller/view/crud/edit.rhtml",
|
|
44
|
+
"lib/uzuuzu-cms/controller/view/crud/index.rhtml",
|
|
45
|
+
"lib/uzuuzu-cms/controller/view/crud/new.rhtml",
|
|
46
|
+
"lib/uzuuzu-cms/controller/view/crud/show.rhtml",
|
|
47
|
+
"lib/uzuuzu-cms/controller/view/error/404.rhtml",
|
|
48
|
+
"lib/uzuuzu-cms/controller/view/error/500.rhtml",
|
|
49
|
+
"lib/uzuuzu-cms/controller/view/initialize/step1.rhtml",
|
|
50
|
+
"lib/uzuuzu-cms/controller/view/initialize/step2.rhtml",
|
|
51
|
+
"lib/uzuuzu-cms/controller/view/initialize/step3.rhtml",
|
|
52
|
+
"lib/uzuuzu-cms/controller/view/layout.rhtml",
|
|
53
|
+
"lib/uzuuzu-cms/controller/view/openid/index.rhtml",
|
|
54
|
+
"lib/uzuuzu-cms/controller/view/user/entry.rhtml",
|
|
55
|
+
"lib/uzuuzu-cms/fixture/layout.yaml",
|
|
56
|
+
"lib/uzuuzu-cms/model.rb",
|
|
57
|
+
"lib/uzuuzu-cms/model/blog.rb",
|
|
58
|
+
"lib/uzuuzu-cms/model/blog_category.rb",
|
|
59
|
+
"lib/uzuuzu-cms/model/blog_comment.rb",
|
|
60
|
+
"lib/uzuuzu-cms/model/blog_entry.rb",
|
|
61
|
+
"lib/uzuuzu-cms/model/contents.rb",
|
|
62
|
+
"lib/uzuuzu-cms/model/css.rb",
|
|
63
|
+
"lib/uzuuzu-cms/model/file.rb",
|
|
64
|
+
"lib/uzuuzu-cms/model/image.rb",
|
|
65
|
+
"lib/uzuuzu-cms/model/info.rb",
|
|
66
|
+
"lib/uzuuzu-cms/model/javascript.rb",
|
|
67
|
+
"lib/uzuuzu-cms/model/layout.rb",
|
|
68
|
+
"lib/uzuuzu-cms/model/movie.rb",
|
|
69
|
+
"lib/uzuuzu-cms/model/page.rb",
|
|
70
|
+
"lib/uzuuzu-cms/model/page_body.rb",
|
|
71
|
+
"lib/uzuuzu-cms/model/user.rb",
|
|
72
|
+
"lib/uzuuzu-cms/model/wiki.rb",
|
|
73
|
+
"lib/uzuuzu-cms/model/wiki_attache.rb",
|
|
74
|
+
"lib/uzuuzu-cms/model/wiki_entry.rb",
|
|
75
|
+
"lib/uzuuzu-cms/model/wiki_layout.rb",
|
|
76
|
+
"spec/spec_helper.rb",
|
|
77
|
+
"spec/uzuuzu-cms_spec.rb",
|
|
78
|
+
"template/app.rb",
|
|
79
|
+
"template/config.ru",
|
|
80
|
+
"template/public/css/images/ajax-loader.png",
|
|
81
|
+
"template/public/css/images/icon-search-black.png",
|
|
82
|
+
"template/public/css/images/icons-18-black.png",
|
|
83
|
+
"template/public/css/images/icons-18-white.png",
|
|
84
|
+
"template/public/css/images/icons-36-black.png",
|
|
85
|
+
"template/public/css/images/icons-36-white.png",
|
|
86
|
+
"template/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png",
|
|
87
|
+
"template/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png",
|
|
88
|
+
"template/public/css/images/ui-bg_flat_10_000000_40x100.png",
|
|
89
|
+
"template/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png",
|
|
90
|
+
"template/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png",
|
|
91
|
+
"template/public/css/images/ui-bg_glass_65_ffffff_1x400.png",
|
|
92
|
+
"template/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png",
|
|
93
|
+
"template/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png",
|
|
94
|
+
"template/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png",
|
|
95
|
+
"template/public/css/images/ui-icons_222222_256x240.png",
|
|
96
|
+
"template/public/css/images/ui-icons_228ef1_256x240.png",
|
|
97
|
+
"template/public/css/images/ui-icons_ef8c08_256x240.png",
|
|
98
|
+
"template/public/css/images/ui-icons_ffd27a_256x240.png",
|
|
99
|
+
"template/public/css/images/ui-icons_ffffff_256x240.png",
|
|
100
|
+
"template/public/css/index.css",
|
|
101
|
+
"template/public/css/jquery-ui.css",
|
|
102
|
+
"template/public/css/jquery.mobile.css",
|
|
103
|
+
"template/public/css/screen.css",
|
|
104
|
+
"template/public/dispatch.fcgi",
|
|
105
|
+
"template/public/js/jquery-ui.js",
|
|
106
|
+
"template/public/js/jquery.js",
|
|
107
|
+
"template/public/js/jquery.mobile.js",
|
|
108
|
+
"template/public/js/uzuuzu-ui.js",
|
|
109
|
+
"template/public/js/uzuuzu.js",
|
|
110
|
+
"template/public/js/uzuuzu.mobile.js",
|
|
111
|
+
"template/start.rb",
|
|
112
|
+
"template/uzuuzu.yaml",
|
|
113
|
+
"uzuuzu-cms.gemspec"
|
|
114
|
+
]
|
|
115
|
+
s.homepage = %q{http://github.com/takuya-v-v/uzuuzu-cms}
|
|
116
|
+
s.licenses = ["MIT"]
|
|
117
|
+
s.require_paths = ["lib"]
|
|
118
|
+
s.rubygems_version = %q{1.5.2}
|
|
119
|
+
s.summary = %q{cms on uzuuzu}
|
|
120
|
+
|
|
121
|
+
if s.respond_to? :specification_version then
|
|
122
|
+
s.specification_version = 3
|
|
123
|
+
|
|
124
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
125
|
+
s.add_runtime_dependency(%q<uzuuzu>, [">= 0"])
|
|
126
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
|
127
|
+
s.add_development_dependency(%q<bundler>, [">= 0"])
|
|
128
|
+
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
|
129
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
130
|
+
else
|
|
131
|
+
s.add_dependency(%q<uzuuzu>, [">= 0"])
|
|
132
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
133
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
|
134
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
135
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
136
|
+
end
|
|
137
|
+
else
|
|
138
|
+
s.add_dependency(%q<uzuuzu>, [">= 0"])
|
|
139
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
140
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
|
141
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
142
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
143
|
+
end
|
|
144
|
+
end
|
|
145
|
+
|
metadata
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: uzuuzu-cms
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.0
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Takuya Kondo
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-08-14 00:00:00 +09:00
|
|
14
|
+
default_executable:
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: uzuuzu
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
type: :runtime
|
|
25
|
+
prerelease: false
|
|
26
|
+
version_requirements: *id001
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rspec
|
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: "0"
|
|
35
|
+
type: :development
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: *id002
|
|
38
|
+
- !ruby/object:Gem::Dependency
|
|
39
|
+
name: bundler
|
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: "0"
|
|
46
|
+
type: :development
|
|
47
|
+
prerelease: false
|
|
48
|
+
version_requirements: *id003
|
|
49
|
+
- !ruby/object:Gem::Dependency
|
|
50
|
+
name: jeweler
|
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: "0"
|
|
57
|
+
type: :development
|
|
58
|
+
prerelease: false
|
|
59
|
+
version_requirements: *id004
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: rcov
|
|
62
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
63
|
+
none: false
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: "0"
|
|
68
|
+
type: :development
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: *id005
|
|
71
|
+
description: cms on uzuuzu
|
|
72
|
+
email: takuya.v3v@gmail.com
|
|
73
|
+
executables: []
|
|
74
|
+
|
|
75
|
+
extensions: []
|
|
76
|
+
|
|
77
|
+
extra_rdoc_files:
|
|
78
|
+
- LICENSE.txt
|
|
79
|
+
- README.rdoc
|
|
80
|
+
files:
|
|
81
|
+
- .document
|
|
82
|
+
- .project
|
|
83
|
+
- .rspec
|
|
84
|
+
- Gemfile
|
|
85
|
+
- Gemfile.lock
|
|
86
|
+
- LICENSE.txt
|
|
87
|
+
- README.rdoc
|
|
88
|
+
- Rakefile
|
|
89
|
+
- VERSION
|
|
90
|
+
- lib/uzuuzu-cms.rb
|
|
91
|
+
- lib/uzuuzu-cms/controller.rb
|
|
92
|
+
- lib/uzuuzu-cms/controller/admin.rb
|
|
93
|
+
- lib/uzuuzu-cms/controller/contents.rb
|
|
94
|
+
- lib/uzuuzu-cms/controller/crud.rb
|
|
95
|
+
- lib/uzuuzu-cms/controller/index.rb
|
|
96
|
+
- lib/uzuuzu-cms/controller/initialize.rb
|
|
97
|
+
- lib/uzuuzu-cms/controller/oauth.rb
|
|
98
|
+
- lib/uzuuzu-cms/controller/openid.rb
|
|
99
|
+
- lib/uzuuzu-cms/controller/page.rb
|
|
100
|
+
- lib/uzuuzu-cms/controller/plugin.rb
|
|
101
|
+
- lib/uzuuzu-cms/controller/user.rb
|
|
102
|
+
- lib/uzuuzu-cms/controller/view/admin/index.rhtml
|
|
103
|
+
- lib/uzuuzu-cms/controller/view/crud/destroy.rhtml
|
|
104
|
+
- lib/uzuuzu-cms/controller/view/crud/edit.rhtml
|
|
105
|
+
- lib/uzuuzu-cms/controller/view/crud/index.rhtml
|
|
106
|
+
- lib/uzuuzu-cms/controller/view/crud/new.rhtml
|
|
107
|
+
- lib/uzuuzu-cms/controller/view/crud/show.rhtml
|
|
108
|
+
- lib/uzuuzu-cms/controller/view/error/404.rhtml
|
|
109
|
+
- lib/uzuuzu-cms/controller/view/error/500.rhtml
|
|
110
|
+
- lib/uzuuzu-cms/controller/view/initialize/step1.rhtml
|
|
111
|
+
- lib/uzuuzu-cms/controller/view/initialize/step2.rhtml
|
|
112
|
+
- lib/uzuuzu-cms/controller/view/initialize/step3.rhtml
|
|
113
|
+
- lib/uzuuzu-cms/controller/view/layout.rhtml
|
|
114
|
+
- lib/uzuuzu-cms/controller/view/openid/index.rhtml
|
|
115
|
+
- lib/uzuuzu-cms/controller/view/user/entry.rhtml
|
|
116
|
+
- lib/uzuuzu-cms/fixture/layout.yaml
|
|
117
|
+
- lib/uzuuzu-cms/model.rb
|
|
118
|
+
- lib/uzuuzu-cms/model/blog.rb
|
|
119
|
+
- lib/uzuuzu-cms/model/blog_category.rb
|
|
120
|
+
- lib/uzuuzu-cms/model/blog_comment.rb
|
|
121
|
+
- lib/uzuuzu-cms/model/blog_entry.rb
|
|
122
|
+
- lib/uzuuzu-cms/model/contents.rb
|
|
123
|
+
- lib/uzuuzu-cms/model/css.rb
|
|
124
|
+
- lib/uzuuzu-cms/model/file.rb
|
|
125
|
+
- lib/uzuuzu-cms/model/image.rb
|
|
126
|
+
- lib/uzuuzu-cms/model/info.rb
|
|
127
|
+
- lib/uzuuzu-cms/model/javascript.rb
|
|
128
|
+
- lib/uzuuzu-cms/model/layout.rb
|
|
129
|
+
- lib/uzuuzu-cms/model/movie.rb
|
|
130
|
+
- lib/uzuuzu-cms/model/page.rb
|
|
131
|
+
- lib/uzuuzu-cms/model/page_body.rb
|
|
132
|
+
- lib/uzuuzu-cms/model/user.rb
|
|
133
|
+
- lib/uzuuzu-cms/model/wiki.rb
|
|
134
|
+
- lib/uzuuzu-cms/model/wiki_attache.rb
|
|
135
|
+
- lib/uzuuzu-cms/model/wiki_entry.rb
|
|
136
|
+
- lib/uzuuzu-cms/model/wiki_layout.rb
|
|
137
|
+
- spec/spec_helper.rb
|
|
138
|
+
- spec/uzuuzu-cms_spec.rb
|
|
139
|
+
- template/app.rb
|
|
140
|
+
- template/config.ru
|
|
141
|
+
- template/public/css/images/ajax-loader.png
|
|
142
|
+
- template/public/css/images/icon-search-black.png
|
|
143
|
+
- template/public/css/images/icons-18-black.png
|
|
144
|
+
- template/public/css/images/icons-18-white.png
|
|
145
|
+
- template/public/css/images/icons-36-black.png
|
|
146
|
+
- template/public/css/images/icons-36-white.png
|
|
147
|
+
- template/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
|
148
|
+
- template/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
|
149
|
+
- template/public/css/images/ui-bg_flat_10_000000_40x100.png
|
|
150
|
+
- template/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png
|
|
151
|
+
- template/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png
|
|
152
|
+
- template/public/css/images/ui-bg_glass_65_ffffff_1x400.png
|
|
153
|
+
- template/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
|
154
|
+
- template/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
|
155
|
+
- template/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
|
156
|
+
- template/public/css/images/ui-icons_222222_256x240.png
|
|
157
|
+
- template/public/css/images/ui-icons_228ef1_256x240.png
|
|
158
|
+
- template/public/css/images/ui-icons_ef8c08_256x240.png
|
|
159
|
+
- template/public/css/images/ui-icons_ffd27a_256x240.png
|
|
160
|
+
- template/public/css/images/ui-icons_ffffff_256x240.png
|
|
161
|
+
- template/public/css/index.css
|
|
162
|
+
- template/public/css/jquery-ui.css
|
|
163
|
+
- template/public/css/jquery.mobile.css
|
|
164
|
+
- template/public/css/screen.css
|
|
165
|
+
- template/public/dispatch.fcgi
|
|
166
|
+
- template/public/js/jquery-ui.js
|
|
167
|
+
- template/public/js/jquery.js
|
|
168
|
+
- template/public/js/jquery.mobile.js
|
|
169
|
+
- template/public/js/uzuuzu-ui.js
|
|
170
|
+
- template/public/js/uzuuzu.js
|
|
171
|
+
- template/public/js/uzuuzu.mobile.js
|
|
172
|
+
- template/start.rb
|
|
173
|
+
- template/uzuuzu.yaml
|
|
174
|
+
- uzuuzu-cms.gemspec
|
|
175
|
+
has_rdoc: true
|
|
176
|
+
homepage: http://github.com/takuya-v-v/uzuuzu-cms
|
|
177
|
+
licenses:
|
|
178
|
+
- MIT
|
|
179
|
+
post_install_message:
|
|
180
|
+
rdoc_options: []
|
|
181
|
+
|
|
182
|
+
require_paths:
|
|
183
|
+
- lib
|
|
184
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
|
+
none: false
|
|
186
|
+
requirements:
|
|
187
|
+
- - ">="
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
hash: 4304218044688158449
|
|
190
|
+
segments:
|
|
191
|
+
- 0
|
|
192
|
+
version: "0"
|
|
193
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
|
+
none: false
|
|
195
|
+
requirements:
|
|
196
|
+
- - ">="
|
|
197
|
+
- !ruby/object:Gem::Version
|
|
198
|
+
version: "0"
|
|
199
|
+
requirements: []
|
|
200
|
+
|
|
201
|
+
rubyforge_project:
|
|
202
|
+
rubygems_version: 1.5.2
|
|
203
|
+
signing_key:
|
|
204
|
+
specification_version: 3
|
|
205
|
+
summary: cms on uzuuzu
|
|
206
|
+
test_files: []
|
|
207
|
+
|