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

4137 Коммитов

Автор SHA1 Сообщение Дата
dietrich%mozilla.com d232b49fa0 Bug 348076 remove generated URLs from region.properties (r=phil, sr=mconnor) 2006-08-19 02:00:52 +00:00
dietrich%mozilla.com 22f22fcb1a Bug 347944 Fix firefox products URLs to point to ...mozilla.com/ab-CD (r=neil@httl.net) 2006-08-19 00:23:43 +00:00
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