Граф коммитов

4185 Коммитов

Автор SHA1 Сообщение Дата
benjamin%smedbergs.us 42cf5f6416 Bug 345047 - Universal build fixup for XULRunner, r=mento 2006-08-18 20:34:56 +00:00
pkasting%google.com 74c1c06db2 Bug 348298: Clean up Find Bar code, patch 1.
r=masayuki
2006-08-18 20:26:23 +00:00
benjamin%smedbergs.us 4e42b722ed Bug 349025 - Extensions don't start up, r=obvious stupidity 2006-08-18 13:23:03 +00:00
mozilla.mano%sent.com 6968efdf3c 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 4ec77d168a 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 a7de9ac417 Bug 340555. Toolkit Feed API addtions. Relanding -- not the cause of a regression. 2006-08-17 23:07:40 +00:00
myk%mozilla.org 49b2d26fa4 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 fb83681679 Bug 348618, add attribute to hide spinbuttons of numberbox, r=neil 2006-08-17 16:25:09 +00:00
sspitzer%mozilla.org 0b1b924fc9 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 04dbbcf5c6 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 6488b36a2c 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 8fb1933bd1 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 5ac3dc5aec 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 8de69b80e5 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 9feba37137 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 666a35c634 fix second typo from beltzner's patch for bug 346795 2006-08-16 20:05:40 +00:00
gavin%gavinsharp.com 7ff82d60b4 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 0457b59b75 Fix typo from patch for bug 346795, patch by beltzner 2006-08-16 16:27:03 +00:00
sayrer%gmail.com ed4b58d348 backout 340555. botched checkin 2006-08-16 14:59:19 +00:00
aaronleventhal%moonset.net 5e3f831dea Bug 347423. Addons: No updates found message not accessible. r=mano, r=pilgrim 2006-08-16 13:21:26 +00:00
sayrer%gmail.com 0ec7282d8d First part of bug 340555, Toolkit feed parser needs nicer API. r=vlad 2006-08-16 05:36:46 +00:00
jminta%gmail.com c4e0a524a9 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 7a961b67b1 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 e9242e8802 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 3d9c1a4665 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 c5e01e889f Bug 348643. nsContentUtils / nsScriptableUnescapeHTML -- nsCRT::free considered harmful. r=timeless, sr=bz 2006-08-14 22:08:14 +00:00
timeless%mozdev.org 109888ebc5 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 f137556733 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 b15e7c9a36 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 1a0ae226bf 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 d784022004 Bug 343884 Column order was reset on restart r=enn sr=jag 2006-08-14 10:28:15 +00:00
enndeakin%sympatico.ca ffe34418f2 Bug 345510, add XUL numberbox, r=neil,mano,sr=neil 2006-08-14 02:44:00 +00:00
tony%ponderer.org 53e597ef6c 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 29262c047e Bug 348343 - Selected addon description no longer wraps. r=rob_strong 2006-08-12 20:38:05 +00:00
mozilla.mano%sent.com a4df6f1855 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 e5971ca56d 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 3fc1ef4e9c 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 32c410b9dd 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 28fb749d92 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 98be0b41ed 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 649106f8ab Bug 347977: allow locales to set the page direction of about:. r=mano 2006-08-11 20:05:38 +00:00
sspitzer%mozilla.org e9e7973228 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 2c9c4d4543 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 8f8714a755 Bug 348231 - Add-ons displays empty pane. patch=mossop, r=rob_strong 2006-08-10 21:51:49 +00:00
tony%ponderer.org 74d25178a0 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 a6cf1f305a "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 7a2780c377 Bug 348063: More case sensitivity problems with Find Bar.
r=masayuki
2006-08-10 19:16:01 +00:00
benjamin%smedbergs.us 5a0bfad337 Backout bug 345517 due to various issues. 2006-08-10 14:06:47 +00:00
gavin%gavinsharp.com b6da63c450 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 3dd8465f81 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 1aa947c723 Bug 345517 - Build Firefox --enable-libxul by default, r=darin/mento 2006-08-09 13:39:19 +00:00
aaronleventhal%moonset.net 4600d4d013 bug 347913. Notification accessibility regression. r=pilgrim, r=mconnor 2006-08-08 20:16:49 +00:00
gavin%gavinsharp.com 569c1533ff Fix typo from patch for bug 346356. 2006-08-08 19:25:51 +00:00
benjamin%smedbergs.us bece0ea443 Bug 347183 - frozen-linkage access to null/singleton/union/array enumerators, r=darin 2006-08-08 18:18:50 +00:00
bryner%brianryner.com 14025db936 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 0f8886e687 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 e305ad4abb 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 3094605e8d 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 a661b02369 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 1b61d7b2c6 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 61b157b3f3 Bug 251625: fix comment, patch by Serge Gautherie <gautheri@noos.fr>, r=mconnor 2006-08-07 23:03:48 +00:00
gavin%gavinsharp.com 67da7d7f5e 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 49f03451a9 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 ff490d1f2e [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 bb0e66ffa2 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 484bf2272e Bug 328678 - XULRunner should include about:plugins, r=neil@p 2006-08-07 16:06:03 +00:00
rob_strong%exchangecode.com c99142dad9 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 203d68d746 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 fbeb520991 Make 'file' in unknown content dialog localizable. Bug 340038, r=mano 2006-08-06 08:29:29 +00:00
db48x%yahoo.com 9f064d92f3 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 d46aa88612 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 fb3665fa15 Filepicker needs accesskey for dirTextInputLabel. b=250177 r+sr=neil 2006-08-06 03:11:09 +00:00
tony%ponderer.org 310609e570 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 627342af95 Bug 347140 - blocklisting broken sometime after implementation. r=bsmedberg 2006-08-04 19:21:32 +00:00
pkasting%google.com c215a2aa56 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 cc95a546db 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 f943722885 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 78f617098f Bug 345065. legacy rss support. r=ben 2006-08-04 16:14:07 +00:00
gavin%gavinsharp.com 695c8ef3a9 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 145d275b3f 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 c5ed595e00 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 895419961a 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 f0b48d78cf 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 349c92a428 Bug 346623 - Add overflow attribute to tabbrowser-tabs. r=mconnor. 2006-08-02 17:20:13 +00:00
mattwillis%gmail.com 842b348056 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 4f4bc820b3 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 65e24569fc 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 658bffb6ce 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 2b2df42abb 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 04d4fba1ba 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 553b503658 46177 Show icons in native Mac menu items. r=josh sr=bryner 2006-08-01 00:13:24 +00:00
rob_strong%exchangecode.com 5b551b5e96 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 eb803ebd61 Bug 346180: fix remaining l12y issues with about:. r=axel, beltzner 2006-07-31 21:02:27 +00:00
benjamin%smedbergs.us 93264ff328 Bug 339106 - integrate spellcheck into libxul, r=mento 2006-07-31 18:11:38 +00:00
brettw%gmail.com 78540a1f2a 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 6ea818f00b 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 4ef4d36b65 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 5411896814 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 598ff5205d 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 48d836c35d Bug 339127: Add "spellcheck" attribute to control spellchecking.
r=brettw
sr=sicking
2006-07-29 00:04:40 +00:00
joshmoz%gmail.com 1c5aaa5fbc 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 1a91121005 Back out bug 328357 to see whether that fixes tinderbox orange. 2006-07-28 17:39:59 +00:00
brettw%gmail.com 5c03fc0470 Bug 336799 r+sr=bryner Remove spellcheck UI from XUL textboxes 2006-07-28 17:36:00 +00:00
sayrer%gmail.com 1845935b0a 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 469826ed45 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 c50d424807 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 f74c0f26fb 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 3c296c7ac4 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 eee6e110a3 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 3058c538cb bug 343574, support blocking notification, r=mconnor 2006-07-27 15:54:28 +00:00
cbiesinger%web.de 9c5318ec75 (part of) bug 333640 link to all required libraries
r=bsmedberg
2006-07-27 14:42:27 +00:00
benjamin%smedbergs.us 26af94fede Bug 332045 - toolkit/components/gnome should use the glue, r=darin 2006-07-27 14:42:26 +00:00
bsmedberg%covad.net 81bc7f4a12 Adding MOZILLA_INTERNAL_API to internal makefiles, bug 288626, rs=darin 2006-07-27 14:42:25 +00:00
bryner%brianryner.com 8391a7f472 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 5b4e101385 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 336059c707 Bug 345353 - Compatibility Wizard string changes. r=sspitzer, ui-r=beltzner 2006-07-26 22:59:56 +00:00
gavin%gavinsharp.com 806720f7ae 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 749856758e 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 7aec3da167 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 36bd7b1b9c 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 e7eb07b652 b=334174, corrupted db files are not handled correctly, r=brettw 2006-07-26 18:54:12 +00:00
gavin%gavinsharp.com 756745ac40 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 0e33240232 Bug 343587 - Make mousedown-to-scroll faster (150ms delay), r=beltzner. 2006-07-26 18:17:29 +00:00
rob_strong%exchangecode.com ba2fad6ed1 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 00cca42af3 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 13275df82a 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 d74ca771ce Bug 345899 - Protect against XMLHttpRequest statusText not being available. r=sspitzer 2006-07-25 21:09:22 +00:00
rob_strong%exchangecode.com 43e78fbf93 Bug 345901 - Remove mismatch.js and mismatch.xul. r=sspitzer 2006-07-25 21:07:32 +00:00
mozilla.mano%sent.com a17699fbcd Backing out bug 345257 due to the crash reported in 345659. 2006-07-25 19:57:58 +00:00
tony%ponderer.org bce5349e2d 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 93a97618f0 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 1da720312d Add ID attribute for Page Setup dialog. b=345749 r+sr=neil 2006-07-25 15:50:47 +00:00
sspitzer%mozilla.org 06d8354857 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 9ad1b722bc 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 5ee0da7097 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 2c99f02394 Revert accidental checkin 2006-07-24 23:03:24 +00:00
gavin%gavinsharp.com b9772ef39c 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 8cf5c3b9a2 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 dc0e827f3e 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 b5ad52b8c5 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 39b152e724 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 9d9155cddf 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 b42ba653fc 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 f3af60632d 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 60f808547f 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 c7455ed870 removing one line of commented out code - no bug - r=me 2006-07-21 22:18:07 +00:00
rob_strong%exchangecode.com eed7cad1fa 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 dda6d64c19 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 51ebe44b58 [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 d5c5d82dd1 Bug 344991. Change accessors to return nsIFeedTextConstructs. This and previous checkin r=ben. 2006-07-21 19:07:52 +00:00