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

55073 Коммитов

Автор SHA1 Сообщение Дата
akkana%netscape.com 9a46ef9071 Bug 20207, extra lines in textarea (r=buster) 2000-03-14 03:01:56 +00:00
jdunn%netscape.com 119f5cc180 just adding 'newlines' UGH! 2000-03-14 03:01:38 +00:00
slamm%netscape.com d83708078a Change 'Search Results' to 'Search' 2000-03-14 03:01:28 +00:00
slamm%netscape.com 6fee1c9b64 Use simplified CHROME rules. Use default dirs for install locations. 2000-03-14 03:01:26 +00:00
akkana%netscape.com 31aa6bfb8b 17883, indentation spaces (from Daniel Bratell, bratell@lysator.liu.se),
30380, blockquote should be block (also from Daniel),
6079, URLs surrounded by quotes *and* angle brackets (from Ben Bucksch,
      mozilla@bucksch.org),
translate test into perl (so it will eventually be runnable on mac)
 and fix up some old tests (me).
2000-03-14 03:01:15 +00:00
slamm%netscape.com 77970a77ed Clean up clean targets. Use defines from autoconf.mk.in for build tools (*_TOOLS). Simplify CHROME rules (combine them into one shell process). 2000-03-14 03:00:52 +00:00
slamm%netscape.com c99b3e25cc Add flag to avoid multiple inclusions. Use defines from autoconf.mk.in for tool locations (supports 3rd party builds). Move include of insure.mk from autoconf.mk.in to config.mk 2000-03-14 03:00:38 +00:00
slamm%netscape.com 3e35376685 Add flag to avoid multiple inclusions. 2000-03-14 03:00:13 +00:00
leaf%mozilla.org b56f318f21 Automated update 2000-03-14 03:00:12 +00:00
slamm%netscape.com 4d8c5048d0 Add defines for tool locations (supports 3rd party builds). Move insure include into config.mk 2000-03-14 03:00:04 +00:00
slamm%netscape.com c58efe16ed Rename load-mozconfig.sh to mozconfig2configure. 2000-03-14 03:00:00 +00:00
slamm%netscape.com 680f6a92cd Pass MOZ_TOPSRCDIR to altoptions.m4. This allows third parties (like netscape) to refer to the mozilla copy rather than copying it (and mozconfig2configure and mozconfig-find) into their own tree. 2000-03-14 02:59:54 +00:00
slamm%netscape.com 614adf6c89 Remove obsolete libs target. Remove clean targets and let regular make handle it. Use new names for mozconfig scripts. 2000-03-14 02:59:43 +00:00
slamm%netscape.com c31d3e0168 Add GARBAGE for clean/distclean targets. Remove unused real_* targets. 2000-03-14 02:59:36 +00:00
akkana%netscape.com 18caae6b21 31438: stealth msg compose (r=ducarroz) 2000-03-14 02:59:13 +00:00
akkana%netscape.com 4571562a1a 25645, fix delete line and kill to end 2000-03-14 02:58:14 +00:00
akkana%netscape.com 4a84d12c3c Fix paste as quotation 2000-03-14 02:57:38 +00:00
akkana%netscape.com 00120ab9c4 Add a helpful comment 2000-03-14 02:57:10 +00:00
akkana%netscape.com 5e4338d580 6085, middle mouse should load link in new window (r=alecf,puetzk@iastate.edu);
24571, middle-mouse paste should be pref-able (r=mcafee);
plus nonmodal pref window (r=pavlov).
2000-03-14 02:56:48 +00:00
pavlov%netscape.com 23ecb3ae41 remove all the menu stuff from the build to fix 21652 2000-03-14 02:55:59 +00:00
sfraser%netscape.com fb4bf3c5f0 Fix so that bugs like 31710 are easier to find in future -- printf when opening a file fails. r=pavlov 2000-03-14 02:10:20 +00:00
sfraser%netscape.com e33c525278 Fix for 31710 -- install psm.js so that the mac build starts up. r=pavlov, a=granrose 2000-03-14 02:09:39 +00:00
norris%netscape.com 3c721d3a11 31251 NervousText.js applet doesn't work 2000-03-14 01:20:45 +00:00
wtc%netscape.com 10e70e307b Bugzilla bug #31697: Mac OS X (Rhapsody) port, based on the patch that
Stuart Parmenter <pavlov@netscape.com> sent to me.
Modified files: Rhapsody.mk, arch.mk, _pth.h, _rhapsody.h, prlink.c,
rhapsody.c, uxproces.c, uxrng.c, ptio.c, pr/tests/Makefile,
pr/tests/Makefile.in
2000-03-14 00:43:31 +00:00
wtc%netscape.com 355929f21a Fixed an error in the previous checkin. 2000-03-14 00:33:02 +00:00
beard%netscape.com fbc3531947 added mozilla/js/rhino/org/mozilla/javascript/tools/jsc/Main.java 2000-03-14 00:24:23 +00:00
mcafee%netscape.com b591ade266 AliveTest warning comment. 2000-03-13 23:47:48 +00:00
mcafee%netscape.com fe90a7b381 MailNewsTest changes. 2000-03-13 23:44:49 +00:00
sdv%sparc.spb.su 4a530bd8e0 added target to make java classes on windows 2000-03-13 23:03:07 +00:00
norris%netscape.com abdd921231 generalize on number of threads, add synchronization point so test case behaves as advertised 2000-03-13 21:45:02 +00:00
danm%netscape.com 92ee4bff39 adding webBrowser.mcp (the embedding project) to the build 2000-03-13 19:27:01 +00:00
edburns%acm.org 8f986c0f07 This checkin adds API to cleanly destroy a BrowserControl instance. It
also modifies EmbeddedMozilla so this code is exercised.

I have changed EmbeddedMozilla to be a stub-like class that simply
displays a Frame with a single Button, titled "New Window".  Pressing
this button causes an EMWindow to be created and displayed.  EMWindow is
basically the former EmbeddedMozilla renamed, with modifications to the
WindowListener implementation to call the BrowserControl deallocation
method.

I've added a delete() method to ImplObect:

 * I know Java has automatic garbage collection and all, but explicitly
 * adding a delete method helps the gc algorithm out. <P>

 * Subclasses should override this and call super.delete() at the end of
 * their overridden delete() method.

 * @see org.mozilla.webclient.wrapper_native.ImplObjectNative#delete

and ImplObjectNative:

 * Note how we call super.delete() at the end.  THIS IS VERY IMPORTANT. <P>

 * Also, note how we don't de-allocate nativeWebShell, that is done in
 * the class that owns the nativeWebShell reference, WindowControlImpl.

 * ImplObjectNative subclasses that further override delete() are <P>

<CODE><PRE>
BookmarksImpl.java
EventRegistrationImpl.java
NativeEventThread.java
WindowControlImpl.java
</PRE><CODE> <P>

 * All other ImplObject subclasses don't have any local Ivars and thus
 * don't need to override delete().

I've added a delete() method to BrowserControlImpl:

 * Called from BrowserControlFactory.deleteBrowserControl() <P>

 * The order of deletion of objects is very important! <P>

 * We don't allow deletion if the Canvas is showing. <P>

In BrowserControlImpl's delete(), the important delete()s is for
WindowControlImpl:

 * First, we delete our eventThread, which causes the eventThread to
 * stop running.  Then we call nativeDestroyInitContext(), which
 * deallocates native resources for this window.

As stated above, NativeEventThread.delete() is called:

 * This is a very delicate method, and possibly subject to race
 * condition problems.  To combat this, our first step is to set our
 * browserControlCanvas to null, within a synchronized block which
 * synchronizes on the same object used in the run() method's event
 * loop.  By setting the browserControlCanvas ivar to null, we cause the
 * run method to return.

After all of this deleting, we return from
BrowserControlFactory.delete().
2000-03-13 18:44:32 +00:00
norris%netscape.com 5726b14bcc Implement distinction between function statements, function expressions, and function expression-statements. 2000-03-13 18:27:42 +00:00
norris%netscape.com 879940613f Fix 31639 Oldstyle Java property method names no longer work with defineClass 2000-03-13 17:12:36 +00:00
leaf%mozilla.org 5c770cf8f8 updating nspr tag to magical, stringently controlled rolling branch tag,
making client.mak update itself on each pull.
2000-03-13 15:56:44 +00:00
brade%netscape.com 63d846ddd6 move NavSecurityOverlay.css into skin (from content) 2000-03-13 15:55:19 +00:00
leaf%mozilla.org 2827ee7cbd updating nspr tag to magical, stringently controlled rolling client branch
tag.
2000-03-13 15:54:11 +00:00
brade%netscape.com 173d5c8a4c move to new nspr tag; install netwerk:security:browser resources 2000-03-13 15:53:59 +00:00
svn%xmlterm.org 38c480f9ec xmlterm changes only (not part of the default build).
Improvements to the user interface. User level-option and icons-style option
added. Keyboards shortcuts too. Compiles with M14 and March10 source.
2000-03-13 15:48:32 +00:00
hyatt%netscape.com 24ed16214d handling disabled case for checkboxes and radios. 2000-03-13 13:05:46 +00:00
Jerry.Kirk%Nexwarecorp.com d1539159d3 Removing "#include <sys/un.h>" because it is not present under Neutrino
and VMS and it does not appear to be needed either.
r=colin,cls
2000-03-13 13:03:52 +00:00
hyatt%netscape.com c2b1a299ab Making menus give feedback even when disabled. r=ben 2000-03-13 10:37:57 +00:00
hyatt%netscape.com e8aba19114 Fixing two bugs in menulist. r=ben 2000-03-13 10:20:34 +00:00
cls%seawood.org 6e33e7ef4f Remove unconditional define of HAVE_DEV_ZERO for solaris.
Add NEED_USLEEP_PROTOTYPE define for osf1.
Replace the osf specific ifdefs in widget with NEED_USLEEP_PROTOTYPE ifdefs.
2000-03-13 08:35:57 +00:00
tbogard%aol.net 8872783b43 Changed to a generic module. 2000-03-13 07:21:36 +00:00
tbogard%aol.net 9984a228f7 Made the constructor public so we can access it from the generic module code. 2000-03-13 07:11:21 +00:00
tbogard%aol.net edfaebeb7d Made the constructor public. 2000-03-13 07:09:54 +00:00
dcone%netscape.com e48a73e9eb Changed the SelectPallete attribute for the forground from true to false, it will
now select a palette that is not a background palette.  r=rods b=25979
2000-03-13 03:38:52 +00:00
buster%netscape.com 80aac37961 bug 28553. removed pref that controlled previous fix, since that fix is good to go.
r=troy
a=rickg
2000-03-13 02:40:18 +00:00
buster%netscape.com 358fdaa1f4 bug 31108. fixed by manually positioning the view whenever reflow changes the frame
r=rickg
a=rickg
2000-03-13 02:38:06 +00:00