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

57522 Коммитов

Автор SHA1 Сообщение Дата
thayes%netscape.com ce66949116 Initialize SECItem values in ATOB_ routines to avoid PR_Assert for previously
allocated data buffers in the NSS versions of these routines.
2000-04-06 00:26:24 +00:00
thayes%netscape.com 1a2f997a52 Change handling of hash table for OSCP hashes to delete both hash key and
associated value in the hashtable "free entry" routine.  Fixes a memory leak.
(Re Netscape bug: 390117)
2000-04-06 00:24:43 +00:00
pavlov%netscape.com 9e4a425805 fix build problems 2000-04-06 00:17:39 +00:00
repka%netscape.com 39ba886209 Add a trailing CRLF; the encoder doesn't. 2000-04-06 00:15:54 +00:00
rogerl%netscape.com 047b74d5c6 Resolved branch targets 2000-04-06 00:04:11 +00:00
beard%netscape.com f1388bf5a6 removed usage of labels (duh) 2000-04-05 23:57:51 +00:00
evaughan%netscape.com 2cf22cf97d Fixes for bugs
#34079 (context menus)
#34673 (grid crashes)
(Crash opening many of the editor dialogs)

-r hyatt -a leaf
2000-04-05 23:46:48 +00:00
bruce%cybersight.com ccc89262ce Fix build bustage. a=leaf,mulled=dveditz 2000-04-05 23:43:49 +00:00
rogerl%netscape.com d5b0b5bc32 typedef'd instructions 2000-04-05 23:41:58 +00:00
svn%xmlterm.org 49e255a552 xmlterm changes only, should not affect default SeaMonkey build;
(blanket a=leaf)
Fixed minor typos causing Solaris bustage
2000-04-05 23:40:39 +00:00
jst%netscape.com 04dda4c43b Fixing unix objdir build bustage. r,a=leaf 2000-04-05 23:26:15 +00:00
rjc%netscape.com 156f926ff9 Fix bug # 34557: choosing a new search category needs to update the list of engines. Review: waterson Approval: leaf 2000-04-05 23:16:22 +00:00
danm%netscape.com 8447f4f8fd bug 34631 -- host window was forcing itself above popup menus created from clicks in window content. r=saari a=leaf 2000-04-05 23:11:44 +00:00
alecf%netscape.com 178d6983cb fix for #34199 r=sspitzer a=leaf
when enumerating preferences, build up the list before the callback is called, instead of while the hash table is being enumerated
2000-04-05 23:09:04 +00:00
evaughan%netscape.com e709674483 Fix for PDT bugs #34056, #34280 (endor focus bug and tree sorting bug) 2000-04-05 23:02:29 +00:00
jim_nance%yahoo.com 84e20f258d Fix for bug 34543. Compile problem under Tru64 Unix.
a=leaf.  This is #ifdefed for Tru64 Unix, but if it causes
bustage and I am not on IRC, you can get me at 919.859.3885
2000-04-05 22:37:01 +00:00
robodan%netscape.com dfa5e05856 Add some initial series support 2000-04-05 21:55:54 +00:00
edburns%acm.org 453a9616da bug: http://bugzilla.mozilla.org/show_bug.cgi?id=34665
This change replaces all printfs in src_moz with calls to PR_LOG.  No
printfs should appear in src_moz anymore.

You won't see any console output from native code unless you define

NSPR_LOG_MODULES=webclient:3

in your environment.  Furthermore, if you want PR_LOG statements in
webclient to go to a file instead, define

WEBCLIENT_LOG_FILE=C:\VALIDDIR\filename.txt

in your environment.  This file will get created fresh each time, since
PR_LOG uses fopen(filename, "w").

New Files:

I've created ns_globals.h, included from jni_util.h.  ns_globals.h holds
an extern * to a struct used in the PR_LOG calls.

Significant changes:

WrapperFactoryImpl.cpp

nativeAppInitialize(){

Added:

#if DEBUG_RAPTOR_CANVAS
    prLogModuleInfo = PR_NewLogModule("webclient");
    const char *webclientLogFile = PR_GetEnv("WEBCLIENT_LOG_FILE");
    if (nsnull != webclientLogFile) {
        PR_SetLogFile(webclientLogFile);
        // If this fails, it just goes to stdout/stderr
    }
#endif
}

All the other files in this checkin follow the this pattern:

Before checkin:

       printf("InitMozillaStuff(%lx): Create the Event Queue for the UI thread...\n",
               initContext);

After checkin:

    if (prLogModuleInfo) {
        PR_LOG(prLogModuleInfo, 3,
               ("InitMozillaStuff(%lx): Create the Event Queue for the UI thread...\n",
               initContext));
    }

See http://lxr.mozilla.org/mozilla/source/nsprpub/pr/include/prlog.h#190

for the definition of PR_LOG
2000-04-05 21:38:27 +00:00
beard%netscape.com 76e3fd2f85 Added default case to avoid warning 2000-04-05 21:26:01 +00:00
mscott%netscape.com 42a52d6dbd Bug #34561 --> we were reporting false timeouts with connection based protocols
r=ruslan,warren
a=granrose
2000-04-05 21:15:44 +00:00
beard%netscape.com 528d7eb22f added "globals", labels parameter for branches, combined some Instruction_N<> typedefs. 2000-04-05 20:33:41 +00:00
beard%netscape.com 9a69888729 added labels parameter. 2000-04-05 20:29:09 +00:00
beard%netscape.com 391d9767eb added Instruction::opcode(), and Instruction_N::oN(), and ICodeGenerator::getLabels(). 2000-04-05 20:28:17 +00:00
beard%netscape.com 59cf8293ac moved declaration of lgBasicAlignment & basicAlignment inside the include guard. 2000-04-05 20:26:49 +00:00
wtc%netscape.com f5bda1e48e Bugzilla bug #29427: restore the realclean/clobber_all targets to their
original behavior.
Modified files: Makefile, Makefile.in, config/rules.mk
2000-04-05 20:18:13 +00:00
edburns%acm.org 4e9de03fcb DOESN'T IMPACT SEAMONKEY since it's inside
!ifdef JDIRS.

a=leaf
r=leaf
author=Steven Green <steven@surfcast.com>

bug: http://bugzilla.mozilla.org/show_bug.cgi?id=34614

Make it so clobber_all, as well as clobber: causes java .class files
in packages defined in JDIRS to be deleted.
2000-04-05 18:56:00 +00:00
rogerl%netscape.com c0c155dec7 added missing semi in win32 case 2000-04-05 18:20:02 +00:00
beard%netscape.com 96f9207cc7 added interpreter.cpp/.h 2000-04-05 18:06:04 +00:00
evaughan%netscape.com e3dac533f2 Last solaris build bustage fix. 2000-04-05 08:20:24 +00:00
evaughan%netscape.com 7dfe6d3f2e fix for solaris 2000-04-05 07:35:13 +00:00
evaughan%netscape.com 1e652fce03 Possible fix for solaris bustage. 2000-04-05 07:27:59 +00:00
cls%seawood.org f0bb29f732 Forgot MOZ_REGISTRY_LIBS needed for os/2. 2000-04-05 06:58:57 +00:00
warren%netscape.com 0bbf396dfc Fix to not call OnStartRequest if channel has been canceled. Bug #31957 2000-04-05 06:46:00 +00:00
dveditz%netscape.com 1065015817 making the StringBundleService use threadsafe ISupports so I can proxy it 2000-04-05 06:44:17 +00:00
evaughan%netscape.com dc814064c0 1) Fixed assertion in nsGfxTextFrame
2) More fixes to Grid widget
2000-04-05 06:41:27 +00:00
brendan%mozilla.org eb7b547e77 Fix 22048 and 33391 (see bugs for details; r=jband@netscape.com). 2000-04-05 06:39:11 +00:00
sgehani%netscape.com ee99dcabef Don't have access to a solaris build: ifdef'ing for linux only. 2000-04-05 06:27:26 +00:00
cls%seawood.org 7ff230453f Added newline to end of these files to placate the HP compiler.
So when are we going to make build/unix/print-non-newline.sh part of the cvs-commit filter?
2000-04-05 06:18:10 +00:00
rickg%netscape.com 359508091b update nsStringX classes; not part of build 2000-04-05 06:11:03 +00:00
beard%netscape.com 8a75ea3668 linux fixes 2000-04-05 06:10:53 +00:00
cls%seawood.org 3c1876ab59 Minor changes to incoporate OS/2 into our build system. Bug #34106
We now set MOZ_{JPEG,ZLIB,PNG}_{CFLAGS,LIBS}, XPCOM_LIBS, MOZ_COMPONENT*_LIBS, WIDGET_DLL, GFXWIN_DLL and MOZ_JS_LIBS in configure.
Added os2 specific arguments to configure.
Added os2 target arch section to configure.
Modified a handful of Makefile.ins to use MOZ_JS_LIBS, MOZ_COMPONENT_LIBS, & EXTRA_DSO_LIBS where necessary.
2000-04-05 06:08:04 +00:00
beard%netscape.com ab11ac751b first crack at an icode interpreter 2000-04-05 06:05:57 +00:00
rickg%netscape.com b281e56cd7 improvements to string testbed to test perf 2000-04-05 06:04:12 +00:00
dveditz%netscape.com 4bad08f753 fixing thread-safety issues 2000-04-05 06:02:58 +00:00
waterson%netscape.com 767e2f833f Bug 29507. Clean up PresShell refcounting. r=troy 2000-04-05 05:58:06 +00:00
bryner%uiuc.edu d5c8eb765a Making nsTXTToHTMLConv implement nsITXTToHTMLConv. r=valeski. 2000-04-05 05:53:35 +00:00
sgehani%netscape.com fbcd795a25 Turning on Unix installer for GTK enabled environments. [b = 16300] 2000-04-05 05:52:30 +00:00
bryner%uiuc.edu e896db9863 Adding nsITXTToHTMLConv.idl to the build on Windows and Unix. 2000-04-05 05:49:34 +00:00
waterson%netscape.com d4d1bc17e4 Fix windows bustage introduced trying to fix solaris bustage. 2000-04-05 05:48:33 +00:00
dveditz%netscape.com 27ce2cfd85 bugs 20044 and 30698 2000-04-05 05:47:50 +00:00