166711 Commits

Author SHA1 Message Date
jminta%gmail.com
a26ee0ea38 Bug 133107 Week view and day view should scroll to useable time, patch by thomas.benisch@sun.com, r=jminta 2006-08-14 22:04:02 +00:00
vladimir%pobox.com
f6f7a4a6d7 b=327161, uuidgenerator stuff, attempt to fix btek from previous checkin, r=bz 2006-08-14 22:04:01 +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
pavlov%pavlov.net
37e7fc2897 height member of gfxFontMetrics is no longer used. 2006-08-14 21:48:24 +00:00
lpsolit%gmail.com
7a0587ff85 Bug 330485: Attachment links in comments still say "edit" instead of "details" - Patch by victory(_RSZ_) <bmo@rsz.jp> r=LpSolit a=myk 2006-08-14 20:15:15 +00:00
lpsolit%gmail.com
1dfaea282c Bug 348337: enter_bug.cgi doesn't pass HTML validation - Patch by Fr�d�ric Buclin <LpSolit@gmail.com> r=kevin.benton a=myk 2006-08-14 20:10:22 +00:00
lpsolit%gmail.com
2748824f91 Bug 348331: Duplicated IDs on all pages - Patch by Fr�d�ric Buclin <LpSolit@gmail.com> r=kevin.benton a=myk 2006-08-14 20:05:57 +00:00
bienvenu%nventure.com
066a87429a make default sort order and type configurable, patch by mozbugzilla@velox.ch, r/sr=bienvenu 86845 2006-08-14 20:02:23 +00:00
igor.bukanov%gmail.com
a31e220d87 Bug 348532: Limit the length of errorInstance.stack. r=brendan 2006-08-14 20:01:30 +00:00
lpsolit%gmail.com
62f5e6956d Bug 275636: Templatise 'newchangedmail' email (BugMail) - Patch by Andr� Batosti <batosti@async.com.br> r=LpSolit a=myk 2006-08-14 19:45:16 +00:00
rob_strong%exchangecode.com
8519f34aa8 String fix for Bug 347954 - Running the NSIS installer as normal user (restricted group) or without enough free space available makes it silently fail. r=beltzner 2006-08-14 19:39:35 +00:00
bugzilla%standard8.demon.co.uk
f9cb0a0f3b Bug 262893 In searchBar.js, "Warning: redeclaration of var i" and others. p=Serge Gautherie <gautheri@noos.fr>,r=bryner,sr=mscott 2006-08-14 19:26:51 +00:00
mrbkap%gmail.com
0c2173c26f Check the correct kid to figure out if the last catch block had a catch guard. bug 348630, r=brendan 2006-08-14 19:12:06 +00:00
scott%scott-macgregor.org
4913d5652d Bug #348387 --> clear the current msg uri when we are selecting a dummy row. sr=bienvenu 2006-08-14 18:53:50 +00:00
vladimir%pobox.com
8b54bc398c b=327161, nsUUIDGenerator subject to reseeding woes, r+sr=bz 2006-08-14 18:53:34 +00:00
jwalden%mit.edu
f9040c4dfe Comment-only change ("General pane"->"Main pane"), no bug, r=me as trivial 2006-08-14 18:48:49 +00:00
ghendricks%novell.com
2625bf8e5e Updated patch for 2.22 - submitted by Nicolas Triantafillou 2006-08-14 18:31:45 +00:00
mkanat%bugzilla.org
647e6d8262 Bug 348529: Editing keywords results in a "Software Error"
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
2006-08-14 18:10:13 +00:00
mkanat%bugzilla.org
c3d52e3db8 Bug 348464: votes.cgi fails with a taint error
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
2006-08-14 18:07:19 +00:00
mkanat%bugzilla.org
0d7e558362 Bug 324296: Bugzilla::Bug->vote_count should be its own subroutine
Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
2006-08-14 18:04:39 +00:00
rob_strong%exchangecode.com
1760351045 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
jwalden%mit.edu
a32d4a5ebd Bug 345572 - In Options window tab Main bottom border line missing. r=mconnor 2006-08-14 18:02:14 +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
brettw%gmail.com
ec389a0d15 Bug 348171 r=bryner Backspace key is very slow 2006-08-14 17:57:53 +00:00
rob_strong%exchangecode.com
a40d94524b Strings only for Bug 336469 - use new APIs in Vista to register file and protocol handlers. r=beltzner 2006-08-14 17:56:21 +00:00
wtchang%redhat.com
cf0212dd7a Bugzilla Bug 336813: Improved NSC_GetTokenInfo and FC_GetTokenInfo. Always
set CKF_RNG. Set the utcTime member to 16 zeros "0000000000000000".
Factored out the common flag CKF_RNG and CKF_THREAD_SAFE. r=nelsonb,relyea.
Modified files: fipstokn.c pkcs11.c
2006-08-14 17:52:31 +00:00
mattwillis%gmail.com
c1b5a18704 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
jminta%gmail.com
43993b3670 Bug 346486 Hard-coded application name in browser.properties, ui-r=beltzner, r+a=mconnor 2006-08-14 17:11:50 +00:00
mike.morgan%oregonstate.edu
f3331c6ffb Patch to allow for release and nightly build data directory structures to differ. See bug 342797. 2006-08-14 17:06:17 +00:00
wtchang%redhat.com
a480328757 Bugzilla Bug 347409: removed the on-demand initiation of the FIPS power-up
self-tests from FC_Login. We now require the user to shut down and restart
the softoken to initiate the power-up tests on demand. r=nelsonb.
2006-08-14 17:05:31 +00:00
jminta%gmail.com
3a7e5a014c Bug 348500 error when press cancel in dialog 'Editing a repeating item' for recurrence event, patch by ssitter, r1=lilmatt, r2=jminta 2006-08-14 17:02:05 +00:00
jminta%gmail.com
e5981b9e2d Bug 346169 'Tasks in View' should not be the default, patch by ssitter, r1=lilmatt, r2=jminta 2006-08-14 16:58:33 +00:00
wtchang%redhat.com
a99d5c47c1 Bugzilla Bug 53427: PORT_FreeArena should zero memory before freeing it if
the 'zero' argument is true. r=nelsonb.
2006-08-14 16:56:39 +00:00
jminta%gmail.com
5b42bc74a9 Bug 347790 When printing, title is always printed as HTMLTitle, r1=lilmatt, r2=dmose 2006-08-14 16:54:27 +00:00
jminta%gmail.com
bb03dc03de Bug 348347 Package new-category dialog in Lightning, r1=lilmatt, r2=dmose 2006-08-14 16:48:25 +00:00
jminta%gmail.com
4b7e724fbc Bug 326332 Event creation in ics calendar fails after backup problems., r1=lilmatt, r2=dmose 2006-08-14 16:44:00 +00:00
jminta%gmail.com
49c17f7045 Bug 347113 Deleting a calendar should select a different calendar. (lightning version), r1=lilmatt, r2=dmose 2006-08-14 16:42:12 +00:00
gerv%gerv.net
933a1ea9ff Bug 313816 - fix height of iframe so you can read things inside it. Patch by gerv; r=mkanat, a=myk. 2006-08-14 15:58:12 +00:00
lpsolit%gmail.com
0540dc66bb Bug 281821: Add mention of 'testserver.pl' to webserver configuration section - Patch by victory(_RSZ_) <bmo@rsz.jp> r=Colin 2006-08-14 15:54:25 +00:00
timeless%mozdev.org
3ac8499ab4 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
timeless%mozdev.org
fa6e4316d6 Bug 347851 Building XULRunner with --embedding-profile=minimal failed
Make accessible tree support only build ifdef MOZ_XUL
patch by romaxa@gmail.com r=timeless r=aaronl sr=bz
2006-08-14 15:43:49 +00:00
daniel.boelzle%sun.com
f15cc043d3 Bug 340949: WCAP provider part of the build. Switched off by default. r=dmose 2006-08-14 13:40:10 +00:00
aaronleventhal%moonset.net
10a613398c Bug 348155. Position in lists not exposed correctly. r+sr=roc 2006-08-14 13:38:53 +00:00
jshin%mailaps.org
ba09aef6c3 bug 347982 : EUC-KR decoder (Unicode-to-EUC-KR converter) is broken : MSB is stripped off (r=smontagu, sr=roc) 2006-08-14 13:32:58 +00:00
uriber%gmail.com
24ef1f7947 In GetPrevNextBidiLevels, treat the "before <br>" case as if we were end-of-line. bug=330461 r=smontagu sr=roc 2006-08-14 11:25:57 +00:00
uriber%gmail.com
3af6592be5 Reparent view list when inserting a new frame after a :before pseudo-element. bug=343540 r+sr=roc 2006-08-14 11:10:58 +00:00
neil%parkwaycc.co.uk
e5b3954d8b Bug 343884 Column order was reset on restart r=enn sr=jag 2006-08-14 10:28:15 +00:00
rbs%maths.uq.edu.au
21ece0d080 Frames from dynamic MathML table children are not made with the right creator, b=348153, r+sr=bzbarsky 2006-08-14 07:44:13 +00:00
rbs%maths.uq.edu.au
a188cdedf1 {inc} MathML matrices break when the content sink is incremental, b=344281, r+sr=bzbarsky 2006-08-14 07:27:42 +00:00
igor.bukanov%gmail.com
a945b5c26e Bug 348532: taking out the previous commit. 2006-08-14 07:19:12 +00:00