diff options
author | Leon Breedt <bitserf@gmail.com> | 2005-02-20 01:07:54 +0000 |
---|---|---|
committer | Leon Breedt <bitserf@gmail.com> | 2005-02-20 01:07:54 +0000 |
commit | 6a7fc51c6675786f4791c45edc1fac42ea6e3df9 (patch) | |
tree | 6d2d97d6779d19f05b80ec4519254bd5bb79004a /actionwebservice/TODO | |
parent | acb3d2cf755d6be35527d2ece57a5de415bb6cab (diff) | |
download | rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.tar.gz rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.tar.bz2 rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.zip |
add code coverage testing scripts, remove dead code
detected by said scripts
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@708 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/TODO')
-rw-r--r-- | actionwebservice/TODO | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/actionwebservice/TODO b/actionwebservice/TODO index 35c6c66f11..461aa2bcda 100644 --- a/actionwebservice/TODO +++ b/actionwebservice/TODO @@ -1,34 +1,3 @@ -= 0.4.0 Tasks - - add ActiveRecord-like logging that includes timing information - -= Post-0.4.0 Tasks - - support namespaced custom types in WSDL in a way that interoperates - with .NET (.NET croaks on '::' currently). perhaps a transform - that maps Ruby::Class to Ruby.Class and back. - - - relax type-checking for XML-RPC, and perform casts between base types if there - are mismatches (i.e. String received when Integer expected, or vice-versa) - - - support XML-RPC's "handler." method namespacing. perhaps something like: - - class BloggingServices < ActionWebService::LayeredService - def initialize(request) - @request = controller.request - end - - web_service :mt {MTService.new(@request)} - web_service :blogger {BloggerService.new(@request)} - web_service :metaWeblog {MetaWeblogService.new(@request)} - end - - class ApiController < ApplicationController - web_service_dispatching_mode :delegated - web_service :xmlrpc { BloggingServices.new(@request) } - end - - - verify that cookie support works, and add cookie-authenticated - service examples. test with .NET. - = Low priority tasks - add better type mapping tests for XML-RPC - add tests for ActiveRecord support (with mock objects?) |