~ubuntu-branches/ubuntu/intrepid/ruby1.9/intrepid-updates

« back to all changes in this revision

Viewing changes to test/wsdl/any/expectedEcho.rb

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2005-09-21 13:16:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050921131619-qhlm5e5pz3bvsh2g
Tags: 1.9.0+20050921-1
* akira yamada <akira@debian.org>
- new upstream snapshot. (2005-09-21)
    - [security] JVN#62914675 CVE-2005-2337
        - preserve safe level in the environment where a method is defined.
        - prohibit calling tainted method (>2) when $SAFE == 0.
- removed debian/patches/802_workaround_for_send.dpatch:
    - the patch is in upstream.
- debian/control: build-depends on libreadline5-dev.  (closes: #326333)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require 'xsd/qname'
 
2
 
 
3
# {urn:example.com:echo-type}foo.bar
 
4
class FooBar
 
5
  @@schema_type = "foo.bar"
 
6
  @@schema_ns = "urn:example.com:echo-type"
 
7
  @@schema_element = [["any", [nil, XSD::QName.new(nil, "any")]]]
 
8
 
 
9
  attr_accessor :any
 
10
 
 
11
  def initialize(any = nil)
 
12
    @any = any
 
13
  end
 
14
end