publify_core 10.0.0 → 10.0.2

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.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +52 -1
  3. data/app/assets/javascripts/markup_help_popup.js +25 -0
  4. data/app/assets/javascripts/optional_field_toggle.js +7 -0
  5. data/app/assets/javascripts/preview_comment.js +10 -0
  6. data/app/assets/javascripts/publify.js +3 -0
  7. data/app/assets/javascripts/publify_admin.js +1 -25
  8. data/app/assets/javascripts/spinnable.js +7 -2
  9. data/app/assets/stylesheets/administration_structure.css.scss +1 -1
  10. data/app/assets/stylesheets/publify.css.scss +43 -0
  11. data/app/assets/stylesheets/publify_admin.css.scss +0 -1
  12. data/app/controllers/admin/articles_controller.rb +4 -4
  13. data/app/controllers/admin/dashboard_controller.rb +0 -4
  14. data/app/controllers/admin/post_types_controller.rb +1 -1
  15. data/app/controllers/admin/themes_controller.rb +1 -9
  16. data/app/controllers/articles_controller.rb +5 -3
  17. data/app/controllers/comments_controller.rb +1 -1
  18. data/app/controllers/setup_controller.rb +20 -11
  19. data/app/helpers/admin/feedback_helper.rb +1 -1
  20. data/app/helpers/base_helper.rb +21 -13
  21. data/app/models/archives_sidebar.rb +1 -1
  22. data/app/models/article.rb +1 -2
  23. data/app/models/content.rb +8 -3
  24. data/app/models/note.rb +1 -1
  25. data/app/models/redirect.rb +2 -2
  26. data/app/models/tag_sidebar.rb +25 -3
  27. data/app/models/text_filter.rb +1 -1
  28. data/app/uploaders/resource_uploader.rb +4 -10
  29. data/app/views/admin/articles/_form.html.erb +2 -2
  30. data/app/views/admin/articles/index.html.erb +4 -5
  31. data/app/views/admin/dashboard/_comment.html.erb +1 -1
  32. data/app/views/admin/dashboard/_drafts.html.erb +1 -1
  33. data/app/views/admin/feedback/_ham.html.erb +1 -1
  34. data/app/views/admin/feedback/article.html.erb +1 -1
  35. data/app/views/admin/feedback/edit.html.erb +1 -1
  36. data/app/views/admin/feedback/index.html.erb +2 -2
  37. data/app/views/admin/migrations/show.html.erb +1 -1
  38. data/app/views/admin/notes/_form.html.erb +2 -3
  39. data/app/views/admin/notes/_note.html.erb +2 -2
  40. data/app/views/admin/notes/edit.html.erb +0 -1
  41. data/app/views/admin/pages/_pages.html.erb +1 -1
  42. data/app/views/admin/post_types/_index_and_form.html.erb +2 -2
  43. data/app/views/admin/redirects/_index_and_form.html.erb +2 -2
  44. data/app/views/admin/seo/show.html.erb +1 -1
  45. data/app/views/admin/settings/display.html.erb +1 -1
  46. data/app/views/admin/settings/feedback.html.erb +1 -1
  47. data/app/views/admin/settings/index.html.erb +1 -1
  48. data/app/views/admin/settings/write.html.erb +1 -1
  49. data/app/views/admin/tags/_index_and_form.html.erb +1 -1
  50. data/app/views/admin/users/_form.html.erb +1 -1
  51. data/app/views/articles/_comment_form.html.erb +9 -7
  52. data/app/views/articles/_comment_preview.html.erb +1 -1
  53. data/app/views/articles/_trackback.html.erb +3 -3
  54. data/app/views/articles/comment_failed.js.erb +1 -1
  55. data/app/views/articles/read.html.erb +4 -2
  56. data/app/views/comments/_comment.html.erb +1 -1
  57. data/app/views/comments/preview.js.erb +1 -1
  58. data/app/views/devise/passwords/edit.html.erb +3 -3
  59. data/app/views/devise/passwords/new.html.erb +1 -1
  60. data/app/views/devise/registrations/new.html.erb +2 -2
  61. data/app/views/devise/sessions/new.html.erb +2 -2
  62. data/app/views/devise/shared/_links.html.erb +3 -3
  63. data/app/views/layouts/accounts.html.erb +3 -3
  64. data/app/views/layouts/administration.html.erb +4 -6
  65. data/app/views/layouts/default.html.erb +1 -1
  66. data/app/views/layouts/editor.html.erb +3 -3
  67. data/app/views/notes/index.html.erb +1 -1
  68. data/app/views/notes/show_in_reply.html.erb +1 -1
  69. data/app/views/notification_mailer/comment.html.erb +1 -1
  70. data/app/views/search_sidebar/_content.html.erb +2 -3
  71. data/app/views/settings/install.html.erb +2 -2
  72. data/app/views/setup/index.html.erb +42 -11
  73. data/app/views/shared/_page_header.html.erb +5 -5
  74. data/app/views/tag_sidebar/_content.html.erb +2 -2
  75. data/config/locales/ar.yml +0 -1
  76. data/config/locales/da.yml +0 -1
  77. data/config/locales/de.yml +0 -1
  78. data/config/locales/en.yml +0 -1
  79. data/config/locales/es-MX.yml +0 -1
  80. data/config/locales/fr.yml +0 -1
  81. data/config/locales/he.yml +0 -1
  82. data/config/locales/it.yml +0 -1
  83. data/config/locales/ja.yml +0 -1
  84. data/config/locales/lt.yml +0 -1
  85. data/config/locales/nb.yml +0 -1
  86. data/config/locales/nl.yml +0 -1
  87. data/config/locales/pl.yml +0 -1
  88. data/config/locales/pt-BR.yml +0 -1
  89. data/config/locales/ro.yml +0 -1
  90. data/config/locales/ru.yml +0 -1
  91. data/config/locales/zh-CN.yml +0 -1
  92. data/config/locales/zh-TW.yml +0 -1
  93. data/db/seeds.rb +5 -5
  94. data/lib/publify_core/string_ext.rb +52 -0
  95. data/lib/publify_core/testing_support/feed_assertions.rb +1 -4
  96. data/lib/publify_core/text_filter/markdown.rb +53 -0
  97. data/lib/{publify_textfilter_markdown_smartquotes.rb → publify_core/text_filter/markdown_smartquotes.rb} +3 -3
  98. data/lib/publify_core/text_filter/none.rb +14 -0
  99. data/lib/publify_core/text_filter/smartypants.rb +14 -0
  100. data/lib/publify_core/text_filter/twitterfilter.rb +55 -0
  101. data/lib/publify_core/version.rb +1 -1
  102. data/lib/publify_core.rb +6 -6
  103. data/lib/text_filter_plugin.rb +23 -11
  104. data/lib/theme.rb +18 -7
  105. metadata +64 -29
  106. data/app/assets/javascripts/datetimepicker.js +0 -1470
  107. data/app/assets/stylesheets/datetimepicker.css +0 -306
  108. data/lib/publify_textfilter_markdown.rb +0 -56
  109. data/lib/publify_textfilter_none.rb +0 -16
  110. data/lib/publify_textfilter_smartypants.rb +0 -16
  111. data/lib/publify_textfilter_twitterfilter.rb +0 -57
  112. data/lib/transforms.rb +0 -47
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 315c96f6777f5d761c19b1b78a37aa38fdddb337522c56059813be2340f835cd
4
- data.tar.gz: cd54077be1d63bfd63e385e2dd61e2f23e2928ba3e19ef9aa04f69ab94e00263
3
+ metadata.gz: a80ae8a43965fcfb378504dd7b9d0cf6f13d5bc87df95fd9fb937caca4eb401f
4
+ data.tar.gz: d18535211810991287441d7e851786062d1ae0dea3b7835f47a102d20c0c179f
5
5
  SHA512:
6
- metadata.gz: af4a6c89bc46ba69993175cbc0245c8cda50e5818a0d809322c5ff9a3431848c8c3b1e5b38db15e8a1ec2e226f3127978b25d312c4e91039af436eba950d2889
7
- data.tar.gz: 114fd493221442b2d93dd40cf8c2766cd7b18e1d07a843fe14b605a44e1745a38b4481ccf4f83bf24afd378bb7d525ebd812e4b2bb8dfef3bcff6b7b18db13ba
6
+ metadata.gz: 4154fcce63f81d06ea49c427307cebe10dec30c90dfeb16d4955fd9fca6e40be98a6d95a00b2582d0dd41d81ed82535a5f6b4ee3fc403ebfd04f924aa5e3bb59
7
+ data.tar.gz: 8dfb7191f158518c34cac975d53f89ed74539c14340db36f67fc6f5951e3f8a90004881d1a2a74c0740368040c19f424d29f0d830ddae9dcbe2b260b69c81846
data/CHANGELOG.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # Changelog
2
2
 
3
+ ## 10.0.2 / 2024-06-28
4
+
5
+ ### Security updates
6
+
7
+ * Safely link target URLs for Redirects in admin ([#148] by [mvz])
8
+ * Upgrade jquery-ui-rails to version 7.0 ([#149] by [mvz])
9
+
10
+ ### Functional changes
11
+
12
+ * Use native datetime inputs in the Admin ([#121] by [mvz])
13
+ * Display Theme description nicely in the admin ([#151] by [mvz])
14
+
15
+ ### Internal changes
16
+
17
+ * Stop using and depending on REXML ([#123] by [mvz])
18
+ * Remove inline javascript ([#124] by [mvz])
19
+ * Switch to no-trailing-comma style ([#127] by [mvz])
20
+ * Remove inline styles assigned in ERB templates ([#128] by [mvz])
21
+ * Make Content.searchstring scope code more transparent ([#150] by [mvz])
22
+ * Add erb-lint and fix initial warnings ([#125] by [mvz])
23
+
24
+ [#121]: https://github.com/publify/publify_core/pull/121
25
+ [#123]: https://github.com/publify/publify_core/pull/123
26
+ [#124]: https://github.com/publify/publify_core/pull/124
27
+ [#125]: https://github.com/publify/publify_core/pull/125
28
+ [#127]: https://github.com/publify/publify_core/pull/127
29
+ [#128]: https://github.com/publify/publify_core/pull/128
30
+ [#148]: https://github.com/publify/publify_core/pull/148
31
+ [#149]: https://github.com/publify/publify_core/pull/149
32
+ [#150]: https://github.com/publify/publify_core/pull/150
33
+ [#151]: https://github.com/publify/publify_core/pull/151
34
+
35
+ ## 10.0.1 / 2023-10-28
36
+
37
+ * Update CarrierWave dependency to version 3.0 ([#102] by [mvz])
38
+ * Move String monkey-patches into a module under PublifyCore ([#115] by [mvz])
39
+ * Remove text filter plugin naming requirements ([#109], [#110], [#117] by [mvz])
40
+ * Fix name and description of Twitterfilter ([#118] by [mvz])
41
+ * Fix link to pull request in CHANGELOG ([#116] by [mvz])
42
+ * Provide proper validation feedback during setup ([#119] by [mvz])
43
+
44
+ [#102]: https://github.com/publify/publify_core/pull/102
45
+ [#109]: https://github.com/publify/publify_core/pull/109
46
+ [#110]: https://github.com/publify/publify_core/pull/110
47
+ [#115]: https://github.com/publify/publify_core/pull/115
48
+ [#116]: https://github.com/publify/publify_core/pull/116
49
+ [#117]: https://github.com/publify/publify_core/pull/117
50
+ [#118]: https://github.com/publify/publify_core/pull/118
51
+ [#119]: https://github.com/publify/publify_core/pull/119
52
+ [mvz]: https://github.com/mvz
53
+
3
54
  ## 10.0.0 / 2023-06-25
4
55
 
5
56
  ### Updated dependencies
@@ -37,7 +88,7 @@
37
88
  * Remove `sitealizer` table [publify#1089](https://github.com/publify/publify/pull/1089) by [SupriyaMedankar](https://github.com/SupriyaMedankar)
38
89
  * Remove itunes fields from resources [publify#1092](https://github.com/publify/publify/pull/1092) by [SupriyaMedankar](https://github.com/SupriyaMedankar)
39
90
  * Remove `page_caches` table [publify#1090](https://github.com/publify/publify/pull/1090) by [SupriyaMedankar](https://github.com/SupriyaMedankar)
40
- * Remove obsolete Sidebar code [publify#58](https://github.com/publify/publify/pull/58)
91
+ * Remove obsolete Sidebar code [publify_core#58](https://github.com/publify/publify_core/pull/58)
41
92
 
42
93
  ## 9.2.10 / 2023-01-08
43
94
 
@@ -0,0 +1,25 @@
1
+ $(document).ready(function() {
2
+ $('.markup-help-popup-link').on("click", function(e){
3
+ var dialog = document.getElementById(e.target.dataset["target"]);
4
+ var url = e.target.dataset.url;
5
+
6
+ $.ajax({
7
+ url: url,
8
+ type: 'get',
9
+ dataType: 'html',
10
+ success: function(data) {
11
+ dialog.getElementsByClassName("content-target").item(0).innerHTML = data;
12
+ dialog.showModal();
13
+ }
14
+ });
15
+ e.preventDefault();
16
+ });
17
+ $('.markup-help-popup-close').on("click", function(e) {
18
+ e.target.closest('dialog').close();
19
+ });
20
+ $('.markup-help-popup').on("click", function(e) {
21
+ if (e.target == e.currentTarget) {
22
+ e.target.close();
23
+ }
24
+ });
25
+ });
@@ -0,0 +1,7 @@
1
+ $(document).ready(function() {
2
+ $('.optional_field').hide();
3
+ $('.optional-field-toggle').on("click", function(e){
4
+ $('.optional_field').fadeToggle();
5
+ e.preventDefault();
6
+ });
7
+ });
@@ -0,0 +1,10 @@
1
+ $(document).ready(function() {
2
+ $('.preview-comment-link').on("click", function(e) {
3
+ var lnk = e.currentTarget;
4
+ var preview_url = lnk.dataset.previewUrl;
5
+ var comment_form_selector = lnk.dataset.targetForm;
6
+
7
+ $.post(preview_url, $(comment_form_selector).serialize());
8
+ e.preventDefault();
9
+ });
10
+ });
@@ -6,7 +6,10 @@
6
6
  //= require set-timeago-lang
7
7
  //= require jquery_ujs
8
8
  //= require lightbox
9
+ //= require markup_help_popup
9
10
  //= require observe
11
+ //= require optional_field_toggle
12
+ //= require preview_comment
10
13
  //= require check_password
11
14
  //
12
15
  //= require_self
@@ -3,23 +3,6 @@
3
3
  //= require jquery
4
4
  //= require jquery_ujs
5
5
  //= require jquery-ui
6
- //= require jquery-ui/i18n/datepicker-da
7
- //= require jquery-ui/i18n/datepicker-de
8
- //= require jquery-ui/i18n/datepicker-es
9
- //= require jquery-ui/i18n/datepicker-fr
10
- //= require jquery-ui/i18n/datepicker-he
11
- //= require jquery-ui/i18n/datepicker-it
12
- //= require jquery-ui/i18n/datepicker-ja
13
- //= require jquery-ui/i18n/datepicker-lt
14
- //= require jquery-ui/i18n/datepicker-nb
15
- //= require jquery-ui/i18n/datepicker-nl
16
- //= require jquery-ui/i18n/datepicker-pl
17
- //= require jquery-ui/i18n/datepicker-pt-BR
18
- //= require jquery-ui/i18n/datepicker-ro
19
- //= require jquery-ui/i18n/datepicker-ru
20
- //= require jquery-ui/i18n/datepicker-zh-CN
21
- //= require jquery-ui/i18n/datepicker-zh-TW
22
- //= require datetimepicker
23
6
  //= require bootstrap-sprockets
24
7
  //= require quicktags
25
8
  //= require tagmanager
@@ -84,14 +67,7 @@ $(document).ready(function() {
84
67
  $('#article_form').each(function(e){autosave_request(e)});
85
68
  $('#article_form').submit(function(e){save_article_tags()});
86
69
  $('#article_form').each(function(e){tag_manager()});
87
-
88
- // DatePickers
89
- $('.datepicker').each(function() {
90
- $(this).datepicker($.datepicker.regional[this.dataset.locale]);
91
- });
92
-
93
- // Date time picker (not related to date picker at all!)
94
- $( "#article_published_at" ).datetimepicker();
70
+ $('#checkall').click(function(e){check_all(e.target)});
95
71
 
96
72
  // DropDown
97
73
  $(".dropdown-toggle").dropdown();
@@ -1,5 +1,10 @@
1
1
  // Show and hide spinners on Ajax requests.
2
2
  $(document).ready(function(){
3
- $('form.spinnable').on('ajax:before', function(evt, xhr, status){ $('#spinner').show();})
4
- $('form.spinnable').on('ajax:complete', function(evt, xhr, status){ $('#spinner').hide();})
3
+ $('#spinner').hide().removeClass("hidden");
4
+ $('form.spinnable').on('ajax:before', function(evt, xhr, status){
5
+ $('#spinner').show();
6
+ });
7
+ $('form.spinnable').on('ajax:complete', function(evt, xhr, status){
8
+ $('#spinner').hide();
9
+ });
5
10
  });
@@ -1,7 +1,7 @@
1
1
  /* General */
2
2
 
3
3
  body {
4
- padding-top: 40px;
4
+ padding-top: 60px;
5
5
  }
6
6
 
7
7
  footer {
@@ -7,3 +7,46 @@
7
7
  border-bottom: #eee 1px solid;
8
8
  font-size: 0.9em;
9
9
  }
10
+
11
+ .markup-help-popup {
12
+ padding: 0;
13
+ }
14
+
15
+ .markup-help-popup > div {
16
+ padding: 1em;
17
+ }
18
+
19
+ .markup-help-popup-close {
20
+ float: right;
21
+ cursor: pointer;
22
+ }
23
+
24
+ .admintools {
25
+ display: none;
26
+ }
27
+
28
+ .admin-tools-reveal:hover .admintools {
29
+ display: block;
30
+ }
31
+
32
+ .tag-sidebar-tag-cloud {
33
+ overflow: hidden;
34
+ }
35
+
36
+ .tag-sidebar-tag-67 { font-size: 0.67em; }
37
+ .tag-sidebar-tag-75 { font-size: 0.75em; }
38
+ .tag-sidebar-tag-83 { font-size: 0.83em; }
39
+ .tag-sidebar-tag-91 { font-size: 0.91em; }
40
+ .tag-sidebar-tag-100 { font-size: 1em; }
41
+ .tag-sidebar-tag-112 { font-size: 1.12em; }
42
+ .tag-sidebar-tag-125 { font-size: 1.25em; }
43
+ .tag-sidebar-tag-137 { font-size: 1.37em; }
44
+ .tag-sidebar-tag-150 { font-size: 1.50em; }
45
+ .tag-sidebar-tag-162 { font-size: 1.62em; }
46
+ .tag-sidebar-tag-175 { font-size: 1.75em; }
47
+ .tag-sidebar-tag-187 { font-size: 1.87em; }
48
+ .tag-sidebar-tag-200 { font-size: 2em; }
49
+
50
+ .hidden {
51
+ display: none;
52
+ }
@@ -3,7 +3,6 @@
3
3
  *= require jquery-ui
4
4
  *= require tagmanager
5
5
  *= require sidebar_admin
6
- *= require datetimepicker
7
6
  */
8
7
  // "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
9
8
  @import "bootstrap-sprockets";
@@ -93,7 +93,7 @@ class Admin::ArticlesController < Admin::BaseController
93
93
  end
94
94
 
95
95
  def auto_complete_for_article_keywords
96
- @items = Tag.select(:display_name).order(:display_name).map(&:display_name)
96
+ @items = Tag.order(:display_name).pluck(:display_name)
97
97
  render json: @items
98
98
  end
99
99
 
@@ -123,9 +123,9 @@ class Admin::ArticlesController < Admin::BaseController
123
123
  if @article.save
124
124
  flash[:success] = I18n.t("admin.articles.autosave.success")
125
125
  @must_update_calendar =
126
- (params[:article][:published_at] and
127
- params[:article][:published_at].to_time.to_i < Time.zone.now.to_time.to_i and
128
- @article.parent_id.nil?)
126
+ params[:article][:published_at] and
127
+ params[:article][:published_at].to_time.to_i < Time.zone.now.to_time.to_i and
128
+ @article.parent_id.nil?
129
129
  respond_to do |format|
130
130
  format.js
131
131
  end
@@ -1,10 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Admin::DashboardController < Admin::BaseController
4
- require "open-uri"
5
- require "time"
6
- require "rexml/document"
7
-
8
4
  def index
9
5
  today = Time.zone.now.strftime("%Y-%m-%d 00:00")
10
6
 
@@ -38,7 +38,7 @@ class Admin::PostTypesController < Admin::BaseController
38
38
  # Reset all Articles from the PostType we're destroying to the default PostType
39
39
  # Wrap it in a transaction for safety
40
40
  @post_type.transaction do
41
- Article.where(post_type: @post_type.permalink).each do |article|
41
+ Article.where(post_type: @post_type.permalink).find_each do |article|
42
42
  article.post_type = "read"
43
43
  article.save
44
44
  end
@@ -1,22 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "open-uri"
4
- require "time"
5
- require "rexml/document"
6
-
7
3
  class Admin::ThemesController < Admin::BaseController
8
4
  def index
9
5
  @themes = Theme.find_all
10
- @themes.each do |theme|
11
- # TODO: Move to Theme
12
- theme.description_html = TextFilter.none.filter_text(theme.description)
13
- end
14
6
  @active = this_blog.current_theme
15
7
  end
16
8
 
17
9
  def preview
18
10
  theme = Theme.find(params[:theme])
19
- send_file File.join(theme.path, "preview.png"),
11
+ send_file theme.theme_file("preview.png"),
20
12
  type: "image/png", disposition: "inline", stream: false
21
13
  end
22
14
 
@@ -1,9 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ArticlesController < ContentController
4
+ include ActionView::Helpers::SanitizeHelper
5
+
4
6
  before_action :login_required, only: [:preview, :preview_page]
5
- before_action :auto_discovery_feed, only: [:show, :index]
6
7
  before_action :verify_config
8
+ before_action :auto_discovery_feed, only: [:show, :index]
7
9
 
8
10
  layout :theme_layout, except: [:trackback]
9
11
 
@@ -127,7 +129,7 @@ class ArticlesController < ContentController
127
129
  def markup_help
128
130
  filter = TextFilter.make_filter(params[:id])
129
131
  if filter
130
- render html: filter.commenthelp
132
+ render html: sanitize(filter.commenthelp)
131
133
  else
132
134
  render plain: "Unknown filter"
133
135
  end
@@ -201,7 +203,7 @@ class ArticlesController < ContentController
201
203
  case from
202
204
  when /^.*\.rss$/
203
205
  request.format = "rss"
204
- from = from.gsub(/\.rss/, "")
206
+ from = from.gsub(/\.rss$/, "")
205
207
  when /^.*\.atom$/
206
208
  request.format = "atom"
207
209
  from = from.gsub(/\.atom$/, "")
@@ -32,7 +32,7 @@ class CommentsController < BaseController
32
32
 
33
33
  def recaptcha_ok_for?(comment)
34
34
  use_recaptcha = comment.blog.use_recaptcha
35
- ((use_recaptcha && verify_recaptcha(model: comment)) || !use_recaptcha)
35
+ (use_recaptcha && verify_recaptcha(model: comment)) || !use_recaptcha
36
36
  end
37
37
 
38
38
  def new_comment_defaults
@@ -4,23 +4,24 @@ class SetupController < BaseController
4
4
  before_action :check_config
5
5
  layout "accounts"
6
6
 
7
- def index; end
7
+ def index
8
+ this_blog.blog_name = ""
9
+ @user = User.new
10
+ end
8
11
 
9
12
  def create
10
- this_blog.blog_name = params[:setting][:blog_name]
13
+ this_blog.blog_name = blog_params[:blog_name]
11
14
  this_blog.base_url = blog_base_url
12
15
 
13
- @user = User.new(login: "admin",
14
- email: params[:setting][:email],
15
- password: params[:setting][:password],
16
- text_filter_name: this_blog.text_filter,
17
- nickname: "Publify Admin")
16
+ @user = User.new(user_params.merge(login: "admin",
17
+ text_filter_name: this_blog.text_filter,
18
+ nickname: "Publify Admin"))
18
19
  @user.name = @user.login
19
20
 
20
- unless this_blog.save && @user.save
21
- redirect_to setup_url
22
- return
23
- end
21
+ return render :index unless this_blog.valid? && @user.valid?
22
+
23
+ this_blog.save!
24
+ @user.save!
24
25
 
25
26
  sign_in @user
26
27
 
@@ -36,6 +37,14 @@ class SetupController < BaseController
36
37
 
37
38
  private
38
39
 
40
+ def blog_params
41
+ params.require(:blog).permit(:blog_name)
42
+ end
43
+
44
+ def user_params
45
+ params.require(:user).permit(:email, :password)
46
+ end
47
+
39
48
  def create_first_post(user)
40
49
  this_blog.articles.build(title: I18n.t("setup.article.title"),
41
50
  author: user.login,
@@ -16,7 +16,7 @@ module Admin::FeedbackHelper
16
16
  change_status(item, context),
17
17
  button_to_edit_comment(item),
18
18
  button_to_delete_comment(item),
19
- button_to_conversation(item),
19
+ button_to_conversation(item)
20
20
  ], " "
21
21
  end
22
22
 
@@ -71,21 +71,29 @@ module BaseHelper
71
71
 
72
72
  def markup_help_popup(markup, text)
73
73
  if markup && markup.commenthelp.size > 1
74
- link_to(text,
75
- url_for(controller: "articles", action: "markup_help", id: markup.name),
76
- onclick: "return popup(this, 'Publify Markup Help')")
74
+ modal = tag.dialog id: "this_markup_help_popup_dialog", class: "markup-help-popup" do
75
+ tag.div do
76
+ close_div = tag.div tag.span("\u2a09", class: "markup-help-popup-close")
77
+ content = tag.div class: "content-target"
78
+ safe_join [close_div, content]
79
+ end
80
+ end
81
+
82
+ url = url_for(controller: "articles", action: "markup_help", id: markup.name)
83
+
84
+ link = link_to(text, "#", class: "markup-help-popup-link",
85
+ data: { target: "this_markup_help_popup_dialog",
86
+ url: url })
87
+
88
+ safe_join [modal, link]
77
89
  else
78
90
  ""
79
91
  end
80
92
  end
81
93
 
82
- def onhover_show_admin_tools(type, id = nil)
83
- admin_id = "#admin_#{[type, id].compact.join("_")}"
84
- tag = []
85
- tag << %{ onmouseover="if (getCookie('publify_user_profile') == 'admin')\
86
- { $('#{admin_id}').show(); }" }
87
- tag << %{ onmouseout="$('#{admin_id}').hide();" }
88
- safe_join(tag, " ")
94
+ # This method's original implementation was broken. Now it does nothing.
95
+ def onhover_show_admin_tools(_type, _id = nil)
96
+ ""
89
97
  end
90
98
 
91
99
  def feed_title
@@ -138,7 +146,7 @@ module BaseHelper
138
146
  v = v.chomp
139
147
  # trim the same number of spaces from the beginning of each line
140
148
  # this way plugins can indent nicely without making ugly source output
141
- spaces = /\A[ \t]*/.match(v)[0].gsub(/\t/, " ")
149
+ spaces = /\A[ \t]*/.match(v)[0].gsub("\t", " ")
142
150
  # add 2 spaces to line up with the assumed position of the surrounding tags
143
151
  v.gsub!(/^#{spaces}/, " ")
144
152
  end
@@ -190,7 +198,7 @@ module BaseHelper
190
198
  end
191
199
 
192
200
  def stop_index_robots?(blog)
193
- stop = (params[:year].present? || params[:page].present?)
201
+ stop = params[:year].present? || params[:page].present?
194
202
  stop = blog.unindex_tags if controller_name == "tags"
195
203
  stop = blog.unindex_categories if controller_name == "categories"
196
204
  stop
@@ -216,7 +224,7 @@ module BaseHelper
216
224
  elsif !@article.nil?
217
225
  @article.feed_url(type)
218
226
  elsif !@auto_discovery_url_atom.nil?
219
- instance_variable_get("@auto_discovery_url_#{type}")
227
+ instance_variable_get(:"@auto_discovery_url_#{type}")
220
228
  end
221
229
  end
222
230
 
@@ -36,7 +36,7 @@ class ArchivesSidebar < Sidebar
36
36
  name: I18n.l(Date.new(year, month), format: "%B %Y"),
37
37
  month: month,
38
38
  year: year,
39
- article_count: entry.count,
39
+ article_count: entry.count
40
40
  }
41
41
  end
42
42
  end
@@ -174,8 +174,7 @@ class Article < Content
174
174
 
175
175
  if params[:title]
176
176
  req_params[:permalink] = CGI.escape(params[:title])
177
- article = published.find_by(req_params)
178
- return article if article
177
+ published.find_by(req_params)
179
178
  end
180
179
  end
181
180
 
@@ -25,10 +25,15 @@ class Content < ApplicationRecord
25
25
  scope :drafts, -> { where(state: "draft").order("created_at DESC") }
26
26
  scope :no_draft, -> { where.not(state: "draft").order("published_at DESC") }
27
27
  scope :searchstring, lambda { |search_string|
28
+ result = where(state: "published")
29
+
28
30
  tokens = search_string.split(" ").map { |c| "%#{c.downcase}%" }
29
- matcher = "(LOWER(body) LIKE ? OR LOWER(extended) LIKE ? OR LOWER(title) LIKE ?)"
30
- template = "state = ? AND #{([matcher] * tokens.size).join(" AND ")}"
31
- where(template, "published", *tokens.map { |token| [token] * 3 }.flatten)
31
+ tokens.each do |token|
32
+ result = result
33
+ .where("(LOWER(body) LIKE ? OR LOWER(extended) LIKE ? OR LOWER(title) LIKE ?)",
34
+ token, token, token)
35
+ end
36
+ result
32
37
  }
33
38
 
34
39
  scope :published_at_like, lambda { |date_at|
data/app/models/note.rb CHANGED
@@ -44,7 +44,7 @@ class Note < Content
44
44
  end
45
45
 
46
46
  def html_postprocess(field, html)
47
- super(field, PublifyApp::Textfilter::Twitterfilter.filtertext(html))
47
+ super(field, PublifyCore::TextFilter::Twitterfilter.filtertext(html))
48
48
  end
49
49
 
50
50
  def truncate(message, length)
@@ -17,8 +17,8 @@ class Redirect < ApplicationRecord
17
17
  return path if %r{^(https?)://([^/]*)(.*)}.match?(path)
18
18
 
19
19
  url_root = blog.root_path
20
- unless url_root.nil? || path[0, url_root.length] == url_root
21
- path = File.join(url_root, path)
20
+ if url_root.length == 0 || path[0, url_root.length] != url_root
21
+ path = blog.url_for(path, only_path: true)
22
22
  end
23
23
  path
24
24
  end
@@ -18,12 +18,34 @@ class TagSidebar < Sidebar
18
18
  average = total.to_f / @tags.size
19
19
  @sizes = tags.reduce({}) do |h, tag|
20
20
  size = tag.content_counter.to_f / average
21
- h.merge tag => size.clamp(2.0 / 3.0, 2) * 100
21
+ h.merge tag => bucket(size)
22
22
  end
23
23
  end
24
24
 
25
- def font_multiplier
26
- 80
25
+ BUCKETS = [
26
+ 67,
27
+ 75,
28
+ 83,
29
+ 91,
30
+ 100,
31
+ 112,
32
+ 125,
33
+ 137,
34
+ 150,
35
+ 162,
36
+ 175,
37
+ 187,
38
+ 200
39
+ ].freeze
40
+
41
+ private
42
+
43
+ def bucket(size)
44
+ base_size = size.clamp(2.0 / 3.0, 2) * 100
45
+ BUCKETS.each do |sz|
46
+ return sz if sz >= base_size
47
+ end
48
+ BUCKETS.last
27
49
  end
28
50
  end
29
51
 
@@ -65,7 +65,7 @@ class TextFilter
65
65
  markdown,
66
66
  smartypants,
67
67
  markdown_smartypants,
68
- none,
68
+ none
69
69
  ]
70
70
  end
71
71
 
@@ -30,7 +30,7 @@ class ResourceUploader < CarrierWave::Uploader::Base
30
30
  end
31
31
 
32
32
  def dynamic_resize_to_fit(size)
33
- resize_setting = model.blog.send("image_#{size}_size").to_i
33
+ resize_setting = model.blog.send(:"image_#{size}_size").to_i
34
34
 
35
35
  resize_to_fit(resize_setting, resize_setting)
36
36
  end
@@ -57,11 +57,9 @@ class ResourceUploader < CarrierWave::Uploader::Base
57
57
  end
58
58
 
59
59
  def check_content_type!(new_file)
60
- detected_type = if image? new_file
61
- file_content_content_type(new_file)
62
- else
63
- file_content_type(new_file)
64
- end
60
+ return unless image? new_file
61
+
62
+ detected_type = file_content_content_type(new_file)
65
63
  if detected_type != new_file.content_type
66
64
  raise CarrierWave::IntegrityError, "has MIME type mismatch"
67
65
  end
@@ -72,8 +70,4 @@ class ResourceUploader < CarrierWave::Uploader::Base
72
70
  def file_content_content_type(new_file)
73
71
  Marcel::MimeType.for Pathname.new(new_file.path)
74
72
  end
75
-
76
- def file_content_type(new_file)
77
- Marcel::MimeType.for Pathname.new(new_file.path), name: new_file.filename
78
- end
79
73
  end
@@ -9,7 +9,7 @@
9
9
  <span id="preview_link">
10
10
  <%= link_to(t('.preview'), { controller: '/articles', action: 'preview', id: @article.id }, { target: 'new', class: 'btn btn-default' }) if @article.id %>
11
11
  </span>
12
- <input id="save_draft" type="submit" value="<%= t('.save_as_draft') %>" name="article[draft]" class="btn btn-default" />
12
+ <input id="save_draft" type="submit" value="<%= t('.save_as_draft') %>" name="article[draft]" class="btn btn-default">
13
13
  <!-- Button trigger modal -->
14
14
  <button class="btn btn-success" data-toggle="modal" type="button" data-target="#publishOptions">
15
15
  <%= controller.action_name == 'new' ? t('.publish') : t('.save') %>
@@ -144,7 +144,7 @@
144
144
  <%= toggle_element('publish') %>
145
145
  </p>
146
146
  <div id="publish" class="collapse">
147
- <%= text_field 'article', 'published_at' %>
147
+ <%= datetime_field 'article', 'published_at' %>
148
148
  <p>
149
149
  <span class="btn btn-mini btn-default">
150
150
  <%= toggle_element('publish', t('.ok')) %>