humpyard 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +28 -0
- data/README.rdoc +61 -0
- data/VERSION +1 -0
- data/app/controllers/humpyard/assets_controller.rb +123 -0
- data/app/controllers/humpyard/elements_controller.rb +200 -0
- data/app/controllers/humpyard/errors_controller.rb +8 -0
- data/app/controllers/humpyard/pages_controller.rb +365 -0
- data/app/helpers/humpyard/pages_helper.rb +19 -0
- data/app/models/humpyard/asset.rb +22 -0
- data/app/models/humpyard/assets/paperclip_asset.rb +48 -0
- data/app/models/humpyard/assets/youtube_asset.rb +38 -0
- data/app/models/humpyard/element.rb +57 -0
- data/app/models/humpyard/elements/box_element.rb +15 -0
- data/app/models/humpyard/elements/media_element.rb +13 -0
- data/app/models/humpyard/elements/news_element.rb +13 -0
- data/app/models/humpyard/elements/sitemap_element.rb +11 -0
- data/app/models/humpyard/elements/text_element.rb +49 -0
- data/app/models/humpyard/news_item.rb +42 -0
- data/app/models/humpyard/page.rb +153 -0
- data/app/models/humpyard/pages/news_page.rb +71 -0
- data/app/models/humpyard/pages/static_page.rb +25 -0
- data/app/models/humpyard/pages/virtual_page.rb +30 -0
- data/app/views/humpyard/assets/_edit.html.haml +15 -0
- data/app/views/humpyard/assets/_index.html.haml +24 -0
- data/app/views/humpyard/assets/_list.html.haml +4 -0
- data/app/views/humpyard/assets/_list_item.html.haml +1 -0
- data/app/views/humpyard/assets/_show.html.haml +38 -0
- data/app/views/humpyard/assets/_show_asset.html.haml +3 -0
- data/app/views/humpyard/assets/destroy.js.erb +4 -0
- data/app/views/humpyard/assets/paperclip_assets/_edit.html.haml +4 -0
- data/app/views/humpyard/assets/paperclip_assets/_info_table.html.haml +10 -0
- data/app/views/humpyard/assets/paperclip_assets/_show.html.haml +12 -0
- data/app/views/humpyard/assets/youtube_assets/_edit.html.haml +4 -0
- data/app/views/humpyard/assets/youtube_assets/_show.html.haml +5 -0
- data/app/views/humpyard/common/_head.html.haml +8 -0
- data/app/views/humpyard/common/_page_construct.html.haml +45 -0
- data/app/views/humpyard/elements/_edit.html.haml +25 -0
- data/app/views/humpyard/elements/_inline_edit.haml +0 -0
- data/app/views/humpyard/elements/_new.html.haml +1 -0
- data/app/views/humpyard/elements/_show.html.haml +29 -0
- data/app/views/humpyard/elements/_show_container.html.haml +3 -0
- data/app/views/humpyard/elements/_show_view.html.haml +2 -0
- data/app/views/humpyard/elements/box_elements/_edit.html.haml +4 -0
- data/app/views/humpyard/elements/box_elements/_inline_edit.html.haml +0 -0
- data/app/views/humpyard/elements/box_elements/_show.html.haml +5 -0
- data/app/views/humpyard/elements/destroy.js.erb +1 -0
- data/app/views/humpyard/elements/error.js.erb +1 -0
- data/app/views/humpyard/elements/media_elements/_edit.html.haml +7 -0
- data/app/views/humpyard/elements/media_elements/_show.html.haml +8 -0
- data/app/views/humpyard/elements/news_elements/_edit.html.haml +5 -0
- data/app/views/humpyard/elements/news_elements/_inline_edit.html.haml +0 -0
- data/app/views/humpyard/elements/news_elements/_show.html.haml +4 -0
- data/app/views/humpyard/elements/sitemap_elements/_edit.html.haml +5 -0
- data/app/views/humpyard/elements/sitemap_elements/_inline_edit.html.haml +0 -0
- data/app/views/humpyard/elements/sitemap_elements/_show.html.haml +3 -0
- data/app/views/humpyard/elements/sitemap_elements/_show_part.html.haml +12 -0
- data/app/views/humpyard/elements/text_elements/_edit.html.haml +4 -0
- data/app/views/humpyard/elements/text_elements/_inline_edit.html.haml +0 -0
- data/app/views/humpyard/elements/text_elements/_show.html.haml +4 -0
- data/app/views/humpyard/pages/_content.html.haml +2 -0
- data/app/views/humpyard/pages/_edit.html.haml +39 -0
- data/app/views/humpyard/pages/_index.html.haml +23 -0
- data/app/views/humpyard/pages/_show.html.haml +16 -0
- data/app/views/humpyard/pages/_subtree.html.haml +6 -0
- data/app/views/humpyard/pages/_tree.html.haml +3 -0
- data/app/views/humpyard/pages/destroy.js.erb +4 -0
- data/app/views/humpyard/pages/news_pages/_detail.html.haml +10 -0
- data/app/views/humpyard/pages/news_pages/_edit.html.haml +3 -0
- data/app/views/humpyard/pages/news_pages/_show.html.haml +5 -0
- data/app/views/humpyard/pages/show.html.haml +3 -0
- data/app/views/humpyard/pages/static_pages/_edit.html.haml +1 -0
- data/app/views/humpyard/pages/static_pages/_show.html.haml +1 -0
- data/app/views/humpyard/pages/virtual_pages/_edit.html.haml +7 -0
- data/app/views/humpyard/pages/virtual_pages/_show.html.haml +4 -0
- data/app/views/humpyard/pages/welcome.html.haml +13 -0
- data/compass/stylesheets/_humpyard.scss +12 -0
- data/compass/stylesheets/humpyard/_backend.scss +1 -0
- data/compass/stylesheets/humpyard/_base.scss +144 -0
- data/compass/stylesheets/humpyard/_ie.scss +1 -0
- data/compass/stylesheets/humpyard/_jquery_ui_overrides.scss +380 -0
- data/compass/stylesheets/humpyard/_print.scss +3 -0
- data/config/locales/de.yml +84 -0
- data/config/locales/en.yml +81 -0
- data/config/routes.rb +38 -0
- data/db/migrate/20100321134138_base.rb +60 -0
- data/db/migrate/20100330204700_create_box_element.rb +24 -0
- data/db/migrate/20100401153655_page_template.rb +11 -0
- data/db/migrate/20100409195732_page_types.rb +26 -0
- data/db/migrate/20100413230623_element_yield.rb +14 -0
- data/db/migrate/20100415132312_news_page.rb +48 -0
- data/db/migrate/20100415193423_page_i18n_name.rb +27 -0
- data/db/migrate/20100415213700_create_news_element.rb +12 -0
- data/db/migrate/20100703120000_shared_elements.rb +9 -0
- data/db/migrate/20101001142534_page_modified_at.rb +11 -0
- data/db/migrate/20101003100138_create_sitemap_elements.rb +13 -0
- data/db/migrate/20101003122108_create_humpyard_pages_virtual_pages.rb +11 -0
- data/db/migrate/20101006070503_page_cache_control.rb +9 -0
- data/db/migrate/20101104173743_create_media.rb +36 -0
- data/db/migrate/20110425230524_media_with_link.rb +9 -0
- data/lib/generators/humpyard.rb +114 -0
- data/lib/generators/humpyard/auth/auth_generator.rb +191 -0
- data/lib/generators/humpyard/auth/templates/authlogic/README +9 -0
- data/lib/generators/humpyard/auth/templates/authlogic/controllers/user_sessions_controller.rb +22 -0
- data/lib/generators/humpyard/auth/templates/authlogic/migration.rb +17 -0
- data/lib/generators/humpyard/auth/templates/authlogic/models/ability.rb +12 -0
- data/lib/generators/humpyard/auth/templates/authlogic/models/user.rb +7 -0
- data/lib/generators/humpyard/auth/templates/authlogic/models/user_session.rb +6 -0
- data/lib/generators/humpyard/auth/templates/authlogic/views/user_sessions/new.html.haml +12 -0
- data/lib/generators/humpyard/auth/templates/custom/README +8 -0
- data/lib/generators/humpyard/auth/templates/devise/README +14 -0
- data/lib/generators/humpyard/auth/templates/devise/models/ability.rb +14 -0
- data/lib/generators/humpyard/auth/templates/fake/README +0 -0
- data/lib/generators/humpyard/auth/templates/fake/models/ability.rb +12 -0
- data/lib/generators/humpyard/auth/templates/simple/README +16 -0
- data/lib/generators/humpyard/auth/templates/simple/config/humpyard_users.yml +2 -0
- data/lib/generators/humpyard/auth/templates/simple/controllers/user_sessions_controller.rb +39 -0
- data/lib/generators/humpyard/auth/templates/simple/models/ability.rb +12 -0
- data/lib/generators/humpyard/auth/templates/simple/views/user_sessions/new.html.haml +15 -0
- data/lib/generators/humpyard/element/USAGE +7 -0
- data/lib/generators/humpyard/element/element_generator.rb +82 -0
- data/lib/generators/humpyard/element/templates/_edit.html.haml +12 -0
- data/lib/generators/humpyard/element/templates/_inline_edit.html.haml +0 -0
- data/lib/generators/humpyard/element/templates/_show.html.haml +9 -0
- data/lib/generators/humpyard/element/templates/fixtures.yml +23 -0
- data/lib/generators/humpyard/element/templates/migration.rb +16 -0
- data/lib/generators/humpyard/element/templates/model.rb +11 -0
- data/lib/generators/humpyard/element/templates/tests/rspec/model.rb +7 -0
- data/lib/generators/humpyard/element/templates/tests/shoulda/model.rb +7 -0
- data/lib/generators/humpyard/element/templates/tests/test_unit/model.rb +7 -0
- data/lib/generators/humpyard/page/USAGE +7 -0
- data/lib/generators/humpyard/page/page_generator.rb +80 -0
- data/lib/generators/humpyard/page/templates/_edit.html.haml +7 -0
- data/lib/generators/humpyard/page/templates/_show.html.haml +4 -0
- data/lib/generators/humpyard/page/templates/fixtures.yml +23 -0
- data/lib/generators/humpyard/page/templates/migration.rb +16 -0
- data/lib/generators/humpyard/page/templates/model.rb +37 -0
- data/lib/generators/humpyard/page/templates/tests/rspec/model.rb +7 -0
- data/lib/generators/humpyard/page/templates/tests/shoulda/model.rb +7 -0
- data/lib/generators/humpyard/page/templates/tests/test_unit/model.rb +7 -0
- data/lib/generators/humpyard/skeleton/USAGE +6 -0
- data/lib/generators/humpyard/skeleton/skeleton_generator.rb +99 -0
- data/lib/generators/humpyard/skeleton/templates/compass.config +14 -0
- data/lib/generators/humpyard/skeleton/templates/images/ajax-loader.gif +0 -0
- data/lib/generators/humpyard/skeleton/templates/images/grid.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/initializers/compass.rb +16 -0
- data/lib/generators/humpyard/skeleton/templates/initializers/haml.rb +3 -0
- data/lib/generators/humpyard/skeleton/templates/initializers/humpyard.rb +20 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/images/jstree/d.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/images/jstree/throbber.gif +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-1.5.1.js +8316 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-humpyard.js +790 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-rails.js +157 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-ui-1.8.10.js +11544 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery.form-2.64.js +803 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery.jstree.js +3510 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/jquery-ui-1.8.10.css +573 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/ie.sass +15 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/ie.scss +16 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/partials/_base.sass +12 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/partials/_base.scss +11 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/print.sass +3 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/print.scss +3 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/screen.sass +78 -0
- data/lib/generators/humpyard/skeleton/templates/stylesheets/screen.scss +90 -0
- data/lib/generators/humpyard/skeleton/templates/views/layout.html.haml +28 -0
- data/lib/html_to_textile.rb +220 -0
- data/lib/humpyard.rb +70 -0
- data/lib/humpyard/action_controller/base.rb +24 -0
- data/lib/humpyard/active_model/naming.rb +29 -0
- data/lib/humpyard/active_model/translation.rb +26 -0
- data/lib/humpyard/active_model/validators/publish_range.rb +14 -0
- data/lib/humpyard/active_record/acts/asset.rb +68 -0
- data/lib/humpyard/active_record/acts/container_element.rb +26 -0
- data/lib/humpyard/active_record/acts/element.rb +89 -0
- data/lib/humpyard/active_record/acts/page.rb +101 -0
- data/lib/humpyard/active_record/has/title_for_url.rb +75 -0
- data/lib/humpyard/compass.rb +6 -0
- data/lib/humpyard/config.rb +235 -0
- data/lib/humpyard/engine.rb +7 -0
- data/lib/humpyard/uri_parser.rb +16 -0
- data/lib/humpyard/uri_parser/assets_uri_parser.rb +15 -0
- data/lib/humpyard/uri_parser/pages_uri_parser.rb +15 -0
- data/lib/tasks/humpyard.rake +103 -0
- metadata +331 -0
metadata
ADDED
@@ -0,0 +1,331 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: humpyard
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sven G. Broenstrup
|
9
|
+
- Andreas Pieper
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2011-07-28 00:00:00.000000000 +02:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: builder
|
18
|
+
requirement: &70219914318980 !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: *70219914318980
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rails
|
29
|
+
requirement: &70219914318500 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 3.0.5
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: *70219914318500
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: haml
|
40
|
+
requirement: &70219914318020 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 3.0.25
|
46
|
+
type: :runtime
|
47
|
+
prerelease: false
|
48
|
+
version_requirements: *70219914318020
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: compass
|
51
|
+
requirement: &70219914317520 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 0.10.6
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: *70219914317520
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: acts_as_tree
|
62
|
+
requirement: &70219914317040 !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 0.1.1
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: *70219914317040
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: cancan
|
73
|
+
requirement: &70219914316540 !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ! '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 1.6.4
|
79
|
+
type: :runtime
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: *70219914316540
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: globalize3
|
84
|
+
requirement: &70219914316040 !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.0.11
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: *70219914316040
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: humpyard_form
|
95
|
+
requirement: &70219914315560 !ruby/object:Gem::Requirement
|
96
|
+
none: false
|
97
|
+
requirements:
|
98
|
+
- - ! '>='
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: 0.0.4
|
101
|
+
type: :runtime
|
102
|
+
prerelease: false
|
103
|
+
version_requirements: *70219914315560
|
104
|
+
description: Humpyard is a Rails CMS
|
105
|
+
email: info@humpyard.org
|
106
|
+
executables: []
|
107
|
+
extensions: []
|
108
|
+
extra_rdoc_files: []
|
109
|
+
files:
|
110
|
+
- lib/generators/humpyard/auth/auth_generator.rb
|
111
|
+
- lib/generators/humpyard/auth/templates/authlogic/controllers/user_sessions_controller.rb
|
112
|
+
- lib/generators/humpyard/auth/templates/authlogic/migration.rb
|
113
|
+
- lib/generators/humpyard/auth/templates/authlogic/models/ability.rb
|
114
|
+
- lib/generators/humpyard/auth/templates/authlogic/models/user.rb
|
115
|
+
- lib/generators/humpyard/auth/templates/authlogic/models/user_session.rb
|
116
|
+
- lib/generators/humpyard/auth/templates/authlogic/README
|
117
|
+
- lib/generators/humpyard/auth/templates/authlogic/views/user_sessions/new.html.haml
|
118
|
+
- lib/generators/humpyard/auth/templates/custom/README
|
119
|
+
- lib/generators/humpyard/auth/templates/devise/models/ability.rb
|
120
|
+
- lib/generators/humpyard/auth/templates/devise/README
|
121
|
+
- lib/generators/humpyard/auth/templates/fake/models/ability.rb
|
122
|
+
- lib/generators/humpyard/auth/templates/fake/README
|
123
|
+
- lib/generators/humpyard/auth/templates/simple/config/humpyard_users.yml
|
124
|
+
- lib/generators/humpyard/auth/templates/simple/controllers/user_sessions_controller.rb
|
125
|
+
- lib/generators/humpyard/auth/templates/simple/models/ability.rb
|
126
|
+
- lib/generators/humpyard/auth/templates/simple/README
|
127
|
+
- lib/generators/humpyard/auth/templates/simple/views/user_sessions/new.html.haml
|
128
|
+
- lib/generators/humpyard/element/element_generator.rb
|
129
|
+
- lib/generators/humpyard/element/templates/_edit.html.haml
|
130
|
+
- lib/generators/humpyard/element/templates/_inline_edit.html.haml
|
131
|
+
- lib/generators/humpyard/element/templates/_show.html.haml
|
132
|
+
- lib/generators/humpyard/element/templates/fixtures.yml
|
133
|
+
- lib/generators/humpyard/element/templates/migration.rb
|
134
|
+
- lib/generators/humpyard/element/templates/model.rb
|
135
|
+
- lib/generators/humpyard/element/templates/tests/rspec/model.rb
|
136
|
+
- lib/generators/humpyard/element/templates/tests/shoulda/model.rb
|
137
|
+
- lib/generators/humpyard/element/templates/tests/test_unit/model.rb
|
138
|
+
- lib/generators/humpyard/element/USAGE
|
139
|
+
- lib/generators/humpyard/page/page_generator.rb
|
140
|
+
- lib/generators/humpyard/page/templates/_edit.html.haml
|
141
|
+
- lib/generators/humpyard/page/templates/_show.html.haml
|
142
|
+
- lib/generators/humpyard/page/templates/fixtures.yml
|
143
|
+
- lib/generators/humpyard/page/templates/migration.rb
|
144
|
+
- lib/generators/humpyard/page/templates/model.rb
|
145
|
+
- lib/generators/humpyard/page/templates/tests/rspec/model.rb
|
146
|
+
- lib/generators/humpyard/page/templates/tests/shoulda/model.rb
|
147
|
+
- lib/generators/humpyard/page/templates/tests/test_unit/model.rb
|
148
|
+
- lib/generators/humpyard/page/USAGE
|
149
|
+
- lib/generators/humpyard/skeleton/skeleton_generator.rb
|
150
|
+
- lib/generators/humpyard/skeleton/templates/compass.config
|
151
|
+
- lib/generators/humpyard/skeleton/templates/images/ajax-loader.gif
|
152
|
+
- lib/generators/humpyard/skeleton/templates/images/grid.png
|
153
|
+
- lib/generators/humpyard/skeleton/templates/initializers/compass.rb
|
154
|
+
- lib/generators/humpyard/skeleton/templates/initializers/haml.rb
|
155
|
+
- lib/generators/humpyard/skeleton/templates/initializers/humpyard.rb
|
156
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/images/jstree/d.png
|
157
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/images/jstree/throbber.gif
|
158
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-1.5.1.js
|
159
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-humpyard.js
|
160
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-rails.js
|
161
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery-ui-1.8.10.js
|
162
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery.form-2.64.js
|
163
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/javascripts/jquery.jstree.js
|
164
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
165
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
166
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
167
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
168
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
169
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
170
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
171
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
172
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_222222_256x240.png
|
173
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png
|
174
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_454545_256x240.png
|
175
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_888888_256x240.png
|
176
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png
|
177
|
+
- lib/generators/humpyard/skeleton/templates/javascripts/jquery-ui-18/stylesheets/smoothness/jquery-ui-1.8.10.css
|
178
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/ie.sass
|
179
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/ie.scss
|
180
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/partials/_base.sass
|
181
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/partials/_base.scss
|
182
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/print.sass
|
183
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/print.scss
|
184
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/screen.sass
|
185
|
+
- lib/generators/humpyard/skeleton/templates/stylesheets/screen.scss
|
186
|
+
- lib/generators/humpyard/skeleton/templates/views/layout.html.haml
|
187
|
+
- lib/generators/humpyard/skeleton/USAGE
|
188
|
+
- lib/generators/humpyard.rb
|
189
|
+
- lib/html_to_textile.rb
|
190
|
+
- lib/humpyard/action_controller/base.rb
|
191
|
+
- lib/humpyard/active_model/naming.rb
|
192
|
+
- lib/humpyard/active_model/translation.rb
|
193
|
+
- lib/humpyard/active_model/validators/publish_range.rb
|
194
|
+
- lib/humpyard/active_record/acts/asset.rb
|
195
|
+
- lib/humpyard/active_record/acts/container_element.rb
|
196
|
+
- lib/humpyard/active_record/acts/element.rb
|
197
|
+
- lib/humpyard/active_record/acts/page.rb
|
198
|
+
- lib/humpyard/active_record/has/title_for_url.rb
|
199
|
+
- lib/humpyard/compass.rb
|
200
|
+
- lib/humpyard/config.rb
|
201
|
+
- lib/humpyard/engine.rb
|
202
|
+
- lib/humpyard/uri_parser/assets_uri_parser.rb
|
203
|
+
- lib/humpyard/uri_parser/pages_uri_parser.rb
|
204
|
+
- lib/humpyard/uri_parser.rb
|
205
|
+
- lib/humpyard.rb
|
206
|
+
- lib/tasks/humpyard.rake
|
207
|
+
- app/controllers/humpyard/assets_controller.rb
|
208
|
+
- app/controllers/humpyard/elements_controller.rb
|
209
|
+
- app/controllers/humpyard/errors_controller.rb
|
210
|
+
- app/controllers/humpyard/pages_controller.rb
|
211
|
+
- app/helpers/humpyard/pages_helper.rb
|
212
|
+
- app/models/humpyard/asset.rb
|
213
|
+
- app/models/humpyard/assets/paperclip_asset.rb
|
214
|
+
- app/models/humpyard/assets/youtube_asset.rb
|
215
|
+
- app/models/humpyard/element.rb
|
216
|
+
- app/models/humpyard/elements/box_element.rb
|
217
|
+
- app/models/humpyard/elements/media_element.rb
|
218
|
+
- app/models/humpyard/elements/news_element.rb
|
219
|
+
- app/models/humpyard/elements/sitemap_element.rb
|
220
|
+
- app/models/humpyard/elements/text_element.rb
|
221
|
+
- app/models/humpyard/news_item.rb
|
222
|
+
- app/models/humpyard/page.rb
|
223
|
+
- app/models/humpyard/pages/news_page.rb
|
224
|
+
- app/models/humpyard/pages/static_page.rb
|
225
|
+
- app/models/humpyard/pages/virtual_page.rb
|
226
|
+
- app/views/humpyard/assets/_edit.html.haml
|
227
|
+
- app/views/humpyard/assets/_index.html.haml
|
228
|
+
- app/views/humpyard/assets/_list.html.haml
|
229
|
+
- app/views/humpyard/assets/_list_item.html.haml
|
230
|
+
- app/views/humpyard/assets/_show.html.haml
|
231
|
+
- app/views/humpyard/assets/_show_asset.html.haml
|
232
|
+
- app/views/humpyard/assets/destroy.js.erb
|
233
|
+
- app/views/humpyard/assets/paperclip_assets/_edit.html.haml
|
234
|
+
- app/views/humpyard/assets/paperclip_assets/_info_table.html.haml
|
235
|
+
- app/views/humpyard/assets/paperclip_assets/_show.html.haml
|
236
|
+
- app/views/humpyard/assets/youtube_assets/_edit.html.haml
|
237
|
+
- app/views/humpyard/assets/youtube_assets/_show.html.haml
|
238
|
+
- app/views/humpyard/common/_head.html.haml
|
239
|
+
- app/views/humpyard/common/_page_construct.html.haml
|
240
|
+
- app/views/humpyard/elements/_edit.html.haml
|
241
|
+
- app/views/humpyard/elements/_inline_edit.haml
|
242
|
+
- app/views/humpyard/elements/_new.html.haml
|
243
|
+
- app/views/humpyard/elements/_show.html.haml
|
244
|
+
- app/views/humpyard/elements/_show_container.html.haml
|
245
|
+
- app/views/humpyard/elements/_show_view.html.haml
|
246
|
+
- app/views/humpyard/elements/box_elements/_edit.html.haml
|
247
|
+
- app/views/humpyard/elements/box_elements/_inline_edit.html.haml
|
248
|
+
- app/views/humpyard/elements/box_elements/_show.html.haml
|
249
|
+
- app/views/humpyard/elements/destroy.js.erb
|
250
|
+
- app/views/humpyard/elements/error.js.erb
|
251
|
+
- app/views/humpyard/elements/media_elements/_edit.html.haml
|
252
|
+
- app/views/humpyard/elements/media_elements/_show.html.haml
|
253
|
+
- app/views/humpyard/elements/news_elements/_edit.html.haml
|
254
|
+
- app/views/humpyard/elements/news_elements/_inline_edit.html.haml
|
255
|
+
- app/views/humpyard/elements/news_elements/_show.html.haml
|
256
|
+
- app/views/humpyard/elements/sitemap_elements/_edit.html.haml
|
257
|
+
- app/views/humpyard/elements/sitemap_elements/_inline_edit.html.haml
|
258
|
+
- app/views/humpyard/elements/sitemap_elements/_show.html.haml
|
259
|
+
- app/views/humpyard/elements/sitemap_elements/_show_part.html.haml
|
260
|
+
- app/views/humpyard/elements/text_elements/_edit.html.haml
|
261
|
+
- app/views/humpyard/elements/text_elements/_inline_edit.html.haml
|
262
|
+
- app/views/humpyard/elements/text_elements/_show.html.haml
|
263
|
+
- app/views/humpyard/pages/_content.html.haml
|
264
|
+
- app/views/humpyard/pages/_edit.html.haml
|
265
|
+
- app/views/humpyard/pages/_index.html.haml
|
266
|
+
- app/views/humpyard/pages/_show.html.haml
|
267
|
+
- app/views/humpyard/pages/_subtree.html.haml
|
268
|
+
- app/views/humpyard/pages/_tree.html.haml
|
269
|
+
- app/views/humpyard/pages/destroy.js.erb
|
270
|
+
- app/views/humpyard/pages/news_pages/_detail.html.haml
|
271
|
+
- app/views/humpyard/pages/news_pages/_edit.html.haml
|
272
|
+
- app/views/humpyard/pages/news_pages/_show.html.haml
|
273
|
+
- app/views/humpyard/pages/show.html.haml
|
274
|
+
- app/views/humpyard/pages/static_pages/_edit.html.haml
|
275
|
+
- app/views/humpyard/pages/static_pages/_show.html.haml
|
276
|
+
- app/views/humpyard/pages/virtual_pages/_edit.html.haml
|
277
|
+
- app/views/humpyard/pages/virtual_pages/_show.html.haml
|
278
|
+
- app/views/humpyard/pages/welcome.html.haml
|
279
|
+
- config/routes.rb
|
280
|
+
- config/locales/de.yml
|
281
|
+
- config/locales/en.yml
|
282
|
+
- db/migrate/20100321134138_base.rb
|
283
|
+
- db/migrate/20100330204700_create_box_element.rb
|
284
|
+
- db/migrate/20100401153655_page_template.rb
|
285
|
+
- db/migrate/20100409195732_page_types.rb
|
286
|
+
- db/migrate/20100413230623_element_yield.rb
|
287
|
+
- db/migrate/20100415132312_news_page.rb
|
288
|
+
- db/migrate/20100415193423_page_i18n_name.rb
|
289
|
+
- db/migrate/20100415213700_create_news_element.rb
|
290
|
+
- db/migrate/20100703120000_shared_elements.rb
|
291
|
+
- db/migrate/20101001142534_page_modified_at.rb
|
292
|
+
- db/migrate/20101003100138_create_sitemap_elements.rb
|
293
|
+
- db/migrate/20101003122108_create_humpyard_pages_virtual_pages.rb
|
294
|
+
- db/migrate/20101006070503_page_cache_control.rb
|
295
|
+
- db/migrate/20101104173743_create_media.rb
|
296
|
+
- db/migrate/20110425230524_media_with_link.rb
|
297
|
+
- compass/stylesheets/_humpyard.scss
|
298
|
+
- compass/stylesheets/humpyard/_backend.scss
|
299
|
+
- compass/stylesheets/humpyard/_base.scss
|
300
|
+
- compass/stylesheets/humpyard/_ie.scss
|
301
|
+
- compass/stylesheets/humpyard/_jquery_ui_overrides.scss
|
302
|
+
- compass/stylesheets/humpyard/_print.scss
|
303
|
+
- VERSION
|
304
|
+
- README.rdoc
|
305
|
+
- Gemfile
|
306
|
+
has_rdoc: true
|
307
|
+
homepage: http://humpyard.org/
|
308
|
+
licenses: []
|
309
|
+
post_install_message:
|
310
|
+
rdoc_options: []
|
311
|
+
require_paths:
|
312
|
+
- lib
|
313
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
314
|
+
none: false
|
315
|
+
requirements:
|
316
|
+
- - ! '>='
|
317
|
+
- !ruby/object:Gem::Version
|
318
|
+
version: '0'
|
319
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
320
|
+
none: false
|
321
|
+
requirements:
|
322
|
+
- - ! '>='
|
323
|
+
- !ruby/object:Gem::Version
|
324
|
+
version: '0'
|
325
|
+
requirements: []
|
326
|
+
rubyforge_project:
|
327
|
+
rubygems_version: 1.6.2
|
328
|
+
signing_key:
|
329
|
+
specification_version: 3
|
330
|
+
summary: Humpyard is a Rails CMS
|
331
|
+
test_files: []
|