workarea-blog 3.4.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +20 -0
  3. data/.eslintignore +2 -0
  4. data/.eslintrc +24 -0
  5. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  6. data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
  7. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  8. data/.gitignore +16 -0
  9. data/.rspec +2 -0
  10. data/.scss-lint.yml +188 -0
  11. data/.tailor +180 -0
  12. data/.yardopts +1 -0
  13. data/CHANGELOG.md +1123 -0
  14. data/CODE_OF_CONDUCT.md +3 -0
  15. data/CONTRIBUTING.md +3 -0
  16. data/Gemfile +7 -0
  17. data/LICENSE +52 -0
  18. data/README.md +140 -0
  19. data/Rakefile +42 -0
  20. data/app/assets/images/workarea/admin/blog/content_block_types/blog_entry.svg +1 -0
  21. data/app/assets/images/workarea/admin/blog/icons/blog.svg +1 -0
  22. data/app/assets/images/workarea/admin/blog/icons/blog_entry.svg +1 -0
  23. data/app/assets/images/workarea/admin/blog/icons/blog_post_comment.svg +1 -0
  24. data/app/assets/javascripts/workarea/storefront/blog/modules/blog_comment_placeholder.js +33 -0
  25. data/app/assets/stylesheets/workarea/admin/blog/components/_blog_entry_card.scss +14 -0
  26. data/app/assets/stylesheets/workarea/storefront/blog/components/_blog_entry.scss +91 -0
  27. data/app/assets/stylesheets/workarea/storefront/blog/components/_blog_entry_summary.scss +74 -0
  28. data/app/assets/stylesheets/workarea/storefront/blog/components/_featured_entry_content_block.scss +22 -0
  29. data/app/controllers/workarea/admin/application_controller.decorator +5 -0
  30. data/app/controllers/workarea/admin/content_blog_comments_controller.rb +54 -0
  31. data/app/controllers/workarea/admin/content_blog_entries_controller.rb +70 -0
  32. data/app/controllers/workarea/admin/content_blogs_controller.rb +56 -0
  33. data/app/controllers/workarea/admin/create_content_blog_entries_controller.rb +69 -0
  34. data/app/controllers/workarea/storefront/blog_comments_controller.rb +14 -0
  35. data/app/controllers/workarea/storefront/blog_entries_controller.rb +48 -0
  36. data/app/controllers/workarea/storefront/blogs_controller.rb +19 -0
  37. data/app/helpers/workarea/admin/blogs_helper.rb +61 -0
  38. data/app/models/workarea/content/blog.rb +26 -0
  39. data/app/models/workarea/content/blog_comment.rb +67 -0
  40. data/app/models/workarea/content/blog_entry.rb +35 -0
  41. data/app/models/workarea/content/fields/blog_entry_id.rb +11 -0
  42. data/app/models/workarea/content/fields/blog_id.rb +8 -0
  43. data/app/models/workarea/search/admin/content_blog.rb +27 -0
  44. data/app/models/workarea/search/admin/content_blog_entry.rb +37 -0
  45. data/app/queries/workarea/metadata/content_blog.rb +6 -0
  46. data/app/queries/workarea/metadata/content_blog_entry.rb +6 -0
  47. data/app/queries/workarea/search/admin_blog_entries.rb +24 -0
  48. data/app/queries/workarea/search/admin_blogs.rb +20 -0
  49. data/app/seeds/workarea/blog_comments_seeds.rb +26 -0
  50. data/app/seeds/workarea/blog_entry_seeds.rb +73 -0
  51. data/app/seeds/workarea/blog_seeds.rb +53 -0
  52. data/app/services/workarea/search/queries/blog_admin.rb +20 -0
  53. data/app/services/workarea/search/queries/blog_entry_admin.rb +13 -0
  54. data/app/services/workarea/set_navigable.decorator +10 -0
  55. data/app/view_models/workarea/admin/blog_comments_view_model.rb +45 -0
  56. data/app/view_models/workarea/admin/blog_entries_view_model.rb +31 -0
  57. data/app/view_models/workarea/admin/blog_entry_view_model.rb +29 -0
  58. data/app/view_models/workarea/admin/blog_search_view_model.rb +6 -0
  59. data/app/view_models/workarea/admin/blog_view_model.rb +13 -0
  60. data/app/view_models/workarea/storefront/blog_entry_view_model.rb +43 -0
  61. data/app/view_models/workarea/storefront/blog_index_view_model.rb +17 -0
  62. data/app/view_models/workarea/storefront/blog_view_model.rb +83 -0
  63. data/app/view_models/workarea/storefront/content_blocks/blog_entry_content_block_view_model.rb +63 -0
  64. data/app/views/workarea/admin/activities/_content_blog_comment_create.html.haml +12 -0
  65. data/app/views/workarea/admin/activities/_content_blog_comment_destroy.html.haml +9 -0
  66. data/app/views/workarea/admin/activities/_content_blog_comment_update.html.haml +10 -0
  67. data/app/views/workarea/admin/activities/_content_blog_create.html.haml +12 -0
  68. data/app/views/workarea/admin/activities/_content_blog_destroy.html.haml +10 -0
  69. data/app/views/workarea/admin/activities/_content_blog_entry_create.html.haml +12 -0
  70. data/app/views/workarea/admin/activities/_content_blog_entry_destroy.html.haml +10 -0
  71. data/app/views/workarea/admin/activities/_content_blog_entry_update.html.haml +10 -0
  72. data/app/views/workarea/admin/activities/_content_blog_update.html.haml +10 -0
  73. data/app/views/workarea/admin/blog/_dashboard_navigation.html.haml +1 -0
  74. data/app/views/workarea/admin/blog/_menu.html.haml +13 -0
  75. data/app/views/workarea/admin/content_blocks/_blog_entry_id.html.haml +4 -0
  76. data/app/views/workarea/admin/content_blocks/_blog_id.html.haml +3 -0
  77. data/app/views/workarea/admin/content_blog_comments/_summary.html.haml +24 -0
  78. data/app/views/workarea/admin/content_blog_comments/edit.html.haml +60 -0
  79. data/app/views/workarea/admin/content_blog_comments/index.html.haml +49 -0
  80. data/app/views/workarea/admin/content_blog_entries/_aux_navigation.html.haml +4 -0
  81. data/app/views/workarea/admin/content_blog_entries/_cards.html.haml +113 -0
  82. data/app/views/workarea/admin/content_blog_entries/_summary.html.haml +10 -0
  83. data/app/views/workarea/admin/content_blog_entries/edit.html.haml +75 -0
  84. data/app/views/workarea/admin/content_blog_entries/index.html.haml +80 -0
  85. data/app/views/workarea/admin/content_blog_entries/index.json.jbuilder +5 -0
  86. data/app/views/workarea/admin/content_blog_entries/show.html.haml +20 -0
  87. data/app/views/workarea/admin/content_blog_entries/thumbnail_image.html.haml +55 -0
  88. data/app/views/workarea/admin/content_blogs/_aux_navigation.html.haml +2 -0
  89. data/app/views/workarea/admin/content_blogs/_cards.html.haml +58 -0
  90. data/app/views/workarea/admin/content_blogs/_summary.html.haml +6 -0
  91. data/app/views/workarea/admin/content_blogs/edit.html.haml +51 -0
  92. data/app/views/workarea/admin/content_blogs/index.html.haml +76 -0
  93. data/app/views/workarea/admin/content_blogs/index.json.jbuilder +4 -0
  94. data/app/views/workarea/admin/content_blogs/new.html.haml +33 -0
  95. data/app/views/workarea/admin/content_blogs/show.html.haml +19 -0
  96. data/app/views/workarea/admin/create_content_blog_entries/content.html.haml +28 -0
  97. data/app/views/workarea/admin/create_content_blog_entries/featured_products.html.haml +71 -0
  98. data/app/views/workarea/admin/create_content_blog_entries/publish.html.haml +51 -0
  99. data/app/views/workarea/admin/create_content_blog_entries/setup.html.haml +61 -0
  100. data/app/views/workarea/admin/create_content_blog_entries/thumbnail_image.html.haml +48 -0
  101. data/app/views/workarea/storefront/blog_comments/index.html.haml +31 -0
  102. data/app/views/workarea/storefront/blog_entries/_summary.html.haml +25 -0
  103. data/app/views/workarea/storefront/blog_entries/show.html.haml +85 -0
  104. data/app/views/workarea/storefront/blog_metadata/_publisher.html.haml +7 -0
  105. data/app/views/workarea/storefront/blogs/_blog_navigation.html.haml +7 -0
  106. data/app/views/workarea/storefront/blogs/index.html.haml +25 -0
  107. data/app/views/workarea/storefront/blogs/show.atom.builder +26 -0
  108. data/app/views/workarea/storefront/blogs/show.html.haml +31 -0
  109. data/app/views/workarea/storefront/content_blocks/_blog_entry.html.haml +20 -0
  110. data/app/workers/workarea/generate_content_metadata.decorator +15 -0
  111. data/bin/rails +18 -0
  112. data/config/initializers/appends.rb +26 -0
  113. data/config/initializers/content_block_types.rb +13 -0
  114. data/config/initializers/jump_to_navigation.rb +3 -0
  115. data/config/initializers/seeds.rb +5 -0
  116. data/config/initializers/workarea.rb +15 -0
  117. data/config/locales/en.yml +244 -0
  118. data/config/routes.rb +49 -0
  119. data/data/blog_thumbnails/thumbnail_1.png +0 -0
  120. data/data/blog_thumbnails/thumbnail_2.png +0 -0
  121. data/data/blog_thumbnails/thumbnail_3.png +0 -0
  122. data/lib/tasks/import_wordpress.rake +13 -0
  123. data/lib/tasks/import_wordpress_attachments.rake +18 -0
  124. data/lib/tasks/import_wordpress_pages.rake +21 -0
  125. data/lib/tasks/import_wordpress_posts.rake +25 -0
  126. data/lib/workarea/blog/engine.rb +8 -0
  127. data/lib/workarea/blog/import/wordpress/attachment.rb +40 -0
  128. data/lib/workarea/blog/import/wordpress/content_cleaner.rb +64 -0
  129. data/lib/workarea/blog/import/wordpress/entry.rb +76 -0
  130. data/lib/workarea/blog/import/wordpress/entry_parser.rb +64 -0
  131. data/lib/workarea/blog/import/wordpress/page.rb +69 -0
  132. data/lib/workarea/blog/import/wordpress/page_parser.rb +50 -0
  133. data/lib/workarea/blog/version.rb +5 -0
  134. data/lib/workarea/blog.rb +11 -0
  135. data/test/dummy/Rakefile +6 -0
  136. data/test/dummy/app/assets/config/manifest.js +4 -0
  137. data/test/dummy/app/assets/images/.keep +0 -0
  138. data/test/dummy/app/assets/javascripts/application.js +13 -0
  139. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  140. data/test/dummy/app/controllers/application_controller.rb +3 -0
  141. data/test/dummy/app/controllers/concerns/.keep +0 -0
  142. data/test/dummy/app/helpers/application_helper.rb +2 -0
  143. data/test/dummy/app/jobs/application_job.rb +2 -0
  144. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  145. data/test/dummy/app/models/concerns/.keep +0 -0
  146. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  147. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  148. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  149. data/test/dummy/bin/bundle +3 -0
  150. data/test/dummy/bin/rails +4 -0
  151. data/test/dummy/bin/rake +4 -0
  152. data/test/dummy/bin/setup +34 -0
  153. data/test/dummy/bin/update +29 -0
  154. data/test/dummy/config/application.rb +26 -0
  155. data/test/dummy/config/boot.rb +5 -0
  156. data/test/dummy/config/cable.yml +9 -0
  157. data/test/dummy/config/environment.rb +5 -0
  158. data/test/dummy/config/environments/development.rb +59 -0
  159. data/test/dummy/config/environments/production.rb +86 -0
  160. data/test/dummy/config/environments/test.rb +43 -0
  161. data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
  162. data/test/dummy/config/initializers/assets.rb +11 -0
  163. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  164. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  165. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  166. data/test/dummy/config/initializers/inflections.rb +16 -0
  167. data/test/dummy/config/initializers/mime_types.rb +4 -0
  168. data/test/dummy/config/initializers/new_framework_defaults.rb +18 -0
  169. data/test/dummy/config/initializers/session_store.rb +3 -0
  170. data/test/dummy/config/initializers/workarea.rb +3 -0
  171. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  172. data/test/dummy/config/locales/en.yml +23 -0
  173. data/test/dummy/config/puma.rb +47 -0
  174. data/test/dummy/config/routes.rb +5 -0
  175. data/test/dummy/config/secrets.yml +22 -0
  176. data/test/dummy/config/spring.rb +6 -0
  177. data/test/dummy/config.ru +5 -0
  178. data/test/dummy/db/seeds.rb +2 -0
  179. data/test/dummy/lib/assets/.keep +0 -0
  180. data/test/dummy/log/.keep +0 -0
  181. data/test/factories/blog.rb +33 -0
  182. data/test/factories/wordpress_import.rb +17 -0
  183. data/test/fixtures/test_wordpress.xml +493 -0
  184. data/test/integration/workarea/blog/admin_integration_test.rb +55 -0
  185. data/test/integration/workarea/blog/create_blog_entries_integration_test.rb +106 -0
  186. data/test/integration/workarea/blog/storefront_integration_test.rb +112 -0
  187. data/test/integration/workarea/blog/wordpress_import_integration_test.rb +26 -0
  188. data/test/lib/workarea/blog/import/wordpress/attachment_test.rb +20 -0
  189. data/test/lib/workarea/blog/import/wordpress/content_cleaner_test.rb +65 -0
  190. data/test/lib/workarea/blog/import/wordpress/entry_parser_test.rb +42 -0
  191. data/test/lib/workarea/blog/import/wordpress/entry_test.rb +61 -0
  192. data/test/lib/workarea/blog/import/wordpress/page_parser_test.rb +35 -0
  193. data/test/lib/workarea/blog/import/wordpress/page_test.rb +52 -0
  194. data/test/models/workarea/content/blog_comment_test.rb +57 -0
  195. data/test/models/workarea/content/blog_entry_test.rb +17 -0
  196. data/test/queries/workarea/metadata/content_blog_entry_test.rb +36 -0
  197. data/test/queries/workarea/metadata/content_blog_test.rb +36 -0
  198. data/test/support/workarea/blog/stub_wordpress_assets.rb +19 -0
  199. data/test/system/workarea/admin/blog_entries_system_test.rb +103 -0
  200. data/test/system/workarea/admin/blog_system_test.rb +93 -0
  201. data/test/system/workarea/admin/blog_taxonomy_system_test.rb +21 -0
  202. data/test/system/workarea/admin/blog_user_comments_system_test.rb +138 -0
  203. data/test/system/workarea/storefront/blog_content_block_system_test.rb +36 -0
  204. data/test/system/workarea/storefront/blog_system_test.rb +256 -0
  205. data/test/test_helper.rb +9 -0
  206. data/test/view_models/workarea/admin/blog_comments_view_model_test.rb +77 -0
  207. data/test/view_models/workarea/admin/blog_entries_view_model_test.rb +36 -0
  208. data/test/view_models/workarea/storefront/blog_entry_content_block_view_model_test.rb +100 -0
  209. data/test/view_models/workarea/storefront/blog_entry_view_model_test.rb +47 -0
  210. data/test/view_models/workarea/storefront/blog_view_model_test.rb +149 -0
  211. data/test/workers/workarea/generate_content_blog_metadata_test.rb +18 -0
  212. data/workarea-blog.gemspec +19 -0
  213. metadata +274 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,1123 @@
1
+ Workarea Blog 3.4.7 (2019-08-21)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Open Source!
5
+
6
+
7
+
8
+ Workarea Blog 3.4.6 (2019-06-11)
9
+ --------------------------------------------------------------------------------
10
+
11
+ * Remove Release Selector When Editing Blog Comments
12
+
13
+ Since blog comments are not releasable, remove the current release
14
+ selector from the top of the page which assumes that you're previewing
15
+ content for a future release.
16
+
17
+ BLOG-184
18
+ Tom Scott
19
+
20
+
21
+
22
+ Workarea Blog 3.4.5 (2019-05-14)
23
+ --------------------------------------------------------------------------------
24
+
25
+ * Respect Featured Products Sorting In Storefront
26
+
27
+ When featured products for a blog entry are sorted in the admin, these
28
+ sorting changes were not reflected on the storefront because of the use
29
+ of `.any_in` rather than `.find_ordered` when querying for products from
30
+ the database. Use `.find_ordered` so that the order of
31
+ `Content::BlogEntry#product_ids` is preserved in the query to MongoDB,
32
+ and the products show up in the correct order when published to the
33
+ storefront.
34
+
35
+ BLOG-182
36
+ Tom Scott
37
+
38
+ * Fix Comments Timeline Link Text
39
+
40
+ The link text for a new comment in the admin activity timeline caused an
41
+ error when Workarea attempted to render the partial, because `#name` is
42
+ not a method on `Content::BlogEntry`. This error has now been fixed by
43
+ updating the text to read from `entry.audited.entry.name` rather than
44
+ `entry.audited.name`.
45
+
46
+ BLOG-183
47
+ Tom Scott
48
+
49
+
50
+
51
+ Workarea Blog 3.4.4 (2019-04-02)
52
+ --------------------------------------------------------------------------------
53
+
54
+ * Update wordpress import integration test to only run from the blog plugin source
55
+
56
+ BLOG-179
57
+ Jake Beresford
58
+
59
+ * Fix WordpressImportIntegrationTest when running in contexts outside of the Blog plugin
60
+
61
+ BLOG-179
62
+ Jake Beresford
63
+
64
+
65
+
66
+ Workarea Blog 3.4.3 (2019-03-19)
67
+ --------------------------------------------------------------------------------
68
+
69
+ * Restore Bulk Export / Delete functionality to Blogs
70
+
71
+ BLOG-176
72
+ Curt Howard
73
+
74
+ * Fix Browsing Control UI Markup
75
+
76
+ BLOG-177
77
+ Curt Howard
78
+
79
+
80
+
81
+ Workarea Blog 3.4.2 (2019-03-05)
82
+ --------------------------------------------------------------------------------
83
+
84
+ * Implement SEO Metadata Automation
85
+
86
+ The core Workarea platform has a means of automating SEO-related
87
+ metadata (like the browser title and meta description) on content pages
88
+ and product detail pages. This was, however, never implemented in the
89
+ blog plugin even though the help bubbles advertise it do so. Since
90
+ `Content::Blog` models are a separate kind of record which behaves much
91
+ like a `Content::Page`, the blog needs to decorate
92
+ `GenerateContentMetadata` to account for blog models in addition to the
93
+ other contentable records in the system.
94
+
95
+ BLOG-139
96
+ Tom Scott
97
+
98
+ * Remove Unused Selectors From Blog Entry Styles
99
+
100
+ The CSS placeholders for `.blog-entry__share` and
101
+ `.blog-entry__share-heading` have been removed from the `.blog-entry`
102
+ component, since the markup they previously styled has been removed.
103
+
104
+ BLOG-174
105
+ Tom Scott
106
+
107
+
108
+
109
+ Workarea Blog 3.4.1 (2019-02-05)
110
+ --------------------------------------------------------------------------------
111
+
112
+ * Update for workarea v3.4 compatibility
113
+
114
+ BLOG-175
115
+ Matt Duffy
116
+
117
+ * Prevent Mongo Error When Viewing Empty Blog Index
118
+
119
+ Check for `blog.entries.any?` before calling `blog.all_tags`, since the
120
+ latter is a map/reduce query that will error if the blog entries
121
+ collection doesn't exist yet.
122
+
123
+ BLOG-169
124
+ Tom Scott
125
+
126
+
127
+
128
+ Workarea Blog 3.4.0 (2019-01-08)
129
+ --------------------------------------------------------------------------------
130
+
131
+ * Update README
132
+
133
+ Curt Howard
134
+
135
+ * Fix test failures when running from host app
136
+
137
+ * Use Webmock to stub out image requests instead of VCR
138
+ * Only load rake tasks when running_from_source, this prevents double
139
+ execution of rake tasks in test.
140
+
141
+ BLOG-173
142
+ Jake Beresford
143
+
144
+
145
+
146
+ Workarea Blog 3.4.0.pre (2018-12-19)
147
+ --------------------------------------------------------------------------------
148
+
149
+ * Implement Wordpress Import
150
+
151
+ * Uses default wordpress XML export
152
+ * Adds raketasks for importing attachments, entries, and pages from wordpress
153
+ * Rewrites all internal img srcs in entries and pages to use updated attachment URLs
154
+ * Adds configration for Blog name and Author Name for imported entries
155
+ * Stores entry content in a single HTML content block
156
+ * Adds Navigation::Redirect for all entries and pages to ensure links still work
157
+ * Updates readme with information baout importing content from Wordpress
158
+
159
+ BLOG-168
160
+ Jake Beresford
161
+
162
+ * Translate Tag Links in Blog Navigation
163
+
164
+ Create a translation for the "$name ($count)" content in the tag links
165
+ sidebar, allowing for easier customization of this text without
166
+ necessarilly overriding the entire `_blog_navigation` partial. An
167
+ example would be changing it to "$name ($count articles)" or something
168
+ of that nature. The quest to remove all hard-coded, non-translatable
169
+ Strings from platform views continues.
170
+
171
+ BLOG-170
172
+ Tom Scott
173
+
174
+ * Update Gemspec To Require Workarea v3.3.x
175
+
176
+ The blog admin attempts to render the `workarea/admin/shared/_bulk_actions`,
177
+ which is not available in Workarea v3.2 and below. Bump the version
178
+ constraint to `>= 3.3.x` to throw an error upon the attempt to bundle
179
+ `workarea-blog` v3.3.x and `workarea` v3.2.x or below.
180
+
181
+ BLOG-158
182
+ Tom Scott
183
+
184
+
185
+
186
+ Workarea Blog 3.3.2 (2018-09-19)
187
+ --------------------------------------------------------------------------------
188
+
189
+ * Use the old rubocop because failures
190
+
191
+ BLOG-167
192
+ Jake Beresford
193
+
194
+ * Update node.trigger to .trigger for headless chrome
195
+
196
+ BLOG-167
197
+ Jake Beresford
198
+
199
+ * Add missing CI scripts
200
+
201
+ nochangelog
202
+
203
+ BLOG-167
204
+ Jake Beresford
205
+
206
+ * Add missing CI scripts
207
+
208
+ BLOG-167
209
+ Jake Beresford
210
+
211
+ * * Fix assert_equal should be assert_nil
212
+
213
+ BLOG-167
214
+ Jake Beresford
215
+
216
+ * Update gemfile to use workarea-ci
217
+
218
+ BLOG-167
219
+ Jake Beresford
220
+
221
+ * Cleanup gemfile for CI
222
+
223
+ Jake Beresford
224
+
225
+ * Fix build
226
+
227
+ * Compress admin SVGs and remove IDs
228
+
229
+ BLOG-167
230
+ Jake Beresford
231
+
232
+ * Update blog_navigation markup and classes to match secondary-nav component from base
233
+
234
+ This view partial was re-using the base secondary nav component but with incorrect class names and placement, this caused difficulty when applying styles within a theme or host application. Updated the view to match base component structure.
235
+
236
+ BLOG-166
237
+ Jake Beresford
238
+
239
+ * Add opengraph metadata to blog entries
240
+
241
+ * Adds og meta tags for type, title, and URL to blog_entry#show
242
+
243
+ BLOG-152
244
+ Jake Beresford
245
+
246
+ * Update size of slug fields
247
+
248
+ * Makes slug text boxes slightly larger, matching other slug inputs in the admin
249
+
250
+ BLOG-131
251
+ Jake Beresford
252
+
253
+ * Update blog entry seed data
254
+
255
+ * Use a pre-defined list for entry titles instead of Faker::Books which was producing some... interesting titles
256
+
257
+ BLOG-130
258
+ Jake Beresford
259
+
260
+ * Render direct to page CSS and JS on blog entry pages
261
+
262
+ BLOG-155
263
+ Jake Beresford
264
+
265
+ * Fix test from bad merge
266
+
267
+ Ben Crouse
268
+
269
+ * Revert "Enable Workarea CI"
270
+
271
+ This reverts commit 48bcc349296c9aae538c7b60f8392ec17d5b3a77.
272
+ Curt Howard
273
+
274
+ * Revert "Enable Workarea CI"
275
+
276
+ This reverts commit 48bcc349296c9aae538c7b60f8392ec17d5b3a77.
277
+ Curt Howard
278
+
279
+ * Revert "Enable Workarea CI"
280
+
281
+ This reverts commit 48bcc349296c9aae538c7b60f8392ec17d5b3a77.
282
+ Curt Howard
283
+
284
+ * Fix Gemfile
285
+
286
+ Curt Howard
287
+
288
+
289
+
290
+ Workarea Blog 3.3.1 (2018-08-21)
291
+ --------------------------------------------------------------------------------
292
+
293
+ * Fix megabuild. No changelog.
294
+
295
+ Tom Scott
296
+
297
+ * Fix test from bad merge
298
+
299
+ Ben Crouse
300
+
301
+ * Share blog entry thumbnail images on social media
302
+
303
+ When sharing blog entries on LinkedIn, Facebook, or Instagram (basically
304
+ anything that pays attention to open graph tags), images were not
305
+ appearing because the `og:image` meta tag was never specified. Set this
306
+ to the blog entry's thumbnail image URL so images will appear properly
307
+ on social media and other communities.
308
+
309
+ BLOG-161
310
+ Tom Scott
311
+
312
+ * View blog entries when previewing release
313
+
314
+ Previously, release previews didn't include blog entries because of the
315
+ way we return these models from MongoDB. We're now detecting whether the
316
+ release is being previewed, and if so, we're retrieving _all_ entries
317
+ and filtering them by whether the user is active or not.
318
+
319
+ BLOG-88
320
+ Tom Scott
321
+
322
+ * Prevent duplicate ID errors in admin
323
+
324
+ * Remove IDs from SVG icons
325
+ * Compress SVG icons using SVGO
326
+ * Fix duplicate IDs in blog entry content field view
327
+ * Default blog entry on content block is empty string to prevent errors
328
+
329
+ BLOG-148
330
+ Jake Beresford
331
+
332
+ * Fix broken blog entry thumbnails on blogs index
333
+
334
+ * Blog entries on blogs index page must be wrapped in the BlogEntryViewModel
335
+ * Update view to reference thumbnail_image_url method from BlogEntryViewModel
336
+ * Resolve same issue with featured_entry content block not using BlogEntryViewModel
337
+
338
+ BLOG-144
339
+ Jake Beresford
340
+
341
+ * Add component stylesheet for featured entry content block
342
+
343
+ * Create a blank stylesheet with all component selectors
344
+ * Append new stylesheet
345
+ * Remove redundant classes from content block view
346
+ * Update featured-entry-content-block__content to use short haml notation
347
+
348
+ BLOG-146
349
+ Jake Beresford
350
+
351
+ * Fix typo, change appeds.rb to appends.rb
352
+
353
+ BLOG-147
354
+ Jake Beresford
355
+
356
+ * Remove use of deprecated Sass functions
357
+
358
+ * Halve and double functions were removed in v3, update Sass to use regular math
359
+
360
+ BLOG-145
361
+ Jake Beresford
362
+
363
+ * Add expected route used for blog entry content block autofill
364
+
365
+ BLOG-140
366
+ Matt Duffy
367
+
368
+
369
+
370
+ Workarea Blog 3.3.0 (2018-05-24)
371
+ --------------------------------------------------------------------------------
372
+
373
+ * Update rubocop & fix offenses
374
+
375
+ BLOG-153
376
+ Jake Beresford
377
+
378
+ * Correct content area name on blog/show
379
+
380
+ BLOG-153
381
+ Jake Beresford
382
+
383
+ * Support Bulk Action Items UI
384
+
385
+ ECOMMERCE-6012
386
+ Curt Howard
387
+
388
+ * Add importing/exporting from base v3.3
389
+
390
+ ECOMMERCE-6010
391
+ Ben Crouse
392
+
393
+ * Leverage Workarea Changelog task
394
+
395
+ ECOMMERCE-5355
396
+ Curt Howard
397
+
398
+ * Fix for headless Chrome
399
+
400
+ Ben Crouse
401
+
402
+
403
+
404
+ Workarea Blog 3.2.0 (2018-02-06)
405
+ --------------------------------------------------------------------------------
406
+
407
+ * Fix missing i18n key in blog entry content block
408
+
409
+ The placeholder text was using the wrong translation key, it's now using the correct one.
410
+
411
+ BLOG-137
412
+ Tom Scott
413
+
414
+ * Update featured entry content block optionally feature most recent posts
415
+
416
+ * Add option to automatically feature recent posts
417
+ * Allow multiple posts to be featured in a single block
418
+ * Add blog_id ContentField
419
+ * Remove search form button from blog_entires ContentField as it was causing other fields to be unusable
420
+ * Re-write blog_entry_id and blog_id ContentFields to use remote_select admin module
421
+ * Remove now redundant autocomplete_autofill JS module from plugin, replaced by remote_select.js
422
+ * Add tests for new content block view model functionality
423
+ * Add system tests for blog entry content block
424
+
425
+ BLOG-149
426
+ Jake Beresford
427
+
428
+ * Allow admin user to edit blog entry URL
429
+
430
+ * Add slug field to content_blog_entry#edit view
431
+
432
+ BLOG-142
433
+ Jake Beresford
434
+
435
+ * Update blog metadata
436
+
437
+ * Adds markup for publisher metadata to blog entry and blog entry summary views via a shared _publisher.html.haml view partial.
438
+ * Publisher markup does not include logo metadata because we would need a logo image helper to dynamically update height and width values sitewide.
439
+ * Ensure image is made available to schema if thumbnail is available.
440
+ * Use blog_entry summary view partial on blogs index page to reduce duplicate markup and ensure consistency.
441
+ * Ensure all blog entry views pass google's structured data testing tool when relevant data is all present.
442
+
443
+ BLOG-105
444
+
445
+ Remove logo metadata from publisher, replace with TODO
446
+
447
+ BLOG-105
448
+ Jake Beresford
449
+
450
+ * Prevent duplicate ID errors in admin
451
+
452
+ * Remove IDs from SVG icons
453
+ * Compress SVG icons using SVGO
454
+ * Fix duplicate IDs in blog entry content field view
455
+ * Default blog entry on content block is empty string to prevent errors
456
+
457
+ BLOG-148
458
+ Jake Beresford
459
+
460
+ * Make it easier to link to blogs and blog entries inthe navigation
461
+
462
+ * Add Navigable Types for blog and blog_entry
463
+ * Add blog and blog_entry to SetNavigable
464
+ * Decorate taxon_icon helper to add conditions for blog and blog_entry icons
465
+ * Re-write autocomplete_autofill module to use select2 since this uses the same endpoint as taxon remote select. The previous implementation using jQueryUI autofill required the JSON to be structured differently which caused an issue in the content block admin UI - blog entry ID was displayed instead of name.
466
+ * Update blog seeds to include blogs index at the root with 3 blogs as it's children. Add taxonomy content block to show seeded blogs in drop-down navigation
467
+
468
+ BLOG-143
469
+ Jake Beresford
470
+
471
+ * Fix broken blog entry thumbnails on blogs index
472
+
473
+ * Blog entries on blogs index page must be wrapped in the BlogEntryViewModel
474
+ * Update view to reference thumbnail_image_url method from BlogEntryViewModel
475
+ * Resolve same issue with featured_entry content block not using BlogEntryViewModel
476
+
477
+ BLOG-144
478
+ Jake Beresford
479
+
480
+ * Add component stylesheet for featured entry content block
481
+
482
+ * Create a blank stylesheet with all component selectors
483
+ * Append new stylesheet
484
+ * Remove redundant classes from content block view
485
+ * Update featured-entry-content-block__content to use short haml notation
486
+
487
+ BLOG-146
488
+ Jake Beresford
489
+
490
+ * Fix typo, change appeds.rb to appends.rb
491
+
492
+ BLOG-147
493
+ Jake Beresford
494
+
495
+ * Remove use of deprecated Sass functions
496
+
497
+ * Halve and double functions were removed in v3, update Sass to use regular math
498
+
499
+ BLOG-145
500
+ Jake Beresford
501
+
502
+ * Convert index summaries to tables
503
+
504
+ BLOG-141
505
+ Curt Howard
506
+
507
+
508
+ Workarea Blog 3.1.0 (2017-09-15)
509
+ --------------------------------------------------------------------------------
510
+
511
+ * Add expected route used for blog entry content block autofill
512
+
513
+ BLOG-140
514
+ Matt Duffy
515
+
516
+ * Fix 500 error on atom feed
517
+
518
+ Update atom feed to use local instead of instance var
519
+
520
+ BLOG-136
521
+ Tom Scott
522
+
523
+ * Update trash behavior, fix test issues
524
+
525
+ BLOG-135
526
+ Matt Duffy
527
+
528
+ * Add restore links to blog activity, remove dependent destroy on blog and entries
529
+
530
+ BLOG-135
531
+ Matt Duffy
532
+
533
+ * Better Seed Data
534
+
535
+ Seed data for blog titles is now static.
536
+
537
+ The titles being generated by Faker were often problematic in demo
538
+ situations, because book titles don't always make good blog titles.
539
+ In lieu of Faker, the new seed data includes three static titles
540
+ that pun on fashion terminology.
541
+
542
+ BLOG-134
543
+ Matt Dunphy
544
+
545
+
546
+ Workarea Blog 3.0.2 (2017-07-25)
547
+ --------------------------------------------------------------------------------
548
+
549
+ * Fix 500 error on atom feed
550
+
551
+ Update atom feed to use local instead of instance var
552
+
553
+ BLOG-136
554
+ Tom Scott
555
+
556
+ * Hook up advanced content fields: browser_title and meta description for blog_entries
557
+
558
+ BLOG-104
559
+ Jake Beresford
560
+
561
+ * Remove jshint and replace with eslint BLOG-129
562
+ Dave Barnow
563
+
564
+
565
+ Workarea Blog 3.0.1 (2017-07-07)
566
+ --------------------------------------------------------------------------------
567
+
568
+ * Hook up advanced content fields: browser_title and meta description for blog_entries
569
+
570
+ BLOG-104
571
+ Jake Beresford
572
+
573
+ * Remove jshint and replace with eslint BLOG-129
574
+ Dave Barnow
575
+
576
+
577
+ Workarea Blog 3.0.0 (2017-05-18)
578
+ --------------------------------------------------------------------------------
579
+
580
+ * Hide useless facets or the blog id facet
581
+
582
+ no reason to show the blog id facet because it provides no value to the
583
+ admin user.
584
+
585
+ BLOG-128
586
+ Eric Pigeon
587
+
588
+ * Clean up tests
589
+
590
+ no changelog
591
+
592
+ BLOG-118
593
+ Eric Pigeon
594
+
595
+ * Fix parameter key to match what route is setting
596
+
597
+ The parameter key was being sent as content_blog_entry_id but
598
+ controllers and view models were using blog_entry_id
599
+
600
+ BLOG-127
601
+ Eric Pigeon
602
+
603
+ * Normalize admin navigation within blog resources
604
+
605
+ BLOG-126
606
+ Beresford, Jake
607
+
608
+ * Blog index content QA fixes
609
+
610
+ * Correct naming of blog index content area in seed
611
+ * Add new area to content_areas config
612
+
613
+ BLOG-123
614
+ Beresford, Jake
615
+
616
+ * Remove tags from blog card following QA feedback.
617
+
618
+ Since tags are aggregated from all entries in a blog and are not editable it doesn't make sense to display them on the card.
619
+
620
+ BLOG-125
621
+ Beresford, Jake
622
+
623
+ * Update blog index page for QA feedback
624
+
625
+ * remove legacy sort no-js button
626
+ * put the pagination at the bottom of results
627
+ * drop vertical line to the right of sort
628
+
629
+ BLOG-124
630
+ Beresford, Jake
631
+
632
+ * Upgrade blog for workarea v3 compatibility
633
+
634
+ * Update all admin views for blog
635
+ * Add translations for admin blog views & translate JS
636
+ * Blog thumbnail uses content asset picker
637
+ * fixes bugs with deleting blogs and entries
638
+ * fixes some junk in the activity views
639
+ * Converted seed data to new format
640
+ * Created store front partial for blog entry summary
641
+ * Added a workflow for blog entry creation
642
+ * Removed blog_entry#new view - replaced by workflow
643
+ * Remove legacy content area views, add blog content area to engine and rename.
644
+ * Updated blog entry content block type, added blog_entry_id content field type
645
+ * Update storefront views with global ID for admin toolbar
646
+ * Remove redundant breadcrumb definitions
647
+ * Add some page titles where they were previously missing
648
+ * All specs converted to tests
649
+ * Removes spec directory including spec/dummy
650
+ * Cleanup rubocop, add bin/rails, update test/dummy/config/application
651
+
652
+ BLOG-118
653
+ Beresford, Jake
654
+
655
+
656
+ WebLinc Blog 2.1.2 (2017-03-28)
657
+ --------------------------------------------------------------------------------
658
+
659
+ * Force .json type in /admin/content_blogs request
660
+
661
+ When the `Navigation::Link` form tries to find blogs to link to as the
662
+ Linkable, it fails because we are requesting `/admin/content_blogs` and
663
+ the response defaults to HTML. With this change, we'll be requesting
664
+ `/admin/content_blogs.json` and forcing the response type to be JSON.
665
+
666
+ BLOG-119
667
+ Tom Scott
668
+
669
+ * Correct some incorrect microdata using google's "structured microdata testign tool".
670
+
671
+ BLOG-105
672
+ Beresford, Jake
673
+
674
+ * Update Microdata for blog.
675
+
676
+ Added or changed schema itemprops where necessary to provide the orrect microdata structure for blog entries and summaries of entries on index pages.
677
+
678
+ * author, datePublished, headline, and image were the main props that had to be added or adjusted in some way
679
+ * Also changed the element type for all entries to use <article> for better semantics
680
+ * Improve some semantics by adding <heading> elements to entry summaries and moving the blog thumbnails below other important information.
681
+ * Fixed rubocop failures on bamboo
682
+
683
+ BLOG-105
684
+ Beresford, Jake
685
+
686
+
687
+ WebLinc Blog 2.1.1 (2017-01-04)
688
+ --------------------------------------------------------------------------------
689
+
690
+ * Add minlength to blog comment input. This enables client-side validation messaging which is much clearer for the user.
691
+
692
+ BLOG-116
693
+ Beresford, Jake
694
+
695
+
696
+ WebLinc Blog 2.1.0 (2016-10-12)
697
+ --------------------------------------------------------------------------------
698
+
699
+ * Don't try to test activity if that functionality isn't present
700
+
701
+ This is for v2.3 _and_ earlier version compatibility.
702
+
703
+ BLOG-114
704
+ Ben Crouse
705
+
706
+ * Clear driver cache when hitting same page within spec
707
+
708
+ BLOG-113
709
+ Matt Duffy
710
+
711
+ * Add activity support for v2.3
712
+
713
+ BLOG-114
714
+ Ben Crouse
715
+
716
+
717
+ WebLinc Blog 2.0.1 (2016-08-17)
718
+ --------------------------------------------------------------------------------
719
+
720
+ * Fetch comments and comment form via ajax to avoid caching blog entry comments
721
+
722
+ BLOG-103
723
+ Matt Duffy
724
+
725
+
726
+ WebLinc Blog 2.0.0 (2016-08-01)
727
+ --------------------------------------------------------------------------------
728
+
729
+ * Added tests for comment count
730
+
731
+ BLOG-102
732
+
733
+ fix
734
+ Beresford, Jake
735
+
736
+ * Allow approving blog comments without reordering posts
737
+
738
+ Approving a comment on an older post will currently
739
+ bring that post to the top of the store front blog
740
+ section by modifying the updated_at attribute.
741
+
742
+ Since blogs are ordered by updated_at, use set to
743
+ prevent this from changing.
744
+ Use Sanrio commit f01e5673111
745
+
746
+ BLOG-102
747
+ Kristen Ward
748
+
749
+ * Added tests for comment count
750
+
751
+ BLOG-102
752
+
753
+ fix
754
+ Beresford, Jake
755
+
756
+ * Allow approving blog comments without reordering posts
757
+
758
+ Approving a comment on an older post will currently
759
+ bring that post to the top of the store front blog
760
+ section by modifying the updated_at attribute.
761
+
762
+ Since blogs are ordered by updated_at, use set to
763
+ prevent this from changing.
764
+ Use Sanrio commit f01e5673111
765
+
766
+ BLOG-102
767
+ Kristen Ward
768
+
769
+ * Adds blog index view
770
+
771
+ * Displays top x posts for each blog instance, number of posts can be set by config.
772
+ * Blog index page is contentable
773
+ * Blog index page content is linked in admin menu
774
+
775
+ BLOG-93
776
+ Beresford, Jake
777
+
778
+ * Move featured entry compound property inside section for alignment
779
+
780
+ BLOG-100
781
+ Beresford, Jake
782
+
783
+ * Add missing translation key for byline
784
+
785
+ BLOG-94
786
+ Beresford, Jake
787
+
788
+ * Added sample data for blogy entry summary
789
+
790
+ * Updated Faker to use Hipster because Lorem is annoying when testing
791
+
792
+ BLOG-99
793
+ Beresford, Jake
794
+
795
+ * Add rubocop config and update code style to pass rubocop
796
+
797
+ * Fixed all spec failures
798
+
799
+ BLOG-98
800
+ Beresford, Jake
801
+
802
+ * Add date written to blog entries for display and sorting.
803
+
804
+ * Adds a new DateTime field to blog_entry
805
+ * Change blog index sort to use this date field, instead of updated_at
806
+ * Displays date written on store front views
807
+
808
+ BLOG-91
809
+ Beresford, Jake
810
+
811
+ * Add featured entry content block.
812
+
813
+ * adds a search controller action and route to blog_entries
814
+ * adds autocomplete_autofill module to populate a specified field with a value returned in autocomplete JSON response
815
+ * Uses search to find blog entry by name
816
+ * Stores Blog entry ID in content_block
817
+ * View model used to find blog entry and blog record then display content
818
+
819
+ BLOG-94
820
+ Beresford, Jake
821
+
822
+ * Correct sort order of featured and updated at
823
+
824
+ BLOG-90
825
+ Beresford, Jake
826
+
827
+ * Adds a content area for blog_header, renames content block areas to be more descriptive
828
+
829
+ BLOG-92
830
+ Beresford, Jake
831
+
832
+ * Fix blog comment inconsistencies
833
+
834
+ Change menu link to say 'Blog Entry Comments' to match page
835
+ header on click-through.
836
+ Add comments display/notification to context menu on blog edit page
837
+
838
+ BLOG-97
839
+ Kristen Ward
840
+
841
+ * Change blog entry summary to a string.
842
+
843
+ *Remove the contentable area for blog entry summary and add a string to the model.
844
+ *Adds a text area to the admin views.
845
+ *Renders the summary string in place of the content area.
846
+
847
+ BLOG-89
848
+ Beresford, Jake
849
+
850
+ * Adds ability to feature a blog entry.
851
+
852
+ * Admin users can mark an entry as featured
853
+ * Featured blog entries will be sorted to the top of the blog index
854
+ * A class is added to the blog entry summary to allow SIs to provide
855
+ different styles for featured entries
856
+
857
+ BLOG-90
858
+ Beresford, Jake
859
+
860
+ * Allow admin comments/discussion on blogs
861
+
862
+ Admin commenting on blogs does not work due to a naming
863
+ conflict with "blog comments" as seen on the store front.
864
+ Give user comments on blog items a named resource so that
865
+ both admin comments and user comments can exist.
866
+
867
+ BLOG-65
868
+ Kristen Ward
869
+
870
+ * Update blog comments to show original post time
871
+
872
+ Blog comments are showing updated at time. Change to date and
873
+ time comment was first posted.
874
+
875
+ BLOG-68
876
+ Kristen Ward
877
+
878
+ * Add author name display to entry and entry summary
879
+
880
+ Author is not displaying on front end. Add to index view and
881
+ to entry show view.
882
+
883
+ Add default styles to fit with existing
884
+
885
+ BLOG-70
886
+ Kristen Ward
887
+
888
+ * Remove pending from sort options if no pending comments
889
+
890
+ Dropdown defaults to pending even when there are no pending comments.
891
+ Remove this sort option when unnecessary.
892
+
893
+ BLOG-74
894
+ Kristen Ward
895
+
896
+ * Display only tags for active blog entries in store front side nav
897
+
898
+ Side navigation shows all tags for a blog, even when tag only
899
+ corresponds to an inactive entry.
900
+
901
+ Update view model method to include only active entries' tags
902
+
903
+ BLOG-80
904
+ Kristen Ward
905
+
906
+ * Update icon--check-mark to icon--system-success
907
+
908
+ After the check-mark icon was renamed to have a more generic use case,
909
+ some of the markup wasn't updated to match the new name. This fixes this
910
+ issue.
911
+
912
+ BLOG-82
913
+ Curt Howard
914
+
915
+ * Fix blog entry release changes display
916
+
917
+ Changeset partial is being called incorrectly, resulting in errors.
918
+ Make call to partial more explicit.
919
+
920
+ BLOG-78
921
+ Kristen Ward
922
+
923
+ * BLOG-73: displaying related products on the store_front
924
+ Steve Perks
925
+
926
+ * Fix blog comment sorting
927
+
928
+ Attempting to sort blog comments causes all results
929
+ for blog comments to display.
930
+
931
+ Add the blog entry id param to the sort form if present
932
+ Update admin spec to verify correct behavior on sort
933
+
934
+ BLOG-64
935
+ Kristen Ward
936
+
937
+
938
+ WebLinc Blog 1.0.1 (February 20, 2016)
939
+ --------------------------------------------------------------------------------
940
+
941
+ * Output related products in Store Front
942
+
943
+ BLOG-73
944
+
945
+ * Fix blog comment sorting
946
+
947
+ Attempting to sort blog comments causes all results
948
+ for blog comments to display.
949
+
950
+ Add the blog entry id param to the sort form if present
951
+ Update admin spec to verify correct behavior on sort
952
+
953
+ BLOG-64
954
+
955
+
956
+ WebLinc Blog 1.0.0 (January 14, 2016)
957
+ --------------------------------------------------------------------------------
958
+
959
+ * Render 404 if an entry isn't active
960
+
961
+ BLOG-71
962
+
963
+ * Fix blog entries throwing routing error as search results
964
+
965
+ This is fixed by removing the blog scoping for entry routes. After changing
966
+ that, blog entries conform to the same standards to routing as other
967
+ resources in the store front.
968
+
969
+ BLOG-76
970
+
971
+ * Update for compatibility with WebLinc 2.0
972
+
973
+ * Replace absolute URLs with relative paths
974
+
975
+
976
+ WebLinc Blog 0.11.0 (October 6, 2015)
977
+ --------------------------------------------------------------------------------
978
+
979
+ * Update blog to be compatible with v0.12
980
+
981
+ Update new & edit views, property work
982
+ Add blank row to permissions partial
983
+ Update indexes, add context-menu to summary/edit
984
+
985
+ BLOG-63
986
+
987
+ * Update token-fields to become remote-selects.
988
+
989
+ Fix linkable_types array for use with navigation#edit.
990
+
991
+ Remove params whitelist from `content_blog_entries_controller`.
992
+
993
+ BLOG-63
994
+
995
+ * Add link depth css modifiers to blog admin menu
996
+
997
+ BLOG-58
998
+
999
+
1000
+ WebLinc Blog 0.10.0 (August 21, 2015)
1001
+ --------------------------------------------------------------------------------
1002
+
1003
+ * Change weblinc version constraint to '~> 0.11.0'.
1004
+
1005
+ 81d6ac445d866b79cc7ebc7308f1467bfcbde24d
1006
+
1007
+ * Replace publishing with releasing.
1008
+
1009
+ 8d707e6bfb4778af2c15281b1440a114fe98a01d
1010
+ 0f1b671d9200edade0ff371ddb7d3874e5cff5d1
1011
+
1012
+ * Rename SCSS blocks `panel` and `panel--buttons` to `index-filters` and
1013
+ `form-actions`, respectively, for compatibility with WebLinc 0.11.
1014
+
1015
+ 368a0706f2d48cdf3a715812c1dbe45523767cd3
1016
+
1017
+ BLOG-57
1018
+
1019
+ * Update view models for compatibility with WebLinc 0.11.
1020
+
1021
+ fc96cedf4264554dfefb5f6dc25709158527fe67
1022
+
1023
+ * Make blog entries releasable.
1024
+
1025
+ d24155a1a6f8e9eb22148b23e8c7aef588417ce3
1026
+ f9bb4f0d38997487ed45db85570b8ebf2fac04cd
1027
+ 3b5c22924beb93961d69cef71429b9a3aa04d370
1028
+
1029
+ * Localize blog names and blog entry names.
1030
+
1031
+ 6a672dadb022851a8916c664c45848a1d6a1d2ca
1032
+
1033
+ * Redirect to edit content path after create new blog entry.
1034
+
1035
+ BLOG-56
1036
+
1037
+ 5deb435e5246b812acf2e3f22c52e9350add7585 (merge)
1038
+
1039
+ * Fix selected navigation nodes in blog entry Admin views.
1040
+
1041
+ eb48c3a75d0c589c1b15ba80f1a77e8cea91213f
1042
+
1043
+
1044
+ WebLinc Blog 0.9.0 (July 11, 2015)
1045
+ --------------------------------------------------------------------------------
1046
+
1047
+ * Update for compatibility with weblinc 0.10.0.
1048
+
1049
+ 04744c3d2ee9578d3f23016e406c4eb25107f12f
1050
+ 0bd3553a4438b5a76d3fe7313ba8fab25c8b0bd5
1051
+ c10dde5dbe31cdfe8451cae084ba3dc3666fe228
1052
+ a60c5d4c3ca10ea96df6fe388cff831e5c75ccdb (merge)
1053
+
1054
+ * Remove trailing period from blog titles.
1055
+
1056
+ BLOG-45
1057
+
1058
+ 1336e9c1122fc12b43afc1c73f18effaad23597a
1059
+
1060
+ * Clean up model summaries.
1061
+
1062
+ BLOG-53
1063
+
1064
+ 26ae48a43f309232c3e48cb323f6b9bbe45e2a73
1065
+ 07a5ee857ca5d1726005848e49409c751c234cba
1066
+
1067
+ * Remove unnecessary `view__header` elements.
1068
+
1069
+ BLOG-54
1070
+
1071
+ 34c01cacf10b9a2fb79c6cf538bb5daf5594ba1e
1072
+
1073
+ * Fix "back" buttons in Admin.
1074
+
1075
+ BLOG-52
1076
+
1077
+ 1ffb08432b4865452c3d71b2398dbba929943cf3
1078
+
1079
+ * Update `selected_navigation_nodes` in Admin.
1080
+
1081
+ BLOG-51
1082
+
1083
+ 9fc9bdef949eea6f83ab4bafede43249dc9b78b1
1084
+
1085
+
1086
+ WebLinc Blog 0.8.0 (June 1, 2015)
1087
+ --------------------------------------------------------------------------------
1088
+
1089
+ * Rename fixtures to factories and clean up factories.
1090
+
1091
+ * Update for compatibility and consistency with weblinc 0.9.0.
1092
+
1093
+ * Fix blog comment count.
1094
+
1095
+ BLOG-38
1096
+
1097
+ * Fix link to blog comments so that it shows comments on that blog only.
1098
+
1099
+ BLOG-39
1100
+
1101
+ * Remove buggy clear filters feature.
1102
+
1103
+ BLOG-30
1104
+
1105
+ * Validate presence of `BlogEntry#publish_at`.
1106
+
1107
+ BLOG-35
1108
+
1109
+ * Fix inability to delete blog comment.
1110
+
1111
+ BLOG-37
1112
+
1113
+
1114
+ WebLinc Blog 0.7.0 (April 10, 2015)
1115
+ --------------------------------------------------------------------------------
1116
+
1117
+ * Update testing environment for compatibility with WebLinc 0.8.0.
1118
+
1119
+ * Use new decorator style for compatibility with WebLinc 0.8.0.
1120
+
1121
+ * Remove gems server secrets for compatibility with WebLinc 0.8.0.
1122
+
1123
+ * Update assets for consistency with WebLinc 0.8.0.