Commit Graph

2021 Commits

Author SHA1 Message Date
Eric Fischer
1b21ad4d4b Import corrected translations. DO NOT MERGE
Bug 2195208
2009-11-02 23:20:12 -08:00
Marc Blank
01da4ad8b1 am ebe7f679: am ccd29c33: Allow sync data to arrive via the chunked transfer encoding.
Merge commit 'ebe7f6796d517470d48f4dd3b39c44a8a8f120c3'

* commit 'ebe7f6796d517470d48f4dd3b39c44a8a8f120c3':
  Allow sync data to arrive via the chunked transfer encoding.
2009-11-01 21:58:31 -08:00
Marc Blank
aa3f5b0289 am d363e391: am e7965e97: am 1e1d7cb1: Merge change Ie2804ddc into eclair
Merge commit 'd363e391a107ac0d799a0f3dc292a8fe933c665d'

* commit 'd363e391a107ac0d799a0f3dc292a8fe933c665d':
  Fix #2225869 (Regression in attachment loading / Exchange 2003)
2009-11-01 21:54:29 -08:00
Marc Blank
27f6387a40 am 77b597ed: (-s ours) am 85f9f2a2: am 68942b93: (-s ours) Merge change I9733dc5d into eclair
Merge commit '77b597edfcd5b7eba3359644e7b2aae9803bcf1d'

* commit '77b597edfcd5b7eba3359644e7b2aae9803bcf1d':
  Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
2009-11-01 21:50:50 -08:00
Marc Blank
ebe7f6796d am ccd29c33: Allow sync data to arrive via the chunked transfer encoding.
Merge commit 'ccd29c33ed9b95eb69a1b769c53d9a8965888e9f' into eclair-mr2-plus-aosp

* commit 'ccd29c33ed9b95eb69a1b769c53d9a8965888e9f':
  Allow sync data to arrive via the chunked transfer encoding.
2009-11-01 13:56:52 -08:00
Marc Blank
ccd29c33ed Allow sync data to arrive via the chunked transfer encoding.
* Fixes #2216885
* The bug is that the sync adapters weren't set up to handle chunked
  encoding, primarily because 1) I hadn't seen any servers use it, and
  2) when we changed from HttpUrlConnection to HttpClient, support for
  chunked wasn't added (HttpUrlConnection didn't support it)
* The fix for xml data is trivial, since the Content-Length returned in
  the chunked case (-1) was being disallowed, but works perfectly well
  with HttpClient.
* The fix for attachments is less trivial, but still straightforward.
* With this change, we are no longer dependent on receiving content-length,
  which is highly desirable

Change-Id: Ie3bd6af0cf68f3afa190711d96b1dbd2e6341f79
2009-11-01 13:48:31 -08:00
Marc Blank
d363e391a1 am e7965e97: am 1e1d7cb1: Merge change Ie2804ddc into eclair
Merge commit 'e7965e975fb1904e457928d18bb5751ebcf7a830' into eclair-mr2-plus-aosp

* commit 'e7965e975fb1904e457928d18bb5751ebcf7a830':
  Fix #2225869 (Regression in attachment loading / Exchange 2003)
2009-10-30 14:38:52 -07:00
Marc Blank
e7965e975f am 1e1d7cb1: Merge change Ie2804ddc into eclair
Merge commit '1e1d7cb189e7ea7164d1335539d68d3d3ca8c0e5' into eclair-mr2

* commit '1e1d7cb189e7ea7164d1335539d68d3d3ca8c0e5':
  Fix #2225869 (Regression in attachment loading / Exchange 2003)
2009-10-30 14:33:58 -07:00
Marc Blank
c5c1250d1e am 1e1d7cb1: Merge change Ie2804ddc into eclair
Merge commit '1e1d7cb189e7ea7164d1335539d68d3d3ca8c0e5' into eclair-plus-aosp

* commit '1e1d7cb189e7ea7164d1335539d68d3d3ca8c0e5':
  Fix #2225869 (Regression in attachment loading / Exchange 2003)
2009-10-30 14:33:55 -07:00
Android (Google) Code Review
1e1d7cb189 Merge change Ie2804ddc into eclair
* changes:
  Fix #2225869 (Regression in attachment loading / Exchange 2003)
2009-10-30 17:26:46 -04:00
Marc Blank
77b597edfc am 85f9f2a2: am 68942b93: (-s ours) Merge change I9733dc5d into eclair
Merge commit '85f9f2a2624494bd8c2d781756d633822f79b7d1' into eclair-mr2-plus-aosp

* commit '85f9f2a2624494bd8c2d781756d633822f79b7d1':
  Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
2009-10-30 11:06:14 -07:00
Marc Blank
f6bdeb5f29 am 68942b93: Merge change I9733dc5d into eclair
Merge commit '68942b93a49c4bfed972ee0b5cffd301cebdacc8' into eclair-plus-aosp

* commit '68942b93a49c4bfed972ee0b5cffd301cebdacc8':
  Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
2009-10-30 11:01:32 -07:00
Marc Blank
85f9f2a262 am 68942b93: (-s ours) Merge change I9733dc5d into eclair
Merge commit '68942b93a49c4bfed972ee0b5cffd301cebdacc8' into eclair-mr2

* commit '68942b93a49c4bfed972ee0b5cffd301cebdacc8':
  Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
2009-10-30 11:01:13 -07:00
Android (Google) Code Review
68942b93a4 Merge change I9733dc5d into eclair
* changes:
  Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
2009-10-30 13:54:55 -04:00
Marc Blank
05dfc20853 Fix #2225869 (Regression in attachment loading / Exchange 2003)
* The fix to bug #2191778 inadvertently broke attachment loading for
  Exchange 2003 servers; the server responds with a 403 error (indicating
  an authentication issue)
* All other communications with the server work properly
* We use a slightly different set of calls in the case of attachments (we
  wanted to change as little as possible in the fix to #2191778) than we
  do in the other cases
* The fix here is to use the same calling sequence for attachments that we
  use elsewhere
* This fix has been observed to work on multiple servers, and in various
  SSL scenarios (on/off, trusted/untrusted)

Change-Id: Ie2804ddcbfa2b10edff42f7a3811734c325e933d
2009-10-29 20:10:46 -07:00
Eric Fischer
f0a87489d9 am 4c96b3ea: (-s ours) am 1382dca5: am bb17f149: (-s ours) Import revised translations. DO NOT MERGE
Merge commit '4c96b3ea7a7a61a5dd5f200e87ca18191638a663'

* commit '4c96b3ea7a7a61a5dd5f200e87ca18191638a663':
  Import revised translations.  DO NOT MERGE
2009-10-29 19:53:26 -07:00
Eric Fischer
4c96b3ea7a am 1382dca5: am bb17f149: (-s ours) Import revised translations. DO NOT MERGE
Merge commit '1382dca58578de2d880023296268feeefb0402ce' into eclair-mr2-plus-aosp

* commit '1382dca58578de2d880023296268feeefb0402ce':
  Import revised translations.  DO NOT MERGE
2009-10-29 19:41:55 -07:00
Eric Fischer
1382dca585 am bb17f149: (-s ours) Import revised translations. DO NOT MERGE
Merge commit 'bb17f149abe263b36eaab1125e12ea266a60306a' into eclair-mr2

* commit 'bb17f149abe263b36eaab1125e12ea266a60306a':
  Import revised translations.  DO NOT MERGE
2009-10-29 19:23:01 -07:00
Marc Blank
dbfe00ddad am 97269fa2: am 0911d629: Merge change Id69cee9b into eclair-mr2
Merge commit '97269fa25d474690320dcea594ea787b134754dc'

* commit '97269fa25d474690320dcea594ea787b134754dc':
  Fix folder deletion; add support for folder rename (#2118439)
2009-10-29 12:22:49 -07:00
Marc Blank
94d2e99581 Fix folder deletion; support folder rename (#2118439) DO NOT MERGE
* Folder delete had a subtle error that could cause subsequent folder
  changes in the same sync to fail (using wrong end tag)
* Folder change (rename, move) wasn't implemented; this was added and
  tested.  The change is very straightforward and low risk.

Change-Id: I9733dc5da1a535c388e2feb299a641642ba531c2
2009-10-29 12:19:57 -07:00
Marc Blank
97269fa25d am 0911d629: Merge change Id69cee9b into eclair-mr2
Merge commit '0911d6290f7e137d4deeda8104d49743ee84a6ef' into eclair-mr2-plus-aosp

* commit '0911d6290f7e137d4deeda8104d49743ee84a6ef':
  Fix folder deletion; add support for folder rename (#2118439)
2009-10-29 12:12:19 -07:00
Android (Google) Code Review
0911d6290f Merge change Id69cee9b into eclair-mr2
* changes:
  Fix folder deletion; add support for folder rename (#2118439)
2009-10-29 15:06:56 -04:00
Marc Blank
d2cc832782 Fix folder deletion; add support for folder rename (#2118439)
* Folder delete had a subtle error that could cause subsequent folder
  changes in the same sync to fail (using wrong end tag)
* Folder change (rename, move) wasn't implemented; this was added and
  tested.  The change is very straightforward and low risk.

Change-Id: Id69cee9b99e9a988a176a6525ba9a1615b741c44
2009-10-29 12:03:39 -07:00
Mihai Preda
dc287ef09a am 69ee7c02: am 9abd1bf9: Merge change I21052e28 into eclair-mr2
Merge commit '69ee7c0210f5adec205906c3c3ea3ed698a376f7'

* commit '69ee7c0210f5adec205906c3c3ea3ed698a376f7':
  Controller: modify the test for "attachment already loaded".
2009-10-29 06:45:08 -07:00
Mihai Preda
69ee7c0210 am 9abd1bf9: Merge change I21052e28 into eclair-mr2
Merge commit '9abd1bf9dabbf5f55b0f84a61d61b031250154bc' into eclair-mr2-plus-aosp

* commit '9abd1bf9dabbf5f55b0f84a61d61b031250154bc':
  Controller: modify the test for "attachment already loaded".
2009-10-29 06:39:25 -07:00
Android (Google) Code Review
9abd1bf9da Merge change I21052e28 into eclair-mr2
* changes:
  Controller: modify the test for "attachment already loaded".
2009-10-29 09:34:43 -04:00
Mihai Preda
69123f57fa am 96c29255: am 6bb7c724: MessageView: disable reply&forward for Trash messages.
Merge commit '96c292558736bb5a89370a4128af4e3d5a56a963'

* commit '96c292558736bb5a89370a4128af4e3d5a56a963':
  MessageView: disable reply&forward for Trash messages.
2009-10-29 06:25:05 -07:00
Mihai Preda
96c2925587 am 6bb7c724: MessageView: disable reply&forward for Trash messages.
Merge commit '6bb7c7248af1057eaf6f672be03bc46c8d03472d' into eclair-mr2-plus-aosp

* commit '6bb7c7248af1057eaf6f672be03bc46c8d03472d':
  MessageView: disable reply&forward for Trash messages.
2009-10-29 06:20:21 -07:00
Mihai Preda
6bb7c7248a MessageView: disable reply&forward for Trash messages.
Bug 2170118
2009-10-29 14:11:10 +01:00
Mihai Preda
f632c0007c am ce81062d: am 3126629d: Merge change I77ee7815 into eclair-mr2
Merge commit 'ce81062d3e3a68181101cf12379fb79a3122b1e6'

* commit 'ce81062d3e3a68181101cf12379fb79a3122b1e6':
  MessageView: center the presence dot with the From text.
2009-10-29 06:10:24 -07:00
Mihai Preda
ce81062d3e am 3126629d: Merge change I77ee7815 into eclair-mr2
Merge commit '3126629db5bfb2c2ae089913b96b9e0657694be9' into eclair-mr2-plus-aosp

* commit '3126629db5bfb2c2ae089913b96b9e0657694be9':
  MessageView: center the presence dot with the From text.
2009-10-29 06:05:17 -07:00
Android (Google) Code Review
3126629db5 Merge change I77ee7815 into eclair-mr2
* changes:
  MessageView: center the presence dot with the From text.
2009-10-29 08:57:36 -04:00
Marc Blank
0635abb6b2 am a62525a3: (-s ours) am 8df45282: am 0054c1a9: (-s ours) Merge change If12d0e7c into eclair
Merge commit 'a62525a3650ab32b71a8bea520127141e09522b3'

* commit 'a62525a3650ab32b71a8bea520127141e09522b3':
  Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
2009-10-29 01:54:10 -07:00
Marc Blank
3e825bdc74 am cbfb39b8: (-s ours) am 5ce592f4: am 2533132c: (-s ours) Merge change Ic29d3eac into eclair
Merge commit 'cbfb39b8cc955e1771756a817db53eccd4d8e227'

* commit 'cbfb39b8cc955e1771756a817db53eccd4d8e227':
  Server validates even though server address is wrong DO NOT MERGE
2009-10-29 01:54:04 -07:00
Marc Blank
9bb04b958d am eb72328c: (-s ours) am 38ca29b6: am ea5b93d9: (-s ours) Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
Merge commit 'eb72328c2b370fb5175e776ddc33825dbb29351e'

* commit 'eb72328c2b370fb5175e776ddc33825dbb29351e':
  Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
2009-10-29 01:53:59 -07:00
Marc Blank
a62525a365 am 8df45282: am 0054c1a9: (-s ours) Merge change If12d0e7c into eclair
Merge commit '8df4528248e6dc72a7a63732c34c4246eddba937' into eclair-mr2-plus-aosp

* commit '8df4528248e6dc72a7a63732c34c4246eddba937':
  Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
2009-10-29 01:41:16 -07:00
Marc Blank
cbfb39b8cc am 5ce592f4: am 2533132c: (-s ours) Merge change Ic29d3eac into eclair
Merge commit '5ce592f4b250b2649757192358722a1ce49a3775' into eclair-mr2-plus-aosp

* commit '5ce592f4b250b2649757192358722a1ce49a3775':
  Server validates even though server address is wrong DO NOT MERGE
2009-10-29 01:41:11 -07:00
Marc Blank
eb72328c2b am 38ca29b6: am ea5b93d9: (-s ours) Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
Merge commit '38ca29b6ae69cc12499319550a947ffa19af3352' into eclair-mr2-plus-aosp

* commit '38ca29b6ae69cc12499319550a947ffa19af3352':
  Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
2009-10-29 01:41:06 -07:00
Marc Blank
8df4528248 am 0054c1a9: (-s ours) Merge change If12d0e7c into eclair
Merge commit '0054c1a9e699e5c90daed6fd0a30ffc8aec3955e' into eclair-mr2

* commit '0054c1a9e699e5c90daed6fd0a30ffc8aec3955e':
  Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
2009-10-29 01:29:21 -07:00
Marc Blank
5ce592f4b2 am 2533132c: (-s ours) Merge change Ic29d3eac into eclair
Merge commit '2533132c84b9721b9692b284bbb14e5e0d237237' into eclair-mr2

* commit '2533132c84b9721b9692b284bbb14e5e0d237237':
  Server validates even though server address is wrong DO NOT MERGE
2009-10-29 01:29:15 -07:00
Marc Blank
38ca29b6ae am ea5b93d9: (-s ours) Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
Merge commit 'ea5b93d9b825e17eddf7f34cd37abef98e9949bd' into eclair-mr2

* commit 'ea5b93d9b825e17eddf7f34cd37abef98e9949bd':
  Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
2009-10-29 01:29:08 -07:00
Eric Fischer
1b0611cced am bb17f149: Import revised translations. DO NOT MERGE
Merge commit 'bb17f149abe263b36eaab1125e12ea266a60306a' into eclair-plus-aosp

* commit 'bb17f149abe263b36eaab1125e12ea266a60306a':
  Import revised translations.  DO NOT MERGE
2009-10-28 23:33:14 -07:00
Eric Fischer
bb17f149ab Import revised translations. DO NOT MERGE 2009-10-28 21:18:16 -07:00
Marc Blank
0386c563d0 am 0054c1a9: Merge change If12d0e7c into eclair
Merge commit '0054c1a9e699e5c90daed6fd0a30ffc8aec3955e' into eclair-plus-aosp

* commit '0054c1a9e699e5c90daed6fd0a30ffc8aec3955e':
  Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
2009-10-28 11:04:36 -07:00
Marc Blank
259386b10b am 2533132c: Merge change Ic29d3eac into eclair
Merge commit '2533132c84b9721b9692b284bbb14e5e0d237237' into eclair-plus-aosp

* commit '2533132c84b9721b9692b284bbb14e5e0d237237':
  Server validates even though server address is wrong DO NOT MERGE
2009-10-28 11:04:30 -07:00
Marc Blank
28f8d9ad58 am ea5b93d9: Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
Merge commit 'ea5b93d9b825e17eddf7f34cd37abef98e9949bd' into eclair-plus-aosp

* commit 'ea5b93d9b825e17eddf7f34cd37abef98e9949bd':
  Handle moreAvailable true w/o changes (#2189704) DO NOT MERGE
2009-10-28 11:04:25 -07:00
Android (Google) Code Review
0054c1a9e6 Merge change If12d0e7c into eclair
* changes:
  Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
2009-10-28 13:56:10 -04:00
Android (Google) Code Review
2533132c84 Merge change Ic29d3eac into eclair
* changes:
  Server validates even though server address is wrong DO NOT MERGE
2009-10-28 13:55:43 -04:00
Mihai Preda
77ee78152b MessageView: center the presence dot with the From text.
Bug: 2216938
2009-10-28 17:54:52 +01:00
Marc Blank
5d4bb79044 Go to combined inbox on notify for 2+ accounts (#2147265) DO NOT MERGE
* The problem is that PendingIntents aren't updated when a notification
  is updated, so the changed extras when a 2nd account gets a new message
  aren't seen by MessageList when it's started up upon tapping the
  notification (it uses the extras from the 1st account to get a new
  message)
* The fix is to use the newish (cupcake) flag in the PendingIntent that
  causes the extras in the PendingIntent to be updated

Change-Id: If12d0e7c6d3f256befeca98b560443395820737f
2009-10-28 08:57:45 -07:00