Commit Graph

423 Commits

Author SHA1 Message Date
Bevis Tseng
0e88c8ff63 Bug 975356 - Append iccId into the message sent by SystemMessenger. r=vyang 2014-02-24 18:34:06 +08:00
Chris Peterson
192496a87c Bug 712873 - Part 3: Replace JS_ALWAYS_TRUE with MOZ_ALWAYS_TRUE outside js/src/ directory. r=luke 2014-02-17 22:42:57 -08:00
Daniel Holbert
682b66552e back out 3a8893b28489 (bug 712939) and 39adab158c17,16add78c43e3,37193db7e15b (bug 712873), for build bustage. 2014-02-19 00:15:51 -08:00
Chris Peterson
16624c9130 Bug 712873 - Part 3: Replace JS_ALWAYS_TRUE with MOZ_ALWAYS_TRUE outside js/src/ directory. r=luke 2014-02-17 22:42:57 -08:00
Vaibhav Agarwal
81f1ea0a18 Bug 970925 - convert testing/mochitest/android.json into skip-if statements in mochitest.ini files; r=jmaher 2014-02-15 04:53:02 -05:00
Jon Coppeard
25c1a75044 Bug 969812 - Convert JS_NewArrayObject to use HandleValueArray r=terrence r=bz 2014-02-12 10:50:46 +00:00
Jon Coppeard
b5a2f0569c Bug 959787 - Handlify some misc JS APIs r=sfink r=smaug 2014-01-29 10:00:40 +00:00
Gabriele Svelto
6fe4682268 Bug 963475 - Reverse the order of retrieval of message threads. r=gene 2014-01-27 19:52:11 +01:00
Gene Lian
d91279a4be Bug 945647 - [DSDS][MMS] When change primary outgoing data SIM during MMS attachment downloading, it should stop downloading process. r=vicamo,bevis a=v1.3+ 2014-01-27 11:22:18 +08:00
Jon Coppeard
7d118df1ce Bug 963167 - Convert JS_SetElement() to take HandleValue rather than MutableHandleValue r=sfink r=bz 2014-01-25 09:31:17 +00:00
Bevis Tseng
2d5758ccb4 Bug 960741 - Messages app fails to upgrade database (JS exception in upgradeSchema14) after updating from 1.2 to 1.3. r=gene 2014-01-17 13:41:31 +08:00
Nicolas Del Piano
8dfbefa736 Bug 957084 - Allow the sending of empty SMS messages (Gecko side). r=gene
This patch allows to send empty messages. The fragmentText function did not
contemplate the empty message case. So, I changed and added some behaviours
that removed the conflict.
2014-01-18 11:13:35 -03:00
Gene Lian
21f5764260 Bug 948399 - [Messages] Subject. A subject containing special characters sent in a message is not received correctly (test case). r=vicamo a=v1.3+ 2014-01-20 19:49:59 +08:00
Gene Lian
9dd7efec39 Bug 948399 - [Messages] Subject. A subject containing special characters sent in a message is not received correctly. r=vicamo a=v1.3+ 2014-01-16 16:32:07 +08:00
Terrence Cole
3e141bbf5e Bug 959787 - Handlify several JSAPI interfaces that can GC, Part 3; r=sfink
--HG--
extra : rebase_source : ace7b0fa6ba93acbf0ec8ecaeb68ffa287a33665
2014-01-16 09:48:58 -08:00
Tom Schuster
5e3191afd2 Bug 939294 - Change xpidl jsval to handles. r=gabor,bz,khuey,bsmedberg,terrence 2014-01-09 18:39:36 +01:00
Vicamo Yang
e5f2059a8f Bug 934125 - 2.b/3: fix alignment. r=gene
for f in `git show --name-only | grep ^dom/`; do
  [ -n "`grep -e '\w\+: function([^)]*\$' $f`" ] && echo $f;
done | xargs sh -c 'rvim "$@" </dev/tty' asdf
2014-01-13 10:44:44 +08:00
Vicamo Yang
403507648e Bug 934125 - 2.a/3: s/\(\w\+\): function \(\w\+\)(/\1: function(/ . r=gene
RILDIRS="dom/cellbroadcast/ dom/icc/ dom/mobilemessage/ dom/network/ dom/telephony/ dom/voicemail/ dom/system/gonk/";
for f in `find $RILDIRS -type f -name \*.js -o -name \*.jsm`; do
  sed -i $f -e '/\w\+:/ {N; s/\(\w\+\):\s*function \(\w\+\)(/\1: function(/g}';
done
grep -nRe '\w\+: function \w\+(' $RILDIRS
2014-01-13 10:44:40 +08:00
Vicamo Yang
8239e28db4 Bug 934125 - 1/3: s/function \+(/function(/ . r=gene
RILDIRS="dom/cellbroadcast/ dom/icc/ dom/mobilemessage/ dom/network/ dom/telephony/ dom/voicemail/ dom/system/gonk/";
for f in `find $RILDIRS -type f -name \*.js -o -name \*.jsm`; do
  sed -i $f -e 's/function \+(/function(/';
done
2014-01-13 10:44:33 +08:00
Gene Lian
1754f81186 Bug 956322 - Trying to download an MMS fails with 'Missing SIM card'. r=vicamo f=gaston a=v1.3+,approval-mozilla-b2g28+ 2014-01-08 11:29:40 +08:00
Ehsan Akhgari
eaa7491d77 Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:

#!/bin/bash
# Command to convert PRUnichar to char16_t

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*modules/libmar*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name prtypes.h \
       ! -name Char16.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRUnichar char16_t
2014-01-04 10:02:17 -05:00
Gene Lian
eaa3ec1b3b Bug 901457 - [sms][mms] We need a property for the "sent" timestamp (part 3, test cases). r=vicamo 2013-12-17 14:15:46 +08:00
Gene Lian
b94e9d8c60 Bug 901457 - [sms][mms] We need a property for the "sent" timestamp (part 2, implementation). r=vicamo 2013-09-23 10:31:32 +08:00
Gene Lian
e8d5279420 Bug 901457 - [sms][mms] We need a property for the "sent" timestamp (part 1, IDL changes). sr=sicking f=vicamo 2013-09-23 10:31:12 +08:00
Gene Lian
b2029e5f18 Bug 939302 - Test. r=vicamo 2013-12-02 14:31:57 +08:00
Tom Schuster
4429c0e19f Bug 939302 - Use DOMTimestamp for timestamps in MMS. r=bz,gen 2013-11-30 19:14:41 +08:00
Vicamo Yang
10baee498e Bug 943263: B2G MMS - add test cases for MobileMessageDB::forEachMatchedMmsDeliveryInfo. r=gene 2013-12-13 23:30:35 +08:00
Vicamo Yang
0d873bb3ee Bug 940884 - 3/3. test cases. r=gene 2013-12-12 11:45:35 +08:00
Vicamo Yang
9a2d6b647b Bug 940884 - 2.b/3. Move init functions out of MobileMessage constructor. r=gene 2013-12-12 11:45:28 +08:00
Vicamo Yang
2371236b4a Bug 940884 - 2.a/3. Changes to adopt MobileMessageDB.jsm. r=gene 2013-12-12 11:45:24 +08:00
Vicamo Yang
3e669cc628 Bug 940884 - 1/3: B2G SMS: Create MobileMessageDB.jsm for automation tests. r=khuey
--HG--
rename : dom/mobilemessage/src/gonk/MobileMessageDatabaseService.js => dom/mobilemessage/src/gonk/MobileMessageDB.jsm
2013-12-12 11:45:19 +08:00
Gene Lian
d62325fd3f Bug 946942 - [MMS] MO/MT MMS fail if the MMS APN is shared with default APN (follow-up). r=anshulj,me a=v1.3+ 2013-12-09 11:58:03 +08:00
Gene Lian
629526a834 Bug 945711 - [Messages] We lose the 'body' information when migrating. r=vicamo a=v1.3+ 2013-12-09 20:24:59 +08:00
Bevis Tseng
dcdd0d16ec Bug 946079 - Part 2: Modify Test Case to identify Return Call Message as replace Type Message. r=vyang 2013-12-05 14:26:27 +08:00
Bevis Tseng
aad785b74c Bug 946079 - Part 1: Treat Return Call SMS Message as Replaced Type Message instead of MWI message. r=vyang 2013-12-05 14:24:31 +08:00
Anshul Jain
88a9cf3962 Bug 946942 - Update APN settings on start if MMS call is already connected. r=gene 2013-12-06 12:01:30 -08:00
Blake Kaplan
cbec85703d Bug 933219 - Fix compartment mismatch in MobileMessageManager::Delete. r=gwagner 2013-12-05 13:28:41 -08:00
Blake Kaplan
c480c5eb5d Bug 933219 - Fix compartment mismatch in MobileMessageManager::Send. r=gwagner 2013-12-05 13:28:13 -08:00
Benoit Jacob
df947c50de Bug 943712 - Fix the non-unified build of SmsIPCService.cpp - no review, trivial compilation fix 2013-11-30 21:21:35 -05:00
Ms2ger
554db665e5 Bug 937258 - Part a: Remove empty makefiles; r=gps 2013-11-28 15:25:40 +01:00
Carsten "Tomcat" Book
1dc9070a7b Merge m-c to b2g-inbound 2013-11-27 12:50:24 +01:00
Ehsan Akhgari
dbd25bdfdc Bug 943712 - Build parts of dom/mobilemessage in unified mode; r=gene 2013-11-26 23:46:24 -05:00
Gene Lian
9c2085999e Bug 943350 - [B2G][DSDS] Gecko needs to properly download MMS for non-active SIM (follow-up fix). r=vicamo 2013-11-27 11:50:49 +08:00
Vicamo Yang
47d36795f4 Bug 942780: fix misuse of MMS.Address.resolveType in MobileMessageDatabaseService. r=gene 2013-11-26 17:29:23 +08:00
Vicamo Yang
58b8d5495c Bug 921918 - 4.b/4: Gonk RIL implementation. r=gene 2013-11-25 18:55:09 +08:00
Vicamo Yang
5529b3abe6 Bug 921918 - 4.a/4: accommodate to setMessageDeliveryByEnvelopeId interface change. r=gene 2013-11-25 18:55:08 +08:00
Vicamo Yang
efcc0e026f Bug 921918 - 3.h/4: decode some MMS header fields as enum. r=gene 2013-11-25 18:55:07 +08:00
Vicamo Yang
a0acffef33 Bug 921918 - 3.g/4: fix possible "undefined" value for messageRecord.envelopeIdIndex. r=gene 2013-11-25 18:55:06 +08:00
Vicamo Yang
ac17759c2d Bug 921918 - 3.f/4: share similar works to callback with a DOM message in a transaction. r=gene 2013-11-25 18:55:05 +08:00
Vicamo Yang
82faaeedb6 Bug 921918 - 3.e/4: fix debug doesn't work when only turned on in pref. r=gene 2013-11-25 18:55:04 +08:00