refinery-clone 2.0.0.dev
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.
- checksums.yaml +15 -0
- data/app/controllers/refinery/clone/admin/clone_controller.rb +31 -0
- data/app/controllers/refinery/clone/clone_controller.rb +9 -0
- data/app/decorators/models/refinery/page_decorator.rb +36 -0
- data/app/helpers/refinery/clone/clone_helper.rb +8 -0
- data/app/models/refinery/page.rb +35 -0
- data/app/views/refinery/clone/admin/clone/_page.html.erb +39 -0
- data/app/views/refinery/clone/admin/clone/duplicate.html.erb +3 -0
- data/app/views/refinery/clone/admin/clone/index.html.erb +18 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +17 -0
- data/lib/generators/refinery/sidebar/sidebar_generator.rb +12 -0
- data/lib/refinery-clone.rb +1 -0
- data/lib/refinery/clone.rb +15 -0
- data/lib/refinery/clone/engine.rb +47 -0
- metadata +72 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZjMwMjVkNDVmMjQ3ZjY0NDE2MzUyN2Q3Y2M1NTcxOTc2Yjc4MjM3Ng==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MWU5MjAzZDdjZmI4Mjk4OTU2OTUxMjViNWM1NmJjMTE3ZGVkYzZmYg==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ODIyYWFhYmJmMGM1Nzc3NTUyMmZlYjgzNTc2OTI1NmYyOWMyODBmY2E3NTRi
|
10
|
+
ODEwMjMyZGNmYzhlOTRmY2U3ZTI2NDY5Y2QyMWRjZGM1OWViNzM2YzVjZjY5
|
11
|
+
MDRiMGIzZGNmNTA4ODcxMGNlOTg2MDRlODY3MzI3MWU2YWIwMWI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
Y2Y2MzQwOGNkMzE2YTA4ZDUwMjIyMmJmMmEyNmI4ZTY3ZTQ2NjY5ZjBlMzg1
|
14
|
+
OGMyNDNiNzI5OTVhYjE1MGU1MGUyNTUxZmEyY2I2ZGUwZmVjYmE0YTVkZmZk
|
15
|
+
MDBkNGY2NjA5YzJmYzkzNzA5ODQzNjZhMDQ3M2YzZjBlYzMwYTI=
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Refinery
|
2
|
+
module Clone
|
3
|
+
module Admin
|
4
|
+
class CloneController < ::Refinery::AdminController
|
5
|
+
include Pages::InstanceMethods
|
6
|
+
helper :'refinery/admin/pages'
|
7
|
+
|
8
|
+
crudify :'refinery/page',
|
9
|
+
:order => "lft ASC",
|
10
|
+
:include => [:translations, :children],
|
11
|
+
:paging => false
|
12
|
+
|
13
|
+
|
14
|
+
before_filter :restrict_controller, :except => [:duplicate, :index]
|
15
|
+
|
16
|
+
def duplicate
|
17
|
+
@old_page = Page::find_by_path(params[:path])
|
18
|
+
@old_page.clone_page
|
19
|
+
|
20
|
+
redirect_to('/refinery/clone/')
|
21
|
+
end
|
22
|
+
|
23
|
+
def index
|
24
|
+
@pages = find_all_pages
|
25
|
+
end
|
26
|
+
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Refinery::Page.class_eval do
|
2
|
+
|
3
|
+
require 'amoeba'
|
4
|
+
|
5
|
+
amoeba do
|
6
|
+
enable
|
7
|
+
include_field :parts
|
8
|
+
end
|
9
|
+
|
10
|
+
|
11
|
+
def clone_page
|
12
|
+
|
13
|
+
logger.debug "######################################"
|
14
|
+
logger.debug "Cloning page"
|
15
|
+
logger.debug "######################################"
|
16
|
+
|
17
|
+
|
18
|
+
new_page = self.amoeba_dup
|
19
|
+
new_page.update_attributes(title: "#{self.title} *")
|
20
|
+
|
21
|
+
Refinery::I18n.config.frontend_locales.each do |locale|
|
22
|
+
Globalize.locale = locale
|
23
|
+
new_page.update_attributes(title: "#{self.title} *",
|
24
|
+
menu_title: "#{self.menu_title}",
|
25
|
+
slug: "#{self.slug}-2",
|
26
|
+
browser_title: self.browser_title,
|
27
|
+
meta_description: self.meta_description)
|
28
|
+
|
29
|
+
self.parts.each do |part|
|
30
|
+
new_part = new_page.part_with_title(part.title)
|
31
|
+
new_part.update_attributes(body: part.body)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
Refinery::I18n.current_locale = Refinery::I18n.default_frontend_locale
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
|
2
|
+
class Page
|
3
|
+
|
4
|
+
# amoeba do
|
5
|
+
# enable
|
6
|
+
# include_field :parts
|
7
|
+
# end
|
8
|
+
|
9
|
+
|
10
|
+
def clone_page
|
11
|
+
|
12
|
+
logger.debug "######################################"
|
13
|
+
logger.debug "Cloning page"
|
14
|
+
logger.debug "######################################"
|
15
|
+
|
16
|
+
|
17
|
+
# new_page = self.amoeba_dup
|
18
|
+
# new_page.update_attributes(title: "#{self.title} *")
|
19
|
+
|
20
|
+
# Refinery::I18n.config.frontend_locales.each do |locale|
|
21
|
+
# Globalize.locale = locale
|
22
|
+
# new_page.update_attributes(title: "#{self.title} *",
|
23
|
+
# menu_title: "#{self.menu_title}",
|
24
|
+
# slug: "#{self.slug}-2",
|
25
|
+
# browser_title: self.browser_title,
|
26
|
+
# meta_description: self.meta_description)
|
27
|
+
|
28
|
+
# self.parts.each do |part|
|
29
|
+
# new_part = new_page.part_with_title(part.title)
|
30
|
+
# new_part.update_attributes(body: part.body)
|
31
|
+
# end
|
32
|
+
# end
|
33
|
+
# Refinery::I18n.current_locale = Refinery::I18n.default_frontend_locale
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
<li class='clearfix record icons' id="<%= dom_id(page) -%>">
|
2
|
+
<div class='clearfix'>
|
3
|
+
<% if page.children.present? %>
|
4
|
+
<span class="icon toggle <%= 'expanded' if Refinery::Pages.auto_expand_admin_tree %>" title="<%= t('expand_collapse', :scope => 'refinery.admin.pages') %>"></span>
|
5
|
+
<% else %>
|
6
|
+
<span class="icon"></span>
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<span class='title <%= 'toggle' if page.children.present? %>'>
|
10
|
+
<%= page_title_with_translations page %>
|
11
|
+
<%= page_meta_information page %>
|
12
|
+
</span>
|
13
|
+
<% if Refinery::I18n.frontend_locales.many? %>
|
14
|
+
<span class='locales'>
|
15
|
+
<% page.translations.sort_by{|t| Refinery::I18n.frontend_locales.index(t.locale)}.each do |translation| %>
|
16
|
+
<%= link_to refinery_icon_tag("flags/#{translation.locale}.png", :size => '16x11'),
|
17
|
+
refinery.edit_admin_page_path(page.nested_url, :switch_locale => translation.locale),
|
18
|
+
:class => 'locale' if translation.title.present? %>
|
19
|
+
<% end %>
|
20
|
+
</span>
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
<span class='actions'>
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
<%= link_to 'clone',
|
28
|
+
refinery.clone_admin_duplicate_path(page.nested_url),
|
29
|
+
:title => t('duplicate', :scope => 'refinery.admin.pages'),
|
30
|
+
:method => :post %>
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
</span>
|
35
|
+
</div>
|
36
|
+
<ul class='nested' data-ajax-content="<%= refinery.admin_children_pages_path(page.nested_url) %>">
|
37
|
+
<%= render(:partial => 'page', :collection => page.children) if Refinery::Pages.auto_expand_admin_tree %>
|
38
|
+
</ul>
|
39
|
+
</li>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<section id='records' class='tree'>
|
2
|
+
<% if @pages.any? %>
|
3
|
+
<ul id='sortable_list'>
|
4
|
+
<%= render :partial => 'page', :collection => @pages.roots %>
|
5
|
+
</ul>
|
6
|
+
<%= render '/refinery/admin/sortable_list', :continue_reordering => !!local_assigns[:continue_reordering] %>
|
7
|
+
|
8
|
+
<% else %>
|
9
|
+
<p>
|
10
|
+
<% unless searching? %>
|
11
|
+
<strong><%=t('.no_pages_yet')%></strong>
|
12
|
+
<% else %>
|
13
|
+
<%= t('no_results', :scope => 'refinery.admin.search') %>
|
14
|
+
<% end %>
|
15
|
+
</p>
|
16
|
+
<% end %>
|
17
|
+
|
18
|
+
</section>
|
data/config/routes.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Refinery::Core::Engine.routes.draw do
|
2
|
+
namespace :clone, :path => '' do
|
3
|
+
namespace :admin, :path => 'refinery' do
|
4
|
+
post 'clone/*path/duplicate', :to => 'clone#duplicate', :as => :duplicate
|
5
|
+
|
6
|
+
resources :clone do
|
7
|
+
|
8
|
+
|
9
|
+
end
|
10
|
+
namespace :clone, :path => 'clone' do
|
11
|
+
|
12
|
+
end
|
13
|
+
scope :path => 'clone' do
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'refinery/clone'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'refinerycms-core'
|
2
|
+
|
3
|
+
module Refinery
|
4
|
+
autoload :CloneGenerator, 'generators/refinery/clone/clone_generator'
|
5
|
+
|
6
|
+
module Clone
|
7
|
+
require 'refinery/clone/engine'
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def root
|
11
|
+
@root ||= Pathname.new(File.expand_path('../../../', __FILE__))
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Refinery
|
2
|
+
module Clone
|
3
|
+
class Engine < ::Rails::Engine
|
4
|
+
extend Refinery::Engine
|
5
|
+
isolate_namespace Refinery::Clone
|
6
|
+
|
7
|
+
engine_name :refinery_clone
|
8
|
+
|
9
|
+
initializer "static assets" do |app|
|
10
|
+
# app.middleware.insert_after ::ActionDispatch::Static, ::ActionDispatch::Static, "#{root}/public"
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
config.to_prepare do
|
15
|
+
Page.module_eval do
|
16
|
+
::ApplicationController.send :helper, Refinery::Clone::CloneHelper
|
17
|
+
Refinery::AdminController.send :helper, Refinery::Clone::CloneHelper
|
18
|
+
end
|
19
|
+
|
20
|
+
Dir.glob(__FILE__ + "../../../../app/decorators/**/*_decorator*.rb").each do |c|
|
21
|
+
require_dependency(c)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
config.to_prepare do
|
26
|
+
::ApplicationController.helper(CloneHelper)
|
27
|
+
end
|
28
|
+
|
29
|
+
config.after_initialize do
|
30
|
+
Refinery::Plugin.register do |plugin|
|
31
|
+
plugin.pathname = root
|
32
|
+
plugin.name = 'refinery_clone'
|
33
|
+
|
34
|
+
plugin.url = '/refinery/clone'
|
35
|
+
end
|
36
|
+
|
37
|
+
Refinery.register_extension(Refinery::Clone)
|
38
|
+
|
39
|
+
Dir.glob(File.join(root, "app/decorators/**/*_decorator.rb")) do |c|
|
40
|
+
Rails.application.config.cache_classes ? require(c) : load(c)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: refinery-clone
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0.dev
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Graham Hadgraft
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: amoeba
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ! '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: Clone CMS pages in refinery
|
28
|
+
email: info@stylefoundry.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- app/controllers/refinery/clone/admin/clone_controller.rb
|
34
|
+
- app/controllers/refinery/clone/clone_controller.rb
|
35
|
+
- app/decorators/models/refinery/page_decorator.rb
|
36
|
+
- app/helpers/refinery/clone/clone_helper.rb
|
37
|
+
- app/models/refinery/page.rb
|
38
|
+
- app/views/refinery/clone/admin/clone/_page.html.erb
|
39
|
+
- app/views/refinery/clone/admin/clone/duplicate.html.erb
|
40
|
+
- app/views/refinery/clone/admin/clone/index.html.erb
|
41
|
+
- config/locales/en.yml
|
42
|
+
- config/routes.rb
|
43
|
+
- lib/generators/refinery/sidebar/sidebar_generator.rb
|
44
|
+
- lib/refinery-clone.rb
|
45
|
+
- lib/refinery/clone.rb
|
46
|
+
- lib/refinery/clone/engine.rb
|
47
|
+
homepage: http://github.com/stylefoundry/refinery-sidebar
|
48
|
+
licenses:
|
49
|
+
- MIT
|
50
|
+
metadata: {}
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ! '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ! '>'
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 1.3.1
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 2.2.1
|
68
|
+
signing_key:
|
69
|
+
specification_version: 4
|
70
|
+
summary: Clone existing CMS pages in refinery
|
71
|
+
test_files: []
|
72
|
+
has_rdoc:
|