trusty-cms 7.0.19 → 7.0.21

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d37b90774a4c87ae80254d2a3729921f05098db89c5f64acdcfc11e81f2b5c71
4
- data.tar.gz: 7f824c9d8f95202c6a094caf6e2ab2ee90c57a2ad6df665d1f2225d7e5a73fe3
3
+ metadata.gz: 560be4f9866faaea507a2120b4482e910fc41c8382f048f25a601a41b9f622d7
4
+ data.tar.gz: 54a5e403b5d9d8d0a19aed38d5ae9e11f80aab37f97a02cc9c1161aa4da96048
5
5
  SHA512:
6
- metadata.gz: 1c18e2566d7bdf42b36746d6e4cfa5030a4c6eb5892cfdd2aa3d4d05a51de4758258347c009f18f5624cd12b70038d0b67541b48fee2d92f0ca321a1605c40ff
7
- data.tar.gz: 760b7480db6eaca5f5583c5937096ea19439e12f379dec6ea80808d76f2375107a43079dcd7852dd2ae94bcdf4d9e2ec3fcb05cfa768a6e0e070db865dced0b4
6
+ metadata.gz: 7163176299de8e165849f47d372432a720de5e38aaacd340c213f6539c51103a87d2eafcdf1c6cdf31ec03123c976d8ef794c6ec66601543060f3a1f16601d59
7
+ data.tar.gz: 63a8dcdddae7c1fadb2ba766f141ae11ffba41771ba5f43929352c3a9bce6cb5e490bc62a305d8948dd240f96d00570b0adf4b2c1d8d3f5ae9fdc6054e70668d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trusty-cms (7.0.19)
4
+ trusty-cms (7.0.21)
5
5
  RedCloth (= 4.3.3)
6
6
  activestorage-validator
7
7
  acts_as_list (>= 0.9.5, < 1.3.0)
@@ -36,6 +36,7 @@ PATH
36
36
  stringex (>= 2.7.1, < 2.9.0)
37
37
  tzinfo (>= 1.2.3, < 2.1.0)
38
38
  uglifier (>= 3.2, < 5.0)
39
+ uri
39
40
  will_paginate (>= 3, < 5)
40
41
 
41
42
  GEM
@@ -402,6 +403,7 @@ GEM
402
403
  concurrent-ruby (~> 1.0)
403
404
  uglifier (4.2.1)
404
405
  execjs (>= 0.3.0, < 3)
406
+ uri (1.0.2)
405
407
  warden (1.2.9)
406
408
  rack (>= 2.0.9)
407
409
  websocket-driver (0.7.6)
data/README.md CHANGED
@@ -77,6 +77,25 @@ Steps:
77
77
 
78
78
  rspec
79
79
 
80
+ ### Page Type Routes Setup
81
+ If your TrustyCMS project includes custom Page models, additional configuration is required to ensure proper URL formatting in the Admin interface. This setup allows TrustyCMS to determine the live URL of a page while editing, and to display it conveniently in the Edit Page dropdown menu.
82
+
83
+ To enable this, create the following initializer file: `config/initializers/page_type_routes.rb`
84
+
85
+ ```ruby
86
+ PAGE_TYPE_ROUTES = {
87
+ BlogPage: 'blog',
88
+ DonationPage: 'donate',
89
+ ExhibitionPage: 'exhibit',
90
+ NonTicketedEventPage: 'event',
91
+ PackagePage: 'package',
92
+ PersonPage: 'biography',
93
+ ProductionPage: 'production',
94
+ VenuePage: 'venues',
95
+ }.freeze
96
+ ```
97
+
98
+ This `PAGE_TYPE_ROUTES` constant maps custom Page model names to their corresponding route segments as defined in `config/routes.rb`. TrustyCMS will use these mappings to generate URLs for pages in the admin interface.
80
99
 
81
100
  ### Page Status Refresh Setup
82
101
 
@@ -27,6 +27,7 @@
27
27
  @import "partials/preferences";
28
28
  @import "partials/treetable";
29
29
  @import "partials/login_form";
30
+ @import "partials/previous_versions";
30
31
  @import "multi_site_main";
31
32
  @import "site_chooser";
32
33
 
@@ -0,0 +1,18 @@
1
+ #previous-versions .drawer_handle {
2
+ padding-top: 0;
3
+ }
4
+
5
+ #previous-versions h4 {
6
+ margin-bottom: 0.5em;
7
+ margin-top: 0;
8
+ padding-bottom: 0.25em;
9
+ padding-top: 0;
10
+ }
11
+
12
+ #previous-versions th {
13
+ text-align: center;
14
+ }
15
+
16
+ #previous-versions #no-previous-versions {
17
+ padding-bottom: 0.5em;
18
+ }
@@ -3,7 +3,9 @@ class Admin::PagesController < Admin::ResourceController
3
3
  before_action :count_deleted_pages, only: [:destroy]
4
4
  before_action :set_page, only: %i[edit restore]
5
5
  rescue_from ActiveRecord::RecordInvalid, with: :validation_error
6
+ include Admin::NodeHelper
6
7
  include Admin::PagesHelper
8
+ include Admin::UrlHelper
7
9
 
8
10
  class PreviewStop < ActiveRecord::Rollback
9
11
  def message
@@ -33,7 +35,7 @@ class Admin::PagesController < Admin::ResourceController
33
35
  @site_id = params[:site_id] || Page.current_site.id
34
36
  @q = initialize_search
35
37
 
36
- @pages = fetch_search_results if search_title_present?
38
+ @pages = fetch_search_results if search_query_present?
37
39
  render
38
40
  end
39
41
 
@@ -48,6 +50,8 @@ class Admin::PagesController < Admin::ResourceController
48
50
  def edit
49
51
  verify_site_id
50
52
  load_assets
53
+ @page_url = generate_page_url(request.url, @page)
54
+ @page_path = format_path(@page.path)
51
55
  @versions = format_versions(@page.versions)
52
56
  response_for :edit
53
57
  end
@@ -83,8 +87,9 @@ class Admin::PagesController < Admin::ResourceController
83
87
  end
84
88
 
85
89
  def verify_site_id
86
- @site_id = params[:site_id]&.to_i
87
- unless @site_id && @page&.site_id == @site_id
90
+ page_site_id = @page.site_id
91
+ user_site_ids = current_user.admins_sites.each.pluck(:site_id)
92
+ unless user_site_ids.include?(page_site_id)
88
93
  redirect_to admin_pages_url
89
94
  end
90
95
  end
@@ -100,12 +105,13 @@ class Admin::PagesController < Admin::ResourceController
100
105
  end
101
106
 
102
107
  def fetch_search_results
103
- @title = params.dig(:search, :title)
104
- Page.ransack(title_cont: @title, site_id_eq: @site_id).result
108
+ @query = params.dig(:search, :query)
109
+ Page.ransack(title_cont: @query, site_id_eq: @site_id).result
110
+ .or(Page.ransack(slug_cont: @query, site_id_eq: @site_id).result)
105
111
  end
106
112
 
107
- def search_title_present?
108
- params.dig(:search, :title).present?
113
+ def search_query_present?
114
+ params.dig(:search, :query).present?
109
115
  end
110
116
 
111
117
  def validation_error(e)
@@ -0,0 +1,33 @@
1
+ module Admin::UrlHelper
2
+ require 'uri'
3
+
4
+ def build_url(base_url, page)
5
+ if page.class.name == 'Page'
6
+ "#{base_url}#{page.path}"
7
+ else
8
+ path = lookup_page_path(page)
9
+ path ? "#{base_url}/#{path}/#{page.slug}" : nil
10
+ end
11
+ end
12
+
13
+ def extract_base_url(url)
14
+ uri = URI.parse(url)
15
+ host = uri.host
16
+ scheme = uri.scheme
17
+ return "#{scheme}://#{host}:#{uri.port}" if host&.include?('localhost')
18
+
19
+ "#{scheme}://#{host}"
20
+ end
21
+
22
+ def generate_page_url(url, page)
23
+ base_url = extract_base_url(url)
24
+ build_url(base_url, page)
25
+ end
26
+
27
+ def lookup_page_path(page)
28
+ # Use the globally defined PAGE_TYPE_ROUTES from the parent application
29
+ return nil unless defined?(PAGE_TYPE_ROUTES) && PAGE_TYPE_ROUTES.is_a?(Hash)
30
+
31
+ PAGE_TYPE_ROUTES[page.class.name.to_sym]
32
+ end
33
+ end
data/app/models/page.rb CHANGED
@@ -156,7 +156,7 @@ class Page < ActiveRecord::Base
156
156
  end
157
157
 
158
158
  def self.ransackable_attributes(auth_object = nil)
159
- ['site_id', 'title']
159
+ ['site_id', 'title', 'slug']
160
160
  end
161
161
 
162
162
  def self.parent_pages(homepage_id)
@@ -12,6 +12,10 @@
12
12
  .drawer
13
13
  .drawer_contents#attributes
14
14
  %table.fieldset
15
+ - if @page_url.present?
16
+ = render :partial => 'url_row', :locals => {:page_url => @page_url}
17
+ - if @page_path.present?
18
+ = render :partial => 'path_row', :locals => {:page_path => @page_path}
15
19
  = render :partial => 'meta_row', :collection => @meta, :locals => {:f => fields}
16
20
  = render :partial => 'admin/page_fields/page_field', :collection => @page.fields
17
21
  = render_region :extended_metadata, :locals => {:f => fields}
@@ -29,9 +33,6 @@
29
33
  = render :partial => 'admin/page_parts/page_part', :collection => @page.parts
30
34
  = render_region :parts_bottom, :locals => {:f => fields}
31
35
 
32
- #previous-versions
33
- = render :partial => 'admin/pages/previous_versions'
34
-
35
36
  .set
36
37
  - render_region :layout, :locals => {:f => fields} do |layout|
37
38
  - layout.edit_layout do
@@ -7,7 +7,7 @@
7
7
  = node_title
8
8
  - else
9
9
  %i.far.fa-file
10
- = (link_to("#{node_title}".html_safe, edit_admin_page_path(page, site_id: page.site_id), :title => page.path)).html_safe
10
+ = (link_to("#{node_title}".html_safe, edit_admin_page_path(page), :title => page.path)).html_safe
11
11
  = page_type
12
12
  = spinner
13
13
  - node.status_column do
@@ -0,0 +1,5 @@
1
+ %tr
2
+ %th.label
3
+ %label{ :for => "page_path" }= t('path')
4
+ %td.field
5
+ = text_field_tag "page[path]", page_path, :id => "page_path_content", :class => 'textbox', :maxlength => 200, disabled: true
@@ -1,28 +1,33 @@
1
- %fieldset
2
- %h4
3
- %i.fas.fa-clock-rotate-left
4
- Previous Versions
5
-
6
- - if @versions.present?
7
- %section
8
- %table
9
- %thead
10
- %tr
11
- %th Date Updated
12
- %th Time Updated
13
- %th Updated By
14
- %th Action
15
- %tbody{ :id => 'versions-table' }
16
- - @versions.each do |version|
17
- %tr
18
- %td= version[:update_date]
19
- %td= version[:update_time]
20
- %td= version[:updated_by]
21
- %td
22
- = link_to 'Restore',
23
- restore_version_admin_page_path(@page.id, version_index: version[:index]),
24
- method: :put,
25
- data: { confirm: 'Are you sure you want to restore this version?' }
26
- - else
27
- %section
28
- %p No previous versions are available.
1
+ #previous-versions
2
+ %fieldset
3
+ %h4
4
+ %i.fas.fa-clock-rotate-left
5
+ Previous Versions
6
+ .drawer_contents#versions
7
+ - if @versions.present?
8
+ %section
9
+ %table
10
+ %thead
11
+ %tr
12
+ %th Date Updated
13
+ %th Time Updated
14
+ %th Updated By
15
+ %th Action
16
+ %tbody{ :id => 'versions-table' }
17
+ - @versions.each do |version|
18
+ %tr
19
+ %td= version[:update_date]
20
+ %td= version[:update_time]
21
+ %td= version[:updated_by]
22
+ %td
23
+ = button_to 'Restore',
24
+ restore_version_admin_page_path(@page, version_index: version[:index]),
25
+ method: :put,
26
+ data: { confirm: 'Are you sure you want to restore this version?' }
27
+ - else
28
+ %section#no-previous-versions
29
+ %p No previous versions are available.
30
+ .drawer_handle
31
+ %a.toggle{:href=>'#versions', :rel=>'toggle[versions]', :class=>"#{(meta_errors? ? 'less' : 'more')}"}
32
+ = meta_label
33
+ %i.fas.fa-angle-down
@@ -2,7 +2,7 @@
2
2
  = hidden_field_tag :site_id, @site_id
3
3
  .page-search
4
4
  %i.fas.fa-search
5
- = f.search_field :title, value: title, placeholder: 'Search by Page Title', id: 'search-input'
5
+ = f.search_field :query, value: @query, placeholder: 'Search by Page Title or Slug', id: 'search-input'
6
6
  %input.button{ type: 'submit', value: 'Search' }
7
7
  - if show_view_all_button
8
8
  = link_to t("view_all_pages"), admin_pages_path, class: 'button'
@@ -7,7 +7,7 @@
7
7
  = node_title
8
8
  - else
9
9
  %i.far.fa-file
10
- = (link_to("#{node_title}".html_safe, edit_admin_page_path(page, site_id: page.site_id), :title => page.path)).html_safe
10
+ = (link_to("#{node_title}".html_safe, edit_admin_page_path(page), :title => page.path)).html_safe
11
11
  = page_type
12
12
  = spinner
13
13
  - node.path_column do
@@ -0,0 +1,5 @@
1
+ %tr
2
+ %th.label
3
+ %label{ :for => "page_url" }= t('url')
4
+ %td.field
5
+ = text_field_tag "page[url]", page_url, :id => "page_url_content", :class => 'textbox', :maxlength => 200, disabled: true
@@ -6,5 +6,6 @@
6
6
  - main.edit_form do
7
7
  = form_for @page, :as => :page, :url => admin_page_path(@page), :html => {:method => :put, :multipart => true, :id => 'edit_page', 'data-onsubmit_status'=>t('saving_changes')} do |fields|
8
8
  = render :partial => 'fields', :object => fields
9
+ = render :partial => 'previous_versions'
9
10
  - main.edit_popups do
10
11
  = render :partial => 'popups'
@@ -1,8 +1,8 @@
1
- - @page_title = t('pages') + ' - ' + default_page_title
1
+ - @page_title = t('search') + ' - ' + default_page_title
2
2
 
3
3
  .outset
4
4
  = render_region :top
5
- = render 'search_form', title: @title, show_view_all_button: true
5
+ = render 'search_form', query: @query, show_view_all_button: true
6
6
  %table.index.tablesaw#pages{ :summary => t('page_hierarchy') }
7
7
  %thead
8
8
  %tr
@@ -270,6 +270,7 @@ en:
270
270
  saving_changes: Saving Changes
271
271
  saving_preferences: Saving preferences
272
272
  scheduled: "Scheduled"
273
+ search: 'Search'
273
274
  search_tags: 'Search Tags:'
274
275
  select:
275
276
  default: '<default>'
@@ -322,6 +323,7 @@ en:
322
323
  days: "days"
323
324
  weeks: "weeks"
324
325
  months: "months"
326
+ url: 'URL'
325
327
  user: 'User'
326
328
  username: 'Username'
327
329
  username_or_email: 'Username or E-mail Address'
@@ -1,3 +1,3 @@
1
1
  module TrustyCms
2
- VERSION = '7.0.19'.freeze
2
+ VERSION = '7.0.21'.freeze
3
3
  end
data/trusty_cms.gemspec CHANGED
@@ -59,5 +59,6 @@ a general purpose content management system--not merely a blogging engine.'
59
59
  s.add_dependency 'stringex', '>= 2.7.1', '< 2.9.0'
60
60
  s.add_dependency 'tzinfo', '>= 1.2.3', '< 2.1.0'
61
61
  s.add_dependency 'uglifier', '>= 3.2', '< 5.0'
62
+ s.add_dependency 'uri'
62
63
  s.add_dependency 'will_paginate', '>= 3', '< 5'
63
64
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.19
4
+ version: 7.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-24 00:00:00.000000000 Z
11
+ date: 2025-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activestorage-validator
@@ -546,6 +546,20 @@ dependencies:
546
546
  - - "<"
547
547
  - !ruby/object:Gem::Version
548
548
  version: '5.0'
549
+ - !ruby/object:Gem::Dependency
550
+ name: uri
551
+ requirement: !ruby/object:Gem::Requirement
552
+ requirements:
553
+ - - ">="
554
+ - !ruby/object:Gem::Version
555
+ version: '0'
556
+ type: :runtime
557
+ prerelease: false
558
+ version_requirements: !ruby/object:Gem::Requirement
559
+ requirements:
560
+ - - ">="
561
+ - !ruby/object:Gem::Version
562
+ version: '0'
549
563
  - !ruby/object:Gem::Dependency
550
564
  name: will_paginate
551
565
  requirement: !ruby/object:Gem::Requirement
@@ -728,6 +742,7 @@ files:
728
742
  - app/assets/stylesheets/admin/partials/_messages.scss
729
743
  - app/assets/stylesheets/admin/partials/_popup.scss
730
744
  - app/assets/stylesheets/admin/partials/_preferences.scss
745
+ - app/assets/stylesheets/admin/partials/_previous_versions.scss
731
746
  - app/assets/stylesheets/admin/partials/_sidebar.scss
732
747
  - app/assets/stylesheets/admin/partials/_tabcontrol.scss
733
748
  - app/assets/stylesheets/admin/partials/_table.scss
@@ -765,6 +780,7 @@ files:
765
780
  - app/helpers/admin/references_helper.rb
766
781
  - app/helpers/admin/regions_helper.rb
767
782
  - app/helpers/admin/resource_helper.rb
783
+ - app/helpers/admin/url_helper.rb
768
784
  - app/helpers/admin/users_helper.rb
769
785
  - app/helpers/admin/welcome_helper.rb
770
786
  - app/helpers/application_helper.rb
@@ -831,10 +847,12 @@ files:
831
847
  - app/views/admin/pages/_fields.html.haml
832
848
  - app/views/admin/pages/_meta_row.html.haml
833
849
  - app/views/admin/pages/_node.html.haml
850
+ - app/views/admin/pages/_path_row.haml
834
851
  - app/views/admin/pages/_popups.html.haml
835
852
  - app/views/admin/pages/_previous_versions.haml
836
853
  - app/views/admin/pages/_search_form.html.haml
837
854
  - app/views/admin/pages/_search_result_node.html.haml
855
+ - app/views/admin/pages/_url_row.haml
838
856
  - app/views/admin/pages/children.html.haml
839
857
  - app/views/admin/pages/edit.html.haml
840
858
  - app/views/admin/pages/index.html.haml