summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-08-05doc: Add ReleaseAndSwapDenis Kenzior1-0/+11
2012-08-03test: Add hangup-multiparty script for GCF testingGuillaume Zajac2-1/+22
2012-08-02build: add certification.txtDenis Kenzior1-1/+2
2012-08-02doc: Add certification.txtDenis Kenzior1-0/+88
2012-08-02test: Add hold-and-answer script for GCF testingGuillaume Zajac2-1/+22
2012-07-28doc: Another addendum to Interfaces docsDenis Kenzior1-0/+7
2012-07-28doc: Further explain the Interfaces propertyDenis Kenzior1-0/+33
2012-07-27test: Remove test-ussd as it is redundantPhilippe Nunes2-76/+0
2012-07-27test: Add send-ussd scriptPhilippe Nunes2-0/+58
Simpler script that test-ussd that is still capable of replying to network initiated USSD requests and USSD dialogs.
2012-07-27monitor-ofono: Fix to print non-English charactersPhilippe Nunes1-2/+2
The default encoding for a Python bytestring is ASCII. But the SMS/USSD text is encoded in UTF-8. This is why trying to convert non-English characters (Unicode characters beyond 128) produces the error "UnicodeEncodeError: 'ascii' codec can't encode character".
2012-07-25doc: Add comments on valid phone number formatDenis Kenzior1-1/+15
2012-07-25doc: Expand description of various Hangup casesDenis Kenzior1-7/+16
2012-07-25doc: Update Features property descriptionDenis Kenzior1-0/+8
2012-07-19Release 1.9Marcel Holtmann2-1/+6
2012-07-17unit: Simplify previous commitDenis Kenzior1-8/+3
2012-07-17unit: Update test_invalid() unit testGuillaume Zajac1-3/+23
2012-07-16util: Style issuesDenis Kenzior1-3/+2
2012-07-16util: update comment from previous commitDenis Kenzior1-6/+10
Cite the specification verbatim
2012-07-16doc: Remove duplicate error entryDenis Kenzior1-1/+0
2012-07-16util: Fix GSM to UTF8 conversion mechanismGuillaume Zajac1-3/+14
2012-07-15gprs: Call detach_shutdown when network is lostGuillaume Zajac1-21/+63
2012-07-15gprs-context: Add new driver entry definitionGuillaume Zajac1-0/+11
2012-07-15gprs-context: Add new driver entryGuillaume Zajac1-0/+2
2012-07-16Revert "build: Use -Wshadow compiler option"Marcel Holtmann1-1/+1
2012-07-15build: Use -Wshadow compiler optionMarcel Holtmann1-1/+1
2012-07-15voicecall: Avoid shadowing of number variableMarcel Holtmann1-2/+2
2012-07-15voicecall: Remove shadowing modem variableMarcel Holtmann1-5/+1
2012-07-15ctm: Remove shadowing reply variableMarcel Holtmann1-2/+0
2012-07-15ofono: Avoid shadowing other atom variablesMarcel Holtmann1-2/+2
2012-07-15gprs: Avoid shadowing error variableMarcel Holtmann1-4/+4
2012-07-15network: Avoid shadowing of strength variableMarcel Holtmann1-2/+2
2012-07-15network: Avoid shadowing of mode parameterMarcel Holtmann1-4/+4
2012-07-15bluetooth: Avoid shadowing of connection variableMarcel Holtmann1-6/+6
2012-07-15stemgr: Avoid shadowing of connection variableMarcel Holtmann1-5/+5
2012-07-15qmimodem: Avoid shadowing length parameterMarcel Holtmann1-4/+4
2012-07-15unit: Avoid shadowing data variableMarcel Holtmann1-3/+3
2012-07-15isimodem: Avoid shadowing variablesMarcel Holtmann1-5/+5
2012-07-15gatchat: Avoid shadowing global AT server variableMarcel Holtmann1-11/+11
2012-07-15gatchat: Avoid shadowing variablesMarcel Holtmann2-4/+4
2012-07-15unit: Avoid shadowing hex_packed variableMarcel Holtmann1-2/+2
2012-07-12ifx: Add CSSI and CSSU supportDenis Kenzior1-0/+58
2012-07-04manager: Fix up introspection dataDenis Kenzior1-2/+2
2012-07-03doc: Mention support for Nvidia Icera modemsMarcel Holtmann1-0/+5
2012-07-03doc: Update entry for Qualcomm Gobi supportMarcel Holtmann1-2/+3
2012-07-02tools: watch for signals only on OFONO_SERVICELucas De Marchi2-18/+19
2012-07-02stemgr: watch for signals only on MGR_SERVICELucas De Marchi1-2/+2
2012-07-02bluetooth: watch for signals only on BLUEZ_SERVICELucas De Marchi1-5/+8
2012-07-02README: add information about mailing list and siteLucas De Marchi1-0/+9
2012-07-02Release 1.8Marcel Holtmann2-1/+9
2012-06-30gdbus: Fix removal of filter after last filter_dataLucas De Marchi1-9/+8
If there's a signal watch that's also watching for name (data->name_watch) currently we are trying to remove the message_filter twice since we may have the following call chain: filter_data_remove_callback() filter_data_free() g_dbus_remove_watch() filter_data_remove_callback() filter_data_free() dbus_connection_remove_filter() dbus_connection_remove_filter() Because of this we can't currently watch for signals passing the bus name. After this patch we don't have this issue anymore. We fix it by removing the filter before calling filter_data_free() if we are the last filter_data and thus avoid calling dbus_connection_remove_filter() twice.