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

1592 Коммитов

Автор SHA1 Сообщение Дата
bzbarsky%mit.edu 01946a8fe9 Make it possible to give DOMParsers the right principals from C++. Bug 332840,
r=sicking, sr=jst
2006-09-09 04:54:03 +00:00
Olli.Pettay%helsinki.fi d9fd227d21 Bug 351853, Crashes [@ nsFormFillController::GetDocShellForInput], adding a null check, r=dbaron 2006-09-08 21:19:58 +00:00
dietrich%mozilla.com e645a5a672 Bug 350123 Update URLFormatter to work with non-Fx apps (r=robstrong) 2006-09-08 06:56:14 +00:00
tony%ponderer.org 16621386ac Bug 350511: treat request timeouts as backoff errors
patch: treat NS_ERROR_NET_TIMEOUT as an error
r=darin
2006-09-06 17:04:36 +00:00
tony%ponderer.org 9b8468e840 Bug 329715: investigate why some AV's flag us, and prevent it
patch: use rot13 on keys to avoid being flagged by avira antivirus
r=darin
2006-09-05 18:54:11 +00:00
tony%ponderer.org 8adea04713 Bug 349102: implement back off code for remote phishing lookups
patch: remote lookup backoff and remove checkURL_
2006-08-30 21:29:37 +00:00
Olli.Pettay%helsinki.fi 7c86de7497 Bug 331629, @nsAutoCompleteController::ClosePopup, r=bryner 2006-08-30 20:13:52 +00:00
tony%ponderer.org 518751d367 Bug 349809: add random intervals to update requests
patch: add random interval to table update requests and lower interval from
60min to 30min
r=provos,sr=darin
2006-08-30 16:46:43 +00:00
uriber%gmail.com ca5218736c Allow users of nsFrameTraversal to specify what features they want the iterator to have, and make nsFrame::GetFrameFromDirection() specify "following OOFs". bug=334626 r+sr=roc 2006-08-30 13:38:16 +00:00
Olli.Pettay%helsinki.fi a5be8b14c8 Bug 350495, Crashes [@ nsFormFillController::SetPopupOpen], r=jst 2006-08-29 16:11:08 +00:00
timeless%mozdev.org 97d86b0df2 Bug 106386 Correct misspellings in source code
r=bernd rs=brendan
2006-08-28 20:12:37 +00:00
cbiesinger%web.de 8c59aae763 Bug 265780 part I: Implement nsIAuthPrompt2 and related interfaces per the design at
http://wiki.mozilla.org/Necko:nsIAuthPrompt2
r=darin
2006-08-26 21:42:54 +00:00
masayuki%d-toybox.com ca428eedf1 Bug 187900 Margin value isn't always saved as entered r+sr=neil 2006-08-25 16:07:50 +00:00
bugzilla%standard8.demon.co.uk 0cbe46308b 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 337dcf4d18 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 f2c42f04e3 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 7c3081af82 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 fd9c7ebf04 Bug 349598: remove unnecessary dumps, r=dietrich 2006-08-22 17:23:10 +00:00
dietrich%mozilla.com e8ccf95d8a 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 0a0053c799 Bug 348298: Clean up Find Bar code, patch 1.
r=masayuki
2006-08-18 20:26:23 +00:00
dietrich%mozilla.com 8f7962d0cd Bug 347944 Fix firefox products URLs to point to ...mozilla.com/ab-CD (r=vlad, r=mconnor) 2006-08-18 06:25:25 +00:00
sayrer%gmail.com 56f7c72f9e Bug 340555. Toolkit Feed API addtions. Relanding -- not the cause of a regression. 2006-08-17 23:07:40 +00:00
sayrer%gmail.com 1d1f80250c backout 340555. botched checkin 2006-08-16 14:59:19 +00:00
sayrer%gmail.com 9cee8e3cc5 First part of bug 340555, Toolkit feed parser needs nicer API. r=vlad 2006-08-16 05:36:46 +00:00
timeless%mozdev.org ba2c063b89 Bug 330331 Building with option --disable-xul failed
patch by romaxa@gmail.com r=timeless r=biesi sr=bz
Removing last traces of RDF dependency from HTMLDocument (bug 101995)

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

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

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

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

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

The code used here otoh, while magical will hopefully require you to pause, think,
and quickly understand what's going on. If not, you paused long enough for this
bubble to appear and explain it to you :).
2006-08-14 22:03:34 +00:00
tony%ponderer.org 46d08f9425 Bug 347926: remove arc4.js and friends from source tree
patch: use nsIStreamCipher
r=provos,sr=darin
2006-08-14 01:17:08 +00:00
sayrer%gmail.com 6fa03a1730 Bug 340554. Provide sanitizing fragment sinks for use with feeds. r=mrbkap. sr=jst 2006-08-12 04:46:43 +00:00
tony%ponderer.org afeb6c182c bug 348163: nsUrlClassifierDBService::CloseDb isn't quite right
patch from ispiked
r=tony,sr=darin
2006-08-10 20:49:47 +00:00
rhelmer%mozilla.com e613015052 "check" target should work for objdir and non-objdir builds.
b=348140, r=davel
2006-08-10 19:31:13 +00:00
pkasting%google.com 193af9b5b2 Bug 348063: More case sensitivity problems with Find Bar.
r=masayuki
2006-08-10 19:16:01 +00:00
bryner%brianryner.com 60276d6db0 Add ObserverService notifications for entering and reverting autocomplete input (bug 347687). r=brettw 2006-08-08 18:18:23 +00:00
gavin%gavinsharp.com 309e4fc21c Bug 251625: fix comment, patch by Serge Gautherie <gautheri@noos.fr>, r=mconnor 2006-08-07 23:03:48 +00:00
mats.palmgren%bredband.net 16d685538f Filepicker needs accesskey for dirTextInputLabel. b=250177 r+sr=neil 2006-08-06 03:11:09 +00:00
tony%ponderer.org d86416d7b3 Bug 346940: differentiate anti-phishing table updates from full table reloads
patch: drop table if not an update using a temp table while updating
r=mmchew,sr=darin
2006-08-04 21:21:28 +00:00
pkasting%google.com 343dc42472 Bug 347268: Fix red input field on Quick Find in some cases.
r=masayuki
2006-08-04 18:36:50 +00:00
pkasting%google.com effb08030f Bug 345786: Re-add Match Case checkbox when not in auto-detect mode.
r=mconnor
2006-08-04 18:11:28 +00:00
sayrer%gmail.com e1144a8a49 Bug 345065. legacy rss support. r=ben 2006-08-04 16:14:07 +00:00
gavin%gavinsharp.com 1e9d8f5eed Bug 233611: Download Manager Closes after download is cancelled, retried, and cancelled again, patch by Son Le <son.le0@gmail.com>, r=mconnor 2006-08-03 18:44:58 +00:00
tony%ponderer.org 8bdb13aa95 Bug 346184: If urlclassifier.sqlite is removed, db is not repopulated
patch: check db tables before sending an update request
r=darin
2006-08-01 02:01:40 +00:00
mark%moxienet.com 999c892099 46177 Show icons in native Mac menu items. r=josh sr=bryner 2006-08-01 00:13:24 +00:00
sayrer%gmail.com 6c90b4ae2c Bug 340994. FOAF tries to use feed preview mode, but fails with TypeError. r=mconnor 2006-07-28 16:50:56 +00:00
gavin%gavinsharp.com ab2b1fe36f Bug 234770 part #2: Don't null userField, patch by Michael Wu <michael.wu@mozilla.com>, r=enndeakin 2006-07-28 05:45:16 +00:00
gavin%gavinsharp.com b311d9b102 Bug 345670: fix crash in nsTypeAheadFind::RangeStartsInsideLink, patch by Adam Guthrie <ispiked@gmail.com>, r+sr=sicking 2006-07-26 22:02:23 +00:00
vladimir%pobox.com 31c8e763e7 b=334174, corrupted db files are not handled correctly, r=brettw 2006-07-26 18:54:12 +00:00
gavin%gavinsharp.com a2f1db0eaf Fix bug 345327: "clear" button in the console doesn't work, regression from bug 322169, patch by Simon B�nzli <zeniko@gmail.com>, r=mconnor 2006-07-26 18:31:45 +00:00
gavin%gavinsharp.com d8f009afc8 Bug 234770: Password field names are used instead of username field names to find acceptable signons, patch by Michael Wu <michael.wu@mozilla.com>, r=enndeakin 2006-07-25 21:36:43 +00:00
tony%ponderer.org aa98d1eae0 bug 345675: unwanted connection to www.google.com at startup with Safe
Browsing disabled
patch: don't get key if sb off, don't get whitelist tables if remote checking
on
r=mmchew,sr=bryner
2006-07-25 17:44:26 +00:00
mats.palmgren%bredband.net bfc71b1c54 Add ID attribute for Page Setup dialog. b=345749 r+sr=neil 2006-07-25 15:50:47 +00:00