refinerycms 0.9.4.5 → 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README +20 -9
- data/Rakefile +10 -0
- data/bin/refinery +53 -0
- data/bin/refinery-update-core +23 -0
- data/config/environment.rb +2 -2
- data/config/preinitializer.rb +24 -0
- data/public/javascripts/application.js +0 -1
- data/public/javascripts/jquery/jquery.js +4373 -8
- data/public/javascripts/livepipe.js +10 -186
- data/public/javascripts/{admin.js → refinery/admin.js} +0 -0
- data/public/javascripts/{wymeditor → refinery}/boot_wym.js +0 -0
- data/public/javascripts/{dialog.js → refinery/dialog.js} +0 -0
- data/public/javascripts/{parse_url.js → refinery/parse_url.js} +0 -0
- data/public/javascripts/{prototype.enhancements.js → refinery/prototype.enhancements.js} +0 -0
- data/public/javascripts/{tooltips.js → refinery/tooltips.js} +0 -0
- data/public/javascripts/tabs.js +135 -133
- data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +4 -5
- data/public/stylesheets/formatting.css +5 -0
- data/public/stylesheets/home.css +5 -0
- data/public/stylesheets/{formatting.css.example → refinery/formatting.css} +45 -34
- data/public/stylesheets/refinery/home.css +0 -0
- data/public/stylesheets/{refinery.css → refinery/refinery.css} +77 -36
- data/public/stylesheets/refinery/theme.css +36 -0
- data/public/stylesheets/{thickbox.css → refinery/thickbox.css} +0 -0
- data/public/stylesheets/{tooltips.css → refinery/tooltips.css} +0 -0
- data/public/stylesheets/theme.css +1 -36
- data/script/about +3 -0
- data/script/console +3 -0
- data/script/dbconsole +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/performance/profiler +3 -0
- data/script/performance/request +3 -0
- data/script/plugin +3 -0
- data/script/process/inspector +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/vendor/plugins/authentication/app/views/sessions/new.html.erb +5 -5
- data/vendor/plugins/images/app/views/admin/images/index.html.erb +4 -5
- data/vendor/plugins/images/app/views/admin/images/insert.html.erb +1 -1
- data/vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb +3 -4
- data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +4 -5
- data/vendor/plugins/pages/app/views/admin/page_dialogs/_page_link.html.erb +3 -4
- data/vendor/plugins/pages/app/views/admin/page_dialogs/link_to.html.erb +4 -4
- data/vendor/plugins/pages/app/views/admin/pages/_form.html.erb +4 -2
- data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +4 -5
- data/vendor/plugins/refinery/app/views/admin/_head.html.erb +7 -5
- data/vendor/plugins/refinery/app/views/admin/_menu.html.erb +2 -2
- data/vendor/plugins/refinery/app/views/layouts/admin.html.erb +25 -17
- data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +1 -1
- data/vendor/plugins/refinery/init.rb +1 -0
- data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/index.html.erb +9 -12
- data/vendor/plugins/refinery/lib/refinery/admin_base_controller.rb +2 -3
- data/vendor/plugins/refinery_dialogs/app/views/layouts/admin_dialog.html.erb +1 -1
- data/vendor/plugins/resources/app/views/admin/resources/index.html.erb +3 -4
- metadata +35 -85
- data/public/javascripts/jquery/README +0 -67
- data/public/javascripts/jquery/jquery.ui.draggable.js +0 -1
- data/public/javascripts/jquery/jquery.ui.js +0 -1
- data/public/javascripts/jquery/jquery.ui.resizable.js +0 -1
- data/public/javascripts/jquery/jquery.ui.sortable.js +0 -1
- data/public/javascripts/overlabel.js +0 -66
- data/public/stylesheets/application.css.example +0 -76
- data/public/stylesheets/home.css.example +0 -27
- data/public/stylesheets/overlabel.css +0 -21
data/script/runner
ADDED
data/script/server
ADDED
@@ -2,15 +2,15 @@
|
|
2
2
|
<div class='clearfix'>
|
3
3
|
<div class='field session_username'>
|
4
4
|
<%= f.label :login %>
|
5
|
-
<%= f.text_field :login
|
5
|
+
<%= f.text_field :login %>
|
6
6
|
</div>
|
7
7
|
<div class='field session_password'>
|
8
8
|
<%= f.label :password %>
|
9
|
-
<%= f.password_field :password
|
9
|
+
<%= f.password_field :password %>
|
10
10
|
</div>
|
11
11
|
</div>
|
12
|
-
<div class='field'>
|
13
|
-
<%= f.label :remember_me, nil
|
12
|
+
<div class='field remember_me'>
|
13
|
+
<%= f.label :remember_me, nil %>
|
14
14
|
<%= f.check_box :remember_me %>
|
15
15
|
</div>
|
16
16
|
<div class='form-actions'>
|
@@ -18,4 +18,4 @@
|
|
18
18
|
or
|
19
19
|
<%= link_to "Cancel", root_url %>
|
20
20
|
</div>
|
21
|
-
<% end -%>
|
21
|
+
<% end -%>
|
@@ -1,5 +1,8 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_images_url} %>
|
5
|
+
</li>
|
3
6
|
<li>
|
4
7
|
<%= link_to "Create New Image", new_admin_image_url, :class => "add_icon" %>
|
5
8
|
</li>
|
@@ -14,11 +17,7 @@
|
|
14
17
|
<% end %>
|
15
18
|
</ul>
|
16
19
|
</div>
|
17
|
-
<div id='records'>
|
18
|
-
<div id='list_actions'>
|
19
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_images_url} %>
|
20
|
-
</div>
|
21
|
-
|
20
|
+
<div id='records'>
|
22
21
|
<% if searching? %>
|
23
22
|
<h2>Search Results for "<%= params[:search] %>"</h2>
|
24
23
|
<% if @images.size > 0 %>
|
@@ -1,5 +1,8 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_inquiries_url} %>
|
5
|
+
</li>
|
3
6
|
<li>
|
4
7
|
<%= link_to "Update who gets notified", edit_admin_inquiry_setting_url(InquirySetting.notification_recipients),
|
5
8
|
:class => "user_comment_icon" %>
|
@@ -11,10 +14,6 @@
|
|
11
14
|
</ul>
|
12
15
|
</div>
|
13
16
|
<div id='records'>
|
14
|
-
<div id='list_actions'>
|
15
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_inquiries_url} %>
|
16
|
-
</div>
|
17
|
-
|
18
17
|
<% if searching? %>
|
19
18
|
<h2>Search Results for "<%= params[:search] %>"</h2>
|
20
19
|
<%= render :partial => "inquiry", :collection => @inquiries %>
|
@@ -1,15 +1,14 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_news_items_url} %>
|
5
|
+
</li>
|
3
6
|
<li>
|
4
7
|
<%= link_to "Create News Item", new_admin_news_item_url, :class => "add_icon" %>
|
5
8
|
</li>
|
6
9
|
</ul>
|
7
10
|
</div>
|
8
|
-
<div id='records'>
|
9
|
-
<div id='list_actions'>
|
10
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_news_items_url} %>
|
11
|
-
</div>
|
12
|
-
|
11
|
+
<div id='records'>
|
13
12
|
<% if searching? %>
|
14
13
|
<h2>Search Results for "<%= params[:search] %>"</h2>
|
15
14
|
<% if @news_items.size > 0 %>
|
@@ -1,6 +1,5 @@
|
|
1
1
|
<% linked = (page_link.url == params[:current_link]) unless params[:current_link].blank? %>
|
2
|
-
<li class='clearfix<%= " child" if child %><%= " linked" if linked%>' id="<%= dom_id(page_link) -%>">
|
2
|
+
<li class='clearfix<%= " child#{child}" if child %><%= " linked" if linked%>' id="<%= dom_id(page_link) -%>">
|
3
3
|
<%= link_to page_link.title_with_meta, page_link.url, :title => 'Link to this Page', :rel => page_link.title, :class => 'page_link' %>
|
4
|
-
|
5
|
-
|
6
|
-
</li>
|
4
|
+
</li>
|
5
|
+
<%= render :partial => 'page_link', :collection => page_link.children, :locals => {:child => child ? (child+1) : 1} unless page_link.children.empty? %>
|
@@ -76,11 +76,11 @@
|
|
76
76
|
<label for='web_address_target_blank' class='stripped'>Check this box to have the link open in a new browser window.</label>
|
77
77
|
<p>
|
78
78
|
<strong>Not sure what to put in the box above?</strong>
|
79
|
-
<ol>
|
80
|
-
<li>Find the page on the web you want to link to.</li>
|
81
|
-
<li>Copy the web address from your browser's address bar and paste it into the box above.</li>
|
82
|
-
</ol>
|
83
79
|
</p>
|
80
|
+
<ol>
|
81
|
+
<li>Find the page on the web you want to link to.</li>
|
82
|
+
<li>Copy the web address from your browser's address bar and paste it into the box above.</li>
|
83
|
+
</ol>
|
84
84
|
</div>
|
85
85
|
</div>
|
86
86
|
<div id='email_address_area' <%= "style='display: none'" unless email_address_area_selected %> class='dialog_area'>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
</li>
|
15
15
|
<% end %>
|
16
16
|
</ul>
|
17
|
-
<% if RefinerySetting.find_or_set(:new_page_parts, false)
|
17
|
+
<% if RefinerySetting.find_or_set(:new_page_parts, false) %>
|
18
18
|
<ul id='page_parts_controls'>
|
19
19
|
<li>
|
20
20
|
<%= link_to refinery_icon_tag("add.png"), "#", :id => "add_page_part", :title => "Create Content Section" %>
|
@@ -177,7 +177,8 @@
|
|
177
177
|
this.hide();
|
178
178
|
e.stop();
|
179
179
|
});
|
180
|
-
|
180
|
+
|
181
|
+
<% if RefinerySetting.find_or_set(:new_page_parts, false) %>
|
181
182
|
$('add_page_part').observe('click', function(e) {
|
182
183
|
tb_show('Create Content Section', '#?auto_size_content=true&draggable=true&titlebar=true&inlineId=new_page_part_dialog&TB_inline=true&modal=true');
|
183
184
|
|
@@ -251,6 +252,7 @@
|
|
251
252
|
|
252
253
|
e.stop();
|
253
254
|
});
|
255
|
+
<% end %>
|
254
256
|
});
|
255
257
|
|
256
258
|
custom_title_image_changed = function()
|
@@ -1,5 +1,8 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_pages_url} %>
|
5
|
+
</li>
|
3
6
|
<li>
|
4
7
|
<%= link_to "Create New Page", new_admin_page_url, :class => "add_icon" %>
|
5
8
|
</li>
|
@@ -11,11 +14,7 @@
|
|
11
14
|
<% end %>
|
12
15
|
</ul>
|
13
16
|
</div>
|
14
|
-
<div id='records' class='tree'>
|
15
|
-
<div id='list_actions'>
|
16
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_pages_url} %>
|
17
|
-
</div>
|
18
|
-
|
17
|
+
<div id='records' class='tree'>
|
19
18
|
<% if searching? %>
|
20
19
|
<% if @pages.size > 0 %>
|
21
20
|
<h2>Search Results for "<%= params[:search] %>"</h2>
|
@@ -3,24 +3,26 @@
|
|
3
3
|
<title>
|
4
4
|
<%= RefinerySetting.find_or_set(:site_name, 'Company Name').titleize %> - Refinery
|
5
5
|
</title>
|
6
|
-
<%= stylesheet_link_tag 'thickbox', 'refinery', 'tooltips' %>
|
6
|
+
<%= stylesheet_link_tag 'refinery/thickbox', 'refinery/refinery', 'refinery/tooltips' %>
|
7
7
|
<% unless local_request? %>
|
8
8
|
<script type='text/javascript' src="http://www.google.com/jsapi"></script>
|
9
9
|
<script type='text/javascript'>
|
10
10
|
google.load("prototype", "1.6.1");
|
11
|
-
google.load("scriptaculous", "1.8.
|
11
|
+
google.load("scriptaculous", "1.8.3");
|
12
|
+
google.load("jquery", "1.3");
|
12
13
|
</script>
|
13
14
|
<% else %>
|
14
|
-
<%= javascript_include_tag 'prototype', 'scriptaculous' %>
|
15
|
+
<%= javascript_include_tag 'prototype', 'scriptaculous', 'jquery/jquery' %>
|
15
16
|
<% end %>
|
16
|
-
|
17
|
+
<script type='text/javascript'>jQuery.noConflict();</script>
|
18
|
+
<%= javascript_include_tag 'refinery/prototype.enhancements.js', 'fastinit', 'refinery/tooltips', 'livepipe', 'tabs', 'thickbox', "wymeditor/jquery.refinery.wymeditor.js", 'refinery/boot_wym', 'refinery/admin' %>
|
17
19
|
<%= "<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>" if RefinerySetting.find_or_set(:show_firebug_lite, false) == true %>
|
18
20
|
<% unless flash.empty? %>
|
19
21
|
<script type='text/javascript'>
|
20
22
|
FastInit.addOnLoad(function()
|
21
23
|
{
|
22
24
|
$('flash').appear();
|
23
|
-
});
|
25
|
+
});
|
24
26
|
</script>
|
25
27
|
<% end %>
|
26
28
|
<%= yield :head %>
|
@@ -10,8 +10,8 @@
|
|
10
10
|
end -%>
|
11
11
|
<% if Refinery::Plugins.active.in_menu.size > 1 %>
|
12
12
|
<li>
|
13
|
-
<%= link_to " ", "
|
14
|
-
<%= link_to " ", "
|
13
|
+
<%= link_to " ", "", :id => "menu_reorder", :title => "Reorder menu" %>
|
14
|
+
<%= link_to " ", "", :id => "menu_reorder_done", :title => "I'm done reordering the menu", :style => "display: none;" %>
|
15
15
|
</li>
|
16
16
|
<% end %>
|
17
17
|
<li id='logout'>
|
@@ -1,25 +1,33 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
2
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
3
|
<%= render :partial => "/admin/head" %>
|
5
4
|
<body>
|
6
|
-
<div id=
|
7
|
-
<div
|
8
|
-
<
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
<%= link_to image_tag("refinery/logo.png", :alt => "
|
14
|
-
<%= render :partial => "/admin/menu" %>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
5
|
+
<div id="page_container"<%= " class='login'" unless logged_in? %><%= " class='splash'" if logged_in? and params[:action] == "index" %>>
|
6
|
+
<div id="page">
|
7
|
+
<div class="clearfix" id="header">
|
8
|
+
<h1>
|
9
|
+
<%= just_installed? ? "Welcome to Refinery" : link_to(RefinerySetting[:site_name].titleize, admin_root_url) %>
|
10
|
+
</h1>
|
11
|
+
<%= link_to "View public site", "/", :target => "_blank", :id => "site_link" if logged_in? %>
|
12
|
+
<%= link_to image_tag("#{"http://www.refinerycms.com/images/" unless local_request?}refinery/logo.png", :alt => "Refinery (tm) Content Manager"), "http://www.refinerycms.com", :target => "_blank", :id => "logo" -%>
|
13
|
+
<%= render :partial => "/admin/menu" if logged_in? %>
|
14
|
+
</div>
|
15
|
+
<div id="content" class="clearfix">
|
16
|
+
<div id="flash_container">
|
17
|
+
<%= render :partial => "/shared/message" %>
|
18
|
+
</div>
|
19
|
+
<%= yield %>
|
20
20
|
</div>
|
21
|
-
<%= yield %>
|
22
21
|
</div>
|
22
|
+
<% if RefinerySetting.find_or_set(:show_backend_branding, false) %>
|
23
|
+
<div id="footer">
|
24
|
+
<%= link_to image_tag("#{"http://www.resolvedigital.com/images/" unless local_request?}refinery/resolve_digital_footer_logo.png", :alt => "Resolve Digital"), "http://www.resolvedigital.com", :target => "_blank", :id => "footer_logo" %>
|
25
|
+
<p>
|
26
|
+
Refinery built by <%= link_to "Resolve Digital", "http://www.resolvedigital.com", :target => "_blank" %>.
|
27
|
+
Copyright 2009 Resolve Digital.
|
28
|
+
</p>
|
29
|
+
</div>
|
30
|
+
<% end %>
|
23
31
|
</div>
|
24
32
|
</body>
|
25
33
|
</html>
|
@@ -1,6 +1,8 @@
|
|
1
1
|
<div id='actions'>
|
2
|
-
<h2>Actions</h2>
|
3
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%%= render :partial => "/shared/admin/search", :locals => {:url => admin_<%= plural_name %>_url} %>
|
5
|
+
</li>
|
4
6
|
<li>
|
5
7
|
<%%= link_to "Create New <%= $title_name %>", new_admin_<%= singular_name %>_url, :class => "add_icon" %>
|
6
8
|
</li>
|
@@ -12,11 +14,7 @@
|
|
12
14
|
<%% end %>
|
13
15
|
</ul>
|
14
16
|
</div>
|
15
|
-
<div id='records'>
|
16
|
-
<div id='list_actions'>
|
17
|
-
<%%= render :partial => "/shared/admin/search", :locals => {:url => admin_<%= plural_name %>_url} %>
|
18
|
-
</div>
|
19
|
-
|
17
|
+
<div id='records'>
|
20
18
|
<%% if searching? %>
|
21
19
|
<h2>Search Results for "<%%= params[:search] %>"</h2>
|
22
20
|
<%% if @<%= plural_name %>.size > 0 %>
|
@@ -26,12 +24,11 @@
|
|
26
24
|
<%% end %>
|
27
25
|
<%% else %>
|
28
26
|
<%% if @<%= plural_name %>.size > 0 %>
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
<%%= will_paginate @<%= plural_name %>, :previous_label => '«', :next_label => '»' %>
|
27
|
+
<%%= will_paginate @<%= plural_name %>, :previous_label => '«', :next_label => '»' %>
|
28
|
+
<ul id='sortable_list'>
|
29
|
+
<%%= render :partial => "sortable_list" %>
|
30
|
+
</ul>
|
31
|
+
<%%= will_paginate @<%= plural_name %>, :previous_label => '«', :next_label => '»' %>
|
35
32
|
<%% else %>
|
36
33
|
<p>
|
37
34
|
<strong>
|
@@ -27,10 +27,9 @@ protected
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def restrict_controller
|
30
|
-
if
|
30
|
+
if Refinery::Plugins.active.reject {|plugin| params[:controller] !~ Regexp.new(plugin.menu_match) }.empty?
|
31
31
|
flash[:error] = "You do not have permission to access the #{params[:controller]} controller on this plugin."
|
32
|
-
logger.warn
|
33
|
-
#redirect_to admin_root_url
|
32
|
+
logger.warn "'#{current_user.login}' tried to access '#{params[:controller]}'"
|
34
33
|
end
|
35
34
|
end
|
36
35
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<% else %>
|
12
12
|
<%= javascript_include_tag "prototype", "scriptaculous" %>
|
13
13
|
<% end %>
|
14
|
-
<%= javascript_include_tag "fastinit", "tooltips", "dialog" %>
|
14
|
+
<%= javascript_include_tag "fastinit", "refinery/tooltips", "refinery/dialog" %>
|
15
15
|
<%= yield :head %>
|
16
16
|
<%= "<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>" if RefinerySetting.find_or_set(:show_firebug_lite, false) == true %>
|
17
17
|
<% if @flash %>
|
@@ -1,15 +1,14 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
|
+
<li>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_resources_url} %>
|
5
|
+
</li>
|
3
6
|
<li>
|
4
7
|
<%= link_to "Upload New File", new_admin_resource_url, :class => "add_icon" %>
|
5
8
|
</li>
|
6
9
|
</ul>
|
7
10
|
</div>
|
8
11
|
<div id='records'>
|
9
|
-
<div id='list_actions'>
|
10
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url => admin_resources_url} %>
|
11
|
-
</div>
|
12
|
-
|
13
12
|
<% if searching? %>
|
14
13
|
<h2>Search Results for "<%= params[:search] %>"</h2>
|
15
14
|
<% if @resources.size > 0 %>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: refinerycms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Resolve Digital
|
@@ -11,73 +11,15 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2009-
|
15
|
-
default_executable:
|
16
|
-
dependencies:
|
17
|
-
|
18
|
-
name: rake
|
19
|
-
type: :runtime
|
20
|
-
version_requirement:
|
21
|
-
version_requirements: !ruby/object:Gem::Requirement
|
22
|
-
requirements:
|
23
|
-
- - ">="
|
24
|
-
- !ruby/object:Gem::Version
|
25
|
-
version: 0.8.3
|
26
|
-
version:
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: unicode
|
29
|
-
type: :runtime
|
30
|
-
version_requirement:
|
31
|
-
version_requirements: !ruby/object:Gem::Requirement
|
32
|
-
requirements:
|
33
|
-
- - ">="
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: "0.1"
|
36
|
-
version:
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: rails
|
39
|
-
type: :runtime
|
40
|
-
version_requirement:
|
41
|
-
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
requirements:
|
43
|
-
- - ">="
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: 2.3.4
|
46
|
-
version:
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: will_paginate
|
49
|
-
type: :runtime
|
50
|
-
version_requirement:
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - ">="
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: 2.3.11
|
56
|
-
version:
|
57
|
-
- !ruby/object:Gem::Dependency
|
58
|
-
name: friendly_id
|
59
|
-
type: :runtime
|
60
|
-
version_requirement:
|
61
|
-
version_requirements: !ruby/object:Gem::Requirement
|
62
|
-
requirements:
|
63
|
-
- - ">="
|
64
|
-
- !ruby/object:Gem::Version
|
65
|
-
version: 2.2.2
|
66
|
-
version:
|
67
|
-
- !ruby/object:Gem::Dependency
|
68
|
-
name: aasm
|
69
|
-
type: :runtime
|
70
|
-
version_requirement:
|
71
|
-
version_requirements: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 2.1.3
|
76
|
-
version:
|
14
|
+
date: 2009-11-04 00:00:00 +13:00
|
15
|
+
default_executable: refinery
|
16
|
+
dependencies: []
|
17
|
+
|
77
18
|
description: A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.
|
78
19
|
email: info@refinerycms.com
|
79
|
-
executables:
|
80
|
-
|
20
|
+
executables:
|
21
|
+
- refinery
|
22
|
+
- refinery-update-core
|
81
23
|
extensions: []
|
82
24
|
|
83
25
|
extra_rdoc_files:
|
@@ -85,6 +27,7 @@ extra_rdoc_files:
|
|
85
27
|
- CONTRIBUTORS
|
86
28
|
- LICENSE
|
87
29
|
files:
|
30
|
+
- Rakefile
|
88
31
|
- lib/refinery_initializer.rb
|
89
32
|
- app/controllers/application.rb
|
90
33
|
- app/controllers/application_controller.rb
|
@@ -97,6 +40,7 @@ files:
|
|
97
40
|
- config/environments/test.rb
|
98
41
|
- config/initializers/inflections.rb
|
99
42
|
- config/initializers/mime_types.rb
|
43
|
+
- config/preinitializer.rb
|
100
44
|
- config/rackspace_cloudfiles.yml
|
101
45
|
- config/routes.rb
|
102
46
|
- db/migrate/20090903030652_remove_title_from_resources.rb
|
@@ -211,34 +155,28 @@ files:
|
|
211
155
|
- public/images/wymeditor/skins/refinery/paragraph.png
|
212
156
|
- public/images/wymeditor/skins/refinery/right.png
|
213
157
|
- public/images/wymeditor/skins/wymeditor_icon.png
|
214
|
-
- public/javascripts/admin.js
|
158
|
+
- public/javascripts/refinery/admin.js
|
215
159
|
- public/javascripts/application.js
|
216
160
|
- public/javascripts/builder.js
|
217
161
|
- public/javascripts/controls.js
|
218
|
-
- public/javascripts/dialog.js
|
162
|
+
- public/javascripts/refinery/dialog.js
|
219
163
|
- public/javascripts/dragdrop.js
|
220
164
|
- public/javascripts/effects.js
|
221
165
|
- public/javascripts/fastinit.js
|
222
166
|
- public/javascripts/jquery/GPL-LICENSE.txt
|
223
167
|
- public/javascripts/jquery/jquery.js
|
224
|
-
- public/javascripts/jquery/jquery.ui.draggable.js
|
225
|
-
- public/javascripts/jquery/jquery.ui.js
|
226
|
-
- public/javascripts/jquery/jquery.ui.resizable.js
|
227
|
-
- public/javascripts/jquery/jquery.ui.sortable.js
|
228
168
|
- public/javascripts/jquery/MIT-LICENSE.txt
|
229
|
-
- public/javascripts/jquery/README
|
230
169
|
- public/javascripts/lightbox.js
|
231
170
|
- public/javascripts/livepipe.js
|
232
|
-
- public/javascripts/
|
233
|
-
- public/javascripts/
|
234
|
-
- public/javascripts/prototype.enhancements.js
|
171
|
+
- public/javascripts/refinery/parse_url.js
|
172
|
+
- public/javascripts/refinery/prototype.enhancements.js
|
235
173
|
- public/javascripts/prototype.js
|
236
174
|
- public/javascripts/scriptaculous.js
|
237
175
|
- public/javascripts/slider.js
|
238
176
|
- public/javascripts/tabs.js
|
239
177
|
- public/javascripts/thickbox.js
|
240
|
-
- public/javascripts/tooltips.js
|
241
|
-
- public/javascripts/
|
178
|
+
- public/javascripts/refinery/tooltips.js
|
179
|
+
- public/javascripts/refinery/boot_wym.js
|
242
180
|
- public/javascripts/wymeditor/jquery.refinery.wymeditor.js
|
243
181
|
- public/javascripts/wymeditor/lang/ca.js
|
244
182
|
- public/javascripts/wymeditor/lang/cs.js
|
@@ -263,24 +201,36 @@ files:
|
|
263
201
|
- public/javascripts/wymeditor/skins/refinery/skin.js
|
264
202
|
- public/robots.txt
|
265
203
|
- public/stylesheets/application.css
|
266
|
-
- public/stylesheets/application.css.example
|
267
204
|
- public/stylesheets/formatting.css
|
268
|
-
- public/stylesheets/formatting.css.example
|
269
205
|
- public/stylesheets/home.css
|
270
|
-
- public/stylesheets/home.css.example
|
271
206
|
- public/stylesheets/ie6.css
|
272
207
|
- public/stylesheets/ie7.css
|
273
208
|
- public/stylesheets/lightbox.css
|
274
|
-
- public/stylesheets/
|
275
|
-
- public/stylesheets/refinery.css
|
209
|
+
- public/stylesheets/refinery/refinery.css
|
210
|
+
- public/stylesheets/refinery/home.css
|
211
|
+
- public/stylesheets/refinery/formatting.css
|
276
212
|
- public/stylesheets/theme.css
|
277
|
-
- public/stylesheets/
|
278
|
-
- public/stylesheets/
|
213
|
+
- public/stylesheets/refinery/theme.css
|
214
|
+
- public/stylesheets/refinery/thickbox.css
|
215
|
+
- public/stylesheets/refinery/tooltips.css
|
279
216
|
- public/stylesheets/wymeditor/skins/refinery/skin.css
|
280
217
|
- public/stylesheets/wymeditor/skins/refinery/wymiframe.css
|
281
218
|
- public/wymeditor/GPL-license.txt
|
282
219
|
- public/wymeditor/MIT-license.txt
|
283
220
|
- public/wymeditor/README
|
221
|
+
- script/about
|
222
|
+
- script/console
|
223
|
+
- script/dbconsole
|
224
|
+
- script/destroy
|
225
|
+
- script/generate
|
226
|
+
- script/performance/profiler
|
227
|
+
- script/performance/request
|
228
|
+
- script/plugin
|
229
|
+
- script/runner
|
230
|
+
- script/server
|
231
|
+
- script/process/inspector
|
232
|
+
- script/process/reaper
|
233
|
+
- script/process/spawner
|
284
234
|
- vendor/plugins/acts_as_indexed/CHANGELOG
|
285
235
|
- vendor/plugins/acts_as_indexed/init.rb
|
286
236
|
- vendor/plugins/acts_as_indexed/lib/acts_as_indexed.rb
|