Commit Graph

4234 Commits

Author SHA1 Message Date
pkasting%google.com
0a0053c799 Bug 348298: Clean up Find Bar code, patch 1.
r=masayuki
2006-08-18 20:26:23 +00:00
benjamin%smedbergs.us
1e17074518 Bug 349025 - Extensions don't start up, r=obvious stupidity 2006-08-18 13:23:03 +00:00
mozilla.mano%sent.com
998c7fc57e Bug 349122 - misc fallout from theme changes to tabs, toolkit/content part. r=mconnor. 2006-08-18 09:08:55 +00:00
dietrich%mozilla.com
8f7962d0cd Bug 347944 Fix firefox products URLs to point to ...mozilla.com/ab-CD (r=vlad, r=mconnor) 2006-08-18 06:25:25 +00:00
sayrer%gmail.com
56f7c72f9e Bug 340555. Toolkit Feed API addtions. Relanding -- not the cause of a regression. 2006-08-17 23:07:40 +00:00
myk%mozilla.org
b95027c83d followup patch to bug 346795 that changes "browsing" to "working" in a string since updater isn't browser-specific
Patch by Mike Beltzner.
r=myk
2006-08-17 19:01:28 +00:00
enndeakin%sympatico.ca
7f30e238b5 Bug 348618, add attribute to hide spinbuttons of numberbox, r=neil 2006-08-17 16:25:09 +00:00
sspitzer%mozilla.org
944e55c79d for bug #329729: software updater should handle minor and major updates. adding notfound icon from winstripe to pinstripe, which is used if we are unable to load the EULA or the details about a major update. r=beltzner 2006-08-17 16:07:34 +00:00
benjamin%smedbergs.us
c62f361ad2 Fix non-XR orange from bug 319843 - Don't assume that we're using all of the new nsXULAppAPI features. 2006-08-17 15:37:22 +00:00
benjamin%smedbergs.us
267d087a63 Bug 319843 - XULRunner windows are grouped in the taskbar (and all XULRunner apps have the same firewall settings), r=darin 2006-08-17 14:22:04 +00:00
myk%mozilla.org
aecf6491a1 make Software Update Failed dialog less confusing
Patch by Mike Beltzner.
bug=348822
r=mconnor
2006-08-17 08:03:40 +00:00
sspitzer%mozilla.org
65c3d73e30 string change for bug #348389: properly support licenseURL attribute in updates.xml on the client side. r=beltzner
string change for bug #329729: software updater should handle major and minor updates. r=beltzner
2006-08-17 03:17:48 +00:00
myk%mozilla.org
9c4d884e18 backing out the most recent change because the tree is closed; will check it back in once the tree reopens 2006-08-16 22:02:34 +00:00
myk%mozilla.org
c35ec86e50 followup patch to bug 346795 that changes "browsing" to "working" in a string since updater isn't browser-specific
Patch by Mike Beltzner.
r=myk
2006-08-16 21:59:18 +00:00
myk%mozilla.org
f11e3a5595 fix second typo from beltzner's patch for bug 346795 2006-08-16 20:05:40 +00:00
gavin%gavinsharp.com
d25fb28b27 Bug 348257: fix add-ons window additional screen reader issues, patch by Mark Pilgrim <pilgrim@gmail.com>, r=mano 2006-08-16 18:10:22 +00:00
gavin%gavinsharp.com
c521b5fac6 Fix typo from patch for bug 346795, patch by beltzner 2006-08-16 16:27:03 +00:00
sayrer%gmail.com
1d1f80250c backout 340555. botched checkin 2006-08-16 14:59:19 +00:00
aaronleventhal%moonset.net
a2af6643de Bug 347423. Addons: No updates found message not accessible. r=mano, r=pilgrim 2006-08-16 13:21:26 +00:00
sayrer%gmail.com
9cee8e3cc5 First part of bug 340555, Toolkit feed parser needs nicer API. r=vlad 2006-08-16 05:36:46 +00:00
jminta%gmail.com
2475b55eac Bug 346795 wording of text in automatic updates dialog after new update has been downloaded, patch by beltzner, r=mconnor 2006-08-16 05:28:32 +00:00
mconnor%steelgryphon.com
a0f5d4a00d bug 348132 - when tab scroll buttons first kick in, they cover part of the new tab, r=mano 2006-08-15 22:08:56 +00:00
rob_strong%exchangecode.com
786a52717e Bug 314613 - Extension manager messages in Error Console. patch=Nick Thomas (cf), r=rob_strong 2006-08-15 00:27:40 +00:00
timeless%mozdev.org
ba2c063b89 Bug 330331 Building with option --disable-xul failed
patch by romaxa@gmail.com r=timeless r=biesi sr=bz
Removing last traces of RDF dependency from HTMLDocument (bug 101995)

Only build toolkit download ifdef MOZ_RDF
Only build windowdatesource and the charset menu ifdef MOZ_RDF

Enable nsExternalHelperAppService to build w/o RDF.
Enable nsDirectoryViewer to build, this is enables geckos to work around bug 347782
Don't build nsHTTPIndex at all.
2006-08-14 22:36:15 +00:00
sayrer%gmail.com
fa550b3290 Bug 348643. nsContentUtils / nsScriptableUnescapeHTML -- nsCRT::free considered harmful. r=timeless, sr=bz 2006-08-14 22:08:14 +00:00
timeless%mozdev.org
cd70f66472 Bug 348627 O(N^2) or worse algorithm in error console
r=bz sr=bz

Perhaps an explanation. String concatenation is a chance for garbage collection.
If you have unbounded input, this can be pretty bad. When you start running low
on memory, the garbage collector gets desperate and won't take shortcuts. Worst of
all, the original code generates one string of garbage every iteration starting with
the second or third.

This code uses a=[] to construct an array and a[n] to set the upper array boundary,
0 being the lower, and there are n slots between a[0] and a[n].
join() will build a string with n copies of the join argument, where n is the number                                                        of slots between between cells. So for:
a=[]; a[1]=''; there's 1 slot between [0] and [1]. The array's length is actually 2,
but the joined length will be 1.

While it is possible to use new Array(x), the behavior is different because the
array has length x and there are x-1 spaces between cells. This leads to code which
would be both much longer and harder to read. And definitely not particularly
intuitive.

The code used here otoh, while magical will hopefully require you to pause, think,
and quickly understand what's going on. If not, you paused long enough for this
bubble to appear and explain it to you :).
2006-08-14 22:03:34 +00:00
rob_strong%exchangecode.com
1760351045 Bug 347954 - Running the NSIS installer as normal user (restricted group) or without enough free space available makes it silently fail. r=sspitzer, a1.8.1=beltzner 2006-08-14 18:04:17 +00:00
mattwillis%gmail.com
c1b5a18704 bug 344409 - Fix case of updater.app display name by including app's name. r=bsmedberg,ui=beltzner 2006-08-14 17:28:28 +00:00
timeless%mozdev.org
3ac8499ab4 Bug 347884 Building XULRunner with --embedding-profile=minimal failed, tkhstory
only build mork+toolkit history ifdef MOZ_XUL
patch by romaxa@gmail.com r=timeless r=bsmedberg
2006-08-14 15:49:06 +00:00
neil%parkwaycc.co.uk
e5b3954d8b Bug 343884 Column order was reset on restart r=enn sr=jag 2006-08-14 10:28:15 +00:00
enndeakin%sympatico.ca
9d5f7be4a8 Bug 345510, add XUL numberbox, r=neil,mano,sr=neil 2006-08-14 02:44:00 +00:00
tony%ponderer.org
46d08f9425 Bug 347926: remove arc4.js and friends from source tree
patch: use nsIStreamCipher
r=provos,sr=darin
2006-08-14 01:17:08 +00:00
rob_strong%exchangecode.com
d4c050ef09 Bug 348343 - Selected addon description no longer wraps. r=rob_strong 2006-08-12 20:38:05 +00:00
mozilla.mano%sent.com
f61912772f Bug 348362 - Don't focus a tab when mousing-down on its close-button. r=mconnor. 2006-08-12 20:22:39 +00:00
mozilla.mano%sent.com
711d3466a4 Bug 345257 - add tooltip to 'all tabs' menu button. patch from Michael Ventnor <ventnors_dogs234@yahoo.com.au>, r=me. 2006-08-12 10:47:12 +00:00
sayrer%gmail.com
6fa03a1730 Bug 340554. Provide sanitizing fragment sinks for use with feeds. r=mrbkap. sr=jst 2006-08-12 04:46:43 +00:00
gavin%gavinsharp.com
e90a8c1b7f Bug 342642: fix exception thrown when clearing history, patch by Simon B�nzli <zeniko@gmail.com>, r=mano 2006-08-11 20:59:30 +00:00
gavin%gavinsharp.com
ff3c4044a2 Bug 348046: limit update history to 10 entries, patch by Michael Wu <michael.wu@mozilla.com>, r=darin 2006-08-11 20:38:56 +00:00
gavin%gavinsharp.com
11cc02020b Bug 348071: De-uglify download manager on Linux, patch by Adam Guthrie <ispiked@gmail.com>, r=rob_strong 2006-08-11 20:37:26 +00:00
steffen.wilberg%web.de
b5ae7ae36d Bug 347977: allow locales to set the page direction of about:. r=mano 2006-08-11 20:05:38 +00:00
sspitzer%mozilla.org
cf8cfd98f5 string changes for bug #329729:
software updater should handle minor and major updates.

ui-r=beltzner
2006-08-11 17:54:59 +00:00
sspitzer%mozilla.org
7d426c7fcd wall paper fix for bug #348183
nsGlobalWindow:Focus() can return NS_ERROR_FAILURE if we try to focus
a disabled element.  the unhandled exception in tabbrowser.xml can lead
to problems, such as "canceling the 'do you want to close the window
with open tabs' prompt still closes the window"

r=bryner
2006-08-11 00:47:20 +00:00
rob_strong%exchangecode.com
af5f535c88 Bug 348231 - Add-ons displays empty pane. patch=mossop, r=rob_strong 2006-08-10 21:51:49 +00:00
tony%ponderer.org
afeb6c182c bug 348163: nsUrlClassifierDBService::CloseDb isn't quite right
patch from ispiked
r=tony,sr=darin
2006-08-10 20:49:47 +00:00
rhelmer%mozilla.com
e613015052 "check" target should work for objdir and non-objdir builds.
b=348140, r=davel
2006-08-10 19:31:13 +00:00
pkasting%google.com
193af9b5b2 Bug 348063: More case sensitivity problems with Find Bar.
r=masayuki
2006-08-10 19:16:01 +00:00
benjamin%smedbergs.us
af03fc0477 Backout bug 345517 due to various issues. 2006-08-10 14:06:47 +00:00
gavin%gavinsharp.com
2065c3921a Bug 338048: Richlistbox in Add-ons window not accessible to screenreaders, patch by Mark Pilgrim <pilgrim@gmail.com>, r=mano 2006-08-09 18:12:36 +00:00
neil%parkwaycc.co.uk
560fdfcb0a Bug 347772 Fix style rule regression from bug 201499 p=stefanh r+sr=me 2006-08-09 15:37:32 +00:00
benjamin%smedbergs.us
ffd802f9ed Bug 345517 - Build Firefox --enable-libxul by default, r=darin/mento 2006-08-09 13:39:19 +00:00
aaronleventhal%moonset.net
da206c39db bug 347913. Notification accessibility regression. r=pilgrim, r=mconnor 2006-08-08 20:16:49 +00:00
gavin%gavinsharp.com
9cf101f0ad Fix typo from patch for bug 346356. 2006-08-08 19:25:51 +00:00
benjamin%smedbergs.us
ef6b6ab3b4 Bug 347183 - frozen-linkage access to null/singleton/union/array enumerators, r=darin 2006-08-08 18:18:50 +00:00
bryner%brianryner.com
60276d6db0 Add ObserverService notifications for entering and reverting autocomplete input (bug 347687). r=brettw 2006-08-08 18:18:23 +00:00
rob_strong%exchangecode.com
91f272dcda Backing out patch for Bug 344276 - uninstalling extension forecastfox will freeze firefox on quit (no longer needed now that bug 347778 has landed). 2006-08-08 18:16:11 +00:00
jwalden%mit.edu
80a887e677 Bug 347472 - When opening a file, the filename isn't truncated. Patch by Michael Wu <michael.wu@mozilla.com>, r=mconnor 2006-08-08 16:53:02 +00:00
rob_strong%exchangecode.com
1a6c34760d Bug 347841 - Rebuild selected view after hiding / unhiding elements in the mgr. r=sspitzer 2006-08-08 08:56:26 +00:00
smontagu%smontagu.org
2cdd148ae6 Add fa-ir to accepted languages and Iran to regionNames.properties. Bug 347632, r=jshin, blanket sr=roc for property file changes 2006-08-08 07:50:26 +00:00
rob_strong%exchangecode.com
6d4ba70793 Bug 347568 - 'No updates were found' bar should be dismissed when you change view. r=bsmedberg 2006-08-07 23:59:05 +00:00
gavin%gavinsharp.com
309e4fc21c Bug 251625: fix comment, patch by Serge Gautherie <gautheri@noos.fr>, r=mconnor 2006-08-07 23:03:48 +00:00
gavin%gavinsharp.com
1679d33b82 Bug 346356: Replace deprecated calls to preventBubble() on trunk, patch by Adam Guthrie <ispiked@gmail.com>, r=mano 2006-08-07 22:40:33 +00:00
gavin%gavinsharp.com
ed3d966d3b Bug 338841: fix typo in updateListener.QueryInterface (updates.js), patch by Regis Caspar <regis.caspar+bz@gmail.com>, r=darin 2006-08-07 22:36:27 +00:00
mozilla%weilbacher.org
adc6881911 [OS/2] Bug 336997: correct two more minor problems with the pmstripe theme, r=mkaply 2006-08-07 20:10:49 +00:00
rob_strong%exchangecode.com
9b8f062094 Bug 344276 - uninstalling extension forecastfox will freeze firefox on quit. r=bsmedberg, r=mento 2006-08-07 18:56:45 +00:00
benjamin%smedbergs.us
daa1520f43 Bug 328678 - XULRunner should include about:plugins, r=neil@p 2006-08-07 16:06:03 +00:00
rob_strong%exchangecode.com
cb0a3d6c85 Bug 347583 - Theme preview on Linux has incorrect background color and mgr. lists don't have borders. r=gavin 2006-08-07 02:36:11 +00:00
rob_strong%exchangecode.com
c3fceedfcb Bug 335238 - update requests for disabled extensions should have some 'disabled' indicator in the request (recheckin due to bad merge). patch=mossop.bugzilla, r=rob_strong 2006-08-06 20:27:16 +00:00
smontagu%smontagu.org
f34bf9bf8a Make 'file' in unknown content dialog localizable. Bug 340038, r=mano 2006-08-06 08:29:29 +00:00
db48x%yahoo.com
d80b165826 bug 346760: shouldn't require type=unichar for non-ASCII prefs
patch by Justin Wood (irc: Callek) <bugspam.Callek@gmail.com>, r=ben@mozilla.org
2006-08-06 06:33:49 +00:00
smontagu%smontagu.org
1887388365 Bug 307400. Scrolling profiles in Profile Manager broken in some localizations. r=mano 2006-08-06 05:32:42 +00:00
mats.palmgren%bredband.net
16d685538f Filepicker needs accesskey for dirTextInputLabel. b=250177 r+sr=neil 2006-08-06 03:11:09 +00:00
tony%ponderer.org
d86416d7b3 Bug 346940: differentiate anti-phishing table updates from full table reloads
patch: drop table if not an update using a temp table while updating
r=mmchew,sr=darin
2006-08-04 21:21:28 +00:00
rob_strong%exchangecode.com
ece61148a6 Bug 347140 - blocklisting broken sometime after implementation. r=bsmedberg 2006-08-04 19:21:32 +00:00
pkasting%google.com
343dc42472 Bug 347268: Fix red input field on Quick Find in some cases.
r=masayuki
2006-08-04 18:36:50 +00:00
rob_strong%exchangecode.com
638eddb5c6 Bug 345993 - Make the full Build ID more accessible to testers. patch=zach, r=rob_strong 2006-08-04 18:25:14 +00:00
pkasting%google.com
effb08030f Bug 345786: Re-add Match Case checkbox when not in auto-detect mode.
r=mconnor
2006-08-04 18:11:28 +00:00
sayrer%gmail.com
e1144a8a49 Bug 345065. legacy rss support. r=ben 2006-08-04 16:14:07 +00:00
gavin%gavinsharp.com
44d521453e Bug 347242: fix strict warnings in notification.xml, patch by Henrik Skupin <hskupin@gmail.com>, r=rob_strong 2006-08-04 14:35:37 +00:00
rob_strong%exchangecode.com
8a10079013 Bug 346407 - DOM Inspector and Talkback not available for Firefox 1.5.0.5. r=bsmedberg 2006-08-03 20:25:21 +00:00
gavin%gavinsharp.com
1e9d8f5eed Bug 233611: Download Manager Closes after download is cancelled, retried, and cancelled again, patch by Son Le <son.le0@gmail.com>, r=mconnor 2006-08-03 18:44:58 +00:00
sspitzer%mozilla.org
a4f11ce3f1 fix for bug #346441
closing the rightmost tab in the overflow case looks bad.

r=asaf
2006-08-03 05:48:55 +00:00
sspitzer%mozilla.org
0b039f085f fix for bug #342845
when dragging a tab over the "all tabs" button, act as if we are dragging over the "scroll down" button

r=mconnor
2006-08-03 00:54:49 +00:00
mozilla.mano%sent.com
91c602a065 Bug 346623 - Add overflow attribute to tabbrowser-tabs. r=mconnor. 2006-08-02 17:20:13 +00:00
mattwillis%gmail.com
6c76325258 bug 346798 - New descriptions for DOMi and talkback in NSIS. patch by reed, r=rob_strong,ui=beltzner,a181=beltzner 2006-08-02 04:56:29 +00:00
sspitzer%mozilla.org
e1a3c1f708 fix for bug #346901
change background tab animation and make new background tab restart animation, per pkasting and mconnor.

r=mconnor
2006-08-02 01:13:52 +00:00
rob_strong%exchangecode.com
5a3c477471 Bug 333160 - NSIS-based installer does not expose state of components to install. r=sspitzer, ui-r=beltzner 2006-08-01 05:50:48 +00:00
davel%mozilla.com
d04721cffd brain-dead simple unit test to toolkit/mozapps/update/src
b=346706, r=darin, sr=benjamin
2006-08-01 04:31:43 +00:00
tony%ponderer.org
8bdb13aa95 Bug 346184: If urlclassifier.sqlite is removed, db is not repopulated
patch: check db tables before sending an update request
r=darin
2006-08-01 02:01:40 +00:00
sspitzer%mozilla.org
81a8257967 fix for bug #342900
improve indication that open tab in background opened tab in overflow area.

instead of flashing the "all tabs" button, provide a smoother animation.

note, this will not work on mac trunk (but it will work on the mac branch)
due to bug #346738 (aka #325296), so for now, there is no animation on the mac.

r=mconnor
2006-08-01 01:33:18 +00:00
mark%moxienet.com
999c892099 46177 Show icons in native Mac menu items. r=josh sr=bryner 2006-08-01 00:13:24 +00:00
rob_strong%exchangecode.com
8fd3f51fc5 Bug 345993 - Make the full Build ID more accessible to testers. patch=zach, r=rob_strong, sr=jst 2006-07-31 21:30:16 +00:00
steffen.wilberg%web.de
a59dd1364d Bug 346180: fix remaining l12y issues with about:. r=axel, beltzner 2006-07-31 21:02:27 +00:00
benjamin%smedbergs.us
1427ece273 Bug 339106 - integrate spellcheck into libxul, r=mento 2006-07-31 18:11:38 +00:00
brettw%gmail.com
e1c5c5f671 Bug 346625 r=bryner Put back Select All accidentally removed by patch for bug 336799 2006-07-31 17:47:31 +00:00
sspitzer%mozilla.org
7a76517f12 fix for regression bug #346314: when dragging to reorder a tab, scrolling stops in certain scenario
r=mconnor
2006-07-29 16:59:50 +00:00
martijn.martijn%gmail.com
be2bc3e3d0 Bug 345928 - In <menulist.xml>, Strict 'Warning: function _selectInputFieldValueInList does not always return a value', patch by Simon B�nzli, r+sr=neil 2006-07-29 13:47:22 +00:00
martijn.martijn%gmail.com
1c89095d32 rest of patch for bug 317334 - hang when long wrappable string is passed to prompt() [e.g. as used in the exploit for IE's <body onload=window()> bug], r=mconnor 2006-07-29 12:47:26 +00:00
martijn.martijn%gmail.com
6eedc99bf6 Bug 345245 - GTK scrollbar buttons don't show as active on right or middle click, patch by Adam Guthrie, r+sr=roc 2006-07-29 09:59:00 +00:00
pkasting%google.com
2070e797b8 Bug 339127: Add "spellcheck" attribute to control spellchecking.
r=brettw
sr=sicking
2006-07-29 00:04:40 +00:00
joshmoz%gmail.com
7ad51b9919 Naked hostname isn't very effective for identifying dialog origin. b=334893 r=mento sr=dveditz 2006-07-28 22:06:39 +00:00
bzbarsky%mit.edu
7fb1d4ec68 Back out bug 328357 to see whether that fixes tinderbox orange. 2006-07-28 17:39:59 +00:00
brettw%gmail.com
7484cf11af Bug 336799 r+sr=bryner Remove spellcheck UI from XUL textboxes 2006-07-28 17:36:00 +00:00
sayrer%gmail.com
6c90b4ae2c Bug 340994. FOAF tries to use feed preview mode, but fails with TypeError. r=mconnor 2006-07-28 16:50:56 +00:00
mark%moxienet.com
3ac8ba0428 328357 Codesize reduction of nsAppRunner.obj: consolidate printf, replace %s-substitution of "\t" with "\t" in the string, inline functions, clean up DumpVersion. Patch by Alfred Kayser <alfredkayser@nl.ibm.com>. r=bsmedberg sr=neil 2006-07-28 14:51:13 +00:00
gavin%gavinsharp.com
21207c0c25 Bug 344984: Make unknownContentType.xul dialog look better, patch by Michael Wu <michael.wu@mozilla.com>, r=mconnor, uir=beltzner 2006-07-28 06:23:49 +00:00
gavin%gavinsharp.com
6b66746dcb Bug 337845: Spell checking options should be at the bottom of the context menu, patch by Simon B�nzli <zeniko@gmail.com>, r=brettw, ben 2006-07-28 05:53:16 +00:00
gavin%gavinsharp.com
ab2b1fe36f Bug 234770 part #2: Don't null userField, patch by Michael Wu <michael.wu@mozilla.com>, r=enndeakin 2006-07-28 05:45:16 +00:00
sspitzer%mozilla.org
028508841d fix for regresson bug #346172
dragging a link into firefox and dropping it onto a tab opens it in the focused tab, and not the desired tab.

this regression was caused by bug #333791

r=mconnor
2006-07-27 21:31:59 +00:00
enndeakin%sympatico.ca
743f12e136 bug 343574, support blocking notification, r=mconnor 2006-07-27 15:54:28 +00:00
cbiesinger%web.de
04e627d5f3 (part of) bug 333640 link to all required libraries
r=bsmedberg
2006-07-27 14:42:27 +00:00
benjamin%smedbergs.us
411ccf69d1 Bug 332045 - toolkit/components/gnome should use the glue, r=darin 2006-07-27 14:42:26 +00:00
bsmedberg%covad.net
9eab6c6ae0 Adding MOZILLA_INTERNAL_API to internal makefiles, bug 288626, rs=darin 2006-07-27 14:42:25 +00:00
bryner%brianryner.com
2984f958c3 Attempt to fix bustage when GConf/GnomeVFS libraries are not available (bug 251703). Always export the GNOME interfaces on gtk2 but only build the component when all of the prerequisites are installed. r+sr=darin. 2006-07-27 14:42:24 +00:00
bryner%brianryner.com
6921385067 Implement nsIShellService for GNOME (bug 242254). r=biesi, sr=shaver. Note: set as wallpaper for images that use transparency will be broken until bug 250531 is fixed. This also makes toolkit/ always be pulled in preparation for migrating more code to the new GNOME XPCOM interfaces. 2006-07-27 14:42:23 +00:00
rob_strong%exchangecode.com
152f5827d1 Bug 345353 - Compatibility Wizard string changes. r=sspitzer, ui-r=beltzner 2006-07-26 22:59:56 +00:00
gavin%gavinsharp.com
b311d9b102 Bug 345670: fix crash in nsTypeAheadFind::RangeStartsInsideLink, patch by Adam Guthrie <ispiked@gmail.com>, r+sr=sicking 2006-07-26 22:02:23 +00:00
mozilla.mano%sent.com
dcb5434517 Bug 329394 - XUL textbox in XHTML page: focusing gives document.commandDispatcher has no properties. patch from Shawn Wilsher (sdwilsh) <comrade693@gmail.com>, rs=neil/me. 2006-07-26 21:54:05 +00:00
mozilla.mano%sent.com
6c2fdc01ad Bug 'All Tabs' menu does not flash during 'Open in Tabs'. patch from Simon Bnzli <zeniko@gmail.com>, r=me. 2006-07-26 21:44:27 +00:00
rob_strong%exchangecode.com
2d7edc75a0 Bug 345774 - hang when closing the info-bar in Add-ons dialog. Also reverses stomping on extensions.xml by the checkin of bug 241015. r=sspitzer 2006-07-26 21:15:17 +00:00
vladimir%pobox.com
31c8e763e7 b=334174, corrupted db files are not handled correctly, r=brettw 2006-07-26 18:54:12 +00:00
gavin%gavinsharp.com
a2f1db0eaf Fix bug 345327: "clear" button in the console doesn't work, regression from bug 322169, patch by Simon B�nzli <zeniko@gmail.com>, r=mconnor 2006-07-26 18:31:45 +00:00
mozilla.mano%sent.com
a0b6c0964c Bug 343587 - Make mousedown-to-scroll faster (150ms delay), r=beltzner. 2006-07-26 18:17:29 +00:00
rob_strong%exchangecode.com
8080121144 Bug 344148 - Heading/tailing whitespace in override.properties should be removed according to the spec of the properties files. patch=Asai Tomoya, r=rob_strong 2006-07-26 00:19:11 +00:00
gavin%gavinsharp.com
d8f009afc8 Bug 234770: Password field names are used instead of username field names to find acceptable signons, patch by Michael Wu <michael.wu@mozilla.com>, r=enndeakin 2006-07-25 21:36:43 +00:00
gavin%gavinsharp.com
bb0e5916ca Bug 337532: Back and Forward dropmarker history buttons should have proper names, patch by Mark Pilgrim <pilgrim@gmail.com>, r=mano 2006-07-25 21:34:49 +00:00
rob_strong%exchangecode.com
0429f4d0b1 Bug 345899 - Protect against XMLHttpRequest statusText not being available. r=sspitzer 2006-07-25 21:09:22 +00:00
rob_strong%exchangecode.com
6591ef65e1 Bug 345901 - Remove mismatch.js and mismatch.xul. r=sspitzer 2006-07-25 21:07:32 +00:00
mozilla.mano%sent.com
13a8bb75ba Backing out bug 345257 due to the crash reported in 345659. 2006-07-25 19:57:58 +00:00
tony%ponderer.org
aa98d1eae0 bug 345675: unwanted connection to www.google.com at startup with Safe
Browsing disabled
patch: don't get key if sb off, don't get whitelist tables if remote checking
on
r=mmchew,sr=bryner
2006-07-25 17:44:26 +00:00
mozilla.mano%sent.com
7d67ef4065 Bug 345259 - [RTL UI] opening tabs in background moves tabs. patch from smontagu and me, r=mconnor. 2006-07-25 16:01:35 +00:00
mats.palmgren%bredband.net
bfc71b1c54 Add ID attribute for Page Setup dialog. b=345749 r+sr=neil 2006-07-25 15:50:47 +00:00
sspitzer%mozilla.org
1495286e92 fix for bug #344048
set tab min width and tab clip width to better values, per beltzner.

r=mano, ui-r=beltzner
2006-07-25 15:35:42 +00:00
sspitzer%mozilla.org
3dde4b6854 fix for bug #344587: dispatch tab open/close events in the correct order.
thanks to simon <zeniko@gmail.com> for the fix.

r=sspitzer,mano sr=mconnor
2006-07-25 15:30:13 +00:00
gavin%gavinsharp.com
16c41b67e9 Bug 345584: fix build bustage in nsTypeAheadFind.cpp, patch by Alfred Peng <alfred.peng@sun.com>, r=aaronlev, sr=bzbarsky 2006-07-24 23:20:36 +00:00
gavin%gavinsharp.com
8c91e9b5a0 Revert accidental checkin 2006-07-24 23:03:24 +00:00
gavin%gavinsharp.com
ebabef27fb Bug 345075: Fix loadOneTab to ensure that the parent isn't set when passing null as the loadInBackground argument, r=mconnor 2006-07-24 23:02:24 +00:00
aaronleventhal%moonset.net
793d61f079 Bug 241015. Remote XUL is not accessible. Patch by Alexander Surkov. r=aaronlev. Chrome r='s by neil and mano 2006-07-24 16:12:08 +00:00
mozilla.mano%sent.com
353bedbecf Fixing a typo pointed out by smontagu from my checkin of bug 342841. 2006-07-24 08:22:30 +00:00
mozilla.mano%sent.com
8eb18ee78b Bug 345260 - handle dynamic changes to tab title, tab icon and busy (loading) state in all tabs menu. r=sspitzer/mconnor. 2006-07-23 18:28:47 +00:00
mconnor%steelgryphon.com
03fe9e89c6 bug 195212 - Reopening multiple tabs when clicking Home and multiple homepages selected, make multiple pages always open together r=mano 2006-07-23 18:21:20 +00:00
martijn.martijn%gmail.com
58f89909c7 Bug 345400 - Password manager can't handle case insensitive user field names imported from IE, patch by Michael Wu, r=enndeakin 2006-07-23 08:11:35 +00:00
mozilla.mano%sent.com
99bd0ecd5b Bug 345257 - add tooltip to 'all tabs' menu button. patch from Michael Ventnor <ventnors_dogs234@yahoo.com.au>, r=me. 2006-07-23 06:07:26 +00:00
steffen.wilberg%web.de
12b5f75dc6 Bug 328563: redesign about:, make a period localizable and the about:license url not localizable. r=l10n 2006-07-22 14:36:45 +00:00
sspitzer%mozilla.org
01e4b38a00 fix for bug #342105: Close button not shown if there is only one tab
per beltzner:

"The close button should be shown, with the effect being that it disposes the
tab and immediately opens a new one. Strange behaviour surely, but I think it's
the easiest and most reliably understandable case."

thanks to Simon <zeniko@gmail.com> for the patch.

r=sspitzer, sr=mconnor
2006-07-22 06:13:17 +00:00
rob_strong%exchangecode.com
39f5f9bd2d removing one line of commented out code - no bug - r=me 2006-07-21 22:18:07 +00:00
rob_strong%exchangecode.com
c7ff30b577 supplemental patch for Bug 262575 - 'Visit Homepage' and 'Get More Extensions/Themes' in Extension and Theme manager should respect tabbed browsing preferences. r=sspitzer 2006-07-21 22:10:36 +00:00
sspitzer%mozilla.org
b45e7a28ee fix for bug #333791: Tab drag indicator (arrow) vanishes/flickers when cursor passes over parts of the tab
fix for bug #345524: hide the tab dnd indicator when it's over the original tab

thanks to Wayne Woods <w.woods@optusnet.com.au> for these fixes.

r=sspitzer, sr=mconnor
2006-07-21 20:30:13 +00:00
sayrer%gmail.com
25fb925abd [Bug 345264] FeedProcessor should set this._result to null after sending the result to the listener, r=ben 2006-07-21 19:16:24 +00:00
sayrer%gmail.com
ca475e47fe Bug 344991. Change accessors to return nsIFeedTextConstructs. This and previous checkin r=ben. 2006-07-21 19:07:52 +00:00
sayrer%gmail.com
0949107f1c Bug 344991. Change accessors to return nsIFeedTextConstructs 2006-07-21 19:05:13 +00:00
sspitzer%mozilla.org
645c8c7e69 fix for bug #343820
Add-ons app upgrade compatibility wizard needs some branding.

thanks to ryan flint (rflint@dslr.net) for the patch

r=rstrong,sspitzer
2006-07-21 14:06:17 +00:00
sspitzer%mozilla.org
0cb5952075 fix for regression bug #341697
do not show branded icon by default, use smaller branded icons for wizard, only show it for certain scenarios.

r=rstrong
2006-07-21 14:01:33 +00:00
gavin%gavinsharp.com
97791eb5fe Bug 345395: fix typo in patch for bug 58724, r=lumpy 2006-07-21 13:10:49 +00:00
gavin%gavinsharp.com
91dcbae45b Bug 336132: Label in List View not avail in "Active Char Encodings", patch by Mark Pilgrim <pilgrim@gmail.com>, uir=beltzner, r=mano 2006-07-21 12:39:31 +00:00
pamg.bugs%gmail.com
7f43c0e914 Bug 345379: Case-sensitivity in the find bar is broken. Patch by pkasting@google.com. r=beng 2006-07-21 00:54:59 +00:00
mozilla.mano%sent.com
8bdcf0f8e3 Bug 343585 - tab scrolling: scenario where open link in background doesn't enable the scroll buttons. r=sspitzer/mconnor. 2006-07-21 00:42:53 +00:00
pamg.bugs%gmail.com
a8c473f493 Bug 345095: FAYT doesn't search for pasted strings properly ('findfast only search for the first character if searchstring is copied...'). Patch by pkasting@google.com, r=masayuki 2006-07-21 00:11:47 +00:00
mozilla.mano%sent.com
180b5e4f61 Bug 333514 - Tab focus ring should encircle the tab label rather than the entire tab. ui-r=beltzner, r=kevin. 2006-07-20 23:12:12 +00:00
rob_strong%exchangecode.com
70e7ef801c file removals - Bug 342606 - Compatibility Wizard is broken in oh so many ways (unreachable code paths, messages not shown, etc.). r=sspizter 2006-07-20 18:51:59 +00:00
rob_strong%exchangecode.com
f6eaa90736 Bug 342606 - Compatibility Wizard is broken in oh so many ways (unreachable code paths, messages not shown, etc.). r=sspizter 2006-07-20 18:49:51 +00:00
pamg.bugs%gmail.com
434986943c Bug 344437: Crash [@ nsTypeAheadFind::GetSearchContainers]. Patch by pkasting@google.com. r=masayuki 2006-07-20 18:31:57 +00:00
mark%moxienet.com
6b2c8187e6 344187 restartMessageNoUnlocker misleading on Mac. Use an appropriate message. r=beltzner 2006-07-20 15:35:22 +00:00
myk%mozilla.org
8450f296fa tweak CSS so editable menulist text isn't cut off on Mac, making microsummaries UI (and all other editable menulists) look bad
Patch by Kevin Gerich.
bug=343896
r=mano
2006-07-20 05:42:09 +00:00
leon.sha%sun.com
199da5edf0 Bugzilla Bug 334596
[gnome] "No Grouping" "Group By" buttons are same style no matter checked or not.
Patch by leon.sha@sun.com
mconnor: review+
2006-07-20 03:09:51 +00:00
gavin%gavinsharp.com
313ad0fa87 Fix whitespace nits to sync with xpfe, r=sparky 2006-07-20 00:42:01 +00:00
gavin%gavinsharp.com
0c6df595e9 Revert accidental checkin 2006-07-19 23:55:17 +00:00
gavin%gavinsharp.com
c426bea47f Bug 344264: fix strict warning in button.xml, patch by Simon B�nzli <zeniko@gmail.com>, r=mconnor/neil 2006-07-19 23:53:55 +00:00
sspitzer%mozilla.org
44652fa575 fix for bug #343251
add "all tabs" menu to tabstrip to address usability problems with tab overflow / scrolling

r=mano
2006-07-19 21:31:34 +00:00
mark%moxienet.com
7b436b9855 345057 Improve Mac launch behavior through xpcom fork/exec restart and autoupdate restart. Open URLs and documents requested at launch time in the final process. Bring the final process to the foreground if appropriate. Minimize dock icon games. r=bsmedberg r=josh 2006-07-19 21:08:19 +00:00
rob_strong%exchangecode.com
8bbe04e7d8 Bug 333860 - When starting offline, Compatibility Wizard should not be checking for updates. patch=Dave Townsend (Mossop), r=rob_strong, ui-r=beltzner 2006-07-19 20:11:40 +00:00
gavin%gavinsharp.com
a33c51bdb1 Bug 133527: New mail notification banner at wrong place (always pops up at bottom right hand corner), patch by Jens Bannmann <jens.b@web.de>, r=biesi, r=bsmedberg, sr=neil 2006-07-19 19:47:19 +00:00
sayrer%gmail.com
3441890217 [Bug 344389] feed parser doesn't expose guid/atom:id/rdf:about correctly. r=ben 2006-07-19 19:31:52 +00:00
rob_strong%exchangecode.com
72ad8634a0 Bug 344490 - Implement silent and unattended installation for NSIS installer. r=sspitzer 2006-07-19 18:44:50 +00:00
mark%moxienet.com
475b12a24c 345206 In shared library build, places is linked as an executable (unsuccessfully). Use += instead of = in Makefile. r=bsmedberg 2006-07-19 15:27:08 +00:00
gavin%gavinsharp.com
15076987ab Bug 322169: Clear Private Data does not clear JS Console, patch by Simon B�nzli <zeniko@gmail.com>, r=mconnor, r=darin 2006-07-19 12:49:33 +00:00
martijn.martijn%gmail.com
cc3ffb45fc Bug 343165 - Make debug.js appear everywhere, patch by Dave Townsend (Mossop), r=mconnor 2006-07-19 12:06:54 +00:00
cvshook%sicking.cc
3a9a287253 Bug 344050: Kill nsITextContent and move the methods to nsIContent. r/sr=jst 2006-07-19 04:36:36 +00:00
mark%moxienet.com
59bf00c8eb 342515 [Pinstripe] Use better font and spacing in menus/menuitems. Patch and icons by Stefan <stefanh@bluebottle.com>. r=me r=mano 2006-07-19 04:03:19 +00:00
tony%ponderer.org
684b0f1794 re-land bug 342187: query params for "ask google" anti-phishing queries
are in source code.
This is triggering a leak in https since we make an https request, see
bug 345136.
r=mmchew,sr=ben
2006-07-19 01:05:52 +00:00
dietrich%mozilla.com
529a02eb94 Reverting Bug 258107 Location bar should sort based on order visited, caused problems on branch on Pacifica 2006-07-19 00:04:55 +00:00
tony%ponderer.org
1847bea293 backing out patch from bug 342187, this appears to have caused a big jump in
rlk
2006-07-18 23:47:34 +00:00
tony%ponderer.org
85b02f1f63 bug 342187: query params for "ask google" anti-phishing queries are in source code
r=mmchew,sr=ben
2006-07-18 21:28:11 +00:00
benjamin%smedbergs.us
d69b941372 Bug 321219 - separate places backend into toolkit, r=beng 2006-07-18 19:41:12 +00:00
benjamin%smedbergs.us
c6bbb1af05 Fix for bug 296040. Cell-based selection in trees
r=Neil Deakin, sr=Neil Rashbrook, sponsored by BEToptions

Original committer: Jan.Varga%gmail.com
Original revision: 1.75
Original date: 2006/06/06 20:05:09
2006-07-18 18:38:20 +00:00
benjamin%smedbergs.us
3a8b9e9f87 Bug 335270 r=ben Make subscriptions item have a favicon, fix importer icon bugs.
Original committer: brettw%gmail.com
Original revision: 1.74
Original date: 2006/04/24 18:09:34
2006-07-18 18:37:55 +00:00
benjamin%smedbergs.us
0f7a7059c6 Bug 333450 r=beng Add bookmark indices to result nodes.
Original committer: brettw%gmail.com
Original revision: 1.73
Original date: 2006/04/17 18:57:52
2006-07-18 18:37:29 +00:00
benjamin%smedbergs.us
35cb9007f8 332495 - grouping by site is not preserved when searching + various other search/sort fixes. r=annie.sullivan@gmail.com, brettw@gmail.com (history pieces)
Original committer: beng%bengoodger.com
Original revision: 1.72
Original date: 2006/04/13 22:48:46
2006-07-18 18:37:04 +00:00
benjamin%smedbergs.us
59dcb9a0c6 Bug 333754 r=annie.sullivan Comment out untested parts of the container API so we aren't stuck with it if it never gets coverage. If a need arises, we can uncomment and test.
Original committer: brettw%gmail.com
Original revision: 1.71
Original date: 2006/04/12 20:22:39
2006-07-18 18:36:39 +00:00
benjamin%smedbergs.us
cca95b50ec Freeze nsIArray (requires separating nsIMutableArray into another .idl file); also removes NS_NewArray and moves do_QueryElementAt into the glue, r=darin
Original committer: benjamin%smedbergs.us
Original revision: 1.70
Original date: 2006/04/12 15:39:37
2006-07-18 18:36:14 +00:00
benjamin%smedbergs.us
c0cfedc3ea Bug 328598 r=bryner Expire history as you browse for faster shutdown times.
Original committer: brettw%gmail.com
Original revision: 1.69
Original date: 2006/04/10 22:29:32
2006-07-18 18:35:48 +00:00
benjamin%smedbergs.us
81ff3de05b Bug 333146 r=ben@mozilla.org Make times only show in history view for the first line in a session.
Original committer: brettw%gmail.com
Original revision: 1.68
Original date: 2006/04/10 20:27:45
2006-07-18 18:35:23 +00:00
benjamin%smedbergs.us
3fa64092b1 Bug 333109 r=darin. Try to fix crash in OnItemRemoved. This is a workaround
for bug 333016 that prevents attaching multiple observers.

Original committer: brettw%gmail.com
Original revision: 1.67
Original date: 2006/04/10 17:24:14
2006-07-18 18:34:58 +00:00
benjamin%smedbergs.us
1e43fb002c 323812 - fix bogus copy-paste behavior and assorted other issues (insertion bugs, command updating) r=annie.sullivan@gmail.com
Original committer: beng%bengoodger.com
Original revision: 1.66
Original date: 2006/03/28 00:53:50
2006-07-18 18:34:33 +00:00
benjamin%smedbergs.us
99c3056a2e Bug 331154 r=annie.sullivan Make result nodes update when folder titles change.
Original committer: brettw%gmail.com
Original revision: 1.65
Original date: 2006/03/23 20:30:59
2006-07-18 18:34:08 +00:00
benjamin%smedbergs.us
f546eb0712 Fix bustage on Windows
Original committer: brettw%gmail.com
Original revision: 1.64
Original date: 2006/03/23 00:43:57
2006-07-18 18:33:42 +00:00
benjamin%smedbergs.us
89842d2725 Bug 329546 r=ben@mozilla.org, annie.sullivan Separate out view from history
result.

Original committer: brettw%gmail.com
Original revision: 1.63
Original date: 2006/03/23 00:31:48
2006-07-18 18:33:17 +00:00
benjamin%smedbergs.us
fbacd22a91 Bug 326475 r=bryner Fix signedness error in result tree update.
Original committer: brettw%gmail.com
Original revision: 1.62
Original date: 2006/03/22 22:26:22
2006-07-18 18:32:52 +00:00
benjamin%smedbergs.us
20b5563cea Bug 330524 r=annie.sullivan Bookmark folders with unusual options (not showing
everything) don't update when new subfolders are added.

Original committer: brettw%gmail.com
Original revision: 1.61
Original date: 2006/03/22 22:12:52
2006-07-18 18:32:27 +00:00
benjamin%smedbergs.us
7400aee9b9 Bug 330220 r=annie.sullivan Incorrect behavior when resorting after insertion.
Causes items not to resort, occasional crashes.

Original committer: brettw%gmail.com
Original revision: 1.60
Original date: 2006/03/13 19:13:31
2006-07-18 18:32:01 +00:00
benjamin%smedbergs.us
1c71f3cc3a Bug 329854 r=joe.hughes Add a excludeReadOnlyFolders to query options for
use when filing.

Original committer: brettw%gmail.com
Original revision: 1.59
Original date: 2006/03/10 19:44:28
2006-07-18 18:31:36 +00:00