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

57558 Коммитов

Автор SHA1 Сообщение Дата
edburns%acm.org 383322dfbb 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 f1fef2ea55 Added default case to avoid warning 2000-04-05 21:26:01 +00:00
mscott%netscape.com c8d4aa91c4 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 f8999eeb8f added "globals", labels parameter for branches, combined some Instruction_N<> typedefs. 2000-04-05 20:33:41 +00:00
beard%netscape.com 3e4629d808 added labels parameter. 2000-04-05 20:29:09 +00:00
beard%netscape.com fab870daa5 added Instruction::opcode(), and Instruction_N::oN(), and ICodeGenerator::getLabels(). 2000-04-05 20:28:17 +00:00
beard%netscape.com 1e6377ccaa moved declaration of lgBasicAlignment & basicAlignment inside the include guard. 2000-04-05 20:26:49 +00:00
wtc%netscape.com 1b1f4e466b 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 9fe73e96a9 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 7925e76257 added missing semi in win32 case 2000-04-05 18:20:02 +00:00
beard%netscape.com 6e3b668298 added interpreter.cpp/.h 2000-04-05 18:06:04 +00:00
evaughan%netscape.com ff96ed1fb9 Last solaris build bustage fix. 2000-04-05 08:20:24 +00:00
evaughan%netscape.com fa23feeb41 fix for solaris 2000-04-05 07:35:13 +00:00
evaughan%netscape.com dcfc545a3d Possible fix for solaris bustage. 2000-04-05 07:27:59 +00:00
cls%seawood.org ebf0ac94f8 Forgot MOZ_REGISTRY_LIBS needed for os/2. 2000-04-05 06:58:57 +00:00
warren%netscape.com f1f675ff42 Fix to not call OnStartRequest if channel has been canceled. Bug #31957 2000-04-05 06:46:00 +00:00
dveditz%netscape.com 546ab964f8 making the StringBundleService use threadsafe ISupports so I can proxy it 2000-04-05 06:44:17 +00:00
evaughan%netscape.com a00a77c17e 1) Fixed assertion in nsGfxTextFrame
2) More fixes to Grid widget
2000-04-05 06:41:27 +00:00
brendan%mozilla.org 889c987de0 Fix 22048 and 33391 (see bugs for details; r=jband@netscape.com). 2000-04-05 06:39:11 +00:00
sgehani%netscape.com e21b3eaff1 Don't have access to a solaris build: ifdef'ing for linux only. 2000-04-05 06:27:26 +00:00
cls%seawood.org 0bb85bf87e 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 30e0f8aa94 update nsStringX classes; not part of build 2000-04-05 06:11:03 +00:00
beard%netscape.com d9f7558a70 linux fixes 2000-04-05 06:10:53 +00:00
cls%seawood.org adef1ac6f6 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 8283b89064 first crack at an icode interpreter 2000-04-05 06:05:57 +00:00
rickg%netscape.com 8394e82e58 improvements to string testbed to test perf 2000-04-05 06:04:12 +00:00
dveditz%netscape.com 3c8eae5a14 fixing thread-safety issues 2000-04-05 06:02:58 +00:00
waterson%netscape.com f1df479af5 Bug 29507. Clean up PresShell refcounting. r=troy 2000-04-05 05:58:06 +00:00
bryner%uiuc.edu 1639ba6502 Making nsTXTToHTMLConv implement nsITXTToHTMLConv. r=valeski. 2000-04-05 05:53:35 +00:00
sgehani%netscape.com b439343a9a Turning on Unix installer for GTK enabled environments. [b = 16300] 2000-04-05 05:52:30 +00:00
bryner%uiuc.edu 79b1a41cae Adding nsITXTToHTMLConv.idl to the build on Windows and Unix. 2000-04-05 05:49:34 +00:00
waterson%netscape.com 7b851fb8ab Fix windows bustage introduced trying to fix solaris bustage. 2000-04-05 05:48:33 +00:00
dveditz%netscape.com 466ac620a9 bugs 20044 and 30698 2000-04-05 05:47:50 +00:00
sgehani%netscape.com 0c6f6a4eea Making xpistub work on Unix... again! 2000-04-05 05:47:39 +00:00
bryner%uiuc.edu 7ecfb4869f This CID definition is not needed. 2000-04-05 05:47:29 +00:00
dveditz%netscape.com 5a5d5545e4 fixing IDL casing convention 2000-04-05 05:45:24 +00:00
valeski%netscape.com 657b1bb8b9 adding nsITXTToHTMLConv.idl 2000-04-05 05:34:36 +00:00
bienvenu%netscape.com 138ad12155 adding some default server prefs for imap delete, fetch by junks, mpod 2000-04-05 05:31:14 +00:00
waterson%netscape.com 921a7f1697 Renamed to nsXULTemplatebuilder.cpp 2000-04-05 05:22:14 +00:00
bryner%uiuc.edu 251632c042 Adding a new interface for the text to HTML converter. 2000-04-05 05:21:13 +00:00
waterson%netscape.com 79215cf024 Fix build bustage on Solaris Workshop compiler. 2000-04-05 05:18:42 +00:00
waterson%netscape.com f835a34327 Bug 29507. Clean up PresShell refcounting. r=troy 2000-04-05 05:17:36 +00:00
sgehani%netscape.com 9442168f67 * Fixing ui/engine thread communication flakiness.
* Expecting .xpis in a tucked away ./xpi/ dir now.
* Renamed installer binary target to mozilla-installer.

Not part of build just yet.

b = 16300
2000-04-05 05:16:05 +00:00
svn%xmlterm.org 8a61ef0d28 xmlterm changes only;
Windows mode implemented
2000-04-05 05:15:14 +00:00
ftang%netscape.com c5728a0a70 fix 27886. Swap implementation to the new one. 2000-04-05 05:13:52 +00:00
ruslan%netscape.com 600f5592b7 Fix pipelining case when chunk encoding stream is pushed (pipelining is
not a default yet).
2000-04-05 05:08:40 +00:00
sgehani%netscape.com 72f0998b1a Preparing Unix installer automation. Not part of build. Only used by
release.  Can also be used by anyone who wishes to generate a complete Unix
GUI installer from a local mozilla tree:
    prompt > perl deliver.pl
with no args defaults all required args for you and delivers a fully usable
GTK/pthreads requiring installer to
    mozilla/installer/sea/mozilla-installer.tar.gz
2000-04-05 05:06:29 +00:00
morse%netscape.com a61f227e57 fix bug 34499 don't display Block-Image if image is already blocked 2000-04-05 05:05:09 +00:00
saari%netscape.com 98fe3d4df9 Fixing Mac About menu to reflect Mozilla or Navigator as appropriate. 2000-04-05 04:54:04 +00:00
ruslan%netscape.com be9ac37c1b Fix 34359 - nsSocketTransport timeout should also work while waiting on
actual data, not only while connecting.
2000-04-05 04:49:35 +00:00