effective_pages 3.7.8 → 3.7.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9afdd8eb4b1d378a4b39eadc3325e838e8ce70b1af6bdfb520c95a0d42b8b2ea
4
- data.tar.gz: 06402fc18cfa14a6db2dcc791e497b00d0977fedcbac4294bea4238723d6bce5
3
+ metadata.gz: 3c8d20b00fb7b1c7f13d727371a39ceecdbd02fc965a54d85093519bbcedb72b
4
+ data.tar.gz: f3c71d8c58d2384cc0af11a6517615cea6712c672391dbdd5559300d4191cfa1
5
5
  SHA512:
6
- metadata.gz: 11e71da9e8cf5711b52df703fc3ff934c323bf07fc0abc264b877069029c9371ba2e5e7bc17e783ab0edb555af50711f68c9dddfe5aea67915572730593316c1
7
- data.tar.gz: ca68767a16dbac14fdc57690297d273a4674d6b89d9ceac64d7ac73af8b0408f39cf00fdf48e6d68d0ba94cbb574e5dbeb1f0de71ead02aa4a899874f6a11836
6
+ metadata.gz: ae6e2c309d3c716f836c8759689ce3d258e5327a007a04fb473e233e7c9fd5debfb42876aebc99494a1b717cee88674e899da0cf2e1bc919c872309d7a1407c7
7
+ data.tar.gz: ec46f9319dc22fbfd5e968325b0afe8b7291d4b754d0333aa48408df5f71b56860ab43402e6237854e877ebc0bd124d06adc8971204252343c48ccc8b0083fed
@@ -25,7 +25,7 @@ module Effective
25
25
  flash.now[:warning] = [
26
26
  'Hi Admin!',
27
27
  ('You are viewing a draft page.' unless @page.published?),
28
- ("<a href='#{effective_pages.edit_admin_page_path(@page)}' class='alert-link'>Click here to edit this page</a>.")
28
+ ("<a href='#{effective_pages.edit_admin_page_path(@page)}' class='alert-link' data-turbolinks='false'>Click here to edit this page</a>.")
29
29
  ].compact.join(' ')
30
30
  end
31
31
 
@@ -1,6 +1,9 @@
1
1
  = effective_form_with(model: [:admin, permalink], engine: true) do |f|
2
2
  = f.text_field :title, required: true, hint: 'Title of the permalink to be displayed'
3
- = f.text_field :slug, required: true, hint: 'Slug for link of the permalink'
3
+
4
+ - current_url = (effective_pages.permalink_redirect_url(f.object) rescue nil)
5
+ = f.text_field :slug, required: true, hint: "The slug controls this permalink's internet address. Be careful, changing the slug will break links that other websites may have to the old address.<br>#{('This permalink is currently reachable via ' + link_to(current_url.gsub(f.object.slug, '<strong>' + f.object.slug + '</strong>').html_safe, current_url)) if current_url }".html_safe
6
+
4
7
  = f.text_field :summary, required: true, hint: 'Summary explanation of the permalink not displayed'
5
8
  = f.url_field :url, required: false, hint: 'The link if redirecting to a website or specific page'
6
9
  = f.file_field :attachment, required: false, hint: 'The attachment of the permalink if redirecting to a document, image or other file'
@@ -1,3 +1,3 @@
1
1
  module EffectivePages
2
- VERSION = '3.7.8'.freeze
2
+ VERSION = '3.7.9'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.8
4
+ version: 3.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails