Commit Graph

875 Commits

Author SHA1 Message Date
Jared Wein
58d288335f Bug 711552 - Click to play plugins for desktop Firefox. r=felipe 2012-04-02 13:49:56 -07:00
Marco Bonardo
720c67a69d Merge last green PGO from inbound to central 2012-03-13 11:17:21 +01:00
Felipe Gomes
29991e9161 Backout cset 11af9adc0e5d (bug 724080) to avoid unnecessary string changes. We'll fix this with a server-side redirect. 2012-03-12 21:04:22 -07:00
Kai Engert
690efe5d3a Bug 673381, patch v4 to add NSPR/NSS library version numbers to about:support, r=dtownsend 2012-03-13 00:04:37 +01:00
Marco Bonardo
d9ff4d837f Bug 717070 follow-up - remove wrongly hardcoded Firefox brand. 2012-03-09 22:50:53 +01:00
Matthew Noorenberghe
db73057009 Bug 717070 - Profile reset - Part 3 - about:support UI to reset profile. r=mak 2012-02-23 19:34:18 -08:00
Luis Arteaga
2105919c97 Bug 724080. Broken link to Mozilla Manifesto on about:mozilla page. r=felipe 2012-02-27 18:13:15 -08:00
Geoff Lankow
2abd364d27 Bug 469434 - Links in "view source" should have "copy link location" in context menu; r=dao 2012-02-19 22:47:06 +13:00
Phil Ringnalda
06fa50e27e Back out 3d8fc342348b (bug 469434) for browser_contextmenu.js timeouts 2012-02-22 22:11:48 -08:00
Geoff Lankow
c646f211b4 Bug 469434 - Links in "view source" should have "copy link location" in context menu; r=dao 2012-02-19 22:47:06 +13:00
Bill McCloskey
d15702e36f Bug 641025 - Incremental GC (r=igor,smaug,roc,cdleary,gregor) 2012-02-17 14:35:20 -08:00
Gavin Sharp
ec26eb5fde Back out parts of bug 698986 to resolve bug 716945 2012-01-30 15:37:59 -08:00
aceman
75d6a3cecc Bug 559501 - On about:support, change "Profile Directory" to "Profile Folder" on Windows & Mac; r=gavin.sharp 2012-02-05 18:57:46 +00:00
aceman
c481c23046 Bug 559500 - On about:support, "Open Containing Folder" is misleading. r=gavin 2012-01-28 11:55:35 +00:00
Jared Wein
66c20edb37 Bug 714277 - Customization palette has only three columns in a new profile on Windows. r=dao 2012-01-27 17:03:09 -08:00
Hubert Gajewski
6f4da7dd16 Bug 629893 - Remove unused props.policy.label. r=gavin
--HG--
extra : rebase_source : e65538722161b0c00d2e8461849af476f52aba83
2012-01-13 17:16:04 +01:00
aceman
403a55225a Bug 631909 - make label 'Modified Preferences' in about:support more accurate. r=gavin 2012-01-11 10:45:05 +01:00
Ms2ger
d0bb7ac21e Bug 623610 - Remove support for geostd8; r=smontagu 2012-01-02 19:05:20 +01:00
Quentin Headen
547b01566f Bug 352037 - Add an "Undo add to dictionary" item to spell checker's context menu item; r=ehsan 2011-12-29 16:06:56 -05:00
aceman
64127191a0 Bug 122213 - Display time and date of messages in toolkit's Error Console. r=neil sr=bz 2011-12-17 05:22:26 +01:00
Jared Wein
f9e47c4043 Bug 708150 - Error text for media resource 404 is misleading when the requested media resource format or mime type is unsupported. r=dolske 2011-12-14 23:21:16 -08:00
Mark Banner
e4c5f77946 Bustage fix for comm-central apps after bug 481815 - use MOZILLA_DIR not topsrcdir. rs=kheuy 2011-12-08 18:06:44 +00:00
Chris AtLee
8d01aa9835 Bug 481815: makefile hooks required for signing executable files, installer packages, and mars. r=ted
--HG--
extra : rebase_source : 7b696910865fdbc9191cb7511f558879a9b9e05d
2011-12-07 17:06:52 -05:00
Jared Wein
4f49dc45fd Bug 513405 - Add text to video controls to describe the cause of errors. r=dolske 2011-12-05 14:00:28 -08:00
James Hobin
bf6a34dbca Bug 570760 - Make ctrl-f and / focus the search box in the add-ons manager. r=dtownsend,dao 2011-12-02 13:35:32 +01:00
Paul O’Shannessy
ae077178d1 Bug 615479 - Password manager prompts can now ask a more complete question [r=dolske] 2011-11-28 13:02:47 -08:00
aceman
7c6a6339fd Bug 502492 - Change about:config text box label to Search:. r=dtownsend ui-r=limi 2011-11-26 14:07:52 +01:00
Ed Morley
6603663db5 Merge last green changeset of mozilla-inbound to mozilla-central 2011-11-24 15:50:30 +00:00
Jared Wein
54a28ac854 Bug 470628 - Part 1: CSS, JS, XBL, and locale changes (with fall-back support). r=dolske ui-r=shorlander f=fryn 2011-11-23 14:42:18 -05:00
Felix Fung
42b50d5d59 Bug 397424 - Downloads cause high CPU usage. r=gavin
This addresses an issue with the download manager that can cause high CPU usage
when there is an active download.  The underlying issue is the frequency of
updates that the download progress listener receives.
Things changed:
- reduced the number of null checks in DownloadUtils.jsm's getDownloadStatus
  function by one (down to two from three).
- obtain and format strings from the nsIStringBundle.  This removes all the
  calls to String.replace in DownloadUtils.jsm.
- modifies the download manager back-end to update the percentComplete and size
  property on downloads before dispatching a state changed notification for
  downloads entering the DOWNLOAD_DOWNLOADING state.  This saves us two calls to
  setAttribute on downloads that we know how big they are, and saves us the same
  two calls to setAttribute for indeterminate downloads as well as not
  dispatching a ValueChange event on the progressmeter every time
  onProgressChange is called on the DownloadProgressListener.
- has nsDownload implement nsIClassInfo so we do not need to QueryInterface when
  going through the list of active downloads in both the download manager's UI
  and the browser's taskbar UI.
2011-11-03 15:25:55 -07:00
Joe Walker
6fc294c0de Bug 687851 - Create a locales directory in the devtools module, move all devtools l10n strings to it; r=rcampbell,mfinkle,l10n
--HG--
rename : browser/locales/en-US/chrome/browser/inspector.properties => browser/locales/en-US/chrome/browser/devtools/inspector.properties
rename : browser/locales/en-US/chrome/browser/scratchpad.dtd => browser/locales/en-US/chrome/browser/devtools/scratchpad.dtd
rename : browser/locales/en-US/chrome/browser/scratchpad.properties => browser/locales/en-US/chrome/browser/devtools/scratchpad.properties
rename : browser/locales/en-US/chrome/browser/styleinspector.dtd => browser/locales/en-US/chrome/browser/devtools/styleinspector.dtd
rename : browser/locales/en-US/chrome/browser/styleinspector.properties => browser/locales/en-US/chrome/browser/devtools/styleinspector.properties
rename : toolkit/locales/en-US/chrome/global/webConsole.dtd => browser/locales/en-US/chrome/browser/devtools/webConsole.dtd
rename : toolkit/locales/en-US/chrome/global/headsUpDisplay.properties => browser/locales/en-US/chrome/browser/devtools/webconsole.properties
2011-10-27 12:35:13 -03:00
Felix Fung
c9753d7a14 Bug 665196 - Change in-content plugin crash UI to submit a crash report and reload the page in one step. r=dolske 2011-09-23 22:28:56 -07:00
Brad Lassey
2a0422ad2e bug 687265 - Front-end support for flash on Android Fennec r=mbrubeck,blassey,dolske,jst 2011-10-07 13:46:02 -04:00
Dave Townsend
0eaaa1e2e0 Bug 652376: Migrate XPInstall dialog into the extensions directory. r=robstrong
--HG--
rename : toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.dtd => toolkit/locales/en-US/chrome/mozapps/extensions/xpinstallConfirm.dtd
rename : toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties => toolkit/locales/en-US/chrome/mozapps/extensions/xpinstallConfirm.properties
rename : toolkit/mozapps/xpinstall/content/xpinstallConfirm.css => toolkit/mozapps/extensions/content/xpinstallConfirm.css
rename : toolkit/mozapps/xpinstall/content/xpinstallConfirm.js => toolkit/mozapps/extensions/content/xpinstallConfirm.js
rename : toolkit/mozapps/xpinstall/content/xpinstallConfirm.xul => toolkit/mozapps/extensions/content/xpinstallConfirm.xul
rename : toolkit/mozapps/xpinstall/content/xpinstallItem.xml => toolkit/mozapps/extensions/content/xpinstallItem.xml
rename : toolkit/themes/pinstripe/mozapps/xpinstall/xpinstallConfirm.css => toolkit/themes/pinstripe/mozapps/extensions/xpinstallConfirm.css
rename : toolkit/themes/winstripe/mozapps/xpinstall/xpinstallConfirm.css => toolkit/themes/winstripe/mozapps/extensions/xpinstallConfirm.css
2011-11-23 15:04:56 -08:00
Jesper Kristensen
335b156c9e Bug 591780 - Frontend support for restartless dictionaries. r=ehsan, r=Mossop 2011-10-06 12:06:18 -07:00
Jared Wein
2ffc877a0e Bug 669260 - Add statistics overlay to video element. r=dolske 2011-10-03 20:47:41 -07:00
Ed Morley
f57624260e Bug 660718 - Add a link from about:support to about:memory; r=ehsan 2011-09-23 00:24:49 +01:00
Margaret Leibovic
346534afd1 Bug 685302 - Use "website" instead of "web site" consistently across all strings in the UI. r=dao 2011-09-13 16:42:37 -07:00
Kailas
7bb753d8be Bug 680812 - Excessive space between "280" and "KB" in download dialog; r=dolske 2011-09-12 10:24:02 -04:00
Justin Wood
89a393075a reland Bug 680113 - Select Add-ons dialog lists distribution add-ons as installed by the user. r=Mossop ui-r=faaborg 2011-09-08 04:11:17 -04:00
Phil Ringnalda
b23f534c65 Back out 4f7f1840152b (bug 680113) for orange 2011-09-09 22:18:19 -07:00
Justin Wood
3e8f886c07 Bug 680113 - Select Add-ons dialog lists distribution add-ons as installed by the user. r=Mossop ui-r=faaborg 2011-09-08 04:11:17 -04:00
Mike Ratcliffe
f3b4cf2717 Bug 582596 - Style view centered around answering common CSS questions, f=l10n, r=dolske, msucan 2011-08-30 09:12:02 -03:00
Rob Campbell
793eb5d860 merged m-c to fx-team, browser_595601-restore_hidden.js conflicted 2011-08-16 12:21:00 -03:00
Kailas
332ca401eb Bug 595888 - Show file size when attempting to download a file. r=sdwilsh, r=dolske, ui-r=faaborg 2011-08-15 12:53:03 -07:00
Dave Townsend
8e0e038bd5 Bug 596343: Users should have exclusive control over selecting their add-ons. r=Unfocused 2011-08-12 16:55:34 -07:00
Dave Townsend
f3ee939112 Backed out changeset 6d6e8fecaf37 from bug 596343 due to build failures 2011-08-12 15:47:34 -07:00
Dave Townsend
062e9d4868 Bug 596343: Users should have exclusive control over selecting their add-ons. r=Unfocused 2011-08-12 13:45:45 -07:00
Dave Townsend
308b60ecc8 Bug 476430: Disable third-party add-ons by default and offer them to the user. r=Unfocused, r=robstrong 2011-08-12 13:50:47 -07:00
Benoit Jacob
87b84c8733 Back out Bug 591057 / cset 02d5f1c5d438 because of 4% Ts regression 2011-08-11 14:24:52 -04:00
Ali Juma
f81fe059d2 Bug 591057 - Identify active GPU in about:support and crash reports - r=jrmuizel 2011-08-10 18:25:22 -04:00
Ali Juma
9a0c685fb8 Bug 591057 - List both GPUs in about:support and crash reports. - r=jrmuizel 2011-08-12 09:46:41 -04:00
Marc Wegner
2df0d30836 Bug 526802 - Add about:crashes to the Troubleshooting Information page. r=dao ui-r=faaborg 2011-07-27 09:44:28 +02:00
Mihai Sucan
6fffb26cfa Bug 667422 - Add localization note for the Web Console panel title string; r=ehsan
DONTBUILD
2011-06-27 19:32:05 +03:00
Rob Campbell
7e31d394cf merge m-c to devtools, conflict in inspector.js 2011-06-24 15:50:35 -03:00
Mihai Sucan
6758096d76 Bug 663443 - No indication to which tab a Web Console window belongs (esp. an empty one); r=ddahl,dietrich 2011-06-18 17:42:14 +03:00
Blair McBride
3a9a5e6372 Bug 660732 - about:support "Try updating your graphics driver" should link to instructions. r=gavin 2011-06-08 22:46:16 +12:00
Geoff Lankow
4e13ae6fbb Bug 662012 - Add more settings types to addon manager inline settings (file and directory types), r=Mossop 2011-06-15 12:15:55 +12:00
Dave Townsend
64314b12e3 Backing out changeset 010b73990286 from bug 660732 due to it breaking about:support (bug 662901). 2011-06-12 08:47:34 -07:00
Michael Wu
d8e5409ec9 Bug 641614 - Fix reordering of localized files in omnijar, r=ted 2011-06-10 17:54:01 -07:00
Justin Dolske
b4cb13cbef Bug 545070 - plugin-problem UI shouldn't say "click here". r=gavin 2011-05-22 18:46:33 -07:00
Dave Camp
eb5d5ebaa0 Merge m-c to devtools 2011-05-21 17:43:04 -07:00
Dave Townsend
e91f600ac1 Bug 595848: Dynamically generate the list of categories. r=Unfocused 2011-05-20 10:36:28 -07:00
Mihai Sucan
3cde414dbf Bug 585991 - Show a popup listing possible completions; r=rcampbell,dtownsend sr=neil 2011-05-17 18:07:33 +03:00
Mihai Sucan
cfb9600794 Bug 577721 - allow repositioning of the web console: above, below and out into a panel/window; r=rcampbell,sdwilsh 2011-05-18 14:08:54 +03:00
Hernán Rodriguez Colmeiro
3cacc4c531 Bug 656269: Add link to Mozilla plugin check from Add-ons Manager. r=dtownsend 2011-05-17 12:57:38 -07:00
Michael Wu
51a78c71eb Bug 656050 - Fix jar reordering on linux by moving jarlog dir, r=ted 2011-05-17 11:06:16 -07:00
Mike Hommey
b281811c02 Bug 569365 - Remove preprocessor.pl and replace it with Preprocessor.py. r=ted
--HG--
rename : config/Expression.py => js/src/config/Expression.py
rename : config/Preprocessor.py => js/src/config/Preprocessor.py
2011-05-16 15:51:21 +02:00
John Daggett
e9e9f644e7 Bug 650723. Add ClearType parameter data to about:support. r=gavin,jrmuizel 2011-05-11 09:30:20 +09:00
Rob Campbell
8dbe532020 merge m-c to devtools 2011-05-06 13:03:37 -03:00
Rob Campbell
49d35795a8 merge m-c to devtools 2011-05-02 16:15:53 -03:00
Rob Campbell
e56c66f89b merge m-c to devtools 2011-04-29 09:05:20 -03:00
Benoit Jacob
1ee952addb Bug 642502 - about:support improvements - r=gavin.sharp 2011-05-03 16:07:17 -04:00
Rob Campbell
1e7e540ad1 merge m-c to devtools 2011-04-25 10:13:36 -03:00
Ed Morley
1dc65abc0d Bug 652445 - Remove WinCE code (incl Faststart & nsSplashScreenWin) from toolkit; r=dtownsend 2011-04-29 12:38:26 +02:00
Rob Campbell
c41f4d769e merge m-c to devtools 2011-04-19 14:35:15 -03:00
Michael Wu
7c7176487d Bug 641614 - Try to fix jar logs in l10n repacks, r=ted 2011-04-19 10:13:34 -07:00
Rob Campbell
dd46717ac8 merge m-c to devtools 2011-04-14 09:40:08 -03:00
Mounir Lamouri
d5b22b24ca Bug 646854 - Let the user change the filter in the file picker when opening a file on MacOS X. r=joshmoz 2011-04-21 19:39:12 +02:00
Mihai Sucan
77fc545081 Bug 585956 - Implement console.trace() in web console; f=ddahl r=rcampbell,jonas 2011-04-11 20:48:15 +03:00
Marco Bonardo
2a052f5161 Merging Places to mozilla-central 2011-04-29 16:04:47 +02:00
timeless@mozdev.org
8bd7e2f5d8 Bug 620627 PlacesSQLQueryBuilder::SelectAsDay() is not l12y friendly.
Further modified by Marco Bonardo (f=gandalf)
r=mak
2011-04-28 19:55:06 +02:00
Ed Morley
8b8416dd20 Bug 438284 - Remove incorrect translation note from profileSelection.properties 2011-04-12 16:12:02 -04:00
Rail Aliiev
10de29569e bug 313956: expand installer .exe contents to make complete mar. r=ted 2011-04-11 12:23:26 -04:00
Chris Jones
9ac2f0b7d8 Backed out changeset f4da8c0c48d9 for breaking nightly repacks (see bug 313956) 2011-03-31 21:32:35 -05:00
Rail Aliiev
808a0fbbce bug 313956: expand installer .exe contents to make complete mar. r=ted.
--HG--
extra : rebase_source : 1a23afed1769531afe0b2f7d307fe5709eeed99b
2011-03-29 15:04:02 -04:00
Axel Hecht
0faa87811f bug 525438, l10n-merge doesn't merge all files, make targets work with PRETTY_NAMES, too. Adding a l10n-checks target for a dummy repack. r=ted 2011-03-18 18:29:56 +01:00
Mitchell Field
fc1808a1e6 Backed out changeset d7692aed054f 2011-03-09 12:29:25 +11:00
Mitchell Field
7580c06786 Bug 569365 - Switch usage of preprocessor.pl to Preprocessor.py. r=ted
--HG--
rename : config/Preprocessor.py => js/src/config/Preprocessor.py
2011-03-08 14:58:44 +11:00
Neil Rashbrook
d950aefa19 Bug 616811 Remove extraneous CRs r=dao a=beltzner 2011-02-16 21:41:59 +00:00
Mehdi Mulani
60eec5ec02 Bug 523784 - Soft blocked items are not disabled if user clicks "Cancel". r=Unfocused+Pike a=blocking+beltzner 2011-02-13 17:19:03 -08:00
Patrick Walton
6d0e466b45 Bug 611440 - Smart abbreviation for URLs in the Web Console; f=mihai.sucan,dolske r=dolske approval2.0=dolske 2011-01-24 12:05:05 -04:00
Blair McBride
f69ece5d30 Bug 593535 - Failure to download extension causes about:addons to list the addon with no way to restart the download; frontend; f=dtownsend r=dtownsend,robert.bugzilla a=blocking2.0 2011-01-10 15:58:10 +13:00
Patrick Walton
022c8facac Bug 605621 - Web Console output box should be reskinned - part 1; f=mihai.sucan r=sdwilsh a=blocking2.0
--HG--
rename : toolkit/components/console/hudservice/tests/browser/browser_webconsole_bug_586142_insert_newlines.js => toolkit/components/console/hudservice/tests/browser/browser_webconsole_copying_multiple_messages_inserts_newlines_in_between.js
2010-12-23 11:59:19 -04:00
Vladimir Vukicevic
cf0a566779 b=619485; add WebGL info to about:support; r=jrmuizel,a=beltzner 2010-12-16 12:49:54 -08:00
Margaret Leibovic
3624c54d2e Bug 615318 - Add a "not now" choice to all doorhanger notification split buttons. r=gavin, a=blocking-beta9
--HG--
extra : rebase_source : 8b350d4d9c5ce5c8a5c6b75c3d0ad45fd5abc2ec
2010-12-16 09:53:24 -08:00
Gavin Sharp
2ef44d13c5 Bug 612715: add l10n note clarifying the use of update-related menu items in about:addons, f=Cedric, r=Unfocused, a=me
--HG--
extra : rebase_source : afaefebd010d464f38e2d221e59f1719b07c0ad9
2010-12-02 14:54:57 -05:00
Dave Townsend
bffddf0eb2 Bug 617261: Replace 'donation' with 'contribution'. r=Unfocused, a=blocks-beta9 2010-12-08 14:41:50 -08:00
Daniel Brooks
5d4df79b2c back out about:startup due to crashes during mochitests (a89f24bf1798) a=bustage 2010-12-08 03:43:33 -06:00
Daniel Brooks
3c81e78044 about:startup - merge vlad's review comments with the trunk
--HG--
rename : testing/mochitest/runtests.py.in => testing/mochitest/runtests.py
2010-11-23 09:49:19 -06:00
Daniel Brooks
3b27def312 about:config - merge with trunk 2010-10-29 14:18:58 -05:00
Daniel Brooks
ae76a14286 about:startup - address remaining review comments 2010-10-29 14:16:28 -05:00
Patrick Walton
413f17b048 Bug 601667 - Web Console toolbar styling - part 0 strings r=l10n a=beta7+ 2010-10-27 14:20:26 -05:00
Daniel Brooks
362fafd9da about:startup - merge with trunk 2010-10-24 16:24:58 -05:00
Daniel Brooks
43ef59fdff about:startup - merge with trunk 2010-09-27 05:38:17 -05:00
Daniel Brooks
d0a43f8734 about:startup - merge with trunk 2010-09-21 15:06:04 -04:00
Daniel Brooks
38f18264c9 about:startup - handle application brand name and localizable extension names correctly 2010-09-18 17:54:32 -04:00
Daniel Brooks
60a234d54b about:startup - store extension install/uninstall/enable/disable events in the startup database 2010-09-18 00:30:06 -04:00
Daniel Brooks
baede1a008 about:start - let the user toggle between graphs and tables, with graphs as the default 2010-09-13 09:46:22 -04:00
Daniel Brooks
d86fbac4ee about:startup - add the code that will display extension events as marks on the graph. also adds some boilerplate to make serializing async code easy again and uses it to serialize different queries to the database 2010-09-13 07:35:50 -04:00
Daniel Brooks
a6087d3278 about:startup - fix glitch in the dtd 2010-09-12 02:47:35 -04:00
Daniel Brooks
f7f2f24fd3 about:startup - add a few more explanatory localization notes 2010-09-10 19:14:06 -04:00
Patrick Walton
1bb26f1b7d Bug 597502 - Web Console network inspector saves all network requests, causing Firefox to become unusably slow, r=sdwilsh, a=blocking2.0 2010-09-21 21:00:15 -03:00
Daniel Brooks
4d7c3a0ceb about:startup - some string changes 2010-09-09 20:45:01 -04:00
Daniel Brooks
ba45c80d1c about:startup - move UI files to toolkit
--HG--
rename : browser/base/content/aboutStartup.js => toolkit/content/aboutStartup.js
rename : browser/base/content/aboutStartup.xhtml => toolkit/content/aboutStartup.xhtml
rename : browser/locales/en-US/chrome/browser/aboutStartup.dtd => toolkit/locales/en-US/chrome/global/aboutStartup.dtd
rename : browser/locales/en-US/chrome/browser/aboutStartup.properties => toolkit/locales/en-US/chrome/global/aboutStartup.properties
2010-09-09 20:14:56 -04:00
Joe Drew
dbb9a82fc2 Bug 590841 - Add the ability for a DOM window to let us know when it's accelerated, and use that value in about:support. r=gavin sr=roc a=blocking2.0:beta6+ 2010-09-03 14:01:05 -04:00
Johnathan Nightingale
e859c42f9d Bug 591776 - Add user agent to about:support r=sdwilsh a=blocking2.0beta6+ 2010-09-02 14:42:04 -04:00
Julian Viereck
1f534c996b Bug 575789: Implements helper $, 2519, clear, keys, values, inspect and pprint. r=sdwilsh a=beta6+ 2010-09-02 14:30:45 -07:00
Johnny Stenback
16a2846c1a Fixing bug 61098. Give users a way out of inifinite modal dialog loops. Original patch by Nochum Sossonko. r=jonas@sicking.cc a=beta7+ 2010-09-16 18:24:14 -07:00
Blair McBride
c6b579e1e1 Bug 591876 - Change the tooltip of utilities button. r=dtownsend, a=dtownsend 2010-09-17 10:48:13 +12:00
Dave Townsend
69a3349a5c Follow-up strings fix for bug 562790. r=Unfocused, a=blocks-beta7 2010-09-15 21:58:11 -07:00
Blair McBride
b767691192 Bug 593535 - Failure to download extension causes about:addons to list the addon with no way to restart the download (strings only); r=dtownsend, a=blocks-beta7 2010-09-15 19:45:28 -07:00
Kurt Schultz
42efc71c46 Bug 590756 - The 'Update Add-ons Now' entry in the add-ons manager sounds as if updates were found and ready to be installed; r=bmcbride ui-r=limi a=dtownsend 2010-09-15 19:44:16 -07:00
Dave Townsend
3cf7d290ed Bug 562790: Support the add-ons marketplace in the add-ons manager (strings only). r=Unfocused, a=blocks-beta7 2010-09-15 19:42:01 -07:00
Kurt Schultz
ec2f257314 Bug 590754: The 'Install from file' in the add-ons manager needs to be clearer. r=Unfocused, a=dtownsend 2010-09-14 20:10:46 -07:00
Patrick Walton
9f50a37e79 Bug 595744 - Remove the "Check for Updates Automatically" menu item from the Add-ons Manager; r=Mossop a=blocking-betaN+ 2010-09-15 11:23:02 -04:00
Vladimir Vukicevic
9db3fa45ac b=562902; typo fix followup 2010-09-01 15:04:40 -04:00
Tyler Downer
d8c7a770c7 Bug 592295: Remove question mark from Undo?. r=dtownsend, a=blocking-b6 2010-09-01 10:31:12 -07:00
Dave Townsend
20b36ecc81 Bug 565300: Rename the themes pane to Appearance. r=Unfocused, a=blocking-b6 2010-09-01 10:04:09 -07:00
Dave Townsend
8fea742a3e Bug 563135: Add-ons manager should expose outdated plugins. r=Unfocused, a=blocking-b6 2010-09-01 09:58:42 -07:00
Dave Townsend
a29c57459f Bug 562902: Implement the final detail view mockups. r=Unfocused, a=blocking-b6 2010-09-01 09:57:48 -07:00
Rob Campbell
0e8c0c45f3 Backout of bug 575789 and bug 589089 due to oranges, a=#developers 2010-08-31 17:04:23 -03:00
Julian Viereck
c67d5a0c6c Bug 589089 - NetworkPanel: Show hint if response content-type can't be displayed, r=sdwilsh, a=blocking2.0 2010-08-31 14:31:48 -03:00
Julian Viereck
82da26d250 Bug 575789 - JSTerm: helper functions, r=sdwilsh, a=blocking2.0 2010-08-31 14:31:48 -03:00
Blair McBride
d7ea82d234 Backed out changeset 6fe388a0fb5e (Bug 581076) due to test failures. a=bustage
--HG--
extra : rebase_source : f726613cbce0938d25fd58a9547a5a25d15c1433
2010-08-30 17:35:21 +12:00
Blair McBride
7715ab61cf Bug 581076 - No "See all results" link present when searching for add-ons and not all are displayed (extensions.getAddons.maxResults). r=dtownsend, a=blocking-beta5 2010-08-28 14:45:11 +12:00
Julian Viereck
e72ec8f9e6 Bug 587574 - Display cached content in the NetworkPanel, r=sdwilsh, a=blocking2.0 (beta5) 2010-08-28 21:31:49 -07:00
Julian Viereck
9018ca5f35 Bug 588540 - NetworkPanel: Display submitted form data formated, r=sdwilsh, a=sdwilsh 2010-08-28 21:31:33 -07:00
Julian Viereck
48694b9903 Bug 573103 - Implement WebConsole Network Panel, r=dietrich, a=blocking2.0 (beta5) 2010-08-28 21:31:12 -07:00
Julian Viereck
ec21282fad Bug 568634 - Update networking log entries with subsequent http transactions, r=sdwilsh, a=blocking2.0, beta5 2010-08-28 21:30:49 -07:00
Rob Campbell
08f159e29c backing out bugs 587574, 588540, 573103, 568634 to clear leaks, a=#developers 2010-08-28 14:51:40 -03:00
Julian Viereck
c176716ced Bug 587574 - Display cached content in the NetworkPanel, r=sdwilsh, a=blocking2.0 (beta5) 2010-08-28 13:07:42 -03:00
Julian Viereck
2e31f81d1f Bug 588540 - NetworkPanel: Display submitted form data formated, r=sdwilsh, a=sdwilsh 2010-08-28 13:07:42 -03:00
Julian Viereck
cfa5bdaff1 Bug 573103 - Implement WebConsole Network Panel, r=dietrich, a=blocking2.0 (beta5) 2010-08-13 12:14:01 +02:00
Julian Viereck
701e4402ad Bug 568634 - Update networking log entries with subsequent http transactions, r=sdwilsh, a=blocking2.0, beta5 2010-08-13 12:13:32 +02:00
Gavin Sharp
b6108f1817 Bug 589343 followup: change entity names to indicate semantic change to the string, a=l10nfix
--HG--
extra : rebase_source : 4b317476b17888ad9a1a4be39da95cb4a841f041
2010-08-28 02:10:28 -04:00
David Dahl
a6847057fb Bug 589344 - Add tooltip to utilities button r=bmcbride a=beta5+ 2010-08-27 22:29:09 -07:00
David Dahl
736002b57e Bug 589343 - Preferences button should be called Options on Windows r=bmcbride a=beta5+ 2010-08-27 22:29:05 -07:00
Dave Townsend
9c70cf448a Bug 562797: Add-ons Manager needs to integrate with browser session history. r=Unfocused, r=sdwilsh, a=blocking-beta5
--HG--
extra : rebase_source : 8fe1d34d8b6f906799de9b2740f12c383a5feed0
2010-08-27 15:23:53 -07:00
Robert Strong
acc6c6b09e Bug 583408 - Notify user when the certificate attribute check fails. r=dtownsend ui-r=beltzner a=blocking 2010-08-28 02:35:01 +02:00