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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +52 -1
- data/app/assets/javascripts/markup_help_popup.js +25 -0
- data/app/assets/javascripts/optional_field_toggle.js +7 -0
- data/app/assets/javascripts/preview_comment.js +10 -0
- data/app/assets/javascripts/publify.js +3 -0
- data/app/assets/javascripts/publify_admin.js +1 -25
- data/app/assets/javascripts/spinnable.js +7 -2
- data/app/assets/stylesheets/administration_structure.css.scss +1 -1
- data/app/assets/stylesheets/publify.css.scss +43 -0
- data/app/assets/stylesheets/publify_admin.css.scss +0 -1
- data/app/controllers/admin/articles_controller.rb +4 -4
- data/app/controllers/admin/dashboard_controller.rb +0 -4
- data/app/controllers/admin/post_types_controller.rb +1 -1
- data/app/controllers/admin/themes_controller.rb +1 -9
- data/app/controllers/articles_controller.rb +5 -3
- data/app/controllers/comments_controller.rb +1 -1
- data/app/controllers/setup_controller.rb +20 -11
- data/app/helpers/admin/feedback_helper.rb +1 -1
- data/app/helpers/base_helper.rb +21 -13
- data/app/models/archives_sidebar.rb +1 -1
- data/app/models/article.rb +1 -2
- data/app/models/content.rb +8 -3
- data/app/models/note.rb +1 -1
- data/app/models/redirect.rb +2 -2
- data/app/models/tag_sidebar.rb +25 -3
- data/app/models/text_filter.rb +1 -1
- data/app/uploaders/resource_uploader.rb +4 -10
- data/app/views/admin/articles/_form.html.erb +2 -2
- data/app/views/admin/articles/index.html.erb +4 -5
- data/app/views/admin/dashboard/_comment.html.erb +1 -1
- data/app/views/admin/dashboard/_drafts.html.erb +1 -1
- data/app/views/admin/feedback/_ham.html.erb +1 -1
- data/app/views/admin/feedback/article.html.erb +1 -1
- data/app/views/admin/feedback/edit.html.erb +1 -1
- data/app/views/admin/feedback/index.html.erb +2 -2
- data/app/views/admin/migrations/show.html.erb +1 -1
- data/app/views/admin/notes/_form.html.erb +2 -3
- data/app/views/admin/notes/_note.html.erb +2 -2
- data/app/views/admin/notes/edit.html.erb +0 -1
- data/app/views/admin/pages/_pages.html.erb +1 -1
- data/app/views/admin/post_types/_index_and_form.html.erb +2 -2
- data/app/views/admin/redirects/_index_and_form.html.erb +2 -2
- data/app/views/admin/seo/show.html.erb +1 -1
- data/app/views/admin/settings/display.html.erb +1 -1
- data/app/views/admin/settings/feedback.html.erb +1 -1
- data/app/views/admin/settings/index.html.erb +1 -1
- data/app/views/admin/settings/write.html.erb +1 -1
- data/app/views/admin/tags/_index_and_form.html.erb +1 -1
- data/app/views/admin/users/_form.html.erb +1 -1
- data/app/views/articles/_comment_form.html.erb +9 -7
- data/app/views/articles/_comment_preview.html.erb +1 -1
- data/app/views/articles/_trackback.html.erb +3 -3
- data/app/views/articles/comment_failed.js.erb +1 -1
- data/app/views/articles/read.html.erb +4 -2
- data/app/views/comments/_comment.html.erb +1 -1
- data/app/views/comments/preview.js.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +3 -3
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +2 -2
- data/app/views/devise/sessions/new.html.erb +2 -2
- data/app/views/devise/shared/_links.html.erb +3 -3
- data/app/views/layouts/accounts.html.erb +3 -3
- data/app/views/layouts/administration.html.erb +4 -6
- data/app/views/layouts/default.html.erb +1 -1
- data/app/views/layouts/editor.html.erb +3 -3
- data/app/views/notes/index.html.erb +1 -1
- data/app/views/notes/show_in_reply.html.erb +1 -1
- data/app/views/notification_mailer/comment.html.erb +1 -1
- data/app/views/search_sidebar/_content.html.erb +2 -3
- data/app/views/settings/install.html.erb +2 -2
- data/app/views/setup/index.html.erb +42 -11
- data/app/views/shared/_page_header.html.erb +5 -5
- data/app/views/tag_sidebar/_content.html.erb +2 -2
- data/config/locales/ar.yml +0 -1
- data/config/locales/da.yml +0 -1
- data/config/locales/de.yml +0 -1
- data/config/locales/en.yml +0 -1
- data/config/locales/es-MX.yml +0 -1
- data/config/locales/fr.yml +0 -1
- data/config/locales/he.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +0 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/nb.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/ro.yml +0 -1
- data/config/locales/ru.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -1
- data/db/seeds.rb +5 -5
- data/lib/publify_core/string_ext.rb +52 -0
- data/lib/publify_core/testing_support/feed_assertions.rb +1 -4
- data/lib/publify_core/text_filter/markdown.rb +53 -0
- data/lib/{publify_textfilter_markdown_smartquotes.rb → publify_core/text_filter/markdown_smartquotes.rb} +3 -3
- data/lib/publify_core/text_filter/none.rb +14 -0
- data/lib/publify_core/text_filter/smartypants.rb +14 -0
- data/lib/publify_core/text_filter/twitterfilter.rb +55 -0
- data/lib/publify_core/version.rb +1 -1
- data/lib/publify_core.rb +6 -6
- data/lib/text_filter_plugin.rb +23 -11
- data/lib/theme.rb +18 -7
- metadata +64 -29
- data/app/assets/javascripts/datetimepicker.js +0 -1470
- data/app/assets/stylesheets/datetimepicker.css +0 -306
- data/lib/publify_textfilter_markdown.rb +0 -56
- data/lib/publify_textfilter_none.rb +0 -16
- data/lib/publify_textfilter_smartypants.rb +0 -16
- data/lib/publify_textfilter_twitterfilter.rb +0 -57
- data/lib/transforms.rb +0 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a80ae8a43965fcfb378504dd7b9d0cf6f13d5bc87df95fd9fb937caca4eb401f
|
4
|
+
data.tar.gz: d18535211810991287441d7e851786062d1ae0dea3b7835f47a102d20c0c179f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 [
|
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,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
|
+
});
|
@@ -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
|
-
$('
|
4
|
-
$('form.spinnable').on('ajax:
|
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
|
});
|
@@ -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
|
+
}
|
@@ -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.
|
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
|
-
|
127
|
-
|
128
|
-
|
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
|
@@ -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).
|
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
|
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
|
-
(
|
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
|
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 =
|
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
|
-
|
15
|
-
|
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.
|
21
|
-
|
22
|
-
|
23
|
-
|
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,
|
data/app/helpers/base_helper.rb
CHANGED
@@ -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
|
-
|
75
|
-
|
76
|
-
|
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
|
-
|
83
|
-
|
84
|
-
|
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(
|
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 =
|
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
|
|
data/app/models/article.rb
CHANGED
data/app/models/content.rb
CHANGED
@@ -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
|
-
|
30
|
-
|
31
|
-
|
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
data/app/models/redirect.rb
CHANGED
@@ -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
|
-
|
21
|
-
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
|
data/app/models/tag_sidebar.rb
CHANGED
@@ -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
|
21
|
+
h.merge tag => bucket(size)
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
|
26
|
-
|
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
|
|
data/app/models/text_filter.rb
CHANGED
@@ -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
|
-
|
61
|
-
|
62
|
-
|
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
|
-
<%=
|
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')) %>
|