around_filter :api_call_handle_error, :except => [:list]
around_filter :web_timeout, :only => [:list]
- filter_parameter_logging "<osmChange version"
-
# Help methods for checking boundary sanity and area size
include MapBoundary
created << elt.to_xml_node
else
# get the previous version from the element history
- prev_elt = elt.class.find(:first, :conditions =>
- ['id = ? and version = ?',
- elt.id, elt.version])
+ prev_elt = elt.class.where(:id => elt.id, :version => elt.version).first
unless elt.visible
# if the element isn't visible then it must have been deleted, so
# output the *previous* XML
@page = (params[:page] || 1).to_i
@page_size = 20
+ @bbox = bbox
+
@edits = Changeset.find(:all,
:include => [:user, :changeset_tags],
:conditions => conditions,
# query changesets which are closed
# ('closed at' time has passed or changes limit is hit)
def conditions_closed(closed)
- return closed.nil? ? nil : ['closed_at < ? or num_changes > ?',
+ return closed.nil? ? nil : ['(closed_at < ? or num_changes > ?)',
Time.now.getutc, Changeset::MAX_ELEMENTS]
end
# eliminate empty changesets (where the bbox has not been set)
# this should be applied to all changeset list displays
def conditions_nonempty()
- return ['min_lat IS NOT NULL']
+ return ['num_changes > 0']
end
end