~ubuntu-branches/ubuntu/hardy/pymsn/hardy-proposed

« back to all changes in this revision

Viewing changes to pymsn/service/description/SchematizedStore/FindDocuments.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Sjoerd Simons, Laurent Bigonville, Jonny Lamb
  • Date: 2008-01-17 18:23:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117182314-lwymmpnk2ut3rvr1
Tags: 0.3.1-0ubuntu1
[ Sjoerd Simons ]
* debian/rules: remove dh_python, it's no longer needed

[ Laurent Bigonville ]
* New upstream release (0.3.1)
* debian/control:
  - Add myself as an Uploaders
  - Add python:Provides for binary package
  - Add python-ctypes and python-crypto to build-deps/deps
* debian/rules: remove binary-install rule
* Add watch file
* remove pycompat file, not needed anymore
* Modify Maintainer value to match the DebianMaintainerField
  specification.

[ Jonny Lamb ]
* Added python-adns to build-deps/deps.
* Added python-pyopenssl to build-deps/deps.
* Updated copyright.
* Upped Standards-Version to 3.7.3.
* Added "XS-Dm-Upload-Allowed: yes" under the request of Sjoerd Simons.
* Added myself to Uploaders.
* Added Homepage to control.
* Added Vcs-Bzr to control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#
 
3
# Copyright (C) 2007 Johann Prieur <johann.prieur@gmail.com>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
#
 
19
 
 
20
from common import *
 
21
 
 
22
def transport_headers():
 
23
    """Returns a dictionary, containing transport (http) headers
 
24
    to use for the request"""
 
25
 
 
26
    return {}
 
27
 
 
28
def soap_action():
 
29
    """Returns the SOAPAction value to pass to the transport
 
30
    or None if no SOAPAction needs to be specified"""
 
31
 
 
32
    return "http://www.msn.com/webservices/storage/w10/FindDocument"
 
33
 
 
34
def soap_body(cid):
 
35
    """Returns the SOAP xml body
 
36
    """
 
37
    return """<FindDocuments xmlns="http://www.msn.com/webservices/storage/w10">
 
38
            <objectHandle>
 
39
                <RelationshipName>
 
40
                    /UserTiles
 
41
                </RelationshipName>
 
42
                <Alias>
 
43
                    <Name>
 
44
                        %s
 
45
                    </Name>
 
46
                    <NameSpace>
 
47
                        MyCidStuff
 
48
                    </NameSpace>
 
49
                </Alias>
 
50
            </objectHandle>
 
51
            <documentAttributes>
 
52
                <ResourceID>
 
53
                    true
 
54
                </ResourceID>
 
55
                <Name>
 
56
                    true
 
57
                </Name>
 
58
            </documentAttributes>
 
59
            <documentFilter>
 
60
                <FilterAttributes>
 
61
                    None
 
62
                </FilterAttributes>
 
63
            </documentFilter>
 
64
            <documentSort>
 
65
                <SortBy>
 
66
                    DateModified
 
67
                </SortBy>
 
68
            </documentSort>
 
69
            <findContext>
 
70
                <FindMethod>
 
71
                    Default
 
72
                </FindMethod>
 
73
                <ChunkSize>
 
74
                    25
 
75
                </ChunkSize>
 
76
            </findContext>
 
77
        </FindDocuments>""" % cid
 
78
 
 
79
def process_response(soap_response):
 
80
    body = soap_response.body
 
81
    try:
 
82
        return body.find("./st:FindDocumentsResponse/st:FindDocumentsResult")
 
83
    except AttributeError:
 
84
        return None
 
85