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

97 Коммитов

Автор SHA1 Сообщение Дата
asqueella%gmail.com c54f11253d Bug 369097 - Only escape % in to-be-evaluated JavaScript code
p=Simon Bunzli <zeniko@gmail.com>
r=gavin, sr=neil
2007-05-13 15:48:44 +00:00
asqueella%gmail.com dab1ebd3d8 Bug 380422 - The evaluating iframe may contain nuts (and other remainders)
p=Simon Bunzli <zeniko@gmail.com>
r=gavin, sr=neil@parkwaycc
2007-05-13 11:36:50 +00:00
gavin%gavinsharp.com e77472a410 Bug 238898: Allow evaluating the same expression multiple times from the error console, patch by Simon B��nzli <zeniko@gmail.com>, r=me, sr=neil 2007-05-11 18:36:02 +00:00
bugzilla%standard8.demon.co.uk 14921b99cb Bug 376331 Remove some unused strings from xpfe/suite. p=Giacomo Magnini <prometeo.bugs@gmail.com>,r/sr=Neil 2007-04-04 09:37:23 +00:00
asqueella%gmail.com 4b272baf50 Fix bug 86093 - Tab chars in html source show up as "[]" (square) in Error Console
(replace all whitespace characters with spaces)
p=Simon Bunzli <zeniko@gmail.com>
r=gavin, sr=neil
2007-03-01 07:17:54 +00:00
gavin%gavinsharp.com f034027cba Bug 250156: fix doctypes, patch by Wei-ju Wu <weiju@web.de>, r=me, daniel@glazman.org 2006-10-13 17:08:26 +00:00
timeless%mozdev.org 1568aa6406 Bug 348627 O(N^2) or worse algorithm in error console
algorithm by neil, function per Seno.Aiko@gmail.com, whatever's left of the patch is by me :)
r=neil sr=neil
2006-09-17 01:59:37 +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
martijn.martijn%gmail.com 06ef4ead88 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 4ac8d1a955 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 b9b66cc05b 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
neil%parkwaycc.co.uk 111c024893 Bug 328932 Make JS Console evaluate with chrome principal again r=bz sr=jag 2006-03-02 23:55:57 +00:00
bugzilla%arlen.demon.co.uk c4f6eae36e 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
timeless%mozdev.org 5e6c08c023 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
timeless%mozdev.org 78cf256de9 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
bsmedberg%covad.net 4e7256ad3f 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
neil%parkwaycc.co.uk e8389a8170 Bug 282253 JS Console doesn't clear properly r+sr=bz a=brendan 2005-02-17 08:59:45 +00:00
neil%parkwaycc.co.uk eeabc57b3d Clean up use of QueryInterface in consoleBindings.xml b=179268 r=timeless sr=bz 2005-02-07 17:39:11 +00:00
Stefan.Borggraefe%gmx.de 075913b6db Bug 277342: JS Console behaving incorrectly with right-click on source file
r=mconnor, sr=neil
2005-01-31 00:26:02 +00:00
gerv%gerv.net aa835b77c5 Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-17 16:52:41 +00:00
neil%parkwaycc.co.uk e26e73ec20 Bug 158475 JS console should allow multiple evaluations of const x = Math.random(); x * x; r=timeless sr=roc 2004-01-20 00:14:31 +00:00
neil%parkwaycc.co.uk f47f31c191 Bug 133606 getAnonymousElementByAttribute now works r=caillon sr=bz 2003-12-19 21:47:21 +00:00
neil%parkwaycc.co.uk 36ac591c40 Bug 126216 allow wrapping of error messages in JS console r=timeless sr=bz a=asa 2003-08-12 10:35:48 +00:00
rbs%maths.uq.edu.au 4db8de159a Show line numbers on the status bar of view-source in combination with mouse clicks, caret browsing (hit F7), goto line (Ctrl+L), and selection movements. Patch by Christian Schmidt <bugzilla@christian.schmidt.name>, b=15364, r=neil, sr=bz 2003-07-16 07:01:32 +00:00
seawood%netscape.com 8f112a4226 Removing old cfm build files. Use the CFM_LAST_RITES tag to resurrect. r=macdev 2003-06-10 21:18:27 +00:00
bzbarsky%mit.edu 6b9421960f Add a "Go to line" option to the Edit menu in View Source (bug 104383). Make
the links in the JS console automatically go to the right line in View Source
(bug 79612).  Patch (in bug 104383) by christian@schmidt.net (Christian
Schmidt) with some selection fu from rbs, r=neil, sr=me, a=asa
2003-05-21 02:23:13 +00:00
timeless%mozdev.org 4c19bba298 Bug 99328 can't copy entries in javascript console to X primary selection (copy to clipboard works)
patch by neil@parkwaycc.co.uk r=akkana sr=bz
2002-12-11 14:02:19 +00:00
gilbert.fang%sun.com e203773e52 Bug 183167: Buttons in JavaScript Console need accesskeys
Adding accesskey attributes in xul and key definition in corrosponding dtds.
patch=jessie.li, r=kyle.yuan, sr=jaggernaut.
2002-12-04 02:16:07 +00:00
timeless%mozdev.org e8d77d2171 Bug 164664 JS console evaluation ignores leading whitespace
patch by neil@parkwaycc.co.uk r=caillon sr=bz
2002-11-15 14:43:07 +00:00
timeless%mozdev.org 39a72d8736 Bug 136130 JavaScript Console is missing the new Windows menu
patch by neil@parkwaycc.co.uk r=timeless sr=bz
2002-11-15 14:36:21 +00:00
gerv%gerv.net ee117885c5 Bug 154765 - Cleaning up Contributors references after relicensing. Patch by riceman+bmo@mail.rit.edu; r=gerv, auto-sr=brendan. 2002-08-10 08:39:43 +00:00
seawood%netscape.com 8ae6c40f5d Removing old nmake build makefiles. Bug #158528 r=pavlov 2002-08-10 07:55:43 +00:00
alecf%netscape.com 3703f3c61b bug 157624 - prep for freezing nsISupports* primitives by renaming the string classes appropriately
nsISupportsString  -> nsISupportsCString
nsISupportsWString -> nsISupportsString
r=dougt, sr=jag
2002-08-06 00:53:19 +00:00
sicking%bigfoot.com 63491b7c1b Bug 119317: move the "inherits" attribute to the xbl namespace for most clients.
r=hixie sr=hyatt
2002-04-13 14:25:38 +00:00
blakeross%telocity.com 99bd24d389 125181 - add pref to filter chrome:// errors in javascript console. r=ben sr=hewitt a=asa 2002-02-27 00:42:51 +00:00
timeless%mac.com bc10522c8d Bug 114396�JS evaluation result is not displayed in the JS console
patch by neil@parkwaycc.co.uk r=doron sr=hewitt
2002-01-11 19:45:00 +00:00
hewitt%netscape.com cf6814fee2 113230 - reversing js console sort order is slow (patch by neil@parkwaycc.co.uk), r=blake, sr=me 2001-12-20 10:22:33 +00:00
hewitt%netscape.com e16a5fce6d 93839 - tooltiptext should work without specifying tooltip, r=pinkerton, sr=hyatt 2001-12-04 22:38:40 +00:00
timeless%mac.com a30f965d0c Bugzilla Bug 110271 Right Click->Copy doesn't work in JSConsole
patch by biesi r=timeless sr=blake
2001-11-27 21:36:31 +00:00
rjc%netscape.com e5077bf2e5 Fix bug # 75772: On Mac OS X, add support for window toolbar button which hides/shows toolbar buttons. r=ben sr=hyatt 2001-11-27 01:47:41 +00:00
blakeross%telocity.com ef455cc861 107642 - XUL syntax/cleanup landing. Fixes 94470, 96008, 96019, 76800, 102637, 80399, 108303, and removes over a thousand unnecessary or nonsensical attributes. Also fixes 108302, 102366, 102367, 105815. r=sspitzer,cmanske on appropriate parts sr=ben 2001-11-03 04:17:02 +00:00
pinkerton%netscape.com 2f72d451ca remove prefs and quit from edit/file menus on osx (they're in the app menu now). r=sdagley/sr=blake,smfr. bug#68098 2001-10-19 14:13:20 +00:00
timeless%mac.com 1e5de70924 Bugzilla Bug 99067 Javascript console has a small unskinned area
by neil@parkwaycc.co.uk r=timeless, sr=hewitt
2001-10-03 11:19:05 +00:00
hewitt%netscape.com a0bd804923 95876 - Support <button type='checkbox'/>, r=blake, sr=hyatt 2001-10-02 03:06:51 +00:00
stephend%netscape.com 92236ffdae Bug 80120. Implement tooltips for toolbar's expand/collapse widgets. r=german,jglick,sspitzer,robinf,cmanske sr=sspitzer 2001-10-01 04:54:14 +00:00
blakeross%telocity.com e00337b6a2 Fixing js strict warning about undefined property this.mSelectedItem. sr=ben 2001-10-01 03:49:12 +00:00
gerv%gerv.net f385eb981a Relicensing Round 1, Take 2. Most C-like NPL files -> NPL/GPL/LGPL. Bug 98089. 2001-09-28 20:14:13 +00:00
blakeross%telocity.com 1dcac07d75 (and removing now-unnecessary class...) 2001-09-23 20:07:18 +00:00
blakeross%telocity.com ad6f6c6e75 fallout from hewitt's syntax change. sr=hewitt 2001-09-23 20:07:00 +00:00
hewitt%netscape.com 7281a4d7cd 97574 - Implement toolbarbutton and kill menubutton (except outliner.css), r=blake, sr=hyatt 2001-09-20 07:08:29 +00:00