Commit 6d419ee5fe0b5c24537856c67f7e99f64d144bd9
1 parent
313fc8ca
Exists in
master
and in
29 other branches
ActionItem862: last adjustements
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
script/apply-template
@@ -69,7 +69,7 @@ when 'person' | @@ -69,7 +69,7 @@ when 'person' | ||
69 | if person != template | 69 | if person != template |
70 | report_doing offset, person.identifier | 70 | report_doing offset, person.identifier |
71 | person.apply_template(template) | 71 | person.apply_template(template) |
72 | - move_articles_to_blog(person) | 72 | + # move_articles_to_blog(person) # does not make sense in most cases |
73 | report_done | 73 | report_done |
74 | end | 74 | end |
75 | offset = offset + 1 | 75 | offset = offset + 1 |
script/release-v0.13.0-ecosol
@@ -92,7 +92,7 @@ script/runner 'env = Environment.default | @@ -92,7 +92,7 @@ script/runner 'env = Environment.default | ||
92 | right.blocks << [FriendsBlock.new, EnterprisesBlock.new, CommunitiesBlock.new] | 92 | right.blocks << [FriendsBlock.new, EnterprisesBlock.new, CommunitiesBlock.new] |
93 | main.blocks << MainBlock.new | 93 | main.blocks << MainBlock.new |
94 | template.articles.destroy_all | 94 | template.articles.destroy_all |
95 | - template.articles << Blog.new(:name => "Meu blog", :profile => template) | 95 | + template.articles << Blog.new(:name => "Blog", :profile => template) |
96 | template.home_page = template.blog | 96 | template.home_page = template.blog |
97 | template.save!' | 97 | template.save!' |
98 | 98 | ||
@@ -112,7 +112,7 @@ script/runner 'env = Environment.default | @@ -112,7 +112,7 @@ script/runner 'env = Environment.default | ||
112 | right.blocks << MembersBlock.new | 112 | right.blocks << MembersBlock.new |
113 | main.blocks << MainBlock.new | 113 | main.blocks << MainBlock.new |
114 | template.articles.destroy_all | 114 | template.articles.destroy_all |
115 | - template.articles << Blog.new(:name => "Meu blog", :profile => template) | 115 | + template.articles << Blog.new(:name => "Blog", :profile => template) |
116 | template.home_page = template.blog | 116 | template.home_page = template.blog |
117 | template.save!' | 117 | template.save!' |
118 | 118 |