Thank you for using MyWebApp.com. This notice is to help you understand what information we collect, how we use it and what choices you have about it.
a) When you give it to us or give us permission to obtain it
# config/initializers/markdown_template_handler.rb | |
module MarkdownTemplateHandler | |
def self.call( template, source=nil ) | |
source ||= template.source | |
# This worked prior to Rails 7.1: | |
# compiled_source = erb.call( template, source ) | |
# But with Rails 7.1 it threw "ActionView::Template::Error: wrong argument type ActionView::OutputBuffer (expected String)" |
<!-- START--> | |
<hr> | |
<h3>Current planning applications:</h3> | |
<p><code><var><cite>Larger schemes currently awaiting planning decisions (updated weekly)</cite></var></code></p> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/json2html/1.2.0/json2html.min.js"></script><script> | |
function convertDate(inputFormat) { | |
function pad(s) { return (s < 10) ? '0' + s : s; } | |
var d = new Date(inputFormat); | |
return [pad(d.getDate()), pad(d.getMonth()+1), d.getFullYear()].join('/'); | |
} |
window.App ||= {} | |
App.init = -> | |
window.cookieconsent.initialise | |
"palette": | |
"popup": | |
"background": "#252e39" | |
, | |
"button": | |
"background": "#14a7d0" |
Failures: | |
1) Users::PasswordsController POST 'update' success should change the password | |
Failure/Error: @cond.wait(@monitor.instance_variable_get(:@mon_mutex), timeout) | |
fatal: | |
No live threads left. Deadlock? | |
# /home/keithp/.rvm/gems/ruby-2.3.0@my_app/bundler/gems/rails-5de1e4f2c45e/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb:374:in `block in lock_thread=' | |
# /home/keithp/.rvm/gems/ruby-2.3.0@my_app/bundler/gems/rails-5de1e4f2c45e/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb:368:in `lock_thread=' | |
# /home/keithp/.rvm/gems/ruby-2.3.0@my_app/bundler/gems/rails-5de1e4f2c45e/activerecord/lib/active_record/fixtures.rb:1012:in `block in teardown_fixtures' |
1) Admins::DataLoadsController as an admin user POST create with valid params assigns a newly created data_load as @data_load | |
Failure/Error: @mon_mutex.lock | |
fatal: | |
No live threads left. Deadlock? | |
# /home/rof/cache/bundler/ruby/2.2.0/bundler/gems/rails-e8af65a46325/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:86:in `clear_query_cache' | |
# /home/rof/cache/bundler/ruby/2.2.0/bundler/gems/rails-e8af65a46325/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `disable_query_cache!' | |
# /home/rof/cache/bundler/ruby/2.2.0/bundler/gems/rails-e8af65a46325/activesupport/lib/active_support/callbacks.rb:413:in `block in make_lambda' | |
# /home/rof/cache/bundler/ruby/2.2.0/bundler/gems/rails-e8af65a46325/activesupport/lib/active_support/callbacks.rb:270:in `call' | |
# /home/rof/cache/bundler/ruby/2.2.0/bundler/gems/rails-e8af65a46325/activesupport/lib/active_support/callbacks.rb:270:in `block in simple' |
1) Manage::NotificationSubscription | |
Failure/Error: it { is_expected.to respond_to :user } | |
ActiveRecord::StatementInvalid: | |
PG::UndefinedTable: ERROR: invalid reference to FROM-clause entry for table "i" | |
LINE 2: CROSS JOIN generate_subscripts(i.indkey, 1) k | |
^ | |
HINT: There is an entry for table "i", but it cannot be referenced from this part of the query. | |
: SELECT a.attname FROM pg_index i | |
CROSS JOIN generate_subscripts(i.indkey, 1) k |
32) Pages signed in should display the 'root_path' | |
Failure/Error: @user = create(:user) | |
ActiveRecord::StatementInvalid: | |
PG::UndefinedTable: ERROR: invalid reference to FROM-clause entry for table "i" | |
LINE 2: CROSS JOIN generate_subscripts(i.indkey, 1) k | |
^ | |
HINT: There is an entry for table "i", but it cannot be referenced from this part of the query. | |
: SELECT a.attname FROM pg_index i | |
CROSS JOIN generate_subscripts(i.indkey, 1) k |