Package saga :: Module _engine :: Class url
[frames] | no frames]

Class url

 object --+    
          |    
??.instance --+
              |
             url

saga::url type

Instance Methods
 
__cmp__(...)
__cmp__( (url)arg1, (url)arg2) -> bool : compares two saga::url instances
 
__init__(...)
__init__( (object)arg1) -> None :
 
__reduce__(...)
helper for pickle
 
__str__(...)
__str__( (url)arg1) -> str : returns the string representation of this instance
 
clone(...)
clone( (url)arg1) -> object : returns a new (deep) copy of the saga::url instance
 
get_string(...)
get_string( (url)arg1) -> str : returns the string representation of this instance
 
translate(...)
translate( (url)arg1, (str)arg2) -> url : translates the given string into a different url (plain)

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables
  __instance_size__ = 32
Properties
  authority
returns or modifies the authority contained in this saga::url instance
  fragment
returns or modifies the fragment contained in this saga::url instance
  host
returns or modifies the host contained in this saga::url instance
  password
returns or modifies the password contained in this saga::url instance
  path
returns or modifies the path contained in this saga::url instance
  port
returns or modifies the port number contained in this saga::url instance
  query
returns or modifies the query contained in this saga::url instance
  scheme
returns or modifies the scheme contained in this saga::url instance
  url
returns or modifies the string representation of the full saga::url held by this instance
  userinfo
returns or modifies the userinfo contained in this saga::url instance
  username
returns or modifies the username contained in this saga::url instance

Inherited from object: __class__

Method Details

__cmp__(...)
(Comparison operator)

 

__cmp__( (url)arg1, (url)arg2) -> bool :
    compares two saga::url instances

    C++ signature :
        bool __cmp__(saga::url,saga::url)

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (str)arg2) -> None :

    C++ signature :
        void __init__(_object*,std::string)

Overrides: object.__init__

__reduce__(...)

 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)

__str__(...)
(Informal representation operator)

 

__str__( (url)arg1) -> str :
    returns the string representation of this instance

    C++ signature :
        std::string __str__(saga::url {lvalue})

Overrides: object.__str__

clone(...)

 

clone( (url)arg1) -> object :
    returns a new (deep) copy of the saga::url instance

    C++ signature :
        saga::object clone(saga::url {lvalue})

get_string(...)

 

get_string( (url)arg1) -> str :
    returns the string representation of this instance

    C++ signature :
        std::string get_string(saga::url {lvalue})

translate(...)

 

translate( (url)arg1, (str)arg2) -> url :
    translates the given string into a different url (plain)

    C++ signature :
        saga::url translate(saga::url,std::string)

translate( (url)arg1, (routine_type)arg2, (str)arg3) -> task :
    translates the given string into a different url (task based)

    C++ signature :
        saga::task translate(saga::url,saga::python::routine_type,std::string)

translate( (url)arg1, (session)arg2, (str)arg3) -> url :
    translates the given string into a different url, using the given session (plain)

    C++ signature :
        saga::url translate(saga::url,saga::session,std::string)

translate( (url)arg1, (routine_type)arg2, (session)arg3, (str)arg4) -> task :
    translates the given string into a different url, using the given session (task based)

    C++ signature :
        saga::task translate(saga::url,saga::python::routine_type,saga::session,std::string)


Property Details

authority

returns or modifies the authority contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

fragment

returns or modifies the fragment contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

host

returns or modifies the host contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

password

returns or modifies the password contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

path

returns or modifies the path contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

port

returns or modifies the port number contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

query

returns or modifies the query contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

scheme

returns or modifies the scheme contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

url

returns or modifies the string representation of the full saga::url held by this instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

userinfo

returns or modifies the userinfo contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)

username

returns or modifies the username contained in this saga::url instance

Get Method:
unreachable(...)
Set Method:
unreachable(...)