wco_models 3.1.0.153 → 3.1.0.155
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/wco/utils.scss +1 -1
- data/app/controllers/wco/application_controller.rb +11 -10
- data/app/controllers/wco/reports_controller.rb +1 -0
- data/app/controllers/wco/sites_controller.rb +9 -0
- data/app/models/wco/office_action_template.rb +3 -3
- data/app/models/wco/profile.rb +4 -0
- data/app/models/wco/site.rb +112 -1
- data/app/models/wco/sitemap_path.rb +20 -0
- data/app/models/wco_email/email_filter.rb +8 -0
- data/app/models/wco_email/email_filter_condition.rb +17 -0
- data/app/models/wco_email/message.rb +6 -3
- data/app/models/wco_email/message_stub.rb +1 -1
- data/app/models/wco_hosting/appliance.rb +1 -1
- data/app/views/layouts/wco/application.haml +3 -0
- data/app/views/wco/_main_header.haml +33 -30
- data/app/views/wco/leads/show.haml +1 -1
- data/app/views/wco/sitemap_paths/_form.haml +18 -0
- data/app/views/wco/sitemap_paths/_index.haml +15 -0
- data/app/views/wco/sites/show.haml +16 -6
- data/app/views/wco/tags/_header.haml +4 -6
- data/app/views/wco/tags/_menuitem.haml +9 -0
- data/config/routes.rb +2 -0
- data/lib/shortcuts.rb +11 -0
- data/lib/wco/ai_writer.rb +1 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7087d1bed892c6923940fc6d1c8ba234ad9e9773e490e4bce6d92808625ad211
|
4
|
+
data.tar.gz: f88b3cb63acf8f2253156ec1fd45b53d1ff6e9d14886a19233142e7e026efc0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da0b670caac9e737d49dbbf02633554617cd18c9abdc8def6dc8b65ad20e62038aa984e01f010bed84a2efa1b06b9e31db609acb418d9587b7681d071026813b
|
7
|
+
data.tar.gz: a828cddbe1e4662d249167c24ec8e5c0abf29beb1811deb3c780c10e013b148004884ea9a5fa30ac4756d823ab8bb26b712ea5ec64cc97587b95cb165fb94339
|
@@ -1,14 +1,15 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
require_relative '../../../lib/shortcuts'
|
3
|
+
# EC ||= WcoEmail::Conversation
|
4
|
+
# EF ||= WcoEmail::EmailFilter
|
5
|
+
# EM ||= WcoEmail::Message
|
6
|
+
# ET ||= WcoEmail::EmailTemplate
|
7
|
+
# MS ||= WcoEmail::MessageStub
|
8
|
+
# EMS ||= MS
|
9
|
+
# OA ||= Wco::OfficeAction
|
10
|
+
# OAT ||= Wco::OfficeActionTemplate
|
11
|
+
# OATT ||= Wco::OfficeActionTemplateTie
|
12
|
+
# Sch ||= WcoEmail::EmailAction
|
12
13
|
|
13
14
|
class Wco::ApplicationController < ActionController::Base
|
14
15
|
include Wco::ApplicationHelper
|
@@ -1,6 +1,13 @@
|
|
1
1
|
|
2
2
|
class Wco::SitesController < Wco::ApplicationController
|
3
3
|
|
4
|
+
def check_sitemap
|
5
|
+
@site = Wco::Site.find params[:id]
|
6
|
+
authorize! :check_sitemap, @site
|
7
|
+
@site.check_sitemap
|
8
|
+
redirect_to request.referrer
|
9
|
+
end
|
10
|
+
|
4
11
|
def create
|
5
12
|
@site = Wco::Site.new params[:site].permit!
|
6
13
|
authorize! :create, @site
|
@@ -41,6 +48,8 @@ class Wco::SitesController < Wco::ApplicationController
|
|
41
48
|
def show
|
42
49
|
@site = Wco::Site.find params[:id]
|
43
50
|
authorize! :show, @site
|
51
|
+
|
52
|
+
@new_sitemap_path = Wco::SitemapPath.new( site_id: @site.id )
|
44
53
|
end
|
45
54
|
|
46
55
|
def update
|
@@ -29,13 +29,13 @@ class Wco::OfficeActionTemplate
|
|
29
29
|
has_many :prev_ties, class_name: 'OfficeActionTemplateTie', inverse_of: :next_office_action_template
|
30
30
|
accepts_nested_attributes_for :ties
|
31
31
|
|
32
|
+
has_and_belongs_to_many :email_filters, class_name: WcoEmail::EmailFilter
|
33
|
+
|
32
34
|
def to_s
|
33
35
|
"#{slug}"
|
34
36
|
end
|
35
|
-
|
36
37
|
def self.list
|
37
38
|
[[nil,nil]] + all.map { |ttt| [ ttt.slug, ttt.id ] }
|
38
39
|
end
|
39
|
-
|
40
40
|
end
|
41
|
-
OAT ||= Wco::OfficeActionTemplate
|
41
|
+
# OAT ||= Wco::OfficeActionTemplate
|
data/app/models/wco/profile.rb
CHANGED
data/app/models/wco/site.rb
CHANGED
@@ -14,8 +14,11 @@ class Wco::Site
|
|
14
14
|
[nil] + KINDS
|
15
15
|
end
|
16
16
|
|
17
|
-
|
17
|
+
|
18
18
|
has_many :headlines # , class_name: 'Wco::Newstitle'
|
19
|
+
has_many :logs, inverse_of: :obj
|
20
|
+
has_many :publishers # , class_name: 'Wco::Publisher'
|
21
|
+
has_many :sitemap_paths, class_name: 'Wco::SitemapPath'
|
19
22
|
has_many :tags, class_name: 'Wco::Tag'
|
20
23
|
|
21
24
|
field :slug
|
@@ -101,4 +104,112 @@ class Wco::Site
|
|
101
104
|
puts "ok"
|
102
105
|
end
|
103
106
|
|
107
|
+
def check_sitemap
|
108
|
+
results = []
|
109
|
+
total_count = 0
|
110
|
+
error_count = 0
|
111
|
+
|
112
|
+
sitemap_paths.each do |check|
|
113
|
+
total_count += 1
|
114
|
+
|
115
|
+
# puts "Checking #{check[:path]}:"
|
116
|
+
if check[:selector]
|
117
|
+
begin
|
118
|
+
body = HTTParty.get( "#{origin}#{check[:path]}" ).body
|
119
|
+
rescue OpenSSL::SSL::SSLError => err
|
120
|
+
results.push "NOT OK [ssl-exception] #{check[:path]}".red
|
121
|
+
logg "NOT OK [ssl-exception] #{check[:path]}"
|
122
|
+
check.update status: 'NOT OK'
|
123
|
+
|
124
|
+
next
|
125
|
+
end
|
126
|
+
doc = Nokogiri::HTML( body )
|
127
|
+
out = doc.search check[:selector]
|
128
|
+
if out.present?
|
129
|
+
results.push "OK #{check[:path]}"
|
130
|
+
logg "OK #{check[:path]}"
|
131
|
+
check.update status: 'OK'
|
132
|
+
else
|
133
|
+
results.push "NOT OK [selector-missing] #{check[:path]}".red
|
134
|
+
logg "NOT OK [selector-missing] #{check[:path]}"
|
135
|
+
check.update status: 'NOT OK'
|
136
|
+
error_count += 1
|
137
|
+
end
|
138
|
+
|
139
|
+
if check[:meta_description]
|
140
|
+
out = doc.search( 'head meta[name="description"]' )[0]['content']
|
141
|
+
if check[:meta_description] == out
|
142
|
+
results.push "OK #{check[:path]} meta_description"
|
143
|
+
logg "OK #{check[:path]} meta_description"
|
144
|
+
check.update status: 'OK'
|
145
|
+
else
|
146
|
+
results.push "NOT OK [meta-description-missing] #{check[:path]}".red
|
147
|
+
logg "NOT OK [meta-description-missing] #{check[:path]}"
|
148
|
+
check.update status: 'NOT OK'
|
149
|
+
error_count += 1
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
elsif check[:redirect_to]
|
154
|
+
out = HTTParty.get( "#{origin}#{check[:path]}", follow_redirects: false )
|
155
|
+
if( out.headers[:location] == check[:redirect_to] ||
|
156
|
+
out.headers[:location] == "#{origin}#{check[:redirect_to]}" )
|
157
|
+
results.push "OK #{check[:path]}"
|
158
|
+
logg "OK #{check[:path]}"
|
159
|
+
check.update status: 'OK'
|
160
|
+
else
|
161
|
+
results.push "NOT OK [redirect-missing] #{check[:path]}".red
|
162
|
+
logg "NOT OK [redirect-missing] #{check[:path]}"
|
163
|
+
check.update status: 'NOT OK'
|
164
|
+
|
165
|
+
puts!( out.response, 'response' ) if DEBUG
|
166
|
+
# puts!( out.body, 'body' ) if DEBUG
|
167
|
+
|
168
|
+
error_count += 1
|
169
|
+
|
170
|
+
puts "NOT OK #{check[:path]}".red
|
171
|
+
puts out.headers[:location]
|
172
|
+
puts check[:redirect_to]
|
173
|
+
end
|
174
|
+
else
|
175
|
+
results.push "SKIP #{check[:path]}"
|
176
|
+
logg "SKIP #{check[:path]}"
|
177
|
+
check.update status: 'SKIP'
|
178
|
+
end
|
179
|
+
|
180
|
+
if check[:selectors]
|
181
|
+
check[:selectors].each do |selector|
|
182
|
+
body = HTTParty.get( "#{origin}#{check[:path]}" ).body
|
183
|
+
doc = Nokogiri::HTML( body )
|
184
|
+
out = doc.search selector
|
185
|
+
if out.present?
|
186
|
+
results.push "OK #{check[:path]} selectors:#{selector}"
|
187
|
+
logg "OK #{check[:path]} selectors:#{selector}"
|
188
|
+
check.update status: 'OK'
|
189
|
+
else
|
190
|
+
results.push "NOT OK [selectors-missing:#{selector}] #{check[:path]}".red
|
191
|
+
logg "NOT OK [selectors-missing:#{selector}] #{check[:path]}"
|
192
|
+
check.update status: 'NOT OK'
|
193
|
+
error_count += 1
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
end
|
199
|
+
|
200
|
+
puts "Results:".green
|
201
|
+
results.each do |r|
|
202
|
+
puts r
|
203
|
+
end
|
204
|
+
puts "Total count: #{total_count}"
|
205
|
+
puts "Error count: #{error_count}"
|
206
|
+
end
|
207
|
+
|
208
|
+
def logg msg
|
209
|
+
Wco::Log.create!({
|
210
|
+
message: msg,
|
211
|
+
obj: self,
|
212
|
+
})
|
213
|
+
end
|
214
|
+
|
104
215
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
class Wco::SitemapPath
|
3
|
+
include Mongoid::Document
|
4
|
+
include Mongoid::Timestamps
|
5
|
+
include Mongoid::Paranoia
|
6
|
+
store_in collection: 'wco_sitemap_paths'
|
7
|
+
|
8
|
+
belongs_to :site, class_name: 'Wco::Site'
|
9
|
+
|
10
|
+
field :path, type: String
|
11
|
+
validates :path, presence: true, uniqueness: { scope: :site }
|
12
|
+
|
13
|
+
field :redirect_to, type: String
|
14
|
+
field :selector, type: String
|
15
|
+
field :selectors, type: Array, default: []
|
16
|
+
|
17
|
+
field :status, type: String
|
18
|
+
|
19
|
+
end
|
20
|
+
|
@@ -10,6 +10,9 @@ class WcoEmail::EmailFilter
|
|
10
10
|
|
11
11
|
PAGE_PARAM_NAME = :filters_page
|
12
12
|
|
13
|
+
FIELD_OPTS = [ :subject, :from, :to, :to_and_cc, :body, ]
|
14
|
+
MATCHTYPE_OPTS = [ :regex, :exact_insensitive, ]
|
15
|
+
|
13
16
|
field :from_regex
|
14
17
|
field :from_exact
|
15
18
|
field :subject_regex
|
@@ -20,6 +23,10 @@ class WcoEmail::EmailFilter
|
|
20
23
|
field :skip_from_regex
|
21
24
|
field :skip_to_exact
|
22
25
|
|
26
|
+
has_many :email_filter_conditions
|
27
|
+
has_many :email_filter_skip_conditions, class_name: 'WcoEmail::EmailFilterCondition'
|
28
|
+
has_and_belongs_to_many :action_tmpls, class_name: 'Wco::OfficeActionTemplate'
|
29
|
+
|
23
30
|
belongs_to :tag, class_name: 'Wco::Tag', inverse_of: :email_filters, optional: true
|
24
31
|
|
25
32
|
KIND_AUTORESPOND_TMPL = 'autorespond-template'
|
@@ -36,6 +43,7 @@ class WcoEmail::EmailFilter
|
|
36
43
|
KINDS = [ nil, KIND_AUTORESPOND_TMPL, KIND_AUTORESPOND_EACT, KIND_ADD_TAG, KIND_REMOVE_TAG, KIND_DESTROY_SCHS]
|
37
44
|
field :kind
|
38
45
|
|
46
|
+
|
39
47
|
belongs_to :email_template, class_name: 'WcoEmail::EmailTemplate', optional: true
|
40
48
|
belongs_to :email_action_template, class_name: 'WcoEmail::EmailActionTemplate', optional: true
|
41
49
|
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
class WcoEmail::EmailFilterCondition
|
3
|
+
include Mongoid::Document
|
4
|
+
include Mongoid::Timestamps
|
5
|
+
include Mongoid::Paranoia
|
6
|
+
store_in collection: 'office_email_filter_conditions'
|
7
|
+
|
8
|
+
belongs_to :email_filter, inverse_of: :email_filter_conditions
|
9
|
+
belongs_to :email_filter_skip, inverse_of: :email_filter_skip_conditions
|
10
|
+
|
11
|
+
field :field
|
12
|
+
field :matchtype
|
13
|
+
field :value
|
14
|
+
|
15
|
+
|
16
|
+
end
|
17
|
+
|
@@ -29,7 +29,10 @@ class WcoEmail::Message
|
|
29
29
|
|
30
30
|
field :read_at, type: DateTime
|
31
31
|
index({ read_at: -1 })
|
32
|
-
|
32
|
+
def self.unread
|
33
|
+
where( read_at: nil )
|
34
|
+
end
|
35
|
+
# scope :unread, ->() { where( read_at: nil ) }
|
33
36
|
|
34
37
|
def part_html_sanitized
|
35
38
|
doc = Nokogiri::HTML part_html
|
@@ -70,7 +73,7 @@ class WcoEmail::Message
|
|
70
73
|
field :date, type: DateTime
|
71
74
|
def received_at ; date ; end
|
72
75
|
|
73
|
-
belongs_to :conversation, class_name: 'WcoEmail::Conversation'
|
76
|
+
belongs_to :conversation, class_name: 'WcoEmail::Conversation', index: true
|
74
77
|
def conv ; conversation ; end
|
75
78
|
|
76
79
|
belongs_to :stub, class_name: 'WcoEmail::MessageStub'
|
@@ -80,7 +83,7 @@ class WcoEmail::Message
|
|
80
83
|
has_many :replies, class_name: '::WcoEmail::Context', inverse_of: :reply_to_message
|
81
84
|
|
82
85
|
def apply_filter filter
|
83
|
-
puts! filter, 'WcoEmail::Message#apply_filter'
|
86
|
+
puts! filter, 'WcoEmail::Message#apply_filter' if DEBUG
|
84
87
|
conv.filter = filter
|
85
88
|
|
86
89
|
case filter.kind
|
@@ -1,6 +1,9 @@
|
|
1
1
|
!!!
|
2
2
|
%html
|
3
3
|
%head
|
4
|
+
%title #{@page_title} | Wco Core
|
5
|
+
%link{ :rel => 'icon', :href => "/favicon_#{ENV['RAILS_ENV']}.gif" }
|
6
|
+
%meta{ :name => :viewport, :content => 'width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=2' }
|
4
7
|
%meta{content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}
|
5
8
|
%title Wco Models
|
6
9
|
|
@@ -7,36 +7,39 @@
|
|
7
7
|
|
8
8
|
%i.fa.fa-compress.collapse-expand#collapseHeaderModels
|
9
9
|
Wco Suite
|
10
|
-
.
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
%
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
%
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
%
|
37
|
-
|
38
|
-
|
39
|
-
|
10
|
+
.W
|
11
|
+
|
12
|
+
.d-flex.flex-wrap
|
13
|
+
|
14
|
+
%ul
|
15
|
+
%li= link_to 'ROOT', '/'
|
16
|
+
- if defined? wco_email
|
17
|
+
%li= link_to '/email', '/email'
|
18
|
+
- if defined? wco_hosting
|
19
|
+
%li= link_to '/hosting', '/hosting'
|
20
|
+
- if defined? iro
|
21
|
+
%li= link_to '/trading', '/trading'
|
22
|
+
|
23
|
+
%ul
|
24
|
+
%li= render '/wco/invoices/header'
|
25
|
+
%li= render '/wco/products/header'
|
26
|
+
%li= render '/wco/tags/menuitem'
|
27
|
+
%li= render '/wco/logs/header'
|
28
|
+
|
29
|
+
%ul
|
30
|
+
%li= render '/wco/leadsets/header'
|
31
|
+
%li= render '/wco/leads/header'
|
32
|
+
%li= render '/wco/office_action_templates/header'
|
33
|
+
%li= render '/wco/office_actions/header'
|
34
|
+
%li= render '/wco/profiles/header'
|
35
|
+
|
36
|
+
%ul
|
37
|
+
%li= render '/wco/sites/header'
|
38
|
+
%li= render '/wco/headlines/header'
|
39
|
+
%li= render '/wco/publishers/header'
|
40
|
+
%li= render '/wco/galleries/header_mini'
|
41
|
+
%li= render '/wco/reports/header'
|
42
|
+
%li= render '/wco/videos/header'
|
40
43
|
|
41
44
|
|
42
45
|
.c
|
@@ -49,7 +49,7 @@
|
|
49
49
|
.col-md-6.schs
|
50
50
|
%h5
|
51
51
|
Email Actions (#{@lead.schs.length})
|
52
|
-
= link_to '[+]', wco_email.new_email_action_path(lead_id: @lead.id)
|
52
|
+
= link_to '[+]', wco_email.new_email_action_path(lead_id: @lead.id) if defined?(wco_email)
|
53
53
|
%ul
|
54
54
|
- @lead.schs.each do |sch|
|
55
55
|
%li
|
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
.sitemap-paths--form
|
3
|
+
= form_for spath do |f|
|
4
|
+
= hidden_field_tag :site_id, spath[:site_id] || params[:site_id]
|
5
|
+
|
6
|
+
.d-flex
|
7
|
+
.field
|
8
|
+
%label Path
|
9
|
+
= f.text_field :path
|
10
|
+
.field
|
11
|
+
%label redirect_to
|
12
|
+
= f.text_field :redirect_to
|
13
|
+
.field
|
14
|
+
%label selector
|
15
|
+
= f.text_field :selector
|
16
|
+
|
17
|
+
.actions
|
18
|
+
= f.submit 'Go'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
|
2
|
+
.sitemap-paths--index
|
3
|
+
%table.bordered.data-table
|
4
|
+
%thead
|
5
|
+
%td Path
|
6
|
+
%td Redirect To
|
7
|
+
%td Selector
|
8
|
+
%td Status
|
9
|
+
%tbody
|
10
|
+
- spaths.each do |spath|
|
11
|
+
%tr
|
12
|
+
%td= spath.path
|
13
|
+
%td= spath.redirect_to
|
14
|
+
%td= spath.selector
|
15
|
+
%td= spath.status
|
@@ -1,8 +1,18 @@
|
|
1
1
|
|
2
|
-
.sites-show.
|
3
|
-
.
|
4
|
-
|
5
|
-
|
2
|
+
.sites-show.padded
|
3
|
+
.maxwidth
|
4
|
+
.header
|
5
|
+
%h5.title
|
6
|
+
= @site
|
6
7
|
|
7
|
-
|
8
|
-
|
8
|
+
= render '/wco/tags/header'
|
9
|
+
= render '/wco/tags/index', tags: @site.tags
|
10
|
+
|
11
|
+
%h5.d-flex
|
12
|
+
Sitemap Paths
|
13
|
+
= link_to '[+]', new_sitemap_path_path( site_id: @site.id )
|
14
|
+
|
15
|
+
= button_to 'check', check_sitemap_path( site: @site ), data: { confirm: 'Are you sure?' }
|
16
|
+
= render '/wco/sitemap_paths/form', spath: @new_sitemap_path
|
17
|
+
-# %hr
|
18
|
+
= render '/wco/sitemap_paths/index', spaths: @site.sitemap_paths
|
@@ -1,7 +1,5 @@
|
|
1
1
|
|
2
|
-
.
|
3
|
-
|
4
|
-
|
5
|
-
=
|
6
|
-
= text_field_tag :q
|
7
|
-
= link_to '[+]', wco.new_tag_path
|
2
|
+
.header
|
3
|
+
%h5.title
|
4
|
+
Tags (#{Wco::Tag.all.length})
|
5
|
+
= link_to '[+]', wco.new_tag_path
|
data/config/routes.rb
CHANGED
@@ -54,7 +54,9 @@ Wco::Engine.routes.draw do
|
|
54
54
|
get 'reports/deleted', to: 'reports#index', as: :deleted_reports, defaults: { deleted: true }
|
55
55
|
resources :reports
|
56
56
|
|
57
|
+
post 'sites/:id/check_sitemap', to: 'sites#check_sitemap', as: :check_sitemap
|
57
58
|
resources :sites
|
59
|
+
resources :sitemap_paths
|
58
60
|
resources :subscriptions
|
59
61
|
|
60
62
|
delete 'tags/remove/:id/from/:resource/:resource_id', to: 'tags#remove_from', as: :remove_tag_from
|
data/lib/shortcuts.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
|
2
|
+
EC ||= WcoEmail::Conversation
|
3
|
+
EF ||= WcoEmail::EmailFilter
|
4
|
+
EM ||= WcoEmail::Message
|
5
|
+
ET ||= WcoEmail::EmailTemplate
|
6
|
+
MS ||= WcoEmail::MessageStub
|
7
|
+
EMS ||= MS
|
8
|
+
OA ||= Wco::OfficeAction
|
9
|
+
OAT ||= Wco::OfficeActionTemplate
|
10
|
+
OATT ||= Wco::OfficeActionTemplateTie
|
11
|
+
Sch ||= WcoEmail::EmailAction
|
data/lib/wco/ai_writer.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wco_models
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.0.
|
4
|
+
version: 3.1.0.155
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Pudeyev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-s3
|
@@ -455,6 +455,7 @@ files:
|
|
455
455
|
- app/models/wco/publisher.rb
|
456
456
|
- app/models/wco/report.rb
|
457
457
|
- app/models/wco/site.rb
|
458
|
+
- app/models/wco/sitemap_path.rb
|
458
459
|
- app/models/wco/subscription.rb
|
459
460
|
- app/models/wco/tag.rb
|
460
461
|
- app/models/wco/utils.rb
|
@@ -466,6 +467,7 @@ files:
|
|
466
467
|
- app/models/wco_email/email_action_template.rb
|
467
468
|
- app/models/wco_email/email_action_template_tie.rb
|
468
469
|
- app/models/wco_email/email_filter.rb
|
470
|
+
- app/models/wco_email/email_filter_condition.rb
|
469
471
|
- app/models/wco_email/email_template.rb
|
470
472
|
- app/models/wco_email/message.rb
|
471
473
|
- app/models/wco_email/message_stub.rb
|
@@ -597,6 +599,8 @@ files:
|
|
597
599
|
- app/views/wco/reports/index_table.haml
|
598
600
|
- app/views/wco/reports/new.haml
|
599
601
|
- app/views/wco/reports/show.haml
|
602
|
+
- app/views/wco/sitemap_paths/_form.haml
|
603
|
+
- app/views/wco/sitemap_paths/_index.haml
|
600
604
|
- app/views/wco/sites/_form.haml
|
601
605
|
- app/views/wco/sites/_header.haml
|
602
606
|
- app/views/wco/sites/edit.haml
|
@@ -608,6 +612,7 @@ files:
|
|
608
612
|
- app/views/wco/tags/_index.haml
|
609
613
|
- app/views/wco/tags/_index_chips.haml
|
610
614
|
- app/views/wco/tags/_list_chips.haml
|
615
|
+
- app/views/wco/tags/_menuitem.haml
|
611
616
|
- app/views/wco/tags/edit.haml
|
612
617
|
- app/views/wco/tags/index.haml
|
613
618
|
- app/views/wco/tags/new.haml
|
@@ -662,6 +667,7 @@ files:
|
|
662
667
|
- app/views/wco_hosting/scripts/nginx_site.conf.erb
|
663
668
|
- config/initializers/assets.rb
|
664
669
|
- config/routes.rb
|
670
|
+
- lib/shortcuts.rb
|
665
671
|
- lib/tasks/db_tasks.rake
|
666
672
|
- lib/tasks/office_tasks.rake
|
667
673
|
- lib/tasks/wp_tasks.rake
|