OSDN Git Service

android-x86/packages-apps-Browser.git
15 years agoUpdate browser provider to allow global search to access it.
Dianne Hackborn [Wed, 8 Jul 2009 21:59:33 +0000 (14:59 -0700)]
Update browser provider to allow global search to access it.

15 years agoMerge change 5882 into donut
Android (Google) Code Review [Wed, 1 Jul 2009 16:47:15 +0000 (09:47 -0700)]
Merge change 5882 into donut

* changes:
  Add new searchSettingsDescription attribute for Browser's searchable. This will be shown under the individual searchable item in system search settings.

15 years agoset default client id
Ramanan Rajeswaran [Wed, 1 Jul 2009 15:46:58 +0000 (08:46 -0700)]
set default client id

15 years agoAdd new searchSettingsDescription attribute for Browser's searchable.
Mike LeBeau [Wed, 1 Jul 2009 01:33:06 +0000 (18:33 -0700)]
Add new searchSettingsDescription attribute for Browser's searchable.
This will be shown under the individual searchable item in system search settings.

15 years agoRemove "search_url" in the debug setting as search is controlled by the search manage...
Grace Kloba [Tue, 30 Jun 2009 18:15:34 +0000 (11:15 -0700)]
Remove "search_url" in the debug setting as search is controlled by the search manager now.

15 years agoFix #1947053. Use EXTRA_POST_DATA to send POST request to the WebView. This is used...
Grace Kloba [Tue, 30 Jun 2009 14:09:56 +0000 (07:09 -0700)]
Fix #1947053. Use EXTRA_POST_DATA to send POST request to the WebView. This is used for sending location now.

15 years agoAdd the ZoomDensity support in the Browser.
Grace Kloba [Thu, 25 Jun 2009 18:08:53 +0000 (11:08 -0700)]
Add the ZoomDensity support in the Browser.

Per Leland's requst, change "Set text size" to "Text size" and etc.

15 years agoFix #1705293. When we about to hijack the url, we check the intent first. If it is...
Grace Kloba [Thu, 25 Jun 2009 03:23:41 +0000 (20:23 -0700)]
Fix #1705293. When we about to hijack the url, we check the intent first. If it is not resolved to any activity, we will try to download it from the Market.

15 years agoMerge change 5160 into donut
Android (Google) Code Review [Wed, 24 Jun 2009 03:03:05 +0000 (20:03 -0700)]
Merge change 5160 into donut

* changes:
  Return the url of a browser history item in the intent query column of the suggestion. This is so that global search can rewrite a query in the search dialog (i.e., fill in the search box with the url of the suggestion when the user rolls over to select the suggestion). Browser uses android:searchMode="rewriteQueryFromData" to accomplish this but global search does the default thing of using the intent query column, if present, as a rewrite for the current query.

15 years agoReturn the url of a browser history item in the intent query column of the
Mike LeBeau [Wed, 24 Jun 2009 00:36:59 +0000 (17:36 -0700)]
Return the url of a browser history item in the intent query column of the
suggestion. This is so that global search can rewrite a query in the search
dialog (i.e., fill in the search box with the url of the suggestion when the
user rolls over to select the suggestion). Browser uses
android:searchMode="rewriteQueryFromData" to accomplish this but global search
does the default thing of using the intent query column, if present, as a rewrite
for the current query.

15 years agoPass through SearchManager.APP_DATA bundle in web searches.
Satish Sampath [Tue, 23 Jun 2009 21:29:49 +0000 (22:29 +0100)]
Pass through SearchManager.APP_DATA bundle in web searches.

This got missed when we made the change to invoke the system default web search handler instead of the browser directing all searches to Google. This makes sure that the receiving web search providers can pass on the source parameter appropriately as part of the results page that they launch.

15 years agoUse the new Secure settings for location. Also added the code to invoke the consent...
Grace Kloba [Mon, 22 Jun 2009 19:18:15 +0000 (12:18 -0700)]
Use the new Secure settings for location. Also added the code to invoke the consent dialog.

15 years agoMerge change 4925 into donut
Android (Google) Code Review [Mon, 22 Jun 2009 16:07:32 +0000 (09:07 -0700)]
Merge change 4925 into donut

* changes:
  Fix 2 NPEs in the Browser.

15 years agoFix 2 NPEs in the Browser.
Patrick Scott [Mon, 22 Jun 2009 15:46:06 +0000 (11:46 -0400)]
Fix 2 NPEs in the Browser.

The first was from freeMemory getting a tab back that had already been freed.
This is a really hard case to reproduce but it appears that it can happen. So
just check for a null mMainView before trying to free the tab.

The second was a null mTabOverview during the onAnimationStart method when
animating to the tab overview. I think this is caused by message delays not
being accurate enough to ensure the overview has been created. A check for null
fixes the problem for now but I am working on a better solution to ensure
animation message order.

15 years agoUse public bookmark permissions.
Leon Scroggins [Fri, 19 Jun 2009 18:16:11 +0000 (14:16 -0400)]
Use public bookmark permissions.

Depends on change https://android-git.corp.google.com/g/4775,
which adds bookmark permissions the the public API.  This
change removes the old private permissions and uses the
new public ones.

15 years agoUse SearchManager.getSuggestions() non-statically.
Bjorn Bringert [Mon, 22 Jun 2009 09:36:29 +0000 (10:36 +0100)]
Use SearchManager.getSuggestions() non-statically.

15 years agodpi changes for browser
Grace Kloba [Fri, 19 Jun 2009 19:27:25 +0000 (12:27 -0700)]
dpi changes for browser

15 years agoUpdate browser to use new Intent URI expansion.
Dianne Hackborn [Thu, 18 Jun 2009 01:06:18 +0000 (18:06 -0700)]
Update browser to use new Intent URI expansion.

This changes the browser's URI->intent processing to use the new generic
"intent:" scheme supported by Intent.  Doing so allows the user to
provide links to arbitrary intents in a web page.  The browser restricts
which intents can actually be execute to those supported by the
BROWSABLE category by adding this to the resulting Intent and making
sure there is no explicit component in the Intent.

With the addition of package-specific Intents, this allows people to
have a link that is guaranteed to launch an activity in their own
package, not allowing others to intercept it.

15 years agoconflict fix
Mitsuru Oshima [Tue, 16 Jun 2009 23:34:51 +0000 (16:34 -0700)]
conflict fix

15 years agoAdd location info if the VIEW action to the Browser has EXTRA_APPEND_LOCATION on.
Grace Kloba [Tue, 16 Jun 2009 18:50:55 +0000 (11:50 -0700)]
Add location info if the VIEW action to the Browser has EXTRA_APPEND_LOCATION on.

15 years agoWhen searching the browser history, search titles.
Leon Scroggins [Mon, 15 Jun 2009 16:34:39 +0000 (12:34 -0400)]
When searching the browser history, search titles.

Copy of change https://android-git.corp.google.com/g/Gerrit#change,2450
into donut.

15 years agoMerge change 4105 into donut
Android (Google) Code Review [Mon, 15 Jun 2009 13:29:50 +0000 (06:29 -0700)]
Merge change 4105 into donut

* changes:
  Honor the system setting of whether to show web suggestions.

15 years agoHonor the system setting of whether to show web suggestions.
Leon Scroggins [Fri, 12 Jun 2009 21:51:22 +0000 (17:51 -0400)]
Honor the system setting of whether to show web suggestions.

15 years agoShorten the tab animation duration and the overview delay.
Patrick Scott [Thu, 11 Jun 2009 14:06:46 +0000 (10:06 -0400)]
Shorten the tab animation duration and the overview delay.

Also fix a few NPEs from the UrlData change.

15 years agoMerge change 3769 into donut
Android (Google) Code Review [Wed, 10 Jun 2009 23:27:34 +0000 (16:27 -0700)]
Merge change 3769 into donut

* changes:
  Squashed commit of the following:

15 years agoSquashed commit of the following:
Mitsuru Oshima [Wed, 10 Jun 2009 23:26:07 +0000 (16:26 -0700)]
Squashed commit of the following:

commit a81c695597665c0bae7e0af2ab98bf0d7ef96cbc
Author: Mitsuru Oshima <oshima@google.com>
Date:   Wed Jun 10 14:45:55 2009 -0700

    * added inline scheme support that shows content using WebKit#loadDataWithURL
    * removed data scheme from manifest

15 years agoUpdate Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 22:08:46 +0000 (15:08 -0700)]
Update Portuguese translations.

15 years agoam e20c4a40: AI 149721: Import Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 19:31:35 +0000 (12:31 -0700)]
am e20c4a40: AI 149721: Import Portuguese translations.

Merge commit 'e20c4a40dded9e10c41523d9614cf8aecbc6c059' into donut

* commit 'e20c4a40dded9e10c41523d9614cf8aecbc6c059':
  AI 149721: Import Portuguese translations.

15 years agoAI 149721: Import Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 19:26:03 +0000 (12:26 -0700)]
AI 149721: Import Portuguese translations.

Automated import of CL 149721

15 years agoMerge change 3487 into donut
Android (Google) Code Review [Tue, 9 Jun 2009 11:33:12 +0000 (04:33 -0700)]
Merge change 3487 into donut

* changes:
  Update browser icons - possibly not final.

15 years agoUpdate browser icons - possibly not final.
Mike LeBeau [Mon, 8 Jun 2009 22:14:48 +0000 (23:14 +0100)]
Update browser icons - possibly not final.

15 years agoMerge change 3315 into donut
Android (Google) Code Review [Fri, 5 Jun 2009 18:50:32 +0000 (11:50 -0700)]
Merge change 3315 into donut

* changes:
  Remove test library and instrumentation defs from Browser.

15 years agoRemove test library and instrumentation defs from Browser.
Brett Chabot [Fri, 5 Jun 2009 18:21:18 +0000 (11:21 -0700)]
Remove test library and instrumentation defs from Browser.

See bug 1900802.

15 years agoFix a monkey crash.
Leon Scroggins [Fri, 5 Jun 2009 15:04:45 +0000 (11:04 -0400)]
Fix a monkey crash.

The monkey crashed because getTopWindow() returned null.
Ensure that we either have a top window, or we are in
the tab picker.  If neither is true, return false, to
avoid the null pointer exception.

15 years agoMerge change 3134 into donut
Android (Google) Code Review [Thu, 4 Jun 2009 17:52:24 +0000 (10:52 -0700)]
Merge change 3134 into donut

* changes:
  Change the default client id for better stats

15 years agoInclude ACCEPTED_URI_SCHEMA in url patterns to skip.
Satish Sampath [Thu, 4 Jun 2009 17:21:40 +0000 (18:21 +0100)]
Include ACCEPTED_URI_SCHEMA in url patterns to skip.

Without this inclusion, the web search detection code thought that URLs
of the format about:blank or about:debug were web searches and passed
them on to the search provider.

15 years agoDo not use the original url in onReceivedTitle.
Patrick Scott [Thu, 4 Jun 2009 15:10:38 +0000 (11:10 -0400)]
Do not use the original url in onReceivedTitle.

We used to use the original url because that was what was entered into the
history database. Now, with a change in webkit, the correct url will be passed
to updateVisitedHistory if the server sent a redirect. This allows for the
correct url and title to be displayed in the title bar as well as the correct
url and title to be stored in the history.

15 years agoChange the default client id for better stats
Ramanan Rajeswaran [Thu, 4 Jun 2009 02:34:58 +0000 (19:34 -0700)]
Change the default client id for better stats

15 years agoUse system default web search & suggestions providers.
Satish Sampath [Fri, 29 May 2009 14:37:27 +0000 (15:37 +0100)]
Use system default web search & suggestions providers.

- Web search was hard coded to Google and suggestions in the search dialog were hard coded to the GoogleSearch suggest provider package. Both now point to the system default web search/suggest provider which can include third party search engines.
- I also removed the intent filter to handle action.WEB_SEARCH from the browser because it should no longer provide web search functionality for other apps, that feature is provided by the recently added WebSearchProvider package. Removing this intent filter also removes the browser from the list of web search providers in the system settings.
- As part of this change I had to factor out the search shortcut code to a separate function, add a couple of new functions and modify the browser provider code to access cursor fields in a safe manner.

15 years agoChange the string for the browser in global search from
Mike LeBeau [Wed, 3 Jun 2009 14:42:13 +0000 (15:42 +0100)]
Change the string for the browser in global search from
"Bookmarks & history" to "Browser".

15 years agoUse "unknown" as the default value for the client id to avoid crashing.
Patrick Scott [Tue, 2 Jun 2009 15:45:54 +0000 (11:45 -0400)]
Use "unknown" as the default value for the client id to avoid crashing.

15 years agoFix #1722851. Move the Browser's default home page to the resource so that we can...
Grace Kloba [Tue, 26 May 2009 17:48:31 +0000 (10:48 -0700)]
Fix #1722851. Move the Browser's default home page to the resource so that we can localize it easily.

15 years agobug fix: browser was not replacing whitepsace in url if scheme is not fully lowercased.
Mitsuru Oshima [Tue, 19 May 2009 02:11:14 +0000 (19:11 -0700)]
bug fix: browser was not replacing whitepsace in url if scheme is not fully lowercased.

15 years agoAdd data scheme support to Browser
Mitsuru Oshima [Fri, 15 May 2009 18:09:58 +0000 (11:09 -0700)]
Add data scheme support to Browser

15 years agoGet the color value for the search url color from a theme value
Mike LeBeau [Thu, 14 May 2009 22:04:19 +0000 (15:04 -0700)]
Get the color value for the search url color from a theme value
(dependent on change 1691, and will not submit until that is
submitted).

15 years agoOnly swap title and subtitle for website suggestions; query suggestions
Mike LeBeau [Thu, 14 May 2009 03:11:00 +0000 (20:11 -0700)]
Only swap title and subtitle for website suggestions; query suggestions
should still stay the same (i.e., query in title, number of results in
subtitle).

Also update all url subtitles to be green text as per search UI standards.

And change the text of "Search Google" to "Search the web" to accommodate
upcoming choices of web search provider.

15 years agoSwap the title and subtitle of browser suggestions, so the webpage title
Mike LeBeau [Wed, 13 May 2009 21:57:50 +0000 (14:57 -0700)]
Swap the title and subtitle of browser suggestions, so the webpage title
shows as the first line and the url shows as the second line. Preceding
"http://" is stripped from urls. If the first line would be empty or
whitespace, the second line is promoted to the first line.

This affects suggestions both for the browser and for global search. I
thought this looked a lot better so ran it by Leland and he's cool with
this.

I went ahead and reused the raw int values being used for column indices
and such, but this is bad. You guys should really consider making this
code a little safer/cleaner. :)

15 years agoMerge change 1006 into donut
Android (Google) Code Review [Thu, 7 May 2009 20:56:49 +0000 (13:56 -0700)]
Merge change 1006 into donut

* changes:
  Update google_search_base for chinese language.

15 years agoUpdate google_search_base for chinese language.
Bill Napier [Tue, 5 May 2009 20:16:30 +0000 (13:16 -0700)]
Update google_search_base for chinese language.

Changed default search base for china to be www.google.cn and changed the language param.

15 years agoAdd includeInGlobalSearch to Browser bookmarks search.
Bjorn Bringert [Tue, 5 May 2009 11:09:06 +0000 (12:09 +0100)]
Add includeInGlobalSearch to Browser bookmarks search.

This will allow bookmarks+history suggestions to show
up in global search without having it hard-coded
in GlobalSearch.SuggestionSources.

15 years agoam a6911fc: AI 148147: Import lots of zh_TW translation changes.
Eric Fischer [Fri, 1 May 2009 00:37:28 +0000 (17:37 -0700)]
am a6911fc: AI 148147: Import lots of zh_TW translation changes.

Merge commit 'a6911fcc3a90faa8cd9dd01c856dc5ac15937a7a' into donut

* commit 'a6911fcc3a90faa8cd9dd01c856dc5ac15937a7a':
  AI 148147: Import lots of zh_TW translation changes.

15 years agoAI 148147: Import lots of zh_TW translation changes.
Eric Fischer [Fri, 1 May 2009 00:32:15 +0000 (17:32 -0700)]
AI 148147: Import lots of zh_TW translation changes.

Automated import of CL 148147

15 years agoam 9ebc0f0: AI 148026: Update zh_TW translations.
Eric Fischer [Fri, 1 May 2009 00:10:36 +0000 (17:10 -0700)]
am 9ebc0f0: AI 148026: Update zh_TW translations.

Merge commit '9ebc0f0882535b716ef65233d965a8980232dfe1' into donut

* commit '9ebc0f0882535b716ef65233d965a8980232dfe1':
  AI 148026: Update zh_TW translations.

15 years agoAI 148026: Update zh_TW translations.
Eric Fischer [Thu, 30 Apr 2009 23:48:33 +0000 (16:48 -0700)]
AI 148026: Update zh_TW translations.

Automated import of CL 148026

15 years agoUpdate browser suggestion icons.
Bjorn Bringert [Wed, 29 Apr 2009 21:41:39 +0000 (22:41 +0100)]
Update browser suggestion icons.

The existing icons for bookmarks, history and search suggestions
in the browser are quite small and don't match the search suggestion
icons used in the rest of the system.

15 years agoAdd bookmarks search activity to browser.
Bjorn Bringert [Wed, 29 Apr 2009 21:33:52 +0000 (22:33 +0100)]
Add bookmarks search activity to browser.

This activity is never started from the browser. Its purpose
is to provide bookmark suggestions to global search (through
its searchable meta-data), and to handle the intents produced
by clicking such suggestions.

15 years agoImport clean-up in BrowserProvider.
Bjorn Bringert [Wed, 29 Apr 2009 20:52:09 +0000 (21:52 +0100)]
Import clean-up in BrowserProvider.

While I was working on BrowserProvider, I noticed some unused and
incorrecly ordered imports.

15 years agoAdd search suggestions for just bookmarks+history.
Bjorn Bringert [Wed, 29 Apr 2009 20:41:47 +0000 (21:41 +0100)]
Add search suggestions for just bookmarks+history.

The browser returns bookmarks+history, and pads with
google search suggest, when search suggestions are
requested using content://browser/search_suggest_query
This patch adds a new URI
content://browser/bookmarks/search_suggest_query
that only returns bookmarks+history.

15 years agoFix Google search suggestions in Browser address bar.
Bjorn Bringert [Wed, 29 Apr 2009 15:10:43 +0000 (16:10 +0100)]
Fix Google search suggestions in Browser address bar.

Before, the BrowserProvider talked directly to the
SearchManagerService and implemented its own version of
the SearchManager code for getting search suggestions.
This breaks if the global search provider is not
GoogleSearch.

This patch changes BrowserProvider to instead use
the SearchManager API to get suggestions from
the GoogleSearch application. When we have support
for third-party web search providers, this should be
changed to use the selected web search provider.

15 years agoam 94d2163: AI 147962: Import updated zh_TW translations.
Eric Fischer [Wed, 29 Apr 2009 04:57:20 +0000 (21:57 -0700)]
am 94d2163: AI 147962: Import updated zh_TW translations.

Merge commit '94d2163ddf27a162bbe66aad7336c5858a3b3f11' into donut

* commit '94d2163ddf27a162bbe66aad7336c5858a3b3f11':
  AI 147962: Import updated zh_TW translations.

15 years agoam 09c5179: AI 147492: Update zh_TW translations.
Eric Fischer [Wed, 29 Apr 2009 04:57:20 +0000 (21:57 -0700)]
am 09c5179: AI 147492: Update zh_TW translations.

Merge commit '09c51792e15cd7bbd1c239ec3346d571478923ba' into donut

* commit '09c51792e15cd7bbd1c239ec3346d571478923ba':
  AI 147492: Update zh_TW translations.

15 years agoAI 147962: Import updated zh_TW translations.
Eric Fischer [Tue, 28 Apr 2009 22:48:38 +0000 (15:48 -0700)]
AI 147962: Import updated zh_TW translations.

Automated import of CL 147962

15 years agoRemove the tab from the list of tabs so the ImageGrid will update.
Patrick Scott [Tue, 28 Apr 2009 12:57:56 +0000 (08:57 -0400)]
Remove the tab from the list of tabs so the ImageGrid will update.

I removed this by accident when removing the clearPictureListeners method. This
fixes a NPE when touching a removed tab in the tab picker.

BUG=1816205

15 years agoCheck for null before accessing mPickerData.
Patrick Scott [Tue, 28 Apr 2009 12:03:29 +0000 (08:03 -0400)]
Check for null before accessing mPickerData.

It could be null when switching to a parent tab since the parent tab will be
restored before showing the tab picker. This clears mPickerData before building
the tab picker.

15 years agoAI 147492: Update zh_TW translations.
Eric Fischer [Thu, 23 Apr 2009 18:59:14 +0000 (11:59 -0700)]
AI 147492: Update zh_TW translations.

Automated import of CL 147492

15 years agoMerge change 423 into donut
Android (Google) Code Review [Thu, 23 Apr 2009 12:47:43 +0000 (05:47 -0700)]
Merge change 423 into donut

* changes:
  Show the saved picture for freed tabs.

15 years agomerge cupcake into donut
Jean-Baptiste Queru [Thu, 23 Apr 2009 00:56:59 +0000 (17:56 -0700)]
merge cupcake into donut

15 years agoAI 147406: Import revised translations.
Eric Fischer [Wed, 22 Apr 2009 19:33:55 +0000 (12:33 -0700)]
AI 147406: Import revised translations.

Automated import of CL 147406

15 years agoShow the saved picture for freed tabs.
Patrick Scott [Wed, 22 Apr 2009 14:07:45 +0000 (10:07 -0400)]
Show the saved picture for freed tabs.

Create a small class containing the data needed to display the saved or current
picture. For freed tabs, inflate the picture and use the saved state from
mSavedState. Reorganize populatePickerData to use the current top window or the
saved state depending on if the tab has been freed.

There was another bug where onNewPicture would update the wrong FakeWebView due
to ListViews reusing the same view. Have the tab manage the new picture and
invalidate the FakeWebView. When reusing the view, clear out the tab's
FakeWebView field.

Wipe all the picker data at the same time the ImageGrid and ImageAdapter are
cleared.

15 years agoAI 146365: Import revised translations.
Eric Fischer [Wed, 15 Apr 2009 20:30:19 +0000 (13:30 -0700)]
AI 146365: Import revised translations.
  DO NOT MERGE

Automated import of CL 146365

15 years agoAI 146175: Import updated translations.
Eric Fischer [Tue, 14 Apr 2009 19:10:43 +0000 (12:10 -0700)]
AI 146175: Import updated translations.

Automated import of CL 146175

15 years agoAI 146037: Import updated translations.
Eric Fischer [Tue, 14 Apr 2009 00:16:19 +0000 (17:16 -0700)]
AI 146037: Import updated translations.

Automated import of CL 146037

15 years agoBrowser: Remove references to android.util.Config
Dave Bort [Mon, 13 Apr 2009 22:56:49 +0000 (15:56 -0700)]
Browser: Remove references to android.util.Config

The semantics of Config.DEBUG will be changing soon, and all other
Config.* fields will become deprecated/hidden.

BUG=1780938

15 years agoAI 145711: Import a few changed translations.
Eric Fischer [Fri, 10 Apr 2009 17:45:19 +0000 (10:45 -0700)]
AI 145711: Import a few changed translations.
  DO NOT MERGE

Automated import of CL 145711

15 years agoAI 144977: Import revised translations.
Eric Fischer [Wed, 8 Apr 2009 01:15:15 +0000 (18:15 -0700)]
AI 144977: Import revised translations.
  DO NOT MERGE

Automated import of CL 144977

15 years agoAI 144912: Merge from cupcake:
Eric Fischer [Tue, 7 Apr 2009 20:55:06 +0000 (13:55 -0700)]
AI 144912: Merge from cupcake:
  Change 144891 on 2009/04/07 by enf@ebcdic
  Import a bunch of revised translations.

Automated import of CL 144912

15 years agoAI 144891: Import a bunch of revised translations.
Eric Fischer [Tue, 7 Apr 2009 18:48:29 +0000 (11:48 -0700)]
AI 144891: Import a bunch of revised translations.

Automated import of CL 144891

15 years agoAI 144355: Automated g4 rollback of changelist 144335.
Eric Fischer [Fri, 3 Apr 2009 04:42:06 +0000 (21:42 -0700)]
AI 144355: Automated g4 rollback of changelist 144335.
  *** Reason for rollback ***
  Roll back US Spanish import because it made the build too big.
  *** Original change description ***
  Import US Spanish translations, and a few Japanese changes.

Automated import of CL 144355

15 years agoAI 144336: am: CL 144335 Import US Spanish translations, and a few Japanese changes.
Eric Fischer [Thu, 2 Apr 2009 23:42:13 +0000 (16:42 -0700)]
AI 144336: am: CL 144335 Import US Spanish translations, and a few Japanese changes.
  Original author: enf
  Merged from: //branches/cupcake/...

Automated import of CL 144336

15 years agoAI 144335: Import US Spanish translations, and a few Japanese changes.
Eric Fischer [Thu, 2 Apr 2009 23:39:21 +0000 (16:39 -0700)]
AI 144335: Import US Spanish translations, and a few Japanese changes.

Automated import of CL 144335

15 years agoAI 143239: am: CL 143100 Update Gears to 0.5.17.0 and fix 1741787.
Andrei Popescu [Sat, 28 Mar 2009 03:11:20 +0000 (20:11 -0700)]
AI 143239: am: CL 143100 Update Gears to 0.5.17.0 and fix 1741787.
  Original author: andreip
  Merged from: //branches/cupcake/...

Automated import of CL 143239

15 years agoAI 143186: am: CL 142931 Upgrade Gears to 0.5.16.0 and fix 1709247.
Andrei Popescu [Fri, 27 Mar 2009 23:54:18 +0000 (16:54 -0700)]
AI 143186: am: CL 142931 Upgrade Gears to 0.5.16.0 and fix 1709247.
  Original author: andreip
  Merged from: //branches/cupcake/...

Automated import of CL 143186

15 years agoAI 143100: Update Gears to 0.5.17.0 and fix 1741787.
Andrei Popescu [Fri, 27 Mar 2009 16:40:58 +0000 (09:40 -0700)]
AI 143100: Update Gears to 0.5.17.0 and fix 1741787.
  BUG=1741787

Automated import of CL 143100

15 years agoAutomated import from //branches/cupcake/...@142931,142931
Andrei Popescu [Thu, 26 Mar 2009 17:02:12 +0000 (10:02 -0700)]
Automated import from //branches/cupcake/...@142931,142931

15 years agoAutomated import from //branches/donutburger/...@142729,142729
Grace Kloba [Thu, 26 Mar 2009 00:30:20 +0000 (17:30 -0700)]
Automated import from //branches/donutburger/...@142729,142729

15 years agoAutomated import from //branches/donutburger/...@142720,142720
Eric Fischer [Thu, 26 Mar 2009 00:04:27 +0000 (17:04 -0700)]
Automated import from //branches/donutburger/...@142720,142720

15 years agoAutomated import from //branches/cupcake/...@142689,142689
Grace Kloba [Wed, 25 Mar 2009 22:36:05 +0000 (15:36 -0700)]
Automated import from //branches/cupcake/...@142689,142689

15 years agoAutomated import from //branches/cupcake/...@142643,142643
Eric Fischer [Wed, 25 Mar 2009 22:22:43 +0000 (15:22 -0700)]
Automated import from //branches/cupcake/...@142643,142643

15 years agoAutomated import from //branches/donutburger/...@142261,142261
Grace Kloba [Wed, 25 Mar 2009 04:36:18 +0000 (21:36 -0700)]
Automated import from //branches/donutburger/...@142261,142261

15 years agoAutomated import from //branches/donutburger/...@141868,141868
Eric Fischer [Wed, 25 Mar 2009 04:02:49 +0000 (21:02 -0700)]
Automated import from //branches/donutburger/...@141868,141868

15 years agoAutomated import from //branches/donutburger/...@141685,141685
Joe Onorato [Wed, 25 Mar 2009 03:44:17 +0000 (20:44 -0700)]
Automated import from //branches/donutburger/...@141685,141685

15 years agoAutomated import from //branches/donutburger/...@141655,141655
Patrick Scott [Wed, 25 Mar 2009 03:42:08 +0000 (20:42 -0700)]
Automated import from //branches/donutburger/...@141655,141655

15 years agoAutomated import from //branches/donutburger/...@141637,141637
Ramanan Rajeswaran [Wed, 25 Mar 2009 03:40:12 +0000 (20:40 -0700)]
Automated import from //branches/donutburger/...@141637,141637

15 years agoAutomated import from //branches/cupcake/...@142167,142167
Grace Kloba [Wed, 25 Mar 2009 02:11:23 +0000 (19:11 -0700)]
Automated import from //branches/cupcake/...@142167,142167

15 years agoAutomated import from //branches/donutburger/...@140873,140873
Eric Fischer [Wed, 25 Mar 2009 01:47:00 +0000 (18:47 -0700)]
Automated import from //branches/donutburger/...@140873,140873

15 years agoAutomated import from //branches/cupcake/...@141866,141866
Eric Fischer [Wed, 25 Mar 2009 01:33:42 +0000 (18:33 -0700)]
Automated import from //branches/cupcake/...@141866,141866

15 years agoAutomated import from //branches/cupcake/...@141684,141684
Joe Onorato [Wed, 25 Mar 2009 01:10:07 +0000 (18:10 -0700)]
Automated import from //branches/cupcake/...@141684,141684

15 years agoAutomated import from //branches/donutburger/...@140648,140648
Romain Guy [Wed, 25 Mar 2009 01:08:40 +0000 (18:08 -0700)]
Automated import from //branches/donutburger/...@140648,140648

15 years agoAutomated import from //branches/cupcake/...@141654,141654
Patrick Scott [Wed, 25 Mar 2009 01:05:24 +0000 (18:05 -0700)]
Automated import from //branches/cupcake/...@141654,141654

15 years agoAutomated import from //branches/cupcake/...@141636,141636
Ramanan Rajeswaran [Wed, 25 Mar 2009 01:03:12 +0000 (18:03 -0700)]
Automated import from //branches/cupcake/...@141636,141636