summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-03-15 09:49:35 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-03-15 09:49:35 +0000
commit6c5e5142dffd2a8161f5c6a8a81d2e5b7276acae (patch)
tree388801369bab6436f492ad9bb08e2c63becc4a46
parent50a8bd452bfdf914a3986cbc1336469287724c6f (diff)
downloadredmine-6c5e5142dffd2a8161f5c6a8a81d2e5b7276acae.tar.gz
redmine-6c5e5142dffd2a8161f5c6a8a81d2e5b7276acae.zip
Don't include milliseconds in JSON API responses (#19354).
git-svn-id: http://svn.redmine.org/redmine/trunk@14101 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--lib/redmine/views/builders/structure.rb17
-rw-r--r--test/integration/api_test/api_test.rb12
2 files changed, 25 insertions, 4 deletions
diff --git a/lib/redmine/views/builders/structure.rb b/lib/redmine/views/builders/structure.rb
index a420dc497..b11e255ec 100644
--- a/lib/redmine/views/builders/structure.rb
+++ b/lib/redmine/views/builders/structure.rb
@@ -37,6 +37,16 @@ module Redmine
@struct.last.merge!(options) if options
end
+ def encode_value(value)
+ if value.is_a?(Time)
+ # Rails uses a global setting to format JSON times
+ # Don't rely on it for the API as it could have been changed
+ value.xmlschema(0)
+ else
+ value
+ end
+ end
+
def method_missing(sym, *args, &block)
if args.any?
if args.first.is_a?(Hash)
@@ -46,14 +56,15 @@ module Redmine
@struct.last[sym] = args.first
end
else
+ value = encode_value(args.first)
if @struct.last.is_a?(Array)
if args.size == 1 && !block_given?
- @struct.last << args.first
+ @struct.last << value
else
- @struct.last << (args.last || {}).merge(:value => args.first)
+ @struct.last << (args.last || {}).merge(:value => value)
end
else
- @struct.last[sym] = args.first
+ @struct.last[sym] = value
end
end
end
diff --git a/test/integration/api_test/api_test.rb b/test/integration/api_test/api_test.rb
index 1387fa905..b81f8e0ad 100644
--- a/test/integration/api_test/api_test.rb
+++ b/test/integration/api_test/api_test.rb
@@ -34,4 +34,14 @@ class Redmine::ApiTest::ApiTest < Redmine::ApiTest::Base
ensure
ActionController::Base.allow_forgery_protection = false
end
-end \ No newline at end of file
+
+ def test_json_datetime_format
+ get '/users/1.json', {}, credentials('admin')
+ assert_include '"created_on":"2006-07-19T17:12:21Z"', response.body
+ end
+
+ def test_xml_datetime_format
+ get '/users/1.xml', {}, credentials('admin')
+ assert_include '<created_on>2006-07-19T17:12:21Z</created_on>', response.body
+ end
+end