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

1579 Коммитов

Автор SHA1 Сообщение Дата
bugzilla%standard8.demon.co.uk 6c378426ed Bug 349438 (bug 266945 enhanced / followup) add title and set default button to no for the remove all password manager confirm prompt. p=Serge Gautherie <gautheri@noos.fr>,r=mconnor 2006-08-24 17:34:43 +00:00
tony%ponderer.org 70a45c90f2 bug 348625: use whitelist to suppress remote lookups
patch: add first path to domain for checking
r=provos,sr=bryner
2006-08-24 01:12:49 +00:00
tony%ponderer.org 31cc2b4363 bug 349253: implement backoff code for table updates
patch: requestbackoff class, check for connection refused and http error codes
r=provos,sr=darin
2006-08-24 00:18:01 +00:00
tony%ponderer.org e5fbc171aa bug 349234: only get a new key once per 24 hours
patch: remember last getkey request
r=provos,sr=darin
2006-08-24 00:11:59 +00:00
gavin%gavinsharp.com 895ee2682e Bug 349598: remove unnecessary dumps, r=dietrich 2006-08-22 17:23:10 +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
pkasting%google.com 74c1c06db2 Bug 348298: Clean up Find Bar code, patch 1.
r=masayuki
2006-08-18 20:26:23 +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
sayrer%gmail.com ed4b58d348 backout 340555. botched checkin 2006-08-16 14:59:19 +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
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
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
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
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
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
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
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
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
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 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
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
mark%moxienet.com 553b503658 46177 Show icons in native Mac menu items. r=josh sr=bryner 2006-08-01 00:13:24 +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
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
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
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
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
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
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
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
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
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
sayrer%gmail.com c49f464056 Bug 344991. Change accessors to return nsIFeedTextConstructs 2006-07-21 19:05:13 +00:00
gavin%gavinsharp.com f2ed21c28c Bug 345395: fix typo in patch for bug 58724, r=lumpy 2006-07-21 13:10:49 +00:00
pamg.bugs%gmail.com ff3b41fa2d 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
pamg.bugs%gmail.com b577d1f18d 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
pamg.bugs%gmail.com b56f2ac584 Bug 344437: Crash [@ nsTypeAheadFind::GetSearchContainers]. Patch by pkasting@google.com. r=masayuki 2006-07-20 18:31:57 +00:00
gavin%gavinsharp.com 098f6aee49 Fix whitespace nits to sync with xpfe, r=sparky 2006-07-20 00:42:01 +00:00
gavin%gavinsharp.com 3f769b18b6 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 978a88c7e5 [Bug 344389] feed parser doesn't expose guid/atom:id/rdf:about correctly. r=ben 2006-07-19 19:31:52 +00:00
mark%moxienet.com aafc439215 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