~morphis/phablet-extras/ofono-sms-status-report

« back to all changes in this revision

Viewing changes to doc/network-api.txt

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-08-22 19:59:08 UTC
  • mfrom: (1.3.3) (6.1.5 experimental)
  • Revision ID: package-import@ubuntu.com-20120822195908-0bmmk1hlh989bgk6
Tags: 1.9-1ubuntu1
* Merge with Debian experimental; remaining changes:
  - debian/control: explicitly Conflicts with modemmanager: having both
    installed / running at the same time causes issues causes issues with
    both claiming modem devices.
  - debian/patches/02-dont-handle-stacktraces.patch: stop catching stacktraces
    and printing the information internally, so apport can catch and report
    the possible bugs.
  - debian/ofono.postinst: on configure, notify the user that a reboot is
    required (so ofono can get started by upstart). (LP: #600501)
  - debian/rules: pass --no-restart-on-upgrade so ofono isn't automatically
    restarted when upgrades.
  - Adding upstart config / Removing standard init script
  - Adding Apport support
  - Patch for recognizing special Huawei devices with weird serial
  - Override lintian to avoid script-in-etc-init.d... warnings.
  - Update debian/compat to 7
* debian/series: add our patches to debian/patches/series now that the package
  uses quilt.
* debian/patches/02-dont-handle-stacktraces.patch: refreshed.
* debian/ofono-dev.install, debian/ofono.install:
  - Install usr/sbin/dundee and ofono.pc to the proper packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
                        Returns all network registration properties. See the
11
11
                        properties section for available properties.
12
12
 
13
 
                        Possible Errors: [service].Error.InvalidArguments
14
 
 
15
 
                void SetProperty(string name, variant value)
16
 
 
17
 
                        Changes the value of the specified property. Only
18
 
                        properties that are listed as readwrite are
19
 
                        changeable. On success a PropertyChanged signal
20
 
                        will be emitted.
21
 
 
22
 
                        Possible Errors: [service].Error.InvalidArguments
23
 
                                         [service].Error.DoesNotExist
24
 
 
25
13
                void Register()
26
14
 
27
15
                        Attempts to register to the default network. The
28
16
                        default network is normally selected by the settings
29
17
                        from the SIM card.
30
18
 
31
 
                        Possible Errors: [service].Error.InvalidArguments
 
19
                        Possible Errors: [service].Error.InProgress
 
20
                                         [service].Error.NotImplemented
 
21
                                         [service].Error.Failed
 
22
                                         [service].Error.AccessDenied
32
23
 
33
24
                array{object,dict} GetOperators()
34
25
 
56
47
                        GPRS contexts.  Expect the context to be unavailable
57
48
                        for the duration of the operator scan.
58
49
 
 
50
                        Possible Errors: [service].Error.InProgress
 
51
                                         [service].Error.NotImplemented
 
52
                                         [service].Error.Failed
 
53
                                         [service].Error.AccessDenied
 
54
 
59
55
Signals         PropertyChanged(string property, variant value)
60
56
 
61
57
                        This signal indicates a changed value of the given
122
118
                        The possible values are: "gsm", "edge", "umts", "hspa",
123
119
                                                        "lte"
124
120
 
125
 
                        TODO: Values for CDMA and EVDO based networks.
126
 
 
127
121
                string Name [readonly]
128
122
 
129
123
                        Contains the current operator name, suitable for
158
152
                        Returns all network operator properties. See the
159
153
                        properties section for available properties.
160
154
 
161
 
                        Possible Errors: [service].Error.InvalidArguments
162
 
 
163
155
                void Register()
164
156
 
165
157
                        Attempts to register to this network operator.
168
160
                        be observed by tracking the NetworkRegistration Status
169
161
                        property.
170
162
 
171
 
                        Possible Errors: [service].Error.InvalidArguments
 
163
                        Possible Errors: [service].Error.InProgress
 
164
                                         [service].Error.NotImplemented
 
165
                                         [service].Error.Failed
 
166
                                         [service].Error.AccessDenied
172
167
 
173
168
Signals         PropertyChanged(string property, variant value)
174
169