Commit Graph

5563 Commits

Author SHA1 Message Date
ajschult%verizon.net
647ce12e08 Bug 351267: Scroll position re-used in autocomplete dropdown. r+sr=Neil 2006-09-04 13:12:05 +00:00
timeless%mozdev.org
6d112f0859 Bug 106386 Correct misspellings in source code
r=bernd rs=brendan
2006-08-28 20:17:01 +00:00
enndeakin%sympatico.ca
fb4a38ba0c Bug 348614, better theming for dropmarker, r=neil,mano
CVS: ----------------------------------------------------------------------
2006-08-28 15:56:47 +00:00
neil%parkwaycc.co.uk
a65dc1281f Re-enable internet keyword search in the openLocation dialog too and also give it a long-overdue overhaul b=332668 r=ajschult sr=jag 2006-08-23 09:16:28 +00:00
ajschult%verizon.net
6045670115 Bug 343602: profile-startup-category notifications don't happen if profile is specified. r=biesi, sr=Neil. Also update update notifications to ignore notifications when switching profiles. r+sr=Neil. 2006-08-19 01:16:20 +00:00
dveditz%cruzio.com
a61d6db035 bug 342205 (SeaMonkey version of 268370) prevent leaks of install-dir from nsSidebar exceptions.
Firefox patch by gavin, r=mconnor, a=kairo and iann
2006-08-17 21:29:59 +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
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
bugzilla%standard8.demon.co.uk
5677fc542d Bug 348381 Tidy up browser-prefs.js and console ifdefs. r=Benjamin,sr=Neil 2006-08-14 18:01:27 +00:00
cst%yecc.com
fa6fb7c8e3 Bug 255124 Keep favicon in URL bar from getting distorted when using larger fonts
r+sr=neil
2006-08-13 20:57:38 +00:00
benjamin%smedbergs.us
e0918f935d Seamonkey-only bustage from bug 347183 - I'm currently building a tree with this, but it should be right 2006-08-08 19:05:50 +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
mats.palmgren%bredband.net
16d685538f Filepicker needs accesskey for dirTextInputLabel. b=250177 r+sr=neil 2006-08-06 03:11:09 +00:00
ajschult%verizon.net
063d8eed65 Spelling fixup for bug 311098 from stephend plus sane punctuation. r=biesi 2006-08-06 01:46:21 +00:00
ajschult%verizon.net
cebd733cbf Bug 311098: Remove .part files when cancelling downloads, ported from toolkit. r=biesi 2006-08-05 23:57:31 +00:00
ajschult%verizon.net
61a2349f72 Bug 347160: SeaMonkey crashes, when submitting request in google.de. r=timeless 2006-08-05 23:44:24 +00:00
neil%parkwaycc.co.uk
598b590a06 Bug 50504 Context menu for bookmarks in main menu and personal toolbar submenus p=paradigmk@technodrome.com r+sr=me 2006-08-05 23:18:10 +00:00
kairo%kairo.at
43a919393e cvs remove files that are unused now, due to the checkin for bug 334877, this had r+sr=Neil 2006-07-29 15:28:30 +00:00
kairo%kairo.at
a9f5b30bb0 revert temporary bustage fix for bug 334877 again, now that the missing files have been copied 2006-07-29 13:04:52 +00:00
timeless%mozdev.org
71d515cf8e Bug 346150 Fix setting an image as wallpaper in Cairo builds
patch by bugzilla@mcsmurf.de r=jag sr=jag
2006-07-28 09:02:29 +00:00
kairo%kairo.at
99be04e2ee more bustage fixing for bug 334877 - temporary revert back two other files to xpfe versions 2006-07-27 19:34:39 +00:00
kairo%kairo.at
d78104afe1 bustage fix for bug 334877 - temporary revert back to using the xpfe history.xul until we can figure out why the cvs copy didn't work 2006-07-27 19:04:26 +00:00
kairo%kairo.at
cb5ce7b5ea bug 334877 - move non-prefwindow xpfe/components chrome to suite/, r+sr=Neil 2006-07-27 18:19:38 +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
martijn.martijn%gmail.com
324c3de054 xpfe part of Bug 306223 - Allow to easily filter errors by category, patch by Serge Gautherie, r+sr=neil 2006-07-24 06:55:58 +00:00
gavin%gavinsharp.com
f283ebc560 Bug 289927: JS Console shouldn't show line number if line is 0, xpfe patch by Serge GAUTHERIE <gautheri@noos.fr>, r=neil 2006-07-20 00:39:04 +00:00
gavin%gavinsharp.com
d934a4a201 Bug 287392: paste in Bookmark Manager is very slow (O(n^2)), patch by Jan Darmochwal <jdarmochwal@gmx.de>, r+sr=neil 2006-07-18 16:32:56 +00:00
neil%parkwaycc.co.uk
8f0adbb67e Bug 326462 Time Elapsed column shows NaN:NaN r=biesi sr=jag 2006-07-18 09:50:43 +00:00
mnyromyr%tprac.de
a561f2dcd2 Bug 115924: removal of communicatorOverlay.xul; p=Giacomo Magnini <giacomo.magnini@portalis.it>, r=neil, sr=mscott 2006-07-09 12:49:47 +00:00
ajschult%verizon.net
740d47f8c4 Bug 334903: Seamonkey update page appears in window with no navigation or tabs. r+sr=Neil 2006-07-04 14:41:54 +00:00
timeless%mozdev.org
27eaab5dcd Bug 337917 Make consumers stop using cids from other modules 2006-06-18 21:18:22 +00:00
benjamin%smedbergs.us
53ac0b7a23 Bug 341406 - Build bookmarks as a separate component, r+sr=Neil 2006-06-15 13:35:59 +00:00
cbiesinger%web.de
1ed0be95fd bug 341006 Close registry keys that are opened, and don't check rc twice
r+sr=neil
2006-06-10 14:17:23 +00:00
Jan.Varga%gmail.com
e5158d88ef Fix for bug 296040. Cell-based selection in trees
r=Neil Deakin, sr=Neil Rashbrook, sponsored by BEToptions
2006-06-06 20:05:13 +00:00
timeless%mozdev.org
4af059b87e Bug 337917 Make consumers stop using cids from other modules
r=bienvenu sr=neil
2006-06-03 23:40:27 +00:00
timeless%mozdev.org
c6b7d48a4d Bug 337917 Make consumers stop using cids from other modules
r=dveditz sr=darin
2006-06-03 23:38:55 +00:00
timeless%mozdev.org
a768026fc9 Bug 337917 Make consumers stop using cids from other modules
r=smontagu sr=darin
2006-06-03 23:35:59 +00:00
neil%parkwaycc.co.uk
4af915f414 Fix xpfe winhooks static string abuse b=339810 r=CTho sr=jag 2006-06-03 09:48:08 +00:00
bugzilla%standard8.demon.co.uk
0cc5baca01 Fix Camino bustage from Bug 338880 2006-05-31 18:00:40 +00:00
bugzilla%standard8.demon.co.uk
22c63b8fb6 Bug 338880 SuiteRunner doesn't compile with --enable-debug (don't build appleevents and lots of tidy up). r=benjamin,sr=neil 2006-05-31 16:07:17 +00:00
gavin%gavinsharp.com
b581167b49 Bug 265871: rename JavaScript console to Error console, patch by Kurt <supernova_00@yahoo.com>, r=mconnor, ui-r=beltzner, sr=neil/bzbarsky 2006-05-25 21:22:32 +00:00
jag%tty.nl
5d38d21178 Bug 338803: Personal Toolbar overflow chevron not properly updated on resize. r=CTho, sr=Neil. 2006-05-22 14:09:56 +00:00
kairo%kairo.at
5add892b01 bug 333383 - move SeaMonkey pref window UI to suite/ - cvs remove old filesin xpfe/, r+sr=Neil 2006-05-17 19:38:42 +00:00
kairo%kairo.at
887b260269 bug 333383 - move SeaMonkey pref window UI to suite/, r+sr=Neil 2006-05-17 15:46:04 +00:00
neil%parkwaycc.co.uk
90ce6b6cde Fix dragging to personal toolbar between last visible bookmark and overflow chevron b=201854 p=gautheri@noos.fr r+sr=me 2006-05-17 09:16:16 +00:00
gavin%gavinsharp.com
490c5c03ab Bug 337962: fix nsBookmarksService's QI to include nsICharsetResolver, r=neil, sr=bzbarsky 2006-05-15 17:28:40 +00:00
martijn.martijn%gmail.com
c459374494 Remove network.image.warnAboutImages preference, r+sr=neil 2006-05-15 16:53:10 +00:00
bugzilla%standard8.demon.co.uk
a2067ddd4c Bug 232795 In <bookmarksMenu.js>, "Error: aDragSession.sourceNode has no properties" (Av2b-XPFE) <bookmarksMenu.js> p=Serge GAUTHERIE <gautheri@noos.fr>,r=neil,sr=jag 2006-05-14 09:56:46 +00:00
mnyromyr%tprac.de
e3fd37e4e7 Follow-up to bug 57510: remove erroneous <keyset>; r/sr=jag 2006-05-12 19:43:01 +00:00
kairo%kairo.at
0525eb1934 bug 336874 - Make suiterunner use the same toolkit.jar as XULRunner, step 1: move files to non-xul-app sections that are overridden by toolkit (also fix suiterunner bustage), r=Neil sr=bsmedberg 2006-05-12 10:34:13 +00:00
mnyromyr%tprac.de
314fa97a97 Bug 57510: `Del' key does not delete on Mac; r=db48x, sr=jag 2006-05-11 19:55:44 +00:00
darin%meer.net
0318b8c707 landing patch for bug 326273 "Implement nsIThreadManager" (Mac portions by Mark Mentovai) with reviews from bienvenu, bsmedberg, bzbarsky, josh, roc, and ssieb 2006-05-10 17:30:15 +00:00
timeless%mozdev.org
28fa63a8f5 Bug 335953 Make code outside intl use NS_CHARSETALIAS_CONTRACTID instead of NS_CHARSETALIAS_CID
r=bz sr=bz
2006-05-06 22:09:20 +00:00
cbiesinger%web.de
51a89a8b1e bug 335180 Remove win32.order, mozilla-bin.order, --enable-reorder, and
associated code. These options do not really work anymore.

r=bsmedberg
2006-05-06 17:53:51 +00:00
benjamin%smedbergs.us
703f94d5f7 Bug 335248 - move the XUL filepicker C++ goop into libxul, r=darin 2006-05-04 23:17:47 +00:00
benjamin%smedbergs.us
ae7a851b73 Bug 335807 - Make xpfe/components/intl its own component, r=neil (this gets rid of xpfe/components/build2 for tbird, yay!) 2006-05-02 16:47:32 +00:00
benjamin%smedbergs.us
1c04b21107 Fix #includes, bug 335714 2006-04-28 13:43:19 +00:00
benjamin%smedbergs.us
2ed8035970 Bug 335714 - make windowds a standalone component, r=Neil 2006-04-28 13:19:36 +00:00
ajschult%verizon.net
d3587977f8 Bug 238083: SeaMonkey silently dies on 'Switch Profile...', if all 'general.startup.*' prefs disabled. r=Neil 2006-04-23 16:28:23 +00:00
kairo%kairo.at
871395ee15 bug 334478 - Get suiterunner to actually run - use toolkit console, remove some old xpfe files, r+sr=Neil 2006-04-23 10:52:47 +00:00
kairo%kairo.at
0d917873d6 bug 332400 - Correct misuse of ifdefs in the source tree - fix xpfe/components/jar.mn, r+sr=Neil 2006-04-20 16:01:45 +00:00
ajschult%verizon.net
392ceea3d4 Bug 333681: Switching profiles opens chatzilla. r/sr=neil 2006-04-16 22:29:36 +00:00
gavin%gavinsharp.com
6e11e36821 Bug 333313: oom mlk in InternetSearchDataSource::BeginSearchRequest, patch by Phil Ringnalda <philringnalda@gmail.com>, r=timeless, sr=jag 2006-04-14 19:25:05 +00:00
bugzilla%standard8.demon.co.uk
03e756f558 Bug 330053 Make SeaMonkey capable of generating a reasonable build with MOZ_XUL_APP set. Part 5 - First stab at sorting out inclusion of modules in xpfe and toolkit. r=benjamin,sr=Neil 2006-04-14 07:04:53 +00:00
neil%parkwaycc.co.uk
100b4af49b Bug 313331 autocomplete file names in xul filepicker r=bz sr=jag 2006-04-12 23:00:52 +00:00
gavin%gavinsharp.com
f1a172c843 Bug 333312: fix potential crash [@ JS_GetGlobalObject - nsHTTPIndex::OnFTPControlLog] (found by coverity), r=timeless, sr=jag 2006-04-12 18:32:12 +00:00
benjamin%smedbergs.us
70a0f2207b Freeze nsIArray (requires separating nsIMutableArray into another .idl file); also removes NS_NewArray and moves do_QueryElementAt into the glue, r=darin 2006-04-12 15:43:32 +00:00
bugzilla%standard8.demon.co.uk
9db49ec7d8 Bug 333169 Enable nsBookmarksService to open a window when not using xpfe's commandline service. r/sr=Neil 2006-04-11 16:59:06 +00:00
mattwillis%gmail.com
95ada99a79 fix xremote regression 2006-04-10 23:25:19 +00:00
mattwillis%gmail.com
e6ba4ba673 fix build bustage 2006-04-10 22:49:12 +00:00
mattwillis%gmail.com
daf1edcc85 bug 332717: Rework and simplify Makefile. r=dmose,sr=bsmedberg 2006-04-10 21:31:10 +00:00
jag%tty.nl
3058818625 Bug 333308: make clean and make distclean miss various files. r+sr=Neil 2006-04-10 11:38:10 +00:00
gavin%gavinsharp.com
6670dd2a7d Bug 310900: Avoid 1-pixel gap caused by sizeToContent() in alerts service code, patch by Jens Bannmann <jens.b@web.de>, r=mscott for toolkit part, r+sr=neil for xpfe 2006-04-09 21:16:20 +00:00
kairo%kairo.at
6aea674984 bug 328317 - merge platform .jar files into en-US.jar, r=mento for the mozilla/config changes r=jag sr=Neil 2006-04-08 11:49:47 +00:00
kairo%kairo.at
91acb7039c bug 325473 - Undo separation of language and region/content packs, part 4: move pref panel into communictor pefs in suite/, correct installer manifests and fix rough edges of parts 1-3, r=bsmedberg for build system changes (removal of content-packs extension) r=ajschult for installer manifests r=jag sr=Neil 2006-04-08 11:17:06 +00:00
benjamin%smedbergs.us
d8395afe0b Bug 78081 - don't export intermediate libraries - initial makefile changes to switch from $(DIST)/lib to in-tree library locations - blanket-r=mento 2006-04-05 16:10:05 +00:00
dbaron%dbaron.org
04b8c33eda Remove uses of MOZ_DECL_CTOR_COUNTER, which is always defined to nothing. b=332745 rs=roc,bzbarsky 2006-04-05 00:00:44 +00:00
neil%parkwaycc.co.uk
7ff5bb087c Kill shortcut for dangerous operation b=209355 p=gautheri@noos.fr r+sr=me 2006-04-04 21:00:55 +00:00
bugzilla%standard8.demon.co.uk
50f1d773bf Follow up to Bug 239136, remove redundant ifdefs now that Thunderbird is using the toolkit download manager. r=benjamin,sr=mscott 2006-04-04 16:21:50 +00:00
neil%parkwaycc.co.uk
01a74f1cbe Make the XUL directory viewer work with jar: directories b=309296 r+sr=jag 2006-03-30 21:06:48 +00:00
darin%meer.net
20837f71e1 fixes bug 328925 "Replace NS_WARN_IF_FALSE with NS_ASSERTION (where appropriate)" r=dbaron 2006-03-30 18:40:56 +00:00
darin%meer.net
1b73e64f90 fixes bug 287646 "Eliminate nsPIProtocolProxyService and introduce reloadPAC method" r=biesi,neil,beng,mscott sr=bzbarsky 2006-03-30 17:31:15 +00:00
gerv%gerv.net
af20ee45fb Bug 331921 - Fix up some corrupt/dodgy Initial Developer lines. 2006-03-30 07:57:05 +00:00
bugzilla%standard8.demon.co.uk
96368d4a59 Bug 264675 Make sure we respect locked prefs throughout UI. (Bv2) <pref-smart_browsing-ac.xul>. Patch by Serge GAUTHERIE <gautheri@noos.fr>, r=iann_bugzilla 2006-03-26 12:34:06 +00:00
Olli.Pettay%helsinki.fi
ee372ff167 Bug 330710, Replace obsolete preventBubble/preventCapture with stopPropagation, r=neil, r=mconnor, sr=jst 2006-03-25 22:03:49 +00:00
neil%parkwaycc.co.uk
9e72198ae3 Rename xpfe's autocomplete.xpt to xpautocomplete.xpt and package toolkit's autocomplete.xpt r=bsmedberg,dveditz,ajschult 2006-03-24 17:38:15 +00:00
benjamin%smedbergs.us
094c06b97d Bug 326491 - leaked observer service leaks things on shutdown - r=darin 2006-03-21 14:43:56 +00:00
gavin%gavinsharp.com
5228b3a14b Bug 317107: potential Ts fix #1, r=mconnor 2006-03-17 19:58:41 +00:00
neil%parkwaycc.co.uk
600aa158b7 Bug 330360 switching from preventBubble to stopPropagation r=smaug sr=bienvenu 2006-03-16 16:21:00 +00:00
bugzilla%arlen.demon.co.uk
14b948c1b7 Bug 270170 XPInstall Permission Manager UI - fix for localiser issue
p=me r=neil sr=jag
2006-03-14 22:47:49 +00:00
darin%meer.net
160c228151 backing out bsmedberg's patch for bug 326491 to fix bug 329505. 2006-03-09 03:14:32 +00:00
bugzilla%arlen.demon.co.uk
56af1dd11e Bug 270170 XPInstall Permission Manager UI - patch for help
p=me r=stefanh
2006-03-05 22:27:35 +00:00
benjamin%smedbergs.us
ac2cdadfb2 Bug 326491 - cleanup observers on shutdown even if the observer service is leaked, r=darin 2006-03-04 14:04:05 +00:00
bugzilla%arlen.demon.co.uk
d31df1a4c1 Bug 270170 XPInstall Permission Manager UI
p=me r=db48x sr=jag
2006-03-04 13:29:46 +00:00
neil%parkwaycc.co.uk
a2ff0a883d Fix abuse of embedded HTML in XUL that was causing an assert b=222220 r+sr=jag 2006-03-04 00:16:49 +00:00
bzbarsky%mit.edu
24944d8a8c Revert nsIGlobalHistory2 to what it was on the 1.8 branch. Move the new stuff
to nsIGlobalHistory3.  Bug 328928, r=brettw and smfr, sr=darin
2006-03-03 03:34:48 +00:00
neil%parkwaycc.co.uk
d3037a8f1b Bug 328932 Make JS Console evaluate with chrome principal again r=bz sr=jag 2006-03-02 23:55:57 +00:00
benjamin%smedbergs.us
0046c6e798 Bug 78081 - don't export intermediate libraries - initial makefile changes to switch from $(DIST)/lib to in-tree library locations - blanket-r=mento 2006-02-28 21:09:42 +00:00
dbaron%dbaron.org
16a416d9fa Remove user interface for DPI preference. b=326329 r=neil sr=jag 2006-02-26 10:43:33 +00:00
darin%meer.net
a538d4ae61 fixing build bustage that results when places is enabled. patch by sullivan@gmail.com, r=darin 2006-02-25 00:26:39 +00:00
neil%parkwaycc.co.uk
5417075f05 Bug 245725 Make downloads display an approximation to the current transfer rate rather than the overall average speed p=son.le0@gmail.com r=biesi sr=me 2006-02-06 00:34:30 +00:00
ajschult%verizon.net
f3d5609139 Bug 252802: Stop manual searches from popping open the sidebar. r=jag, sr=neil 2006-02-05 16:30:47 +00:00
ajschult%verizon.net
9a41e832ee Bug 322106: Subframe and redirected URLs stay "hidden" permanently in history. r=cbiesinger, sr=neil 2006-02-05 16:13:49 +00:00
cbiesinger%web.de
c2d981f764 bug 183156 remove *UCS2* functions, replacing them with *UTF16* ones
r+sr=darin
2006-02-03 14:18:39 +00:00
scott%scott-macgregor.org
2ebd85fd9e Bug #239136 --> Thunderbird needs to integrate with the new download manager in toolkit
Stop building the old one for thunderbird in xpfe\components.

sr=bsmedberg
2006-01-31 22:03:15 +00:00
bugzilla%standard8.demon.co.uk
b59a41efad Follow-up to moving ldap autocomplete code to mailnews/addrbook - remove some ifdefs and defines that are no longer required. Bug 263042. r=bsmedberg. 2006-01-31 18:05:12 +00:00
ajschult%verizon.net
49bf1c8c23 Perform autocomplete search even if cursor is not at the end rather than leave stale entries. bug 208871, r=jag, sr=Neil. 2006-01-28 01:20:34 +00:00
kairo%kairo.at
10b3935a75 bug 65480 - prefs advanced description wording, p=<giacomo.magnini@portalis.it> r=IanN 2006-01-26 17:29:27 +00:00
gavin%gavinsharp.com
d6716d939a Bug 267034: Improve nsIAlertsService documentation, patch by Nickolay Ponomarev <asqueella@gmail.com>, r=mscott, sr=neil 2006-01-26 01:04:01 +00:00
ajschult%verizon.net
c0490856ca Synchronize xpfe autocomplete handlers with toolkit. bug 255731, r=Neil, sr=mscott 2006-01-25 03:46:53 +00:00
mnyromyr%tprac.de
244ae7bf31 Bug 318889: broken multisearch; r=bsmedberg, sr=jag 2006-01-21 11:54:03 +00:00
bzbarsky%mit.edu
40e64caf88 Fix leaks due to nsISupportsArray misuse. Bug 323377, patch by Martijn Wargers
<martijn.martijn@gmail.com>, r=pike, sr=bzbarsky
2006-01-15 18:49:09 +00:00
bsmedberg%covad.net
6ad3ebc93b Bug 243214 - Cleanup of nsInternetSearchService, r=pike sr=alecf 2006-01-09 21:11:04 +00:00
gavin%gavinsharp.com
cf69500949 Oops, wrong line endings (bug 315346) 2006-01-08 23:51:50 +00:00
gavin%gavinsharp.com
8c134a89e3 Tbird bustage fix (bug 315346) 2006-01-08 23:46:30 +00:00
gavin%gavinsharp.com
517a317e2b Bug 315346 followup: remove old nsISidebars, r=bsmedberg, sr=roc 2006-01-08 23:03:45 +00:00
bugzilla%standard8.demon.co.uk
aeed86925c Bug 237592 Bookmarks should always show tooltip when hovering with mouse (xpfe version - Bv6a-SM). Patch by Serge GAUTHERIE <gautheri@noos.fr>, r/sr=neil.parkwaycc.co.uk 2006-01-08 19:45:04 +00:00
bugzilla%arlen.demon.co.uk
409f5623a2 Bug 319659 XPFE code assumes document.firstChild is the root element
p=me r=neil.parkwaycc.co.uk sr=jag
2006-01-06 20:38:21 +00:00
ajschult%verizon.net
eec0e5a3b5 Bustage fix (assertion failure) for bug 319004, handle empty title 2006-01-06 03:25:11 +00:00
ajschult%verizon.net
bcad4cd6ab Title chopping from bug 319004 might split a BMP character in the middle. r=smontagu, sr=darin. bug 322167 2006-01-05 04:00:13 +00:00
jag%tty.nl
73f6674801 Bug 313715: "Open in New Tab" from Bookmark Manager doesn't respect background pref
Stop caching the result of shouldLoadTabInBackground(), there's no point since we need to look at the state of the shift key every time, and we didn't update it in all code paths to begin with.
Pass in |event| from more places in history and bookmarks so we'll actually look at te shift key.
Replace use of "tab_background" with looking at shouldLoadTabInBackground().
r=IanN, sr=Neil
2006-01-04 17:29:38 +00:00
ajschult%verizon.net
d6607afa94 Clamp length of document title and exclude long URIs from history to avoid DOS attacks, r=vlad, sr=darin. bug 319004 2006-01-03 02:00:44 +00:00
ajschult%verizon.net
f224e511d4 Use default of 1 for minResultsForPopup so popup closes when there are no results, r/sr=Neil, bug 320907 2006-01-03 01:35:52 +00:00
cbiesinger%web.de
69d3197068 310409 fix quicklaunch
patch by Frank Wein <bugzilla@mcsmurf.de> r=neil sr=bz
2005-12-27 18:11:33 +00:00
cbiesinger%web.de
72ac26b6ce Bug 321504 Remove unneeded uses of nsIDocumentLoader
r+sr=bz
2005-12-26 16:45:59 +00:00
neil%parkwaycc.co.uk
dd54ba56c6 Bug 244900 autocomplete requires mousemove before click r=IanN sr=jag 2005-12-23 11:08:36 +00:00
timeless%mozdev.org
179bfbf962 Bug 318866 Selecting "Sort Folder..." from context menu in Bookmark Manager results in XML Parsing Error: undefined entity (sortFolder.xul)
patch by supernova_00@yahoo.com r=neil sr=jag
2005-12-22 17:40:33 +00:00
cbiesinger%web.de
c6e491a9d3 bug 273971 patch by Son Le <son.le0@gmail.com> r=biesi sr=neil
- make nsIDownload::currBytes and maxBytes use bytes rather than kilobytes
- make transfers of unknown size use the right size
  - send mProgress rather than mContentLength as the current progress in OnStateChange
2005-12-19 15:25:22 +00:00
ajschult%verizon.net
3c8dc4f469 Never show the autocomplete popup unless there are results or search is enabled. bug 124674, r=jag, sr=neil 2005-12-18 21:04:05 +00:00
ajschult%verizon.net
64d4846f64 fix maxRows comment, patch by dean_tessman@hotmail.com, r/sr=neil 2005-12-14 05:36:20 +00:00
bugzilla%standard8.demon.co.uk
7407717313 Bug 316584 Improve wording in tab key navigation prefs/help. Patch by Giacomo Magnini <giacomo.magnini@portalis.it>. r=iann_bugzilla,sr=neil.parkwaycc.co.uk 2005-12-13 19:22:35 +00:00
cst%andrew.cmu.edu
12d92c6f9e Bustage fix - one too many ")" 2005-12-11 19:06:06 +00:00
cst%andrew.cmu.edu
ed0e57055e Bug 233229 Location Bar uses http when auto-completing https URLs
Patch by ajschult, r+sr=neil
2005-12-11 18:22:01 +00:00
timeless%mozdev.org
6f357ea298 Bug 172785 [BeOS] Allow Launch/Reveal and ShowLocation in Tracker
patch by sergei_d@fi.tartu.ee r=tqh sr=neil
2005-12-11 05:37:42 +00:00
roc+%cs.cmu.edu
5e35db1f1b Bug 315346. nsISidebar should be in dom/ since it's a platform thing that we expose as part of the Web API, it's not app-specific. r+sr=jst 2005-12-06 01:29:42 +00:00
bzbarsky%mit.edu
6bd9a190f3 Fix more build bustage (bug 316794). 2005-11-29 05:25:48 +00:00
bzbarsky%mit.edu
52d48a2be7 Fix build bustage (bug 316794) -- need to be able to include nsIChromeEventHandler, by way of nsPIDOMWindow. 2005-11-29 03:42:34 +00:00
timeless%mozdev.org
4dee973a0e Bug 301562 A > Z Sort Order is confusing, should be Ascending/Descending
patch by supernova_00@yahoo.com r=mconnor
2005-11-29 00:54:34 +00:00
jst%mozilla.jstenback.com
8f1863159b Fixing bug 316794. Moving HandleDOMEvent() and Get/SetDocShell from nsIScriptGlobalObject to nsPIDOMWindow. r=mrbkap@gmail.com, sr=peterv@propagandism.org 2005-11-28 23:56:44 +00:00
timeless%mozdev.org
f4dc303882 Bug 130462 "null" or "" is displayed in drop-down search text in URL bar
patch by ajschult@verizon.net r=jag sr=neil
2005-11-27 07:08:57 +00:00
timeless%mozdev.org
9b0852aaf7 Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
2005-11-25 21:57:13 +00:00
timeless%mozdev.org
eb9350f619 Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
2005-11-25 19:48:04 +00:00
timeless%mozdev.org
17f5f5429f Bug 106386 Correct misspellings in source code
patch by supernova_00@yahoo.com r=timeless
2005-11-21 06:25:15 +00:00
bsmedberg%covad.net
b551df41b1 Bug 263042 part 2 - move the LDAP parts of XPFE autocomplete to mailnews/addrbook, which is the only consumer, r=dmose 2005-11-16 15:23:53 +00:00
darin%meer.net
697c78f1ea Initial patch for bug 312760 "Provide base channel for use by protocol implementations" r=biesi sr=bzbarsky 2005-11-12 18:17:19 +00:00
bsmedberg%covad.net
c0dd442050 Build bustage, bug 313309 2005-11-11 16:20:27 +00:00
bsmedberg%covad.net
3dd06b86e0 Build bustage, bug 313309 2005-11-11 15:55:43 +00:00
bugzilla%arlen.demon.co.uk
dd69f4c1b0 Bug 111842 tabbed browser prefs text "load links in the background" misleading
p=tmeader@gmail.com r=db48x sr=jag
2005-11-06 22:21:20 +00:00
bsmedberg%covad.net
37c47d6e3c Bustage fix from bug 263042 - MOZ_LDAP_XPCOM is not defined by configure, it must be defined explicitly by makefiles that need it, pointed out by Neil 2005-11-04 13:41:24 +00:00
bsmedberg%covad.net
a3deb73315 Bug 263042 - Build both autocomplete impls as separate components to make it easier to ship both of them with toolkit/xpfe r=Neil 2005-10-31 13:21:31 +00:00
timeless%mozdev.org
6fec2b1a4c Bug 186819 Query charset searching on dmoz.org does not match with which dmoz.org expects
patch by bugzilla@philringnalda.com r=timeless sr=dmose
2005-10-30 03:07:38 +00:00
cbiesinger%web.de
6f19c8cc76 bug 313214 don't try to create resources from empty strings
r+sr=neil
2005-10-26 16:50:47 +00:00
cst%andrew.cmu.edu
b30dc8ce33 Bug 294056 User-specified sound fails to play after file download completes
r=biesi sr=neil
2005-10-23 18:21:36 +00:00
mconnor%steelgryphon.com
d6bcc60cbd bug 311195 - When update URL is 404, engine update ignores updateCheckDays, patch by O. Atsushi (Torisugari) (torisugari@gmail.com), r=me, sr=neil, a=asa 2005-10-17 17:36:55 +00:00
mozilla.mano%sent.com
72097f732e Bug 267487 - addSearchEngine should install search plugins from https sites as well as http. patch from O. Atsushi (Torisugari) <torisugari@gmail.com>, r=me, sr=neil. 2005-10-17 11:32:17 +00:00
mozilla.mano%sent.com
8798f5769f Bug 302000 - browser.search.order.* doesn't work with searchplugins stored in profile. patch from O. Atsushi (Torisugari) <torisugari@gmail.com>, r=bsmedberg, sr=neil. 2005-10-17 11:27:25 +00:00
neil%parkwaycc.co.uk
791530ee2e Bug 278398 forced autocomplete ignores typing after search r=mscott sr=bienvenu 2005-10-14 19:21:44 +00:00
mnyromyr%tprac.de
bffd413fd7 Bug 311037: Remove allowWindowOpen.label; p=Frank Wein <bugzilla@mcsmurf.de>, r/sr=Neil 2005-10-13 20:13:16 +00:00
kairo%kairo.at
28322458cb add L10n notes for bug 276299, p=vhaarr r=me sr=jag 2005-10-12 23:47:55 +00:00
neil%parkwaycc.co.uk
a103837178 Bug 276299 Wallpaper filename should be localizable p=vhaarr r=me sr=jag 2005-10-09 20:32:07 +00:00
neil%parkwaycc.co.uk
29f2e4dfb1 Chrome home pages broken (suite version of fix) b=301073 r+sr=dveditz 2005-10-05 16:10:11 +00:00
bugzilla%arlen.demon.co.uk
c3ea627381 Bug 302479 Some pref panels still with missing/incorrect accesskeys
p=giacomo.magnini@portalis.it r=me sr=neil.parkwaycc.co.uk
2005-10-04 21:03:28 +00:00
bugzilla%arlen.demon.co.uk
bd4fcd60d8 Bug 292668 Reorganise mailnews pref panes - Character Encoding patch
p=me r=mnyromyr/cbiesinger sr=neil.parkwaycc.co.uk
2005-09-30 00:24:35 +00:00
bryner%brianryner.com
8d94bd5c6f Make clearing the disk/memory cache also evict cached viewers in bfcache. Bug 305462, r=marria@gmail.com, sr=darin@meer.net 2005-09-29 20:24:27 +00:00
neil%parkwaycc.co.uk
60bb39eafd Bug 68961 restore nsTreeSorting.js accesskey support p=vhaarr@gmail.com r+sr=me 2005-09-26 22:55:33 +00:00
mconnor%steelgryphon.com
15a94022c0 bug 290254 - search engine isn't validated for the first time until updateCheckDays after first use, r=me, sr=neil 2005-09-26 15:04:36 +00:00
cbiesinger%web.de
ffb7da0d70 305384 build alert service on non-windows platforms
patch by Jens Bannmann <jens.b@web.de> r=bsmedberg sr=neil
2005-09-22 21:16:49 +00:00
timeless%mozdev.org
c113ece289 Bug 308573 use if (NS_FAILED(...)) instead of if NS_FAILED(...)
patch by b.jacques@planet.nl r=darin sr=darin
2005-09-15 23:17:17 +00:00
roc+%cs.cmu.edu
329c6cc865 Bug 293714. Be smart about guessing whether a vertical scrollbar is needed when we do the first real reflow of a scrollframe; remember in global history whether the page needed a scrollbar or not. r+sr=bzbarsky 2005-08-25 00:10:37 +00:00
bryner%brianryner.com
5de00b1466 Fix property name so that autocomplete works correctly in Thunderbird/Seamonkey. Bug 305654, r+sr=mscott 2005-08-24 05:05:09 +00:00
ben%bengoodger.com
91e950612e 289362 - replacing dictionary.com with answers.com as the dictionary handler for 1.5 following abusive practices towards firefox users on the part of dictionary.com (popups etc). Patch adds support to the internet search service for search URLs whose parameter formats are effectively redirects, not query strings, e.g. http://www.foo.com/%s vs. currently supported http://www.foo.com/search?foo=%s only... r=bsmedberg, a=cbeard 2005-08-23 18:11:28 +00:00
bryner%brianryner.com
adc0ddf8eb In the XUL autocomplete widget, make user-initiated autocomplete dispatch an oninput event, just as if the user had typed the text. Also fixing a bug where it was not possible to create an oninput event from script. Bug 287996, r=mconnor sr=jst. 2005-08-22 18:34:21 +00:00
cst%andrew.cmu.edu
2cbb563830 Bug 305445 "Author" in Themes should have a colon
patch by stephend <stephen.donner@gmail.com>, r=iann sr=neil
2005-08-22 00:34:41 +00:00
cst%andrew.cmu.edu
81aaf20411 Bug 305435 Remove MNG image support listitem from pref window.
patch by stephend <stephen.donner@gmail.com>, r=iann sr=neil
2005-08-22 00:33:09 +00:00
cst%andrew.cmu.edu
90096e37f3 Bug 305038 Capitalize "this" in image/cookie/popup-blocking context menu entries.
Patch by stephend, r=mvl sr=neil
2005-08-19 03:48:46 +00:00
bsmedberg%covad.net
017e4511ff Removing old copies of shistory: these files were cvs-copied to docshell/shistory from xpfe/components/shistory (see bug 230363) 2005-08-18 17:18:50 +00:00
timeless%mozdev.org
625d6696fe Bug 299825 Search plugins in App directory are updated into Profile directory (resulting in double Search Bar entries)
patch by torisugari@gmail.com r=timeless sr=neil
2005-08-17 08:27:28 +00:00
mconnor%steelgryphon.com
b4a44d8d7c bug 271097 - backend fix to enable turning off searchplugin auto-update, patch by O. Atsushi (torisugari@gmail.com), r=shaver/me, a=shaver 2005-08-12 02:53:10 +00:00
roc+%cs.cmu.edu
4adb1fc693 Fixing bustage 2005-08-10 20:58:19 +00:00
roc+%cs.cmu.edu
c3ea09b7b0 Bug 78510. Maintain a per-document hashmap from URI-spec-hash to set of pointers to content elements that are links to those URIs whose state has been queried by the style system. Use this map to efficiently mark visited any links to URIs which get visited. r+sr=dbaron, with input from bryner and bzbarsky, a=jesup with support from dbaron. May impact Tp and other metrics, be careful out there. 2005-08-10 20:21:44 +00:00
jshin%mailaps.org
2ee8613602 bug 258223 : bookmark keyword quicksearch need a way to specify character encoding : r=vlad, sr=neil, a=asa 2005-08-09 04:47:57 +00:00
bugzilla%arlen.demon.co.uk
4b6f08e7a3 Bug 303142 Wrong taskbar icon for JavaScript Console
p=me r/sr=neil.parkwaycc.co.uk a=asa
2005-08-08 10:47:50 +00:00
neil%parkwaycc.co.uk
8ff3ab1416 Bug 301923 XRemote silently ignored bad URIs p=ajschultz r=caillon a=bsmedberg 2005-07-28 14:51:38 +00:00
neil%parkwaycc.co.uk
fc0924b7e2 Bug 295582 Clean up after bug 281988 p=jklippl@xtux.org r=me sr=jag a=bsmedberg 2005-07-28 13:44:23 +00:00
dmose%mozilla.org
2349b95ba5 Add basic support for LDAP controls to the LDAP XPCOM SDK, LDAP autocomplete code, and LDAP addressbook (bug 297131). r=bienvenu, sr=roc, a=bsmedberg 2005-07-26 15:27:18 +00:00
cbiesinger%web.de
531457a0b0 fixing review comments for Bug 298429 2005-07-21 15:55:01 +00:00
cbiesinger%web.de
42be606dd5 298429 don't add a cache pref when opening cache pref panel
patch by Frank Wein <bugzilla@mcsmurf.de> r=biesi sr=neil a=bsmedberg
2005-07-21 15:30:20 +00:00
kairo%kairo.at
151efd5586 revert backout, no effect on btek Tp 2005-07-07 11:09:10 +00:00
kairo%kairo.at
25c60d8d55 try backing out various UI changes form rebranding to test for Tp impact (bug 299624) 2005-07-07 10:13:47 +00:00
cbiesinger%web.de
69dc249cbd Bug 298842 make the temp file part of nsITransfer
r=mconnor sr=darin a=shaver
2005-07-06 23:12:22 +00:00
kairo%kairo.at
fcb3829454 bug 285696 stage 2 - really rebrand suite trunk, r+sr=Neil a=bsmedberg; note that this also changes the executable name to seamonkey.exe/SeaMonkey.app/seamonkey. Also including placeholder artwork replacing all mozilla suite related logos (note that the final SeaMonkey artwork is not ready yet) 2005-07-02 20:35:13 +00:00
timeless%mozdev.org
6da819311a Bug 299101 remove useless references to nsVoidArray
xpfe
r=neil sr=neil a=bsmedberg
2005-06-29 18:12:06 +00:00
mconnor%steelgryphon.com
5a887e590c bug 123315 - user-added searchplugins should be installed into the profile, r=bsmedberg, sr=shaver, a=bsmedberg 2005-06-29 15:55:57 +00:00
bryner%brianryner.com
11a6aa6bcb fix case on #include 2005-06-24 23:48:26 +00:00
bryner%brianryner.com
3579707923 Invalidate cached presentation if the DOM is mutated (bug 292962). Patch by sicking, r+sr=me, a=chofmann. 2005-06-24 23:31:01 +00:00
neil%parkwaycc.co.uk
75838ba03d File Bookmark should preselect New Bookmarks folder b=250783 p=f.qu@laposte.net r+sr=me a=asa 2005-06-20 09:03:06 +00:00
neil%parkwaycc.co.uk
3f155caad1 Bug 254542 Support middle-clicks in history p=trev@gtchat.de r=me sr=dmose a=asa 2005-06-17 20:17:18 +00:00
peterv%propagandism.org
555cc2a1f9 Fix for bug 286300 (Clean up HTML tags enum and related code). r/sr=jst, a=asa. 2005-06-16 12:58:13 +00:00
bryner%brianryner.com
e4a343f08f Fix assorted issues with fastback, including adding progress listener notifications and introducing the PageHide and PageShow events. See bug 292971 for all of the details. r=darin, sr=bzbarsky, a=shaver. 2005-06-15 23:52:46 +00:00
bsmedberg%covad.net
838f393226 Bug 296430 - Allow extensions to ship searchplugins, final patch to read searchplugins from a dirservice nsISimpleEnumerator key, r=mkaply a=asa 2005-06-14 15:25:25 +00:00
bryner%brianryner.com
8ecd4478fd Don't force mork to create an XPCOM wrapper when querying link-visited state (bug 297144). r=mconnor, sr=bzbarsky, a=chofmann 2005-06-09 20:51:18 +00:00
dougt%meer.net
77acfc52b7 Bug 295481. WINCE Fixes. This includes changes to make the makefiles do the right thing if we try to build Minimo and XUL together. These changes rs=bsmedberg. Further WINCE fixes in GFX and Widget. r=emaijala, sr=rbs, a=asa. 2005-06-08 16:48:44 +00:00
mnyromyr%tprac.de
0bdb85b4b1 Bug 131106: Make 'default browser' shouldn't steal image file associations from image programs; patch by Frank Wein <bugzilla@mcsmurf.de>; r=neil, sr=jag, a=asa 2005-06-07 20:10:23 +00:00
timeless%mozdev.org
8c6231f128 Bug 272167 nsIWindowsRegistry::getRegistryEntry does not support non-latin1 keys/values
backing out a portion of the patch which neil explicitly instructed was not supposed to be committed. build bustage fix.
2005-06-02 03:48:34 +00:00
cst%andrew.cmu.edu
a54fdd5651 Bug 236003 null check missing in nsBookmarksService (seamonkey version of bug 235129)
r=timeless sr=dbaron a=shaver
2005-06-02 00:37:06 +00:00
jshin%mailaps.org
368f56b1fa bug 272167 : get rid of nsIWindowsRegistry (r=cbie, sr=darin, a=shaver) 2005-06-01 23:59:21 +00:00
timeless%mozdev.org
bf0ed59015 Bug 282494 jeeves.src needs updating
patch by moz_bugzilla@exchangecode.com r=timeless sr=alecf a=shaver
2005-06-01 17:48:40 +00:00
bienvenu%nventure.com
766322f0ce fix ldap autocomplete not to append two addresses in certain situations, r=mscott, sr=neil, a=shaver 261272 2005-06-01 15:07:04 +00:00
bzbarsky%mit.edu
cddca7b121 Don't set window.location or document.location in chrome code; set
location.href instead.  Bug 295040, r+sr=jst, a=asa
2005-05-24 04:12:30 +00:00
brendan%mozilla.org
6941a16b76 Fixes and cleanups required by the infrastructure patch for 281988, r+sr=bsmedberg+bz. 2005-05-20 17:41:10 +00:00
bsmedberg%covad.net
9abe57c447 Bug 281988 - Chrome registry supports for the xpcnativewrappers=yes flag. Chrome packaging fixup to apply the xpcnativewrappers=yes flag to our application chrome packages for ffox/tbird. This also stops the repackaging of thunderbird chrome. r=mscott+bz a=drivers 2005-05-20 12:58:57 +00:00
bugzilla%arlen.demon.co.uk
9b02c0e9ed Bug 279054 Document new proxy pref pane in Help
p=stefan_h@hem.utfors.se/giacomo.magnini@portalis.it r=me sr=neil.parkwaycc.co.uk a=asa
2005-05-19 20:28:09 +00:00
bugzilla%arlen.demon.co.uk
5a9454724c Bug 26543 [Mac] Both Backspace and Delete keys should delete Bookmarks items
p=stefan_h@hem.utfors.se r/sr=neil.parkwaycc.co.uk a=asa
2005-05-19 19:55:00 +00:00
neil%parkwaycc.co.uk
9d0c926cd8 Bug 293427 Tabbed browser prefs panel small fonts tweak r=IanN sr=jag a=asa 2005-05-19 16:14:41 +00:00
bryner%brianryner.com
ff88a48218 Fix save/restore of form control contents when reloading (bug 294258). r=sicking, sr=bzbarsky. 2005-05-18 04:32:12 +00:00
bienvenu%nventure.com
16206ea7be fix 93453 sr=mscott a=asa, stop email autocomplete from adding users domain by default, add option to show non-matched addresses in red 2005-05-07 15:49:05 +00:00
bugzilla%arlen.demon.co.uk
5b957f99cc Bug 161466 Better UI for tabbed browsing prefs
p=mozilla@Weilbacher.org r=jag sr=neil.parkwaycc.co.uk a=asa
2005-05-06 21:16:36 +00:00
timeless%mozdev.org
f7597a2864 Bug 292973 Lonely forward-decl of nsISecureBrowserUIState
r=bz sr=bz a=brendan
2005-05-05 06:50:36 +00:00
Stefan.Borggraefe%gmx.de
e446bed4da Bug 226955: Conversion from <window class="dialog"> to <dialog>.
r=neil, sr=alecf, a=chofmann
2005-05-05 02:25:04 +00:00
bryner%brianryner.com
aed69207f0 Add support for caching content viewers in session history to speed up back/forward (bug 274784). This initial landing has the feature disabled by default; set browser.sessionhistory.max_viewers to the maximum number of pages to cache to enable the feature. r=bzbarsky, sr/a=brendan. 2005-05-04 20:22:32 +00:00
bugzilla%arlen.demon.co.uk
470df97578 Bug 289444 Give prefs panels titles a unique name (xpfe patch)
p=giacomo.magnini@portalis.it r=kairo sr=neil.parkwaycc.co.uk a=chofmann
2005-05-02 11:05:42 +00:00
neil%parkwaycc.co.uk
478c02c28a Bug 178003 Restore sidebar to address book, make it so that the addressing panel allows you to easily add To, Cc or Bcc recipients r=Standard8 sr=bienvenu a=asa 2005-05-01 09:48:35 +00:00
jshin%mailaps.org
24686082e9 bug 237434 : add several languages/scripts to font selection menu (r=smontagu, sr=dbaron, a=asa) 2005-04-30 02:57:57 +00:00
bugzilla%arlen.demon.co.uk
0aeb447a3f Bug 196272 Remove edit>preferences>mailandnewsgroups>windows
p=me r=mnyromyr/neil.parkwaycc.co.uk sr=bienvenu a=asa
2005-04-28 21:24:18 +00:00
cbiesinger%web.de
aa12c468cf Bug 290648 make nsITransfer::init take an nsICancelable, and remove the observer attribute
r=bz sr=darin a=asa
2005-04-24 21:16:28 +00:00
bzbarsky%mit.edu
a8e9cc7e20 Fix bug 290878. client* coords are broken for events in a popup....
r=neil/mconnor, sr=roc, a=asa
2005-04-24 20:15:31 +00:00
bugzilla%arlen.demon.co.uk
2cc2bc6ede Bug 154711 Make it clearer Home and Bookmarks buttons appear on Personal, and not Navigation, Toolbar
p=zug_treno@yahoo.com r=me sr=neil.parkwaycc.co.uk a=asa
2005-04-21 21:30:02 +00:00
dbaron%dbaron.org
b13b88a97c Have separate states for new search plugin install and search plugin update and only remove old files for updates. b=290038 r=mconnor sr=brendan a=roc 2005-04-16 04:37:39 +00:00
timeless%mozdev.org
a53716e16d Bug 290429 missing |this.| in error case results in code that will never work
patch by ajschult@verizon.net r=neil sr=neil a=caillon
2005-04-15 11:51:10 +00:00
bugzilla%arlen.demon.co.uk
49a8d54829 Bug 290175 JS Error in permissionsNavigatorOverlay.xul
r/sr=neil.parkwaycc.co.uk a=asa
2005-04-14 22:52:14 +00:00
gandalf%firefox.pl
54f8bda74e Bug 286108: Build Thunderbird Locales from CVS; r=bsmedberg;sr=mscott;a=dbaron 2005-04-13 21:56:42 +00:00
dveditz%cruzio.com
b4398cd40c bug 290037 search action protocol should match method r=bengoodger,sr=dbaron,a=asa 2005-04-13 00:35:04 +00:00
mvl%exedo.nl
3241d7c2ed make sunbird build again.
part of bug 280725, r=bsmedberg, a=dbaron
2005-04-09 17:35:58 +00:00
bsmedberg%covad.net
3a4772821b Bug 288640 - xpfe/components/search is app-specific, not part of the toolkit. Remove bad dependencies by moving it to tier_99 and only building it for Seamonkey/Firefox r=Neil a=asa 2005-04-08 17:20:34 +00:00
scott%scott-macgregor.org
2e6cb8a44d Bug #244522 --> Selecting address book recipient from list before LDAP finishes lookup causes 'Enter' to not behave as expected
patch by neil

sr=me
a=asa
2005-04-07 23:49:51 +00:00
cbiesinger%web.de
f0b358248f 228968 r=bz sr=darin
- add a new nsIWebProgressListener2 interface, inheriting from
  nsIWebProgressListener, providing a 64-bit onProgressChange method
- make nsITransfer inherit from that interface, and remove an unused
  progressListener attribute
- make webbrowserpersist support listeners that implement
  nsIWebProgressListener2, and give them 64-bit progress values
- make nsIHelperAppLauncher's listener setWebProgressListener function take an
  nsIWebProgressListener2 interface

And fix up all implementations according to that.
2005-04-05 23:24:23 +00:00
scott%scott-macgregor.org
0732ab6e20 Bug #288871 -->
Back out the change for Bug #286108 as it broke things like autocomplete in
Thunderbird.
2005-04-05 19:37:58 +00:00
bugzilla%arlen.demon.co.uk
541bca8e56 Bug 203818 Bookmark window doesn't hide it's toolbar when the toolbar button is clicked
p=stefan_h@hem.utfors.se r=bugs.mano sr=neil.parkwaycc.co.uk
2005-04-05 15:47:51 +00:00
bsmedberg%covad.net
844ef87b25 Adding MOZILLA_INTERNAL_API to internal makefiles, bug 288626, rs=darin 2005-04-05 14:50:16 +00:00
bsmedberg%covad.net
3522feb25f Bug 280725 - use generic/automatic remoting for xremote r=caillon sr=bryner 2005-04-04 19:08:55 +00:00
gandalf%firefox.pl
9e8b68a0a5 Bug 286108: Build Thunderbird Locales from CVS. Don't bundle xpfe/browser,xpfe/components to toolkit apps.; r=bsmedberg,sr=mscott 2005-04-02 13:12:21 +00:00
timeless%mozdev.org
3a3c8ef69a Bug 288544 an asynchronous "oom" loop in jsconsole's implementation of nsIConsoleListener.observe with nsIConsoleService and xpconnect
r=neil sr=neil
2005-04-01 08:47:17 +00:00
Stefan.Borggraefe%gmx.de
0e8a2edad8 Bug 261544: Menu items "Delete host" and "Delete domain" aren't visible when history tree is empty
r+sr=Neil
2005-04-01 00:13:06 +00:00
bsmedberg%covad.net
7fae206eed Bug 288204 - under libxul, fileview and xremote need xpcom/xul to link, move them to TOOL_DIRS patch by Rob Adams <readams@readams.net> r=me 2005-03-31 22:37:57 +00:00
roc+%cs.cmu.edu
756cba4372 Fixing bustage 2005-03-31 02:16:39 +00:00
neil%parkwaycc.co.uk
c4ea9270d0 Bug 288075 -browser <URL> should open in a browser window r=bsmedberg sr=darin 2005-03-30 22:55:33 +00:00
bsmedberg%covad.net
84cfc83215 Bug 286450 - Make nsIScriptError.message display a formatted message with file/line information, for future logging purposes r=dbradley sr=bz 2005-03-30 11:34:59 +00:00
bugzilla%arlen.demon.co.uk
ba1172cebc Bug 287348 popup windows allowed sites button produces a non functioning window
p=me r/sr=neil.parkwaycc.co.uk
2005-03-27 20:24:15 +00:00
darin%meer.net
f6ffba0f8b landing patch for bug 282442 "Provide interface for configuring proxies" r=biesi sr=bzbarsky 2005-03-25 03:41:33 +00:00
smfr%smfr.org
a54c5282b7 Fix bug 286096: remove most xpfe/components from the build for camino, to avoid it every picking up global history or bookmarks (see bugs 285554 and 280342). r=bsmedberg. 2005-03-23 21:09:39 +00:00