Compare commits

..

9741 Commits

Author SHA1 Message Date
(no author)
39b2ec0a84 This commit was manufactured by cvs2svn to create tag 'done'.
git-svn-id: svn://10.0.0.236/tags/done@137851 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 14:21:34 +00:00
igor%mir2.org
028d325296 ClassNameHelper cleanup:
1. It is not passed as a parameter to Interpreter/Codegen, instead Codegen access it directly when necessary.

2. ClassNameHelper.reset method is removed as inherently thread unsafe and data that should be used during compilation of single script is stored in Codegen itself.

3. Instead of a special DefaultClassRepository null is used to indicate that generated classes should not be stored and JavaAdapter is modified to take ClassRepository as a parameter, not ClassNameHelper.


git-svn-id: svn://10.0.0.236/trunk@137850 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 14:21:33 +00:00
igor%mir2.org
092d661e20 When parsing function parameters, collect all parameters names into array instead of generating a separated syntax subtree for them.
git-svn-id: svn://10.0.0.236/trunk@137849 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 13:54:22 +00:00
igor%mir2.org
71467dd4e9 Remove the last argument "args" from generateInit as it is never used.
git-svn-id: svn://10.0.0.236/trunk@137848 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 13:05:38 +00:00
igor%mir2.org
1f59aed911 Make Optimizer class a package private and turn most of its methods into private ones.
git-svn-id: svn://10.0.0.236/trunk@137847 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 12:56:21 +00:00
igor%mir2.org
f83c6e9144 I changed PreorderNodeIterator so a pattern for its usage will be:
PreorderNodeIterator iter = new PreorderNodeIterator();
for (iter.start(tree); !iter.done(); iter.next()) {
    Node node = iter.getCurrent();
    ...
}

instead of

PreorderNodeIterator iter = tree.getPreorderIterator();
Node node;
while ((node = iter.nextNode()) != null) {
}

to allow for more flexible usage and added PreorderNodeIterator.nextSkipSubtree to skip iteration of the last visited node subtree which allows to have simple code  in Optimizer.buildStatementList when iterating over statements.


git-svn-id: svn://10.0.0.236/trunk@137846 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 12:47:45 +00:00
igor%mir2.org
5306e7db78 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=193418 :
The bug caused by a missed check in StmtNodeIterator.nextNode for a possible null result of findFirstInterestingNode inside the search loop which made search to stop preliminary with non-empty stack.

The changes fixe this and integrate StmtNodeIterator into
Optimizer.buildStatementList as StmtNodeIterator was used only by
buildStatementList and the new version is simpler.


git-svn-id: svn://10.0.0.236/trunk@137845 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 10:33:31 +00:00
preed%sigkill.com
e78d94c221 Bug 192877 - State changes on bugs w/ dependancies cause "Use of uninitialized values" in BugMail.pm; r=justdave, bbaetz, a=justdave
git-svn-id: svn://10.0.0.236/trunk@137844 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 08:29:26 +00:00
justdave%syndicomm.com
c825424954 Bug 193286: Field validation errors had the wrong page title
r= gerv, a= justdave


git-svn-id: svn://10.0.0.236/trunk@137843 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 08:03:51 +00:00
jake%bugzilla.org
073097165a Add a little page telling people where the win32 instructions went (NOTE: This file is not generated by Bugzilla-Guide.sgml).
git-svn-id: svn://10.0.0.236/trunk@137842 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 06:12:28 +00:00
wtc%netscape.com
3fefa37933 Bug 193055: the "cat ${file} | while read ...do ... done" construct does
not work under MKS Korn shell on Windows XP.  Replaced it by the equivalent
construct "while read ... do ... done < ${file}".


git-svn-id: svn://10.0.0.236/trunk@137841 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 04:48:13 +00:00
mkaply%us.ibm.com
d3e7d8940f OS/2 only packaging bustage - Mistake with checkin for 106161 causing installing over old Os/2 builds to fail
git-svn-id: svn://10.0.0.236/trunk@137839 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 02:23:39 +00:00
relyea%netscape.com
39cd897ff6 Bug 167756. Address Nelson's review comments. remove socket specific latency
in favor of a slot specific latency test (already done by pk11wrap code).


git-svn-id: svn://10.0.0.236/trunk@137837 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 01:21:25 +00:00
relyea%netscape.com
3ddad1df30 bug193367: Don't blindly copy all the certs from a given S/MIME message into the db.
git-svn-id: svn://10.0.0.236/trunk@137835 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 00:23:04 +00:00
jake%bugzilla.org
823a8de323 <edition/> is not included by default in ldp.dsl so putting version information into the <title/> tag.
This has the added benifit that the version will appear at the top of each .html (and the top of each page on the .pdf version generated by tldp.org).


git-svn-id: svn://10.0.0.236/trunk@137833 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-15 00:05:55 +00:00
igor%mir2.org
34304f5463 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191276 :
The reason for the bug was that omj/optimizer/Optimizer.java when optimizing code for this[name] (see GETELEM switch, line 665) assumed a number context for GETELEM index node unconditionally which is wrong.

The fix uses number context only if [] argument is known for sure to be a number.


git-svn-id: svn://10.0.0.236/trunk@137832 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 23:56:34 +00:00
igor%mir2.org
ff97fb4bbc Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192288 :
The bug was caused by a double call to Codegen.addNumberConstant, the first
time correctly from Codegen.visitLiteral and the second time wrongfully from
the loop in emitConstantDudeInitializers where loop index should be used
instead of calling addNumberConstant. As addNumberConstant would return the
same index for same numbers, the bug surfaces only with NaN as
addNumberConstant does not recognizes already added NaN. The bug also visible
only with optimization set to 1 or higher since only then constant folding can
produce NaN literal.

The fix removes the second call to addNumberConstant and uses
ScriptRuntime.NaNobj for NaNs.


git-svn-id: svn://10.0.0.236/trunk@137831 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 23:53:32 +00:00
igor%mir2.org
6c5f56b786 Make ScriptRuntime.NaN, ScriptRuntime.NaNobj and ScriptRuntime.negativeZero static final again as now a workaround for MS JVM uses Double.longBitsToDouble to get the necessary values.
git-svn-id: svn://10.0.0.236/trunk@137830 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 23:51:28 +00:00
igor%mir2.org
7c54378ac6 I made Context.codeBug public so optimizer can use it.
git-svn-id: svn://10.0.0.236/trunk@137829 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 23:47:11 +00:00
igor%mir2.org
cdf2c93cf5 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192105 :
The reason for the bug is that emitDirectConstructor generates code to call
setPrototype twice instead of setPrototype/setParentScope pair during new JS
object construction. The fix replaces that setup by a single call to
BaseFunction.createObject which is used by Interpreter as well.


git-svn-id: svn://10.0.0.236/trunk@137828 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 22:38:49 +00:00
pschwartau%netscape.com
dbdd5b1a4b Removing skip since bug 191633 has been fixed.
git-svn-id: svn://10.0.0.236/trunk@137827 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 22:37:21 +00:00
igor%mir2.org
12a32c6aea Optimization: In OptFunctionNode.getDirectCallParameterSignature use static strings for common cases of 0, 1 and 2 direct parameters.
git-svn-id: svn://10.0.0.236/trunk@137826 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 22:36:58 +00:00
jkeiser%netscape.com
4b26324c60 Make mousey events targeted properly at textnodes (bug 185889, bug 103055), fix client-side image maps (bug 110072), r=saari@netscape.com, sr=bryner@netscape.com, a=dbaron@dbaron.org
git-svn-id: svn://10.0.0.236/trunk@137825 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:43:06 +00:00
mikep%oeone.com
26f6c59679 Removing incorrect comments.
git-svn-id: svn://10.0.0.236/trunk@137824 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:40:25 +00:00
mikep%oeone.com
eb92dc0e3f Fixing bug 193388. Calendar was editing the global event object, which edited the event's actual time, and changed it even when pressing cancel in edit.
git-svn-id: svn://10.0.0.236/trunk@137823 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:39:28 +00:00
sonja.mirtitsch%sun.com
531e7f55bb bug 193394, change to check returncode of modutil after switching to
fips mode, r=wtc


git-svn-id: svn://10.0.0.236/trunk@137822 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:30:45 +00:00
mostafah%oeone.com
3d94ec55ba Better way to addref
git-svn-id: svn://10.0.0.236/trunk@137821 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:14:42 +00:00
mostafah%oeone.com
ef03a0d915 Windows needs stdlib.h too.
git-svn-id: svn://10.0.0.236/trunk@137820 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 21:03:09 +00:00
igor%mir2.org
a7e7b2fa58 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191633 :
Replace tail recursion in TokenStream.getToken by a loop.


git-svn-id: svn://10.0.0.236/trunk@137819 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 20:20:46 +00:00
igor%mir2.org
45ba1a20c3 Mostly cosmetics: use consistent layout for case statements and add additional {} block around main code in TokenStream.getToken() so the following patch to fix http://bugzilla.mozilla.org/show_bug.cgi?id=191633 will be small.
git-svn-id: svn://10.0.0.236/trunk@137818 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 20:19:07 +00:00
mostafah%oeone.com
5624e5b1c7 Fixed Bug Don't use std::* in mozilla
git-svn-id: svn://10.0.0.236/trunk@137817 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 18:05:46 +00:00
igor%mir2.org
70727d0ea2 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191668 :
Integration of LineBuffer into TokenStream code which now uses a special buffer for unreading of several chars to follow SM more closely. In this way there is no problem with a possible backtracking of 3 chars on failed attempt to match <!-- at the last minus.

TokenStream is also modified to accept a string with a source directly which avoids the need to construct intermediate StringReader in Context and allows to remove DebugReader class which is replaced by a simple function to read all Reader data into string.


git-svn-id: svn://10.0.0.236/trunk@137816 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 17:09:19 +00:00
igor%mir2.org
161afa11f7 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192226 :
Codegen.visitRegularCall should not try to apply the simple call optimization
when firstArgDone is true indicating directly called function. The patch also
replaces generation of code to call new Object[0] by loading the
ScripRuntime.emptyArgs field.


git-svn-id: svn://10.0.0.236/trunk@137815 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 16:55:40 +00:00
igor%mir2.org
cc1a680e6a Use x instanceof Type checks in place of x.getClass() = TypeClass as instanceof is significantly faster then calling getClass.
git-svn-id: svn://10.0.0.236/trunk@137814 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 16:53:14 +00:00
blizzard%redhat.com
1070acbf76 Bug #185160. Crashes due to uninitialized drawing area. Patch from robin.lu@sun.com. Cleaned up by me. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@137813 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 15:11:42 +00:00
mostafah%oeone.com
f7f0453016 Added missing Addref
git-svn-id: svn://10.0.0.236/trunk@137812 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 15:11:00 +00:00
brade%netscape.com
7aea5a7834 add comments, remove warnings, cancel mLoadBlankDocTimer to prevent crash, disable animation of images (bugs 191392, 192976, 191166) r=smfr, kin, brade; a=asa (mLoadBlankDocTimer portion originally submitted by cmanske@netscape.com)
git-svn-id: svn://10.0.0.236/trunk@137811 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 14:56:32 +00:00
mikep%oeone.com
dca766a567 More localization fixes, changing dialog box side for localCalDialog and making localCalDialog and serverDialog persist their width and height.
git-svn-id: svn://10.0.0.236/trunk@137810 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 14:33:13 +00:00
blizzard%redhat.com
9585a5fffb Bug #192718. mozilla-xremote-client links against xpcom when it doesn't need to (round 2.) r/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137809 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 13:17:50 +00:00
neil%parkwaycc.co.uk
65bebb588a Bug 192299 Editing a page when browsing a named anchor should strip off anchor name from url r=brade sr=sfraser a=asa
git-svn-id: svn://10.0.0.236/trunk@137808 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 11:56:49 +00:00
neil%parkwaycc.co.uk
b8e6051c24 Bug 185790 Impossible to remove JavaScript Events in Composer r=brade sr=sfraser a=asa
git-svn-id: svn://10.0.0.236/trunk@137807 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 11:42:10 +00:00
bbaetz%acm.org
6a0d99eb6c Bug 192531 - Bugzilla not properly closing DB statement handles
Change code to work arround a perl < 5.8 leak when localising the tied
statement attributes. Also, clear the sql statestack compat stuff so that
the handles are really dead by the time we disconnect

r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@137806 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 10:37:43 +00:00
neil%parkwaycc.co.uk
755525463b Bug 82547 patch allows Composer to catch mouse events on some form elements r=glazman sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@137805 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 09:59:51 +00:00
aaronl%netscape.com
5ad44d49b3 Bug 191413. Little text changes to keynav pref panel. r=jatin, sr=oeschger, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137804 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 07:52:00 +00:00
aaronl%netscape.com
2869d6fde2 Bug 189775. First keypress cancels currently playing sound. r=neil, sr=alecf, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137803 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 07:50:09 +00:00
aaronl%netscape.com
013c193406 Bug 189193. With find as you type, don't search text docs for links. r=kyle, sr=henry jia, a=dbaron. Bug 190555. Weird find as you type behavior in framed pages. r=caillon, sr=jst, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137802 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 07:47:40 +00:00
wtc%netscape.com
1b135b6354 There should be no token after #endif.
git-svn-id: svn://10.0.0.236/trunk@137801 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 05:32:35 +00:00
jst%netscape.com
0d48d306d6 Fixing bug 189494. Making window.frames replaceable. r=fabian@guisset.org, sr=peterv@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137795 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 01:59:52 +00:00
sicking%bigfoot.com
37c5c969e9 Bug 174713: Make XPath on HTML documents behave consistently and HTML-ish. This makes the XPath-functions name() and local-name() return upper-case names and makes nametests case-insensitive.
r=peterv sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@137794 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 00:59:40 +00:00
ccarlen%netscape.com
6ef0fca06e Bug 193078 - cookies file loses entries if you switch to a new profile and then quit. r=mvl@exedo.nl/sr=darin/a=asa
git-svn-id: svn://10.0.0.236/trunk@137793 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-14 00:32:57 +00:00
shliang%netscape.com
9448f795ca 121998 no secondary highlight color for treerows in aqua/mac classic theme. r=sgehani, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@137792 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 23:10:18 +00:00
shliang%netscape.com
8972a400ad 142148 fix sort widget in sidebar addressbook. r=cavin, sr=sspitzer, a=asa
git-svn-id: svn://10.0.0.236/trunk@137791 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 23:08:10 +00:00
shliang%netscape.com
3283ab8dce hook up help for popup blocking pref panel. r=danm, sr=jag, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137790 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 23:04:42 +00:00
aaronl%netscape.com
3f1ceedd6d Bug 166504. Crash when closing down with accessibility running because of late object release from third party apps. r=jgaunt, sr=jst, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137789 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 22:56:18 +00:00
darin%netscape.com
ffa27faac6 fixes bug 189965 "ANY connection error treated as TCP RST, resulting in "the document contains no data" [was: Yahoo - The connection was refused when attempting to contact rd.yahoo.com]" r=wtc sr=bz a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137787 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 21:33:58 +00:00
blizzard%redhat.com
e6cabaabb5 Bug #193061. Install the ssl libs into the system dir. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@137786 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 21:10:36 +00:00
pkw%us.ibm.com
b2b6f11e84 Bug 163744 - Error message displayed in terminal during startup from
command-line on machines which do no have the GNU md5sum program.
r=bryner@netscape.com, a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@137785 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 20:30:52 +00:00
seawood%netscape.com
cc4d0f90e2 Avoid packaging symlinks in the sdk on *x builds.
Bug #192828 r=leaf a=asa


git-svn-id: svn://10.0.0.236/trunk@137784 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 20:25:42 +00:00
blizzard%redhat.com
d5395a849b Backout my patch to fix bustage.
git-svn-id: svn://10.0.0.236/trunk@137783 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:59:22 +00:00
despotdaemon%netscape.com
ae0b720875 Pseudo-automatic update of changes made by myk@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137782 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:54:11 +00:00
roc+%cs.cmu.edu
a71edf87de Bug 182107. Don't let negative z-index views mess up document ordering. r=kmcclusk,sr=bzbarsky,a=asa
git-svn-id: svn://10.0.0.236/trunk@137780 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:27:58 +00:00
seawood%netscape.com
810e89f091 Fix cross-compiling by replacing hardcoded -L/usr/X11R6/lib
Bug #193062 r=peterl a=asa


git-svn-id: svn://10.0.0.236/trunk@137779 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:24:24 +00:00
bzbarsky%mit.edu
02cfbfbc50 Remove leftover reflow reason hack in fixed-pos reflow. Bug 192291,
r+sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137778 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:10:50 +00:00
bzbarsky%mit.edu
8b9d8cd100 Make %-height kids of fieldsets do the right thing. Bug 191135, r=jkeiser,
sr=roc+moz, a=asa


git-svn-id: svn://10.0.0.236/trunk@137777 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:09:04 +00:00
bzbarsky%mit.edu
b4a6f72636 Dynamic changes to border-collapse should produce the right hint. Bug 191794,
r=bernd, sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137776 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:06:18 +00:00
bzbarsky%mit.edu
967f0132fe Don't use quirky box-sizing for image inputs. Bug 191967, r+sr=dbaron, a=asa
git-svn-id: svn://10.0.0.236/trunk@137775 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:02:28 +00:00
darin%netscape.com
34447d5c95 fixes bug 190860 "trunk topcrash [@ _PR_Getfd]" r=dougt sr=bz a=asa
git-svn-id: svn://10.0.0.236/trunk@137774 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:02:25 +00:00
bzbarsky%mit.edu
681eabe571 Changing from default action to a different one should work (didn't if the
default was "save").  Bug 193054, r=pkw@us.ibm.com, sr=mscott, a=asa


git-svn-id: svn://10.0.0.236/trunk@137773 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 19:00:08 +00:00
blizzard%redhat.com
8adee5b1e0 Bug #192718. mozilla-xremote-client links against xpcom when it doesn't need to. r=dougt, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137772 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 18:57:03 +00:00
kirk.erickson%sun.com
12fcf5e681 Changed License: MPL to MPL/GPL.
git-svn-id: svn://10.0.0.236/trunk@137768 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 18:24:07 +00:00
relyea%netscape.com
38ea33c6f7 Turn off debugging output now that we have the tinderboxen working correctly.
git-svn-id: svn://10.0.0.236/trunk@137767 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 17:41:45 +00:00
mikep%oeone.com
e80f24d674 Fixing problem with double clicking on the tasks list causing text to disappear.
git-svn-id: svn://10.0.0.236/trunk@137766 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 16:44:53 +00:00
mikep%oeone.com
65b439e77a Localizing text so that people can easily translate to another language.
git-svn-id: svn://10.0.0.236/trunk@137765 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 16:37:57 +00:00
mikep%oeone.com
79eb61c624 Adding in check for left mouse button when double clicking, bug 191804.
git-svn-id: svn://10.0.0.236/trunk@137764 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 15:56:09 +00:00
mikep%oeone.com
bbd345a60b Fixing bug 192949, problem with tooltips showing wrong end date for repeating events.
git-svn-id: svn://10.0.0.236/trunk@137763 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 15:48:18 +00:00
mikep%oeone.com
f974a292c0 Adding in refresh method to be able to change the date picker and calendar view on the fly.
git-svn-id: svn://10.0.0.236/trunk@137762 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 15:28:16 +00:00
mikep%oeone.com
c8a2ed1ef1 Fixing bug 192309, event dialog had a tab named "New Event", I've changed it to just "Event", since it didn't make sense when editing.
git-svn-id: svn://10.0.0.236/trunk@137761 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 15:06:53 +00:00
mikep%oeone.com
fe06f96728 Fixing bug 193018 to show proper end date for repeating events in top list view.
git-svn-id: svn://10.0.0.236/trunk@137760 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 15:02:58 +00:00
mikep%oeone.com
d7354229e8 Fixing bug 192311, text entry does nothing for start and end dates. Modified datepicker to call back to callback function when onblur is called.
git-svn-id: svn://10.0.0.236/trunk@137759 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 14:47:10 +00:00
mikep%oeone.com
55b32f7745 Fixing problem with webcal:// urls not working.
git-svn-id: svn://10.0.0.236/trunk@137758 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 14:33:04 +00:00
mikep%oeone.com
9125c952b6 Applying patches from bug 181550 to fix problems in the to do list, so that colors show up properly again. Thanks to Eric Belhaire for this fix.
git-svn-id: svn://10.0.0.236/trunk@137757 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 13:59:37 +00:00
neil%parkwaycc.co.uk
45f4cdfacc Bug 183331 Message Views feature: UI Nits r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137756 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 13:27:50 +00:00
peterv%netscape.com
d2c3bc183c Fix for bug 192794 (Leaking documents loaded through XSLT stylesheet). r=Pike, sr=jst, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137755 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 12:49:13 +00:00
locka%iol.ie
b9c67caae1 Fix use of IObjectSafety, cleanup nsAxSecurityPolicy.js & subscribe to hosting flag pref changes, using medium settings as the default. b=191758 r=dbradley@netscape.com sr=alecf@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137754 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 12:17:21 +00:00
bryner%netscape.com
95d98f46e1 Landing changes from CHIMERA_M1_0_1_BRANCH. Code that depends on other mozilla changes is #ifdef'd BRANCH_CHANGES_NEED_MERGED.
git-svn-id: svn://10.0.0.236/trunk@137753 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 10:29:21 +00:00
bryner%netscape.com
2d15102e1c Landing changes from CHIMERA_M1_0_1_BRANCH. (I know I'm breaking the static build, I'll fix it later). Code depending on other Mozilla changes is #ifdef'd BRANCH_CHANGES_NEED_MERGED.
git-svn-id: svn://10.0.0.236/trunk@137752 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 10:26:09 +00:00
jake%bugzilla.org
5fff87ad37 Bug 177997 - Update the AOL Server section with the new configuration information.
git-svn-id: svn://10.0.0.236/trunk@137750 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 04:11:54 +00:00
jake%bugzilla.org
d25f4df78f Bug 192511 - Removing all occurances of 'processmail' from the documentation now that bug 124174 is FIXED.
git-svn-id: svn://10.0.0.236/trunk@137749 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 03:50:37 +00:00
kirk.erickson%sun.com
49a784ffd9 Added softokn3 library, and the new integrity check files.
git-svn-id: svn://10.0.0.236/trunk@137747 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 03:30:19 +00:00
igor%mir2.org
f20df0f936 Patch from Steven Beal fixing a bug due to my changes:
I just noticed that the changes introduced with
v1.29 of Main.java broke the ability to do hot
reloads of scripts.  To be more explicit, the script
is actually reloaded but the source in the debugger
is not updated to reflect the newly loaded code.
...
Attached is a patch that restores the original behavior.
The refactorings are preserved but the handling of
previously loaded SourceInfo objects is restored and the
check for previously loaded ScriptItem instances
removed.


git-svn-id: svn://10.0.0.236/trunk@137746 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 03:01:09 +00:00
cltbld%netscape.com
13adf4d9f1 Fixing QA test, need JS dump on. -mcafee
git-svn-id: svn://10.0.0.236/trunk@137745 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 02:31:08 +00:00
despotdaemon%netscape.com
168a57dade Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@137744 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 02:29:52 +00:00
despotdaemon%netscape.com
1dba48a276 Pseudo-automatic update of changes made by wtc@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@137743 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 02:21:41 +00:00
wtc%netscape.com
445b405dba Bug 192364: the "echo" command is not necessary. Use $(dist_includedir),
which is correct in all build configurations.


git-svn-id: svn://10.0.0.236/trunk@137742 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 02:03:12 +00:00
wtc%netscape.com
4c671a6d69 Bug 189501: use the PR_VERSION macro in prinit.h for version info. The
patch is contributed by Kirk Erickson <kirk.erickson@sun.com>.


git-svn-id: svn://10.0.0.236/trunk@137741 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 01:57:42 +00:00
wtc%netscape.com
5c67b4b430 Bug 193057: add WINNT5.1_* symlinks in mozilla/dist for Windows XP QA.
git-svn-id: svn://10.0.0.236/trunk@137740 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 01:45:01 +00:00
kyle.yuan%sun.com
95f62394e0 Bug 186515 no content in sidebar
r=shliang, sr=jaggernaut, a=asa
delayed call to sidebarObj.panels.refresh()


git-svn-id: svn://10.0.0.236/trunk@137739 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 00:54:04 +00:00
darin%netscape.com
915153c688 fixes bug 192294 "hangs at various URLs (Windows 9x-specific)" r=wtc sr=bz a=asa
git-svn-id: svn://10.0.0.236/trunk@137738 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-13 00:06:07 +00:00
locka%iol.ie
0548ea08af Better explain nsIWebNavigation "document" attribute, fix spelling of "referringURI" attribute. b=192322 r=danm@netscape.com sr=bzbarsky@mit.edu a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137737 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 23:50:14 +00:00
chak%netscape.com
3c66abbff5 Fix for #177972 - Cannot type anything in Editor of MfcEmbed build.
r=adamlock, sr=kin, a=asa


git-svn-id: svn://10.0.0.236/trunk@137736 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:26:38 +00:00
relyea%netscape.com
88fd8073ac Turn off the mangle test for now.
git-svn-id: svn://10.0.0.236/trunk@137735 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:21:59 +00:00
johnkeis
f8c74c6f56 Pass in patch strings so that Patch fields will work
git-svn-id: svn://10.0.0.236/trunk@137734 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:05:47 +00:00
johnkeis
78f068e307 Pass in patch strings so that Patch fields will print correctly
git-svn-id: svn://10.0.0.236/trunk@137733 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:05:18 +00:00
johnkeis
4772a75f01 Fix bug causing only first file in a checkin to be picked up
git-svn-id: svn://10.0.0.236/trunk@137732 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:04:23 +00:00
johnkeis
79d776e796 Add summary and paged views
git-svn-id: svn://10.0.0.236/trunk@137731 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:03:41 +00:00
johnkeis
ef8536a213 Display a patch
git-svn-id: svn://10.0.0.236/trunk@137730 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:03:26 +00:00
johnkeis
2317c3c17c Other env vars that need to be cleared properly
git-svn-id: svn://10.0.0.236/trunk@137729 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:02:27 +00:00
johnkeis
3e78c19ca5 Improved branch changing; fixed patching; environment variables need to be set to undef to be cleared in Windows
git-svn-id: svn://10.0.0.236/trunk@137728 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:00:46 +00:00
johnkeis
de7b9910a9 More ideas, how about that
git-svn-id: svn://10.0.0.236/trunk@137727 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 21:59:20 +00:00
sspitzer%netscape.com
d09ed950d8 supplimental fix for #192074.
removing mozilla/mailnews/absync from the tree.
r=cls, this bug has a=asa


git-svn-id: svn://10.0.0.236/trunk@137726 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 19:56:53 +00:00
seawood%netscape.com
107543f023 Cleaning up from absync removal
Bug #192907 r=sspitzer borrowing a=asa from original absync bug (192074)


git-svn-id: svn://10.0.0.236/trunk@137724 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 19:44:41 +00:00
sspitzer%netscape.com
47868eb0fb supplimental fix for #192074. removing mozilla/mailnews/absync from the tree.
r/sr=bienvenu, this bug has a=asa


git-svn-id: svn://10.0.0.236/trunk@137723 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 19:32:18 +00:00
wtc%netscape.com
905a4b6aa2 Bug 192962: include <string.h> for the declaration of memcpy.
Modified files: priometh.c prrng.c


git-svn-id: svn://10.0.0.236/trunk@137722 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 19:19:12 +00:00
sspitzer%netscape.com
684c966d05 supplimental fix for #192074. removing mozilla/mailnews/absync from the tree.
r/sr=bienvenu, this bug has a=asa


git-svn-id: svn://10.0.0.236/trunk@137721 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 19:13:13 +00:00
seawood%netscape.com
b4419d9bbd Increase lgot buffer for irix gcc builds.
Thanks to Nick Blievers <nickb@adacel.com.au> for the patch.
Bug #192847 r=cls a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137720 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 18:17:34 +00:00
kirk.erickson%sun.com
1c5cb6f653 Removed extraneous ` from PRODUCT_VERSION.
git-svn-id: svn://10.0.0.236/trunk@137717 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 16:12:14 +00:00
mikep%oeone.com
c790972af1 New build.
git-svn-id: svn://10.0.0.236/trunk@137716 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 16:00:58 +00:00
ccarlen%netscape.com
da5020fbfd Bug 186036 - Allow PPEmbed to build under Mach-O. r=pinkerton/sr=bryner/a=asa
git-svn-id: svn://10.0.0.236/trunk@137715 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 16:00:49 +00:00
justdave%syndicomm.com
46e1435e9d Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent mode.
r=zach, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137714 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:51:08 +00:00
mikep%oeone.com
fee824d173 Fixing so that export exports the selected events.
git-svn-id: svn://10.0.0.236/trunk@137713 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:43:09 +00:00
mikep%oeone.com
305a909199 Fixing bug with publish showing up when no events are selected, and start of trying to force user to type a valid URL for publish dialog.
git-svn-id: svn://10.0.0.236/trunk@137712 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:39:08 +00:00
ccarlen%netscape.com
8246c91520 Bug 186036 - Allow PPEmbed to build under Mach-O. NOT YET PART OF BUILD. r=pinkerton/sr=bryner/a=asa
git-svn-id: svn://10.0.0.236/trunk@137711 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:35:40 +00:00
mikep%oeone.com
6a2f9a93b8 Fixing js errors with latest Mozilla build (1.3b)
git-svn-id: svn://10.0.0.236/trunk@137710 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:20:16 +00:00
mikep%oeone.com
eadccd1bf5 Fix for event dots in month view, from Eric via email to mikep.
git-svn-id: svn://10.0.0.236/trunk@137709 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 15:19:35 +00:00
neil%parkwaycc.co.uk
3f840f7835 Bug 192479 DOM inspector XBL bindings not updated for xbl: namespace prefix on inherits= attribute r=caillon sr=peterv sr=alecf a=asa
git-svn-id: svn://10.0.0.236/trunk@137708 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 11:54:25 +00:00
neil%parkwaycc.co.uk
eb211cd3b0 Bug 191127 Applying Content Alignment: Vertical to multiple cells produces broken HTML r=glazman sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@137707 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 11:52:00 +00:00
neil%parkwaycc.co.uk
7edf07ca62 Bug 186129 SetTextboxFocus() should select textbox contents r=brade sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@137706 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 11:50:15 +00:00
neil%parkwaycc.co.uk
82b0defc7a Bug 112264 need descriptive tooltips for thread pane column headers r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137705 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 11:42:50 +00:00
neil%parkwaycc.co.uk
c80213f874 Bug 114505 Offline: No mnemonics in 'Download and Sync Messages' dialogs p=walk84@yahoo.com r=me sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137704 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 11:26:08 +00:00
rginda%netscape.com
7364bca511 syncing with the latest apidoc from /webtools/apidoc
git-svn-id: svn://10.0.0.236/trunk@137703 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 08:25:15 +00:00
rginda%netscape.com
c61b9fe25e more changes from Petr Cimprich <petr@gingerall.cz>
- Section titles are URL-encoded in link anchors now, thus the titles can include spaces and non-English chars now.

- parse_apidoc.pl generates one more file now: sidebar-toc.html
This is a version of toc functioning as Mozilla sidebar, it links sidebar.css so that it can be customized.
(you can test some sidebars at http://www.gingerall.org/charlie/ga/xml/l_lib.xml)


git-svn-id: svn://10.0.0.236/trunk@137702 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 08:23:52 +00:00
justdave%syndicomm.com
176ebafcdb Bug 58020: include bug summaries in whinemail.
Patch by pbaker@where2getit.com (Paul Baker)
r= jouni, a= justdave


git-svn-id: svn://10.0.0.236/trunk@137701 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 08:21:39 +00:00
rogerl%netscape.com
a527b0bfe2 Added 'arguments' property and global object resolution for 'this'.
git-svn-id: svn://10.0.0.236/trunk@137695 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 23:58:26 +00:00
rbs%maths.uq.edu.au
9ac83650e1 Make MathML handle the <semantics> tag implicitly (take 2), b=154931, r=dbaron, sr=roc, a=asa
git-svn-id: svn://10.0.0.236/trunk@137694 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 23:15:01 +00:00
bryner%netscape.com
8afd2cf23b In the case where a larger area of the image is invalidated than has been decoded, use code that's logically equivalent (at least for aSY == 0) but less prone to floating point errors, and also handle constraining the src rect to the top, left, and right of the decoded rect.
This code is lifted from the nsImageGTK implementation.  Fixes one cause (hopefully all) of bug 159796, blank lines in images.  r=pinkerton, sr=sfraser, a=asa.


git-svn-id: svn://10.0.0.236/trunk@137686 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 21:45:08 +00:00
dbaron%dbaron.org
39e0d8adae Fix hang when saving pages with non-ASCII characters in URLs. b=191965 r=adamlock sr=bzbarsky a=asa
git-svn-id: svn://10.0.0.236/trunk@137679 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 20:28:44 +00:00
dbaron%dbaron.org
2cccec9239 Fix leak when handling key events on zombie pages. b=192336 r+sr=roc a=asa
git-svn-id: svn://10.0.0.236/trunk@137678 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 20:26:42 +00:00
mkaply%us.ibm.com
043b5ad261 #192712
r=pedemont, sr=blizzard (platform specific code), a=dbaron
OS/2 only - uninstall everything (well almost everything - we're still working on uninstalling the uninstaller)


git-svn-id: svn://10.0.0.236/trunk@137677 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 20:25:45 +00:00
mkaply%us.ibm.com
99dcfe7381 #192486
r=pedemont, sr=blizzard (platform specific code), a=dbaron
OS/2 only - set owner of frame windows


git-svn-id: svn://10.0.0.236/trunk@137676 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 20:18:40 +00:00
blizzard%redhat.com
8f31985254 lots of 1.3b-related changes. not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@137663 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 18:05:36 +00:00
axel%pike.org
8664794498 bug 192701, npob, use MOZILLA_VERSION instead of hardcode version number for XSLT standalone driver, sr=peterv, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137661 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 17:47:02 +00:00
nboyd%atg.com
1cfc36b65c Remove language about "release candidate" now that we have a final.
git-svn-id: svn://10.0.0.236/trunk@137657 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 15:04:12 +00:00
sspitzer%netscape.com
001d7a514b fix for bug #192074. remove the absync code from the mozilla tree.
r=cavin, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137656 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 08:14:50 +00:00
sspitzer%netscape.com
460fb44232 fix for bug #192074. remove the absync code from the mozilla tree.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137655 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 08:12:12 +00:00
sspitzer%netscape.com
4cc6817013 fix for bug #122282.
files with .ldif/.txt/.tab extension are not listed when corresponding file types are specified.
thanks to pkw@us.ibm.com for the fix.  r/sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@137654 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 07:54:25 +00:00
sspitzer%netscape.com
b55a41cad5 fix for bug #188051. IMAP mark as read sends DeleteOrMoveMsgCompleted event.
thanks to bienvenu for the fix.  r/sr=sspitzer, asa.


git-svn-id: svn://10.0.0.236/trunk@137653 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 07:49:39 +00:00
henry.jia%sun.com
4df219fa86 Bug 148043: namespace prefs keep growing when checking for mail in multiple folders is on due to cached connections
r=bienvenu, sr=Henry, a=asa


git-svn-id: svn://10.0.0.236/trunk@137649 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 04:07:22 +00:00
jake%bugzilla.org
4734f6bc63 Give all FAQ questions an id so the anchor name doesn't have to be randomly generated and therefore won't change every time the docs get recompiled.
git-svn-id: svn://10.0.0.236/trunk@137648 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 04:06:01 +00:00
jst%netscape.com
6b0e35b252 Backing out the change to use memcmp() for comparing ID's. r=jaggernaut@netscape.com, sr=alecf@netscape.com, a=dbaron@dbaron.org.
git-svn-id: svn://10.0.0.236/trunk@137646 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 02:05:20 +00:00
nboyd%atg.com
4e221a2228 Update for final release
git-svn-id: svn://10.0.0.236/trunk@137645 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 01:50:26 +00:00
wtc%netscape.com
fbd5f2edec Bug 107976: allow CC to be overridden (with the full pathname of the C
compiler) on the make command line.
Modified files: AIX.mk ruleset.mk


git-svn-id: svn://10.0.0.236/trunk@137644 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 01:15:36 +00:00
kestes%walrus.com
d9ed2f10f5 add new alt tag to the vcdisplay call.
git-svn-id: svn://10.0.0.236/trunk@137643 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:29:57 +00:00
kestes%walrus.com
4317813ccd add the emacs perlmode indicator to top of file.
git-svn-id: svn://10.0.0.236/trunk@137642 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:27:47 +00:00
kestes%walrus.com
fd581a7bca add emacs perlmod to top of file.
git-svn-id: svn://10.0.0.236/trunk@137641 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:26:02 +00:00
kestes%walrus.com
614ae70219 save the output to disk instead of sending to stdout.
git-svn-id: svn://10.0.0.236/trunk@137640 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:25:04 +00:00
pschwartau%netscape.com
35fe3c1979 Skip new test that uses SpiderMonkey's toSource() functionality (non-ECMA).
git-svn-id: svn://10.0.0.236/trunk@137639 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:24:33 +00:00
kestes%walrus.com
0ee870a580 typo fix provided by "David Wu" <davidwu@exchange.nbttech.com>
typo in  prepare_bonsai_args definition of branch actually set the
module. fix provided by "David Wu" <davidwu@exchange.nbttech.com>


git-svn-id: svn://10.0.0.236/trunk@137637 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:16:34 +00:00
pschwartau%netscape.com
ccbe40d9b2 Initial add. Regression test for bug 192465.
git-svn-id: svn://10.0.0.236/trunk@137636 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-11 00:13:45 +00:00
relyea%netscape.com
fb2512245d Always free the key reference passed to us from the client
git-svn-id: svn://10.0.0.236/trunk@137633 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 22:36:45 +00:00
rogerl%netscape.com
b23c5592a2 Fixes for Number & String builtins prototype functionality.
git-svn-id: svn://10.0.0.236/trunk@137632 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 22:02:49 +00:00
mikep%oeone.com
0b7e2f2a24 New build, and making changes to fix publishing entire calendars, bug 187826.
git-svn-id: svn://10.0.0.236/trunk@137627 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 19:02:43 +00:00
kirk.erickson%sun.com
f0781a0b97 Resolves bug 191221, by adding dynamic versioning for Solaris.
git-svn-id: svn://10.0.0.236/trunk@137626 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 18:18:52 +00:00
nboyd%atg.com
6d2163bfa4 Update release date.
git-svn-id: svn://10.0.0.236/trunk@137624 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 15:36:42 +00:00
ben%netscape.com
8811497372 Fix bug 177797 - satchel only works in the first tab. Make sure autocompletepopup attribute is set on each new browser that is created in tabbrowser.
git-svn-id: svn://10.0.0.236/trunk@137623 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 11:19:52 +00:00
justdave%syndicomm.com
3235eb35bb Bug 192513: importxml.pl and move.pl now use the new mail routines introduced in bug 124174 (they got broken when processmail was removed). Also fixes several comments referring to processmail (which no longer exists) in other files, and removes references to processmail from the .htaccess files and the executable file list in checksetup.pl.
r= jaypee, a= justdave


git-svn-id: svn://10.0.0.236/trunk@137622 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 06:26:39 +00:00
zach%zachlipton.com
e68aa2446b Partial fix for bug 192513 (processmail cleanup). Patch fixes test files
to disregard processmail since it no longer exists (it was special-cased
before).

r=dave, a=dave


git-svn-id: svn://10.0.0.236/trunk@137620 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 05:01:32 +00:00
dbaron%dbaron.org
90a3e52f3e Always use the hardcoded fallbacks in GetPreferred so that it works correctly when called with UTF-8 during the loading of mimeTypes.rdf triggered by the loading of mDelegate. r=smontagu sr=bzbarsky a=asa b=190951
git-svn-id: svn://10.0.0.236/trunk@137619 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 04:14:34 +00:00
timeless%mozdev.org
944c9387e8 Bug 191021 Put the null plugin back where it belongs
don't delete the null plugin
patch by ssu r=timeless a=asa


git-svn-id: svn://10.0.0.236/trunk@137618 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 02:52:13 +00:00
timeless%mozdev.org
aff357c4bd Bug 191021 Put the null plugin back where it belongs
really package the null plugin
r=ssu a=asa


git-svn-id: svn://10.0.0.236/trunk@137617 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-10 02:52:10 +00:00
preed%sigkill.com
017bee49ea Bug 124174 - make processmail a package (Bugzilla::BugMail), r=gerv, r=jth, a=justdave
git-svn-id: svn://10.0.0.236/trunk@137613 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-09 22:04:25 +00:00
darin%netscape.com
2e13ba5cad fixes bug 184122 "mozilla submits bug several times" r=bbaetz sr=bz a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137612 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-09 20:13:46 +00:00
pschwartau%netscape.com
b2fa9ad875 Re-indexing the repeat_str() function to output N copies of the given string instead of N+1.
git-svn-id: svn://10.0.0.236/trunk@137609 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-09 00:52:21 +00:00
pschwartau%netscape.com
4e8a41e778 Initial add. Regression test for bug 192414.
git-svn-id: svn://10.0.0.236/trunk@137608 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-09 00:39:46 +00:00
bbaetz%acm.org
53d658acb0 Bug 192393 - $::dbwritesallowed never set
r, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137607 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 23:26:48 +00:00
sonja.mirtitsch%sun.com
88eb48f3e2 checking in 2nd part on my fix to generate prototype filr,
which I just realized already has wtc's "you can check it in"
see bug 191172


git-svn-id: svn://10.0.0.236/trunk@137602 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 22:45:13 +00:00
sonja.mirtitsch%sun.com
fffcceaac3 checking in Kirk's patch
git-svn-id: svn://10.0.0.236/trunk@137601 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 22:43:37 +00:00
wtc%netscape.com
ea6060a1b0 Bug 131826: backed out the zlib 1.1.4 upgrade because the signtool tests
failed.
Modified Files:
	README adler32.c compress.c crc32.c deflate.c deflate.h
	example.c gzio.c infblock.c infblock.h infcodes.c infcodes.h
	inffast.c inffast.h inflate.c inftrees.c inftrees.h infutil.c
	infutil.h minigzip.c trees.c uncompr.c zconf.h zlib.h zutil.c
	zutil.h


git-svn-id: svn://10.0.0.236/trunk@137599 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 15:00:13 +00:00
wtc%netscape.com
3b2b50508d Bug 131826: checked in the README file of zlib 1.1.4.
git-svn-id: svn://10.0.0.236/trunk@137598 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 09:10:36 +00:00
wtc%netscape.com
7ecc1706e9 Bug 131826: upgraded to zlib 1.1.4.
Modified Files:
	adler32.c compress.c crc32.c deflate.c deflate.h example.c
	gzio.c infblock.c infblock.h infcodes.c infcodes.h inffast.c
	inffast.h inflate.c inftrees.c inftrees.h infutil.c infutil.h
	minigzip.c trees.c uncompr.c zconf.h zlib.h zutil.c zutil.h


git-svn-id: svn://10.0.0.236/trunk@137597 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 08:50:42 +00:00
wtc%netscape.com
5049458084 Bug 131826: added maketree.c from zlib 1.1.4.
git-svn-id: svn://10.0.0.236/trunk@137596 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 08:37:00 +00:00
wtc%netscape.com
e31f23801b Removed unused files stubs.c and zip_nodl.c.
git-svn-id: svn://10.0.0.236/trunk@137595 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 08:35:07 +00:00
wtc%netscape.com
0a857c87ab Bug 131826: added new header files from zlib 1.1.4.
Added Files: trees.h inffixed.h


git-svn-id: svn://10.0.0.236/trunk@137594 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 08:30:11 +00:00
sonja.mirtitsch%sun.com
9036f58d77 changing PRODUCT VERSION
git-svn-id: svn://10.0.0.236/trunk@137587 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 06:32:06 +00:00
seawood%netscape.com
f376851d54 Use relative path to static toolkit specific viewer lib instead of waiting for it to be exported to $(DIST).
Fix -jx bustage made evident by upgrading tinderboxes to make 3.79.1.
This makefile is fugly.


git-svn-id: svn://10.0.0.236/trunk@137586 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 05:55:45 +00:00
despotdaemon%netscape.com
56a39b0b29 Pseudo-automatic update of changes made by wtc@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@137585 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 05:50:16 +00:00
johnkeis
f9785bb6b1 Another idea
git-svn-id: svn://10.0.0.236/trunk@137580 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 02:35:00 +00:00
johnkeis
fbdd7dd4ef Make ps / kill work on both Win32 / Linux (and maybe Mac?); fix parsing of log output now that it's coming in 1024-byte multiline chunks instead of line-by-line
git-svn-id: svn://10.0.0.236/trunk@137579 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 02:21:28 +00:00
darin%netscape.com
dc87cb06f2 hopefully fixing WIN32 bustage
git-svn-id: svn://10.0.0.236/trunk@137578 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 02:08:34 +00:00
relyea%netscape.com
bd2d205ba3 Sigh, the QA scripts look for the word 'failed', but it's common that we
can't open the shared library and isn't a real failure, so change the wording


git-svn-id: svn://10.0.0.236/trunk@137577 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 01:52:37 +00:00
bbaetz%acm.org
40e949abcb Bug 192340 - 'unknown_keyword' error doesn't mention keyword
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137576 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 01:38:51 +00:00
johnkeis
bb0d643552 Fixed bugs, added ideas
git-svn-id: svn://10.0.0.236/trunk@137575 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 01:17:07 +00:00
johnkeis
3fa6baccfd Make branches work, make recursive kill work more cross-platform
git-svn-id: svn://10.0.0.236/trunk@137574 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:55:13 +00:00
darin%netscape.com
1b46f4a68a fixes bug 192196 "crashes on shutdown" r=dougt sr=blizzard a=asa
git-svn-id: svn://10.0.0.236/trunk@137573 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:54:36 +00:00
bbaetz%acm.org
d0b7569a83 Bug 192182 - editflagtypes uses ^ instead of **
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@137572 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:54:21 +00:00
darin%netscape.com
bf6f592e36 fixes bug 192272 "Mozilla crashed on Quit after attempting access to SSL
IMAP account during DNS hang [@ nsInputStreamPump::EnsureWaiting]"
r=sspitzer sr=bienvenu a=asa


git-svn-id: svn://10.0.0.236/trunk@137571 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:52:54 +00:00
johnkeis
605eba93c8 Allow client to report and kill even if no output is occurring from the client; make kill so it can actually kill a hanging cvs; add timeout of an hour and a half on cvs checkouts
git-svn-id: svn://10.0.0.236/trunk@137569 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:13:52 +00:00
relyea%netscape.com
4f74a8702b Skip corruption test if someone has locked down the shared library on us.
git-svn-id: svn://10.0.0.236/trunk@137568 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-08 00:02:06 +00:00
wtc%netscape.com
17c4a12762 Exit with 1 rather than -1 on failure. Make sure the program exit with 1
on all failures. Remove the symlink, if a file/symlink by that name already
exists, before creating it to avoid the EEXIST error.


git-svn-id: svn://10.0.0.236/trunk@137566 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 23:41:15 +00:00
wtc%netscape.com
4a3d740281 Use <> around standard/system header files. This file does not need
string.h, but it should include stdio.h because it uses fprintf and printf.


git-svn-id: svn://10.0.0.236/trunk@137565 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 23:21:53 +00:00
nelsonb%netscape.com
7d3c35a71c Fix bug 190527. Properly extend buffer when data exceeds 512 bytes.
git-svn-id: svn://10.0.0.236/trunk@137564 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 23:09:35 +00:00
relyea%netscape.com
718dc114a3 Fix signed/unsigned display issue.
Add more loggin information on errors (rev 1.3 added this but lost it's log).


git-svn-id: svn://10.0.0.236/trunk@137563 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 23:05:07 +00:00
relyea%netscape.com
ae5fb6cc1c *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@137562 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 23:02:43 +00:00
pschwartau%netscape.com
5a91b0fc47 Initial add. Regression test for bug 192288.
git-svn-id: svn://10.0.0.236/trunk@137560 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 22:52:05 +00:00
despotdaemon%netscape.com
e1cf3834d9 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137556 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 22:28:27 +00:00
pschwartau%netscape.com
8a14d98efd Initial add. Regression test for bug 192226.
git-svn-id: svn://10.0.0.236/trunk@137555 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 22:26:15 +00:00
relyea%netscape.com
246221be13 Add test to see if the shlib was actually changed.
git-svn-id: svn://10.0.0.236/trunk@137554 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 21:13:10 +00:00
relyea%netscape.com
219f009e9d Add Mangle logging...
git-svn-id: svn://10.0.0.236/trunk@137553 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 21:12:26 +00:00
igor%mir2.org
db57df009b More info on new security interfaces
git-svn-id: svn://10.0.0.236/trunk@137551 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 20:44:47 +00:00
relyea%netscape.com
d29ab28549 Add debugging information. Turn on tempararily to get debug info from tinderbox failures.
git-svn-id: svn://10.0.0.236/trunk@137548 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 19:22:42 +00:00
mikep%oeone.com
6a805c756e Fixing problem with showing events from other months, and also showing events properly across day light saving time changes.
git-svn-id: svn://10.0.0.236/trunk@137532 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 15:23:54 +00:00
mikep%oeone.com
d229465038 Fixing problems with events at the same time not overlapping (regression)
git-svn-id: svn://10.0.0.236/trunk@137531 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 14:27:08 +00:00
gerv%gerv.net
9a4205074d Bug 191020 - back out bits of generic charting checked in by mistake. Apologies.
git-svn-id: svn://10.0.0.236/trunk@137530 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 08:26:49 +00:00
gerv%gerv.net
ab63b01fe3 Bug 191020 - buglist.cgi doesn't always get query names right for filename to save. Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@137529 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 08:07:40 +00:00
bbaetz%acm.org
eaa2d33a5a Bug 191863 - Clean up Bugzilla.pm
r=gerv, justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@137528 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 07:19:15 +00:00
kirk.erickson%sun.com
b982b40de6 Moved rules.mk include to the end.
git-svn-id: svn://10.0.0.236/trunk@137527 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 07:16:37 +00:00
wtc%netscape.com
07ffbd04b9 Set the default compiler to cc.
git-svn-id: svn://10.0.0.236/trunk@137526 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 06:57:57 +00:00
nelsonb%netscape.com
3535ef5282 Move the implementation of the TLS Pseudo Random Function (PRF) from
pkcs11c.c into a new file: tlsprf.c.


git-svn-id: svn://10.0.0.236/trunk@137525 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 06:42:20 +00:00
nelsonb%netscape.com
e0876cd433 Fix the dbtests test on Windows, when run in all.sh.
The problem was that fips.sh created a file in . named dbtest, which was
actually some text output by a previous test.  This dbtest file prevented
the dbtest program from running.  The text file now has another name.


git-svn-id: svn://10.0.0.236/trunk@137524 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 06:32:59 +00:00
kirk.erickson%sun.com
05d99a9d33 Resolves bug 189504 (Build Linux RPMS).
git-svn-id: svn://10.0.0.236/trunk@137523 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 05:56:15 +00:00
nelsonb%netscape.com
d49a771fcf MKS shell doesn't know about echor command. Does any shell?
git-svn-id: svn://10.0.0.236/trunk@137522 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 05:48:34 +00:00
nelsonb%netscape.com
50ca2fae62 Remove unreferenced local variables from functions.
git-svn-id: svn://10.0.0.236/trunk@137521 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 05:08:01 +00:00
timeless%mozdev.org
d5ed20b8df Bug 191675 JS Shell (1.3.1+) Quit() calls exit() without cleaning up.
r=rogerl


git-svn-id: svn://10.0.0.236/trunk@137519 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 03:51:59 +00:00
dbaron%dbaron.org
1e9033b05f Backing out half of previous changes, since they're not necessary to fix the crash and I think they cause problems.
git-svn-id: svn://10.0.0.236/trunk@137518 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 03:21:27 +00:00
dbaron%dbaron.org
60df6b53bb Make observer notification in nsDocument and nsXULDocument happen in the same order (that of nsXULDocument), and make nsXULDocument more resistant to observer removal during notification in an attempt to fix crashes. b=192130 Patch from Boris Zbarsky <bzbarsky@mit.edu>. r=dbaron sr=jst a=asa
git-svn-id: svn://10.0.0.236/trunk@137517 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 03:15:41 +00:00
timeless%mozdev.org
15db0212de Bug 107002 Makefile.ref doesn't build on rh7.1 with readline
r=rogerl


git-svn-id: svn://10.0.0.236/trunk@137516 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 03:10:59 +00:00
sspitzer%netscape.com
c22835c1fd fix for bug #191817.
Privileged script insertion in attachment content-type header
thanks to guninski@guninski.com for the bug report and the fix.
r/sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@137515 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 02:36:18 +00:00
kairo%kairo.at
2c82518937 bug 185698 - localeVersion update for 1.3b on trunk, fix two files I missed last time, r=rchen, sr=blizzard, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137513 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 01:27:26 +00:00
darin%netscape.com
bdd3703ab5 fixes bug 192049 "Mozilla fails to read from sockets to this site" r=dougt sr=bz a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137512 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-07 00:49:17 +00:00
timeless%mozdev.org
b9dfd1099b Bug 191021 Put the null plugin back where it belongs
r=peterl a=asa


git-svn-id: svn://10.0.0.236/trunk@137510 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 23:50:43 +00:00
peterlubczynski%netscape.com
f9bb4e5868 Bug 192009, stop exporting the default plugin to dist/gre, dist/lib, dist/bin on UNIX, r=cls a=asa
git-svn-id: svn://10.0.0.236/trunk@137509 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 23:41:43 +00:00
leaf%mozilla.org
9046ec2ea2 join two lines to avoid losing the directory information from the cd command
fixes fix to bug 190529, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137508 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 23:38:21 +00:00
jst%netscape.com
1cc2deba63 Removing a redeclaration of a variable that sould've been removed with the last change to this file. Bug 181644, r=bzbarsky@mit.edu, sr=dbaron@dbaron.org, a=dbaron@dbaron.org
git-svn-id: svn://10.0.0.236/trunk@137507 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 23:10:20 +00:00
wtc%netscape.com
541fc43dff Moved the definition of MD_LIB_RELEASE_FILES from manifest.mn to Makefile
so that it is right next to the definition of CHECKLOC, which it uses.


git-svn-id: svn://10.0.0.236/trunk@137505 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 22:37:37 +00:00
leaf%mozilla.org
52d0460506 Automated update
git-svn-id: svn://10.0.0.236/trunk@137504 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 22:15:12 +00:00
mkaply%us.ibm.com
cd9c91042b No bug
a=dbaron
Missing asterisk was causing OS/2 not to build imgicon anymore


git-svn-id: svn://10.0.0.236/trunk@137503 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 22:14:53 +00:00
ccarlen%netscape.com
ad77d86c46 Bug 190490 - Profile switching does not work on Unix because a nescesary JS component is not packaged. r=dougt/sr=alecf/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137502 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 22:14:07 +00:00
mikep%oeone.com
314a9115bc Fixing week view to use box object to get calculated left and top values.
git-svn-id: svn://10.0.0.236/trunk@137501 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 22:02:47 +00:00
darin%netscape.com
b45143bd7f fixes bug 191739 "Browser does not work if loopback is disabled" r=dougt sr=bz a=asa
git-svn-id: svn://10.0.0.236/trunk@137499 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 21:20:26 +00:00
bryner%netscape.com
fef49a3191 support weak references in TestGtkEmbed's content listener (bug 191548). r=pavlov, sr=blizzard, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137498 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 20:59:30 +00:00
bryner%netscape.com
f6bc58de92 Build both embedding/browser/gtk/src and tests/ at the end of the build, so that all required static components are present (bug 191927). r=cls, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137496 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 20:54:54 +00:00
cltbld%netscape.com
5cbf2b09c9 Comment: don't run xpcomglue test on MacOSX. r=dougt,ccarlen
git-svn-id: svn://10.0.0.236/trunk@137495 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 20:27:17 +00:00
mikep%oeone.com
2aee5df167 Fixing up publishing so that it works a little nicer now. Removing need to specify a remote path and a filename seperately.
git-svn-id: svn://10.0.0.236/trunk@137494 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 20:15:49 +00:00
pschwartau%netscape.com
d4bbc58c26 Initial add. Regression test for bug 192105.
git-svn-id: svn://10.0.0.236/trunk@137492 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 19:17:07 +00:00
relyea%netscape.com
0d62953d83 Clean up tests
Suppress error messages which we were expecting because it causes the QA
scripts to report a QA failure.


git-svn-id: svn://10.0.0.236/trunk@137491 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 19:06:39 +00:00
mikep%oeone.com
dfe9273fb8 Fixing subscribing to remote calendars, fix for bug 191442.
git-svn-id: svn://10.0.0.236/trunk@137489 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 18:38:55 +00:00
mikep%oeone.com
c451736964 Adding in try catch to see if I can catch the exception that causes the calendar to crash sometimes.
git-svn-id: svn://10.0.0.236/trunk@137488 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 18:38:19 +00:00
mikep%oeone.com
3d2f123cd5 Fixing problem with showing time of event.
git-svn-id: svn://10.0.0.236/trunk@137487 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 18:23:55 +00:00
relyea%netscape.com
81fda44f1d Mangle will be changing the shared libraries, so it should link with them.
git-svn-id: svn://10.0.0.236/trunk@137486 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 18:18:42 +00:00
mikep%oeone.com
a20c9a0845 Fixing publishing so that you can now publish an entire calendar or just the selected events.
git-svn-id: svn://10.0.0.236/trunk@137485 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 18:06:18 +00:00
wtc%netscape.com
09b7819996 Bug 177387: Put the configuration/assignments before the rules in Makefile.
Define MD_LIB_RELEASE_FILES in manifest.mn so that the *.chk files are
included in the mdbinary.jar files generated by the release target.


git-svn-id: svn://10.0.0.236/trunk@137483 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 16:56:46 +00:00
relyea%netscape.com
6e007fc50a Turn on FIPS test again.
git-svn-id: svn://10.0.0.236/trunk@137482 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 16:13:44 +00:00
relyea%netscape.com
f8b88f3070 Introduce shell variables for DLL_PREFIX and DLL_SUFFIX
git-svn-id: svn://10.0.0.236/trunk@137481 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 16:13:22 +00:00
dbradley%netscape.com
2dc7a63129 Bug 190813 - Browser hangs indefinitely on above URL. r=shaver, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137480 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 14:54:59 +00:00
wtc%netscape.com
2d4686928d Support both ";" and ":" as PATH separators on Windows. MKS Korn shell
uses ";" but Cygwin bash uses ":".


git-svn-id: svn://10.0.0.236/trunk@137479 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 14:52:43 +00:00
ccarlen%netscape.com
237e1f2a00 Bug 191882 - We're building (and shipping) libxpcom.bundle though it's unused and contributes a megabyte to footprint on OSX. r=seawood/sr=dougt/a=asa
git-svn-id: svn://10.0.0.236/trunk@137478 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 14:37:32 +00:00
mikep%oeone.com
024fa41af9 Fixing bug 187826, cannot publish to https URL.
git-svn-id: svn://10.0.0.236/trunk@137477 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 14:37:13 +00:00
neil%parkwaycc.co.uk
b2e7958de1 Bug 191732 Compose mail to from context menu message header always uses default identity r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137476 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 13:06:35 +00:00
neil%parkwaycc.co.uk
0030c65e8f Bug 106712 disable the View | Messages | Threaded menuitem when in quick search mode r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137475 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 13:05:19 +00:00
locka%iol.ie
4b62a867c3 Fix mouse exit so it goes to the targetted view rather than the view the mouse may or may not be over as it leaves the main widget. b=144880 r=ccarlen@netscape.com sr=roc+moz@cs.cmu.edu a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137474 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 12:50:35 +00:00
mkaply%us.ibm.com
f047c7bd70 #192024
r=brade, sr=kin, a=asa
domSelection can be null if there is no presShell - don't dereference it


git-svn-id: svn://10.0.0.236/trunk@137473 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 05:34:47 +00:00
wtc%netscape.com
37b904e651 Backed out the previous checkin because it doesn't work on Windows.
git-svn-id: svn://10.0.0.236/trunk@137472 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 05:33:33 +00:00
mkaply%us.ibm.com
f9ff454499 #191785
r=pedemont, sr=blizzard (platform specific), a=asa
OS/2 only - rewrite dir dialog


git-svn-id: svn://10.0.0.236/trunk@137471 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 05:31:41 +00:00
wtc%netscape.com
4c41c0bb8e Bug 188441: compile with -D_USE_BIG_FDS on HP-UX. This ensures that fd_set
is large enough for 60,000 file descriptors.


git-svn-id: svn://10.0.0.236/trunk@137470 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 04:43:03 +00:00
wtc%netscape.com
a78455b414 Bug 177387: include the *.chk files in the mdbinary.jar files generated by
the release makefile target.
Modified Files: lib/freebl/manifest.mn lib/softoken/manifest.mn


git-svn-id: svn://10.0.0.236/trunk@137468 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 03:52:37 +00:00
dougt%netscape.com
33d896a488 Fixing Signing bustage. r=darin, sr=dveditz, a=drivers, b=192005, c=+-(a^2+b^2)^.5
git-svn-id: svn://10.0.0.236/trunk@137467 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 03:33:18 +00:00
jake%bugzilla.org
329d63ee04 This checkin contains two fixes:
* Bug 191971 - The guide incorrectly stated that you could resolve a bug via email
* Provide an example of a glossary term in the document conventions section


git-svn-id: svn://10.0.0.236/trunk@137463 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 02:45:40 +00:00
bzbarsky%mit.edu
b8b4245d0a comment-only change to reflect the fact that mOriginalURLSpec is no
more. r=mozbot, blanket-a=roc


git-svn-id: svn://10.0.0.236/trunk@137458 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 01:46:55 +00:00
ben%netscape.com
ba1f04f4b2 alignment tweak (default browser label vs. default browser button)
git-svn-id: svn://10.0.0.236/trunk@137455 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 01:14:24 +00:00
ben%netscape.com
0edea38ed8 Make header labelling consistent.
git-svn-id: svn://10.0.0.236/trunk@137454 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 01:11:48 +00:00
relyea%netscape.com
8917b56d27 Remove mangle test until we can get the correct library name inside fips.sh for all platforms
git-svn-id: svn://10.0.0.236/trunk@137453 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 01:07:39 +00:00
ben%netscape.com
307fd632b1 Give the theme info box a uniform appearance with the listbox above it (WinXP theme-style)
git-svn-id: svn://10.0.0.236/trunk@137452 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 01:06:27 +00:00
jj%netscape.com
f47c985e52 fix for bug 191901: updated version strings for English locale. r=bryner, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@137451 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:50:48 +00:00
relyea%netscape.com
9c8538cadd Add check to 1) make sure we are in FIPS mode. and 2) to verify that we
detect corrupted shared libraries while in FIPS mode.


git-svn-id: svn://10.0.0.236/trunk@137450 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:50:00 +00:00
relyea%netscape.com
dc250950f3 The NSPR get shared lib interface requires the library name only,
not a partial path to the library. This affects AIX.


git-svn-id: svn://10.0.0.236/trunk@137449 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:49:09 +00:00
jst%netscape.com
0a890b2a9e Fixing regression bug 191916. Making classes of eTypeExternalConstructor constructable again, we can't use the DOMJSClass_Construct() hook directly from a JS function, it must be used only as a construct hook on instances of the JS class nsDOMClassInfo::sDOMJSClass. r=bugmail@sicking.cc, sr=peterv@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137448 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:38:22 +00:00
smontagu%netscape.com
0f8f11fc58 Corruption of Unicode keyboard input in chrome text fields on WinXP and 2000. Bug 191184. r=yokoyama, sr=kin, a=dbaron.
git-svn-id: svn://10.0.0.236/trunk@137447 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:29:27 +00:00
seawood%netscape.com
c873c41033 Fixing tinderbox bustage.
git-svn-id: svn://10.0.0.236/trunk@137446 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-06 00:29:06 +00:00
rogerl%netscape.com
202eb4548b Added eval scope
git-svn-id: svn://10.0.0.236/trunk@137444 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 23:59:17 +00:00
rogerl%netscape.com
87d54fa2f3 Fixed eval scope, comma expression.
git-svn-id: svn://10.0.0.236/trunk@137443 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 23:58:52 +00:00
dbaron%dbaron.org
c5a6b17522 Prevent clicking on a tooltip from freezing the UI by ensuring that hidden views can't capture mouse events. b=156764 r=roc sr=jag a=asa
git-svn-id: svn://10.0.0.236/trunk@137441 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 23:10:31 +00:00
gerv%gerv.net
56294a12b4 Bug 172434 - add link to latest nightly. Patch by gerv; r=myk, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@137434 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 21:34:52 +00:00
mikep%oeone.com
5b90668191 Making dialog remember what you last set the all day event flag to using persist.
git-svn-id: svn://10.0.0.236/trunk@137430 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 19:43:29 +00:00
mikep%oeone.com
bb48364094 Code optimization, removing unnecessary items, side calendar no longer follows the main calendar view.
git-svn-id: svn://10.0.0.236/trunk@137429 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 19:38:28 +00:00
aaronl%netscape.com
e4349bc29d Bug 187839. Japanese IME/caret bug. Fixing checkin so that it doesn't include debugging printf. r=aaronl, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@137428 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 18:53:45 +00:00
despotdaemon%netscape.com
93a62ca960 Pseudo-automatic update of changes made by mjudge@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@137427 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 18:45:57 +00:00
despotdaemon%netscape.com
f08f4f9813 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137426 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 18:35:37 +00:00
mikep%oeone.com
f0774b259d Seperating out new calendar and subscribe to remote calendar into different dialogs.
git-svn-id: svn://10.0.0.236/trunk@137424 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 15:14:37 +00:00
ben%netscape.com
f49ec57544 Add the elipsis back to "Options" to calm blake's fragile nerves ;-)
git-svn-id: svn://10.0.0.236/trunk@137422 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 12:01:21 +00:00
ben%netscape.com
a68df2725d Change theme name from "Classic" to "Phoenix" for now.
git-svn-id: svn://10.0.0.236/trunk@137421 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 12:00:01 +00:00
ben%netscape.com
4201d87281 A couple of polish tweaks for the page report dialog - select the first item in the site list by default, and focus the "done" button after unblocking a site.
git-svn-id: svn://10.0.0.236/trunk@137420 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 11:20:14 +00:00
ben%netscape.com
92ece71b67 Get rid of silly "Visit Link" dialog box invoked by themes and extensions panels as it is not really necessary, and fix a js error in the privacy panel when there are no downloads in the downloads list.
git-svn-id: svn://10.0.0.236/trunk@137419 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 11:19:27 +00:00
burnus%gmx.de
146879dcab bug 191087 - process_bug.cgi: "Mid-air collision!" title when not allowed to change a field
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137416 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 08:50:03 +00:00
johnkeis
2299f95a85 Print lists of things in alphabetical order
git-svn-id: svn://10.0.0.236/trunk@137413 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 07:44:41 +00:00
johnkeis
ec83e0d291 Add start and end params
git-svn-id: svn://10.0.0.236/trunk@137412 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 06:51:04 +00:00
johnkeis
3f5bc1fb3a Branches add an extra column to Bonsai output.
git-svn-id: svn://10.0.0.236/trunk@137411 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 06:50:47 +00:00
johnkeis
5e5914dde4 Don't restart if the downloaded version is the same as the server version
git-svn-id: svn://10.0.0.236/trunk@137409 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 03:45:13 +00:00
johnkeis
5ceb85013c Eek, make it not distribute all the time
git-svn-id: svn://10.0.0.236/trunk@137408 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 03:44:25 +00:00
johnkeis
4e9befd324 Add raw_zip distribution capability to client, abstract tests and distribution parts better
git-svn-id: svn://10.0.0.236/trunk@137406 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 03:20:12 +00:00
dbaron%dbaron.org
039ced019c Prevent statusbar resizer from showing on Mac, in any theme. b=188927 sr=sfraser r=jag a=asa b=188927
git-svn-id: svn://10.0.0.236/trunk@137404 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 03:00:07 +00:00
despotdaemon%netscape.com
934c7cfe94 Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137403 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 02:24:00 +00:00
johnkeis
de92876874 distclean more aggressively
git-svn-id: svn://10.0.0.236/trunk@137402 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 02:15:45 +00:00
dbaron%dbaron.org
73bddfc10c Allow new windows to open when we've fallen back to the default theme because of an upgrade by allowing stylesheet loads to fail. b=144027 r=ben sr=dveditz a=asa
git-svn-id: svn://10.0.0.236/trunk@137401 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 02:07:51 +00:00
rginda%netscape.com
ce1ca0b4c1 bug 191773, r=mstoltz, a=dbaron@dbaron.org
only allow x-jsd: urls from chrome: and resource:


git-svn-id: svn://10.0.0.236/trunk@137399 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 01:27:56 +00:00
rginda%netscape.com
84925b867b bug 191773, r=caillon@returnzero.com, a=dbaron@dbaron.org
escape <, >, and & characters before appending user supplied strings into HTML pages.


git-svn-id: svn://10.0.0.236/trunk@137398 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 01:26:20 +00:00
rginda%netscape.com
2edd4d67e5 bug 190532, r=darin@netscape.com, a=dbaron@dbaron.org
deny irc: urls destined for questionable ports


git-svn-id: svn://10.0.0.236/trunk@137397 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 01:23:43 +00:00
rogerl%netscape.com
3fb2782978 Completed switch to prototype base for builtins. Fixed string.length
git-svn-id: svn://10.0.0.236/trunk@137396 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 00:57:09 +00:00
relyea%netscape.com
32a08d566c Try to load the new module before we've unloaded the old one. This now
works in NSS, and it allows us to back out if the new one didn't load (because
FIPS could not verify the shared module for instance).


git-svn-id: svn://10.0.0.236/trunk@137394 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 00:35:53 +00:00
relyea%netscape.com
7c23c20307 Update db test to verify cert8 not cert7
git-svn-id: svn://10.0.0.236/trunk@137393 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 00:33:52 +00:00
relyea%netscape.com
a7b24ab1b2 Surface the Err codes if we fail to shift to FIPS mode.
Add new option to verify that we have shifted to FIPS mode.


git-svn-id: svn://10.0.0.236/trunk@137392 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 00:31:15 +00:00
relyea%netscape.com
7de6ffd598 1) turn on mangle builds.
2) better fix for the missing MAXPATHLEN missing define.
3) make room for the '\0' in the pathname.


git-svn-id: svn://10.0.0.236/trunk@137391 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-05 00:29:35 +00:00
relyea%netscape.com
da3612bb63 Fix LINUX breakage (define MAXPATHLEN if it wasn't defined the the standard
system headers).


git-svn-id: svn://10.0.0.236/trunk@137390 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 23:39:15 +00:00
relyea%netscape.com
44d365a19f Add code to handle symlinks.
Add verbose output to print out hashes and signatures.


git-svn-id: svn://10.0.0.236/trunk@137389 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 23:18:08 +00:00
relyea%netscape.com
ceb0a60fe8 Add program which will mangle exactly 1 bit in a file.
git-svn-id: svn://10.0.0.236/trunk@137388 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 23:16:56 +00:00
seawood%netscape.com
a2f8babc14 Fixing objdir bustage.
git-svn-id: svn://10.0.0.236/trunk@137384 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 20:40:16 +00:00
depstein%netscape.com
96aa5a1538 Added test case for nsIWebNavigation->GetReferingURI(). not part of the build.
git-svn-id: svn://10.0.0.236/trunk@137382 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 20:01:55 +00:00
relyea%netscape.com
389c11cdd3 Fix windows build breakage.
git-svn-id: svn://10.0.0.236/trunk@137380 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 19:03:11 +00:00
despotdaemon%netscape.com
2f98a79430 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137378 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 17:37:38 +00:00
neil%parkwaycc.co.uk
e5ced298f4 Bug 87321 Shift+Tab has duplicate behavior (event handled twice in message compose) r=brade sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137374 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 12:12:55 +00:00
johnkeis
df9a0e9a2d Braindead mistake
git-svn-id: svn://10.0.0.236/trunk@137373 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 12:05:25 +00:00
johnkeis
829dc41ff2 Make DB more configurable
git-svn-id: svn://10.0.0.236/trunk@137372 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 10:48:56 +00:00
johnkeis
7c33b14e0b heh.
git-svn-id: svn://10.0.0.236/trunk@137371 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 10:44:44 +00:00
johnkeis
da5b9f4d20 Add bonsai and login stuff, fix build fields, normalize machine config, generally make it work
git-svn-id: svn://10.0.0.236/trunk@137370 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 10:00:54 +00:00
johnkeis
484140df56 Add recompress logs and build quota
git-svn-id: svn://10.0.0.236/trunk@137369 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:59:41 +00:00
johnkeis
0dd5692aca Support min_row_size, max_row_size params (helps for debugging)
git-svn-id: svn://10.0.0.236/trunk@137368 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:59:10 +00:00
johnkeis
749820d8e3 - support upgrade parameters
- support build, checkout commands
- fix uploading to work with .tar.gz (Linux builds)
- fix distclean to work even when client.mk is unhappy
- propagate error from patch and checkout
- support fast-update
- fix upgrade to work if ctrl+c is pressed during throttle
- print more messages


git-svn-id: svn://10.0.0.236/trunk@137367 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:57:53 +00:00
johnkeis
79807cf27e Enforces a quota on binary builds uploaded to a server.
git-svn-id: svn://10.0.0.236/trunk@137366 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:50:46 +00:00
johnkeis
ae2908c659 More bugs.
git-svn-id: svn://10.0.0.236/trunk@137365 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:49:53 +00:00
johnkeis
c41cae0865 Used to notify when a build has been deleted (deletes corresponding build_fields from the DB)
git-svn-id: svn://10.0.0.236/trunk@137364 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:44:53 +00:00
johnkeis
672bdba50c Compress all the old logs
git-svn-id: svn://10.0.0.236/trunk@137363 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:43:24 +00:00
johnkeis
9b518d5d00 Bugs, features I want, near-term todo list
git-svn-id: svn://10.0.0.236/trunk@137362 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 09:38:30 +00:00
ssu%netscape.com
5fde52b0fc fixing bug 191441 - Add config.ini option making GRE private vs shared. r=sgehani, sr=dveditz, a=dveditz
git-svn-id: svn://10.0.0.236/trunk@137360 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 08:09:07 +00:00
jrgm%netscape.com
e1fc2126ba back out tooltip change for bug 181961 for 1.3b as it is reported to be somehow resulting in a crash on osx for bug 184363, r+sr=jag, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137359 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 05:53:18 +00:00
alecf%netscape.com
109bd95f6a back out 121341 and all subsequent regression fixes - there are still regressions and this just isn't worth being broken for 1.3.. I'll check this back in when 1.4a comes along and we have more time in the milestone to catch regressions.
a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137358 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 05:43:57 +00:00
seawood%netscape.com
7a1867f94e Remove unused macro, AC_PROG_MAKE_SET, which is causing bustage when using AFS.
Bug #188307 r=bryner a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137357 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 05:31:10 +00:00
bzbarsky%mit.edu
4e2cad09e0 Try to more gracefully handle unexpected destruction of stylesheet linking
nodes.  Bug 185808 (just fixes the crash, not the real problem).  r=sicking,
sr=jst, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137356 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 04:45:58 +00:00
aaronl%netscape.com
cc5098146d Bug 187839. Caret turns of when turning on Japanese IME. Patch by skamio@netscape.net. r=aaronl, sr=bryner, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137355 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 04:26:38 +00:00
wtc%netscape.com
0e9293021f Bug 189501: added three directories. Without these, /usr/include/mps isn't
removed when the sun-nspr-devel package is removed.  The patch is
contributed by Kirk Erickson <kirk.erickson@sun.com>.


git-svn-id: svn://10.0.0.236/trunk@137354 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 04:23:55 +00:00
bzbarsky%mit.edu
b2e7ed79c3 Fix crash bug 191588. r=sicking, sr=jst, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137353 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 04:19:05 +00:00
wtc%netscape.com
ff703600ef Bug 191270: added the ability to load a dynamic shared library (.dylib) on
Mac OS X.


git-svn-id: svn://10.0.0.236/trunk@137350 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 02:28:39 +00:00
wtc%netscape.com
b9c97da375 Bug 189501: added support for building Linux RPMs. The patch and new files
are contributed by Kirk Erickson <kirk.erickson@sun.com>.
Modified Files: Makefile.in configure configure.in
Added Files:
	pkg/Makefile.in pkg/linux/Makefile.in pkg/linux/sun-nspr.spec


git-svn-id: svn://10.0.0.236/trunk@137346 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 01:45:28 +00:00
kaie%netscape.com
d7ba6ae565 b=191301 Crash if I cancel "Choose token" dialog on Cert import
r=javi sr=darin a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137345 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 01:37:23 +00:00
kaie%netscape.com
25d52f399e b=186087 Mozilla hangs when using SSL SMTP with revoked certificate
r/sr=sspitzer a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137344 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 01:22:49 +00:00
peterlubczynski%netscape.com
bc51f91eae Fixing bug 189461, Java plugin fails to load because it can't find xpcom symbols so load the library with flag PR_LD_GLOBAL, patch by Ken Herron kherron@squm.mci.com r=peterl sr=dougt a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137343 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 01:10:25 +00:00
rbs%maths.uq.edu.au
82722bc526 fix bad string usage, b=191529, r+sr+a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137342 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-04 01:08:36 +00:00
jband%netscape.com
a5d8a69c0f NOT PART OF BUILD. Just updating xptcall porting status web page that is reflected into lxr.
git-svn-id: svn://10.0.0.236/trunk@137338 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 22:16:32 +00:00
rogerl%netscape.com
c9cff442ba Fixed stack error for hoisted var initialization and typeof prototype
functions.


git-svn-id: svn://10.0.0.236/trunk@137337 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 21:31:07 +00:00
despotdaemon%netscape.com
63aaf01406 Pseudo-automatic update of changes made by carosendahl@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@137336 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 21:23:32 +00:00
relyea%netscape.com
254e536ff8 Shell script to set up the path before running the signing tool
git-svn-id: svn://10.0.0.236/trunk@137334 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 21:06:57 +00:00
relyea%netscape.com
d191afa7b0 Generate .chk file at build time when we build shlibsign
git-svn-id: svn://10.0.0.236/trunk@137333 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 21:06:18 +00:00
pkw%us.ibm.com
864a845ad5 Bug 188724 - clicking cancel in filepicker, then clicking file again leads to filepicker
r=cbiesinger@web.de, sr=bzbarsky@mit.edu, a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@137332 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 20:36:12 +00:00
despotdaemon%netscape.com
fdd46d9246 Pseudo-automatic update of changes made by arvid@quadrone.org.
git-svn-id: svn://10.0.0.236/trunk@137331 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 20:35:55 +00:00
pschwartau%netscape.com
d9a1a26554 Initial add. Regression test for bug 191668.
git-svn-id: svn://10.0.0.236/trunk@137330 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 20:35:00 +00:00
pschwartau%netscape.com
c74fd9a8dd Skip this regression test until bug 191633 is fixed; failure output is enormous -
git-svn-id: svn://10.0.0.236/trunk@137329 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 20:12:27 +00:00
pschwartau%netscape.com
919ac6fee7 Initial add. Regression test for bug 191633.
git-svn-id: svn://10.0.0.236/trunk@137328 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 20:08:27 +00:00
despotdaemon%netscape.com
3667c8ec77 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137327 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 19:58:33 +00:00
despotdaemon%netscape.com
68c8a27b49 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@137326 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 19:56:04 +00:00
kestes%walrus.com
238a847b37 add special handling for the Notice colum to handle the behavior which Mozilla wants. Also prepare for handling of "vetting" of users.
git-svn-id: svn://10.0.0.236/trunk@137325 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 18:16:00 +00:00
chanial%noos.fr
dc26a9ccab turn on automatic image resizing
git-svn-id: svn://10.0.0.236/trunk@137324 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 18:05:34 +00:00
seawood%netscape.com
594d5addd3 Make the file version unique for each build.
Bug #180383 r=ssu sr=asasaki a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137323 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 15:55:55 +00:00
mkaply%us.ibm.com
0da687198c #190732
r=mkaply, sr=alecf, a=asa
From ccarlen - check parser state at end of file


git-svn-id: svn://10.0.0.236/trunk@137321 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 14:59:39 +00:00
kestes%walrus.com
554b033e6b be sure to test that the popup code can handle links embedded in the popup.
git-svn-id: svn://10.0.0.236/trunk@137320 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 13:46:07 +00:00
kestes%walrus.com
ce662e1d6d regularize the logic in the Link code and make sure that these libraries work as 'on click' in preparation for some changes in the TinderDB code which will require this.
git-svn-id: svn://10.0.0.236/trunk@137319 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 13:43:32 +00:00
locka%iol.ie
151d4ffd02 Ignore decimal point when deciding if meta refresh contains garbage. r=radha@netscape.com sr=alecf@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137318 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 13:11:40 +00:00
neil%parkwaycc.co.uk
05b149cd95 Bug 191452 Sender's email is dropped when composing mail using rightclick context menu with collapsed headers r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137317 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 11:53:46 +00:00
neil%parkwaycc.co.uk
0474b9cedd Bug 186195 Space disappears when editing a word at the end of a block p=jfrancis r=brade sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@137316 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 11:47:13 +00:00
cavin%netscape.com
7d227f00cd Fix for bug 191052. Cleaned up IsLDIFFile() and made it so that if the average leagl ldif field is 3 or more then it's a valid ldif file. r=nhotta, sr=sspitzer,a=asa.
git-svn-id: svn://10.0.0.236/trunk@137314 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 07:16:02 +00:00
johnkeis
c9ccb23d24 Add login functionality, lose absolute links
git-svn-id: svn://10.0.0.236/trunk@137313 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:48:58 +00:00
johnkeis
5de64a7a66 Move other scripts' DB saving functionality in here
git-svn-id: svn://10.0.0.236/trunk@137312 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:48:04 +00:00
johnkeis
a861ad2bf3 Use Login, DB modules
git-svn-id: svn://10.0.0.236/trunk@137311 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:47:41 +00:00
johnkeis
b7fa7f6232 Support logins, use Tinderbox3::DB
git-svn-id: svn://10.0.0.236/trunk@137310 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:47:17 +00:00
johnkeis
8b1096193c Support logins, show more useful information
git-svn-id: svn://10.0.0.236/trunk@137309 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:46:42 +00:00
johnkeis
56906f7e8f Utilities for XML scripts to use
git-svn-id: svn://10.0.0.236/trunk@137308 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:45:53 +00:00
johnkeis
1d5dcfe916 Generic utilities
git-svn-id: svn://10.0.0.236/trunk@137307 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:45:29 +00:00
johnkeis
98dcbc5215 Script that shows a particular build column
git-svn-id: svn://10.0.0.236/trunk@137306 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:45:16 +00:00
johnkeis
ee9044af28 Main script that shows the tree
git-svn-id: svn://10.0.0.236/trunk@137305 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:44:56 +00:00
johnkeis
c57cae4001 Primary place where we check logins
git-svn-id: svn://10.0.0.236/trunk@137304 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:44:34 +00:00
johnkeis
4a37d0626a Utilities for opening and saving logfiles
git-svn-id: svn://10.0.0.236/trunk@137303 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:44:20 +00:00
johnkeis
12031c50f9 Default CSS file
git-svn-id: svn://10.0.0.236/trunk@137302 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:43:28 +00:00
johnkeis
8cf1c2a238 Scripts that receive status from tinderboxen
git-svn-id: svn://10.0.0.236/trunk@137301 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:42:48 +00:00
johnkeis
f0d1fccd58 Upload a patch
git-svn-id: svn://10.0.0.236/trunk@137300 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:42:01 +00:00
johnkeis
090545819c Script to rebuild .html pages for the various trees
git-svn-id: svn://10.0.0.236/trunk@137299 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:39:35 +00:00
johnkeis
cf8385053a Script to update bonsai cache
git-svn-id: svn://10.0.0.236/trunk@137298 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:39:13 +00:00
johnkeis
40bff61d1e Little script to run the common admin scripts
git-svn-id: svn://10.0.0.236/trunk@137297 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:39:01 +00:00
johnkeis
683da1ba74 Get a patch in plain text
git-svn-id: svn://10.0.0.236/trunk@137296 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:38:14 +00:00
johnkeis
bd227a4680 Star for comments
git-svn-id: svn://10.0.0.236/trunk@137295 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:32:56 +00:00
johnkeis
5eb115100f Show the log
git-svn-id: svn://10.0.0.236/trunk@137294 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:31:39 +00:00
johnkeis
0547419c12 Main script that shows builds
git-svn-id: svn://10.0.0.236/trunk@137293 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:31:27 +00:00
johnkeis
63d7d60350 Allow admin to sheriff the tree
git-svn-id: svn://10.0.0.236/trunk@137292 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:31:11 +00:00
johnkeis
9cfa116d54 Login script.
git-svn-id: svn://10.0.0.236/trunk@137291 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:30:11 +00:00
johnkeis
5e9c4430dc Support user comments on builds
git-svn-id: svn://10.0.0.236/trunk@137290 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:29:23 +00:00
johnkeis
6aadc4af89 Administrate a machine
git-svn-id: svn://10.0.0.236/trunk@137289 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:28:51 +00:00
johnkeis
60c572edcf Administrate a bonsai-checking column
git-svn-id: svn://10.0.0.236/trunk@137288 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:28:39 +00:00
johnkeis
9a49ad0e40 The set of initial values for when a new tree or machine is created
git-svn-id: svn://10.0.0.236/trunk@137287 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:26:08 +00:00
johnkeis
6eb24be4e6 Show the build time column
git-svn-id: svn://10.0.0.236/trunk@137286 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:25:32 +00:00
johnkeis
ebeb82dc27 Add bonsai support
git-svn-id: svn://10.0.0.236/trunk@137285 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:20:36 +00:00
johnkeis
f661a8343b Processors for showing different fields differently
git-svn-id: svn://10.0.0.236/trunk@137284 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:18:56 +00:00
johnkeis
3bf8df0c92 First version.
git-svn-id: svn://10.0.0.236/trunk@137283 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 03:17:36 +00:00
mcafee%netscape.com
f56819f151 *.linux.* renamed to *.unix.* + darwin changes. r=smfr
git-svn-id: svn://10.0.0.236/trunk@137281 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 02:02:39 +00:00
nboyd%atg.com
cba6a7ee40 fix bug 106831
git-svn-id: svn://10.0.0.236/trunk@137280 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-03 01:17:44 +00:00
aaronl%netscape.com
9f56f22daa Bug 191206. Add keyboard help to Mozilla. r/sr=jatin/oeschger, a=asa
git-svn-id: svn://10.0.0.236/trunk@137276 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 08:25:28 +00:00
asa%mozilla.org
0eb947dc10 bump rv to 1.3b
git-svn-id: svn://10.0.0.236/trunk@137275 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 06:37:10 +00:00
bbaetz%acm.org
edcb5a6006 Bug 191085 - Fix FetchSQLData compat code.
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@137274 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 05:49:23 +00:00
asa%mozilla.org
a53b99f2e7 add margin to dialog buttons bug 187995
git-svn-id: svn://10.0.0.236/trunk@137273 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 04:54:59 +00:00
darin%netscape.com
601ed868cb fixes bug 191220 "FTP: not entering directory, instead message box : 'Alert: 250 CWD command successful'" r=bbaetz,sr=dougt,a=asa
git-svn-id: svn://10.0.0.236/trunk@137271 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 02:55:30 +00:00
ben%netscape.com
7f006d995e Fix bug 191568 - advanced javascript options are inverted
git-svn-id: svn://10.0.0.236/trunk@137267 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-02 00:26:12 +00:00
bzbarsky%mit.edu
b993aac32b Make sure all caller have to pass in the "ignore 'print backgrounds'
preference" boolean.  Make block/inline _not_ ignore that pref.  Bug 191574,
r+sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137266 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 23:54:32 +00:00
dean_tessman%hotmail.com
73cb72f6f5 Change access key for Tools > Options from "o" to "O".
git-svn-id: svn://10.0.0.236/trunk@137264 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 22:38:32 +00:00
ben%netscape.com
1cbf7d9382 reorganize privacy categories in privacy pane
git-svn-id: svn://10.0.0.236/trunk@137259 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 12:50:06 +00:00
ben%netscape.com
9834f2c336 AIEEEEEEEE that's right.
git-svn-id: svn://10.0.0.236/trunk@137258 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:58:48 +00:00
ben%netscape.com
b1e1387ad1 another oops
git-svn-id: svn://10.0.0.236/trunk@137256 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:50:03 +00:00
ben%netscape.com
b8a8c1c714 fix oops
git-svn-id: svn://10.0.0.236/trunk@137255 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:38:56 +00:00
ben%netscape.com
453b811989 Part of 191524 -
Phoenix Preferences Dialog Redesign

- remove preferences tree and replace with large icon list (icons TBD)
- reorganize preferences throughout preferences dialog
- new privacy panel
- hook up "clear download manager," "clear form fill," "clear cookies," "clear passwords," etc.
- "clear all" button
and so on. Too much to list.


git-svn-id: svn://10.0.0.236/trunk@137254 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:15:36 +00:00
ben%netscape.com
2e3f6daf97 Part of 191524 - defaults - default satchel/automatic form fill to ON
git-svn-id: svn://10.0.0.236/trunk@137253 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:13:51 +00:00
ben%netscape.com
fbb631fe0a Part of 191524 -
- support disabling of satchel (automatic form fill) by adding satchel pref listener that detaches satchel controller from tabbrowser and search bar.
- also change the name of "preferences" to "options" to bring into line with other windows apps and the items' position under Tools->


git-svn-id: svn://10.0.0.236/trunk@137252 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:13:33 +00:00
ben%netscape.com
76171a946d Part of 191524 -
1) update tabbrowser to allow attach/detach of satchel controller from all browsers.
2) disclosure widget styles for privacy preferences panel


git-svn-id: svn://10.0.0.236/trunk@137251 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:11:13 +00:00
ben%netscape.com
736f461f33 Part of 191524 -
Implement |nsFormHistory::RemoveAllEntries| - allows UI to clear Satchel database.
r=hewitt


git-svn-id: svn://10.0.0.236/trunk@137250 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:10:26 +00:00
ben%netscape.com
fa95f90c16 Part of fix for 191524, fix a crash in nsIconURI::Equals that occurs when you clear the download manager datasource with the downloads sidebar in Phoenix open. Add null check. r=pavlov, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@137249 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 09:09:24 +00:00
bryner%netscape.com
bed04d8a9b fixing linux bustage for real
git-svn-id: svn://10.0.0.236/trunk@137245 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 06:24:40 +00:00
jkeiser%netscape.com
f8391e212d Fix window focus event regressions (bug 190767), patch by Ruslan Ismailov (croo@nm.ru), r=jkeiser@netscape.com, sr=bryner@netscape.com
git-svn-id: svn://10.0.0.236/trunk@137244 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 05:26:16 +00:00
bzbarsky%mit.edu
cff5078593 Fix mailto: form submission. Bug 191248, patch by dgk@metrocast.net (David G
King (nee dgk@lr.net)), r=sspitzer, sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@137243 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 05:02:11 +00:00
jake%bugzilla.org
d01fd10828 Recompiling the docs because of the large change to the installation section just checked in.
git-svn-id: svn://10.0.0.236/trunk@137241 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 04:56:37 +00:00
jake%bugzilla.org
bdcede0883 Bug 191034, step 1 - Refactoring the installation chapter to provide sections for OS Specific notes and configuration help on multiple web servers. Also added some terms to the glossary.
git-svn-id: svn://10.0.0.236/trunk@137240 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 04:53:50 +00:00
cltbld%netscape.com
1f18443872 Codesize test needs MOZ_MAPINFO set before we pull, to get mozilla/tools/codesighs directory. r/a=bruner. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@137239 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 01:16:37 +00:00
bryner%netscape.com
a3e2245f14 trying to fix debug build bustage on linux.
git-svn-id: svn://10.0.0.236/trunk@137238 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:54:29 +00:00
nisheeth%netscape.com
79d201e410 Fix for bug 191377. r=peterv, sr=heikki, a=asa. window.open("") was not opening a blank window. This was a regression from the fix to bug 174628.
git-svn-id: svn://10.0.0.236/trunk@137236 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:39:31 +00:00
nisheeth%netscape.com
df5a3c747c Backout last checkin because it did not have any log message.
git-svn-id: svn://10.0.0.236/trunk@137235 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:35:45 +00:00
nisheeth%netscape.com
f61e4a46ab *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@137234 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:24:14 +00:00
bryner%netscape.com
669b63b1f2 protect against the to-be-focused content going away during tabbing (bug 171210). r=jkeiser, sr=jst, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137233 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:05:46 +00:00
robinf%netscape.com
953a0c5c84 updates per bug 189489, a=asa and r=oeschger
git-svn-id: svn://10.0.0.236/trunk@137232 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-01 00:01:09 +00:00
rogerl%netscape.com
dffcdc868e First
git-svn-id: svn://10.0.0.236/trunk@137230 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 23:41:13 +00:00
relyea%netscape.com
d15360a1cd Check bug 188856 into the tip.
1)return proper error code in more cases. 2) Fix bug in DH KeyPair Generation.

the essential part of this fix in pkcs11c.c where we add the CKA_NETSCAPE_DB
attribute on Diffie-Hellman key gen. I don't know why the code would have even
thought of working without this (unless we were testing with pregenerated
keys).

The rest of the fix is to surface more of the PKCS #11 error back up. There is
a separate bug to continue tracking the issue of lost PKCS #11 errors.


git-svn-id: svn://10.0.0.236/trunk@137229 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 23:39:34 +00:00
jshin%mailaps.org
1d336e70d9 b=184120 Add non-BMP char. support to UTF-32 converters.
r=smontague, sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137228 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 23:26:20 +00:00
bzbarsky%mit.edu
24c99f9f5f Relanding 189384 since it seems Not Guilty. Still r=sicking/sr=jst/a=asa
git-svn-id: svn://10.0.0.236/trunk@137227 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 23:21:22 +00:00
sspitzer%netscape.com
34a821d5ec supplimental whitespace fixes for bug #124080, which was approved by asa.
thanks to cavin for catching my tab foo.


git-svn-id: svn://10.0.0.236/trunk@137226 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 23:04:58 +00:00
leaf%mozilla.org
61b23117aa bug 190529, add SDK package creation, r=kysmith, sr=seawood, a=asa
git-svn-id: svn://10.0.0.236/trunk@137225 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:56:32 +00:00
sspitzer%netscape.com
8851baec6c fix for bug #188939. remove "unknown" and "not junk" as search and mailview criteria choices.
we remove "unknown" because the user never sees anything that distinguishes unknown from not junk.
being left with just junk and not junk, we remove not junk, because that's just "isn't junk"
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137224 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:54:13 +00:00
sspitzer%netscape.com
75f1b0d9ac fix for bug #189489. hook up help buttons for junk mail controls dialog and message view dialogs.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137223 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:48:31 +00:00
sfraser%netscape.com
6b20deae75 Add the --zerodrift option to maptsvdifftoool so that code/data changes show up for Mac OS X.
git-svn-id: svn://10.0.0.236/trunk@137222 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:43:31 +00:00
kaie%netscape.com
05c88cd5fb b=189974 Profile Switching fails after JavaScript based cert import
PSM portion of fix
r=javi sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@137221 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:33:49 +00:00
nelsonb%netscape.com
27a07539b5 Fix an uninitialized variable. Bug 191396.
git-svn-id: svn://10.0.0.236/trunk@137220 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:26:56 +00:00
mostafah%oeone.com
88374a6c9e Fixed bug 190510: Loading calendar affects date display in mail
git-svn-id: svn://10.0.0.236/trunk@137219 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 22:05:00 +00:00
dveditz%netscape.com
ab31a8158e reading from corrupt zip archives leaks memory (bug 190996) r=ssu, sr=heikki,a=asa
git-svn-id: svn://10.0.0.236/trunk@137217 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 21:53:39 +00:00
timeless%mozdev.org
f104e2ff56 Bug 156405 Tabbed browsing frequently crashes Mozilla - Trunk M130A [@ nsXULWindow::ContentShellAdded]
patch by bsmedberg@covad.net r=roc+moz, sr=roc+moz, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@137216 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 21:31:48 +00:00
mikep%oeone.com
09be55c2a5 Making images smaller, bug 189797.
git-svn-id: svn://10.0.0.236/trunk@137215 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 20:55:32 +00:00
pschwartau%netscape.com
1edddef3f3 Initial add. Regression test for bug 191479.
git-svn-id: svn://10.0.0.236/trunk@137214 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 20:30:33 +00:00
mikep%oeone.com
2259354e03 Adding in new text for delete tasks.
git-svn-id: svn://10.0.0.236/trunk@137212 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 19:56:04 +00:00
peterlubczynski%netscape.com
a0cdd48e12 Expanding Flash stack curruption hack to all platforms as it was found on OSX, bug 186287 r=kmcclusk sr=sfraser a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137210 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 19:37:32 +00:00
heikki%netscape.com
d6531661ff Bug 184001, do not copy external DTDs into internal subset, r=harishd, sr=jst, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137208 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 19:21:24 +00:00
mostafah%oeone.com
363a0ed81a Fixed bug 189361: build problems with gcc-3.2 and oeICalTodoImpl.cpp
git-svn-id: svn://10.0.0.236/trunk@137207 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 19:19:48 +00:00
mikep%oeone.com
cbe11a1459 Fixing so that changing the default start and end hours refreshes the current view.
git-svn-id: svn://10.0.0.236/trunk@137206 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 18:42:27 +00:00
mikep%oeone.com
c0c786390c Adding in new function to delete tasks only, bug 191280. There are now seperate items for deleting tasks and events.
git-svn-id: svn://10.0.0.236/trunk@137205 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 18:26:19 +00:00
mikep%oeone.com
341fa23263 Fixing so that you can see events from previous and next month.
git-svn-id: svn://10.0.0.236/trunk@137204 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 18:24:08 +00:00
mikep%oeone.com
cca3c8a2f1 New build.
git-svn-id: svn://10.0.0.236/trunk@137203 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 18:21:14 +00:00
mikep%oeone.com
fb702e9021 Fixing text in alarm dialog, as per bug from OEone.
git-svn-id: svn://10.0.0.236/trunk@137202 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 18:20:57 +00:00
rogerl%netscape.com
cb77c6e17b Fixed bypasss of error checking for initialization. Added AlienInstance
methods that were MIA.


git-svn-id: svn://10.0.0.236/trunk@137201 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 17:42:49 +00:00
mkaply%us.ibm.com
a18688ceb8 #168643
r=pedemont, sr=blizzard (platform specific), a=asa
OS/2 only - rewrite of frame window creation code to fix window positioning issues


git-svn-id: svn://10.0.0.236/trunk@137196 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 15:38:21 +00:00
mkaply%us.ibm.com
0de549c300 103354 for Phoenix - if we do want this for Phoenix, we can put it back in, but Phoenix is broke if we don't remove the reference to the close tab in the DTD file
git-svn-id: svn://10.0.0.236/trunk@137195 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 14:32:43 +00:00
bzbarsky%mit.edu
67d9f82daa Backing out 189384 to see whether this caused the Tp jump.
git-svn-id: svn://10.0.0.236/trunk@137194 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 14:28:50 +00:00
peterv%netscape.com
7b380ff194 Fix for bug 91557 (constructor property of DOM Object instances return incorrect constructor). r=sicking, sr=jst, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137192 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 12:10:13 +00:00
bzbarsky%mit.edu
d017e2b06c Make sure we drop native theming of form controls in various situations when we
need to.  Bug 184359 and its dependencies (171598, 181490, 184218, 185708,
188785, 189907, 190610).  Patch by tim@prismelite.com (Tim Hill), r=bryner,
sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@137191 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 10:21:52 +00:00
bzbarsky%mit.edu
e9c5ec11b1 "Close other tabs" is scary and dangerous and not too useful. Bug 103354,
patch by jag, r=caillon, sr=bryner, moa=ben, a=asa, alphabet-soup=campbell, go
team!


git-svn-id: svn://10.0.0.236/trunk@137190 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 10:01:41 +00:00
aaronl%netscape.com
d4976fbd31 Bug 191150. oncommand getting fired twice for xul buttons when accesskey is pressed and button already has focus. r=samir, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@137188 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 07:37:58 +00:00
rginda%netscape.com
bc6e654c7d chatzilla only, a=asa@mozilla.org
Chatzilla Startup pref page fails to show lists when only one item, bug 190210
Chatzilla Preferences: to many 'Appearance' titles, bug 190777


git-svn-id: svn://10.0.0.236/trunk@137186 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 06:45:15 +00:00
bzbarsky%mit.edu
2684cc736f Make getElementsByTagName(NS) in XUL use content lists (perf, etc). Bug
189384, r=sicking, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@137185 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 06:28:14 +00:00
rogerl%netscape.com
122059cf3b Split some functionality into js2eval from js2metadata. Began fix for typed
var initialization.


git-svn-id: svn://10.0.0.236/trunk@137181 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 05:24:38 +00:00
nelsonb%netscape.com
216c70fc28 Fix crash in CERT_CheckKeyUsage caused by dereferencing a returned pointer
without checkin it for NULL.


git-svn-id: svn://10.0.0.236/trunk@137180 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 02:49:13 +00:00
nelsonb%netscape.com
77684e6b48 Fix bug 191396. Don't generate SEC_ERROR_LIBRARY_FAILURE unnecessarily
while doing dsa signatures.


git-svn-id: svn://10.0.0.236/trunk@137179 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 02:39:36 +00:00
suresh%netscape.com
a7b9ba91a8 bug 190993 - classic] cache pref panel is "squished". r-shliang, sr-jag, a-dbaron
git-svn-id: svn://10.0.0.236/trunk@137178 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 02:18:48 +00:00
oeschger%netscape.com
5c6dc7ef48 little follow-up on yesterday's content update, fixes xml decl that makes toc not load, dispensation per 162559, a=asa, r=cotter
git-svn-id: svn://10.0.0.236/trunk@137176 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 02:02:59 +00:00
darin%netscape.com
979608deea fixes bug 191227 "file uploads hang (especially w/ slower connections or
slower servers)" r=dougt sr=bz a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137175 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 02:00:45 +00:00
darin%netscape.com
13bdad253d fixes bug 190000 "crashes [@ PR_SetPollableEvent]" r=pavlov sr=bz a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137174 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 01:51:45 +00:00
jrgm%netscape.com
be802e1b74 Guard against bogus entries in the object map of the fastload file, bug 189832, r=ben/jag, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@137173 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 01:34:45 +00:00
nisheeth%netscape.com
fb4f428f15 Fix for bug 182067. r=harishd, sr=jst, a=asa. Fixes the crash/hang on Linux when a data: url with a null data segment is typed into the url bar.
git-svn-id: svn://10.0.0.236/trunk@137172 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 00:58:41 +00:00
darin%netscape.com
534f97ed99 brings IPC service up-to-date with latest necko changes (NOT PART OF THE BUILD)
git-svn-id: svn://10.0.0.236/trunk@137170 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 00:40:35 +00:00
dougt%netscape.com
f5afd7f9e6 Fixing many problems related to GRE libs versioning. r=ssu sr=me a=dveditz
git-svn-id: svn://10.0.0.236/trunk@137169 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 00:37:20 +00:00
relyea%netscape.com
f13a13b227 FIPS library verifier.
git-svn-id: svn://10.0.0.236/trunk@137166 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 23:38:07 +00:00
relyea%netscape.com
8249770fa2 FIPS library verifier
git-svn-id: svn://10.0.0.236/trunk@137165 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 23:36:37 +00:00
darin%netscape.com
6e19587856 fixes bug 190001 "crashes [@ nsHttpConnection::CloseTransaction]" r=dougt sr=bz a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137164 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 23:11:55 +00:00
wtc%netscape.com
916c634dce Bug 191214: fixed the object leaks in signtool that prevented NSS_Shutdown
from succeeding and added the NSS_Shutdown call back.  r=jpierre.
Modified Files: certgen.c sign.c signtool.c


git-svn-id: svn://10.0.0.236/trunk@137163 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 23:11:13 +00:00
lpham%netscape.com
ff749b5ae7 update Copyright to 2003 bugzilla #188515 r=kysmith sr=leaf a=leaf
git-svn-id: svn://10.0.0.236/trunk@137162 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 23:10:24 +00:00
sfraser%netscape.com
7182ec5989 Fix bug 181454 -- endless opening of new windows when another app tells Mozilla to open a new window, via Apple Events. Make sure we return noErr when we've handled the event. r=ccarlen, sr=jag, a=asa.
git-svn-id: svn://10.0.0.236/trunk@137158 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 22:40:25 +00:00
rogerl%netscape.com
4b765381b9 Added AlienInstance destructor.
git-svn-id: svn://10.0.0.236/trunk@137157 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 22:30:04 +00:00
rogerl%netscape.com
dacc4d5445 Added js2error.cpp, js2boolean.cpp, js2function.cpp
git-svn-id: svn://10.0.0.236/trunk@137156 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 22:29:11 +00:00
rogerl%netscape.com
a9159c627c Added js2function.cpp
git-svn-id: svn://10.0.0.236/trunk@137155 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 22:25:17 +00:00
rogerl%netscape.com
4540ada801 Changes throughout to match new Object layout - merged CallableInstance to
SimpleInstance, switched StaticBinding to LocalBinding etc.


git-svn-id: svn://10.0.0.236/trunk@137154 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 21:41:25 +00:00
sspitzer%netscape.com
6511d82c8c supplimental fix for bug #124080 (need secure LDAP server icon for addressbook dir pane)
previous icon had some transparency issues.  thanks to gail for the new icon.


git-svn-id: svn://10.0.0.236/trunk@137153 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 21:34:49 +00:00
seawood%netscape.com
4551d016e9 Fixing objdir bustage
git-svn-id: svn://10.0.0.236/trunk@137150 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 20:37:32 +00:00
seawood%netscape.com
0e7bdc5e13 Fix objdir bustage
git-svn-id: svn://10.0.0.236/trunk@137149 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 20:29:49 +00:00
pschwartau%netscape.com
d94f0c8522 Initial add. Regression test for bug 191276.
git-svn-id: svn://10.0.0.236/trunk@137148 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 19:10:35 +00:00
colin%theblakes.com
cce0c6cf2a Fix problem with VAR format files. b=191281. r=cls. a=asa
git-svn-id: svn://10.0.0.236/trunk@137147 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 19:00:53 +00:00
mkaply%us.ibm.com
ade40bd579 OS/2 bustage - just define HIBYTE and LOBYTE for any platform that doesn't have them
git-svn-id: svn://10.0.0.236/trunk@137146 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 18:52:33 +00:00
mkaply%us.ibm.com
829f12cb5d OS/2 bustage - we have macros for a reason :)
git-svn-id: svn://10.0.0.236/trunk@137145 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 18:51:50 +00:00
seawood%netscape.com
a1ad787d1a Fix ifdef so that only tier-1 platforms are building the plugin sdk.
Fixing OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@137144 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 18:38:57 +00:00
axel%pike.org
230e717a82 npob, get rid of file transport service, which died. a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137143 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 15:00:27 +00:00
locka%iol.ie
fa14b03223 Fix ClassIsListed which returns wrong value when registry key is missing. b=191131 r=dbradley@netscape.com sr=darin@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137142 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 13:22:01 +00:00
locka%iol.ie
a5808bff7a Fix return code to make WMP work. b=191157 r=dbradley@netscape.com sr=blizzard@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137141 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 13:19:41 +00:00
loadrunner%betak.net
df1e80469f bug 190734, r=brade, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@137140 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 11:21:41 +00:00
neil%parkwaycc.co.uk
330162e720 Bug 173223 Separator remains on toolbar when home button hidden p=martin@wulffeld.org r=me sr=jag a=asa
git-svn-id: svn://10.0.0.236/trunk@137139 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 10:33:12 +00:00
neil%parkwaycc.co.uk
54fab1051c Bug 189802 Junk mail dialog should disable radiogroup, not individual radio buttons r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137138 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 10:19:59 +00:00
neil%parkwaycc.co.uk
360d70d5ca Bug 190939 JS error and strict warning in sidebarOverlay.js r=shliang sr=alecf a=asa
git-svn-id: svn://10.0.0.236/trunk@137137 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 10:17:41 +00:00
neil%parkwaycc.co.uk
e8bdf3e765 Bug 167815 Compose mail to context menu in message header always brings up plain text compose r=cavin sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137136 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 09:38:38 +00:00
ere%atp.fi
4e143da99a Bug 151279 (SMTP-Auth is not found on a RFC-Valid-Response): Fixed SMTP EHLO response parsing
r=jgmyers, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137135 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 08:47:07 +00:00
axel%pike.org
5fe9d894b6 bug 190499, xpath number 2 string conversion buggy for small numbers, changed implementation to use moz string api, r=sicking, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@137134 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 08:26:46 +00:00
seawood%netscape.com
9659950a81 Use -Bsymbolic when linking components on FreeBSD.
Thanks to Joe Marcus Clarke <marcus@freebsd.org> for the patch.
Bug #190844 r=cls a=asa


git-svn-id: svn://10.0.0.236/trunk@137133 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 07:41:27 +00:00
sspitzer%netscape.com
1556ede574 fix for bug #124080.
show secure LDAP server icon for addressbook dir pane.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137132 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 07:24:14 +00:00
bbaetz%acm.org
e3f9209f48 Bug 191080 - fix SQLQuote return value for an undef input
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137131 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 07:20:56 +00:00
wtc%netscape.com
9072bc6a29 Bug 177387: temporarily added freebl_GetLibraryFilePathname to libfreebl.a.
This function has the same semantics as the NSPR 4.3 function
PR_GetLibraryFilePathname. This patch should be backed out when NSPR 4.3 is
released.
Modified Files: config.mk manifest.mn
Added Files: libpath.c


git-svn-id: svn://10.0.0.236/trunk@137130 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 07:00:32 +00:00
sspitzer%netscape.com
c9c9aea5fd fix for bug #191188
mail views list dialog should be modal to the 3 pane.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137129 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 06:48:04 +00:00
sspitzer%netscape.com
32985fd984 fix for bug #190129 and bug #190173.
don't show ldap addressbooks and local ab mailing lists in the
"Sender is[n't] in addressbook" picker in filters, search, or mail views.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137128 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 06:45:39 +00:00
seawood%netscape.com
5e5146a122 Whitespace change to trigger rebuild of libs that depend upon zlib.
git-svn-id: svn://10.0.0.236/trunk@137127 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 05:53:29 +00:00
dougt%netscape.com
eca1a65cbf Fixing def file after zlib name change
git-svn-id: svn://10.0.0.236/trunk@137126 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 05:39:17 +00:00
peterlubczynski%netscape.com
7fd6f8cd86 fixing BeOS bustage
git-svn-id: svn://10.0.0.236/trunk@137125 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 05:13:53 +00:00
jpierre%netscape.com
3e4fd60532 Fix for 190424 - don't query CKA_NETSCAPE_EMAIL attribute. r=wtc
git-svn-id: svn://10.0.0.236/trunk@137124 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 05:12:10 +00:00
jaggernaut%netscape.com
c73734e684 Bug 190791: Windows don't remember location in macho builds. r=danm, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@137123 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 04:51:50 +00:00
dougt%netscape.com
d1ad613b44 backing out mozreg.xpt file since it doesn't exist yet
git-svn-id: svn://10.0.0.236/trunk@137122 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:44:04 +00:00
cltbld%netscape.com
7d7a52c65d Codesize test: Adding save-logs-for-debugging for simon. -mcafee
git-svn-id: svn://10.0.0.236/trunk@137121 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:27:36 +00:00
peterlubczynski%netscape.com
570425fc75 Fixing bustage, r=cls
git-svn-id: svn://10.0.0.236/trunk@137120 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:17:02 +00:00
peterlubczynski%netscape.com
3b16785201 Fixing bugstage r=cls
git-svn-id: svn://10.0.0.236/trunk@137119 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:16:39 +00:00
jpierre%netscape.com
4734fd96af Fix for 190424 - don't query CKA_NETSCAPE_EMAIL attribute . r=wtc
git-svn-id: svn://10.0.0.236/trunk@137118 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:02:55 +00:00
leaf%mozilla.org
d1a6a6fa01 Automated update
git-svn-id: svn://10.0.0.236/trunk@137117 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 03:00:20 +00:00
jpierre%netscape.com
262472f161 Patch for memory leak . Bug 189976 . r=wtc
git-svn-id: svn://10.0.0.236/trunk@137116 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:59:35 +00:00
seawood%netscape.com
9aead217bc Change import library creation to get 25% speedup on startup on OS/2.
Also, decrease the size of dlls & exes by adding /OPTFUNC linker option.
Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Bug #190536 r=mkaply,cls a=asa


git-svn-id: svn://10.0.0.236/trunk@137115 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:53:28 +00:00
seawood%netscape.com
6c2b089de9 Stop using short library name for layout as the default name is already 8 chars.
Thanks to Michael Kaply <mkaply@us.ibm.com> for the patch.
Bug #190483 r=cls a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137114 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:47:33 +00:00
bzbarsky%mit.edu
e75fed314c Fix typo leading to infinite recursion crash. Bug 191229, r=timeless/caillon,
sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@137113 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:38:48 +00:00
oeschger%netscape.com
580c849845 large updates to help content, brought over from commercial and converted, lot of missing pref->help stuff, dispensation per 162559, r=robinf, a=asa
git-svn-id: svn://10.0.0.236/trunk@137112 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:31:49 +00:00
pschwartau%netscape.com
251e559389 We've decided to follow Perl, rather than ECMA, and allow unescaped braces in regexp patterns, evan if they are not part of a quantifier. See bug 190685.
git-svn-id: svn://10.0.0.236/trunk@137111 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:25:51 +00:00
leaf%mozilla.org
f3702eb192 Automated update
git-svn-id: svn://10.0.0.236/trunk@137110 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:15:06 +00:00
peterlubczynski%netscape.com
86f89b8b6c Attempting to fix bustage on myotonic by adding newline to end of file
git-svn-id: svn://10.0.0.236/trunk@137109 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:09:17 +00:00
dougt%netscape.com
835f747735 Renaming zlib to mozz similar to what is used on linux. This is to avoid linking to EVIL implementations of zlib. see bug 190460. r=cls,r=ssu, sr=darin. a=asa
git-svn-id: svn://10.0.0.236/trunk@137108 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:03:01 +00:00
dougt%netscape.com
ca50b67f58 Renaming zlib to mozz similar to what is used on linux. This is to avoid linking to EVIL implementations of zlib. see bug 190460. r=cls,r=ssu, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@137107 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 02:02:30 +00:00
wtc%netscape.com
fc82d526b5 Bug 191214: backed out the previous checkin until this bug (object leaks)
is fixed.


git-svn-id: svn://10.0.0.236/trunk@137106 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 01:50:31 +00:00
darin%netscape.com
9c111da1ad fixes bug 190988 "hang when displaying image attachments" r/sr=sspitzer
a=asa


git-svn-id: svn://10.0.0.236/trunk@137105 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 01:34:41 +00:00
waldemar%netscape.com
844477713d Removed named function parameters. Allowed full qualified names as dynamic properties of objects.
git-svn-id: svn://10.0.0.236/trunk@137103 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 01:19:28 +00:00
waldemar%netscape.com
040f693d1a Removed the "named" keyword
git-svn-id: svn://10.0.0.236/trunk@137102 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 01:18:20 +00:00
sicking%bigfoot.com
d7cc2320cf Bug 190628: Make some string-functions behave according to spec when second argument is an empty-string.
r=Pike sr=peterv a=asa


git-svn-id: svn://10.0.0.236/trunk@137100 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 01:01:05 +00:00
peterlubczynski%netscape.com
43c72e8503 Making PluginSDK build with ENABLE_TESTS, bug 112255 r=cls a=asa
git-svn-id: svn://10.0.0.236/trunk@137099 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:57:22 +00:00
peterlubczynski%netscape.com
209dd8f285 Adding REQUIRES to PluginSDK, removing copying of header, bug 112255 r=cls a=asa
git-svn-id: svn://10.0.0.236/trunk@137098 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:53:04 +00:00
sspitzer%netscape.com
bb4ce08adb fix for bug #158711. don't show the "show and alert" pref UI for platforms
(like linux) that don't have the alert service.
r/sr=dmose, a=asa


git-svn-id: svn://10.0.0.236/trunk@137097 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:46:28 +00:00
wtc%netscape.com
89a5f206f5 Bug 171263: signtool should call NSS_Shutdown before it exits.
git-svn-id: svn://10.0.0.236/trunk@137096 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:39:37 +00:00
dougt%netscape.com
d3b15e51b1 re-enables nsDebug in xpcom glue. 191005 , r=chak, sr=darin, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137095 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:34:03 +00:00
depstein%netscape.com
94e5795310 Fix for bug 143273.Remove "match whole word" from MfcEmbed's find dlog.
r=chak, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@137094 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-30 00:11:12 +00:00
relyea%netscape.com
1f798137c8 Move LIBJAR definitions around so that NT builds.
git-svn-id: svn://10.0.0.236/trunk@137093 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 23:37:10 +00:00
sspitzer%netscape.com
3e5af2c483 new icons for bug #124080, different icon for secure LDAP addressbooks.
not part of the build yet, a=asa.


git-svn-id: svn://10.0.0.236/trunk@137092 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 23:09:49 +00:00
ccarlen%netscape.com
eec9c13439 Bug 189222 - TestGtkEmbed crashes when clicking on link. r=nisheeth/sr=dbaron/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137091 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 22:03:08 +00:00
chanial%noos.fr
8460947240 forgot this one.
git-svn-id: svn://10.0.0.236/trunk@137090 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 22:00:08 +00:00
chanial%noos.fr
a173c577fc Don't highlight items in menubars
git-svn-id: svn://10.0.0.236/trunk@137088 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 21:09:58 +00:00
mikep%oeone.com
0575a77b5f Merging in from new version of jslib.
git-svn-id: svn://10.0.0.236/trunk@137084 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 18:56:51 +00:00
mikep%oeone.com
9ecf99191c Upgrading to new version of file from jslib, bug 2954.
This fixes problems with the calendar not loading on start up if the calendarManager.rdf file doens't exist.


git-svn-id: svn://10.0.0.236/trunk@137081 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 16:16:33 +00:00
neil%parkwaycc.co.uk
cdff9d4335 Bug 106712 disable the View | Messages | Threaded menuitem when in quick search mode r/sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@137079 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 13:38:57 +00:00
bzbarsky%mit.edu
4c6540337b Fix abs pos positioning regression. Bug 181644 redux, patch by
Rick.Ju@sun.com, r=bzbarsky, sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137078 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 11:35:10 +00:00
chanial%noos.fr
f45e0cec4a ooops... backing out. I did not intend to check this in.
git-svn-id: svn://10.0.0.236/trunk@137077 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 08:39:01 +00:00
chanial%noos.fr
503d8b81ae fix a stupid js warning
git-svn-id: svn://10.0.0.236/trunk@137076 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 07:47:30 +00:00
chanial%noos.fr
b7b1d745f1 fix js warning
git-svn-id: svn://10.0.0.236/trunk@137075 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 07:42:59 +00:00
chanial%noos.fr
e860b0108b Porting fix for bug 181764 from the trunk.
Page Info has no more xpfe dependencies.


git-svn-id: svn://10.0.0.236/trunk@137074 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 07:39:36 +00:00
varga%netscape.com
ec1bebcc9f Fix for bug 182842. major perf regression (O(N^2)) in bookmark writing (closing windows)
r=darin, sr=jag, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137073 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 07:36:52 +00:00
darin%netscape.com
f033d09f91 final patch for bug 190326 "crash in nsJARChannel.cpp when launching calendar"
r=dougt sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@137071 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:47:55 +00:00
darin%netscape.com
94bb1466a2 fixes bug 190946 "refreshing newsgroups does not download all groups"
r/sr=sspitzer a=asa


git-svn-id: svn://10.0.0.236/trunk@137070 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:46:30 +00:00
darin%netscape.com
72efe2ae2f fixes bug 190863 "some Images fail to load with pipelining enabled"
r=dougt sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@137069 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:42:30 +00:00
darin%netscape.com
57bac18c51 fixes bug 190549 "Textarea with lots of text within refuses to submit"
r=sicking sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@137068 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:40:16 +00:00
sspitzer%netscape.com
f4dbfceb41 fix for bug #128446
clicking on 'name' column in folder pane reverses account sort order.
thanks to myk@mozilla.org for the patch
r=varga, sr=scc,sspitzer a=asa


git-svn-id: svn://10.0.0.236/trunk@137067 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:24:47 +00:00
sspitzer%netscape.com
9d85785def fix for bug #189890
we need to clone the search terms for a view before modifying them for quick search
otherwise we'll be modifying the view.
r=cavin, a=asa


git-svn-id: svn://10.0.0.236/trunk@137066 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:03:57 +00:00
sspitzer%netscape.com
cbe63048ab fix for #131384. gracefully handle unexpected errors when populating the identity menulist.
thanks to Smaug (smaug@jippii.fi) for the initial patch.
r=cavin,a=asa


git-svn-id: svn://10.0.0.236/trunk@137065 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 06:00:54 +00:00
bzbarsky%mit.edu
1ef6385a48 Use GetUnicodeResource instead of GetResource to fix intl issues. Bug 189106,
r=timeless, sr=dmose, a=asa.


git-svn-id: svn://10.0.0.236/trunk@137064 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 04:22:20 +00:00
bzbarsky%mit.edu
735ec1d319 Scrolling to some anchors broken (charset issues). Bug 190886,
r+sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@137063 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 04:18:59 +00:00
timeless%mozdev.org
539adc1d6b Bug 189726 editorUtilities.js loaded twice when messengercompose.xul called
work by dgk@metrocast.net r=sspitzer sr=sspitzer a=asa


git-svn-id: svn://10.0.0.236/trunk@137062 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 04:16:54 +00:00
sspitzer%netscape.com
a01d1b20e7 fix for #191041. showing some pop specific UI in the server panel for imap
and nntp.  caused by checkin for #137863.  r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137061 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:55:53 +00:00
kaie%netscape.com
34e0f96707 b=165301 False mixed content (encrypted page with unencrypted information) Security Warning
r=javi sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@137060 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:52:01 +00:00
aaronl%netscape.com
73edc9cb1b Bug 189853. Click to drop down menu bar item sometimes getting blocked, r=kyle, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@137059 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:41:31 +00:00
aaronl%netscape.com
c01cab11b1 Bug 190755. Backspace sometimes crashing find as you type. r=timeless, sr=jst, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137058 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:39:36 +00:00
aaronl%netscape.com
adbb01a467 Bug 190495. Find As You Type shouldn't start in about:config (XUL content). Also fixes bug 189193, Find As You Type shouldn't try link find in text only doc. r= caillon, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@137057 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:34:20 +00:00
aaronl%netscape.com
67c6ad06df Bug 190838. Status bar repeatedly says 'find stopped'. r=brade, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@137056 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 03:31:47 +00:00
depstein%netscape.com
ed9282eb4b Fix for bug 185627. Widens pixel area around find backwards button. r=chak, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@137053 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 02:27:13 +00:00
darin%netscape.com
c20da014ab fixes bug 187996 "Strange behavior on 305 redirect" r=bbaetz sr=bzbarsky a=dbaron
git-svn-id: svn://10.0.0.236/trunk@137051 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-29 01:13:12 +00:00
jst%netscape.com
e348fae140 Fixing regression bug 179918. HTML script elements with either a 'for' or 'event' attribute wouldn't execute, they were treated as event handler scripts, even if only one of the attributes were present. r=bugmail@sicking.cc, sr=bzbarsky@mit.edu, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@137045 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 22:35:12 +00:00
gerv%gerv.net
be41769a94 Fix "variable declaration masks earler declaration" warning. No bug number.
git-svn-id: svn://10.0.0.236/trunk@137044 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 22:32:53 +00:00
dougt%netscape.com
aec466b50d xpcom is unable to always load .js component file. r=ssu, sr=alecf, a=rjesup, b=190560
git-svn-id: svn://10.0.0.236/trunk@137043 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 22:17:58 +00:00
dougt%netscape.com
6684eeb0e6 xpcom is unable to always load .js component file. r=ssu, sr=alecf, a=rjesup, b=190560 build/nsXPComInit.cpp
git-svn-id: svn://10.0.0.236/trunk@137042 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 22:07:53 +00:00
peterlubczynski%netscape.com
cf3e6e800a Fixing bug 188959, HIDDEN attribute on EMBED should hide, r=av, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@137041 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 21:59:28 +00:00
burnus%gmx.de
0ab6451ed8 bug 190999 - Quips.cgi editing doesn't show quips author -- s/FetchSQLData/FetchOneColumn/
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@137039 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 21:11:44 +00:00
varga%netscape.com
439231f1b3 Fixing a typo.
Not part of build.


git-svn-id: svn://10.0.0.236/trunk@137038 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 20:07:11 +00:00
sicking%bigfoot.com
c7c1900f46 Fix warning caused by previous checkin (bug 186979)
r=peterv


git-svn-id: svn://10.0.0.236/trunk@137037 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 19:19:47 +00:00
darin%netscape.com
f4f1443f1f fixes bug 190840 "If connection times out, no error messages displayed"
r=dougt sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@137036 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 19:19:08 +00:00
darin%netscape.com
2dec453174 fixes one of the crashes reported in bug 190326 "crash in nsJARChannel.cpp
when launching calendar" r=dougt sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@137035 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 19:13:52 +00:00
relyea%netscape.com
e91cc9a0bf 1) add vfyserv to the standard build.
2) add tool to build shared library signature files for FIP's.

Code to verify requires NSPR changes before we can check it in.


git-svn-id: svn://10.0.0.236/trunk@137034 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 18:53:22 +00:00
relyea%netscape.com
86f9a31ae9 New header file to dump defines for managing signed FIPs libraries.
git-svn-id: svn://10.0.0.236/trunk@137033 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 18:50:02 +00:00
relyea%netscape.com
ed0e221f04 Compile modutil with shared libraries.
git-svn-id: svn://10.0.0.236/trunk@137032 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 16:44:33 +00:00
relyea%netscape.com
f8d21115e4 Export functions needed for modutil to be compiled dynamically.
git-svn-id: svn://10.0.0.236/trunk@137031 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 16:41:46 +00:00
relyea%netscape.com
26b427884a Remove dead code and symbols from lib jar so that modutil can compile when
linked with it.


git-svn-id: svn://10.0.0.236/trunk@137030 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 16:39:32 +00:00
relyea%netscape.com
3bb3de12ff Sign 3 sets of changes are here:
1) Provide accessor functions for the PK11_DefaultArray so that modutil
does not have to link statically to access it.

2) Try setting the attribute on an object before we go to the work of copying
it (Function Only used in Java).

3) Optimize searching for the more common types of attributes.


git-svn-id: svn://10.0.0.236/trunk@137029 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 16:38:04 +00:00
sicking%bigfoot.com
3bbbb03a41 Bug 186979: Start transformation at actual node passed in.
r=Pike sr=peterv a=asa


git-svn-id: svn://10.0.0.236/trunk@137027 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 15:21:52 +00:00
kaie%netscape.com
faaade74cb b=190640 Remove the DHE ciphersuites until they work
r=javi sr=bryner a=asa


git-svn-id: svn://10.0.0.236/trunk@137026 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 15:06:29 +00:00
jake%bugzilla.org
b237924b18 Spell servlet correctly. Also, Scarab is now at Version 1.0 Beta 13, as long as I'm updating...
git-svn-id: svn://10.0.0.236/trunk@137025 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 13:16:01 +00:00
chanial%noos.fr
78c93446f8 speed up a bit loading a bookmark from the sidebar.
Fix also a regression: CTRL-click and SHIFT-click load only the selected bookmark.


git-svn-id: svn://10.0.0.236/trunk@137024 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 08:21:10 +00:00
chanial%noos.fr
1556522d9e This file was not used since 0.1
git-svn-id: svn://10.0.0.236/trunk@137023 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 07:10:43 +00:00
chanial%noos.fr
f50e9098b8 Fix bug in getIndexOfResourceInContainer and some regressions in the bookmark manager:
- DND should keep the selection
- selection for undo and redo commands


git-svn-id: svn://10.0.0.236/trunk@137022 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 07:08:54 +00:00
ben%netscape.com
ad1d796bf5 remove extra line from jar.mn
git-svn-id: svn://10.0.0.236/trunk@137021 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 06:26:33 +00:00
bernd.mielke%snafu.de
8dc8a39e8b set the quirk height default to NS_AUTOHEIGHT if we are in a unconstrained container bug 189840 r/sr=roc+moz a=asa
git-svn-id: svn://10.0.0.236/trunk@137020 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 05:19:20 +00:00
sspitzer%netscape.com
5259992a15 supplimental fix for bug #180857
make spam-status more strongly bound to the message on IMAP.
we weren't subtracting the flags correctly.

thanks to bienvenu for the fix.  r/sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@137019 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 05:17:28 +00:00
cltbld%netscape.com
a4dd4ae95d Switching to unix-named file.
git-svn-id: svn://10.0.0.236/trunk@137012 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:51:28 +00:00
dbaron%dbaron.org
a81104697d Fix leak in AutoRegisterComponent. b=189811 r=dougt sr=bzbarsky a=asa
git-svn-id: svn://10.0.0.236/trunk@137011 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:42:56 +00:00
dbaron%dbaron.org
a4baf8e91e Backout checkin for bug 171343 (no longer needed) in the hopes of fixing talkback on Linux. b=176886 r=bryner a=asa
git-svn-id: svn://10.0.0.236/trunk@137010 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:41:01 +00:00
sicking%bigfoot.com
e7ba30f78d Bug 190631: xsl:value-of shouldn't call ::characters on the resulthandler with an empty string.
r=Pike, sr=peterv, a=asa


git-svn-id: svn://10.0.0.236/trunk@137009 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:36:27 +00:00
sspitzer%netscape.com
aa075b8deb turn hang (on send, or save draft of certain email) into an assert
by double checking some args to make sure they are valid.

bug #187065.  the bug will open until we fix the real problem.

sr=darin, a=asa


git-svn-id: svn://10.0.0.236/trunk@137008 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:26:24 +00:00
pschwartau%netscape.com
aa7e830a32 Adding a missing escape to the regexp pattern to make it ECMA-correct.
git-svn-id: svn://10.0.0.236/trunk@137007 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:14:15 +00:00
ssu%netscape.com
552bde14ca fixing:
bug 190144 - New moz installer w/GRE needs to handle upgrade scenario
bug 190360 - GRE Uninstall does not remove registry keys
bug 190364 - Remove GRE from custom component list in the mozilla installer
bug 190862 - default GRE installation path should be Common File
bug 190378 - should not use "not.supplied.com" as default download host

r=sgehani
rs=seth
a=dbaron


git-svn-id: svn://10.0.0.236/trunk@137006 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 01:04:09 +00:00
sspitzer%netscape.com
929cf4bfa9 add a online help place holder for the fake account.
r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@137005 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-28 00:01:28 +00:00
kaie%netscape.com
639dd24dd0 b=190394 "website certified by an unknown authority" - nssckbi not found breaks PKI trust
r=dougt sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@137004 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 23:53:02 +00:00
shliang%netscape.com
f5819fb82a fix problem in popup permissions enumerator. r=danm,sr=jag,a=asa
git-svn-id: svn://10.0.0.236/trunk@137003 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 23:42:51 +00:00
sfraser%netscape.com
b2f8e4c8c3 Uncomment the rm -r of the temp dir that I had out for testing.
git-svn-id: svn://10.0.0.236/trunk@137002 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 23:32:12 +00:00
sfraser%netscape.com
ecb50b6711 Adding perl script to fix up nm output for Mac OS X, and adding 'unix' scripts that work for Mac OS X and linux.
git-svn-id: svn://10.0.0.236/trunk@137001 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 23:31:00 +00:00
sfraser%netscape.com
0a4b63dbc3 Fix linebuffer size to be big enough for some of the huge symbols we get on OS X (1200 long, but 4k should be enough to cover anything).
git-svn-id: svn://10.0.0.236/trunk@137000 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 23:30:02 +00:00
wtc%netscape.com
619e3f24af Bug 90010: added support for parisc64. I received this patch from
Christopher Blizzard <blizzard@mozilla.org>.


git-svn-id: svn://10.0.0.236/trunk@136996 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 22:36:06 +00:00
suresh%netscape.com
e150996c62 bug 166648 - allow link prefetching to be disabled via user prefs. r-dougt, sr-alecf, a-asa.
git-svn-id: svn://10.0.0.236/trunk@136995 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 22:23:28 +00:00
nisheeth%netscape.com
3e85f128db Fix for bug 174628. r=darin, sr=jst, a=asa. Only escape non-ASCII characters in url passed to nsGlobalWindow::InternalLoad().
git-svn-id: svn://10.0.0.236/trunk@136994 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 22:02:44 +00:00
blizzard%redhat.com
6d0c217ff5 Part of bug #90010. Mozilla on linux/s390(x). r=wtc,sr=shaver,a=dbaron(ports)
git-svn-id: svn://10.0.0.236/trunk@136993 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 21:52:52 +00:00
mcafee%netscape.com
3538b40783 changes for darwin. r=garrett/smfr
git-svn-id: svn://10.0.0.236/trunk@136992 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 21:46:04 +00:00
mcafee%netscape.com
1ebae9d670 changes for darwin
git-svn-id: svn://10.0.0.236/trunk@136991 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 21:43:04 +00:00
rogerl%netscape.com
de5c571dc3 Fixing bug #190685, re-allowing '{' as un-quantifier literal.
git-svn-id: svn://10.0.0.236/trunk@136990 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 21:13:15 +00:00
igor%mir2.org
349a098b79 Added log for more fixed bugs
git-svn-id: svn://10.0.0.236/trunk@136989 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 20:04:13 +00:00
suresh%netscape.com
22196b652e backing out neil's checkin to bug 189384. This caused a blocker in commercial tree. r/sr-brade. a-kyle.
git-svn-id: svn://10.0.0.236/trunk@136982 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 18:41:03 +00:00
kin%netscape.com
dd9ec493c4 Fix for bug 190382 (selectionEnd off by one when user selects text via CMD/CTRL-A)
- Prevent DOMPointToOffset() from counting a br as a newline, if it is the last child of the anonymous div.

- Fixed 3 compiler warnings in DOMPointToOffset().

r=jkeiser@netscape.com  sr=sfraser@netscape.com  a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@136979 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 15:25:38 +00:00
cbiesinger%web.de
b030f0237d removing gfx2. r=kmcclusk sr/a=roc+moz
189836
not part of any build.


git-svn-id: svn://10.0.0.236/trunk@136978 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 15:16:13 +00:00
ben%netscape.com
4b8c92c673 Fix 168415 (selection quirks) and 190678 (js errors when right clicking personal toolbar)
git-svn-id: svn://10.0.0.236/trunk@136977 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 11:00:11 +00:00
locka%iol.ie
f7b0e81334 Ignore ";URL=" meta refreshes and tolerate some other mistakes. b=170021 r=radha@netscape.com sr=alecf@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@136976 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 10:18:56 +00:00
ben%netscape.com
a153bf466f Fixing bug 172025, "Cancelling a creation of new bookmark folder still leaves a folder called New Folder"
git-svn-id: svn://10.0.0.236/trunk@136975 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-27 06:44:11 +00:00
igor%mir2.org
dab395fb7b Do not call setSelectedIndex on frame JList if there are no frames.
git-svn-id: svn://10.0.0.236/trunk@136974 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 18:33:30 +00:00
igor%mir2.org
d31446dce8 Added documentation strings for runCommnad and spawn is changed to pass empty argument array instead of null if function arguments are not specified to avoid a null pointer exception in InterpretedFunction.call
git-svn-id: svn://10.0.0.236/trunk@136973 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 18:28:26 +00:00
igor%mir2.org
e4d3bff79a Documentation about runCommand in shell
git-svn-id: svn://10.0.0.236/trunk@136972 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 18:01:43 +00:00
igor%mir2.org
5ffb9ec4b1 Added runCommand to execute external processes
git-svn-id: svn://10.0.0.236/trunk@136969 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 15:43:50 +00:00
igor%mir2.org
8f06ca4eea Added list of resolved Bugzilla reports
git-svn-id: svn://10.0.0.236/trunk@136968 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 14:30:47 +00:00
antonio.xu%sun.com
e6765a193a fix for bug 188344 - forward a email as a attchment will be failed to display correctly
r=ducarroz, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@136966 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-26 06:00:13 +00:00
darin%netscape.com
37da61bc45 fixes bug 189672 "100% CPU, exhaust system resource, freeze mozilla, while
displaying page" r=dougt sr=bzbarsky a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136965 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 22:43:13 +00:00
alecf%netscape.com
59aecfa117 fix for bug 190283 - save unicode values stored like \u4ea2 after decoding them.
r=jst, sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@136964 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 22:13:48 +00:00
mkaply%us.ibm.com
6f293258ed #189355
r=brade, sr=smfr, a=asa
Midas - Support <XX> format for setting block type, NOT Heading X (see bug for details)


git-svn-id: svn://10.0.0.236/trunk@136963 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 21:49:53 +00:00
mkaply%us.ibm.com
ecd7a3a991 #190492
r=pedemont, sr=blizzard for platform specific code, a=asa
OS/2 only - remove backslash before calling FileExists so it correctly finds the directory


git-svn-id: svn://10.0.0.236/trunk@136961 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 21:36:30 +00:00
bzbarsky%mit.edu
66bed7efa6 Don't try to uncompress .Z files when saving them. Bug 162271, patch by harm
ten Napel <harm.ten.napel@oracle.com> and Smaug <smaug@jippii.fi>, r=dwitte,
sr=bzbarsky, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136960 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 21:00:28 +00:00
jake%bugzilla.org
0a01f97f86 The GNU Free Documentation License should be at the end of the guide (in an appendix), not at the begining.
Also, add the version number of the guide to the front page.


git-svn-id: svn://10.0.0.236/trunk@136959 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 20:41:06 +00:00
bzbarsky%mit.edu
9f0028bd5b Don't pass around objects with a refcount of 0. Bug 190088, patch by
dwitte@stanford.edu, r=jag, sr=darin, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136958 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 17:35:24 +00:00
burnus%gmx.de
d67586aee7 Bug 190582 - quips table initial definition in checksetup.pl missing approved column
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@136957 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 10:22:34 +00:00
bzbarsky%mit.edu
62135fac26 Fix "maxlength" attr regression. bug 190425, r=jkeiser, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@136956 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 04:50:24 +00:00
bzbarsky%mit.edu
afaed80e4b Remove hack around bug in nsPipe now that the bug is fixed. Bug 190410,
r=bbaetz, sr=darin, a=asa


git-svn-id: svn://10.0.0.236/trunk@136955 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 04:45:36 +00:00
jake%bugzilla.org
9e69fb6cbb Bug 190521 - If the attachment didn't have a Content-Description: header in the e-mail, it ended up not having a description in Bugzilla leaving nothing to click on in the Attachment table on the bug form.
r=jake
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136954 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 04:39:14 +00:00
bryner%netscape.com
471802c3fa fixing IRIX bustage (^M's from mstoltz's checkin)
git-svn-id: svn://10.0.0.236/trunk@136953 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 03:58:38 +00:00
darin%netscape.com
f08338d963 fixes bug 190003 "cannot open links when pipelining enabled, URLs load
forever, process not terminated on exit" r=dougt sr=bzbarsky a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136952 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 02:30:20 +00:00
waldemar%netscape.com
09b6c3580c Added set<=
git-svn-id: svn://10.0.0.236/trunk@136951 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 02:26:51 +00:00
waldemar%netscape.com
993e2aff78 Reorganized instance member lookup to remove vtables and simplify and slightly restrict overriding
git-svn-id: svn://10.0.0.236/trunk@136950 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 02:20:16 +00:00
waldemar%netscape.com
f56d3fc72b Updated action font
git-svn-id: svn://10.0.0.236/trunk@136949 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 02:19:17 +00:00
bryner%netscape.com
8768926ab8 fixing cocoa-only bustage; not part of the normal build. a=roc.
git-svn-id: svn://10.0.0.236/trunk@136948 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 02:18:29 +00:00
bryner%netscape.com
73ac5f125a fix frame name for nsTextControlFrame (debug-only code). r/sr/a=roc.
git-svn-id: svn://10.0.0.236/trunk@136947 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 01:47:20 +00:00
mstoltz%netscape.com
c837a27778 Bug 189799 - Ignore username:password portion of URL when making URL comparisons for security. r=heikki, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@136946 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 01:43:37 +00:00
blythe%netscape.com
6158250e05 Not part of the normal build.
Implement drift negation in order to clean up the win32 diff report.


git-svn-id: svn://10.0.0.236/trunk@136945 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 01:31:17 +00:00
ssu%netscape.com
218268ef5a fixing blocker bug 190465 - Download/Saving of files/pages is completely broken for installer builds with GRE. sr=spitzer
git-svn-id: svn://10.0.0.236/trunk@136944 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-25 01:23:08 +00:00
sspitzer%netscape.com
ff4e6ac61a fix for #190215. multi-line properties in string bundles don't work on win32.
this isn't a blocker, but it's bad enough to take for the respin.
patch by alecf.  r/sr=sspitzer, a=kyle


git-svn-id: svn://10.0.0.236/trunk@136942 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 21:47:53 +00:00
mikep%oeone.com
3c05c228a9 Fixing bug 189903, moving views section of calendar prefs to its own node. Patch by Tim Davenport.
git-svn-id: svn://10.0.0.236/trunk@136937 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 15:39:40 +00:00
ccarlen%netscape.com
1c1d189041 Add nsCloseAllWindows.js to the packages - needed for bug 97622. r=dougt/sr=alecf/a=asa
git-svn-id: svn://10.0.0.236/trunk@136936 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 15:38:44 +00:00
neil%parkwaycc.co.uk
15494ac259 Bug 189384 Composer window slow to load r=brade sr=sfraser a=asa
git-svn-id: svn://10.0.0.236/trunk@136935 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 13:33:32 +00:00
burnus%gmx.de
ee019123d0 Bug 190437 - showdependencytree.cgi and showdependencygraph should use switch_to_shadow_db
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136934 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 10:59:08 +00:00
neil%parkwaycc.co.uk
aecca43ab8 Bug 189842 Highlighting in about:config is too dark p=durbacher@gmx.de r=me sr=jag a=asa
git-svn-id: svn://10.0.0.236/trunk@136933 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 10:37:40 +00:00
asa%mozilla.org
142b3b53a7 checkin for dmose. fix bustage for --enable-ldap-extensions bug 189691 r+sr=dmose a=asa
git-svn-id: svn://10.0.0.236/trunk@136932 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 09:57:29 +00:00
gerv%gerv.net
ad14027552 Bug 190377 - Add credit for JPNIC code to about: page. Patch by gerv; r=caillon, a=asa.
git-svn-id: svn://10.0.0.236/trunk@136931 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 07:57:35 +00:00
rginda%netscape.com
621ea7a53c - chatzilla only -
a=asa@mozilla.org
fix main chatzilla pref panel, bug 190935
chatzilla pref menuitem should open to chatzilla pref panel, bug 23265
channel links missing port number, bug 133561
view scrolls for new messages even when viewing scrollback, bug 109993


git-svn-id: svn://10.0.0.236/trunk@136930 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 07:44:55 +00:00
wtc%netscape.com
4b6932465e Bug 190396.
Don't fail the search if the token returned an error that indicates that it
legitimately couldn't find a CRL


git-svn-id: svn://10.0.0.236/trunk@136929 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 06:37:03 +00:00
sspitzer%netscape.com
4b8475acd6 fix a transparency issue with one of the icons from gail
git-svn-id: svn://10.0.0.236/trunk@136928 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 05:32:34 +00:00
darin%netscape.com
72216b050d fixes bug 189843 "Cannot make any connections to "localhost" (127.0.0.1)"
r=dougt sr=sspitzer a=blizzard


git-svn-id: svn://10.0.0.236/trunk@136927 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 05:32:06 +00:00
sspitzer%netscape.com
73f797980d supplimental fix for #189988,
the "don't slap a <div> around the body when forwarding plain text emails" bug.
fix suggested by ducarroz.
r=kaie, sr=sspitzer, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@136926 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 05:17:42 +00:00
sspitzer%netscape.com
f0266b601b new icons from gail. a=asa
git-svn-id: svn://10.0.0.236/trunk@136925 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 04:32:25 +00:00
sspitzer%netscape.com
8a0e1649be "fix" for regression bug #190153.
clicking in addressing widget (in reply or edit mailing list dialog)
duplicates the first address.

regression caused by the band-aid for #90337.

thanks to neil for this patch.

r/sr=sspitzer,a=blizzard


git-svn-id: svn://10.0.0.236/trunk@136924 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 04:04:40 +00:00
depstein%netscape.com
815998bb90 Added VisitRequestHeaders and VisitResponseHeaders for nsiHttpChannel tests.
Added in support for Tooltip Listener. not part of the build.


git-svn-id: svn://10.0.0.236/trunk@136923 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 03:56:31 +00:00
ssu%netscape.com
1380a06d7d fixing bug 190131 - Need to run xptlink.pl after GRE stage creation process. r=granrose,sr=,a=leaf
git-svn-id: svn://10.0.0.236/trunk@136920 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 01:22:06 +00:00
darin%netscape.com
f15d7db18c fixes bug 190194 "cache leak regression from recent checkin"
r=gordon sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@136919 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 01:13:15 +00:00
darin%netscape.com
09833d8405 fixes bug 189897 "Download starts with Download Error, then Cancel Button disabled"
r=adamlock sr=bzbarsky a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136918 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 00:53:00 +00:00
aaronl%netscape.com
aa108a4dc4 Bug 189228. Find as you type text search not working after repeated find. r=kyle, sr=henry jia
git-svn-id: svn://10.0.0.236/trunk@136917 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 00:50:02 +00:00
bzbarsky%mit.edu
dfa9bb3e29 Document the various fields in mimeTypes.rdf. Bug 61408, r=timeless,
sr=mozbot, rubber-a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@136916 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 00:46:11 +00:00
justdave%syndicomm.com
03a483b3ae Bug 106918: the "movers" param was not being interpreted correctly by move.pl or the show_bug template. Also the exporter value was not properly fed into the xml template.
r= myk, a= justdave


git-svn-id: svn://10.0.0.236/trunk@136914 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 00:27:28 +00:00
blythe%netscape.com
1bf8a67338 Not part of normal build.
Hopefully fix win32 tinderbox codesighs numbers.
Problem revolved around decoding string outside of printable range.
This was giving the scripts (sort) some problems.


git-svn-id: svn://10.0.0.236/trunk@136913 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-24 00:27:17 +00:00
gerv%gerv.net
3e27abdb68 Bug 126955 - Bugzilla should support translated/localized templates. Patch by burnus; r=gerv, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@136912 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 23:34:10 +00:00
relyea%netscape.com
09be8d3cd2 Bug 167756. Clean up previous patch: add lastState field, and set the SSL Error on failure.
git-svn-id: svn://10.0.0.236/trunk@136911 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 22:02:37 +00:00
ssu%netscape.com
f2232911fd fixing bug 190309 - mozilla stub installer does not work. r=granrose, a=leaf
git-svn-id: svn://10.0.0.236/trunk@136909 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 21:37:55 +00:00
pschwartau%netscape.com
fa9b573ad9 Commenting out sections containing (?< or (?(condition). Perl supports these operators, but ECMAScript does not.
git-svn-id: svn://10.0.0.236/trunk@136905 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 20:56:08 +00:00
pschwartau%netscape.com
228addc18a Trivial comment fix.
git-svn-id: svn://10.0.0.236/trunk@136904 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 20:22:19 +00:00
pschwartau%netscape.com
09759e13b2 Removing an erroneous section. According to the spec, can't have more than 2 consecutive |?| quantifers in a regexp.
git-svn-id: svn://10.0.0.236/trunk@136903 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 20:08:39 +00:00
pschwartau%netscape.com
5a93d2f9d6 Whitespace cleanup.
git-svn-id: svn://10.0.0.236/trunk@136902 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 20:03:12 +00:00
relyea%netscape.com
8e08bd486a Write changes back to the database when we correct incorrect user bit settings.
git-svn-id: svn://10.0.0.236/trunk@136901 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 19:38:53 +00:00
ssu%netscape.com
88dda76e98 fixing bug 190247 and 190151 blocker bugs - mozilla fails to enter secure site. r=chak,a=leaf
git-svn-id: svn://10.0.0.236/trunk@136899 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 19:34:03 +00:00
blythe%netscape.com
d3a475a735 Not part of build
Jump out on match


git-svn-id: svn://10.0.0.236/trunk@136898 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 18:59:25 +00:00
mikep%oeone.com
ea0281c2d5 Removing extra F in background-color..
git-svn-id: svn://10.0.0.236/trunk@136896 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:57:52 +00:00
blythe%netscape.com
522487099f Not part of the normal build.
Ignore some special symbols in the symbol dump.


git-svn-id: svn://10.0.0.236/trunk@136895 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:38:03 +00:00
relyea%netscape.com
387934ebb1 Set the size value when extracting a key 19011.
git-svn-id: svn://10.0.0.236/trunk@136894 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:30:15 +00:00
relyea%netscape.com
00bc37d763 Check for token removal before continuing SSL sessions which have client auth
with certs associated with that token. bug 167756.


git-svn-id: svn://10.0.0.236/trunk@136893 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:27:34 +00:00
relyea%netscape.com
33749fcd61 Fix bug 180824 Version 3.4 string hard coded in default token name.
git-svn-id: svn://10.0.0.236/trunk@136892 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:16:50 +00:00
wtc%netscape.com
5199cc28c3 Bug 90010: added support for Linux for s390 and s390x. The patch is
contributed by Gerhard Tonn <GerhardTonn@swol.de>.


git-svn-id: svn://10.0.0.236/trunk@136891 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:16:32 +00:00
wtc%netscape.com
b44671fc7c Should pass NSUNLINKMODULE_OPTION_NONE instead of FALSE as the second
argument to NSUnLinkModule.  Both macros have the same value (0), so this
is a cosmetic change.


git-svn-id: svn://10.0.0.236/trunk@136890 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:07:50 +00:00
wtc%netscape.com
0b8da990ed Bug 90010: added support for Linux for s390 and s390x. The patch is
contributed by Gerhard Tonn <GerhardTonn@swol.de>.
Modified Files: _linux.cfg _linux.h prprf.c


git-svn-id: svn://10.0.0.236/trunk@136889 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 17:03:22 +00:00
alecf%netscape.com
a7f53a2f6d fix for bug 190256 - string bundles broken on escaped characters, and when keys cross buffer boundaries
patch by bzbarsky, r=alecf, sr=jst, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136887 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 15:48:19 +00:00
ian.mcgreer%sun.com
965a8261d9 always use explicit serial numbers on generated certs, should fix QA failures on leia
git-svn-id: svn://10.0.0.236/trunk@136886 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 15:38:03 +00:00
ccarlen%netscape.com
34e07d566a Bug 190172 - Keyboard shortcut for switch profile is wrong. r=aaronl/sr=jaggernaut/a=asa
git-svn-id: svn://10.0.0.236/trunk@136885 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 15:29:56 +00:00
blythe%netscape.com
b241f9f50f Not part of a normal build.
win32 codesighs symbol data now more accurate.


git-svn-id: svn://10.0.0.236/trunk@136884 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 15:13:24 +00:00
locka%iol.ie
6b63e45caa Implement ITargetFrame to fix targetted navigation via Win32 Hlink APIs. b=183508 r=dbradley@netscape.com sr=alecf@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@136881 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 14:02:55 +00:00
kairo%kairo.at
5867229bd0 bug 190085 - about:plugins is not working; remove spaces from .properties files to work around a regression of .properties parser, r=biesi, sr=bz, a=asa
git-svn-id: svn://10.0.0.236/trunk@136880 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 13:46:53 +00:00
despotdaemon%netscape.com
cfe0c66679 Pseudo-automatic update of changes made by burnus@gmx.de.
git-svn-id: svn://10.0.0.236/trunk@136879 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 10:50:25 +00:00
bryner%netscape.com
d1febb5914 remove content/build/Makefile
git-svn-id: svn://10.0.0.236/trunk@136878 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 08:16:26 +00:00
bryner%netscape.com
b0dbbbd846 Removing files that are no longer part of the build. a=roc.
git-svn-id: svn://10.0.0.236/trunk@136877 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 08:15:52 +00:00
timeless%mozdev.org
e177f83f70 Bug 190197 AnyEntryGroups() is broken in globals.pl; call from enter_bug.cgi breaks bug entering
patch by jon@vmware.com r=justdave a=justdave


git-svn-id: svn://10.0.0.236/trunk@136876 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 07:43:06 +00:00
timeless%mozdev.org
4b2274a48e Bug 188712 Apple's Browser Safari does not support server-push
patch by melo@isp.novis.pt r=timeless a=justdave


git-svn-id: svn://10.0.0.236/trunk@136875 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 07:37:15 +00:00
bbaetz%acm.org
a1a5afb86f Bug 189446 - Can't change product of a bug
r, a=justdave


git-svn-id: svn://10.0.0.236/trunk@136873 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 07:11:42 +00:00
bbaetz%acm.org
fa2988e322 Bug 188161 - assignee/qa missing change knobs.
r, a=justdave


git-svn-id: svn://10.0.0.236/trunk@136872 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 07:11:25 +00:00
darin%netscape.com
fe90a2b41e cleaning up "uninitialized variable" warning resulting from last checkin, b=189689
git-svn-id: svn://10.0.0.236/trunk@136869 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 05:15:56 +00:00
blizzard%redhat.com
115d52a509 Bug #190079. Crasher. Check length of string before calling |Last| on it. r=jkeiser,sr=scc,a=roc
git-svn-id: svn://10.0.0.236/trunk@136868 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 04:12:58 +00:00
cltbld%netscape.com
de94fcb0d2 Fix Zdiff label change for embed case. -mcafee
git-svn-id: svn://10.0.0.236/trunk@136867 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 03:55:44 +00:00
cltbld%netscape.com
6e3ae48ded shaking out last few bugs from codesize test changes. -mcafee
git-svn-id: svn://10.0.0.236/trunk@136866 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 03:48:15 +00:00
dougt%netscape.com
348eff25b2 Fixing bustage in nsXPIDLString. r=jag, sr=dbaron, b=189591, a=Donald Rumsfeld
git-svn-id: svn://10.0.0.236/trunk@136865 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 03:35:30 +00:00
cltbld%netscape.com
4f8c37317b Refactor codesize test so we can run both Z and mZ (SeaMonkey/Embed) numbers sequentially. Previously you had to pick one or the other.
git-svn-id: svn://10.0.0.236/trunk@136864 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 03:16:18 +00:00
darin%netscape.com
725a3c23ee fixes bug 189689 "intermittent duplicated content on pages, CRC errors in
downloads" r=dougt sr=bzbarsky a=dbaron


git-svn-id: svn://10.0.0.236/trunk@136863 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 02:39:01 +00:00
bryner%netscape.com
a9470ee61d fix startup error dialog about PSM
git-svn-id: svn://10.0.0.236/trunk@136862 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 02:32:20 +00:00
jpierre%netscape.com
22bf9f8cc7 Fix for bug #126930 - make SSL_ConfigServreSessionIDCache work on OS/2 by not using shared memory in single process mode. r=nelsonb
git-svn-id: svn://10.0.0.236/trunk@136858 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-23 00:15:08 +00:00
ssu%netscape.com
1a7c323535 fixing bug 190151 smoketest blocker - Fails to enter secure site. r=sgehani,a=myk
git-svn-id: svn://10.0.0.236/trunk@136857 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 23:32:18 +00:00
paper%animecity.nu
dcf379d4f8 Fix for blocker Bug 190124 & Bug 190121. r=jkeiser, sr=blizzard, a=roc+moz. Send Pixel Units to GetPixelValue, not GetIntValue
git-svn-id: svn://10.0.0.236/trunk@136856 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 22:33:27 +00:00
rginda%netscape.com
714c1bf7b3 fix mac CFM build bustage, move content/pref-irc-* files into content/prefpanel/ subdirectory, and strip pref-irc-* prefix to shorten filenames to appease the short bus.
also combine locale/en-us/pref-irc-*.dtd into a single pref-irc.dtd


git-svn-id: svn://10.0.0.236/trunk@136854 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 20:56:14 +00:00
mkaply%us.ibm.com
be1cb53837 Oops left printf in
git-svn-id: svn://10.0.0.236/trunk@136853 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 20:49:21 +00:00
myk%mozilla.org
1c75fe037a Fixing Mac build bustage (bug 189642).
Patch by Chris Seawood <seawood@netscape.com>.
r=pink


git-svn-id: svn://10.0.0.236/trunk@136850 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 19:10:33 +00:00
rogerl%netscape.com
49a58b71b6 Fixed bug #189898, replace not working with string argument. Also added
error checking for bad quantifiers (see bug 188206)


git-svn-id: svn://10.0.0.236/trunk@136849 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 18:55:41 +00:00
ssu%netscape.com
3be3e294b9 fixing blocker bug 186703 - gre not installing. a=lpham.
git-svn-id: svn://10.0.0.236/trunk@136848 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 18:13:01 +00:00
wtc%netscape.com
7f2e030479 Bug 190112: PK11_ReadAttribute needs to call PK11_ExitSlotMonitor before
we return because of allocation failure.


git-svn-id: svn://10.0.0.236/trunk@136847 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 17:44:36 +00:00
despotdaemon%netscape.com
ddd0ca2167 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@136845 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 17:10:12 +00:00
kestes%walrus.com
b767245ce1 a new popup library donated by Dominik Stadler. Some thought needs to
be given as to where the js sources will be placed, so I parametrized this and
leave the decision for later.


git-svn-id: svn://10.0.0.236/trunk@136844 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 15:44:54 +00:00
peterv%netscape.com
4bbec78712 Backing out part of fix for bug 91557 to fix smoketest blocker 190064.
git-svn-id: svn://10.0.0.236/trunk@136843 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 15:39:44 +00:00
blythe%netscape.com
535ae9b726 Not part of a nomral build.
Work in progress on win32 symbol DB for codesighs.


git-svn-id: svn://10.0.0.236/trunk@136842 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 14:06:15 +00:00
peterv%netscape.com
95fb72189b Fix stupid error in last checkin.
git-svn-id: svn://10.0.0.236/trunk@136840 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 13:39:17 +00:00
ssu%netscape.com
047c2ab047 forgot to reset the GRE supersede version from 0.0.0.0 to 1.3.0.0 as part of the patch for bug 186703. it was set to 0.0.0.0 for testing purposes. does not affect tinderbox builds.
git-svn-id: svn://10.0.0.236/trunk@136839 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 11:22:34 +00:00
peterv%netscape.com
3826e14a9d Fixing CFM bustage. nsICookiePromptService, not nsICookiePromptSerice.
git-svn-id: svn://10.0.0.236/trunk@136838 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 11:09:47 +00:00
peterv%netscape.com
ef8865b85d Fixing CFM bustage. Necko2, not Necko.
git-svn-id: svn://10.0.0.236/trunk@136837 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 11:06:15 +00:00
sspitzer%netscape.com
1f92298ca3 fix for bug #189933
bulletproofing for news crasher when downloading list of newsgroups until I can reproduce it.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136836 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 08:29:03 +00:00
timeless%mozdev.org
c928db330f This is not part of the build (it doesn't build).
nsIConverterInputStream::Init now requires four parameters instead of three.
To build this test, add uconv necko to requires.


git-svn-id: svn://10.0.0.236/trunk@136835 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 08:10:45 +00:00
caillon%returnzero.com
30a2ad500d comment fixes r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136834 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 08:01:37 +00:00
ssu%netscape.com
150f5bf3ea fixing bug 186703 - fix moz-ns installers to build and run with GRE. got verbal r=sgehani,sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@136833 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 07:59:52 +00:00
rbs%maths.uq.edu.au
1a7b3b4f82 Add a comment following b=123049, r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136832 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 07:56:13 +00:00
timeless%mozdev.org
fb2a9303e4 Not part of the build (without these changes it doesn't build).
Fixed the input string variable name in1/in.
CreateACString takes three params not two.
variables living in nsCOMPtrs should not be left alive past xpcom shutdown.


git-svn-id: svn://10.0.0.236/trunk@136831 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 07:51:44 +00:00
rbs%maths.uq.edu.au
593d0fea8e Rework the positioning functions of <mover>, <munder>, <munderover> to improve their behavior w.r.t italic and non-italics fonts. Also use some fuzzy arithmetic to mitigate roundoff errors that could cause accents to collide with their base, b=135940, r=bzbarsky, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@136830 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 07:42:20 +00:00
caillon%returnzero.com
d89816a9f6 Bug 115539, Add pref UI to disable/enable domain guessing in Location (adding "www." and ".com" to domain names)
r=timeless sr=jag


git-svn-id: svn://10.0.0.236/trunk@136829 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 07:05:14 +00:00
timeless%mozdev.org
df9dd1ca37 Bug 180384 nsExternalHelperAppService should observe profile changes
r=ccarlen sr=dmose


git-svn-id: svn://10.0.0.236/trunk@136828 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:57:15 +00:00
sspitzer%netscape.com
13e8176c83 fix build bustage for when SMIME is not defined.
thanks to jag / jrgm / bz for the heads up.


git-svn-id: svn://10.0.0.236/trunk@136827 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:28:01 +00:00
jst%netscape.com
c37c8539c6 Fixing bug 180552. Make document.body.client* work even if the body element's overflow is set to hidden. r=caillon@returnzero.com, sr=peterv@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136826 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:25:24 +00:00
wtc%netscape.com
31144c495b Bug 189546: updated the comments to reflect what the new code does.
git-svn-id: svn://10.0.0.236/trunk@136825 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:24:53 +00:00
timeless%mozdev.org
bfb7453f74 This isn't part of the build (without these changes it doesn't build).
"register" is a keyword and wasn't the right name for the variable anyway.
the registrar no longer accepts nsIFileSpec. Converted the caller to nsIFile.


git-svn-id: svn://10.0.0.236/trunk@136822 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:18:06 +00:00
ccarlen%netscape.com
1aa09ccb4d Bug 97622 - Put in UI to expose dynamic profile switching. r=kaie/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@136821 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 06:13:39 +00:00
timeless%mozdev.org
c784518ba2 Bug 179798 cookie confirm dialog no longer works in embedding (doesn't call nsIPrompt service)
patch by mvl@exedo.nl r=dwitte sr=darin


git-svn-id: svn://10.0.0.236/trunk@136820 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:52:33 +00:00
rginda%netscape.com
5f028076a9 - chatzilla only -
add James Ross'  pref panel, bug 23265
rework pref code to be table driven
add pref observer to watch for prefs changed from outside chatzilla
make the keyboard shortcut for ``Leave Channel'' and ``Close View'' Accel+W, bug 122782
add UI for the multiline input mode, bug 149588
add tab completion for channel names, bug 131633
fix bug where networks added from a startup script didn't show in the list displayed in the *client* tab at startup.
adds key= and pass= parameters to irc: urls, bug 187699
fix ``secret'' channel mode, bug 184244


git-svn-id: svn://10.0.0.236/trunk@136819 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:49:52 +00:00
shliang%netscape.com
32c1a1a690 bug 190015 - change verbage for popup blocking - r/sr=jag
git-svn-id: svn://10.0.0.236/trunk@136818 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:46:42 +00:00
alecf%netscape.com
8706e11747 oops, warnings fixes from previous checkin
git-svn-id: svn://10.0.0.236/trunk@136817 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:46:07 +00:00
shliang%netscape.com
3d57a5b41a bug 190014 - prefill popup manager appropriately when opened from popup blocked statusbar icon - r/sr=jag
git-svn-id: svn://10.0.0.236/trunk@136816 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:45:11 +00:00
bzbarsky%mit.edu
97c8b9ce2f wallpaper for bug 189076, r=pkw@us.ibm.com, rs=bryner
git-svn-id: svn://10.0.0.236/trunk@136815 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:42:57 +00:00
rginda%netscape.com
39f106b471 - venkman only -
bug 189563, initialize hookresult to prevent warnings


git-svn-id: svn://10.0.0.236/trunk@136814 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:42:35 +00:00
alecf%netscape.com
ffa5897235 fix for bug 121341 - make nsPersistentProperties::Load sane. don't make a virtual call for every character read in from the .properties file!
git-svn-id: svn://10.0.0.236/trunk@136813 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:15:40 +00:00
dougt%netscape.com
f824c4cdd8 Fixing mozilla version command option. r=pavlov, sr=alec, b=189992
git-svn-id: svn://10.0.0.236/trunk@136812 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 05:03:21 +00:00
mkaply%us.ibm.com
171a806dc5 #189349
r=cbiesinger, sr=bzbarsky
Have OS/2 follow the Windows path for downloadManager dialog - launch and open in explorer


git-svn-id: svn://10.0.0.236/trunk@136811 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:58:09 +00:00
nelsonb%netscape.com
11991ff798 Add OIDs for AES Key Wrap mechanism.
git-svn-id: svn://10.0.0.236/trunk@136810 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:35:54 +00:00
pkw%us.ibm.com
c863c9452f Bug 189859 - Checkin for Bug 173388 broke 64-bit builds on AIX.
r=harishd@netscape.com, sr=jst@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136809 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:29:43 +00:00
peterv%netscape.com
cbe858b0cc Fix for bug 157142 (link transformiix standalone to XPCOM). Better txStack and remove use of NamedMap for documents. r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136808 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:27:59 +00:00
seawood%netscape.com
2f0ce75629 MOZILLA_VERSION is now defined in mozilla-config.h so no need to explicitly define it here
Bug #189462 r=dougt


git-svn-id: svn://10.0.0.236/trunk@136807 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:24:56 +00:00
seawood%netscape.com
d391377126 Add MOZILLA_VERSION to mozilla-config.h.
Bug #189462 r=dougt


git-svn-id: svn://10.0.0.236/trunk@136806 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:23:27 +00:00
seawood%netscape.com
aecde0217e Export nsBuildID.h to the SDK so that embedding apps are aware of the buildid.
Bug #189462 r=dougt


git-svn-id: svn://10.0.0.236/trunk@136805 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:22:34 +00:00
colin%theblakes.com
3cc2a76f38 Work around system() length restriction in OpenVMS. b=189773. r=cls.
git-svn-id: svn://10.0.0.236/trunk@136804 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:16:58 +00:00
danm%netscape.com
e8ee4a56e8 add tridentprofile extension. bug 185689 r=jag
git-svn-id: svn://10.0.0.236/trunk@136803 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:15:36 +00:00
danm%netscape.com
eb9772e7ef add id to menu item for overlay insertion. bug 185689 r=jag
git-svn-id: svn://10.0.0.236/trunk@136802 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:15:32 +00:00
danm%netscape.com
f0be0205f8 add tridentprofile resources makefile. bug 185689 r=jag
git-svn-id: svn://10.0.0.236/trunk@136801 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:15:29 +00:00
danm%netscape.com
df1e682719 add very minimal UI, mostly for testing. not part of default build. bug 185689 r=ben,jag
git-svn-id: svn://10.0.0.236/trunk@136800 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:15:23 +00:00
danm%netscape.com
ea24ed7215 sense of error reporting changed from 'migrated at least one of everything' to reporting processing errors. bug 185689 r=lumpy
git-svn-id: svn://10.0.0.236/trunk@136799 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:13:23 +00:00
depstein%netscape.com
54ddf1590e updated nsIHttpChannel response tests. more flexible parameter passing. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@136798 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:11:05 +00:00
mkaply%us.ibm.com
067c5fe747 No bug
r=mkaply, sr=blizzard
OS/2 only - initial checkin of os2Embed sample


git-svn-id: svn://10.0.0.236/trunk@136797 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:01:57 +00:00
peterv%netscape.com
65bedbff6c Fix some warnings.
git-svn-id: svn://10.0.0.236/trunk@136796 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 04:00:19 +00:00
wtc%netscape.com
e54f7214ed Bug 189546: moved the switch statement for known key lengths to the
beginning of PK11_GetKeyLength to work around a deadlock in nCipher
module if PK11_ExtractKeyValue is called.


git-svn-id: svn://10.0.0.236/trunk@136795 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:55:21 +00:00
katakai%japan.sun.com
deb096577b bug 174424
[ctl]Fix problem in handling of Choti E-Matra (093f)
r=Roland.Mainz@informatik.med.uni-giessen.de
CTL is not part of default build
patch from prabhat.hegde@sun.com


git-svn-id: svn://10.0.0.236/trunk@136794 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:54:31 +00:00
sspitzer%netscape.com
b1fdd30d4c fix for bug #189988
when forwarding plain text emails we'd add a <div> tag around the body of the
email, the one that gets generated for message display.
r=ducarroz


git-svn-id: svn://10.0.0.236/trunk@136793 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:53:50 +00:00
louie.zhao%sun.com
adba43c7fb bug 189740 Adding CID support Check Code to PS should be close when TrueType printing is disabled
r=bstell; sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@136792 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:52:38 +00:00
alecf%netscape.com
29dc467308 move keyword and data handlers over to necko2 to shrink the embedding build - bug 106206
sr=darin, r=pavlov


git-svn-id: svn://10.0.0.236/trunk@136791 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:50:16 +00:00
kaie%netscape.com
a6730a669f b=188363 Bad error messages when server uses an invalid cert (-8054)
r=nelsonb sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@136789 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:41:35 +00:00
sicking%bigfoot.com
2565fd0940 Bug 190032: Make sure the default namespace doesn't get applied for xsl:attribute created attributes without a namespace.
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@136788 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:34:40 +00:00
peterv%netscape.com
c593729f51 Fix for bug 74786 (String cleanup). Non-copying tokenizer. r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136787 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:33:07 +00:00
peterv%netscape.com
fc3af3e754 Fix for bug 157142 (link transformiix standalone to XPCOM). Make resolveQName take nsIAtom**. r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136786 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:31:45 +00:00
seawood%netscape.com
9b812aa3da Unset MOZ_STATIC_CMPONENT_LIBS so that xpinstall works in static builds.
Bug #187126


git-svn-id: svn://10.0.0.236/trunk@136785 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:31:38 +00:00
peterv%netscape.com
b92e5ede69 Fix for bug 186538 (Touching the ownerElement of an attribute through XPath generates a security error.). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136784 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:25:51 +00:00
peterv%netscape.com
e782da7ad8 Fix for bug 157142 (link transformiix standalone to XPCOM). Better txStack and remove use of NamedMap for documents. r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136783 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:24:40 +00:00
aaronl%netscape.com
8cd3c0b121 Bug 169489. Preferences panel for Keyboard Navigation and Find As You Type. r=samir, jag. sr=dveditz, ui approval from Jatin, others
git-svn-id: svn://10.0.0.236/trunk@136782 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:23:05 +00:00
peterv%netscape.com
aa8f3400f3 Fix for bug 91557 (constructor property of DOM Object instances return incorrect constructor). sr=jst, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@136781 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:22:35 +00:00
timeless%mozdev.org
90077afb94 Bug 189736 Move early return failure cases to the beginning of nsDOMClassInfo::Init()
r=sicking sr=jst


git-svn-id: svn://10.0.0.236/trunk@136780 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:18:41 +00:00
nelsonb%netscape.com
18c5b1a358 Implement new AES Key Wrap mechanisms. Bug 167818.
git-svn-id: svn://10.0.0.236/trunk@136779 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 03:13:04 +00:00
pschwartau%netscape.com
d5d842c70e Initial add. Regression test inspired by bug 188206.
git-svn-id: svn://10.0.0.236/trunk@136778 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 02:34:45 +00:00
sfraser%netscape.com
c498555368 Remove assertion that was botched into uselessness by paper's checkin. r/sr=floppymoose
git-svn-id: svn://10.0.0.236/trunk@136777 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 01:28:26 +00:00
brade%netscape.com
0204c2dd62 handle new commands (useCSS, hiliteColor, readonly); add boolean command handlin
g; bugs 184718 and 184719 (r=mkaply, sr=smfr)


git-svn-id: svn://10.0.0.236/trunk@136776 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 01:04:51 +00:00
peterlubczynski%netscape.com
1f63a70e92 Backing out last checkin
git-svn-id: svn://10.0.0.236/trunk@136775 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 01:04:39 +00:00
peterv%netscape.com
b7f8285d6a Another CFM bustage fix.
git-svn-id: svn://10.0.0.236/trunk@136774 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:58:20 +00:00
brade%netscape.com
7d7c2010f3 force undo commands to be updated (bug 183133); r=sfraser, sr=kin
git-svn-id: svn://10.0.0.236/trunk@136773 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:50:47 +00:00
brade%netscape.com
b65f367525 fix bug 187351 by cancelling docshell refresh timers; fix bug 182290 by changing destruction order and cleaning up error checking (don't let some failures stop destruction sequence); r=sfraser, sr=kin
git-svn-id: svn://10.0.0.236/trunk@136772 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:46:38 +00:00
brade%netscape.com
0de26cbd6c fixes for bug 182290 (cancelling timer during destruction) and bug 183133 (enabling undo after typing a letter); r=sfraser, sr=kin
git-svn-id: svn://10.0.0.236/trunk@136771 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:41:32 +00:00
peterlubczynski%netscape.com
4a48d29cf9 Marking plugin SDK part of the build during ENABLED_TESTS, bug 112255 r=cls
git-svn-id: svn://10.0.0.236/trunk@136770 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:37:06 +00:00
cavin%netscape.com
5e78b0a1fb Fix for bugs 183574, 188444, 189123, 189140 and 189995. Deleting addrbooks on either or both sides of palm and mozilla now works. Empty addrbooks are now synced. Added logging facility to mozilla conduit dll. r/sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@136769 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:26:37 +00:00
dougt%netscape.com
ff549712f7 Fixing crash in NS_MsgStripRE() due to multiply-linked strings. b=189591, sr=dbaron, r=me
git-svn-id: svn://10.0.0.236/trunk@136768 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:21:48 +00:00
jkeiser%netscape.com
ecedb3f82e Fix merge problem with bug 159757, r=bugmail@sicking.cc, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@136767 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:12:55 +00:00
darin%netscape.com
e68dbc6b89 fixes bug 189699 "Current trunk does not automatically dial-up"
patch=aardvarktm@hotmail.com r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@136766 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:09:05 +00:00
peterv%netscape.com
2785d19081 Fix for bug 74786 (String cleanup). Non-copying tokenizer. r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136765 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:04:08 +00:00
peterv%netscape.com
081acd66c9 Trying to fix more CFM bustage.
git-svn-id: svn://10.0.0.236/trunk@136764 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-22 00:00:24 +00:00
timeless%mozdev.org
bb7a3500c4 Bug 187466 Dialog buttons too close to content above them in classic
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136763 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 23:41:24 +00:00
darin%netscape.com
254b0e5f06 minor tweak to last checkin
git-svn-id: svn://10.0.0.236/trunk@136762 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 23:29:31 +00:00
darin%netscape.com
8c943d3684 fixes bug 189779 "crashes quitting [@ nsDiskCacheOutputStream::~nsDiskCacheOutputStream]"
r=kaie sr=bz


git-svn-id: svn://10.0.0.236/trunk@136761 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 23:28:08 +00:00
peterlubczynski%netscape.com
ac4a6544df Adding NPAPI plugin headers to Gecko SDK, bug 112255 r=cls
git-svn-id: svn://10.0.0.236/trunk@136760 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 23:10:59 +00:00
aaronl%netscape.com
d7828065af Bug 185270. Make Insert/shift+insert open link in new tab (foreground/background, depending on whether shift is pressed). r=caillon, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136759 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 23:04:02 +00:00
bryner%netscape.com
fb7214b240 remove NS_INIT_ISUPPORTS (bug 178643, checking in for dbaron)
git-svn-id: svn://10.0.0.236/trunk@136758 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 22:58:26 +00:00
alecf%netscape.com
33adbc1ab1 fix for bug 189048 - seperate targets for building embed.jar and copying over the embedding files
r=cls


git-svn-id: svn://10.0.0.236/trunk@136757 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 22:42:52 +00:00
peterv%netscape.com
7951a619c5 Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@136756 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 22:38:21 +00:00
peterv%netscape.com
2818aa9cf2 Fix for bug 74786 (String cleanup). Non-copying tokenizer. r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136755 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 22:06:32 +00:00
cbiesinger%web.de
6bce11da1f fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@136754 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:32:36 +00:00
jkeiser%netscape.com
febf4c259f Stop firing mouse events at textnodes, fix tooltips not going away onmouseout (bug 185889, bug 185965), r=bryner@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136753 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:26:45 +00:00
heikki%netscape.com
d1273931da include no longer needed.
git-svn-id: svn://10.0.0.236/trunk@136752 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:25:48 +00:00
jkeiser%netscape.com
9ab164b399 Move HTMLValue parsing methods to HTMLValue (bug 159757), r=bugmail@sicking.cc, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136751 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:24:16 +00:00
pschwartau%netscape.com
676daf88fd Initial add. Regression test for bug 189898.
git-svn-id: svn://10.0.0.236/trunk@136750 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:23:20 +00:00
rginda%netscape.com
413ed6de99 - venkman only -
change align="baseline" to align="center", bug 188807
s/commandManager/prefManager/ when trying to save view layout
tweak some spacing


git-svn-id: svn://10.0.0.236/trunk@136749 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:21:15 +00:00
cbiesinger%web.de
822e664339 188805 r=adamlock sr=darin nsIWebProgressListener should explain aStatus
git-svn-id: svn://10.0.0.236/trunk@136748 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:16:24 +00:00
paper%animecity.nu
6d7697d144 BUg 185775. r=biesi, sr=tor. Optimize 1st frame of animated GIFs by calculating only the dirty area and using that on subsequent loops.
git-svn-id: svn://10.0.0.236/trunk@136747 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:08:19 +00:00
kairo%kairo.at
c5606d2543 Bug 56863 - make about:plugins localizable, r=biesi, sr=bz
git-svn-id: svn://10.0.0.236/trunk@136746 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:04:23 +00:00
peterlubczynski%netscape.com
66d9485bca Fixing Plugin SDK samples, bug 112255, bug 186163, bug 185776
git-svn-id: svn://10.0.0.236/trunk@136745 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 21:03:49 +00:00
colin%theblakes.com
16ac14d8e5 Make the default IPv4. b=189916. r=cls
git-svn-id: svn://10.0.0.236/trunk@136744 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 20:55:36 +00:00
cbiesinger%web.de
19f3488918 186936 r=kmcclusk sr=roc+moz move stuff out of gfx/public/
git-svn-id: svn://10.0.0.236/trunk@136743 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 20:38:19 +00:00
wtc%netscape.com
73bb8966c6 Bug 189345: we incorrectly assumed that a C_XxxFinal call to determine the
length of the buffer would also terminate the active operation if the
buffer length is 0.  PKCS#11 says it doesn't, so we need to make the
additional C_XxxFinal call even if the buffer length is 0.  Allocate a
buffer from the heap if the stack buffer is too small and free the
heap-allocated buffer before we return from pk11_Finalize.  We can use the
stack buffer if count is equal to its size.


git-svn-id: svn://10.0.0.236/trunk@136742 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 19:33:24 +00:00
sfraser%netscape.com
32b5a49d0b Fix bug 189301 -- downloading files to dir with Japanese name doesn't work if showing progress dialog. Fix nsIDownloadManager idl to not trash non-ASCII UTF8 paths, and fix nsDownloadProxy.h to use a UTF8 path, rather than a native path. Other fixes noted in bug. r=bz, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136740 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 19:30:59 +00:00
bzbarsky%mit.edu
89c3aab4c8 Back out part of patch from bug 172693 until we can do it better. Bug 189602,
r=timeless, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@136737 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 18:32:20 +00:00
mikep%oeone.com
cbf8ed1600 Fixing file reading because of change in Mozilla, bug 176919.
git-svn-id: svn://10.0.0.236/trunk@136736 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 18:19:21 +00:00
mikep%oeone.com
a91ac362e7 Adding in better debug info.
git-svn-id: svn://10.0.0.236/trunk@136735 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 18:18:45 +00:00
bienvenu%netscape.com
f705926f04 store junk mail classification on imap servers that support user keywords, r/sr=sspitzer 180857
git-svn-id: svn://10.0.0.236/trunk@136734 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 18:00:00 +00:00
timeless%mozdev.org
ee80029db5 Bug 187466 Dialog buttons too close to content above them in classic
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136733 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 15:55:32 +00:00
bugreport%peshkin.net
3951c09fa5 Bug 189790 voting info not displayed when editing/viewing a bug
patch by jnerad@bellsouth.net
r=burnus
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136732 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 15:20:16 +00:00
kin%netscape.com
bf1214f351 Fix for bug 188440 (textfields clobber selection when they should not.)
mozilla/layout/html/forms/src/nsTextControlFrame.cpp
  mozilla/layout/html/forms/src/nsTextControlFrame.h

Revert back to using a private method (SelectAllContents()) which implements a select all of the text widget contents by manually creating a range and adding it to the selection. This avoids triggering the autocomplete selection listener, which listens for a selection reason of SELECTALL_REASON. This change should be undone once the autocomplete listener is modified to distinguish between a programatic select all and one generated by a user gesture.

r=brade  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136731 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 15:17:32 +00:00
axel%pike.org
123b0313ee not part of build, fix getBaseURI for Attr nodes in transformiix standalone
git-svn-id: svn://10.0.0.236/trunk@136730 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 14:21:10 +00:00
axel%pike.org
9de7f5fac1 not part of build, wallpaper that most tests expect UTF-8 encoding, which is all we have, rs=peterv
git-svn-id: svn://10.0.0.236/trunk@136729 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 14:19:54 +00:00
axel%pike.org
118072a2cd not part of build, remove broken uri parsing from transformiix standalone
git-svn-id: svn://10.0.0.236/trunk@136728 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 14:12:11 +00:00
axel%pike.org
fa2d97c2d7 make nspr and tx path handling happy on win32, not part of build
git-svn-id: svn://10.0.0.236/trunk@136727 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 14:07:43 +00:00
bzbarsky%mit.edu
555409444d Fix the RDF-munging code to better handle the whole update-vs-assert thing.
Bugs 189034, 189080, 189107.  r=pkw@us.ibm.com, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@136726 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 13:27:23 +00:00
cbiesinger%web.de
f99df08815 168095 patch by dwitte@stanford.edu r=suresh sr=peterv expired cookies not deleted correctly
git-svn-id: svn://10.0.0.236/trunk@136725 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 13:26:28 +00:00
neil%parkwaycc.co.uk
882317f245 Bug 189835 about:config doesn't work anymore r=jan sr=peterv
git-svn-id: svn://10.0.0.236/trunk@136724 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 12:52:18 +00:00
varga%netscape.com
6c17e32bdd Fixing a typo.
git-svn-id: svn://10.0.0.236/trunk@136723 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 12:13:59 +00:00
shliang%netscape.com
f9dd9e543c bug 134345 - sidebar button. r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136722 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 08:49:35 +00:00
shliang%netscape.com
38771bd7a7 bug 176624 - popup blocking. r=danm, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136719 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 07:38:02 +00:00
caillon%returnzero.com
11542d4fc9 Bug 182933 - Updating more pref API users. r=timeless,sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136716 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 06:55:31 +00:00
dougt%netscape.com
0a64f29b87 Disabling Glue when building with timeline b=189869. r=cls
git-svn-id: svn://10.0.0.236/trunk@136715 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 06:33:50 +00:00
radha%netscape.com
12c52bce2e Fix for bug # 166799. r= adamlock sr=alecf. Use LOAD_NORMAL_REPLACE for loads from onLoad Handler.
git-svn-id: svn://10.0.0.236/trunk@136711 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 04:10:56 +00:00
pkw%us.ibm.com
8919eb3a40 Bug 189598 - application/octet-stream handlers should not be remembered
automatically.
r=bzbarsky@mit.edu, sr=jaggernaut@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136710 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 02:30:57 +00:00
seawood%netscape.com
c1f3d2c4ae Add atomic library for ultrasparc routines to packaging list.
r=wtc


git-svn-id: svn://10.0.0.236/trunk@136709 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 02:21:51 +00:00
kyle.yuan%sun.com
7100fa4a9d Bug 188156 gtk2 build is broken on Solaris (@embedding\browser\gtk\tests)
r=Roland.Mainz@informatik.med.uni-giessen.de, sr=blizzard
Sun compiler can't deal with a complicated arg in g_warning()


git-svn-id: svn://10.0.0.236/trunk@136707 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 01:54:07 +00:00
dbaron%dbaron.org
57b1c2e02a Fix crash (and refix other crashes in a cleaner way) by making UndisplayedMap own references to content nodes, just like frames do. b=161304 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136706 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 00:47:14 +00:00
dougt%netscape.com
d6fb01df3c fixing 189839 - remote gives the wrong return value. r=kairo@kairo.at
git-svn-id: svn://10.0.0.236/trunk@136705 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 00:12:11 +00:00
mkaply%us.ibm.com
912ee5ce97 #189841
r=dougt, sr=dmose
OS/2 only - remove config/os2 from the tree


git-svn-id: svn://10.0.0.236/trunk@136704 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-21 00:05:39 +00:00
mkaply%us.ibm.com
d757ab762f #95128
r=pedemont, r=wtc, sr=dmose
OS/2 only - remove dependency on OS/2 specific dirent in dbm code

That was also the previous checkin to mcom_db.h - messed up the comment


git-svn-id: svn://10.0.0.236/trunk@136703 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 23:13:38 +00:00
mkaply%us.ibm.com
9068c1c416 #165752
r=pedemont, sr=blizzard (OS/2 only)
OS/2 only - make -splash work


git-svn-id: svn://10.0.0.236/trunk@136702 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 23:11:05 +00:00
timeless%mozdev.org
577e8ab365 Bug 189685 Allow cookieservice to run without access to the profile directory
r=dwitte sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@136701 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 22:18:42 +00:00
wtc%netscape.com
783f471234 Bug 188439: fixed a bug in the PR_Poll implementation for
_PR_POLL_WITH_SELECT.  We could still call FD_SET if the osfd was larger
than FD_SETSIZE.  Fixed the bug that _PR_POLL_WITH_SELECT was defined after
the system header files had been included.  Need to define it on the
compile command line.  Define _USE_BIG_FDS on HP-UX.  Because that macro
increases the size of fd_set to about 7500 bytes and PR_Poll allocates 3
fd_sets on the stack, also increased the minimum thread stack size to 128KB
on HP-UX.
Modified Files: configure configure.in _hpux.h _osf1.h ptio.c


git-svn-id: svn://10.0.0.236/trunk@136698 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 20:52:48 +00:00
mikep%oeone.com
c1e1a714ac Fixing hover link color.
git-svn-id: svn://10.0.0.236/trunk@136692 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 19:37:47 +00:00
locka%iol.ie
6d33e8af82 NOT PART OF BUILD. Utility for listing and counting how many times iids are referenced by each executable and library
git-svn-id: svn://10.0.0.236/trunk@136691 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 19:36:59 +00:00
alecf%netscape.com
6cda6d10ed fix for bug 160377 - only write prefs when they are dirty.
sr=dveditz, r=timeless


git-svn-id: svn://10.0.0.236/trunk@136690 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 19:08:54 +00:00
timeless%mozdev.org
e4bbee0659 Bug 189785 CTL shouldn't use quotes for modulename
r=Roland.Mainz@informatik.med.uni-giessen.de sr=alecf


git-svn-id: svn://10.0.0.236/trunk@136689 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 19:07:10 +00:00
aaronl%netscape.com
c83fd4491f Bug 176296. make type ahead work in mailnews, support boolean accessibility.typeaheadfind.autostart pref. Reversing partial backout of this fix. r=kyle, sr=jst
git-svn-id: svn://10.0.0.236/trunk@136688 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 18:43:10 +00:00
karnaze%netscape.com
8ece4a7c7a bug 179683 - implement printing of fixed positioned elemements, clean up ViewportFrame. sr=roc, r=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@136686 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 18:04:34 +00:00
wtc%netscape.com
ce8700c963 Bug 80082: need to install libnspr_flt4.so in dist/bin too, for the Mozilla
client.


git-svn-id: svn://10.0.0.236/trunk@136682 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 16:29:42 +00:00
wtc%netscape.com
7d9945c67e Bug 134113: make NSPR build on Win32 using MinGW gcc. The patch is
contributed by Chris Seawood <seawood@cls.org> and Dan Mosedale
<dmose@mozilla.org>. r=wtc.
Modified files: configure configure.in config/Makefile.in autoconf.mk.in
now.c rules.mk lib/ds/Makefile.in lib/libc/src/Makefile.in
lib/msgc/src/Makefile.in prtypes.h _winnt.h pr/src/Makefile.in prmapopt.c
pr/src/md/windows/Makefile.in ntio.c ntmisc.c pr/tests/Makefile.in
runtests.ksh pr/tests/dll/Makefile.in


git-svn-id: svn://10.0.0.236/trunk@136681 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 16:26:24 +00:00
timeless%mozdev.org
507da6080d Bug 189496 Capitalize accesskeys in cache preferences
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136680 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 16:13:44 +00:00
timeless%mozdev.org
b76e6ce8be Bug 189492 Capitalize accesskey for More Infor_m_ation in smart browsing preferences
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136679 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 16:13:15 +00:00
timeless%mozdev.org
934074ef78 Bug 189495 Capitalize accesskeys in forms preferences
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136678 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 16:13:14 +00:00
timeless%mozdev.org
2c53ea663b Bug 80242 "Save As" doesn't check that the directory exists
patch by law r=timeless sr=jst


git-svn-id: svn://10.0.0.236/trunk@136674 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 15:19:45 +00:00
igor%mir2.org
805d7992de Patch from Christopher Oliver to fix http://bugzilla.mozilla.org/show_bug.cgi?id=189183
git-svn-id: svn://10.0.0.236/trunk@136673 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 15:09:45 +00:00
mkaply%us.ibm.com
5190c4ecb3 The real fix - there were two places I needed to ifneq
git-svn-id: svn://10.0.0.236/trunk@136666 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 13:47:49 +00:00
neil%parkwaycc.co.uk
fcda1abef2 Bug 189452 about:config localization issues r=caillon sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136665 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 13:39:19 +00:00
neil%parkwaycc.co.uk
a8f6d64c6b Bug 161333 js perf improvement in msgMail3PaneWindow.js, GetFirstSelectedMessage() r=dmose sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136664 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 13:07:06 +00:00
dbradley%netscape.com
b6a04fa280 Bug 189296 - Plugin code takes address of nsCOMPtr's. r=adamlock, sr=jst
git-svn-id: svn://10.0.0.236/trunk@136663 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 13:03:06 +00:00
peterv%netscape.com
06049a405e Remove redundant line.
git-svn-id: svn://10.0.0.236/trunk@136662 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 12:54:25 +00:00
timeless%mozdev.org
2716c33a04 Bug 180942 Helper Applications panel: buttons/groupbox partially cropped on right side
patch by doron r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@136661 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 12:39:50 +00:00
neil%parkwaycc.co.uk
46096ef45d Bug 179567 Cannot dismiss menu by clicking on menubar p=aaron r=bryner sr=jag
git-svn-id: svn://10.0.0.236/trunk@136660 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 11:58:30 +00:00
seawood%netscape.com
f6388a263a Fixing Forte static build bustage.
Thanks to Roland Mainz <Roland.Mainz@informatik.med.uni-giessen.de> for the patch.
r=cls sr=dmose


git-svn-id: svn://10.0.0.236/trunk@136659 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 11:57:47 +00:00
axel%pike.org
f2d91586d0 not part of the build, bad string do in test app
git-svn-id: svn://10.0.0.236/trunk@136657 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 11:14:20 +00:00
axel%pike.org
3f65056f7e bug 157142, clean up unnecessary configure tests and allmakefiles.sh, add a lib directory for standalone to get debug info on win32 (npob), r=cls
git-svn-id: svn://10.0.0.236/trunk@136656 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 11:04:27 +00:00
leaf%mozilla.org
aeed203f61 Automated update
git-svn-id: svn://10.0.0.236/trunk@136655 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 11:00:08 +00:00
axel%pike.org
ad94db72c8 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@136654 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 10:51:53 +00:00
neil%parkwaycc.co.uk
2f0455dd8b band-aid for bug 90337 URL bar not responsive to the "Enter/Return" key. r=ere sr=jag
git-svn-id: svn://10.0.0.236/trunk@136653 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 09:38:06 +00:00
paper%animecity.nu
aac6f3e054 Bug 181695 Cleanup nsIImage. r= dcone,arougthoper,pedemont,tor,timeless sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@136652 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 05:40:51 +00:00
jrgm%netscape.com
6c03de01b4 remove '#ifndef REPEATING_TIMERS' code. This was accidentally turned back on in 9/02 after being dead from 12/01, and will now revert to using repeating timers. Affect caret, <blink>, bookmarks & search 'ping'. bug 182141, r+sr=smfr
git-svn-id: svn://10.0.0.236/trunk@136651 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 04:26:17 +00:00
louie.zhao%sun.com
f42f3a2940 bug 180668 clean up unused file of freetype code
r=bstell, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@136650 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 03:04:22 +00:00
rbs%maths.uq.edu.au
534041f379 In certain dynamic updates, frames scheduled to be reprocessed could be destroyed in a ripple effect. Since this was a root problem, the patch fixes the crasher bugs 123049, 133219 154797 187671 187890, r=bzbarsky, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136649 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-20 01:07:03 +00:00
sicking%bigfoot.com
7ed1750027 Remove txAtom.h and remove uses of special tx-macros for atoms.
b=157142 r=Pike sr=peterv


git-svn-id: svn://10.0.0.236/trunk@136648 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 23:17:13 +00:00
axel%pike.org
4bee99bdba bug 157142, remove transformiix standalone special code in favour of module nspr stuff, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@136647 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 21:48:08 +00:00
darin%netscape.com
455bcc2aa7 attemping fix for linux Ts/Txul startup regression, b=189567
git-svn-id: svn://10.0.0.236/trunk@136646 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:46:51 +00:00
karnaze%netscape.com
dc2886a303 back out patch for bug 176423 (which I mistook for having sr). I'll leave the regression test case, since it doesn't crash.
git-svn-id: svn://10.0.0.236/trunk@136645 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:44:23 +00:00
karnaze%netscape.com
64afda8ff4 bug 176423 - Consider overflowing children when calculating max element width. sr=kin, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@136644 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:25:29 +00:00
karnaze%netscape.com
4d0ce76270 bug 175455 - Added mTableDerivedComputedWidth to the reflow state to detect computed widths which exist only because of table cells. Limit percent width of descendants whose percentage base has such a computed width. sr=roc, r=bernd
git-svn-id: svn://10.0.0.236/trunk@136643 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:07:39 +00:00
dbaron%dbaron.org
9a4fc1be02 Make the area frame containing the options of a select always have NS_BLOCK_SPACE_MGR so that outside floats don't mess up the inside of a select. b=48237 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136642 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:02:38 +00:00
dbaron%dbaron.org
d5a9c890d5 Fix crash (bug 189514) by refixing bug 187297 correctly: make nsXPInstallManager's QueryInterface method succeed for nsPICertNotification. b=189514 r=timeless sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@136641 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 20:01:23 +00:00
timeless%mozdev.org
9bec0d71a9 Bug 189684 nsrootidl.idl:69: Case mismatch between PRInt32' i:/build/mozilla/extensions/cookie/nsICookieManager2.idl:61: and PRint32'
r=darin sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@136640 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 19:38:34 +00:00
colin%theblakes.com
acd8daaf06 Fix bug in overrides. b=189579. r=cls
git-svn-id: svn://10.0.0.236/trunk@136639 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 19:14:05 +00:00
karnaze%netscape.com
23adc41944 Added AdjustAbsoluteContainingBlock to get the first-in-flow of a positioned inline frame in galley mode as the absolute containing block. sr=bzbarsky, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@136638 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 18:58:59 +00:00
heikki%netscape.com
635889ecc8 Bug 166978, XMLHttpRequest does not load synchronously in embedding applications, r=sicking, sr=darin. Bug 111614, DOMParser.parseFromString in modal dialog makes it non-modal. parseFromString also does not work in embedding when loading files that block the parser (like files with xml-stylesheet PI). r=sicking, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@136637 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 18:47:47 +00:00
kestes%walrus.com
7f6e1808f1 this does not work yet but I want to save my changes while working on it.
git-svn-id: svn://10.0.0.236/trunk@136636 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:41:34 +00:00
kestes%walrus.com
64056f93e2 must set up environment for taint perl to OK the system call.
git-svn-id: svn://10.0.0.236/trunk@136635 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:26:39 +00:00
kestes%walrus.com
999bdd89db fix comments discribing the file
git-svn-id: svn://10.0.0.236/trunk@136634 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:24:03 +00:00
kestes%walrus.com
c4147b01b5 add clarifying comments.
git-svn-id: svn://10.0.0.236/trunk@136633 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:22:54 +00:00
kestes%walrus.com
bd3d46a05c patch by dominik.stadler@gmx.at (Dominik Stadler) to fix header/body and other tags for Mozilla. Also capitalize the tags for easy reading.
git-svn-id: svn://10.0.0.236/trunk@136632 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:22:07 +00:00
kestes%walrus.com
8ed8ae75e6 quiet some new perl warnings.
git-svn-id: svn://10.0.0.236/trunk@136631 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:20:08 +00:00
kestes%walrus.com
3c79b070fd add a VC column simulation.
git-svn-id: svn://10.0.0.236/trunk@136630 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:18:56 +00:00
kestes%walrus.com
e193be5c91 set up the enviroment before we begin.
git-svn-id: svn://10.0.0.236/trunk@136629 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:17:02 +00:00
kestes%walrus.com
9f14891f74 add alt_linktext, also modularize the use of cvs mail addresses.
git-svn-id: svn://10.0.0.236/trunk@136628 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 17:15:41 +00:00
dbaron%dbaron.org
6f8b60dd7f Add testcase for bug 48237.
git-svn-id: svn://10.0.0.236/trunk@136627 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 16:32:57 +00:00
bernd.mielke%snafu.de
34d7f03d82 limit the number of rowspans to value that can be handled by the cellmap bug 141818 r=karnaze sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@136626 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 15:15:22 +00:00
mkaply%us.ibm.com
494b98b67a For reasons beyond me, NOT compling nsStackFrame is causing the bustage on OS/2
git-svn-id: svn://10.0.0.236/trunk@136625 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 15:11:18 +00:00
timeless%mozdev.org
538eb14e81 Bug #144428 [Qt] Qt-Mozilla hangs in nsASingleFragmentCString::GetReadableFragment (?) on startup, before bringing up the UI.
r=biesi sr=blizzard (ports)


git-svn-id: svn://10.0.0.236/trunk@136624 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 15:06:43 +00:00
kestes%walrus.com
4a26002b8d changes to the netscape specific legend provided by dominik.stadler@gmx.at to
fix capitalization and spelling.


git-svn-id: svn://10.0.0.236/trunk@136623 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 13:52:46 +00:00
kestes%walrus.com
64263c9fab changes to quiet new perl warnings. patch from "Darren Tucker" <dtucker@zip.com.au> to fix call to HTMLPopUp::Link
git-svn-id: svn://10.0.0.236/trunk@136622 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 13:40:06 +00:00
cbiesinger%web.de
db1462dac5 189630 r=bbaetz sr=dbaron uninitialized nsresult in nsIIOService
git-svn-id: svn://10.0.0.236/trunk@136621 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 10:55:23 +00:00
seawood%netscape.com
ecb6d6ed80 I always forget to change both the declaration & the definition.
Thanks to bird@anduin.net for the patch.
Fixing OS/2 bustage.


git-svn-id: svn://10.0.0.236/trunk@136620 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 06:43:19 +00:00
caillon%returnzero.com
f0e8462e9b Output 'background-position' values in the correct order (X before Y)
bug 189629, r+sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@136619 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 03:44:52 +00:00
seawood%netscape.com
e546507ab5 Callback functions must be defined as such.
Fixing OS/2 bustage.


git-svn-id: svn://10.0.0.236/trunk@136618 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 02:43:13 +00:00
caillon%returnzero.com
28dec73833 187414 - Use NodeFilter where we mean it.
r=sicking sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136617 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 02:37:54 +00:00
timeless%mozdev.org
c370d96d69 Bug 133383 nsMetaCharsetObserver destructor shouldn't call End
I think CID => ContractID bumped Txul so i'm reverting it per heikki


git-svn-id: svn://10.0.0.236/trunk@136616 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 02:37:22 +00:00
caillon%returnzero.com
b9398c95d8 189533, background-position has low accuracy. Specifically, it was not allowing fractional percentages.
r+sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@136615 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 02:36:04 +00:00
heikki%netscape.com
fa3e3d8df9 Bug 1882, get ref from usemap even when it contains full URL. r+sr=roc+moz.
git-svn-id: svn://10.0.0.236/trunk@136614 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 01:08:05 +00:00
timeless%mozdev.org
7dfa954482 Bug 183355 Typo in parser UTF charset detection code
patch by alexey@ihug.com.au r=ftang sr=heikki


git-svn-id: svn://10.0.0.236/trunk@136613 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:52:04 +00:00
timeless%mozdev.org
ce888ded2b Bug 186643 del key at the end of the urlbar asserts
r=jfrancis sr=bz


git-svn-id: svn://10.0.0.236/trunk@136612 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:46:56 +00:00
timeless%mozdev.org
7cdf82e614 Bug 189401 nsCharsetMenu::FreeResources gets a service on shutdown
r=alecf sr=bz


git-svn-id: svn://10.0.0.236/trunk@136611 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:46:17 +00:00
timeless%mozdev.org
6b449163a1 Bug 133383 nsMetaCharsetObserver destructor shouldn't call End
r=alecf sr=bz


git-svn-id: svn://10.0.0.236/trunk@136610 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:46:16 +00:00
roc+%cs.cmu.edu
f488de6005 Bug 117631. -moz-border-radius can make views transparent. r+sr=bz
git-svn-id: svn://10.0.0.236/trunk@136609 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:28:02 +00:00
roc+%cs.cmu.edu
e4337deb6b Bug 189566. nsDrawingSurfaceGTK::Lock computes aWidthBytes incorrectly, fix it. r+sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@136608 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-19 00:09:42 +00:00
varga%netscape.com
ebbe6400d0 Putting toolbar grippies back in. Bug 175091.
Original bug for removing them was 112534.
Please see the discussion in those 2 bugs before complaining or filling new bug reports!
r=caillon,a=UE team


git-svn-id: svn://10.0.0.236/trunk@136607 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 20:55:19 +00:00
varga%netscape.com
f0554f0ca9 Adding makefiles for sql extension.
git-svn-id: svn://10.0.0.236/trunk@136606 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 19:15:34 +00:00
varga%netscape.com
580d35b1c4 Landing SQL support. Bug 81653.
Not part of build.
a=brendan


git-svn-id: svn://10.0.0.236/trunk@136605 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 19:14:51 +00:00
dbaron%dbaron.org
54816fb3d2 Two typo fixes.
git-svn-id: svn://10.0.0.236/trunk@136604 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 18:37:41 +00:00
blythe%netscape.com
e3388ef715 Not part of a normal build.
Change the output order of the symdb.


git-svn-id: svn://10.0.0.236/trunk@136603 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 18:23:45 +00:00
varga%netscape.com
3c139d8df3 Fix possible binary compatibility issues introduced by fix for bug 73322.
sr=bz


git-svn-id: svn://10.0.0.236/trunk@136602 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 17:55:27 +00:00
dbaron%dbaron.org
b73c35400a Some minor tweaks. b=98665 sr=waterson
git-svn-id: svn://10.0.0.236/trunk@136601 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 16:26:26 +00:00
dbaron%dbaron.org
b841cdc7d6 Add memory dump reader and new tool (leaksoup) for analyzing leak graph at shutdown. b=179212 Partly reviewed by brendan.
git-svn-id: svn://10.0.0.236/trunk@136600 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 16:24:55 +00:00
dbaron%dbaron.org
5706026d0a Replace my work in progress on nsAutoPtr with a new version based on nsCOMPtr. Not part of build. b=104346
git-svn-id: svn://10.0.0.236/trunk@136599 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 16:20:26 +00:00
dbaron%dbaron.org
0d15904b17 Reduce duplication of code between handling of top/right/bottom/left margin, border, and padding. b=189537 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136598 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 15:58:49 +00:00
dbaron%dbaron.org
e44c2a9f95 Make nsContinuingTextFrame::GetFirstInFlow not crash. b=189515 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136597 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 15:21:33 +00:00
cbiesinger%web.de
725aacf0d2 89203 r+sr=roc+moz missed a file when I did the IBMBIDI removal from editor
git-svn-id: svn://10.0.0.236/trunk@136596 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:42:02 +00:00
bernd.mielke%snafu.de
65f1c9b07d improved carret navigation in tables containing rowspans, bug 187060 r=karnaze sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136595 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:05:50 +00:00
varga%netscape.com
725b369ff1 Fix for bug 188305. Dragging splitter paints tree 4 times
r=jag, sr=roc, patch by r.pronk@its.tudelft.nl


git-svn-id: svn://10.0.0.236/trunk@136594 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:05:24 +00:00
sicking%bigfoot.com
736d455dc3 Bug 162115: Make nsCOMArray return nsDeriviedSafes to avoid bad addrefs/releases
r=bz sr=alecf


git-svn-id: svn://10.0.0.236/trunk@136593 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:04:23 +00:00
kaie%netscape.com
f94f02d55a b=189205 Implement early shutdown of NSS resources
r=javi sr=darin


git-svn-id: svn://10.0.0.236/trunk@136592 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:03:00 +00:00
bernd.mielke%snafu.de
2cf71c064f fix for a O2(n) dependency when adding a row to a table, bug 85755 r=karnaze sr=brendan
git-svn-id: svn://10.0.0.236/trunk@136591 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 14:02:52 +00:00
varga%netscape.com
96358e1efc Adding a file I forgot to add.
Bug 73322. Pref based, automatic image resizing.


git-svn-id: svn://10.0.0.236/trunk@136585 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 11:04:40 +00:00
despotdaemon%netscape.com
969cf16c73 Pseudo-automatic update of changes made by dmose@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@136583 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 10:48:02 +00:00
varga%netscape.com
f27088379d Landing pref based, automatic image resizing.
Disabled by default.
r=jst, sr=jag


git-svn-id: svn://10.0.0.236/trunk@136582 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 10:17:58 +00:00
dbaron%dbaron.org
e7b7b69aa2 Back out changes for bug 177912, since they broke an RH 7.x commercial tinderbox (and probably other similar build configurations).
git-svn-id: svn://10.0.0.236/trunk@136581 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 05:18:45 +00:00
darin%netscape.com
d94667140f removing old nsIFileChannel, hoping to make the macs start ignoring it.
git-svn-id: svn://10.0.0.236/trunk@136580 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 04:33:21 +00:00
dbaron%dbaron.org
7b4333df83 Fix bustage on OS/2 VACPP and Sun Workshop compilers. b=176919 r=darin
git-svn-id: svn://10.0.0.236/trunk@136579 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 04:24:51 +00:00
darin%netscape.com
917e73bcc9 fixing more mac build bustage
git-svn-id: svn://10.0.0.236/trunk@136578 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 04:21:04 +00:00
dbaron%dbaron.org
9d20aed07d Possible fix for bustage on some machines. b=177912
git-svn-id: svn://10.0.0.236/trunk@136577 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 03:58:17 +00:00
darin%netscape.com
49e469a2a3 fix leak (thanks dbaron!)
git-svn-id: svn://10.0.0.236/trunk@136576 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 03:50:41 +00:00
darin%netscape.com
ba103d4ebc fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@136575 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 03:41:17 +00:00
darin%netscape.com
0c148cc895 fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@136574 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 03:34:42 +00:00
blythe%netscape.com
e615ac630b Not part of normal build.
Check in work in progress on msdump symbol tool.
a=mcafee (tree closed)


git-svn-id: svn://10.0.0.236/trunk@136573 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 02:49:36 +00:00
darin%netscape.com
2b1d90b6ed modifications for bug 176919 "async streams" r=dougt,gordon sr=sspitzer a=valeski,asa
git-svn-id: svn://10.0.0.236/trunk@136572 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 02:15:14 +00:00
wtc%netscape.com
0b0de85fee Bug 185687: added PR_CallOnceWithArg, a version of PR_CallOnce that allows
the callers to pass an argument to the call-once function.
Modified files: prinit.h nspr.def prinit.c


git-svn-id: svn://10.0.0.236/trunk@136571 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 02:04:45 +00:00
relyea%netscape.com
81e98c3878 Bug 198364. Tokens keys do not own their handles. Don't let the key
get destroyed when freed.


git-svn-id: svn://10.0.0.236/trunk@136569 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 01:49:33 +00:00
darin%netscape.com
4604ef4008 new files for bug 176919 "async streams" r=dougt,gordon sr=sspitzer a=valeski,asa
git-svn-id: svn://10.0.0.236/trunk@136568 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 01:27:53 +00:00
dougt%netscape.com
fe9d06d7ad Fixing which string lib we link to. I think this will fix the relocation error blizzard was seeing. r=me
git-svn-id: svn://10.0.0.236/trunk@136567 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 01:21:31 +00:00
bstell%ix.netcom.com
86c5976ae5 bug 144668 Code Mozilla Truetype printing
this bit got missed during the checkin


git-svn-id: svn://10.0.0.236/trunk@136566 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 01:01:31 +00:00
nhotta%netscape.com
ac839c8439 Fixing Mac CFM bustage.
git-svn-id: svn://10.0.0.236/trunk@136565 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 00:50:37 +00:00
sicking%bigfoot.com
4e8212e9c8 Bug 157142: get rid of txAtom typedef
r=Pike rs=peterv


git-svn-id: svn://10.0.0.236/trunk@136564 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 00:37:12 +00:00
nhotta%netscape.com
9f9ca4ebe3 Adding the new file for CFM build,
bug 8275.


git-svn-id: svn://10.0.0.236/trunk@136563 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 00:32:50 +00:00
nhotta%netscape.com
a086f0286c Adding the new interface for CFM build,
bug 8275.


git-svn-id: svn://10.0.0.236/trunk@136562 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 00:15:52 +00:00
hewitt%netscape.com
159ce8e33b backing out shliang
git-svn-id: svn://10.0.0.236/trunk@136561 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-18 00:02:15 +00:00
nhotta%netscape.com
1ffd6a677a Integrate IDN code and Unicode normalizer to nsIDNService,
bug 112979, r=ftang, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@136560 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:56:33 +00:00
nhotta%netscape.com
177423c80b Adding IDN files, bug 112979, r=ftang, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@136559 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:46:22 +00:00
sspitzer%netscape.com
b18b63d900 turn assertion into warning, so I don't go insane.
git-svn-id: svn://10.0.0.236/trunk@136558 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:46:13 +00:00
dbaron%dbaron.org
9bfefc6206 Fix some reported compilation problems by including string.h with _GNU_SOURCE defined rather than prototyping strsignal ourselves. b=177912 sr=bryner
git-svn-id: svn://10.0.0.236/trunk@136557 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:44:17 +00:00
nhotta%netscape.com
331733de85 Adding IDN files,
bug 112979, r=ftang, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@136556 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:43:33 +00:00
dbaron%dbaron.org
0334c9e020 Fix strict mode 'text-decoration' on table-cells. b=189386 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136555 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:42:37 +00:00
sspitzer%netscape.com
7be91a4a50 landing icons from gail for junk mail.
new folder pane icon for both classic and modern, and new toolbar icon for classic
thanks gail!


git-svn-id: svn://10.0.0.236/trunk@136554 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:41:21 +00:00
dbaron%dbaron.org
882c872a4c Fix inheritance of 'border-color' when the value inherited came from 'color' (the default). b=189402 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136553 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:41:20 +00:00
nhotta%netscape.com
f500a6b3aa International Domain Name (IDN) implementation from JPNIC,
http://www.nic.ad.jp/ja/idn/mdnkit/download/
bug 112979, r=nhotta, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@136552 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:40:49 +00:00
sspitzer%netscape.com
0be41f8e0f turn assertion into warning, so I don't go insane.
git-svn-id: svn://10.0.0.236/trunk@136551 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:40:37 +00:00
sspitzer%netscape.com
25209a2516 fix for regression bug #189437 (that I caused).
folders out of order in the folder pane.
stupid copy and paste error.


git-svn-id: svn://10.0.0.236/trunk@136550 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:37:49 +00:00
suresh%netscape.com
5d84a97612 bug 189522 - cookies have ok/cancel instead of yes/no. r/sr-jag.
git-svn-id: svn://10.0.0.236/trunk@136549 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:36:34 +00:00
shanjian%netscape.com
18ebb2c0bc #8275 Need routine to perform Unicode composition and decomposition
borrowed code from jpnic and created new interface.
r=nhotta, sr=alecf.


git-svn-id: svn://10.0.0.236/trunk@136548 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:30:01 +00:00
bstell%ix.netcom.com
c225876fb2 bug 144666 Glyph Fill In and Font Fallback
* add support for a font list based on
1st: CSS
2nd: user prefs
3rd: fallbacks based on doc/user language
4th: any font that supports the char
* find the first font in the font list that supports a char
* within each text draw/measure operation bread the text into runs of text
that use the same font

r=louie.zhao@sun.com, sr=jst@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136547 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:28:44 +00:00
paper%animecity.nu
5248a4a5f7 Regression of Bug 186103. r=ere, sr=tor. Don't draw beyond tile area.
git-svn-id: svn://10.0.0.236/trunk@136546 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 23:28:19 +00:00
cavin%netscape.com
76126ff05f Fix for bug 179958. Get the first folder uri for the selected server. It's INBOX for imap and pop accts and 1st news group for news. r/sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@136545 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 21:33:55 +00:00
sspitzer%netscape.com
8ee5654051 fix for blocker bug #189466. my warnings fix last night caused a wrap around
error when count == 0.  thanks to blizzard for catching it.


git-svn-id: svn://10.0.0.236/trunk@136543 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 21:02:40 +00:00
mkaply%us.ibm.com
98ee8b1f56 OS/2 bustage - add NOE for link, don't build nsStackFrameUnix, and remove palette stuff for now since we don't link to gkgx
git-svn-id: svn://10.0.0.236/trunk@136542 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 20:56:43 +00:00
mikep%oeone.com
cd39926969 Adding in try catch around playing sound, which I think caused bug 185744.
git-svn-id: svn://10.0.0.236/trunk@136540 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 20:30:44 +00:00
mikep%oeone.com
d1aee9a366 Now allowing users to publish to https and file:// urls.
This seems to fix crashing problems when exporting and publishing as well.


git-svn-id: svn://10.0.0.236/trunk@136539 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 20:30:26 +00:00
mikep%oeone.com
4d2b937153 Fixing bug 189405, problem with repeat end date being reset on edit.
git-svn-id: svn://10.0.0.236/trunk@136538 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 19:50:39 +00:00
seawood%netscape.com
2b032ddac1 Backing out cvs timeout changes.
git-svn-id: svn://10.0.0.236/trunk@136537 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 19:27:14 +00:00
igor%mir2.org
acf5426893 Small fixes in links
git-svn-id: svn://10.0.0.236/trunk@136535 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 16:40:45 +00:00
mkaply%us.ibm.com
f79c21ba74 Bug 176370 folder pane performance regression r=varga sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@136533 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 15:23:48 +00:00
peterv%netscape.com
7822acf7d3 Fix for bug 188500 (Some DOM classes do not resolve). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136532 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 15:16:33 +00:00
locka%iol.ie
fdd2eb46bf Fix duplicate dnsNotFound entry, replace with netReset. Checkin on behalf of peterhenderson@usa.net, b=188975 r=adamlock@netscape.com sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136530 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 15:08:17 +00:00
seawood%netscape.com
2dbeadd1ca Work around solaris rm lossage by using the same mode flags as the common rulesets.
Bug #188655 r=timeless


git-svn-id: svn://10.0.0.236/trunk@136528 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 14:58:08 +00:00
peterv%netscape.com
54e1bf0c48 Better fix.
git-svn-id: svn://10.0.0.236/trunk@136527 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 14:35:11 +00:00
peterv%netscape.com
f90e7f8e9f Trying to fix btek bustage.
git-svn-id: svn://10.0.0.236/trunk@136526 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 14:26:51 +00:00
neil%parkwaycc.co.uk
800c739be7 Bug 176370 folder pane performance regression r=varga sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@136525 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 14:13:47 +00:00
peterv%netscape.com
ddba650706 Fix for bug 74786 (String cleanup). Remove Transformiix string wrappers. r=sicking, sr=jst. r=Pike on the Transformiix standalone parts.
git-svn-id: svn://10.0.0.236/trunk@136524 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 14:09:42 +00:00
timeless%mozdev.org
30ad8dd9cc Bug 187297 ASSERTION: QueryInterface needed: 'query_result.get() == mRawPtr
r=dougt sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@136523 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:52:55 +00:00
timeless%mozdev.org
dca8422022 Bug 187297 ASSERTION: QueryInterface needed: 'query_result.get() == mRawPtr'
r=dougt sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@136522 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:51:02 +00:00
mkaply%us.ibm.com
b024543681 OS/2 bustage - two argArrays
git-svn-id: svn://10.0.0.236/trunk@136521 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:41:39 +00:00
neil%parkwaycc.co.uk
8fc4b620a5 Bug 189310 should retrieve composer command manager from content controllers r=brade sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136520 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:39:20 +00:00
neil%parkwaycc.co.uk
a3119fd943 Bug 187455 Table properties dialog doesn't support left or right caption side r=brade sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136519 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:37:20 +00:00
timeless%mozdev.org
2dd3b4c2d2 Bug 173284 Crash opening large emails; trunk [@ nsMsgDBView::CopyDBView]
r=bienvenu sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@136518 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:37:10 +00:00
locka%iol.ie
75aa548c4a Add nsAxSecurityPolicy.js to package list. b=188556 r=ashishbhatt@netscape.com sr=dveditz@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136516 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 13:31:55 +00:00
brade%netscape.com
47f83315e5 register commands (bug 184719, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@136511 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 12:54:18 +00:00
peterv%netscape.com
bde6e9fce5 Fix for bug 74786 (String cleanup). Remove Transformiix string wrappers. r=sicking, sr=jst. r=Pike on the Transformiix standalone parts.
git-svn-id: svn://10.0.0.236/trunk@136510 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 12:49:20 +00:00
peterv%netscape.com
db3800b225 Catch possible exception from setting permissions. (Testcase only, not part of the build)
git-svn-id: svn://10.0.0.236/trunk@136509 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 12:25:15 +00:00
caillon%returnzero.com
9eac0ede5b Fix build bustage. OS/2 and Sun Workshop won't do implicit type conversions (like .get() on an nsCOMPtr) while trying to match a template.
See also revision 3.188 of this file.


git-svn-id: svn://10.0.0.236/trunk@136508 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 12:16:36 +00:00
cbiesinger%web.de
8b51a21663 remove ifdef IBMBIDI in content/, r+sr=roc+moz, bug 89203
git-svn-id: svn://10.0.0.236/trunk@136507 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 12:09:23 +00:00
cbiesinger%web.de
657dc57af7 remove ifdef IBMBIDI from widget, r+sr=roc+moz bug 89203
git-svn-id: svn://10.0.0.236/trunk@136506 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 11:40:13 +00:00
seawood%netscape.com
022b2bf59e Take advantage of VPATH using automatic variables.
Fixing 'make install' bustage.


git-svn-id: svn://10.0.0.236/trunk@136505 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 11:36:58 +00:00
cbiesinger%web.de
01a3f3df48 remove ifdefs for IBMBIDI from gfx, r+sr=roc+moz bug 89203
git-svn-id: svn://10.0.0.236/trunk@136504 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 11:28:59 +00:00
cbiesinger%web.de
ab918f2bcc remove ifdefs for IBMBIDI from editor, bug 89203 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@136503 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 11:11:10 +00:00
brendan%mozilla.org
c52bbd6c54 Restore missing deserialization call to the XUL content sink's OpenScript method, to avoid slow-loading a .js file already in the FastLoad file from a previous session (188744, r=jrgm, sr=ben).
git-svn-id: svn://10.0.0.236/trunk@136502 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 10:04:49 +00:00
brendan%mozilla.org
15e30e0232 Defend against bad EndMuxedDocument calls, and assert in the underlying {JS,PL}_DHashTableRawRemove that entry is live (188744, r=jrgm, sr=ben).
git-svn-id: svn://10.0.0.236/trunk@136501 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 10:01:50 +00:00
neil%parkwaycc.co.uk
233af8639c Bug 164131 Duplicate entities in editorOverlay.dtd and messengercompose.dtd r=brade (editor) r=ducarroz (msgcompose) sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136500 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 09:58:57 +00:00
caillon%returnzero.com
4e9b13ef00 Bug 14777 - Give inline background image painting a rhyme and reason to how it works. Implement CSS3 proposal (-moz-)background-inline-policy.
r+sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@136499 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 09:33:52 +00:00
bstell%ix.netcom.com
575ae9bc6f back out the changes until the build issues are solved
git-svn-id: svn://10.0.0.236/trunk@136498 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 08:45:27 +00:00
bstell%ix.netcom.com
e4faabd594 bug 144666
forgot to check in the nits from the sr=


git-svn-id: svn://10.0.0.236/trunk@136497 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 06:56:52 +00:00
bstell%ix.netcom.com
93b34694e9 bug 144666 Glyph Fill In and Font Fallback
* add support for a font list based on
        1st: CSS
        2nd: user prefs
        3rd: fallbacks based on doc/user language
        4th: any font that supports the char
  * find the first font in the font list that supports a char
  * within each text draw/measure operation bread the text into runs of text
    that use the same font

r=louie.zhao@sun.com, sr=jst@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136496 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 06:51:17 +00:00
seawood%netscape.com
5bd0614507 Link order matters.
Fixing irix tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@136495 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 06:11:55 +00:00
sspitzer%netscape.com
e70321839b fix for #23126.
add hidden pref to show Organization header in the message pane.
off by default.
thanks to neil@parkwaycc.co.uk for the patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@136494 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:58:11 +00:00
nelsonb%netscape.com
7d38d59a3d When wrapping secret keys with an unpadded block cipher, null padd the keys
as necessary, per the PKCS 11 spec.  Also, implement padding and unpadding
for single-part only ciphers.


git-svn-id: svn://10.0.0.236/trunk@136493 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:50:08 +00:00
sspitzer%netscape.com
b667a8943c fix warning.
git-svn-id: svn://10.0.0.236/trunk@136492 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:31:45 +00:00
sspitzer%netscape.com
7f2f4addd6 fix warnings. see bug #59673.
thanks to mozilla-bugs@nogin.org for the patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@136491 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:30:08 +00:00
sspitzer%netscape.com
1fd9d244ec fix for bug #189415.
treat the junk folder icon as special in the UI.
(can't rename, can't delete, special icon, special placement.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136490 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:22:23 +00:00
sspitzer%netscape.com
ae652ede1e theme work for special junk folder pane icon.
bug #189415.


git-svn-id: svn://10.0.0.236/trunk@136489 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 05:16:40 +00:00
bzbarsky%mit.edu
46afe71aab Make the string fu in nsStaticCaseInsensitiveNameTable a little smarter; use
that for nsCSSProps.  Bug 162243, r=dbaron, sr=dveditz.


git-svn-id: svn://10.0.0.236/trunk@136488 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:55:10 +00:00
bzbarsky%mit.edu
212842b87c Don't cache chrome sheets in the CSSLoader. The XUL prototype cache does a
fine job of handling it, and this way the chrome registry only needs to clear
that one cache on skin switches.  Bug 185891, r=sicking, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@136487 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:20:03 +00:00
shliang%netscape.com
b6d5875477 112789, disabled radio elements should not get focus, r=hewitt,sr=jag
git-svn-id: svn://10.0.0.236/trunk@136486 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:17:06 +00:00
shliang%netscape.com
9b922fa3ef 125567, cache pref panel clipped, r=varga,sr=jag
git-svn-id: svn://10.0.0.236/trunk@136485 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:15:23 +00:00
myk%mozilla.org
11e8b09ba5 Fix for bug 184909: show status whiteboard on bug lists when the user requests it.
r=justdave
a=myk


git-svn-id: svn://10.0.0.236/trunk@136484 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:12:55 +00:00
ccarlen%netscape.com
0fee20d314 Fixing OSX orangeness - turning off GRE for OSX, back on for others
git-svn-id: svn://10.0.0.236/trunk@136483 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:09:29 +00:00
depstein%netscape.com
25cf0af0ab updated nsIHttpChannel response cases. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@136482 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 04:04:42 +00:00
timeless%mozdev.org
3cb29ccdff Bug 93430 SMTP connection isn't closed with a QUIT
patch by luke_harless@attglobal.net r=cavin sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136481 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 03:39:54 +00:00
timeless%mozdev.org
a116e86bb8 Bug 189315 Capitalize accesskey for Tex_t_ in colors preferences
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136480 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 03:15:23 +00:00
timeless%mozdev.org
aa1214ec19 Bug 189312 Capitalize accesskey for Pro_p_ortional in fonts preferences
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136479 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 03:14:54 +00:00
timeless%mozdev.org
4ebe511ee2 Bug 189316 Capitalize accesskey for Downloa_d_ More in content packs prefs
patch by piersc@cogs.susx.ac.uk r=dean_tessman sr=bz


git-svn-id: svn://10.0.0.236/trunk@136478 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 03:14:53 +00:00
darin%netscape.com
e6702d39cb Attempting to fix Mac OSX bustage
git-svn-id: svn://10.0.0.236/trunk@136477 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 03:08:36 +00:00
wtc%netscape.com
23826d1288 Bug 145029: fixed compiler warnings (mostly "xxx might be used
uninitialized").


git-svn-id: svn://10.0.0.236/trunk@136476 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:49:11 +00:00
sspitzer%netscape.com
160b15d908 fix for bug #90539. delete key doesn't work in the stand alone msg window
(unless you open the edit menu).  also, set focus to the message pane in the
stand alone msg window so the arrow keys (and other things) work right away.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136475 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:45:38 +00:00
blythe%netscape.com
b00fc5295a Not part of a normal build.
Try not to build tools on systems that won't use the tools.


git-svn-id: svn://10.0.0.236/trunk@136474 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:44:55 +00:00
blythe%netscape.com
344c87685e Fix linux build
Not part of normal build


git-svn-id: svn://10.0.0.236/trunk@136473 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:28:29 +00:00
blythe%netscape.com
2066d0590a NOT part of a normal build.
Work in progress for finer granularity on win32 codesighs reports.


git-svn-id: svn://10.0.0.236/trunk@136472 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:26:25 +00:00
darin%netscape.com
2030b41e75 fixing freeing a non allocated ptr.
git-svn-id: svn://10.0.0.236/trunk@136471 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:23:50 +00:00
sfraser%netscape.com
fa2a919889 Fix bug 127185: don't crash with a null JS context if running without XPT files. Fixes nsScriptSecurityManager to do more thorough error checking on initialization. r=mstoltz, sr=jst. Fixes bustage.
git-svn-id: svn://10.0.0.236/trunk@136470 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 02:00:01 +00:00
bryner%netscape.com
c27156d1c5 fix debug objdir build bustage from tracemalloc split. r=cls.
git-svn-id: svn://10.0.0.236/trunk@136469 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 01:31:18 +00:00
sspitzer%netscape.com
67fd2255c1 mac build changes for bug #189358
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136468 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 01:28:15 +00:00
sspitzer%netscape.com
9d2a1464ee stub out cid: protocol handler to silence alert
on linux (and probably mac) for message with cid: links
the next step is to actually implement the protocol handler
and fix mime so that we support cid: links (see rfc 2111)
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136467 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 01:27:40 +00:00
wtc%netscape.com
a21a8e2df0 Bug 189332: Implemented the new function PR_GetLibraryFilePathname for
AIX, HP-UX, Linux, Mac OS X, OSF1, Solaris, and Windows.  Added the new
error code PR_LIBRARY_NOT_LOADED_ERROR for the error condition that the
library specified by "name" and "addr" is not loaded.  Added a new test,
libfilename.c.  Extended the PR_GetLibraryName function to not prepend any
directory if the first argument "dir" is NULL.  The OSF1 implementation was
contributed by Steve Streeter <Stephen.Streeter@hp.com>.
Modified files: prerr.h prlink.h nspr.def pr/src/linking/Makefile.in
prlink.c compile-et.pl prerr.c prerr.et prerr.properties
pr/tests/Makefile.in runtests.ksh runtests.sh
Added file: pr/tests/libfilename.c


git-svn-id: svn://10.0.0.236/trunk@136465 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 01:03:47 +00:00
sfraser%netscape.com
b3ed7e7caf Fix bug 127185: don't crash with a null JS context if running without XPT files. Fixes nsScriptSecurityManager to do more thorough error checking on initialization. r=mstoltz, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136464 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 01:00:15 +00:00
locka%iol.ie
3cb5199c1c Add CBrowserTooltip class and support for tooltips. Detab files. b=144880 r=chak@netscape.com sr=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136462 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:40:45 +00:00
sspitzer%netscape.com
cb294e88a3 rest of fix for #188593.
fix category (sub page) order in account manager tree.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136461 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:37:31 +00:00
roc+%cs.cmu.edu
73478d6a49 Bug 126592. GTK1 widgets are limited to 16-bit coordinates, so hack around their limitations by hiding widgets which are completely scrolled offscreen (so they don't wrap back onscreen)
git-svn-id: svn://10.0.0.236/trunk@136460 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:27:13 +00:00
sfraser%netscape.com
0e67cebec5 Fix bug 117990: change CornerView::Paint() to lo longer to a CreateInstance of an nsILookAndFeel for every paint. r=peterl, sr=dbaron.
git-svn-id: svn://10.0.0.236/trunk@136459 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:14:35 +00:00
roc+%cs.cmu.edu
ef05801247 Bug 187503. Fix regression by making nsScrollBoxFrame sync up view properties after the view is resized. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136458 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:14:07 +00:00
dougt%netscape.com
04fb49e536 quotes
git-svn-id: svn://10.0.0.236/trunk@136457 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-17 00:00:18 +00:00
dougt%netscape.com
e205adf181 Attempting to fix osX bustage.
git-svn-id: svn://10.0.0.236/trunk@136456 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 23:57:55 +00:00
sicking%bigfoot.com
6cbabb69cb Bug 189201: Hold a reference to the document-node even for embedded stylesheets to make sure that the document doesn't go away.
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@136455 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 23:56:58 +00:00
pkw%us.ibm.com
c572dff9f4 Bug 137863 - [movemail] Spurious newsgroup settings in preferences panels.
r/sr=sspitzer@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136454 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 23:40:40 +00:00
rogerl%netscape.com
f16cd963d0 Fixed ForIterator to handle Class objects.
git-svn-id: svn://10.0.0.236/trunk@136448 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 22:23:08 +00:00
sspitzer%netscape.com
9499c548a7 fix comments.
git-svn-id: svn://10.0.0.236/trunk@136447 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 22:15:02 +00:00
sspitzer%netscape.com
b4b4357ce2 dump the exception to the console, since we are no longer showing it to the user
in the alert.
rs=no one


git-svn-id: svn://10.0.0.236/trunk@136446 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 22:11:26 +00:00
suresh%netscape.com
601ca19f31 Bug 168930, Cookie accept/decline alert buttons are in the wrong order. r/sr-jag.
git-svn-id: svn://10.0.0.236/trunk@136445 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 22:09:00 +00:00
sspitzer%netscape.com
b34800b26b NOT PART OF THE BUILD YET
new files for bug #189358.
for messages with cid: links, don't throw up an annoying alert.

stub out a protocol handler for cid:
see rfc 2111.

actually supporting cid: is bug #61815.


git-svn-id: svn://10.0.0.236/trunk@136444 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:55:11 +00:00
timeless%mozdev.org
d9006c4c33 Bug 181764 make page info appear faster
patch by db48x@yahoo.com r=caillon sr=jag


git-svn-id: svn://10.0.0.236/trunk@136443 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:46:08 +00:00
sspitzer%netscape.com
fd78985bc9 fix for bug #189045. view navigation should not "land" on the junk folder.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136442 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:43:37 +00:00
mkaply%us.ibm.com
39ae496632 No bug - OS/2 only - test - put OS/2 code into test (originally used XP_PC and broke OS/2 - didn't write the OS/2 code at that time)
git-svn-id: svn://10.0.0.236/trunk@136441 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:35:18 +00:00
mkaply%us.ibm.com
1e0034bde1 No bug - OS/2 only - have installer add the INI value so that the Java plugin installer will find Mozilla
git-svn-id: svn://10.0.0.236/trunk@136440 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:32:45 +00:00
mikep%oeone.com
ab538a8ac3 Fixing so that import an event goes into the currently selected calendar, bug 188216.
git-svn-id: svn://10.0.0.236/trunk@136439 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:30:26 +00:00
dougt%netscape.com
61be5cc169 Missed the tm.def file
git-svn-id: svn://10.0.0.236/trunk@136438 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:26:02 +00:00
dbaron%dbaron.org
c8812581f2 Change |DEBUG_dbaron| to |DEBUG_dbaron_off| for stuff that I don't want to see anymore.
git-svn-id: svn://10.0.0.236/trunk@136437 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 21:05:09 +00:00
mikep%oeone.com
e3762cad80 Fixing bug 184475 to show default alarm address only if new event.
git-svn-id: svn://10.0.0.236/trunk@136436 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:57:07 +00:00
mikep%oeone.com
4b0bd75930 Removing alert.
git-svn-id: svn://10.0.0.236/trunk@136434 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:37:52 +00:00
nboyd%atg.com
dc0c9665a7 UPdate to rc 3
git-svn-id: svn://10.0.0.236/trunk@136432 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:29:43 +00:00
mikep%oeone.com
4f44b5e27b Fixing JS error.
git-svn-id: svn://10.0.0.236/trunk@136431 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:26:44 +00:00
harishd%netscape.com
fa53826eab Ignore noxxx content when copy pasting into a plain text editor. b=97687, r=peterv, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@136430 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:24:03 +00:00
mikep%oeone.com
9d8635ae05 Fixing bug 189165, problem with checkEndDate if all day event.
git-svn-id: svn://10.0.0.236/trunk@136429 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 20:18:47 +00:00
dougt%netscape.com
0d95b42316 Attempting to keep Mac CFM afloat.
git-svn-id: svn://10.0.0.236/trunk@136428 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:52:54 +00:00
mikep%oeone.com
e0f7261b70 Fixing problem with saving alarm prefs, bug 189143..
git-svn-id: svn://10.0.0.236/trunk@136427 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:51:26 +00:00
bzbarsky%mit.edu
a51e000a16 eliminate some build warnings. See bug 187117.
git-svn-id: svn://10.0.0.236/trunk@136426 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:44:21 +00:00
timeless%mozdev.org
32c89381cf Bug 186668 nsWSRunObject::DeleteChars uses a constant Count() while removing elements
r=jfrancis sr=bz


git-svn-id: svn://10.0.0.236/trunk@136425 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:27:50 +00:00
dbradley%netscape.com
46244d11a0 Just replacing this copyrighted file. No code change, and it's in samples.
git-svn-id: svn://10.0.0.236/trunk@136424 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:26:52 +00:00
dougt%netscape.com
25f84e043b Enabling GRE support in the mozilla client. r=chak, sr=darin, b=173262
git-svn-id: svn://10.0.0.236/trunk@136423 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:25:47 +00:00
dbaron%dbaron.org
2d204ffc53 Change |DEBUG_dbaron| to |DEBUG_dbaron_off| for stuff that I don't want to see anymore.
git-svn-id: svn://10.0.0.236/trunk@136422 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 19:21:23 +00:00
igor%mir2.org
c985e591fb Note about scripting of classes from any class loader
git-svn-id: svn://10.0.0.236/trunk@136421 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 17:22:40 +00:00
dbaron%dbaron.org
ba2270d2e9 Add nsComposerDocumentCommands.cpp for bugs 184718, 184719 (brade's checkin).
git-svn-id: svn://10.0.0.236/trunk@136420 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 17:01:21 +00:00
wtc%netscape.com
2ed5827ecf Bug 168228: added IPv6 support for Darwin (Mac OS X). Added two new
feature macros _PR_HAVE_INET_NTOP and _PR_GHBA_DISALLOW_V4MAPPED to
handle the differences of Darwin's IPv6 sockets implementation and
other platforms' implementations.
Modified files: _aix.h _bsdi.h _darwin.h _freebsd.h _irix.h _linux.h
_netbsd.h _openvms.h _osf1.h _solaris.h prnetdb.c


git-svn-id: svn://10.0.0.236/trunk@136419 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 16:16:34 +00:00
bienvenu%netscape.com
4f5e1aab93 change folder size kb to KB, patch by durbacher@gmx.de, rs=me 186977
git-svn-id: svn://10.0.0.236/trunk@136418 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 15:47:20 +00:00
brade%netscape.com
46b70dcb5f bug 145916, add GetDocument to nsITextServicesDocument; r=brade, sr=kin; submitted by Darabos Daniel (cyhawk@sch.bme.hu)
git-svn-id: svn://10.0.0.236/trunk@136417 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 15:02:33 +00:00
axel%pike.org
fb49a723c0 not part of build, a C interface to the XALAN testcases. produces rdf output to load into buster. test app only
git-svn-id: svn://10.0.0.236/trunk@136416 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 15:02:13 +00:00
brade%netscape.com
f4df2d4dc6 split nsComposerCommands.cpp to separate out document commands from content commands; add commands to set "useCSS" flag and readonly flag (bugs 184718, 184719), r=mkaply, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136415 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 14:59:09 +00:00
nboyd%atg.com
5c52a77157 Add implmentation version date.
git-svn-id: svn://10.0.0.236/trunk@136414 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 14:24:03 +00:00
dbaron%dbaron.org
d88b1da3bc Fix misplaced closing } from patch in bug 188734. b=189292
git-svn-id: svn://10.0.0.236/trunk@136413 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 13:59:52 +00:00
mikep%oeone.com
e7ee31bae5 Fixing tooltip bug, bug 184866.
git-svn-id: svn://10.0.0.236/trunk@136412 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 13:46:05 +00:00
neil%parkwaycc.co.uk
2008f046dd Bug 107148 about:config todo list r=callion rs=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136411 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 09:50:27 +00:00
danm%netscape.com
a42351f519 slightly better error reporting and adding interface supporting partial migration. bug 185689 r=lumpy
git-svn-id: svn://10.0.0.236/trunk@136410 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 07:57:34 +00:00
louie.zhao%sun.com
18ea39b524 Fix the wrong operation (use a wrong version of unix.js) of patch check-in for bug 144668 just now.
git-svn-id: svn://10.0.0.236/trunk@136409 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 07:16:54 +00:00
depstein%netscape.com
610f5374b7 Added some more response cases for nsIHttpChannel tests. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@136408 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 06:44:49 +00:00
mkaply%us.ibm.com
bfd8838207 Putting this Makefile.in back to fix OS/2 bustage - this makefile is nothing like other makefiles in the build - I did put in the tracemalloc change - we should open a bug to get this makefile looking like the rest of the build - it doesn't even have EXTRA_DSO_LDOPTS
git-svn-id: svn://10.0.0.236/trunk@136407 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 05:32:30 +00:00
rbs%maths.uq.edu.au
7b59480583 Make the caret appear properly on invisible MathML operators, b=188146, r+sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@136406 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 05:10:03 +00:00
louie.zhao%sun.com
73eb640533 Bug 144668: Code Mozilla TrueType Printing Code
r=bstell sr=bryner


git-svn-id: svn://10.0.0.236/trunk@136405 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 05:04:27 +00:00
timeless%mozdev.org
f78d1ddfed Bug 128572 CPU usage jumps to 100% when loading a page with wrong charset
patch by Roland.Mainz@informatik.med.uni-giessen.de r=katakai sr=rbs


git-svn-id: svn://10.0.0.236/trunk@136404 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 03:14:26 +00:00
bzbarsky%mit.edu
97d1765960 removing the version of the dialog that predates the version that predates the
version that we currently use (or did I miss a generation in there?  Whatever).
_So_ not part of build.  r=mozbot, moa=myself, I guess.


git-svn-id: svn://10.0.0.236/trunk@136403 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 03:07:58 +00:00
bzbarsky%mit.edu
291ec6eb41 Move GetFirstInFlow/GetLastInFlow up to nsIFrame. Bug 187117, r=roc+moz, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136402 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 02:59:04 +00:00
dougt%netscape.com
670557ae8e fixing solaris bustage... one more try
git-svn-id: svn://10.0.0.236/trunk@136401 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 02:22:18 +00:00
nelsonb%netscape.com
a1dcee5b94 One more fix for HPUX and Solaris.
git-svn-id: svn://10.0.0.236/trunk@136400 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 01:44:43 +00:00
dougt%netscape.com
3969325de3 bustage fixed
git-svn-id: svn://10.0.0.236/trunk@136399 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 01:03:15 +00:00
jpierre%netscape.com
5a3c53f555 Fix incorrect usage of QuickDER . See bug 160805 comment 16
git-svn-id: svn://10.0.0.236/trunk@136398 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:56:10 +00:00
nelsonb%netscape.com
2df42235bf Fix compilation error. This file is only compiled on 2 platforms.
git-svn-id: svn://10.0.0.236/trunk@136397 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:55:53 +00:00
nelsonb%netscape.com
c3e7afd6e5 Switch from the old vendor-defined mechanism numbers to the new official
PKCS 11 mechanism numbers.  These numbers will appear in v2.20.


git-svn-id: svn://10.0.0.236/trunk@136396 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:43:58 +00:00
nelsonb%netscape.com
c015f6d75a Enforce that softoken's mechanisms are used only with the PKCS 11
functions that they're defined to work with.


git-svn-id: svn://10.0.0.236/trunk@136395 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:28:05 +00:00
mkaply%us.ibm.com
9acefee4b9 #165752
r=pedemont, sr=blizzard (OS/2 only)
OS/2 only - make -splash work


git-svn-id: svn://10.0.0.236/trunk@136394 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:26:40 +00:00
dougt%netscape.com
9f97bd2395 defining DemangleSymbol on all 'nix platform - fixing bustage
git-svn-id: svn://10.0.0.236/trunk@136393 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:24:56 +00:00
mkaply%us.ibm.com
bd7ac1d4e8 #140683
r=pedemont, sr=blizzard (OS/2 only)
OS/2 only - Add 256 color support


git-svn-id: svn://10.0.0.236/trunk@136392 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:23:32 +00:00
mkaply%us.ibm.com
6266e3e3a0 #140683
r=cls
OS/2 only - Add 256 color support


git-svn-id: svn://10.0.0.236/trunk@136391 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:17:37 +00:00
nelsonb%netscape.com
359ba6342a Complete the addition of AES Key Wrap to blapi in freebl.
git-svn-id: svn://10.0.0.236/trunk@136390 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:15:21 +00:00
nelsonb%netscape.com
9028aec222 Remove the implementation of CKM_KEY_WRAP_LYNKS from softoken.
git-svn-id: svn://10.0.0.236/trunk@136389 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-16 00:14:07 +00:00
ian%hixie.ch
0b93adb7f0 Make sure to stringify the error string.
git-svn-id: svn://10.0.0.236/trunk@136388 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:48:41 +00:00
cltbld%netscape.com
398f5b6945 Fixing bustage
git-svn-id: svn://10.0.0.236/trunk@136387 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:45:53 +00:00
mkaply%us.ibm.com
d429bb67bb #140683
r=pedemont, sr=blizzard (OS/2 specific)
OS/2 only - Add 256 color support


git-svn-id: svn://10.0.0.236/trunk@136386 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:22:51 +00:00
cbiesinger%web.de
0ec39e6c03 no bug - r=mkaply, not part of any build - remove unused file.
git-svn-id: svn://10.0.0.236/trunk@136385 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:15:55 +00:00
mkaply%us.ibm.com
241b4cf4c9 No bug - OS/2 only - add #ifdef so OS/2 returns OS/2 for platform
git-svn-id: svn://10.0.0.236/trunk@136384 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:10:56 +00:00
dougt%netscape.com
204db99f5e even better bundle patch. r=cls
git-svn-id: svn://10.0.0.236/trunk@136383 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 23:08:01 +00:00
dougt%netscape.com
c6531907c3 Pushing the bundle to dist/bin r=cls
git-svn-id: svn://10.0.0.236/trunk@136382 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:56:52 +00:00
sicking%bigfoot.com
6040b2b8f1 Bug 184697: Return an element-factory even for the unknown namespace to avoid crash.
r=harishd sr=heikki


git-svn-id: svn://10.0.0.236/trunk@136381 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:45:39 +00:00
dougt%netscape.com
a5afbc1f4f Removing comment about NS_ASSERTION being deprecated. r=me. b=188925
git-svn-id: svn://10.0.0.236/trunk@136380 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:27:10 +00:00
bryner%netscape.com
38316d45e6 fixing "save image as" for real
git-svn-id: svn://10.0.0.236/trunk@136379 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:14:32 +00:00
cbiesinger%web.de
d869958ca7 187373 r=roc+moz sr=tor remove gfx/src/icon_0.gif and icon_1.gif
git-svn-id: svn://10.0.0.236/trunk@136378 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:01:15 +00:00
dougt%netscape.com
0e33387145 This should fix the solaris bustage.
git-svn-id: svn://10.0.0.236/trunk@136377 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 22:01:04 +00:00
nhotta%netscape.com
a162f24f11 Punnycode implementation for International Domain Name (IDN),
the code is from internet draft,
http://www.ietf.org/internet-drafts/draft-ietf-idn-punycode-03.txt
bug 112979, r=nhotta, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@136376 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 21:58:06 +00:00
leaf%mozilla.org
7e3364a17a Automated update
git-svn-id: svn://10.0.0.236/trunk@136375 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 21:45:07 +00:00
mkaply%us.ibm.com
5905e2dfc6 #135795
r=cls
Turn on mkdepend for OS/2


git-svn-id: svn://10.0.0.236/trunk@136374 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 21:36:53 +00:00
nhotta%netscape.com
b49e9014ca International Domain Name (IDN) implementation from JPNIC,
http://www.nic.ad.jp/ja/idn/mdnkit/download/
bug 112979, r=nhotta, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@136373 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 21:30:10 +00:00
mkaply%us.ibm.com
1b21e9b2d3 OS/2 version of 119693 - thanks doug
git-svn-id: svn://10.0.0.236/trunk@136372 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 20:42:05 +00:00
dougt%netscape.com
a2a82fab36 move nsTraceMalloc out of XPCOM. Factory out stackwalking code into new files. 189221 r=chak, 186585 r=blythe sr=dbaron. Most of this patch was contributed by seawood.
git-svn-id: svn://10.0.0.236/trunk@136371 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 20:40:06 +00:00
mkaply%us.ibm.com
5288b89c2a #166686
r=dougt, sr=bzbarsky
Assert if we try to malloc zero in nsMemory


git-svn-id: svn://10.0.0.236/trunk@136370 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 20:37:12 +00:00
paper%animecity.nu
30a9b1db1c Bug 186103. r=ere, sr=tor. Fix PNG background images being too dark. Windows Only.
git-svn-id: svn://10.0.0.236/trunk@136369 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 20:24:47 +00:00
timeless%mozdev.org
ee8e8e1965 Fixing the comment for bug 119693. r=dougt
git-svn-id: svn://10.0.0.236/trunk@136367 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 19:35:28 +00:00
sspitzer%netscape.com
323d7a84f3 fix for bug #94894. checkboxes in subscribe, filter list, offline selection
dialogs should be centered.  patch by neil@parkwaycc.co.uk
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@136365 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 18:54:57 +00:00
cbiesinger%web.de
2ef210c862 remove redundant ifdefs 189172 r+sr=bz
git-svn-id: svn://10.0.0.236/trunk@136364 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 18:21:31 +00:00
despotdaemon%netscape.com
ded9dad9e0 Pseudo-automatic update of changes made by moied@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@136363 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 18:17:09 +00:00
matty%chariot.net.au
f1cc71cb1a Bug 105692: Script to compile all docs directories.
git-svn-id: svn://10.0.0.236/trunk@136362 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 15:26:07 +00:00
mkaply%us.ibm.com
6ec622d5b1 #183328
r=gerv, sr=bryner
Phoenix side of patch - remove other resolution on OS/2


git-svn-id: svn://10.0.0.236/trunk@136361 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 15:11:05 +00:00
igor%mir2.org
efac8b9476 Committing patch from Steven Beal:
Have you considered adding a "Go" method to Main.java with
public visibility (same behavior as pressing the "Go" button in the debugger UI).

This would be a big help in a system where the debugger has been
embedded.  Being able to close the debugger and ensure that any
breakpoints were removed and any blocked threads notified would
be a nice feature.  Without this, closing the debugger can either
a) halt the application or b) destroy the debugger leaving blocked
threads in a permanent wait state.  Note that the debugger is
not actually destroyed in this case because the waiting threads
prevent it from being wholly GCed.


git-svn-id: svn://10.0.0.236/trunk@136360 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 10:42:56 +00:00
gerv%gerv.net
7de031b9ce Bug 136603 - show_bug.cgi's XML retrieval needs a summary mode. Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@136359 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 07:59:53 +00:00
justdave%syndicomm.com
c5685a7947 Bug 184309: Adds an optional disabled state to quips, which allows quips to be moderated if the admin so chooses.
Patch by Tobias Burnus <burnus@gmx.de>
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@136358 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 06:48:17 +00:00
jouni%heikniemi.net
43ad36f698 Bug 148093: editmilestones.cgi shows 'xyzzy' as product bug count. r=bbaetz, a=justdave
git-svn-id: svn://10.0.0.236/trunk@136357 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 06:26:25 +00:00
mkaply%us.ibm.com
53c888c0ef #185575
r=pedemont, sr=blizzard for platform specific code
OS/2 only - need to special case Wingdings and Symbol Set codepage


git-svn-id: svn://10.0.0.236/trunk@136356 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 05:25:16 +00:00
jake%bugzilla.org
258e9b03d1 Bumping minimum versions for DBI and DBD::mysql to match what was just checked in for bug 163290.
git-svn-id: svn://10.0.0.236/trunk@136355 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 04:13:38 +00:00
bryner%netscape.com
5768fd0ca3 stub out OutputReferrerURL to fix phoenix bustage
git-svn-id: svn://10.0.0.236/trunk@136354 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 02:41:36 +00:00
alecf%netscape.com
67b9271ea9 mac/unix side of fix for bug 188251 - explicitly specify resource files to reduce the embedding footprint
also remove references to the old gkcontent library
r=dougt, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@136352 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:34:18 +00:00
aaronl%netscape.com
de8bd76ab2 Bug 188967. Possible fix for talkback crash. r=saari, sr=bz
git-svn-id: svn://10.0.0.236/trunk@136351 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:29:02 +00:00
dougt%netscape.com
750e019359 Add .gre.conf test for debugging.
git-svn-id: svn://10.0.0.236/trunk@136350 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:17:17 +00:00
bzbarsky%mit.edu
3a0431e1f3 cosmetic space removal. Bug 189036, r=caillon, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136349 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:11:27 +00:00
wtc%netscape.com
295a99a9a3 MACOS_DEPLOYMENT_TARGET only needs to be defined if we are building on
Mac OS X.


git-svn-id: svn://10.0.0.236/trunk@136348 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:07:02 +00:00
wtc%netscape.com
2a3cdb735c Bug 185034: updated the OpenVMS symbol vector tables for NSPR 4.3.
The patch is contributed by Colin Blake <colin@theblakes.com>.
Modified Files: nspr_symvec.opt plds_symvec.opt plc_symvec.opt


git-svn-id: svn://10.0.0.236/trunk@136347 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-15 00:00:14 +00:00
dougt%netscape.com
527c6ae07b Fixing topcrash. r=darin@netscape.com, sr=jst@netscape.com, b=119693
git-svn-id: svn://10.0.0.236/trunk@136345 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:50:01 +00:00
rogerl%netscape.com
5eaea97376 ECMA3 Function prototype object.
git-svn-id: svn://10.0.0.236/trunk@136344 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:46:18 +00:00
rogerl%netscape.com
9817d885d8 ds.h - fixed copying bug in 'enlarge'
ECMA3 compatibility fixes throughout - Function prototypes etc.


git-svn-id: svn://10.0.0.236/trunk@136343 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:45:46 +00:00
wtc%netscape.com
653f21baea Bug 186599: 1. added support for relative paths to PR_LoadLibrary on
Mac OS X. 2. Reordered the Mac code in pr_LoadLibraryByPathName to try
loading various kinds of shared libraries in the order of most likely
success.  The patch is contributed by Conrad Carlen <ccarlen@netscape.com>.
r=wtc. sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@136342 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:38:56 +00:00
pkw%us.ibm.com
bc7e62d3e0 Bug 79769 - Application input field on helper app dialog should be disabled
on Mac.
r=aaronl@netscape.com, sr=bzbarsky@mit.edu


git-svn-id: svn://10.0.0.236/trunk@136340 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:09:14 +00:00
aaronl%netscape.com
b7f4f733fb Backing out bug 187511. Add Find As You Type to menus
git-svn-id: svn://10.0.0.236/trunk@136339 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:06:12 +00:00
jst%netscape.com
1b18cf1dd9 Fixing bug 161166. Freezing more DOM interfaces. r=harishd@netscape.com, sr=peterv@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136338 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 23:05:52 +00:00
dougt%netscape.com
036eefb5d4 Enabling nsIStringService. r=darin, sr=alec
git-svn-id: svn://10.0.0.236/trunk@136337 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:55:33 +00:00
bzbarsky%mit.edu
75ef7a203d Tweak groupbox look. Bug 189101, r=biesi, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136336 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:42:37 +00:00
sspitzer%netscape.com
4afe64f1a3 fix for bug #44823.
when not in threaded mode, don't take up space for the twisty in the
subject column.  thanks to neil@parkwaycc.co.uk for the fix.
r=varga, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@136335 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:37:01 +00:00
sicking%bigfoot.com
6f10b71faf Bug 179231: Give documents loaded through the syncloader the correct base-uri
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@136334 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:36:57 +00:00
nisheeth%netscape.com
dacc5eb45f Fix for bug 184167. Regression caused by checkin on patch on bug 182366. Initialize pref variables to default values. The r/sr on bug 182366 applies to this checkin.
git-svn-id: svn://10.0.0.236/trunk@136333 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:36:51 +00:00
sicking%bigfoot.com
c1c018c702 Bug 188729: Break refcounting-cycles during load.
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@136332 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:32:18 +00:00
sspitzer%netscape.com
fb942b805f don't pass the exception back in the alert dialog.
that's not useful to the user.


git-svn-id: svn://10.0.0.236/trunk@136331 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:31:39 +00:00
mkaply%us.ibm.com
01a8e4c043 #188425
r=pedemont, sr=blizzard (platform specific code)
Inserting a frame window in client Z order is bad. Very bad.


git-svn-id: svn://10.0.0.236/trunk@136330 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:29:58 +00:00
bzbarsky%mit.edu
1c84732300 nsInternetConfigService needs to set the default app/description rather than
the "preferred" one.  Bug 189094, r=pkw@us.ibm.com, sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@136329 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:29:48 +00:00
waldemar%netscape.com
91487f5d4c Reorganized instance data structures and object property access, added vtables, wrote new code for processing function definitions, and added several new statements
git-svn-id: svn://10.0.0.236/trunk@136328 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:21:13 +00:00
waldemar%netscape.com
75e9cc28c7 Added note statement
git-svn-id: svn://10.0.0.236/trunk@136327 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:19:35 +00:00
nelsonb%netscape.com
7a5b26792c aeskeywrap.c - implement AES Key Wrap algorithm from RFC 3394
git-svn-id: svn://10.0.0.236/trunk@136326 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:16:04 +00:00
bzbarsky%mit.edu
6cbbc2feb6 Ignore file extensions for urls to obvious CGI scripts. Bug 172693, patch by
law@netscape.com (Bill Law), r=bzbarsky, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@136325 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:12:10 +00:00
sspitzer%netscape.com
f8e68691c9 fix for #188946. crasher when you delete a smiley.
this was caused by the checkin for #114713
there is still problems with delete of smileys, but that's
an existing bug.  r/sr=bryner.


git-svn-id: svn://10.0.0.236/trunk@136324 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:08:42 +00:00
bzbarsky%mit.edu
93faf760c9 Fix bug 188931 -- only show the leafname in the textbox on mac.
r=pkw@us.ibm.com, sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@136323 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 22:05:49 +00:00
cbiesinger%web.de
90ae9cf43a 188586 r+sr=bz nsObjectFrame should use mime service
git-svn-id: svn://10.0.0.236/trunk@136322 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 21:59:05 +00:00
locka%iol.ie
2d3a9c2777 Link to embedstring_s.lib to fix xpcom glue & string reorg. r/sr/a=dougt@netscape.com b=188533
git-svn-id: svn://10.0.0.236/trunk@136321 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 21:57:16 +00:00
bzbarsky%mit.edu
7336ab2528 Fix case of access key for '_E_xtensions'. Bug 189099, patch by
piersc@cogs.susx.ac.uk (Piers Cornwell (spark)), r=sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136320 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 21:52:50 +00:00
dbaron%dbaron.org
7055283d0d Apply the quirk that simple selectors of the form ':hover' apply only to links to those of the form '.class:hover' as well. b=169078 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136319 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 21:50:27 +00:00
aaronl%netscape.com
994f1a3724 Bug 189011. Mail compose broken. Partial backout of bug 176296, r=brade, sr=smfr
git-svn-id: svn://10.0.0.236/trunk@136318 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 20:42:11 +00:00
glen.beasley%sun.com
6b51a292f1 solaris pkg version
git-svn-id: svn://10.0.0.236/trunk@136313 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 20:26:36 +00:00
bbaetz%student.usyd.edu.au
583c1c6256 Bug 163290 - move DB handling code into a module
r=justdave, myk, joel, preed
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136312 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 20:00:11 +00:00
dougt%netscape.com
4d998f4beb fixing os2 bustage
git-svn-id: svn://10.0.0.236/trunk@136310 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 18:08:49 +00:00
nboyd%atg.com
367237b2eb Update to R4.
git-svn-id: svn://10.0.0.236/trunk@136309 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 16:42:16 +00:00
mikep%oeone.com
db3f3b0543 Fixing problem with long descriptions being cut off, OEone bug 4948.
git-svn-id: svn://10.0.0.236/trunk@136308 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 16:23:11 +00:00
igor%mir2.org
4ca10cb338 Fixing mnemonics shortcuts for Debug menu
git-svn-id: svn://10.0.0.236/trunk@136307 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 14:44:46 +00:00
wtc%netscape.com
ef80751250 Bug 188396: don't use ftime because its 32-bit timestamp will overflow
around year 2038.  Use GetSystemTimeAsFileTime instead.  The patch is
contributed by timeless@bemail.org.
Modified files: config/now.c _win95.h _winnt.h ntio.c ntmisc.c w95io.c


git-svn-id: svn://10.0.0.236/trunk@136305 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 13:22:32 +00:00
igor%mir2.org
e1eab57c2a From Steaven Beal:
This looks like a simple case of using the Hashtable key
instead of the value...

    public void clearAllBreakpoints() {
        // Igor - Use of keys() is inappropriate here.  It produces
        // a ClassCastException on the assignment below.  The
        // keys are String instances, not SourceInfo instances...
        //
        //Enumeration e = sourceNames.keys();
        Enumeration e = sourceNames.elements();
	...
    }


git-svn-id: svn://10.0.0.236/trunk@136304 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 11:24:47 +00:00
seawood%netscape.com
7f109b26c4 Return to using clobber_all instead of distclean.
git-svn-id: svn://10.0.0.236/trunk@136303 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 10:51:47 +00:00
seawood%netscape.com
2a3554c794 Backed out previous checkin.
git-svn-id: svn://10.0.0.236/trunk@136302 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 10:51:13 +00:00
seawood%netscape.com
bf6dc98799 Oops forgot to change this back to 1hr.
git-svn-id: svn://10.0.0.236/trunk@136301 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 10:05:32 +00:00
peterv%netscape.com
43231dec1b Fix for bug 188872 (Switching between type of HTMLInputElement incorrectly reset size from Int to pixel). Fix by Ruslan Ismailov <croo@nm.ru>, r=sicking, sr=peterv.
git-svn-id: svn://10.0.0.236/trunk@136300 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 09:53:57 +00:00
seawood%netscape.com
683f46a8c2 Run the clobber & build steps in separate processes since they use the same ruleset and the dependency to re-run configure isn't triggered properly.
git-svn-id: svn://10.0.0.236/trunk@136299 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 09:15:03 +00:00
seawood%netscape.com
5cc0b086cb Add support for timing out cvs checkouts.
Bug #184757 r=mcafee


git-svn-id: svn://10.0.0.236/trunk@136298 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 08:27:05 +00:00
dougt%netscape.com
5f82862346 removing nsEmbedString from this directory. It has been moved to mozilla/string/embed. r=cls
git-svn-id: svn://10.0.0.236/trunk@136297 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 07:22:46 +00:00
bryner%netscape.com
2eeb9eaf48 Combine content and layout into a single library (bug 106161). r=dbaron, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@136296 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 07:08:59 +00:00
jouni%heikniemi.net
55524ed0b0 Bug 156169: Bug number styling issues in attachment viewer/editor. r=joel, a=justdave
git-svn-id: svn://10.0.0.236/trunk@136295 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 06:36:12 +00:00
jkeiser%netscape.com
4cc0f6a627 Fix crash while document is going away (bug 168013), r=sicking@bugmail.cc, sr=sfraser@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136294 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 05:54:38 +00:00
bzbarsky%mit.edu
2c74d85f2e Fix crash on tearing down the download progress window. Bug 188877,
r=timeless, sr=jag


git-svn-id: svn://10.0.0.236/trunk@136293 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 05:02:46 +00:00
nisheeth%netscape.com
71eb65115e Fix Irix bustage. Remove Windows linefeeds from file.
git-svn-id: svn://10.0.0.236/trunk@136292 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 04:41:53 +00:00
dougt%netscape.com
d800b17cc2 fixing bustage
git-svn-id: svn://10.0.0.236/trunk@136291 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 04:35:55 +00:00
aaronl%netscape.com
4aeb051e2f Bug 187511. Add Find As You Type to menus. r=shliang, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136290 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 04:07:48 +00:00
aaronl%netscape.com
5ff6c67957 Bug 176296. Create accessibility.typeaheadfind.autostart boolean pref. If false, / or ' is required to start Find As You Type. Also fixes bug 183998, allowing manual start with / or ' in mailnews. Find As You Type now uses the command system to get notification that a new find should start. r=kyle, sr=jst
git-svn-id: svn://10.0.0.236/trunk@136289 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 04:03:35 +00:00
sgehani%netscape.com
7c5e965ba9 Make exiting print preview less ``choppy''.
b=186346; r=shliang; sr=jaggernaut


git-svn-id: svn://10.0.0.236/trunk@136288 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 03:55:03 +00:00
dougt%netscape.com
b70503de9c Moving nsEmbedString to mozilla/string. r=cls.
git-svn-id: svn://10.0.0.236/trunk@136287 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 03:41:52 +00:00
dougt%netscape.com
6b861e7c1e Moving nsEmbedString to mozilla/string. r=cls
git-svn-id: svn://10.0.0.236/trunk@136286 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 03:37:34 +00:00
timeless%mozdev.org
16cc901bfb Bug 138633 Esc key should close element properties dialog.
patch by walk84@yahoo.com r=jag sr=bz


git-svn-id: svn://10.0.0.236/trunk@136285 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 03:02:46 +00:00
cavin%netscape.com
46c292a064 Fix for bug 188905. Copy zip code from mozilla record to palm record. Thanks to tom.lostaunau@sun.com for the patch. r/sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@136284 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 02:29:27 +00:00
wtc%netscape.com
6d9449e4d8 Bug 188976: avoid calculating the difference of two unsigned integer if
the difference is really a negative number.  Thanks to Rick Swift for the
patch.


git-svn-id: svn://10.0.0.236/trunk@136282 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 02:07:16 +00:00
zach%zachlipton.com
21951c3963 remove these, they belong on the branch (woops!)
r=mystupidstupidself


git-svn-id: svn://10.0.0.236/trunk@136281 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:54:30 +00:00
bryner%netscape.com
a678f52ba1 updates and clarifications
git-svn-id: svn://10.0.0.236/trunk@136280 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:45:28 +00:00
seawood%netscape.com
5c4bc32a72 Add unix printing components to the GRE.
Thanks to Roland Mainz <Roland.Mainz@informatik.med.uni-giessen.de> for the patch.
Bug #188275 r=cls


git-svn-id: svn://10.0.0.236/trunk@136279 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:37:15 +00:00
seawood%netscape.com
d135f1d86d Throw an error if we are building with qt support and the qt libs are not found.
Bug #188275 r=timeless


git-svn-id: svn://10.0.0.236/trunk@136278 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:31:21 +00:00
dbaron%dbaron.org
eeb782e6c5 Fix ContentStatesChanged so it correctly handles combinations of two elements where one is changing from 'display:none' to needing frames. b=188734 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136277 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:29:34 +00:00
zach%zachlipton.com
4701e015a9 Readd the changes back on the (now updated) branch :(
git-svn-id: svn://10.0.0.236/trunk@136276 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:09:33 +00:00
bishakhabanerjee%netscape.com
19eed7e384 Bug 171263 - NSS test apps to check return value of NSS_Shutdown
git-svn-id: svn://10.0.0.236/trunk@136275 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 01:03:21 +00:00
alecf%netscape.com
881ba4cbb1 fix for bug 156940 - stop crashing on exit by manually releasing the 'param' attribute when the autocomplete widget goes away - this way the mork row doesn't hang around after the db is closed...
r=timeless, sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@136274 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 00:41:01 +00:00
nhotta%netscape.com
bc825e56df move the pref dialog size info platform jar files,
check in for yxia@netscape.com
bug 99402, r=nhotta, sr=jag.


git-svn-id: svn://10.0.0.236/trunk@136273 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-14 00:03:12 +00:00
pkw%us.ibm.com
3b5cb1ff11 Bug 188527 - AIX: Linker errors when building GTK2 as default toolkit.
r=seawood@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136271 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:33:54 +00:00
leaf%mozilla.org
2cf9599de9 Automated update
git-svn-id: svn://10.0.0.236/trunk@136270 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:30:13 +00:00
cbiesinger%web.de
f9620a4162 no bug - qt only - fix optimized build on qt 2.x systems
r=cls


git-svn-id: svn://10.0.0.236/trunk@136269 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:19:34 +00:00
dbaron%dbaron.org
2c50ed9f87 Make implementations consistent across platforms: ensure IsDirectory and IsFile return false even when the file doesn't exist (and they return an nsresult error status). b=187014 r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@136268 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:17:49 +00:00
dbaron%dbaron.org
4305a396ed Most of the changes needed for Mozilla to build with gcc's -pedantic-errors option. b=175423 r=seawood sr=bryner
git-svn-id: svn://10.0.0.236/trunk@136267 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:15:42 +00:00
dbaron%dbaron.org
19a9279a84 Implement CSS3 :target pseudo-class, which matches the target of the fragment identifier of the document's URL. Change the semantics of nsIPresShell::GoToAnchor by requiring that it be called whenever the current target changes, with an additional boolean parameter specifying whether to scroll. b=188734 r=glazman sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136266 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 23:10:53 +00:00
bishakhabanerjee%netscape.com
eb7f1a0603 Bug 171263 - NSS test apps shd check return value of NSS_Shutdown
git-svn-id: svn://10.0.0.236/trunk@136263 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 22:36:39 +00:00
nisheeth%netscape.com
9e0b285c05 Ongoing work for bug 182366. Use machine learning techniques to sort autocomplete results. r=heikki. sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@136262 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 22:23:41 +00:00
harishd%netscape.com
d2e0c6cd0d Prevent a hang by consuming entity-look-alike ( &# ) as text. b=188278, r=heikki,sr=jst
git-svn-id: svn://10.0.0.236/trunk@136261 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 22:05:52 +00:00
mikep%oeone.com
3bbfb2a13d Fixing build script.
git-svn-id: svn://10.0.0.236/trunk@136260 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 21:57:01 +00:00
mikep%oeone.com
7c8fb596cb Fixing spacing.
git-svn-id: svn://10.0.0.236/trunk@136259 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 21:55:25 +00:00
mikep%oeone.com
a112d3d893 New build.
git-svn-id: svn://10.0.0.236/trunk@136258 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 21:54:16 +00:00
mikep%oeone.com
acd5634da4 Fixing error with installation.
git-svn-id: svn://10.0.0.236/trunk@136257 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 21:53:58 +00:00
sspitzer%netscape.com
fc56bcb72c fix for bug #179966. r/sr=bienvenu
select the default account in Junk Mail Controls
when the selected folder pane item doesn't do junk mail.


git-svn-id: svn://10.0.0.236/trunk@136256 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 21:52:10 +00:00
glen.beasley%sun.com
0c02b7157a solaris pkging support
git-svn-id: svn://10.0.0.236/trunk@136254 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 20:35:36 +00:00
sspitzer%netscape.com
ce17476c8e fix for bug #132948. r/sr=sspitzer
adding a new account duplicates the default SMTP server.
thanks to neil@parkwaycc.co.uk for the fix.


git-svn-id: svn://10.0.0.236/trunk@136253 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 20:08:14 +00:00
aaronl%netscape.com
f990ba5fb8 Bug 187301. Tab nav pref accessibility.tabfocus not dynamically changeable. r=akkana,sr=bryner
git-svn-id: svn://10.0.0.236/trunk@136252 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 20:05:36 +00:00
glen.beasley%sun.com
95ecadfc85 solaris pkg support
git-svn-id: svn://10.0.0.236/trunk@136251 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 19:44:21 +00:00
glen.beasley%sun.com
7f2a29c11b Solaris pkg support
git-svn-id: svn://10.0.0.236/trunk@136250 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 19:43:15 +00:00
rogerl%netscape.com
d625413193 ECMA3 semantics for toPrimitive.
git-svn-id: svn://10.0.0.236/trunk@136248 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 18:47:54 +00:00
mikep%oeone.com
d3fb628f00 New build.
git-svn-id: svn://10.0.0.236/trunk@136246 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 17:44:25 +00:00
mikep%oeone.com
d5aa22a383 Moving alarms to their own window.
git-svn-id: svn://10.0.0.236/trunk@136245 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 17:43:50 +00:00
mikep%oeone.com
6296b0c893 Adding in button for Monday to Friday only.
git-svn-id: svn://10.0.0.236/trunk@136244 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 17:43:35 +00:00
edburns%acm.org
54f7dceb01 Make Webclient compile and link on win32
git-svn-id: svn://10.0.0.236/trunk@136242 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 16:36:05 +00:00
mikep%oeone.com
224e0e8868 Fixing bug 183855, preferences are cropped (Moved alarms to new section) and bug 188528, pref password is not hidden.
git-svn-id: svn://10.0.0.236/trunk@136241 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 16:16:14 +00:00
mikep%oeone.com
2e5a998825 Removing print option, as it seems to crash Mozilla.
git-svn-id: svn://10.0.0.236/trunk@136240 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 16:13:01 +00:00
mikep%oeone.com
1da702f033 Fixing bug 181927 by checking for element before getting value.
git-svn-id: svn://10.0.0.236/trunk@136239 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 16:01:22 +00:00
mikep%oeone.com
22a2c46749 FIxing bug 188417 by adding message about installing calendar as root if Mozilla was installed as root.
git-svn-id: svn://10.0.0.236/trunk@136238 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 15:36:45 +00:00
caillon%returnzero.com
93903fb594 Bug 187744 - document.aLink and friends should return a hex code, not a named color. r=keeda sr=peterv
git-svn-id: svn://10.0.0.236/trunk@136237 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 15:29:57 +00:00
mikep%oeone.com
0117e93ded Fixing so that weekends get highlighted in blue.
git-svn-id: svn://10.0.0.236/trunk@136236 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 15:29:23 +00:00
mikep%oeone.com
0ec84691eb Fixing bug 109476, in month view, should show events from adjacent months.
Fixing bug 188888, in month view, all day events should show star instead of time.
Fixed thanks to patches from Eric Belhaire.


git-svn-id: svn://10.0.0.236/trunk@136235 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 14:11:54 +00:00
mikep%oeone.com
69672ccf2e Fixing bug 167653, datepicker should show the proper start date.
git-svn-id: svn://10.0.0.236/trunk@136234 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 13:50:45 +00:00
mikep%oeone.com
dc0efa9f85 Fixing bug 187903 for good.
git-svn-id: svn://10.0.0.236/trunk@136233 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 13:46:34 +00:00
mikep%oeone.com
f30966f46d Adding in autocomplete for email addresses and URL field.
git-svn-id: svn://10.0.0.236/trunk@136232 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 13:44:33 +00:00
bernd.mielke%snafu.de
b28c0284b2 enable color for <hr> borders bug 38370 r=hixie sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136231 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 12:10:11 +00:00
bzbarsky%mit.edu
da60b0214a fix bustage....
git-svn-id: svn://10.0.0.236/trunk@136230 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 08:02:17 +00:00
edburns%acm.org
76b8fbb022 Webclient compiles with 1.3A but does not yet link.
git-svn-id: svn://10.0.0.236/trunk@136229 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 07:41:00 +00:00
bzbarsky%mit.edu
483d0a23ae Bug 60290 -- comments should not be treated as whitespace. r=glazou, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136228 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 07:19:49 +00:00
bzbarsky%mit.edu
b5f23ea756 Return a more useful error when being inited with an empty string. Bug 187605,
patch by bugzilla@chucker.rasdi.net (So"ren 'Chucker' Kuklau), r=dougt, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136227 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 06:26:19 +00:00
kyle.yuan%sun.com
e0850c2493 Bug 187208 give more information for menu
r=kyle.yuan, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@136226 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 06:26:11 +00:00
bryner%netscape.com
cb45a9e50a remove unused xcDllStore (bug 187876). r=dougt, rs=brendan.
git-svn-id: svn://10.0.0.236/trunk@136225 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 06:08:00 +00:00
bryner%netscape.com
ccc8572611 call InitPrintSettingsFromPrinter/Prefs (bug 188832). patch by gisburn.
git-svn-id: svn://10.0.0.236/trunk@136224 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 05:01:12 +00:00
bryner%netscape.com
9b38aa1079 fix saving images from context menu (bug 188587). patch by thieleke@yahoo.com
git-svn-id: svn://10.0.0.236/trunk@136223 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 04:14:35 +00:00
timeless%mozdev.org
6f3d0fb6f4 Bug 185676 Back/Forward Buttons on MS IntelliMouse Moving Back/Forward Twice
patch by yonigilad@yahoo.com r=dean_tessman sr=bryner


git-svn-id: svn://10.0.0.236/trunk@136222 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 04:10:57 +00:00
bzbarsky%mit.edu
e494b618d0 New helper app pref panel needs some more flex. Bug 188778, r=biesi, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136221 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 02:47:46 +00:00
jake%bugzilla.org
872f70f209 Recompile the docs to pick up recent changes for the website.
git-svn-id: svn://10.0.0.236/trunk@136220 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 02:39:01 +00:00
jake%bugzilla.org
4d5cb3130c Update links to tldp.org and Bugzilla version numbers. Also, added some text ab
out this being a development version of the guide and instructions on what to ch
ange for a release (including how to disable the devel text).


git-svn-id: svn://10.0.0.236/trunk@136219 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 02:34:50 +00:00
jake%bugzilla.org
c9809faab8 Bug 187566 - Making the upgrading section much clearer and presenting multiple possible methods (CVS, tarball, patch).
git-svn-id: svn://10.0.0.236/trunk@136217 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-13 00:26:54 +00:00
bryner%netscape.com
9d4b7c832c port patch from xpfe/communicator/resources/content/printPreviewBindings.xml to support printing from print preview for xprint on unix,
git-svn-id: svn://10.0.0.236/trunk@136216 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 21:37:26 +00:00
bernd.mielke%snafu.de
1b0deca181 fix the color code to make tables in quirks mode on white background to look outset bug 14090 r/sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136215 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 12:11:05 +00:00
antonio.xu%sun.com
a5c727cf4d fix for bug #185959 Many function(For exam. Reply, Forward) works and leads to crash before user login r=Henry sr=binevenu
git-svn-id: svn://10.0.0.236/trunk@136214 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 08:47:34 +00:00
caillon%returnzero.com
69ec017bec XUL Chrome should use |content| over |_content|. r/a=justdave via irc
git-svn-id: svn://10.0.0.236/trunk@136213 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 08:33:05 +00:00
justdave%syndicomm.com
0a6d460ca9 Bug 153874: Query in sidebar wasn't working
Patch by Peter Henderson (peterhenderson@usa.net)
r= kiko, a= justdave


git-svn-id: svn://10.0.0.236/trunk@136212 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 08:16:06 +00:00
edburns%acm.org
9016e169c7 no need for this anymore!
git-svn-id: svn://10.0.0.236/trunk@136211 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 07:48:16 +00:00
edburns%acm.org
a0be360e61 Make JavaDOM build with ANT.
git-svn-id: svn://10.0.0.236/trunk@136210 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 07:43:38 +00:00
edburns%acm.org
8ec99b456a We use Ant here.
git-svn-id: svn://10.0.0.236/trunk@136209 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 07:30:29 +00:00
edburns%acm.org
0871931198 javadom
git-svn-id: svn://10.0.0.236/trunk@136208 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 07:28:28 +00:00
bugreport%peshkin.net
451b09e5c0 Bug 188656 Change required mysqld minimum to 3.23.41
r=bbaetz,justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136207 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 06:09:59 +00:00
mkaply%us.ibm.com
542c9bb61e New OS/2 code to match everyone else - pretty much the same as Unix
git-svn-id: svn://10.0.0.236/trunk@136206 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 04:19:02 +00:00
bzbarsky%mit.edu
0d696693b6 Fix mac bustage...
git-svn-id: svn://10.0.0.236/trunk@136205 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 02:22:23 +00:00
bzbarsky%mit.edu
20729b1b47 Fix bug 86640 -- change helper app dialog to properly remember the selected
course of action, move the "neverAsk" information from prefs back to
mimeTypes.rdf, remove the "Reset" button from helper app prefs, set up a way to
select "use default OS helper" for a given type.  Patch by Bill Law
<law@netscape.com> and Philip K. Warren <pkw@us.ibm.com>, r=biesi, sr=bzbarsky,
what passes for moa in helper apps=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@136204 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-12 01:14:35 +00:00
sspitzer%netscape.com
79cf8b18e7 fix for bug #181397 (automatically create the junk folder)
fix for bug #181394 (enable the "Move to Folder" UI in junk controls)
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136203 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 23:09:34 +00:00
caillon%returnzero.com
59f91b037e Bug 188645 - HTMLTableElement.insertRow(-1) should append a new row, per DOM Level 2 HTML
Patch by Ruslan Ismailov <croo@nm.ru>
r=caillon sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136202 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 21:33:00 +00:00
bzbarsky%mit.edu
60594a7bbe Fix solaris and BSD/OS build bustage
git-svn-id: svn://10.0.0.236/trunk@136201 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 21:25:57 +00:00
bzbarsky%mit.edu
a1ffd3dd93 Add sniffing of XML files. Reorganize the sniffing code to make plugging in
new sniffers simpler.  Bug 186884, r=bbaetz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@136199 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 19:34:13 +00:00
axel%pike.org
964e9908e7 bug 184086, number conversion in XSLT is LOCALE independent, r=sicking, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136198 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 19:19:14 +00:00
ccarlen%netscape.com
94fbf9debf Trying again to fix build bustage.
git-svn-id: svn://10.0.0.236/trunk@136197 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 19:12:23 +00:00
ccarlen%netscape.com
4278967572 Fixing OS/2 bustage. Hashtable callback functions do need PR_CALLBACK
git-svn-id: svn://10.0.0.236/trunk@136196 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 15:39:49 +00:00
caillon%returnzero.com
36934e0693 use nsCOMArray instead of nsISupportsArray. r+sr=bzbarsky b=188600
git-svn-id: svn://10.0.0.236/trunk@136195 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 10:28:37 +00:00
bryner%netscape.com
18a46fc042 bug 187125 - support multiple device instances for xlib. patch by Roland.Mainz@informatik.med.uni-giessen.de, r=neil@parkwaycc.co.uk, sr=rbs@maths.uq.edu.au
git-svn-id: svn://10.0.0.236/trunk@136194 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 09:14:06 +00:00
edburns%acm.org
041819738b Checkpoint for getting webclient to build with 1.3a.
git-svn-id: svn://10.0.0.236/trunk@136193 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 09:01:20 +00:00
ccarlen%netscape.com
7cccab3ac2 Fixing ports bustage
git-svn-id: svn://10.0.0.236/trunk@136192 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 06:39:02 +00:00
rbs%maths.uq.edu.au
17d1f5f622 fix incorrect position of certain accents, b=188467, r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136190 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 03:04:30 +00:00
ccarlen%netscape.com
e8b458dd5e Bug 70714 - visited link doesn't change color in embedding apps. The patch turns on the building of the embed-lite component which implements global history with less footprint and is exported to Embed dist. r=chak/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@136189 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 03:02:33 +00:00
bzbarsky%mit.edu
a34e471574 Comments in framesets should not be moved to <head>. Bug 75873, r=harishd, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@136188 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 02:42:36 +00:00
pschwartau%netscape.com
9d85abdb7c Updating JS_GetImplementationVersion() to date of latest JS release (67111).
git-svn-id: svn://10.0.0.236/trunk@136186 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 02:05:00 +00:00
bzbarsky%mit.edu
179327da7a BeOS does not show Japanese fonts on some widgets. Bug 186495, patch
contributed by Ryo Hattori <ryo@myrealbox.com>, r=sergei_d@fi.tartu.ee


git-svn-id: svn://10.0.0.236/trunk@136185 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 02:04:57 +00:00
sspitzer%netscape.com
9f3cc69aa5 fix for bug #188593. the account order in the account manager can be unpredictably wacky, so change how we do it.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136184 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 01:36:10 +00:00
jaggernaut%netscape.com
d414ce17cb Bug 187500: selectedIndex broken for <tabs> element. patch by rginda, r=blake, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136182 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 00:21:42 +00:00
despotdaemon%netscape.com
a54f3c9d77 Pseudo-automatic update of changes made by hyatt@apple.com.
git-svn-id: svn://10.0.0.236/trunk@136181 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 00:16:30 +00:00
jfrancis%netscape.com
4022311d03 fix for 187662: first return in empty doc does nothing. r=brade; sr=kin
git-svn-id: svn://10.0.0.236/trunk@136180 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-11 00:06:29 +00:00
zach%zachlipton.com
70edadec69 Fix for bug 166481 ("Spellcheck is borked"). Part one of this fix fixes
the spelling errors so tinderbox doesn't barf, part two fixes
t/006spellcheck.t and adds some more new words to check for.

Part 1 patch by myself, r=timeless
Part 2 patch by MattyT. r=zach (myself)
a=justdave


git-svn-id: svn://10.0.0.236/trunk@136179 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 23:51:38 +00:00
pkw%us.ibm.com
47b2900670 Backout Bug 188527.
git-svn-id: svn://10.0.0.236/trunk@136178 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 22:36:09 +00:00
peterlubczynski%netscape.com
6e83004b81 Resolve relative URLs on CODEBASE, bug 184458 r=adamlock sr=darin
git-svn-id: svn://10.0.0.236/trunk@136177 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 21:59:02 +00:00
peterlubczynski%netscape.com
883ef02946 Fixing bug 173069, relative URLS with PLUGINSPAGE PLUGINURL
git-svn-id: svn://10.0.0.236/trunk@136176 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 21:48:56 +00:00
sspitzer%netscape.com
580e5aa13b pr log when an error of the type reported in bug #158059 occurs.
rs=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136175 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 21:48:33 +00:00
sspitzer%netscape.com
f18e65158e fix for bug #158059. if we go to send a message, and the connection gets closed on us
and we haven't read any bytes, that's an error, and we should let the user know.
(otherwise they think they are sending mail, when they aren't.)

r=cavin, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@136173 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 21:12:58 +00:00
pkw%us.ibm.com
55d16d3b4b Bug 188527 - Fix linker errors when building GTK2 Mozilla on AIX.
r=seawood@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136172 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 20:50:43 +00:00
leaf%mozilla.org
31c3db1e42 removing gfx2 from MozillaTinderboxAll per dbaron's request -leaf
git-svn-id: svn://10.0.0.236/trunk@136171 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 20:22:16 +00:00
dbaron%dbaron.org
e0db4a7b45 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. sr=jag
git-svn-id: svn://10.0.0.236/trunk@136169 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 20:02:04 +00:00
dbaron%dbaron.org
5ed2c45c4b Correctly report 'transparent' for -moz-border-*-colors. b=188465 r=caillon sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136168 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 19:49:24 +00:00
relyea%netscape.com
4e78f57cad Check for Empty CRL list as well.
Bug 164501.


git-svn-id: svn://10.0.0.236/trunk@136165 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 19:09:46 +00:00
seawood%netscape.com
6d8203e674 Skip the decoders directory if we're not building any image decoders.
Bug #169304


git-svn-id: svn://10.0.0.236/trunk@136164 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 18:36:07 +00:00
relyea%netscape.com
f76a18f162 Declare PK11_TokenRefresh()
git-svn-id: svn://10.0.0.236/trunk@136163 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 17:56:22 +00:00
mostafah%oeone.com
e518f3f513 Fixed calculation of recurrence with exceptions
git-svn-id: svn://10.0.0.236/trunk@136162 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 15:57:33 +00:00
dbaron%dbaron.org
d931976920 Report 'transparent' border color correctly. b=188465 r=caillon sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136161 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 15:55:27 +00:00
neil%parkwaycc.co.uk
90428ef89b Bug 183747 <dialog>s don't need dialogOverlay r=morse sr=alecf
git-svn-id: svn://10.0.0.236/trunk@136160 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 15:04:04 +00:00
glazman%netscape.com
441e361f9b just removing useless duplicate code; b=188486, r=Neil, r=brade, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@136159 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 13:46:44 +00:00
brade%netscape.com
d6d80cc0d9 bug 186054 and others; disable JS and plugins in Composer (r=smfr, sr=kin)
git-svn-id: svn://10.0.0.236/trunk@136158 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 13:13:25 +00:00
hpradhan%hotpop.com
f3a5bc0fb5 bug 185073: mozilla crashes on http://www.kccommunications.com/
r=caillon sr=jst


git-svn-id: svn://10.0.0.236/trunk@136157 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 12:31:41 +00:00
kyle.yuan%sun.com
4c6daf5614 Bug 150994 iframe with tabindex shortens tab cycle
r=aaronl, sr=bryner
don't get tabindex for HTML elements that don't support it


git-svn-id: svn://10.0.0.236/trunk@136156 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 10:07:30 +00:00
darin%netscape.com
ad6e223bf0 fixes bug 131237 "Don't assert at nsStandardURL::SetUserPass during normal
HTTP publishing" r=brade sr=kin


git-svn-id: svn://10.0.0.236/trunk@136155 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 09:43:32 +00:00
neil%parkwaycc.co.uk
66a63fa2b0 Fix regression to bug 150759 caused by bug 147148 r=jkeiser sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136154 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 09:24:30 +00:00
neil%parkwaycc.co.uk
b2f998e168 actually check in patch to bug 160924 that has r=doron sr=bz
git-svn-id: svn://10.0.0.236/trunk@136153 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 09:20:08 +00:00
jouni%heikniemi.net
1f5c49fd8b Bug 142104: Enhancements in buglists should be gray. r=kiko, a=justdave
git-svn-id: svn://10.0.0.236/trunk@136152 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 08:59:05 +00:00
seawood%netscape.com
1f2aec6d7d Fix IRIX bustage.
Thanks to Doug Turner <dougt@netscape.com> for the patch.
Bug #185681 r=cls


git-svn-id: svn://10.0.0.236/trunk@136151 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 08:32:46 +00:00
gerv%gerv.net
82907fcdee Bug 179328 - Mozilla-specific wording in duplicates.cgi explanation text. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@136150 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 08:28:34 +00:00
bolian.yin%sun.com
30d580631f Bug 187209, role for toplevel should be "frame"
patch by simford.dong@sun.com, r=bolian. This is NOT for the default build.


git-svn-id: svn://10.0.0.236/trunk@136149 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 07:20:11 +00:00
caillon%returnzero.com
64cf840d8a 188438, Null-check the right variable. r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136148 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 06:57:26 +00:00
samuel%sieb.net
edff29bf3f Bug 163371 - chatzilla has no icon (installer problem)
chatzilla only
patch by bryner
r=rginda


git-svn-id: svn://10.0.0.236/trunk@136147 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 06:52:20 +00:00
samuel%sieb.net
0e97213b44 Bug 128970 - cycleView does not cycle in the ViewsArray
chatzilla only
patch by xor@ivwnet.com
r=rginda


git-svn-id: svn://10.0.0.236/trunk@136146 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 06:42:59 +00:00
samuel%sieb.net
da458b485a Bug 166187 - fix /hide problem
chatzilla only
r=rginda


git-svn-id: svn://10.0.0.236/trunk@136145 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 06:37:48 +00:00
samuel%sieb.net
d98652217f Bug 188075 irc.openprojects.net should be updated to irc.freenode.net
chatzilla only
r=rginda


git-svn-id: svn://10.0.0.236/trunk@136144 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 06:36:20 +00:00
sspitzer%netscape.com
e68cb8ba93 code cleanup. remove static cid.
git-svn-id: svn://10.0.0.236/trunk@136143 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:51:47 +00:00
sspitzer%netscape.com
5572368c52 code cleanup.
git-svn-id: svn://10.0.0.236/trunk@136142 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:51:00 +00:00
sspitzer%netscape.com
f73d3f0a1b code cleanup. remove the static CID.
git-svn-id: svn://10.0.0.236/trunk@136141 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:50:17 +00:00
sspitzer%netscape.com
11c14eff3a code cleanup. remove comments that aren't needed.
git-svn-id: svn://10.0.0.236/trunk@136140 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:47:30 +00:00
sspitzer%netscape.com
3b1d700e89 remove static cid.
git-svn-id: svn://10.0.0.236/trunk@136139 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:45:48 +00:00
sspitzer%netscape.com
4ef5d0ff2f switch to interCaps, and other code cleanup.
git-svn-id: svn://10.0.0.236/trunk@136138 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:45:27 +00:00
sspitzer%netscape.com
3530d63010 define some consts the values for the moveTargetMode and add license
git-svn-id: svn://10.0.0.236/trunk@136137 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:43:24 +00:00
leaf%mozilla.org
9f73a9268e Automated update
git-svn-id: svn://10.0.0.236/trunk@136136 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:30:10 +00:00
danm%netscape.com
02c4bd1ef7 added tridentprofile extension (not built by default). bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136135 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:16:03 +00:00
danm%netscape.com
3c8c2f8ac9 trident to mozilla profile migrator. bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136134 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:10:44 +00:00
danm%netscape.com
f2065d80d5 trident to mozilla profile migrator. at this point, internet prefs and cookies on Windows. bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136133 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:10:02 +00:00
caillon%returnzero.com
16984e763d [Bug 182152] File picker should always offer a *.* filter
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136132 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 04:08:04 +00:00
bolian.yin%sun.com
af4373628c Bug 184088, Error compiling nsMaiTopLevel.cpp with gcc 3.2.1
patch by joshk@mspencer.net. This is NOT for the default build.


git-svn-id: svn://10.0.0.236/trunk@136131 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:51:55 +00:00
sspitzer%netscape.com
0399a1cc02 adding a contract id for the imap service, so I can clean up some code
git-svn-id: svn://10.0.0.236/trunk@136130 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:46:23 +00:00
sspitzer%netscape.com
dbb584fc6d fix typo in comment. no reviewer.
git-svn-id: svn://10.0.0.236/trunk@136129 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:45:31 +00:00
sspitzer%netscape.com
bc4169a017 fixing a comment, and some minor code cleanup. no reviewer.
git-svn-id: svn://10.0.0.236/trunk@136128 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:44:08 +00:00
sspitzer%netscape.com
2c1187a942 commenting some code. no reviewer.
git-svn-id: svn://10.0.0.236/trunk@136127 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:42:02 +00:00
cltbld%netscape.com
67e7a2dbbb Adding safari pageload test.
git-svn-id: svn://10.0.0.236/trunk@136126 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:40:46 +00:00
sspitzer%netscape.com
07106fd59c "Junk Mail" should be "Junk" in junk mail controls dialog.
rs=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136125 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:38:28 +00:00
sspitzer%netscape.com
d31de8d946 add missing license.
git-svn-id: svn://10.0.0.236/trunk@136124 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:37:00 +00:00
seawood%netscape.com
cbca0fca50 Ok, I forgot this one too.
git-svn-id: svn://10.0.0.236/trunk@136123 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:36:36 +00:00
bryner%netscape.com
616f5eb4eb Fix up static build some more (and remove extraneous framework path into sdagley's home directory).
git-svn-id: svn://10.0.0.236/trunk@136122 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:10:54 +00:00
danm%netscape.com
0435c0d46d new method: add(). bug 185689 r=darin,jag
git-svn-id: svn://10.0.0.236/trunk@136121 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:02:04 +00:00
danm%netscape.com
e4d3e51f30 factor code to add a cookie structure to the list into a separate function. bug 185689 r=darin,jag
git-svn-id: svn://10.0.0.236/trunk@136120 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 03:01:26 +00:00
danm%netscape.com
6ac824b4c0 adding windows cookie system directory specifier. bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136119 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 02:52:26 +00:00
seawood%netscape.com
a4f3da1bef Fix cfm bustage.
git-svn-id: svn://10.0.0.236/trunk@136118 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 02:36:18 +00:00
cavin%netscape.com
ab6fc2bddf Fix for bug 182423. Look for conduit mgr dll in the registry entry for "Software\\U.S. Robotics\\Pilot Desktop\\Core" as well and restore registry back to point to Palm install dir after uninstall. r=ssu, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@136117 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 02:09:12 +00:00
danm%netscape.com
6bcd0ff0a3 add nsICookieManager2.idl bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136116 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:59:21 +00:00
bzbarsky%mit.edu
3d71548f10 "Use my chosen colors" should override border-colors too. Bug 156002, r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136115 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:58:37 +00:00
danm%netscape.com
b957763cf4 new add() method to frozen nsICookieManager interface. bug 185689 r=ccarlen,jag
git-svn-id: svn://10.0.0.236/trunk@136114 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:54:55 +00:00
bryner%netscape.com
01b6ad09e9 Fix up static build.
git-svn-id: svn://10.0.0.236/trunk@136113 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:27:52 +00:00
seawood%netscape.com
ee808e8996 Add --enable-image-decoders build option.
Bug #169304 r=bryner sr=alecf


git-svn-id: svn://10.0.0.236/trunk@136112 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:21:14 +00:00
seawood%netscape.com
8306892127 Anything that depends upon Makefile.in should also depend upon Makefile.
Bug #169304 r=bryner sr=alecf


git-svn-id: svn://10.0.0.236/trunk@136111 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 01:14:49 +00:00
bzbarsky%mit.edu
8ac3dce0c0 Re-enable print preview gui stuff (which was mostly off) on GTK and Xlib
ports.  Bug 187125, patch by Roland.Mainz@informatik.med.uni-giessen.de (Roland
Mainz), r=smontagu, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@136110 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:53:28 +00:00
racham%netscape.com
5b52b47bfb Fixing bug 167803. Make sure we load content tree owner exists before we load the chrome to avoid crashing on linux in some cases. r=danm, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136109 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:41:54 +00:00
racham%netscape.com
7415cb9092 Fixing bug 173267. Add method to get profile field values information from the registry. r=ccarlen, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136108 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:39:52 +00:00
racham%netscape.com
b86ff686ec Fixing bug 173304. Adding generic ISP wizard pages to the account wizard. r=srilatha, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@136107 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:37:04 +00:00
ian%hixie.ch
a5cb60580b Don't try to call the inherited DESTROY destructor, since UNIVERSAL doesn't have one...
git-svn-id: svn://10.0.0.236/trunk@136106 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:36:20 +00:00
dbaron%dbaron.org
c2b73f96e3 Fix sizing regression for selects with optgroups. b=188426 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136104 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:30:50 +00:00
ian%hixie.ch
0afe61ae12 Propogate errors from the results frame for a nicer stack trace.
git-svn-id: svn://10.0.0.236/trunk@136103 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:21:08 +00:00
ian%hixie.ch
f72992785a Support negative integers too
git-svn-id: svn://10.0.0.236/trunk@136102 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:20:37 +00:00
ian%hixie.ch
6491fc1049 TemplateToolkit doesn't support .defined on objects. Also, stringify objects early to avoid trying to apply .replace, etc, on them.
git-svn-id: svn://10.0.0.236/trunk@136101 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:19:47 +00:00
ian%hixie.ch
baa0546c6d PATH_INFO support.
git-svn-id: svn://10.0.0.236/trunk@136100 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-10 00:14:45 +00:00
bryner%netscape.com
a6935ed00b Fix solaris bustage by making sure $(DIST)/bin is in the library path.
git-svn-id: svn://10.0.0.236/trunk@136099 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 23:41:15 +00:00
bryner%netscape.com
5e5c937125 Remove pippki (XUL security dialogs) from embed.jar (bug 188145). r=kaie, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@136098 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 23:31:37 +00:00
aaronl%netscape.com
3de68204fb Backing out fix for bug 187301, to see if Txul numbers go back to normal.
git-svn-id: svn://10.0.0.236/trunk@136097 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 23:19:55 +00:00
alecf%netscape.com
3fd40b0542 specify many resources explicitly so that embedding doesn't get a bunch of MathML resources, among other things
bug 188251, r=bz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@136096 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 23:19:04 +00:00
alecf%netscape.com
680e14f99e remove comments from transliterate.properties to reduce the filesize by 47k
bug 188251, r=bz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@136095 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 23:17:36 +00:00
relyea%netscape.com
95a9aff695 Add the ability to generate certs with multiple DNS names.
git-svn-id: svn://10.0.0.236/trunk@136094 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 22:59:42 +00:00
glen.beasley%sun.com
9cf300ec81 Solaris pkg copyright
git-svn-id: svn://10.0.0.236/trunk@136093 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 22:53:13 +00:00
mikep%oeone.com
de7dc2016f Moving default values for prefs to properties file.
git-svn-id: svn://10.0.0.236/trunk@136092 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 21:55:34 +00:00
suresh%netscape.com
07a811704c Bug 185148 - nsStorageStream::ReadSegments(...) loops forever if the writer fails. r-bzbarsky, sr-darin.
git-svn-id: svn://10.0.0.236/trunk@136090 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 21:37:30 +00:00
smontagu%netscape.com
d3fbbabadb Corrections to measurement of justified Arabic text. Bug 187866, r=sfraser, sr=rbs@maths.uq.edu.au.
git-svn-id: svn://10.0.0.236/trunk@136089 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 21:15:52 +00:00
aaronl%netscape.com
ee27cb1b5c Bug 98546. Fix word break detection to improve select by word where there is punctuation in the word. Also fixes 125172, double clicking in URL bar should select only part of URL. Also fixes bug 133312, word selection with accented letters. r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@136088 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 20:56:53 +00:00
sspitzer%netscape.com
2c4c663c22 fix for #187673. when re-using the stand alone msg window, because of quick search and mail views,
we have to re-create the db view, even if it is for the same folder as the existing view.
r/sr=bienvenu.  thanks to leon.zhang@sun.com for the bug report and initial patch.


git-svn-id: svn://10.0.0.236/trunk@136087 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 20:51:40 +00:00
sspitzer%netscape.com
bca997efdd adding a comment about where the fix for #188393 would go.
no reviewer.


git-svn-id: svn://10.0.0.236/trunk@136086 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 20:22:28 +00:00
aaronl%netscape.com
7b9e0b958d Bug 186873. Incorrect charCode comparison to char instead of int in button.xml. r=neil, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136085 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 20:16:15 +00:00
aaronl%netscape.com
8eeeec9e73 Bug 187301 - tab nav prefs not dynamically changeable, no prefs observer. r=akkana, sr=bryner.
git-svn-id: svn://10.0.0.236/trunk@136084 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 20:03:41 +00:00
sspitzer%netscape.com
7e324be8fe fix for #99363. from the browser window, send page, mailto urls, send link, send image,
ctrl m, new message should *all* use the default identity.  a while back
we made the decision to make it use the currently selected account in the
3 pane, if the 3 pane was up.  (see #79053) jglick and I have decided that was a mistake and we are reverting.

also fixes bug a bug where ctrl-m and file | new message don't do the same thing
when a news account is selected in the 3 pane.  (yikes!)

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136081 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 19:31:48 +00:00
sicking%bigfoot.com
3c63f2eb9e Small update to description of stylesheet-compile-handlers
git-svn-id: svn://10.0.0.236/trunk@136080 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 19:27:55 +00:00
sicking%bigfoot.com
da60db19bd documentation of compiled stylesheets
git-svn-id: svn://10.0.0.236/trunk@136079 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 19:09:11 +00:00
relyea%netscape.com
45bdc3d5c4 Remember to include the global: tag
git-svn-id: svn://10.0.0.236/trunk@136075 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 18:44:26 +00:00
harishd%netscape.com
e7a19238c2 Close Head context before dealing with tags that belong in body/frameset. b=187790, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@136073 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 18:29:23 +00:00
locka%iol.ie
10284204ae Improve the look & feel of the error pages. b=156997 sr=bzbarsky@mit.edu r=bugmail@sicking.cc
git-svn-id: svn://10.0.0.236/trunk@136072 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 18:17:04 +00:00
relyea%netscape.com
d1ef6ba9da backport NSS 3.7 fixes to the tip.
git-svn-id: svn://10.0.0.236/trunk@136071 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 18:15:11 +00:00
dbradley%netscape.com
685031e63f Bug 118823 - better assembler for win32 xptcinvoke. r=dbradley sr=shaver
git-svn-id: svn://10.0.0.236/trunk@136070 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 15:57:10 +00:00
bzbarsky%mit.edu
99f080b18b Stop at the viewmanager root when computing offsets for flashing stuff. Bug
188210, r=caillon, sr=kin


git-svn-id: svn://10.0.0.236/trunk@136069 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 15:51:58 +00:00
sicking%bigfoot.com
6b164af018 Bug 187611: Set the proper Content-Type of XSLT generated documents
r=peterv sr=jst


git-svn-id: svn://10.0.0.236/trunk@136067 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 15:45:45 +00:00
mikep%oeone.com
c6f231594b Fixing bug 187903, patch by Curtis Jewell, to fix not showing percentages for tasks.
git-svn-id: svn://10.0.0.236/trunk@136066 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 15:03:08 +00:00
axel%pike.org
79c83f88b9 bug 188339, improve transformiix standalone DOM, get rid of childNodes in Attr, r=peterv, not part of build
git-svn-id: svn://10.0.0.236/trunk@136065 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 14:28:02 +00:00
dbaron%dbaron.org
a569c670f5 Replace computation of max-element-size (height and width) with max-element-width alone, since the max-element-height is practically unused and not meaningful for layout. b=186953 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@136064 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 14:26:32 +00:00
bryner%netscape.com
1c7f8e98ea Make GetStyleDataExternal |const| to fix build bustage.
git-svn-id: svn://10.0.0.236/trunk@136060 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 08:07:27 +00:00
alecf%netscape.com
713f69a479 add string decoding to symbol demangling code, r=blythe - not part of default build, just a tool
for bug 188248


git-svn-id: svn://10.0.0.236/trunk@136059 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 08:03:23 +00:00
bryner%netscape.com
6bfe9e29d4 fixing win32 bustage
git-svn-id: svn://10.0.0.236/trunk@136058 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 07:50:15 +00:00
bryner%netscape.com
6278746fdf Phase 1 of style context deCOMtamination (bug 114713). Remove all dependencies on nsIStyleContext from outside of content and layout. Make nsIFrame::GetStyleData be a non-inline virtual function when called from outside of layout, since the nsStyleContext implementation won't be available to those callers. r=dbaron, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@136056 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 06:49:07 +00:00
kin%netscape.com
4c2a2376d9 Fix for bug #88049: Support .selectionStart & friends for textareas
Patch by petejc@optonline.net and kin@netscape.com

  mozilla/content/html/content/src/nsHTMLInputElement.cpp
  mozilla/content/html/content/src/nsHTMLTextAreaElement.cpp
  mozilla/dom/public/idl/html/nsIDOMNSHTMLTextAreaElement.idl
  mozilla/layout/html/forms/src/nsTextControlFrame.cpp
  mozilla/layout/html/forms/src/nsTextControlFrame.h

Re-implemented selectionStart, selectionEnd, setSelectionRange() and various

utility methods in nsTextControlFrame to support multi-line text widgets.


r=jkeiser@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@136054 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 06:06:17 +00:00
bolian.yin%sun.com
4593b3e127 backout the patch for bug 187209. gtk2 build is broken by it. This is NOT for the default build
git-svn-id: svn://10.0.0.236/trunk@136053 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 05:22:17 +00:00
wtc%netscape.com
d50ec75b06 Bug 186201: should handle a null 'environ' pointer, which can happen on
Solaris if NSS is loaded with dlopen() by an executable linked with the
RTLD_GROUP flag.


git-svn-id: svn://10.0.0.236/trunk@136052 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 04:34:31 +00:00
wtc%netscape.com
56a88ba186 Bug 187629: do not refresh a CERTCertificate if the same instance of a
cached cert is added to the collection.


git-svn-id: svn://10.0.0.236/trunk@136051 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 04:29:01 +00:00
ccarlen%netscape.com
ee1b4f4ef9 Bug 182341 - Crash when closing profile mgr window with 'X' close box. Due to a static nsCOMPtr which, because it was static, was destroyed too late. r=racham/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@136050 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 03:19:22 +00:00
pschwartau%netscape.com
60056cf658 Removing skip since bug 83051 has been fixed.
git-svn-id: svn://10.0.0.236/trunk@136049 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 03:13:12 +00:00
dbaron%dbaron.org
d5efebbec0 Bug 97777: make shrink wrapping of absolutely positioned elements work reliably by using unconstrained available width when BRS_SHRINKWRAPWIDTH is set. Patch from Arunan Bala <arunan_bala@hotmail.com>. r=roc sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@136048 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 02:24:10 +00:00
despotdaemon%netscape.com
b61f4076d8 Pseudo-automatic update of changes made by rick.ju@sun.com.
git-svn-id: svn://10.0.0.236/trunk@136043 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 01:34:37 +00:00
smontagu%netscape.com
d822833720 Caret not displayed in empty right-aligned text input fields. Bug 105397, r=kin, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@136041 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 01:01:38 +00:00
smontagu%netscape.com
572842e45b GTK+ and Xlib gfx should support multiple device instances. Bug 187125, Author=Roland.Mainz@informatik.med.uni-giessen.de, r=smontagu, sr=rbs@maths.uq.edu.au.
git-svn-id: svn://10.0.0.236/trunk@136040 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 00:45:57 +00:00
smontagu%netscape.com
3b982b6a24 Make XUL documents print. Bug 137526, Author=Roland.Mainz@informatik.med.uni-giessen.de, r=smontagu, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@136036 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 00:22:16 +00:00
bzbarsky%mit.edu
a22fcc2a62 if progress dialog is last open window, it closing at download completion
should _not_ cancel download.  Bug 181374, patch by Sascha Kettler
<kettler@gmx.net>, r=timeless, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@136034 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 00:16:58 +00:00
peterv%netscape.com
eac8a17309 Make final fix for bug 74786 (String cleanup) easier by simplifying the Transformiix DOM. r=sicking, sr=jst. r=Pike on the parts not part of the Mozilla build.
git-svn-id: svn://10.0.0.236/trunk@136033 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 00:15:55 +00:00
dbaron%dbaron.org
0f7567ac4d Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136032 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-09 00:08:53 +00:00
locka%iol.ie
fe8a1ddb91 Add cache key, referrer and extra headers parameters to nsIWebBrowserPersist::saveURI b=170722 r=bzbarsky@mit.edu sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@136030 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 23:53:10 +00:00
dbaron%dbaron.org
6ed727cbe8 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136028 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 23:19:20 +00:00
pschwartau%netscape.com
da0a65f13f Improving comment.
git-svn-id: svn://10.0.0.236/trunk@136026 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 23:03:17 +00:00
pschwartau%netscape.com
e4631ab3d2 Adding a comment.
git-svn-id: svn://10.0.0.236/trunk@136025 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 23:01:43 +00:00
pschwartau%netscape.com
3b82ed70a1 Correcting testcase and adding more illustrative cases.
git-svn-id: svn://10.0.0.236/trunk@136024 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:51:02 +00:00
dbaron%dbaron.org
186eca206d Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136023 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:45:23 +00:00
peterv%netscape.com
9ef9b667e3 That shouldn't have gone in.
git-svn-id: svn://10.0.0.236/trunk@136022 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:44:35 +00:00
peterv%netscape.com
925853e46c Make final fix for bug 74786 (String cleanup) easier by simplifying the Transformiix DOM. r=sicking, sr=jst. r=Pike on the parts not part of the Mozilla build.
git-svn-id: svn://10.0.0.236/trunk@136021 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:40:42 +00:00
bzbarsky%mit.edu
ad013ff94a Get the right view when positioning context menus. Bug 185107, r=hyatt, sr=jag
git-svn-id: svn://10.0.0.236/trunk@136020 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:40:14 +00:00
dbaron%dbaron.org
855a1b80fa Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136019 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:35:09 +00:00
dbaron%dbaron.org
e071c7ff2a Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136017 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 22:05:52 +00:00
wtc%netscape.com
ec8de2b7c8 Bug 186586: If at NSS shutdown there are still certs in the cert caches,
cause NSS shutdown and the next NSS initialization to fail but do not
destroy the cert caches (and the crypto context and trust domain containing
them) to avoid a crash if the NSS client destroys the certs later.  New
error codes needed to be added to indicate the failure of NSS shutdown and
NSS initialization due to this cause.


git-svn-id: svn://10.0.0.236/trunk@136016 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:58:29 +00:00
despotdaemon%netscape.com
73aa4378d1 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@136015 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:53:02 +00:00
wtc%netscape.com
83b9358446 Bug 186586: If at NSS shutdown there are still certs in the cert caches,
cause NSS shutdown and the next NSS initialization to fail but do not
destroy the cert caches (and the crypto context and trust domain containing
them) to avoid a crash if the NSS client destroys the certs later.  New
error codes needed to be added to indicate the failure of NSS shutdown and
NSS initialization due to this cause.
Modified Files:
	base/errorval.c nss/nssinit.c pki/pki3hack.c pki/pki3hack.h
	pki/pkistore.c pki/pkistore.h pki/tdcache.c pki/trustdomain.c
	util/secerr.h


git-svn-id: svn://10.0.0.236/trunk@136014 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:48:47 +00:00
wtc%netscape.com
2bf0c058f2 Need to call SSL_ClearSessionCache before calling NSS_Shutdown.
git-svn-id: svn://10.0.0.236/trunk@136013 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:40:52 +00:00
dbaron%dbaron.org
9ec37710b7 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136012 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:40:14 +00:00
dbaron%dbaron.org
8dc4667208 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136011 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:33:27 +00:00
dbaron%dbaron.org
c278517282 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136010 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:19:10 +00:00
dbaron%dbaron.org
a53a959416 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136009 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 21:07:51 +00:00
mikep%oeone.com
741a0ae22e Adding in the ability to publish a calendar directly, and auto publish changes to a calendar.
git-svn-id: svn://10.0.0.236/trunk@136008 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:55:16 +00:00
mikep%oeone.com
ddac14c9c5 Fixing problem so that week view only shows hours when there are events, like day view.
git-svn-id: svn://10.0.0.236/trunk@136007 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:53:22 +00:00
mikep%oeone.com
db769d53dc New build.
git-svn-id: svn://10.0.0.236/trunk@136006 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:50:07 +00:00
dbaron%dbaron.org
67ebaa099d Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136005 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:50:04 +00:00
sspitzer%netscape.com
beb3ab36a6 fix some license-legal foo in nsVCard.cpp, which comes from vcc.c, which originally came
from the IMC.  bug #188221.  rs=bienvenu


git-svn-id: svn://10.0.0.236/trunk@136004 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:46:10 +00:00
dbaron%dbaron.org
9b5780673f Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136003 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:44:25 +00:00
dbaron%dbaron.org
f5b5bace95 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@136002 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:55 +00:00
timeless%mozdev.org
21cc6d3d64 Bug 186727 addressbook protocol handler NewURI should use NS_ADDREF
patch by andersma@luther.edu r=dmose sr=darin


git-svn-id: svn://10.0.0.236/trunk@136001 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:16 +00:00
timeless%mozdev.org
35845ca37c Bug 186726 Icon protocol handler NewURI should use NS_ADDREF
patch by andersma@luther.edu r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@136000 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:15 +00:00
timeless%mozdev.org
504b77136b Bug 186723 external protocol handler NewURI doesn't check to see if SetSpec failed..
patch by andersma@luther.edu r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@135999 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:14 +00:00
timeless%mozdev.org
1209e4b052 Bug 186721 Keyword protocol handler NewURI leaks uri if SetSpec fails
patch by andersma@luther.edu r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@135998 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:13 +00:00
timeless%mozdev.org
3b37fe48cc Bug 186720 xmlterm NewURI should not return null
patch by andersma@luther.edu r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@135997 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 20:32:12 +00:00
dbaron%dbaron.org
daa2fa4b45 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@135995 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 19:51:43 +00:00
dbaron%dbaron.org
0653a5fa91 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@135993 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 19:35:36 +00:00
pkw%us.ibm.com
341a50559d Bug 133754 - nsWindowWatcher.cpp uses AssignWithConversion. This causes
some translated builds to not work correctly when the "Reset Master
Password" button is clicked.
r=smontagu@netscape.com, sr=alecf@netscape.com


git-svn-id: svn://10.0.0.236/trunk@135992 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 19:32:29 +00:00
dbaron%dbaron.org
30879d2c9e Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it's no longer needed. r=timeless sr=jag
git-svn-id: svn://10.0.0.236/trunk@135991 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 19:24:38 +00:00
wtc%netscape.com
ae0fe3d699 1. Use $(CC) (the compiler) to build shared libraries on Solaris. Added
the -z defs linker flag back.
Modified files: configure configure.in lib/ds/Makefile.in
lib/libc/src/Makefile.in pr/src/Makefile.in
2. Let pr/src/md/unix/Makefile.in be responsible for removing the
pr/src/cpu directory because it creates that directory.  Note that the
'clean' target does not remove the directory because it doesn't remove
the .so's either.
Modified files: pr/src/Makefile.in, pr/src/md/unix/Makefile.in


git-svn-id: svn://10.0.0.236/trunk@135990 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 19:19:01 +00:00
despotdaemon%netscape.com
3367390afb Pseudo-automatic update of changes made by wtc@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@135989 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 18:59:19 +00:00
rogerl%netscape.com
461a581b95 Implementing ECMA3 'toObject' semantics.
git-svn-id: svn://10.0.0.236/trunk@135988 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 17:59:00 +00:00
locka%iol.ie
9bf3e06ceb Change registry key const to load browser helper objects from another location instead of using IE's list. Also fix some naming convention. b=171063 r=chak@netscape.com sr=blizzard@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@135987 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 15:35:18 +00:00
neil%parkwaycc.co.uk
b68aa89802 Bug 188038 editor background image pref has wrong default name r=brade sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135986 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 15:23:35 +00:00
neil%parkwaycc.co.uk
bac07a5281 Bug 160924 View Selection Source should check to see if syntax highlighting is enabled r=doron sr=bz
git-svn-id: svn://10.0.0.236/trunk@135985 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 13:45:40 +00:00
bolian.yin%sun.com
d3601836a7 Bug 187209, role for toplevel should be "frame".
patch by simford.dong@sun.com r=bolian. This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@135984 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 10:13:19 +00:00
caillon%returnzero.com
360f61e8a1 184257 - Updating pref callers. r=timeless sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135983 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 08:40:41 +00:00
varga%netscape.com
577850124a Fix for bug 183517. Scrolling in mail folder pane requires you wait for the timer to finish.
r=varga, sr=alecf, patch by stephend


git-svn-id: svn://10.0.0.236/trunk@135982 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 08:34:52 +00:00
caillon%returnzero.com
08334d74ba Updating pref caller. r=timeless sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135981 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 07:30:58 +00:00
hpradhan%hotpop.com
68ec13b0f1 Bug 176051: XMLHttpRequest POST fails to send body when authentication required
r=heikki sr=darin


git-svn-id: svn://10.0.0.236/trunk@135980 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 06:53:19 +00:00
bryner%netscape.com
313a5f3a0b Merging changes from CHIMERA_M1_0_1_BRANCH. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135979 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 06:43:08 +00:00
bryner%netscape.com
eeab335d51 Merging changes from CHIMERA_M1_0_1_BRANCH.
git-svn-id: svn://10.0.0.236/trunk@135978 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 06:33:05 +00:00
edburns%acm.org
f2a2f5ed08 ra=edburns
Author: Tor Norbye <tor@eng.sun.com>

Changes to make it build on Solaris.


git-svn-id: svn://10.0.0.236/trunk@135977 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 05:21:31 +00:00
seawood%netscape.com
2e5040b32d We don't use DEFS.
git-svn-id: svn://10.0.0.236/trunk@135976 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 05:01:41 +00:00
seawood%netscape.com
b4e64fd8d2 We don't use DEFS
git-svn-id: svn://10.0.0.236/trunk@135975 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 04:59:28 +00:00
sspitzer%netscape.com
7800223144 fix for accessibility bug #11407. the first control should have
focus when the import dialog loads.  note, we will get these types
of accessibility fixes for free when we switch the import dialog
over to use <wizard>.  (that's bug #101874)
r/sr=mscott


git-svn-id: svn://10.0.0.236/trunk@135974 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 04:28:35 +00:00
wtc%netscape.com
86d10f26d7 The PTDebug type doesn't need to be defined in optimized builds.
git-svn-id: svn://10.0.0.236/trunk@135971 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 03:28:54 +00:00
bryner%netscape.com
8232690f9a Prevent right and middle click from triggering onclick handlers by making sure NS_EVENT_FLAG_NO_CONTENT_DISPATCH doesn't get inadvertently cleared during dispatch (don't put it into aFlags). r=saari, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@135964 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 03:08:46 +00:00
caillon%returnzero.com
0698189eda Bug 156586.
DOM HTML 2 says HTMLSelectElement.add(elem,before) should throw if before is not one of its descendants.  Make it so.
r=jkeiser sr=jst


git-svn-id: svn://10.0.0.236/trunk@135963 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 03:07:03 +00:00
seawood%netscape.com
c8c6a1870a Pick up mac-specific overlays to make shift-cmd-m work the same in mach-o & cfm builds.
Bug #185268 r=bryner


git-svn-id: svn://10.0.0.236/trunk@135962 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 03:00:18 +00:00
seawood%netscape.com
439c9f503c win32 has snprintf() so add define to avoid libical bustage.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135961 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 02:55:20 +00:00
cltbld%netscape.com
ec34f45783 Adding debug setting. Added --skip-mozilla flag to help debug post-mozilla.pl scripts. (mcafee) r=jj
git-svn-id: svn://10.0.0.236/trunk@135960 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 02:50:57 +00:00
pschwartau%netscape.com
2486f3726f Adding comment.
git-svn-id: svn://10.0.0.236/trunk@135959 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-08 00:41:01 +00:00
rogerl%netscape.com
463882afee Incremental fixes for boolean class testing
git-svn-id: svn://10.0.0.236/trunk@135957 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 23:49:28 +00:00
rbs%maths.uq.edu.au
e58a799bfe fix assertions when manipulating the MathML attribute style sheet, b=188103, r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135956 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 23:19:56 +00:00
alecf%netscape.com
677908c45e another comment typo that was sitting in my tree, again no reviewer...
git-svn-id: svn://10.0.0.236/trunk@135955 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 23:16:05 +00:00
alecf%netscape.com
fc9e3ede71 just fix a comment to reference the right variable
comment only, no reviewers


git-svn-id: svn://10.0.0.236/trunk@135954 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 23:12:37 +00:00
colin%theblakes.com
35c2ce831c Build vsnprintf for those platforms that need it. b=188079. r=cls
git-svn-id: svn://10.0.0.236/trunk@135953 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:56:03 +00:00
alecf%netscape.com
c92aa95274 oops, add ftp files to all targets!
git-svn-id: svn://10.0.0.236/trunk@135952 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:53:17 +00:00
bishakhabanerjee%netscape.com
83644cf086 checking return value of NSS_Shutdown. Bug 171263
git-svn-id: svn://10.0.0.236/trunk@135951 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:53:13 +00:00
bishakhabanerjee%netscape.com
43ef69edd2 checking return value of NSS_Shutdown. Bug 171263
git-svn-id: svn://10.0.0.236/trunk@135950 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:31:36 +00:00
bishakhabanerjee%netscape.com
44597bc93e new revision: 1.19; previous revision: 1.18
git-svn-id: svn://10.0.0.236/trunk@135949 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:29:54 +00:00
cltbld%netscape.com
225f6de273 Commenting out test mode for QATest, we're live now. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135948 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:13:19 +00:00
bishakhabanerjee%netscape.com
8250cb2419 set and exported NSS_STRICT_SHUTDOWN. Bug 171263
git-svn-id: svn://10.0.0.236/trunk@135947 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 22:10:10 +00:00
brendan%mozilla.org
c4c7783814 Don't hold the GC lock when calling the GC callback (186592, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@135946 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 21:56:52 +00:00
alecf%netscape.com
2762345970 fix for bug 170987, CodeWarrior project changes
git-svn-id: svn://10.0.0.236/trunk@135945 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 21:56:49 +00:00
alecf%netscape.com
96dd9afe92 fix for bug 170987 - move the FTP protocol into necko from necko2, so that necko.dll isn't required for embedding
r=gordon, sr=darin


git-svn-id: svn://10.0.0.236/trunk@135944 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 21:56:32 +00:00
colin%theblakes.com
ca9654f343 Make it build on OpenVMS. b=188076. r=cls
git-svn-id: svn://10.0.0.236/trunk@135943 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 21:46:47 +00:00
alecf%netscape.com
df1557b64e adding chrome url parsing stuff to the lite chrome registry, minor tweaks to the embed lite module.
not part of build


git-svn-id: svn://10.0.0.236/trunk@135942 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 21:37:30 +00:00
wtc%netscape.com
41c6e98c5f Use quotes instead of angle brackets to fix classic mac bustage.
git-svn-id: svn://10.0.0.236/trunk@135941 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 20:51:24 +00:00
wtc%netscape.com
632edaed3f A temporary fix for the Solaris gcc build. Removed the -z defs linker flag
because gcc-compiled objects reference symbols not defined in -lc.  The
correct fix is to use gcc to build the shared libraries, as we do on Linux.
Modified Files: configure.in configure


git-svn-id: svn://10.0.0.236/trunk@135940 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 20:49:41 +00:00
mikep%oeone.com
ab05514dd3 Fixing bug 166433, calendar has no icon in Linux.
git-svn-id: svn://10.0.0.236/trunk@135936 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 15:52:05 +00:00
bernd.mielke%snafu.de
6a5e37a38b fix bustage
git-svn-id: svn://10.0.0.236/trunk@135933 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 06:08:23 +00:00
wtc%netscape.com
e5334c1c96 Bug 158704: need to define a stub for PT_FPrintStats in classic NSPR.
git-svn-id: svn://10.0.0.236/trunk@135932 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 05:45:59 +00:00
sfraser%netscape.com
1abb244561 Fix scrollwheel code so that shift-mousewheel scrolls sideways. Bug 170403. r/sr=bryner.
git-svn-id: svn://10.0.0.236/trunk@135931 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 05:35:42 +00:00
bernd.mielke%snafu.de
cdc88ff9b8 fix border draw glitchin border collapse mode caused by an uninitialized variable bug 128930, patch karnaze@netscape.com r=bernd sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135930 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 05:14:54 +00:00
bryner%netscape.com
f0c154b1b1 merging changes from CHIMERA_M1_0_1_BRANCH. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@135929 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 05:04:07 +00:00
wtc%netscape.com
1ac1a4cd07 Bug 158704: PT_FPrintStats also needs to be exported (for the test programs
only).  Define it as a no-op in optimized builds.  Deleted PT_GetStats,
which is not useful.
Modified files: primpl.h, nspr.def, ptio.c


git-svn-id: svn://10.0.0.236/trunk@135927 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 04:52:25 +00:00
jrgm%netscape.com
255f70ec20 Changing value of user_pref 'dom.allow_scripts_to_close_windows' from '2' to 'true' so that it actually takes effect.
git-svn-id: svn://10.0.0.236/trunk@135926 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 04:33:26 +00:00
depstein%netscape.com
c9f4a3195f Added nsIHttpChannel->GetResponseText test. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135925 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 04:26:49 +00:00
bryner%netscape.com
0edc4cf988 Merge changes from CHIMERA_M1_0_1_BRANCH.
git-svn-id: svn://10.0.0.236/trunk@135924 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 02:59:17 +00:00
aaronl%netscape.com
27c1dea4ad Bug 110718. Fix keydead problem during Transferring stage of document load, when the currently visible doc is a zombie. r=bryner, sr=jst. Bug 169767. Tabbing in XUL broken when textfield only tabbing pref is set. r=akkana, sr=bryner. Bug 187303. No keyboard access to URL bar when textfield only tabbing pref is set
git-svn-id: svn://10.0.0.236/trunk@135922 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 02:09:06 +00:00
bzbarsky%mit.edu
74c57d56d0 Fix buld bustage on Irix -- ^M is bad!
git-svn-id: svn://10.0.0.236/trunk@135921 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 01:35:47 +00:00
bzbarsky%mit.edu
c9f654f399 HTMLImageElement.height/.width access needs to flush before getting the frame
sizes.  Bug 157978, r=caillon, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135920 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 01:33:12 +00:00
bzbarsky%mit.edu
6f77aecc51 fix a crash that could happen if a child import met with an error (eg failed to
open a channel).  Bug 186606, r=sicking, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135919 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 01:13:07 +00:00
kaie%netscape.com
0c1d5a1bc2 b=184940 Enable additional SSL ciphers, add configuration UI
r=javi sr=jaggernaut


git-svn-id: svn://10.0.0.236/trunk@135917 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 00:58:24 +00:00
bzbarsky%mit.edu
4f71cabdd3 asserting that a PRUint32 is >= 0 is silly. Bug 187002, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135915 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 00:37:19 +00:00
cltbld%netscape.com
2490ef2256 Fixing qatest a bit. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135914 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-07 00:33:31 +00:00
wtc%netscape.com
d9c6fe3fae Bug 158704: 1. Added comments explaining why we need to install an
additional copy of libnspr_flt4.so in pr/src/cpu/sparcv8plus if the
libnspr4.so installed in dist/lib is a symbolic link.
Modified files: pr/src/Makefile.in, pr/src/md/unix/Makefile.in
2. Made the 'release' and 'real_install' makefile targets install
libnspr_flt4.so in the cpu/sparcv8plus subdirectory of lib.
Modified files: config/rules.mk pr/src/md/unix/Makefile.in


git-svn-id: svn://10.0.0.236/trunk@135913 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 23:42:06 +00:00
wtc%netscape.com
d26e21b83e Bug 158704: removed the workaround of using the non-existent pkg/Makefile
to cause AC_OUTPUT to create the pkg directory.  Create it explicitly.


git-svn-id: svn://10.0.0.236/trunk@135912 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 23:34:47 +00:00
mstoltz%netscape.com
8d77b51d16 Bug 162584: don't linkify javascript: and data: URLs in about:cache-entry. r=gordon, sr=darin
git-svn-id: svn://10.0.0.236/trunk@135911 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 23:34:43 +00:00
aaronl%netscape.com
3b5f31e394 Bug 187575. Context menus should not eat clicks outside themselves (in Windows). r=dean, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@135910 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 23:14:59 +00:00
despotdaemon%netscape.com
efe35a5991 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135907 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 22:57:23 +00:00
jst%netscape.com
6f3f0801da Fixing bug 158370. Newly created windows not fully usable in JS when running in some embedded apps. r=harishd@netscape.com, sr=peterv@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135906 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 22:37:54 +00:00
kaie%netscape.com
7e6de39a8e b=177260 Fix known leaks in PSM, track blocking PSM UI, track open SSL sockets
r=javi sr=darin


git-svn-id: svn://10.0.0.236/trunk@135905 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 22:23:49 +00:00
pschwartau%netscape.com
cfb190d2cd Initial add. Regression test for bug 187133.
git-svn-id: svn://10.0.0.236/trunk@135904 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 22:18:34 +00:00
wtc%netscape.com
2f2e3e4bd3 Bug 183907: increase the default and minimum thread stack size to 128K on
AIX because bos.rte.libc 4.3.3.88 includes a fix for a security bug that
greatly increases the amount of stack space used when calling functions
like gethostbyname.  Thanks to Philip K. Warren <pkw@us.ibm.com> for the
fix.


git-svn-id: svn://10.0.0.236/trunk@135902 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 22:13:28 +00:00
sicking%bigfoot.com
4133912a4f fix uninitialized-variable-warning.
b=186835 r=glazman sr=jst


git-svn-id: svn://10.0.0.236/trunk@135901 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 21:47:24 +00:00
seawood%netscape.com
430d9fa86e Removing dos-newlines.
Fixing IRIX tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135900 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 21:43:09 +00:00
aaronl%netscape.com
63217187c8 Bug 179567. Backing out, causes menu regressions.
git-svn-id: svn://10.0.0.236/trunk@135899 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 21:15:20 +00:00
seawood%netscape.com
fea39ddc23 Backout previous checkin
git-svn-id: svn://10.0.0.236/trunk@135898 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 20:54:51 +00:00
varga%netscape.com
174ade4df7 Wallpaper fix for bug 84187.
r=waterson,sr=jag
original patch by waterson


git-svn-id: svn://10.0.0.236/trunk@135897 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 20:36:50 +00:00
mkaply%us.ibm.com
40651bdc78 #183100
r=mkaply, sr=blizzard (platform specific code)
OS/2 only - use both 96 and 120 dpi bitmap fonts to get better granularity


git-svn-id: svn://10.0.0.236/trunk@135896 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 20:19:43 +00:00
timeless%mozdev.org
7d8b306cdf Bug 187759 opening menu with full-page (quicktime, flash) plugin crashes in [@ nsMenuBarFrame::SetActive ]
r=aaronl sr=bz


git-svn-id: svn://10.0.0.236/trunk@135895 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 20:12:04 +00:00
cltbld%netscape.com
4192554900 Condensing HTML table, for tbox uses. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135894 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 19:48:10 +00:00
wtc%netscape.com
6a4400f0c5 Bug 158704: should use GARBAGE instead of ALL_TRASH to specify that
$(MAPFILE) should be removed by "make clean".  In pr/src, the "cpu"
directory needs to be removed if NSDISTMODE is not "copy".
Modified Files:
	pr/src/Makefile.in lib/ds/Makefile.in lib/libc/src/Makefile.in


git-svn-id: svn://10.0.0.236/trunk@135893 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 19:43:48 +00:00
timeless%mozdev.org
585833b462 Bug 187869 long_list.cgi output includes <font ="+3"> before each bug summary
r=burnus a=justdave


git-svn-id: svn://10.0.0.236/trunk@135892 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 18:56:28 +00:00
mikep%oeone.com
af8ffd91c3 Fixing problem with double clicking on events from last month.
git-svn-id: svn://10.0.0.236/trunk@135891 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 18:38:48 +00:00
mikep%oeone.com
2d31f3f3f7 Fixing so that clicking on Go To URL button in event dialog opens a new tab, or it opens a window that is not modal, bug 160225.
git-svn-id: svn://10.0.0.236/trunk@135890 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 16:37:18 +00:00
mikep%oeone.com
1f38aefd43 Fixing event dialog so that start and end time display correctly when adjusted. bug 183081 inspired this.
git-svn-id: svn://10.0.0.236/trunk@135889 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 15:54:49 +00:00
leaf%mozilla.org
2f530b02d7 Automated update
git-svn-id: svn://10.0.0.236/trunk@135888 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 15:30:38 +00:00
cbiesinger%web.de
e8c94a9351 89203 r=cls remove --disable-bidi and always enable bidi
git-svn-id: svn://10.0.0.236/trunk@135887 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 15:22:06 +00:00
sicking%bigfoot.com
a17e5bc209 Comment-removal, part of the patch for bug 186835.
git-svn-id: svn://10.0.0.236/trunk@135886 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 15:08:49 +00:00
sicking%bigfoot.com
34e90f95bb Bug 186835: Hold off notifying that the transformation is finished until all stylesheets are loaded.
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@135885 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 14:55:13 +00:00
locka%iol.ie
083680e2cb Remove StdAfx.cpp / h. Checked on behalf of steve--w@dircon.co.uk r/a=adamlock@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135884 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 13:50:44 +00:00
bryner%netscape.com
a95559dfb1 Meant to remove this file too. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135882 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 08:56:58 +00:00
bryner%netscape.com
f353a1939e Removing another unused dlldeps.cpp file. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135881 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 08:42:13 +00:00
gerv%gerv.net
b9fb21aad8 Bug 186920 - Loosen checking for Windows ME user-agents. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@135880 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 08:39:16 +00:00
bryner%netscape.com
7942f9189d Removing unused file. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135879 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 08:11:09 +00:00
gerv%gerv.net
85270d5c9a Bug 181047 - Change non-output templates to have a ctype of "none". Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@135878 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 07:56:28 +00:00
gerv%gerv.net
49e4a82a1a Bug 187837 - Unify showing and editing of quips. Patch by gerv; r=timeless, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@135877 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 07:53:15 +00:00
bryner%netscape.com
4f009c46df Remove nsRadioControlGroup, inadvertently left here (bug 187867). r=cls.
git-svn-id: svn://10.0.0.236/trunk@135876 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 07:35:09 +00:00
bryner%netscape.com
e7a6c171fe Second try for bug 187732. Post-process component libraries on OS X using nmedit to control which symbols are exported. r=cls.
git-svn-id: svn://10.0.0.236/trunk@135875 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 07:13:49 +00:00
bryner%netscape.com
f1b08609c2 removing unused file. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135874 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 06:46:59 +00:00
bryner%netscape.com
795c7fbcfd Removing unused file. There's no reason the content dll would need to export these functions.
git-svn-id: svn://10.0.0.236/trunk@135873 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 06:28:13 +00:00
bryner%netscape.com
a74eef4c41 removing dead/unused file. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135872 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 06:14:31 +00:00
rogerl%netscape.com
6d5c46a339 More boolean class fun.
git-svn-id: svn://10.0.0.236/trunk@135871 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 05:58:07 +00:00
leaf%mozilla.org
f8b543dc9a Automated update
git-svn-id: svn://10.0.0.236/trunk@135870 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 02:00:09 +00:00
bryner%netscape.com
d5b8abe622 backing out configure change for bug 187732. i had used an option that only works on the new december 2002 developer tools.
git-svn-id: svn://10.0.0.236/trunk@135869 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 01:50:38 +00:00
timeless%mozdev.org
88cfb5d1d9 Bug 185707 [Qt] Get printing working in Qt toolkit
patch by Roland.Mainz@informatik.med.uni-giessen.de r=timeless sr=blizzard (ports)


git-svn-id: svn://10.0.0.236/trunk@135868 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 01:34:47 +00:00
timeless%mozdev.org
41e9ebdd31 Bug 187748 Persist screen position and size for Manage Cookies dialog
patch by thieleke@yahoo.com r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@135867 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 01:11:06 +00:00
leaf%mozilla.org
1119e41d44 Automated update
git-svn-id: svn://10.0.0.236/trunk@135866 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 00:45:07 +00:00
bryner%netscape.com
6f2ab9f4c5 Use the linker option to control which symbols are exported for Mach-O builds (only export NSGetModule from component libraries). Bug 187732, r=cls.
git-svn-id: svn://10.0.0.236/trunk@135865 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-06 00:40:49 +00:00
ian%hixie.ch
e376750c1d Escape newlines in keys. Explicitly mention empty arrays and hashes. Quote string values. Support undefined values.
git-svn-id: svn://10.0.0.236/trunk@135864 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 23:47:15 +00:00
bzbarsky%mit.edu
1f8a10d387 Re-landing fix for bug 182124 a bit at a time to narrow down the source of the
perf impact. r=rjc, sr=darin


git-svn-id: svn://10.0.0.236/trunk@135863 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 20:19:19 +00:00
bzbarsky%mit.edu
223f64687a bug 187428 -- cursor should just inherit down to images within links instead of
being set explicitly.  r+sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@135862 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 19:05:14 +00:00
bzbarsky%mit.edu
e8d6ddcbea Re-landing fix for bug 182124 a bit at a time to narrow down the source of the
perf impact. r=rjc, sr=darin


git-svn-id: svn://10.0.0.236/trunk@135861 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 19:00:18 +00:00
bzbarsky%mit.edu
2cf8d6c802 Re-relanding part of the fix for bug 182124 to narrow down the source of the
perf impact.  r=rjc, sr=darin


git-svn-id: svn://10.0.0.236/trunk@135859 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 16:26:59 +00:00
bernd.mielke%snafu.de
c5c4b69893 split further fixed and percent row height calculation, bug 153995 patch by Rick.Ju@sun.com r=karnaze sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135858 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 14:16:58 +00:00
bryner%netscape.com
f25b963a7f fix static build bustage on solaris (bug 187755). patch by Roland.Mainz@informatik.med.uni-giessen.de, r/sr=me.
git-svn-id: svn://10.0.0.236/trunk@135857 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 09:16:14 +00:00
hpradhan%hotpop.com
70be0564fa bug 186509 r=caillon sr=jst
git-svn-id: svn://10.0.0.236/trunk@135856 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 06:34:53 +00:00
bryner%netscape.com
cc88f35724 Removing this file which has been dead for quite awhile. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135855 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 05:41:15 +00:00
bryner%netscape.com
2f249a5562 Removing a long-dead file. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135854 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 05:38:27 +00:00
bzbarsky%mit.edu
1852e5070f Make more inputs use border-box sizing in standards mode, since that's what IE6
does in standards mode.  Keep quirks sizing as it was. Bug 184478, r=jkeiser,
sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@135853 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 05:18:50 +00:00
bzbarsky%mit.edu
8d092fcca8 ReResolveStyleContext needs to deal with :before/:after pseudos correctly. Bug
126072, r=dbaron, sr=roc+moz.  Also fixes bug 141259 (incorrect warnings about
style tree integrity).


git-svn-id: svn://10.0.0.236/trunk@135852 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 05:05:17 +00:00
bzbarsky%mit.edu
ddf6bf65b0 Change the algorithm used to darken text when printing a tad to produce better
results.  Bug 141232, r/sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@135851 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 04:52:27 +00:00
bzbarsky%mit.edu
96a4fbb313 Resizer widget should only use moz-appearance styling in the classic theme.
Icon for modern by Grey Hodge <jesus_x@mozillanews.org>, other changes by Tim
Hill <tim@prismelite.com>, r=jag, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@135850 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-05 04:36:26 +00:00
timeless%mozdev.org
4960240c75 Bug 187529 jsd init's a jscontext and doesn't release it (caught by res->input leak)
r=rginda sr=bryner


git-svn-id: svn://10.0.0.236/trunk@135849 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 22:47:44 +00:00
samuel%sieb.net
a243c0beaf Bug 176768 - XML-RPC: onStopRequest signature wrong
r=heikki
sr=darin


git-svn-id: svn://10.0.0.236/trunk@135848 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 19:07:37 +00:00
jake%bugzilla.org
0366384b18 We use the GD::Graph perl module, not GD::Chart (which doesn't exist)
git-svn-id: svn://10.0.0.236/trunk@135847 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 18:35:24 +00:00
bernd.mielke%snafu.de
01e1c41113 fix an uninitialized warning, bug 155539 patch by karnaze@netscape.com r=alexsavulov sr=kin
git-svn-id: svn://10.0.0.236/trunk@135845 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 10:49:50 +00:00
despotdaemon%netscape.com
2865e4f9e6 Pseudo-automatic update of changes made by hpradhan@hotpop.com.
git-svn-id: svn://10.0.0.236/trunk@135844 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 05:03:10 +00:00
wtc%netscape.com
f38ca95e78 Bug 158704: merged the Solaris packaging stuff onto the trunk. The three
shared libraries are built with mapfiles that specify versioned export
symbols.  We use the $ORIGIN and $ISALIST linker keywords to specify the
location of the ultrasparc filtee.


git-svn-id: svn://10.0.0.236/trunk@135843 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 02:14:13 +00:00
rogerl%netscape.com
a932bb97cf Bug fixes, realigning StringAtom use.
git-svn-id: svn://10.0.0.236/trunk@135842 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-04 01:20:59 +00:00
harishd%netscape.com
ba933c6526 Avoid the call to OpenHead and CloseHead with incorrect parserNode. b=182021, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135841 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 23:17:22 +00:00
rogerl%netscape.com
e1cb593313 Adding defaultValue and typeof. Build fixes in regexp. Updated project
for new files.


git-svn-id: svn://10.0.0.236/trunk@135840 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 23:14:10 +00:00
wtc%netscape.com
e14b8f32b4 Bug 158704: the counter, ordered lock, and trace symbols should be defined
in optimized builds as well.
Modified files: prcountr.h prolock.h prtrace.h prcountr.c prolock.c
prtrace.c


git-svn-id: svn://10.0.0.236/trunk@135839 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 23:09:17 +00:00
wtc%netscape.com
2e088382b2 I forgot to make version NSPR_4.2 depend on version NSPR_4.0.
git-svn-id: svn://10.0.0.236/trunk@135838 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 22:22:47 +00:00
wtc%netscape.com
a0936b7c6f Bug 158704: added nspr.def, plds.def, and plc.def to the tip (pre 4.3).
git-svn-id: svn://10.0.0.236/trunk@135837 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 22:14:14 +00:00
harishd%netscape.com
1b51bff258 Convert CRLF or CR to LF when collecting skippedcontent. b=159615, r=glazman, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135836 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 20:49:07 +00:00
mikep%oeone.com
129eb139eb Fixing so that selected calendar is selected in new event dialog.
git-svn-id: svn://10.0.0.236/trunk@135835 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 20:32:15 +00:00
kairo%kairo.at
e6ced14fde change all localeVersion strings, as well as brand.dtd/region.dtd to 1.3b; bug 185698, r=tao, sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@135834 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:57:47 +00:00
seawood%netscape.com
8cfe0f9353 Backing out previous changes. $(call...) is only supported by gmake >= 3.78.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135833 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:56:56 +00:00
mikep%oeone.com
8cb033ae2c Cleaning up by removing unused code.
git-svn-id: svn://10.0.0.236/trunk@135832 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:32:30 +00:00
mikep%oeone.com
bcfea0f56a Fixing bug 179707, problem with showing error message when clicking on repeat.
git-svn-id: svn://10.0.0.236/trunk@135831 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:32:05 +00:00
harishd%netscape.com
21bb532f1a Handle unclosed and malformed TITLE tag. b=42945, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135830 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:21:20 +00:00
mikep%oeone.com
c055859066 Localizing the first day of the week, as per bug 186569.
git-svn-id: svn://10.0.0.236/trunk@135829 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:12:44 +00:00
mikep%oeone.com
f53917ef47 Renaming key bindings, as per bug 182966.
git-svn-id: svn://10.0.0.236/trunk@135828 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 19:05:12 +00:00
mikep%oeone.com
ff056ba324 Adding in username and password for remote files.
git-svn-id: svn://10.0.0.236/trunk@135827 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 18:30:20 +00:00
mikep%oeone.com
b566bce419 Adding in check for clientX when checking box for calendars, so clicking on row doesn't make it change states.
git-svn-id: svn://10.0.0.236/trunk@135826 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 18:07:04 +00:00
mikep%oeone.com
72b28dae91 Fixing bug 181517, adding in confirmation of deleting calendar, and adding ability to not delete calendar file.
git-svn-id: svn://10.0.0.236/trunk@135825 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 18:01:29 +00:00
mikep%oeone.com
224ff8415d Moving tempIcal.ics file to Calendar/ directory under profile, bug 181443.
git-svn-id: svn://10.0.0.236/trunk@135824 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 17:40:18 +00:00
despotdaemon%netscape.com
083abdcfac Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135823 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 17:34:35 +00:00
mikep%oeone.com
46bede2d8f Fixing function name after changing pref.
git-svn-id: svn://10.0.0.236/trunk@135822 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 17:33:29 +00:00
mikep%oeone.com
ba93ab8baa Adding in text strings for import export.
git-svn-id: svn://10.0.0.236/trunk@135821 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 17:33:04 +00:00
mikep%oeone.com
d82f32f2ce Moving strings to properties files for importExport.
git-svn-id: svn://10.0.0.236/trunk@135820 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 16:29:22 +00:00
mikep%oeone.com
178e64c015 Fixing bug 181312, default file name now given after choosing a file.
git-svn-id: svn://10.0.0.236/trunk@135819 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 16:09:33 +00:00
mikep%oeone.com
cd26a381ba Fixing bug 184808, don't assume "Local Folders" as text string. Get the value from the properties file.
git-svn-id: svn://10.0.0.236/trunk@135818 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 16:02:33 +00:00
dbradley%netscape.com
d5e02d74fb Bug 184491 - Security Manager blocks invoking methods on some IDispatch based objects. r=adamlock, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135817 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 15:48:20 +00:00
mikep%oeone.com
2183848740 Adding in ability to hold down CTRL key to copy event when dragging and dropping it in month view, bug 169109.
git-svn-id: svn://10.0.0.236/trunk@135816 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 15:20:10 +00:00
mikep%oeone.com
806f749fa7 Adding in time before text in month view.
git-svn-id: svn://10.0.0.236/trunk@135815 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 14:40:42 +00:00
mikep%oeone.com
164f58e121 Adding in repeat number of times, bug 167553.
git-svn-id: svn://10.0.0.236/trunk@135814 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 14:37:33 +00:00
neil%parkwaycc.co.uk
a8694b0ad9 Bug 80970 offline indicator for history not working patch by r.pronk@its.tudelft.nl r=me sr=alecf
git-svn-id: svn://10.0.0.236/trunk@135813 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 13:51:16 +00:00
seawood%netscape.com
702fda2b66 Fix clobber build bustage
git-svn-id: svn://10.0.0.236/trunk@135812 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 11:11:31 +00:00
seawood%netscape.com
e64cd8cc6d Bah. I'm not fighting with OS/2 again.
git-svn-id: svn://10.0.0.236/trunk@135811 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 10:33:46 +00:00
despotdaemon%netscape.com
5fa5e0a14c Pseudo-automatic update of changes made by neil@parkwaycc.co.uk.
git-svn-id: svn://10.0.0.236/trunk@135810 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 08:59:17 +00:00
seawood%netscape.com
0a7c7a98f9 nobrainer changes while thinking about mingw support
Bug #134113 r=dmose


git-svn-id: svn://10.0.0.236/trunk@135809 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 08:58:59 +00:00
seawood%netscape.com
30c659142a Do not declare empty EXPORTS variables as it breaks 'make install'
Thanks to Aleksey Nogin <mozilla-bugs@nogin.org> for the patch.
Bug #185681 r=cls


git-svn-id: svn://10.0.0.236/trunk@135808 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 08:00:49 +00:00
seawood%netscape.com
343f225096 Add beos & mac classic defines for the gre.conf.
Bug #185681 r=dougt


git-svn-id: svn://10.0.0.236/trunk@135806 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 01:39:38 +00:00
dougt%netscape.com
d0ace2b8dc Fixing OS2 build. XP_PC -> XP_WIN32
git-svn-id: svn://10.0.0.236/trunk@135805 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 01:39:01 +00:00
aaronl%netscape.com
ccc82b5818 Bug 179567. Cannot dismiss menu by clicking on menu bar. r=pinkerton, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@135804 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 01:15:25 +00:00
aaronl%netscape.com
0f3bd51459 Bug 132489. Caret should stop blinking when user enters menus. r=kyle, sr=bryner.
git-svn-id: svn://10.0.0.236/trunk@135803 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 01:14:00 +00:00
rogerl%netscape.com
6699181f47 Added boolean class, fixing bugs.
git-svn-id: svn://10.0.0.236/trunk@135802 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 00:49:29 +00:00
ian%hixie.ch
e6ec1b20e3 Oops, forgot to escape the backslashes when I pasted my TemplateToolkit file into Perl.
git-svn-id: svn://10.0.0.236/trunk@135801 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 00:47:32 +00:00
ian%hixie.ch
7f09c2f1fb Switch to a hopefully much faster debug.dumpVars template
git-svn-id: svn://10.0.0.236/trunk@135800 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-03 00:24:27 +00:00
cltbld%netscape.com
b891c20dab Added express mode for just printing table out. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135799 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 23:23:29 +00:00
dougt%netscape.com
e6cf660ddf Adding generic support for the GRE in the xpcom glue. r=chak, sr=darin, b=185681
git-svn-id: svn://10.0.0.236/trunk@135798 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 23:09:30 +00:00
despotdaemon%netscape.com
f3c6eb852a Pseudo-automatic update of changes made by dmose@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135797 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 22:57:49 +00:00
ian%hixie.ch
194002b5b9 Three new filters: pad left, pad right, and indent lines, so that the first line can be indented a different amoun.
git-svn-id: svn://10.0.0.236/trunk@135796 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 22:32:42 +00:00
miodrag%netscape.com
25b852aa24 Incorporated fix to printEntryStart() by Jeff.Gay@gfnews.net
git-svn-id: svn://10.0.0.236/trunk@135794 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 22:04:46 +00:00
bryner%netscape.com
cc0c64fb66 Fix phoenix os/2 bustage (bug 187485), checking in for pedemont@us.ibm.com.
git-svn-id: svn://10.0.0.236/trunk@135793 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 22:02:21 +00:00
ian%hixie.ch
a3008e0a68 Turns out sprintf() is redundant with the format filter, so removing it.
git-svn-id: svn://10.0.0.236/trunk@135792 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 21:47:12 +00:00
cbiesinger%web.de
fdf19ebdf9 187309 r=dougt sr=bzbarsky convert out param of nsIProcess::Run to a return value
git-svn-id: svn://10.0.0.236/trunk@135791 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 21:00:31 +00:00
edburns%acm.org
8a064f3f42 gtk
git-svn-id: svn://10.0.0.236/trunk@135789 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:43:52 +00:00
ian%hixie.ch
ce64a85119 Make methodMissing use syntaxError instead of error(). Remove all the user level, error reporting and fatal handlers nonsense. Remove the debug() method. Update error() and assert() to be simply quick shortcuts to raising exceptions, using deep magic to make the stacktraces look good.
git-svn-id: svn://10.0.0.236/trunk@135788 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:39:49 +00:00
edburns%acm.org
10769a25c7 Changes to produce proper XPI on GNU/Linux
git-svn-id: svn://10.0.0.236/trunk@135787 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:37:53 +00:00
ian%hixie.ch
e59ea54e7a Propagate PLIF::Exceptions through TemplateToolkit code without stringifying them.
git-svn-id: svn://10.0.0.236/trunk@135786 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:34:27 +00:00
ian%hixie.ch
77d0568da4 Make report also return the exception, so it can be reported and raised at the same time (useful for debugging). Make reraising of exceptions not wipe out the original stacktrace. Clean up stringification: Cope with calls from eval '...' blocks and sub { ... } blocks, also dump the environment, don't stringify object arguments, escape newlines in string arguments.
git-svn-id: svn://10.0.0.236/trunk@135785 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:33:10 +00:00
despotdaemon%netscape.com
886edf8c05 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135784 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 20:23:58 +00:00
despotdaemon%netscape.com
5c0b28f1e4 Pseudo-automatic update of changes made by gayathrik00@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@135783 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 19:14:11 +00:00
despotdaemon%netscape.com
fc86bef0e2 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135782 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 19:04:37 +00:00
despotdaemon%netscape.com
1b988c58b8 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135781 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 19:01:27 +00:00
despotdaemon%netscape.com
b4408fc238 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135780 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 18:57:26 +00:00
preed%sigkill.com
550dc1e649 Bumping the rev number for 2.17.3 release.
git-svn-id: svn://10.0.0.236/trunk@135778 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 18:04:09 +00:00
jake%bugzilla.org
eae26c6fad Recomiple the docs for the 2.17.3 release
git-svn-id: svn://10.0.0.236/trunk@135777 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 17:29:39 +00:00
jake%bugzilla.org
3c288ce12a Link to report.cgi instead of reports.cgi (more stuff available from the former, including a link to the later).
git-svn-id: svn://10.0.0.236/trunk@135776 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 17:25:00 +00:00
jake%bugzilla.org
e7b78b5271 Bug 186672 - Update security docs to warn about editor backups and bring them up to date.
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135775 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 17:23:48 +00:00
justdave%syndicomm.com
6742286c4f spelling corrections and updating the sanity check section and a few requirements.
git-svn-id: svn://10.0.0.236/trunk@135774 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 17:21:50 +00:00
timeless%mozdev.org
813717c97f Bug 187441 URLs not HTML encoded in output
git-svn-id: svn://10.0.0.236/trunk@135771 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 17:07:34 +00:00
mikep%oeone.com
c346dcaa81 Fixing text label for filename prefs, bug 187104, patch #110325.
git-svn-id: svn://10.0.0.236/trunk@135767 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 15:01:48 +00:00
timeless%mozdev.org
3ca2f6f88d Bug 176100 tabbing out of file upload form control highlights text area contents
patch by neil@parkwaycc.co.uk r=jkeiser sr=bryner


git-svn-id: svn://10.0.0.236/trunk@135766 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 14:25:10 +00:00
timeless%mozdev.org
154384b819 Bug 136919 TestColorNames is broken
r=roc+moz sr=darin


git-svn-id: svn://10.0.0.236/trunk@135765 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 12:47:05 +00:00
bernd.mielke%snafu.de
80b690ea77 documentation fix, bug 187257 r=karnaze sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135764 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 10:23:08 +00:00
edburns%acm.org
13e8a1548b *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@135762 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 01:47:31 +00:00
edburns%acm.org
733478e13d Set the path.
git-svn-id: svn://10.0.0.236/trunk@135761 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 01:42:40 +00:00
rpotts%netscape.com
a4b92f22a5 bug #169583. missing file from earlier patch...
git-svn-id: svn://10.0.0.236/trunk@135760 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 01:21:33 +00:00
rpotts%netscape.com
0da5b28804 bug #179168 (r=dougt, sr=darin). Get TestSocketInput running again...
git-svn-id: svn://10.0.0.236/trunk@135759 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 01:14:40 +00:00
rpotts%netscape.com
77453e646a bug #179166 (sr=darin). TestSocketTransport crashes because of a null eventQ
git-svn-id: svn://10.0.0.236/trunk@135758 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-02 01:13:15 +00:00
dbaron%fas.harvard.edu
ffb8d9cca7 Change my email address from dbaron@fas.harvard.edu to dbaron@dbaron.org. Comment changes only.
git-svn-id: svn://10.0.0.236/trunk@135757 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 23:53:20 +00:00
cbiesinger%web.de
6906ff33ec 187130 r=mkaply sr=bz remove #ifdef XP_OS2 in an os/2 specific file
git-svn-id: svn://10.0.0.236/trunk@135755 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 21:20:37 +00:00
nboyd%atg.com
e0e95edda1 Update for RC2
git-svn-id: svn://10.0.0.236/trunk@135754 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 20:17:17 +00:00
bienvenu%netscape.com
ef31da059b fix for crash in bug 186658, make GetServer return an error when it returns a null server, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@135753 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 18:05:04 +00:00
cbiesinger%web.de
1098bf03f6 102848 r=ducarroz sr=bienvenu remove (was: in subject line
git-svn-id: svn://10.0.0.236/trunk@135752 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 17:50:27 +00:00
timeless%mozdev.org
bea200009e Bug 186683 ###!!! ASSERTION: |First()| on an empty string: 'Length()>0', file i:/build/mozilla/string/src/nsAString.cpp, line 136
r=aaronl sr=bz


git-svn-id: svn://10.0.0.236/trunk@135751 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 07:59:38 +00:00
nicolson%netscape.com
2c53a77295 Upgrade version from 3.2 to 3.3.
Uncomment MessageDigest implementations (doh!).


git-svn-id: svn://10.0.0.236/trunk@135748 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 02:58:22 +00:00
nicolson%netscape.com
cf0ea2d2f5 Add DigestTest to all.pl.
Make DigestTest and SigTest return nonzero error code on failure.


git-svn-id: svn://10.0.0.236/trunk@135747 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-01 02:57:50 +00:00
ian%hixie.ch
823749eae6 Add some singulars up at the mulit-year level.
git-svn-id: svn://10.0.0.236/trunk@135745 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 23:36:59 +00:00
ian%hixie.ch
a94380c4e3 Nicer alignment.
git-svn-id: svn://10.0.0.236/trunk@135744 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 23:23:12 +00:00
igor%mir2.org
3262cffc0f Deprecating ClassOutput in favor of ClassRepository and Context methods to access ClassNameHelper functionality in favor of directly calling ClassNameHelper methods. For that I changed ClassNameHelper from interface to abstract class and added ClassNameHelper.get(Context cx) method to get name helper object that is used for the given Context object.
git-svn-id: svn://10.0.0.236/trunk@135737 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 18:21:32 +00:00
jake%bugzilla.org
72e481d6a7 Bug 186673 - Updating section on Red Hat Bugzilla and adding last updated lines to each of the variants.
Wording reviewed by dkl@redhat.com
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135736 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 17:45:37 +00:00
jake%bugzilla.org
a0534bd4ee Bug 186962 - Update minimum versions of required software and move those versions to be ENTITY's
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135735 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 17:41:21 +00:00
bratell%lysator.liu.se
7d0ed2ce90 Bug 170160 - don't use sprintf for simple tasks as converting a number to a string. It's expensive and give you an ASCII string when a Unicode one is required. r=bryner@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@135732 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 12:50:10 +00:00
seawood%netscape.com
72ec126011 Return proper version number from mozilla-config --version
Bug #185551


git-svn-id: svn://10.0.0.236/trunk@135731 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 11:05:47 +00:00
igor%mir2.org
b495cd03a1 Allow application to customize class loader used for loading generated code.
For that I added new method createClasssLoader to Context, which by default returns new instance of DefiningClassLoader and changed the code to use this method instead of creating DefiningClassLoader directly. I moved DefiningClassLoader to org.mozilla.javascript package so core Rhino classes would not depend on org.mozilla.classfile package. I also changed SecurityController.createClasssLoader to take additional parentLoader argument to explicitly specify which class loader should be parent for generated code.


git-svn-id: svn://10.0.0.236/trunk@135730 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 09:42:42 +00:00
jake%bugzilla.org
53f91fce5c Bug 180005 - Bring the FAQ up to date.
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135728 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 03:05:07 +00:00
robin.lu%sun.com
33cccb5885 Bug 186621 [gtk2] after click on plugin, mozilla can't get focus anymore.
Dispatchactive after button press if we does not have focus.
patched by robin.lu@sun.com r=blizzard


git-svn-id: svn://10.0.0.236/trunk@135726 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 01:50:40 +00:00
bryner%netscape.com
48b399202c Removing a couple of dead files.
git-svn-id: svn://10.0.0.236/trunk@135724 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-31 00:55:12 +00:00
bugreport%peshkin.net
36136c01a6 Bug 178230 Update documentation for Entrprise Groups
r=Jake,preed
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135715 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 22:15:21 +00:00
sfraser%netscape.com
7b14567be1 Fix the Downlaod Manager to not be totally hoarked on Mac, by not using hiddenWindow.xul as an overlay, and fixing mismatches between persistent descriptors and full paths in the code. r=ccarlen, sr=jag
git-svn-id: svn://10.0.0.236/trunk@135714 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 22:06:13 +00:00
jaggernaut%netscape.com
1a620efcdb Remove dead file (themes/modern/navigatorBindings.xml) from build. r=mozbot, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@135713 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 21:56:02 +00:00
cbiesinger%web.de
d61c794067 77345 patch by Erich.Iseli@Iseli.org r=sgehani,rjc sr=jag
browser window can't display too many multiple search engines at once


git-svn-id: svn://10.0.0.236/trunk@135712 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 21:42:19 +00:00
igor%mir2.org
2ec8fc7016 Eliminating calls to Thread.getContextClassLoader().
From my mail to Norris Boyd:

When considering http://bugzilla.mozilla.org/show_bug.cgi?id=166530 I realized that my 2 years old suggestion to use Thread.getContextClassLoader() in org.mozilla.classfile.DefiningClassLoader was wrong, as it does not follow class loader chain pattern Rhino embeddings can use. Moreover, it is wrong to use Thread.getContextClassLoader() when searching for Rhino classes as if Rhino is available via the system class loader and an application uses its copy from another loader, Thread.getContextClassLoader() would return incompatible class while simple Class.forName() would do proper job of loading the requested class from a loader of Class.forName() caller.

The only place where Thread.getContextClassLoader() can be useful is when searching for classes in NativeJavaPackage, but even there with a new option to use Package with an explicit class loader argument it is not necessary as one can write in a script
Packages(java.lang.Thread.contextClassLoader) to get necessary behavior.


git-svn-id: svn://10.0.0.236/trunk@135711 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 18:22:58 +00:00
cbiesinger%web.de
2ff4bc0f76 to clarify: my last checkin was not part of any normal build
git-svn-id: svn://10.0.0.236/trunk@135710 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 17:44:22 +00:00
cbiesinger%web.de
5f63961f55 186480 r=timeless rs=blizzard (ports code) [qt] toolbar does not look correct
git-svn-id: svn://10.0.0.236/trunk@135709 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 17:40:11 +00:00
depstein%netscape.com
1b502d32b8 Added some more nsIHttpChannel attribute tests. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135708 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 08:52:13 +00:00
ian%hixie.ch
a55e66c036 Replace Carp.pm with Exception.pm so that we have a consistent interface to exceptions and errors. Also add a syntaxError check in AUTOLOAD to make sure we don't call it when we shouldn't.
git-svn-id: svn://10.0.0.236/trunk@135707 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 08:04:29 +00:00
ian%hixie.ch
c73fee76ea Neaten up the arguments display: limit the depth, allow integers to be unquoted as well as floats, crop long strings.
git-svn-id: svn://10.0.0.236/trunk@135706 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 08:02:40 +00:00
ian%hixie.ch
8265b3ec37 Remove bogus argument, and add error checking code to catch similar errors in future
git-svn-id: svn://10.0.0.236/trunk@135704 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 07:52:19 +00:00
ian%hixie.ch
da7a28fc8e Export the syntaxError function, which reports a syntax error where the caller was invoked.
git-svn-id: svn://10.0.0.236/trunk@135698 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 07:30:43 +00:00
ian%hixie.ch
d75258c737 Reduce the number of sites that call 'caller'. Let's hope that this doesn't get optimised too much, or else the line numbers will start getting increasingly inaccurate...
git-svn-id: svn://10.0.0.236/trunk@135697 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 07:28:45 +00:00
ian%hixie.ch
20964a11b5 Add support for reporting Exceptions as warnings, for parity with, and so that PLIF can transition from, Carp.pm
git-svn-id: svn://10.0.0.236/trunk@135696 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 07:06:34 +00:00
igor%mir2.org
7a60bfa650 Replace ScriptRuntime#main(String scriptClassName, String[] args) by ScriptRuntime#main(Class scriptClass, String[] args) and to optimizer.Codegen#generateMain code to generate call to Class.forName before calling ScriptRuntime#main. In this way script byte code can access Class object if generated script is loaded via different class loader then Rhino classes.
git-svn-id: svn://10.0.0.236/trunk@135695 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 06:49:10 +00:00
ian%hixie.ch
91fd7737aa Remove debugging code that accidentally got checked in.
git-svn-id: svn://10.0.0.236/trunk@135694 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 06:43:27 +00:00
ian%hixie.ch
40245c1eb3 Clean up the stack trace code: make stacktrace smarter about where the exception should be reported from, make it know about the arguments to the functions, make the stringifier know about try{} blocks
git-svn-id: svn://10.0.0.236/trunk@135693 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 06:40:05 +00:00
leaf%mozilla.org
2a49a0f15a Automated update
git-svn-id: svn://10.0.0.236/trunk@135692 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 01:15:06 +00:00
timeless%mozdev.org
7d6181339c Bug 187012 [Qt] configure.in test for Qt should use $CXX, not $CC for testing for the Qt library
r=cls


git-svn-id: svn://10.0.0.236/trunk@135691 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 01:08:28 +00:00
igor%mir2.org
1eae44d903 When checking for a nested class, try to load it from class loader for the parent class, not from the loader for Rhino classes.
git-svn-id: svn://10.0.0.236/trunk@135690 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 00:50:57 +00:00
igor%mir2.org
537ebbebd0 Move code to try to load a class from getPkgProperty to the separated findClass method and add catching of SecurityException there.
git-svn-id: svn://10.0.0.236/trunk@135689 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 00:49:11 +00:00
igor%mir2.org
9238213337 Change FunctionObject to extends BaseFunction, not NativeFunction as the later is more tailored for function representing JavaScript code.
git-svn-id: svn://10.0.0.236/trunk@135688 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-30 00:43:33 +00:00
paper%animecity.nu
ab461a4d92 Bug 185773: Call SetTimeout in nsGIFDecoder2, not imgContainerGIF::EndFrameDecode; r=biesi sr=tor
git-svn-id: svn://10.0.0.236/trunk@135687 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 22:32:22 +00:00
ian%hixie.ch
73054a5523 Additional comments explaining what might happen in cases of key clashes.
git-svn-id: svn://10.0.0.236/trunk@135686 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 21:02:59 +00:00
ian%hixie.ch
127d2d9bdf Minor grammatical fix.
git-svn-id: svn://10.0.0.236/trunk@135685 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 21:02:22 +00:00
igor%mir2.org
b4d957a36d To map a class name to the corresponding Class instance from the adapter code generate code to call Class.forName instead of calling ScriptRuntime.loadClassName so a class loader for the generated code will be used to access the Class instance, not the loader for the Rhino classes.
git-svn-id: svn://10.0.0.236/trunk@135684 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 20:21:06 +00:00
cbiesinger%web.de
d87ebbf69f 186938 r+sr=roc+moz removing dead code from nsBlender.cpp
git-svn-id: svn://10.0.0.236/trunk@135683 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 12:35:17 +00:00
igor%mir2.org
18237dcd78 In createInvoker I replaced classLoader.loadClass by classLoader.linkClass to remove catching ClassNotFoundException
git-svn-id: svn://10.0.0.236/trunk@135682 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 10:52:10 +00:00
jake%bugzilla.org
2a9ccf5ccd Bug 183388 - processmail wasn't picking up on users being added to the owner or qa contact role and was dropping emails if the user had selected to only get mail on those events.
Patch by Mark Drew <mdrew@realm.com>
r=jake
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135681 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 07:06:41 +00:00
ian%hixie.ch
3e837c2278 Fixing the support for the 'attempt()' method on databases, which was broken while fixing the fallout from the Exception stuff.
git-svn-id: svn://10.0.0.236/trunk@135680 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 03:56:00 +00:00
cbiesinger%web.de
5cbf4d3240 187017 r=cls state that nglayout.mk is no longer used
git-svn-id: svn://10.0.0.236/trunk@135676 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-29 00:13:37 +00:00
seawood%netscape.com
604028b3ed Don't set EXPORT_LIBRARY for libs that aren't in the final link list for static builds.
Fixing static build bustage.


git-svn-id: svn://10.0.0.236/trunk@135675 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 23:42:21 +00:00
seawood%netscape.com
63072a3b2b Fix OS/2 bustage by exporting component import libs again.
git-svn-id: svn://10.0.0.236/trunk@135674 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 21:19:26 +00:00
ian%hixie.ch
99315a2625 Allow catch...with statements to not be followed by anything. Also add a little debug code.
git-svn-id: svn://10.0.0.236/trunk@135673 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 18:24:27 +00:00
ian%hixie.ch
f7054d1562 Unify the statement execution methods so that we can have consistent exception raising
git-svn-id: svn://10.0.0.236/trunk@135672 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 18:23:24 +00:00
matty%chariot.net.au
593d4bcda7 Release notes updates.
git-svn-id: svn://10.0.0.236/trunk@135671 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 13:16:37 +00:00
seawood%netscape.com
065babb2e4 Quirky, quirky, quirky OS/2.
git-svn-id: svn://10.0.0.236/trunk@135670 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 07:27:54 +00:00
seawood%netscape.com
c92511069a Add hack upon dependency hack to Avoid constant NSS rebuilds when pulling from CVS.
git-svn-id: svn://10.0.0.236/trunk@135669 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 05:50:17 +00:00
igor%mir2.org
ca16420186 Fixing design flaw in SecurityController:
The new SecurityController in its current form does not allow to define more then one generated class class in the same class loader effectively preventing to use optimizer which needs to define classes that refer each other and should be defined in the same loader.

To fix this I replaced the defineClass method in SecurityController by
    public GeneratedClassLoader createClassLoader(Object securityDomain);
which returns instance of the new GeneratedClassLoader interface which can be used to define several classes. I also made DefiningClassLoader to implement this interface to simplify code in JavaAdapter.java and optimizer/Codegen.java.


git-svn-id: svn://10.0.0.236/trunk@135668 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 05:37:43 +00:00
seawood%netscape.com
c5fe4de2b5 Use cp instead of nsinstall for OS/2.
Attempting to fix OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135667 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 05:25:08 +00:00
depstein%netscape.com
b3bfb4d752 Adding initial test cases for nsIHttpChannel iface. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135666 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 04:43:56 +00:00
ian%hixie.ch
7218c6231f Add rudimentary stacktrace support to the Exception library
git-svn-id: svn://10.0.0.236/trunk@135665 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 03:31:59 +00:00
seawood%netscape.com
cbef774bac Oops. We still need to install component libs into dist/lib/components.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135664 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 03:30:04 +00:00
ian%hixie.ch
bbe16d6189 Propagate the results out of the 'row' function correctly again -- the wantarray context isn't maintained inside a try block, unfortunately
git-svn-id: svn://10.0.0.236/trunk@135663 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 03:27:23 +00:00
rogerl%netscape.com
f9eb7ce4cf Fixes to defineStaticMember
git-svn-id: svn://10.0.0.236/trunk@135662 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 01:40:07 +00:00
seawood%netscape.com
f8f86e7f05 Start installing GRE libraries & components into a separate dist/gre directory as part of the default build.
Bug #186241 r=dougt


git-svn-id: svn://10.0.0.236/trunk@135661 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 01:15:07 +00:00
caillon%returnzero.com
6fa69e00be 186752 - Need one more null check, this time before CallQueryInterface. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@135660 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-28 00:03:33 +00:00
seawood%netscape.com
2ce655c9b5 Create bundle version of libxpcom for OSX GRE builds.
Bug #186599 r=mcafee


git-svn-id: svn://10.0.0.236/trunk@135658 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 18:58:20 +00:00
leaf%mozilla.org
846cfde696 Automated update
git-svn-id: svn://10.0.0.236/trunk@135657 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 11:00:14 +00:00
cbiesinger%web.de
5545d77665 186778 r=cls qt compilation fails when --disable-debug is used
git-svn-id: svn://10.0.0.236/trunk@135656 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 10:50:29 +00:00
mcafee%netscape.com
9c631c7626 Fixing array type error.
git-svn-id: svn://10.0.0.236/trunk@135655 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 10:21:19 +00:00
mcafee%netscape.com
9096b48b10 TinderboxPrint: now just prints the rest of the line out, bloat2 test needs 3 separate TinderboxPrint: prefixes. Removing old scrape comments.
git-svn-id: svn://10.0.0.236/trunk@135654 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 09:43:21 +00:00
mcafee%netscape.com
d7f6a8a1f5 Removing dead comments
git-svn-id: svn://10.0.0.236/trunk@135653 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 09:39:42 +00:00
mcafee%netscape.com
6186262753 Removing scrape split token, now TinderboxPrint: just prints out the rest of the line. If you want 3 lines of output on tbox, you need 3 TinderboxPrint: statements. This will just be simpler, no ambiguous cases.
git-svn-id: svn://10.0.0.236/trunk@135652 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 09:34:58 +00:00
mcafee%netscape.com
413ac4fdf5 Removing scrape split token, now TinderboxPrint: just prints out the rest of the line. If you want 3 lines of output on tbox, you need 3 TinderboxPrint: statements. This will just be simpler, no ambiguous cases.
git-svn-id: svn://10.0.0.236/trunk@135651 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 09:33:38 +00:00
caillon%returnzero.com
0aaf7ffe86 Bug 186752 - Crash during background painting when there is no scrollable frame. Add a null check.
r+sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@135650 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 07:32:17 +00:00
caillon%returnzero.com
2b1062ef7b Bug 185647 - Setting pseudo class of a closed window crashes [@ inLayoutUtils::GetEventStateManagerFor]
r=timeless sr=tor


git-svn-id: svn://10.0.0.236/trunk@135649 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 07:30:51 +00:00
cltbld%netscape.com
e8172f4f48 Attempting qatest content generation. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135648 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 03:15:21 +00:00
cltbld%netscape.com
3d11432436 cleaning up unused code, debug printfs. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135647 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 02:30:39 +00:00
cltbld%netscape.com
1d80bdf8b1 First attempt at qatest script. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135646 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 02:22:56 +00:00
rogerl%netscape.com
163eab0261 Minor bug fixes.
git-svn-id: svn://10.0.0.236/trunk@135645 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 00:56:29 +00:00
jkeiser%netscape.com
0d92f13f7d Make align=right only float right for input type=image (bug 170781), r=peterl@netscape.cm, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@135644 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-27 00:41:52 +00:00
peterlubczynski%netscape.com
9650abcb60 Fixing bug 180366, browser crashes on shutdown after scripting plugin, moving unused plugin library unloading to Observe("xpcom-shutdown") r=av sr=beard
git-svn-id: svn://10.0.0.236/trunk@135643 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 22:54:46 +00:00
cltbld%netscape.com
0a0c74974d Changes for QA/JS test. Backed sleep times from 10s to 5s. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135642 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 22:44:55 +00:00
dbaron%fas.harvard.edu
37f38041d9 Reduce paint suppression timeout from 1200ms to 250ms (to match Phoenix and Chimera). b=180241 r=rjesup sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135641 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 21:03:23 +00:00
cltbld%netscape.com
384310089c Fixing CodesizeTestType usage. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135640 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 08:57:59 +00:00
justdave%syndicomm.com
2c69eb098b Bug 186594: $db_sock was not being exported from Bugzilla/Config.pm
patch by sergeyli@pisem.net (Sergey Lipnevich)
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@135639 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 07:37:12 +00:00
ian%hixie.ch
d8f35b1b4a Update PLIF to take advantage of the new PLIF exception handling library
git-svn-id: svn://10.0.0.236/trunk@135638 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 04:37:22 +00:00
ian%hixie.ch
5853a497f0 Fix the context-sensitive code to actually work. Fix the result returning code to actually work too. Make wrapped exceptions include actual filename and line info.
git-svn-id: svn://10.0.0.236/trunk@135637 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 04:35:17 +00:00
ian%hixie.ch
4a90331d0a Rename 'handle' to 'catch' and 'unhandled' to 'fallthrough', so that we get fewer clashes with existing code.
git-svn-id: svn://10.0.0.236/trunk@135636 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 03:33:22 +00:00
ian%hixie.ch
c93aab4f23 Remove trailing spaces, add a missing parenthesis, add 'otherwise' to the list of exported keywords, support 'ne' operator on exception objects.
git-svn-id: svn://10.0.0.236/trunk@135635 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 03:11:34 +00:00
ian%hixie.ch
a1b781fce9 Add support for an "otherwise" block which is called if no exception is triggered. Also, refactor the code to shorten it a bit.
git-svn-id: svn://10.0.0.236/trunk@135634 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-26 02:07:19 +00:00
timeless%mozdev.org
08597cc140 Bug 52104 about:logo is missing
patch by bugzilla@gemal.dk r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@135633 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 22:17:54 +00:00
ian%hixie.ch
d7aee7f938 Handle exceptions raised inside exception blocks by reraising them after the finally block. This code is going to need some refactoring at some point...
git-svn-id: svn://10.0.0.236/trunk@135632 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 16:48:54 +00:00
ian%hixie.ch
f9d8540251 If the exception isn't handled, it should be re-raised.
git-svn-id: svn://10.0.0.236/trunk@135631 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 16:20:03 +00:00
ian%hixie.ch
b2500534f2 Minor comment fixup
git-svn-id: svn://10.0.0.236/trunk@135630 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 14:14:11 +00:00
ian%hixie.ch
1f99610ede Change the semantics of |try| to return the result of the try block when no exception is raised.
git-svn-id: svn://10.0.0.236/trunk@135629 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 12:37:38 +00:00
ian%hixie.ch
881e6f7054 Add basic stringification to exceptions
git-svn-id: svn://10.0.0.236/trunk@135628 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 12:20:34 +00:00
timeless%mozdev.org
ab604b459b Bug 52104 about:logo is missing
patch by bugzilla@gemal.dk r=timeless sr=darin


git-svn-id: svn://10.0.0.236/trunk@135627 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 08:40:46 +00:00
blakeross%telocity.com
339a839c5e Fix the cookie bug. Maybe.
git-svn-id: svn://10.0.0.236/trunk@135626 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 05:10:36 +00:00
ian%hixie.ch
125131ad8a A standalone class to provide thorough Exception handling in Perl. This, like the Magic* classes, could easily be used separate from PLIF.
git-svn-id: svn://10.0.0.236/trunk@135625 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 00:39:40 +00:00
cltbld%netscape.com
f7f5a0717a Adding parameter for auto or base summary runs of codesize test. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135624 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-25 00:11:20 +00:00
caillon%returnzero.com
982eaea6b8 Removing unused decl. r=timeless. I forgot to remove this with my fix for 175197, and it wasn't removed per my review comment to 183234.
git-svn-id: svn://10.0.0.236/trunk@135622 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 21:40:41 +00:00
depstein%netscape.com
508f73a607 Passing nsISupports context to AsyncOpen() in nsichanneltests.cpp. Triggers post-AsyncOpen nsIChannel tests. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135621 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 21:22:59 +00:00
jkeiser%netscape.com
552253c247 Fix onmouseover/onmouseout crash (bug 186132), r=saari@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@135620 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 20:21:40 +00:00
kerz%netscape.com
4f0ec96328 fixing personal toolbar button text color
git-svn-id: svn://10.0.0.236/trunk@135619 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 18:16:36 +00:00
kerz%netscape.com
a3ca79c766 fixing case issue on unix
git-svn-id: svn://10.0.0.236/trunk@135618 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 18:03:03 +00:00
despotdaemon%netscape.com
f31369046c Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135617 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 17:15:45 +00:00
despotdaemon%netscape.com
5db87582ca Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@135616 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 17:14:43 +00:00
cbiesinger%web.de
e78a4e6fc9 137819 r=tor sr=darin Changed images don't reload [file:// URLs]
git-svn-id: svn://10.0.0.236/trunk@135615 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 14:30:12 +00:00
leaf%mozilla.org
f617f6b1e1 Automated update
git-svn-id: svn://10.0.0.236/trunk@135614 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 13:00:11 +00:00
cbiesinger%web.de
ce6f5ecc61 184340 patch by Roland.Mainz@informatik.med.uni-giessen.de r=cls
Add check for qt-mt to configure.in


git-svn-id: svn://10.0.0.236/trunk@135613 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 12:59:08 +00:00
kerz%netscape.com
ce90614349 last file
git-svn-id: svn://10.0.0.236/trunk@135612 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 07:27:50 +00:00
kerz%netscape.com
0d77b8dbce Let's try this again, Qute as default.
git-svn-id: svn://10.0.0.236/trunk@135611 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 07:09:45 +00:00
kerz%netscape.com
5061f19285 Let's try this out.
git-svn-id: svn://10.0.0.236/trunk@135610 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 07:06:40 +00:00
wtc%netscape.com
37a5a7c29e Bug 183612: added some comments.
git-svn-id: svn://10.0.0.236/trunk@135609 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 02:25:36 +00:00
igor%mir2.org
ca96f33b4c Preparations for 1.5R4 release
git-svn-id: svn://10.0.0.236/trunk@135603 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-24 01:34:45 +00:00
shliang%netscape.com
06dd6bcdec bug 135142 key navigation doesn't work for advanced tab. patch by walk84@yahoo.com, r=caillon, sr=jag
git-svn-id: svn://10.0.0.236/trunk@135602 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 23:22:20 +00:00
bienvenu%netscape.com
a9539192f9 fix regression in delete immediately imap delete r/sr=sspitzer 186560
git-svn-id: svn://10.0.0.236/trunk@135601 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:43:09 +00:00
blythe%netscape.com
3d0d922b00 Fix bug 170621
Static build changes to support viewer, mfcembed, winembed
r=cls


git-svn-id: svn://10.0.0.236/trunk@135600 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:32:22 +00:00
dougt%netscape.com
6528d5a8ef Fixing race on creating a unique file name. This race, which existed forever, caused installing 2 xpis simultaneously to fail. r=ssu, sr=dveditz, b=186038.
git-svn-id: svn://10.0.0.236/trunk@135599 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:18:54 +00:00
sspitzer%netscape.com
437c886b60 fix js error that you can get if you do a message search, and then delete a message
from another mail window before doing a search.  bug #186600.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135598 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:14:03 +00:00
caillon%returnzero.com
bd02488338 Bug 46814 - Fixed attachment background images should not be positioned underneath scrollbars, when positioning on a side which has scrollbars.
r=dbaron sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@135597 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:08:04 +00:00
dbaron%fas.harvard.edu
a436a28cb1 Reduce code size by using PaintSelf member function to paint background, border, and outline. b=184702 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135596 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:05:47 +00:00
cbiesinger%web.de
71dc490132 186081 patch by pratik psolanki@netscape.net r=smontagu sr=roc+moz printing doesn't work after print previewing a mail
git-svn-id: svn://10.0.0.236/trunk@135595 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 22:04:16 +00:00
rods%netscape.com
59b6afc6e2 New spellcheck controller code
Not in build yet, checking in so Mac projects can be built
Bug 180346


git-svn-id: svn://10.0.0.236/trunk@135594 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 21:59:30 +00:00
mostafah%oeone.com
98556514ca Added make option for linuxxpi
git-svn-id: svn://10.0.0.236/trunk@135593 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 16:33:28 +00:00
igor%mir2.org
ff75833db8 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=184107
Always put function expression statements into initial activation object ignoring the with statement to follow SpiderMonkey


git-svn-id: svn://10.0.0.236/trunk@135592 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 15:01:53 +00:00
igor%mir2.org
8da562678c Mostly cosmetics: use consistent naming for new API for function object initialization.
git-svn-id: svn://10.0.0.236/trunk@135591 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 14:56:58 +00:00
ian%hixie.ch
85dc00f7b1 Remove the annoying 'tried to log in but was already logged in' warning that would be hit each time someone clicked a link to, or used a bookmark to, a login page.
git-svn-id: svn://10.0.0.236/trunk@135590 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:49:01 +00:00
ian%hixie.ch
2cee3c9a12 Mark GET and HEAD requests as idempotent. Commands still have to explicitly support this, of course.
git-svn-id: svn://10.0.0.236/trunk@135589 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:47:20 +00:00
ian%hixie.ch
10d67334f2 Add support for cookies using the new getSessionData() API.
git-svn-id: svn://10.0.0.236/trunk@135588 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:46:30 +00:00
ian%hixie.ch
c0c07ec40c Minor fixups on the regexps. Add support for '--' to signal the end of the arguments (although at the moment it only cancels the previous argument rather than indicating the end of any flag arguments). Change the --batch-force-defaults to be the default --batch mode, and make the old --batch mode be called --batch-no-defaults. This could change again later.
git-svn-id: svn://10.0.0.236/trunk@135587 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:45:37 +00:00
ian%hixie.ch
cebe0dd11b since the default getMetaData() does the same now, removing this redundant implementation
git-svn-id: svn://10.0.0.236/trunk@135586 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:42:57 +00:00
ian%hixie.ch
2ed118ae9c Change getMetaData() to default to undef rather than requiring that it be implemented in descendants. Introduce getSessionData() for things like cookies. Introduce idempotent() so that protocols that can guarentee side-effect-free requests have a way of signalling their wishes.
git-svn-id: svn://10.0.0.236/trunk@135585 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:41:53 +00:00
ian%hixie.ch
fdefe32495 user prefs should be a POST not a GET.
git-svn-id: svn://10.0.0.236/trunk@135584 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:39:43 +00:00
ian%hixie.ch
4fef49a101 Have to escape the error message, otherwise it gets treated as HTML, oops\!
git-svn-id: svn://10.0.0.236/trunk@135583 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:38:50 +00:00
ian%hixie.ch
ee041f841f Minor typo fix in debug code
git-svn-id: svn://10.0.0.236/trunk@135582 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:37:42 +00:00
ian%hixie.ch
3c073dde8a Change the Controller to inherit from PLIF::Service, so that we can reuse the 'dispatch' method from that class in Program.pm. Change the defaulting of the application name to be handled by a default name() implementation in Programepm rather than setting it in Controller.pm. Added a comment next to dispatchMethod() to clarify its role.
git-svn-id: svn://10.0.0.236/trunk@135581 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 11:35:06 +00:00
jerry.tan%sun.com
98d4d3661b bug 181644, patch by rick.ju@sun.com, r=bz, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@135580 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 06:01:14 +00:00
bugreport%peshkin.net
bc4685bc33 Bug 186383 Checksetup leaves editor backups of localconfig accessible (revised)
r=jaypee
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135578 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 01:53:34 +00:00
bugreport%peshkin.net
e9306419fd Backing out patch from bug 186383 because it broke quicksearch
git-svn-id: svn://10.0.0.236/trunk@135577 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-23 01:53:33 +00:00
igor%mir2.org
b8d1156a30 Eliminate double creation of Function objects representing nested functions in scripts/functions and use ScriptRutime.putFunction to bind function objects with activation scope.
git-svn-id: svn://10.0.0.236/trunk@135576 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 22:39:10 +00:00
ian%hixie.ch
428a3482b2 Round correctly. This makes the '1 hour' and other singular forms work correctly.
git-svn-id: svn://10.0.0.236/trunk@135575 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 22:21:59 +00:00
ian%hixie.ch
37d6739681 Add a 'sprintf' operator to scalars
git-svn-id: svn://10.0.0.236/trunk@135574 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 22:21:07 +00:00
igor%mir2.org
f643a85175 Use Context.enter() try { } finally { Context.exit() } instead of try { Context.enter() } finally { Context.exit() } as Context.exit should only be called if Context.enter() returns successfully.
git-svn-id: svn://10.0.0.236/trunk@135573 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 19:12:50 +00:00
igor%mir2.org
613922e569 Move code to put functions as properties of activation object to ScriptRuntime.putFunction so it can reused by optimizer.
git-svn-id: svn://10.0.0.236/trunk@135572 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 19:08:52 +00:00
igor%mir2.org
02a3104fd2 Do not put "anonymous" into BaseFunction.functionName for functions created via new Function. Instead NativeFunction.getFunctionName() returns "anonymous" for function name for such functions which allows to assume that BaseFunction.functionName always holds real name.
git-svn-id: svn://10.0.0.236/trunk@135571 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 19:06:26 +00:00
ian%hixie.ch
2c7eed2733 Add a convenient 'time delta in seconds' to 'brief duration description in english' convertor. Escaped the values in an HTML output string.
git-svn-id: svn://10.0.0.236/trunk@135570 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 15:44:50 +00:00
cbiesinger%web.de
eeae9b86e2 fix build bustage (hopefully)
git-svn-id: svn://10.0.0.236/trunk@135569 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 14:44:38 +00:00
leaf%mozilla.org
39587cbd32 Automated update
git-svn-id: svn://10.0.0.236/trunk@135568 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 13:15:11 +00:00
cbiesinger%web.de
786f2322a4 88685 r=cls final USE_IMG2 removal
git-svn-id: svn://10.0.0.236/trunk@135567 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 13:10:26 +00:00
jfrancis%netscape.com
7ca2eee5b9 179384 Merging blocks via forward delete sends selection to front of document
correcting snafu from prior landing.


git-svn-id: svn://10.0.0.236/trunk@135566 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 07:48:32 +00:00
roc+%cs.cmu.edu
55be3c1d27 Backing out fix for bug 170330... againr=dbaron
git-svn-id: svn://10.0.0.236/trunk@135565 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 05:40:51 +00:00
roc+%cs.cmu.edu
67e18491db Bug 186066. Don't resize scrolled frame's view until we're ready, saving a full refresh. Patch by sfraser; r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135564 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 03:30:04 +00:00
igor%mir2.org
f1b2ffe463 I replaced exception handlers for InstantiationException and friends during Class/Constructor.newInstance calls to construct NativeFunction/NativeScript instances via single catch (Exception ex) as the handlers rethrow exceptions as RuntimeException in any case. As it reduces OptRuntime.newOptFunction to few lines, its single usage in Codegen is inlined.
git-svn-id: svn://10.0.0.236/trunk@135563 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 02:51:16 +00:00
igor%mir2.org
0d3a09f775 I removed constants denoting _QUICK bytecodes as valid bytecode can not contain them. To catch possible bugs with passing invalid opcode I also replaced extra, opcodeCount and stackChange arrays by functions with switch statements that throws IllegalArgumentException on bad opcode. It also has an advantage of reducing class file size due to lack of support in JVM for efficient array initialization.
git-svn-id: svn://10.0.0.236/trunk@135562 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 02:42:40 +00:00
roc+%cs.cmu.edu
7683fc0475 Tp experiment... See if the extra view sync is causing the Tp regression. Pardon me.
git-svn-id: svn://10.0.0.236/trunk@135561 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 02:12:13 +00:00
jfrancis%netscape.com
dab8e009ec editor fixes for:
180034 editor should respect the select_all style
183836 New list item should not reset inline styles
179384 Merging blocks via forward delete sends selection to front of document
98434 IME does not work correctly at the last characters in the text field  (patch courtesy of Shotaro Kamio)

r=jfrancis,brade,cmanske   sr=kin


git-svn-id: svn://10.0.0.236/trunk@135560 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 01:51:14 +00:00
jfrancis%netscape.com
072ac8da08 fix for 180034: selection should respect the select_all style. code=mjudge, r=jfrancis, sr=kin
git-svn-id: svn://10.0.0.236/trunk@135559 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 01:45:15 +00:00
sdagley%netscape.com
02d052d061 Fix #183856 - don't cache DL folder as user may change it while we're running. r=ccarlen,sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@135558 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-22 01:21:29 +00:00
bbaetz%student.usyd.edu.au
2ab5b50ebe Bug 186337 - Param lookup should fall back to defaults
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@135556 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 23:39:48 +00:00
roc+%cs.cmu.edu
b997358c68 Bug 170330. Factor out overflowArea calculations and take into account overflow:hidden. Also improve calculations of clipping for invalidation in the view manager. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@135555 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 23:25:38 +00:00
bugreport%peshkin.net
49642c7b2f Bug 186383 Checksetup leaves editor backups of localconfig accessible
r=zach
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135553 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 21:04:05 +00:00
cmanske%netscape.com
f757510363 Backout accidental checkin related to bug 180303, fix by neil@parkwaycc.co.uk, r=cmanske, sr=kin
git-svn-id: svn://10.0.0.236/trunk@135552 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 17:29:07 +00:00
bienvenu%netscape.com
d9629756ae don't set deleting rows if delete failed, r=blizzard, sr=sspitzer, 182808
git-svn-id: svn://10.0.0.236/trunk@135550 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 16:47:29 +00:00
bienvenu%netscape.com
d3f2e84913 fix problem deleting multiple imap messages (and with check for new mail on multiple folders), cleanup unused methods r/sr=sspitzer 182808
git-svn-id: svn://10.0.0.236/trunk@135549 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 16:43:23 +00:00
cbiesinger%web.de
c1dc329eac 88685 r+sr=roc+moz for the rendering-context-related changes
r=walk84 sr=roc+moz for the removal of the USE_IMG2 ifdefs

Remove traces of old imagelib as well as ifdefs for USE_IMG2


git-svn-id: svn://10.0.0.236/trunk@135548 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 16:40:04 +00:00
gerv%gerv.net
c5c45348f7 Rebuild HTML and text versions of documentation for 2.17.2 release.
git-svn-id: svn://10.0.0.236/trunk@135547 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 16:33:58 +00:00
cbiesinger%web.de
7991dbf7be 186216 r=paper sr=tor image decoders don't need to #include "nsIImage.h"
git-svn-id: svn://10.0.0.236/trunk@135546 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 15:34:01 +00:00
igor%mir2.org
9bf6180e3f I removed dependency of Parser.decompile on NativeFunction. Now Parser.decompile takes as argument a tree structure describing encoded source for script or function and their nested functions. In case of interpreter the tree is built from interpreter runtime data while the optimizer puts a static function to construct tree into the class file representing compiled script or function. This function is called via reflection.
The change removes the need to have instances of NativeFunction representing nested functions constructed before they are needed as a part of script execution.


git-svn-id: svn://10.0.0.236/trunk@135545 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 12:43:55 +00:00
cbiesinger%web.de
54ceae4528 186158 r+sr=dbaron unused function TileImage in nsCSSRendering.cpp
git-svn-id: svn://10.0.0.236/trunk@135544 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 10:33:38 +00:00
cltbld%netscape.com
3c78dea656 cleaning up debug printfs, comment. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135543 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 09:16:00 +00:00
bratell%lysator.liu.se
dedbd18ff1 Bug 185007 - reduce padding in style structs. r=roc+moz, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@135542 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 07:27:44 +00:00
seawood%netscape.com
b3853ee492 Use renamed ical libs.
git-svn-id: svn://10.0.0.236/trunk@135541 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 06:25:14 +00:00
roc+%cs.cmu.edu
ea9c6c5cb5 Fixing Windows bustage... again
git-svn-id: svn://10.0.0.236/trunk@135540 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 05:26:16 +00:00
roc+%cs.cmu.edu
45f3796ddd Fixing Windows bustage...
git-svn-id: svn://10.0.0.236/trunk@135539 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 04:39:02 +00:00
roc+%cs.cmu.edu
00489db9d2 Fix Mac bustage
git-svn-id: svn://10.0.0.236/trunk@135538 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 03:49:37 +00:00
roc+%cs.cmu.edu
fbcd1c38c6 Bug 186233. Clean up unused/useless GFX calls. r+sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@135537 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 02:51:14 +00:00
cltbld%netscape.com
68b3743745 uncomplicating profile fu. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135536 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 02:46:17 +00:00
brendan%mozilla.org
c339a9649c Fixed so overriding Function.prototype.toSource doesn't mess up F.p.toString output, which should decompile the function, including nested function expressions (178389, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@135535 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 02:14:53 +00:00
dbaron%fas.harvard.edu
dba21402ff Remove test assertion that I added two days ago. DEBUG-only, r=me
git-svn-id: svn://10.0.0.236/trunk@135534 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 01:36:58 +00:00
cltbld%netscape.com
6a22d5d0a5 Mac profile location changed, fixing tests for that on mac. Took / out of Darwin name to save horizontal space. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@135533 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-21 00:08:26 +00:00
rogerl%netscape.com
06606b18e0 Added ECMA3 compatible(?) Error classes.
git-svn-id: svn://10.0.0.236/trunk@135532 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 23:55:23 +00:00
cltbld%netscape.com
51044654fb xpcomgluetest should be off by default -mcafee
git-svn-id: svn://10.0.0.236/trunk@135531 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 23:40:04 +00:00
bbaetz%student.usyd.edu.au
d17356699e Bug 180870 - Remove old shadowdb manual replication code
r, a=myk


git-svn-id: svn://10.0.0.236/trunk@135530 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 23:35:29 +00:00
edburns%acm.org
2fb58577aa Build the XPI on UNIX.
git-svn-id: svn://10.0.0.236/trunk@135529 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 22:40:32 +00:00
edburns%acm.org
34f27d9ded Uncomment the find component changes.
git-svn-id: svn://10.0.0.236/trunk@135528 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 22:01:44 +00:00
endico%mozilla.org
de624a4d14 add mozilla/java/build.xml to java Webclient module. bug 143115
git-svn-id: svn://10.0.0.236/trunk@135527 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 21:37:20 +00:00
igor%mir2.org
7e75720a44 I removed code to add EmptyArray field to generated field in Codegen.generateInit as it was redundant to ScriptRuntime.emptyArgs
git-svn-id: svn://10.0.0.236/trunk@135525 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 16:14:51 +00:00
kin%netscape.com
8a3246fc2a Fix for bug # (drag and drop of links with icons is inconsistent)
Make dragging an image in a link behave just like dragging the text in a link. We now generate the drag data for links just like we do when dragging an existing selection.

r=brade@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@135524 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 15:37:03 +00:00
peterv%netscape.com
77250f9370 Rename Transformiix string API to be in synch with Mozilla's. Part of bug 74786 (String cleanup). r=sicking, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@135523 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 15:18:35 +00:00
mkaply%us.ibm.com
1766074986 #184479
Forgot to modify one part of code per sr comment


git-svn-id: svn://10.0.0.236/trunk@135522 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 14:53:44 +00:00
axel%pike.org
273ff89bf9 bug 157142, transformiix standalone should use XPCOM atoms. r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135521 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 13:55:28 +00:00
axel%pike.org
05840e756e bug 157142, transformiix standalone should use XPCOM atoms. r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135520 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 13:45:06 +00:00
igor%mir2.org
c4a837926f In Codegen.visitFunction I replaced code generating call to createFunctionObject that would use reflection to instantiate function object by a direct calling of function constructor and a separated call to function initialization in OptRuntime.setupFunction.
git-svn-id: svn://10.0.0.236/trunk@135519 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 12:21:35 +00:00
igor%mir2.org
d76676a3d9 I removed debug_level and debug_srcName fields as they are never used.
git-svn-id: svn://10.0.0.236/trunk@135518 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 12:12:41 +00:00
aaronl%netscape.com
265d726394 Bug 183234. Checking in patch for jst. Crash in nsDOMWindowController when F7 key pressed. r=aaronl, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135517 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 08:00:08 +00:00
bbaetz%student.usyd.edu.au
ebae797eae Bug 173622 - Move template handling into a module. r=justdave, joel, a=justdave
git-svn-id: svn://10.0.0.236/trunk@135516 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 07:21:43 +00:00
bugreport%peshkin.net
4051b6266e Bug 185760: New group system doesn't upgrade transparently if usebuggroups = 0
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135515 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 07:16:28 +00:00
mkaply%us.ibm.com
4ff2dd5569 #183328
r=gerv, sr=bryner
On OS/2, don't allow custom DPI


git-svn-id: svn://10.0.0.236/trunk@135514 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 06:47:19 +00:00
mkaply%us.ibm.com
e2babb16d8 #184479
r=brade, sr=peterv
Midas - support MS names for block types (Heading X)


git-svn-id: svn://10.0.0.236/trunk@135513 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 06:44:32 +00:00
cltbld%netscape.com
b3230b637a Depreciating RunTest option, use RunMozillaTests now. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135512 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 06:04:39 +00:00
jkeiser%netscape.com
4b221167d7 Make input type=file work with display: none (bug 152844), r=sicking@bigfoot.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135510 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 05:40:37 +00:00
jkeiser%netscape.com
60ed955d58 Make shift+click work the first time you click in a select (bug 167142), r=peterl@netscape.com, sr=sfraser@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135509 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 05:32:27 +00:00
justdave%syndicomm.com
d6a03594c2 Bug 186218: importxml.pl was doing a query against the products table using the old schema
Patch by Jonathan Schatz <jon@vmware.com>
r= justdave, a= justdave


git-svn-id: svn://10.0.0.236/trunk@135508 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 03:37:49 +00:00
smontagu%netscape.com
178a2e7d89 Bug 185588: Changed printing preferences are saved corrupted in prefs.js. Author=Roland.Mainz@informatik.med.uni-giessen.de, r=smontagu, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@135507 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 02:52:30 +00:00
ducarroz%netscape.com
229de12f2a Fix for bug 182643. The data stored in the palm pilote uses ISO-Latin-1 and not UTF-8. Also, the addressbook name is in UTF-8. R=cavin, rdayal, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@135506 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-20 00:05:23 +00:00
rogerl%netscape.com
c0a00027a6 Various bug fixings. Added 'dynamic' attribute.
git-svn-id: svn://10.0.0.236/trunk@135505 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 23:57:32 +00:00
cavin%netscape.com
487ae18e8b Fix for bug 158367. Replaced macro IMPORT_LOGx() with PR_LOG() for ns logging and cleaned up some logging info at the top level driver function in nsImportMail.cpp. r=ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@135504 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 23:28:58 +00:00
cavin%netscape.com
6d7b52c082 Fix for bug 161941. Allocated enough space for 'buffer'. r=ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@135503 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 21:40:40 +00:00
peterv%netscape.com
85f3ef72fa Removing again, I won't need it after all.
git-svn-id: svn://10.0.0.236/trunk@135502 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 20:29:40 +00:00
peterv%netscape.com
92067adb37 Fix for bug 184925 (isindex.form always == null). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@135501 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 20:29:14 +00:00
caillon%returnzero.com
f26f161dcc 185493 - Try and clean up some leaks of text nodes by using nsCOMPtr.
r=jst sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135500 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 20:23:57 +00:00
igor%mir2.org
72fa19bc20 I moved optimizer related code to initialize a function from ScriptRuntime to optimizer/OptRuntime and replaced common code to initialize function prototype and scope in few places by ScriptRuntime.initFunction
git-svn-id: svn://10.0.0.236/trunk@135499 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 19:48:55 +00:00
kin%netscape.com
9134491356 Fix for bug #184858 (Find not finding all matches)
Modified |ContentIsInTraversalRange()| to return true if aContent is a textnode and contains one of the traversal range end points.

r=jfrancis@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@135498 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 19:36:18 +00:00
ccarlen%netscape.com
d139bc20b4 Bug 44678 - On Mac, use a custom Carbon event to signal that the PLEvent queue needs to be processed. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@135497 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 15:25:57 +00:00
glazman%netscape.com
788b006f2d Text alignment feedback erroneous in Composer; b=183887, r=jfrancis, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135496 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 14:10:50 +00:00
kyle.yuan%sun.com
3adcbb8b7e Bug 163816 Leaking 1 nsAccessibilityService and a bunch of nsGenericAccessible's
r=aaronl, sr=peterv
fix the wrong type cast in nsRootAccessible::AddAccessibleEventListener and get rid of the strong pointer to nsHTMLIFrameAccessible in nsHTMLIFrameRootAccessible


git-svn-id: svn://10.0.0.236/trunk@135495 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 09:35:00 +00:00
seawood%netscape.com
7303504a5c Define GFX_XINERAMA_LIBS before it's used since EXTRA_DSO_LDOPTS gets evaluated immediately sometimes.
Bug #183894


git-svn-id: svn://10.0.0.236/trunk@135494 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 07:49:52 +00:00
bratell%lysator.liu.se
020902a467 Bug 173388 - Take this you ugly orange tinderbox!
git-svn-id: svn://10.0.0.236/trunk@135493 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 07:18:17 +00:00
wtc%netscape.com
3ed557f63f Bug 183612: SECMOD_InitCallOnce() and SECMOD_CleanupCallOnce() should be
declared and defined with an argument list of "(void)" instead of "()".
Modified Files: pk11cert.c secmodi.h


git-svn-id: svn://10.0.0.236/trunk@135492 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 07:03:39 +00:00
sspitzer%netscape.com
f5a6b5149c another supplimental fix for #59638. send the notification for setting up toolbars
when we land after cross folder navigation for the stand alone msg window.
thanks for ssu for remembering this.


git-svn-id: svn://10.0.0.236/trunk@135489 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 06:52:43 +00:00
bratell%lysator.liu.se
b80daf2587 Bug 173388 - Last checkin was r=harishd and sr=jst
git-svn-id: svn://10.0.0.236/trunk@135488 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 06:28:28 +00:00
seawood%netscape.com
ff9eaeb578 Enable truncation of cache files for BeOS.
Bug #162588 r=gordon sr=darin


git-svn-id: svn://10.0.0.236/trunk@135487 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 06:27:57 +00:00
bratell%lysator.liu.se
d0cc23996e Bug 173388 - Use TABs to seperate table cell when converting HTML -> Text (copying from a web page).
git-svn-id: svn://10.0.0.236/trunk@135486 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 06:22:55 +00:00
seawood%netscape.com
913993ad75 If splashscreen bitmap has already been released, then do nothing when observing. Fixing crash on startup.
Bug #185260 r=arougthopher@lizardland.net


git-svn-id: svn://10.0.0.236/trunk@135485 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 06:22:22 +00:00
sspitzer%netscape.com
06cd3e8e6b supplimental fix for bug #59638. when navigating across folders from the stand alone msg
window, we need to update the toolbars.  also, some code cleanup suggested by neil.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135484 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 05:27:47 +00:00
nicolson%netscape.com
19837f51d9 Fix 186097: ProofOfPossession.encode() has paranoid assertion.
git-svn-id: svn://10.0.0.236/trunk@135481 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 02:31:38 +00:00
wtc%netscape.com
9bb9b998ad Bug 183612: renamed some new functions to be consistent with existing
function names containing SubjectKey and PublicKey.  Moved internal
functions to private headers and use the lowercase cert_ prefix for the
internal functions for subject key ID mapping hash table. r=nelsonb.


git-svn-id: svn://10.0.0.236/trunk@135480 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:26:34 +00:00
dbaron%fas.harvard.edu
c40043be49 Text decorations should not be painted on elements with 'visibity: hidden'. b=185581 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135479 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:24:18 +00:00
dbaron%fas.harvard.edu
d515d330cd Allow relative positioning to again influence the overflow area, since we're no longer using the overflow area for layout. r+sr=roc b=174149
git-svn-id: svn://10.0.0.236/trunk@135478 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:23:00 +00:00
dbaron%fas.harvard.edu
c73090b5b6 Make quirks-mode vertical alignment correctly consider only non-collapsed whitespace. b=155333 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135477 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:21:07 +00:00
dbaron%fas.harvard.edu
a7efa8275b Replace NS_BLOCK_WRAP_SIZE with making unconstrained-width reflow of frames with NS_BLOCK_SPACE_MGR consider the floats. This means we no longer use the overflow area for layout (other than the overflow property). Handle right floaters in unconstrained width reflow by just treating them as left floaters. b=172896 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135476 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:12:08 +00:00
ducarroz%netscape.com
0388b06078 Bug 59673, Fix compiler warning. Patch submitted by Aleksey Nogin. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@135474 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-19 00:07:51 +00:00
relyea%netscape.com
6aa398e467 Bug 186058
git-svn-id: svn://10.0.0.236/trunk@135473 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 23:55:53 +00:00
sfraser%netscape.com
6d7382630d Fix booleans returned by nsBox to have the low bit set. Bug 185951. r/sr=kin
git-svn-id: svn://10.0.0.236/trunk@135471 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 23:51:55 +00:00
jkeiser%netscape.com
ac42e42ba8 Make GetType() return int instead of nsresult (bug 167762), r=peterl@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135468 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 23:38:09 +00:00
nicolson%netscape.com
0d19ebb1e6 Partial fix for 184754: assertion violation in get_token_certs_for_cache.
Don't assert if we fail to lookup the cert we just imported. It could
be a bug in the PKCS #11 driver. Instead, throw an exception.


git-svn-id: svn://10.0.0.236/trunk@135467 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 23:14:48 +00:00
cbiesinger%web.de
e5544006f7 170548 r=gordon sr=darin about:cache-entry should show filename
git-svn-id: svn://10.0.0.236/trunk@135466 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 22:51:52 +00:00
cbiesinger%web.de
2926295556 185877 r=kmcclusk r+sr=roc+moz remove nsIRenderingContext::DrawScaledTile
git-svn-id: svn://10.0.0.236/trunk@135465 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 22:48:05 +00:00
rogerl%netscape.com
badcd60d36 Checked/unchecked changes.
git-svn-id: svn://10.0.0.236/trunk@135463 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 21:54:41 +00:00
kaie%netscape.com
481f2aabbf b=185749 Give correct message security info when not using an encryption cert
r=javi sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135461 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 12:55:36 +00:00
kaie%netscape.com
eada7e261c Temporary fix for bug 182803.
While this masks the reported crashes, this is nothing more than a workaround patch.
As long as this patch is in place, any attempt to do profile switching at run time will fail.
We need real fixes for bug 181230 and 177260.
r=javi sr=darin


git-svn-id: svn://10.0.0.236/trunk@135460 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 12:50:35 +00:00
axel%pike.org
6a9a4c017e bug 157142, link transformiix standalone to xpcom, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135459 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 10:03:23 +00:00
rginda%netscape.com
560b390670 - venkman only -
landing venkman 0.9.44

refactor prefs code, adding pref-manager.js
move CSS rules with english words into locale subdir
add fallback function hook to be called when regexp based name guessing fails
add "hide duplicates" option
add quicksearch-like textbox to the loaded scripts view


git-svn-id: svn://10.0.0.236/trunk@135458 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 09:11:49 +00:00
jkeiser%netscape.com
a7578dfc9d Make disabled selects select an initial option (bug 163437), r=peterl@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@135457 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 08:09:49 +00:00
kerz%netscape.com
8c7440b96b didn't work, back out again
git-svn-id: svn://10.0.0.236/trunk@135456 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 08:02:24 +00:00
justdave%syndicomm.com
c08b52f188 Bug 185944: radio buttons for adding/removing groups on the change-multiple-bugs screen all had the same name
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@135455 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 08:01:51 +00:00
kerz%netscape.com
b9aa37739b Second try at making Qute the default Theme, using Qute 0.8.2
git-svn-id: svn://10.0.0.236/trunk@135454 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 07:59:19 +00:00
jkeiser%netscape.com
59b8b31b7e Fix crasher in mouse events (bug 185850), r=kmcclusk@netscape.com, sr=roc+moz@cs.cmu.edu
git-svn-id: svn://10.0.0.236/trunk@135453 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 07:13:51 +00:00
mkaply%us.ibm.com
0a717d481c No bug - rewrite how we play system sounds since the mailnews/pref code changed
git-svn-id: svn://10.0.0.236/trunk@135452 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 06:32:10 +00:00
sspitzer%netscape.com
8eb62d5cbf landing bienvenu's fix for adding "has attachment" support to
local mail search and the mail views.  bug #183581.  r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@135451 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 05:03:56 +00:00
sspitzer%netscape.com
e1c0f97a56 don't call PR_ASSERT(), it calls abort. instead, call NS_ASSERTION().
now when you forward signed messages as attachments (in debug builds)
we won't crash, we just assert.  bug #185926 covers the assertion.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135448 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 03:45:01 +00:00
cltbld%netscape.com
1b3b040954 Adding dougt as contact for failure of XpcomGlueTest. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135447 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 02:45:39 +00:00
ducarroz%netscape.com
afd46760d6 Fix for bug 173046. fix initialization of the text filter service. Editor commands also takes care of msg compose spell button. R=rods, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@135446 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 02:23:10 +00:00
wtc%netscape.com
29e9e50079 Bug 183612: fixed the bug that 'extra' may be used uninitialized. r=javi.
git-svn-id: svn://10.0.0.236/trunk@135445 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 02:06:01 +00:00
rogerl%netscape.com
3c75fbdd33 Changes for static function defs.
git-svn-id: svn://10.0.0.236/trunk@135441 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 00:59:48 +00:00
asasaki%netscape.com
b2c61fd1a2 184464: update mac desktop getinfo for 1.3b. r=leaf sr=granrose
git-svn-id: svn://10.0.0.236/trunk@135440 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-18 00:35:58 +00:00
seawood%netscape.com
0af95dcb8f Turns out that libical is dual licensed (MPL/LGPL) so there's no need to force a dynamic build or give it the scarlet suffix.
Bug #178798 r=blizzard


git-svn-id: svn://10.0.0.236/trunk@135439 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 23:50:56 +00:00
nhotta%netscape.com
3a03e1c043 Adding a new interface to retrieve phonetic of input text,
bug 175937, r=brade, sr=kin.


git-svn-id: svn://10.0.0.236/trunk@135438 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 23:38:04 +00:00
wtc%netscape.com
3d91602837 Set NSS version to 3.8 Beta on the trunk.
git-svn-id: svn://10.0.0.236/trunk@135437 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 23:04:46 +00:00
wtc%netscape.com
6abee61f79 Export CERT_DestroyOCSPResponse in 3.7. Moved HASH_GetHashObjectByOidTag,
HASH_GetHashTypeByOidTag, and SECITEM_ItemsAreEqual from 3.7 to 3.8.


git-svn-id: svn://10.0.0.236/trunk@135436 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 23:02:53 +00:00
av%netscape.com
2cefc3fffb Bug 56229 -- removing useless dialog, r=serge, sr=beard
git-svn-id: svn://10.0.0.236/trunk@135434 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 22:53:23 +00:00
rginda%netscape.com
c32dc4620e bug 185719, r=peterv@netscape.com, sr=brendan@mozilla.org
"add ability to get at function object for a jsdIScript"

add a |functionObject| attribute to the jsdIScript interface, which returns the function's JSObject as a jsdIValue


git-svn-id: svn://10.0.0.236/trunk@135432 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 22:22:30 +00:00
leaf%mozilla.org
ed3f57dbd1 Automated update
git-svn-id: svn://10.0.0.236/trunk@135431 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 22:15:08 +00:00
seawood%netscape.com
697267fac6 Forte 7 linker requires that search directories come *before* libraries that reside in those search dirs.
Fixing build bustage.


git-svn-id: svn://10.0.0.236/trunk@135430 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 22:13:01 +00:00
seawood%netscape.com
229aef04b7 Add compiler test for external template specializations in c++ (assumed on for msvc)
Thanks to Benjamin Smedberg <bsmedberg@covad.net> for the patch.
Bug #184002 r=scc


git-svn-id: svn://10.0.0.236/trunk@135429 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 22:11:34 +00:00
sspitzer%netscape.com
eb16db5c80 fix for regression bug #185416. this makes a lot of key codes
map to shift delete!  until I figure that out, commenting it out.
shift delete is now broken, and that's now covered by #185867.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135428 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 21:56:47 +00:00
seawood%netscape.com
f365ac16a3 Hardcode the use of Sun's ld & ranlib since they are the only ones supported.
Bug #181382 r=dmose


git-svn-id: svn://10.0.0.236/trunk@135426 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 21:44:49 +00:00
paper%animecity.nu
a2bf62372f Bug 81361. Set mBytesPerPix for Mac based on mImagePixMap.pixelSize. r=lordpixel sr=tor
git-svn-id: svn://10.0.0.236/trunk@135424 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 21:24:55 +00:00
paper%animecity.nu
8fe791b706 Bug 183427. Re-anable Windows GDI AlphaBlending. r=smontagu, sr=kin
git-svn-id: svn://10.0.0.236/trunk@135423 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 21:22:09 +00:00
nhotta%netscape.com
f0fa8aeb5c Adding a new interface to retrieve phonetic of input text,
bug 175937, r=brade, sr=kin.


git-svn-id: svn://10.0.0.236/trunk@135422 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 21:03:56 +00:00
nhotta%netscape.com
95704c88f7 Adding a new interface to retrieve phonetic of input text,
bug 175937, r=brade, sr=kin.


git-svn-id: svn://10.0.0.236/trunk@135421 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 20:57:03 +00:00
igor%mir2.org
f1c3ea40ba Cosmetics: expanding tabs
git-svn-id: svn://10.0.0.236/trunk@135420 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 20:56:08 +00:00
nhotta%netscape.com
742e2fcb26 Initialize a local variable displayNameLastnamefirst, bug 181883, r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@135419 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 20:55:28 +00:00
igor%mir2.org
020637d3cc Cosmetics: removal of junk white-space at line end
git-svn-id: svn://10.0.0.236/trunk@135418 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 20:48:35 +00:00
sspitzer%netscape.com
2a8ce1a192 fix for bug #120188. "Save as file" dialog produces an error when you click cancel.
and some code cleanup and todo comments.  thanks to philip.zhao@sun.com for the initial patch.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135417 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 20:24:18 +00:00
yokoyama%netscape.com
460be6ca47 bug 180333 multiselect pickers don't work on 9x
-allow to select multiple files in Comdlg
-impact only on windows 9x platforms.
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@135416 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:47:14 +00:00
brade%netscape.com
ea71542654 fix insert HR command for Midas (bug 183793; r=cmanske, sr=smfr)
git-svn-id: svn://10.0.0.236/trunk@135415 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:41:00 +00:00
peterv%netscape.com
5a90ff2448 Correct silly error in fix for bug 180709 (Update Mozilla to the DOM Level 2 HTML PR). r=sicking.
git-svn-id: svn://10.0.0.236/trunk@135414 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:35:03 +00:00
harishd%netscape.com
3431058030 Update expat buffer postion when the parser is about to get blocked. b=185325, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135413 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:18:40 +00:00
cbiesinger%web.de
0ab9fa5f0c 185819 patch by matti@mversen.de r=biesi sr=roc+moz
plugins should be plug-ins


git-svn-id: svn://10.0.0.236/trunk@135412 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:13:25 +00:00
dougt%netscape.com
6349379fdb adding better comments to idl per newsgroup comment
git-svn-id: svn://10.0.0.236/trunk@135411 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 19:11:59 +00:00
wtc%netscape.com
b830b449ec Bug 185450: fixed a typo in pr_PredictNextNotifyTime which caused the
function to always return 0 instead of delta time interval.  The fix was
contributed by Peter Klavins <klavins@netspace.net.au>.


git-svn-id: svn://10.0.0.236/trunk@135410 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 18:28:46 +00:00
relyea%netscape.com
b6c3b8ab7a Make sure the session is protected over PKCS #11 calls.
git-svn-id: svn://10.0.0.236/trunk@135409 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 18:22:38 +00:00
igor%mir2.org
7be1490413 I replaced all ScriptableObject.getClassPrototype(scope, "Function") by ScriptableObject.getFunctionPrototype(scope)
git-svn-id: svn://10.0.0.236/trunk@135405 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 16:36:23 +00:00
bienvenu%netscape.com
8e1c28cbea fix crash in nsImapMailFolder::NormalEndMsgWriteStream when reading 0 byte message r/sr=sspitzer 185666
git-svn-id: svn://10.0.0.236/trunk@135404 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 15:52:01 +00:00
peterv%netscape.com
838373df63 Resurrecting file so I can work on it. Not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@135403 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 15:31:22 +00:00
peterv%netscape.com
856089df76 Fix for bug 180709 (Update Mozilla to the DOM Level 2 HTML PR). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@135401 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 13:29:39 +00:00
kerz%netscape.com
53ce6e9ede *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@135399 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 09:56:52 +00:00
kerz%netscape.com
16751f4297 backing out, cvs server bug
git-svn-id: svn://10.0.0.236/trunk@135398 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 09:28:46 +00:00
igor%mir2.org
861a43f494 I moved details of debugger API changes since 1.5R3 to a separated document.
git-svn-id: svn://10.0.0.236/trunk@135397 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 09:26:48 +00:00
cltbld%netscape.com
5da50becd6 Adding Xpcom Glue test, a=dougt. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135396 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 09:04:00 +00:00
kerz%netscape.com
f854b9bf83 Landing Qute as default theme.
git-svn-id: svn://10.0.0.236/trunk@135395 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 09:00:28 +00:00
kerz%netscape.com
c55471223d Landing Qute as default theme.
git-svn-id: svn://10.0.0.236/trunk@135394 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 08:54:30 +00:00
sspitzer%netscape.com
5acaffc375 fix for #185755. "new address book" dialog should be modal.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135393 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 06:45:47 +00:00
bolian.yin%sun.com
98fd58b87e fix a error for previous bug 183841 checkin: add inline at the declaration
git-svn-id: svn://10.0.0.236/trunk@135392 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 06:02:59 +00:00
jkeiser%netscape.com
68349894bd Commit review comment change of jst's for bug 184294 (last commit), r=timeless, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135389 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 04:55:53 +00:00
jkeiser%netscape.com
762af2ca73 Check rv of GetNext() (fixes infinite loop), r=timeless, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135388 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 04:35:52 +00:00
jkeiser%netscape.com
a27f5ec17d Fire onchange *after* onclick for radios/checkboxes (bug 184192), r=rods@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135387 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 04:31:21 +00:00
cltbld%netscape.com
8412358c4c Workaround array error, sorry fixing this soon. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135386 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 03:53:42 +00:00
cltbld%netscape.com
542f9f0daf Fixing busted rv, -mcafee
git-svn-id: svn://10.0.0.236/trunk@135385 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 03:45:21 +00:00
cltbld%netscape.com
c813f0ea5d Adding QA DOM/JS test. Tweaking timeout for codesize test for windows long case. -mcafee
git-svn-id: svn://10.0.0.236/trunk@135384 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 03:13:52 +00:00
dougt%netscape.com
58e59e6fcb fixing the mac
git-svn-id: svn://10.0.0.236/trunk@135383 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 03:07:28 +00:00
wtc%netscape.com
95cab123a2 Need to test for null pointers before destroying the lock and condition
variable.  If NSS initialization fails, this lock and condition variable
may not get created.


git-svn-id: svn://10.0.0.236/trunk@135382 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 02:47:46 +00:00
jkeiser%netscape.com
e9be49495e Make mouseover/mouseout/hover apply only to elements (bug 103055), r=bryner@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135381 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 02:10:57 +00:00
wtc%netscape.com
a4b978b840 I made a mistake in the previous checkin. certdb.h doesn't need to be
included because the new function CERT_FindCertBySubjKeyID is declared in
cert.h.


git-svn-id: svn://10.0.0.236/trunk@135380 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 02:08:51 +00:00
pschwartau%netscape.com
eeee2c78f1 Adding more comments.
git-svn-id: svn://10.0.0.236/trunk@135379 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 01:54:54 +00:00
pschwartau%netscape.com
5a4ba94c0c Initial add. Regression test for bug 185485.
git-svn-id: svn://10.0.0.236/trunk@135378 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 01:41:34 +00:00
wtc%netscape.com
688bbc9eba Bug 183612: added support for looking up a cert by subject key ID and
creating a CMS recipient info from a subject key ID.  The patch was
contributed by Javi Delgadillo <javi@netscape.com>. r=relyea, wtc.
Modified Files:
	certdb/cert.h certdb/certdb.c certdb/certdb.h certdb/certv3.c
	certdb/stanpcertdb.c nss/nss.def nss/nssinit.c
	pk11wrap/pk11cert.c pk11wrap/pk11func.h pk11wrap/secmod.h
	pki/pki3hack.c smime/cms.h smime/cmslocal.h smime/cmspubkey.c
	smime/cmsrecinfo.c smime/cmssiginfo.c smime/cmst.h
	smime/smime.def


git-svn-id: svn://10.0.0.236/trunk@135377 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 01:39:46 +00:00
jkeiser%netscape.com
a18add6468 Make /applet close things inside applet tag (bug 129888), patch by adu@sparc.spb.su, r=harishd@netscape.com, sr=heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135376 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 01:28:16 +00:00
jkeiser%netscape.com
da9408f07a Remove 8 nested frames limit on framesets (bug 175270), patch by mkaply@us.ibm.com, r=jkeiser@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135375 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 01:10:03 +00:00
dougt%netscape.com
c57ad9b1ea Implementing XPInstall Signing. sr=dveditz, r=mstoltz, b=178687
git-svn-id: svn://10.0.0.236/trunk@135374 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:59:42 +00:00
jkeiser%netscape.com
0b701faeb3 Make empty dropdowns handle key events (bug 147148), r=peterl@netscape.com, sr=sfraser@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135373 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:56:01 +00:00
rbs%maths.uq.edu.au
2129932d47 Remiander of bug 169590. Hook a catch-all W3C entity converter and user-prefs for custom levels of entity-zation in the editor's '<HTML> Source' and 'Save As...'
git-svn-id: svn://10.0.0.236/trunk@135372 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:41:25 +00:00
cltbld%netscape.com
13a28d0c07 Updating trunk to 1.3b, Bug#184465 r=lpham/sr=kysmith. ycalonje checking in as cltbld
git-svn-id: svn://10.0.0.236/trunk@135371 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:25:49 +00:00
gerv%gerv.net
f6cd51d519 Bug 184949 - CSV buglists are missing the Bug ID column. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@135369 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:00:46 +00:00
leaf%mozilla.org
32d445e96d Automated update
git-svn-id: svn://10.0.0.236/trunk@135368 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-17 00:00:09 +00:00
tor%cs.brown.edu
c672fa1a0f Bug 185466 - add version checking to system zlib check. r=cls
git-svn-id: svn://10.0.0.236/trunk@135367 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 23:54:59 +00:00
rogerl%netscape.com
b39ead64f5 Swicth Environment to deque. Fixes to defineHoistedVar.
git-svn-id: svn://10.0.0.236/trunk@135366 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 23:54:40 +00:00
jkeiser%netscape.com
12458accbb Crasher on changing input type with JS (bug 175670), patch by Rick.Ju@sun.com, r=jkeiser@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@135365 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 23:49:16 +00:00
samuel%sieb.net
e09fa0a7e8 Bug 139057 - fix chatzilla's response to certain pings
patch by twpol@aol.com
r=rginda


git-svn-id: svn://10.0.0.236/trunk@135360 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 23:28:54 +00:00
cmanske%netscape.com
c7d7840bac Remove 'AppendStringToMenulist' JS method. b=183055, r=neil@parkwaycc.co.uk, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@135359 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 22:35:22 +00:00
rbs%maths.uq.edu.au
bc2c3e42db No need to attempt to load mathml.css if not necessary, b=183866, r=heikki, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135358 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 22:22:12 +00:00
locka%iol.ie
1e77782c91 Fix bustage in plugin when MOZ_OBJDIR is defined. b=185679 r=dbradley@netscape.com sr=seawood@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135357 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 22:05:05 +00:00
asasaki%netscape.com
b414615e30 184461: update user agent string to 1.3b. r=lpham sr=granrose
git-svn-id: svn://10.0.0.236/trunk@135355 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 21:48:44 +00:00
leaf%mozilla.org
c81c9930dc Automated update
git-svn-id: svn://10.0.0.236/trunk@135354 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 21:45:06 +00:00
cbiesinger%web.de
7bb3efc86d 185621 r=cls qt port should define QT_NO_STL
git-svn-id: svn://10.0.0.236/trunk@135353 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 21:39:32 +00:00
dougt%netscape.com
8b55c59f57 Fixes crash caused by bug 184548. r=adamlock, sr=darin
git-svn-id: svn://10.0.0.236/trunk@135352 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 19:26:58 +00:00
sspitzer%netscape.com
5582baff26 add comment about how you can use the "mail.compose.other.header" pref
for X-Face, Approved, or other optional headers.  r/sr=no one.


git-svn-id: svn://10.0.0.236/trunk@135351 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 18:39:52 +00:00
nboyd%atg.com
a6d2c8e2e2 Add link to release candidate.
git-svn-id: svn://10.0.0.236/trunk@135350 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 16:51:33 +00:00
sicking%bigfoot.com
50dc5c7caa Bug 182031: Try to get the prettyprinter to work reliably by fixing an uninitialized variable in the sync-loader.
r=jkeiser sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135349 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 16:08:09 +00:00
jshin%mailaps.org
df0ceb7a68 Add 'wide'(16bit) non-Unicode truetype font support. Use 'nsAutoArray' for
temporary buffer allocation/deallocation. b=177877, r=shanjian, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@135348 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 15:11:43 +00:00
mostafah%oeone.com
7e8165e23c Checked in patch for bug 185145: libical does not build under cygwin perl in textmode
git-svn-id: svn://10.0.0.236/trunk@135347 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 14:54:31 +00:00
cbiesinger%web.de
98c2faef2f 185517 qt mozilla doesn't display images
QT ONLY - r=timeless rs=bz


git-svn-id: svn://10.0.0.236/trunk@135343 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 09:07:15 +00:00
jkeiser%netscape.com
d5d000ed33 Make empty tables with fixes layout show up (bug 128873), r=karnaze@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@135340 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 07:58:39 +00:00
jouni%heikniemi.net
61451dc92c Bug 185332: Rewrite the description for timezone param (typo fixes etc.)
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@135337 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 06:28:14 +00:00
depstein%netscape.com
aa72c3bbb3 Enhanced nsIWebBrowserChrome and nsIEmbeddingSiteWindow test implementations. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135336 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 03:48:36 +00:00
bienvenu%netscape.com
3675efabd2 make newly discovered imap folders be collapsed by default, fix 147528 r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@135335 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-16 02:08:53 +00:00
cbiesinger%web.de
240d91c5a0 185465 mismatched free in nsWidget
QT ONLY - r=timeless rs=bz


git-svn-id: svn://10.0.0.236/trunk@135334 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 22:04:19 +00:00
bratell%lysator.liu.se
ba519d3390 Backout of bug 110718 to fix Tp regression and raise-on-load issues.
git-svn-id: svn://10.0.0.236/trunk@135333 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 19:52:22 +00:00
ere%atp.fi
ce66069b6e Bug 165090 - spurious "Server has disconnected" messages
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135332 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 19:36:19 +00:00
bratell%lysator.liu.se
0467e7ac4c Patch for bug 59670 by Aleksey Nogin. Initialize variables before using them. r=dveditz, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@135331 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 19:17:20 +00:00
bratell%lysator.liu.se
2c992d1d1c Checkin fix for bug 59676 for Aleksey Nogin. Remove redundant code. r=jkeider, sr=brynar
git-svn-id: svn://10.0.0.236/trunk@135328 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 19:01:29 +00:00
dbaron%fas.harvard.edu
fb891bd028 Remove DEBUG code that causes leak of VoidArray's mChildren. Patch from Harshal <keeda@hotpop.com>. r=bzbarsky sr=dbaron b=146549
git-svn-id: svn://10.0.0.236/trunk@135324 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 16:13:21 +00:00
bbaetz%student.usyd.edu.au
f60e59ef75 Bug 158499 - Templatise XML bug output
r=gerv, justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135318 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 09:24:08 +00:00
gerv%gerv.net
03bc3977c4 Bug 116819 - Attach and Reassign in one fell swoop. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@135317 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 09:01:15 +00:00
dbaron%fas.harvard.edu
043b1f6e0b Add testcases for 134580 and 155333.
git-svn-id: svn://10.0.0.236/trunk@135316 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 01:47:10 +00:00
alexsavulov%netscape.com
7fe04f7839 Fix for bug 180341: form.submit submitts now sychronously in standard and
quirks mode. there is no NS_FORM_SUBMIT event firing in standard mode for
the form element so there is also no onSubmit event in standard mode anymore.
r= jkeiser sr= jst


git-svn-id: svn://10.0.0.236/trunk@135315 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-15 01:27:57 +00:00
blythe%netscape.com
c9c1c5f0d0 Fix linux bustage.
git-svn-id: svn://10.0.0.236/trunk@135314 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 23:47:19 +00:00
blythe%netscape.com
75560f0321 Undecorate windows symbols.
git-svn-id: svn://10.0.0.236/trunk@135313 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 22:53:31 +00:00
cbiesinger%web.de
fc9b80f067 184905 r=timeless rs=bz convert gfx part of qt port to use PR_LOG rather than printf
git-svn-id: svn://10.0.0.236/trunk@135312 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 22:51:27 +00:00
blizzard%redhat.com
3170d485fc Bug #183841. Shortcut for "Open Context Menu" doesn't work, shift-F10. Send context menu event when someone hits shift-F10. r=bryner,sr=blizzard patch from bolian.yin@sun.com.
git-svn-id: svn://10.0.0.236/trunk@135311 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 22:23:06 +00:00
blizzard%redhat.com
d580a442a6 Bug #184956. pdf plugin crashes with gtk2. Fix from robin.lu@sun.com.
git-svn-id: svn://10.0.0.236/trunk@135310 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 22:03:56 +00:00
blizzard%redhat.com
cd52d342ea Remove even more debug spew. No bug.
git-svn-id: svn://10.0.0.236/trunk@135309 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 21:48:19 +00:00
sspitzer%netscape.com
002b9c21ce fix typo in comment.
git-svn-id: svn://10.0.0.236/trunk@135308 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 20:18:56 +00:00
blizzard%redhat.com
39ea8edd4f Part of bug #182726. Use gtk_socket_add_id() instead of gtk_socket_steal().
git-svn-id: svn://10.0.0.236/trunk@135307 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 20:17:09 +00:00
igor%mir2.org
037e9fa97c Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=181834
Ignore dynamic scope flag for nested functions and functions defined inside with statements


git-svn-id: svn://10.0.0.236/trunk@135306 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 18:56:27 +00:00
cbiesinger%web.de
fb773edd89 185366 r=dbaron, r+sr=roc
fix css error


git-svn-id: svn://10.0.0.236/trunk@135305 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 18:39:50 +00:00
bernd.mielke%snafu.de
9b8af87292 dont paint borders for hidden table frames, callqueryinterface cleanup bug 32199 r=karnaze sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@135304 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 17:52:27 +00:00
bienvenu%netscape.com
d5bb6ca90a fix compacting of local folders to follow symlinks, r=dmose, sr=sspitzer, 177635
git-svn-id: svn://10.0.0.236/trunk@135303 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 17:41:25 +00:00
roc+%cs.cmu.edu
f1cc64ede4 Bug 172031. Make CanvasFrame put back the block preferred size before incrementally reflowing its block, since the block needs that preferred size to incrementally reflow its absolute frames properly. r=karnaze,sr=kin
git-svn-id: svn://10.0.0.236/trunk@135302 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 16:55:41 +00:00
roc+%cs.cmu.edu
8293c257e0 Bug 173072. Ensure that after styles are cleared, we reexecute any work that could depend on the cleared style structs, to ensure a later CalcStyleDifference will not ignore a style struct we really depend on. r+sr=kin
git-svn-id: svn://10.0.0.236/trunk@135301 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 16:18:57 +00:00
cbiesinger%web.de
842b326b3b 184075 r=darin sr=bz nsAboutRedirector should not use literal number
git-svn-id: svn://10.0.0.236/trunk@135300 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 14:56:26 +00:00
jaggernaut%netscape.com
d5ccedbb4e Bug 131256: make status bar reflect actual activity, lower time between status updates from 400ms to 40ms. r=mozbot, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@135299 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 10:49:15 +00:00
aaronl%netscape.com
ed5fb21283 Bug 110718. During the 'transferring' when the currently visible document is a zombie, the keyboard is dead for the entire document. r=bryner, sr=hyatt+scc
git-svn-id: svn://10.0.0.236/trunk@135298 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 08:05:51 +00:00
bratell%lysator.liu.se
780fef7a28 Bug 180996, fallout from the parser node landing in bug 177994 - nsParserNodes are not something one can hang on to. Instead read the interesting parts of them when they come in and then drop them. r=harishd, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135297 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 06:16:56 +00:00
paper%animecity.nu
40c0f9792a Bug 181829 remove imgIDecoderObserver from imgContainerGIF. r=biesi, sr=tor
git-svn-id: svn://10.0.0.236/trunk@135296 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 06:14:16 +00:00
blizzard%redhat.com
d04951cef5 Turn off debugging spew. No bug.
git-svn-id: svn://10.0.0.236/trunk@135295 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 04:40:04 +00:00
blizzard%redhat.com
06894609d9 Fix a define that shouldn't be in here. No bug, just a cleanup.
git-svn-id: svn://10.0.0.236/trunk@135294 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 04:34:18 +00:00
blizzard%redhat.com
c4bd755ff1 Bug #182726. GTK 2.1 breaks gtk2xtbin. Make sure to add the xtbin window to the socket. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@135293 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 04:33:47 +00:00
jkeiser%netscape.com
710982ab66 submit name/value pairs on submit, fix ebay crash (bug 184207), r=alexsavulov@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135291 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 02:38:17 +00:00
pschwartau%netscape.com
93579c0475 Initial add. Regression test by igor@icesoft.no for bug 185165.
git-svn-id: svn://10.0.0.236/trunk@135288 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 02:33:58 +00:00
aaronl%netscape.com
c5e7e952a6 Bug 181910. Click on 2 links in quick succession, onload has problems with final loaded page. r=rpotts, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135279 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:46:37 +00:00
aaronl%netscape.com
29d19c09a2 Bug 162090. Mozilla not respecting SPI_GETWORKAREA when opening new window. Patch by danm. r=aaronl, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135278 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:36:29 +00:00
aaronl%netscape.com
2ae2069aba Bug 184518. Repeated char find when >2 chars required to start it. r=caillon, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135277 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:32:27 +00:00
aaronl%netscape.com
bd09b924bb Bug 180977. Typeaheadfind -- find previous wouldn't go wrap around to end from start of page. r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@135276 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:30:53 +00:00
aaronl%netscape.com
3623bf6d81 Bug 182451. Beep when first key pressed in win95/98. r=biesi, sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@135275 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:27:33 +00:00
aaronl%netscape.com
c0ba317e80 Bug 106398. Fix wording of some prefs in tabbed browsing pref panel. r=jgaunt, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@135274 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:21:42 +00:00
cmanske%netscape.com
b9f70dc31e Fixed insert HTML for Message Composer, b=180303 (wrong # in last checkin!), r=neil@parkwaycc.co.uk, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@135273 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:20:40 +00:00
cmanske%netscape.com
b9ab0290c8 Fixed insert HTML for Message Composer, b=183055, r=neil@parkwaycc.co.uk, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@135272 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:18:14 +00:00
cmanske%netscape.com
034e7cd43e Fix menulist selection and other problems; fix by neil@parkwaycc.co.uk, r=cmanske, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@135271 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-14 00:14:54 +00:00
bzbarsky%mit.edu
5b83865cb9 Fix leak when loading standalone images. Bug 179498, patch by keeda@hotpop.com
(Harshal), r=jst, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@135270 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 23:53:43 +00:00
rogerl%netscape.com
7c3752c0e0 Incrementing to latest ECMA changes.
git-svn-id: svn://10.0.0.236/trunk@135269 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 23:14:32 +00:00
chanial%noos.fr
b3606d14d1 bookmark cleanup. make clear the distinction between target and selection in trees.
now, insertion on a folder doesn't append but inserts before it.
Allow multiple selection of bookmarks and folders for the home pages.


git-svn-id: svn://10.0.0.236/trunk@135268 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 23:06:10 +00:00
dougt%netscape.com
d0c13e95b3 Allow caller to obtain cert. r=mstoltz, javi. sr=dveditz, b=179016
git-svn-id: svn://10.0.0.236/trunk@135266 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 22:26:43 +00:00
dougt%netscape.com
e6df6a479e expose the number of signed items a jar. r=mstoltz, sr=dveditz, b=179579
git-svn-id: svn://10.0.0.236/trunk@135265 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 22:24:12 +00:00
rbs%maths.uq.edu.au
76ce811794 Refine the conversion of entities during serialization, b=169590, r=nhotta, sr=jst
git-svn-id: svn://10.0.0.236/trunk@135264 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 22:12:10 +00:00
pschwartau%netscape.com
eadfe426e2 Improving readability.
git-svn-id: svn://10.0.0.236/trunk@135262 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 21:40:32 +00:00
kaie%netscape.com
1467cc0fdc b=182258 Give separate signature validity and sender address mismatch feedback
r=javi sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135261 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 20:47:32 +00:00
kaie%netscape.com
f0157ede55 b=175320 Support clean profile & NSS shutdown at any time + Mozilla needs to clean up on exit to allow for PSM failure detection
r=ccarlen/morse sr=darin


git-svn-id: svn://10.0.0.236/trunk@135260 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 20:39:03 +00:00
dbaron%fas.harvard.edu
721fd4b402 Don't set NS_BLOCK_SPACE_MGR and NS_BLOCK_WRAP_SIZE on relatively positioned blocks, by default. Use |ConstructBlock| for them rather than duplicating it, slightly incorrectly. b=180711 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@135259 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 20:13:17 +00:00
sspitzer%netscape.com
edad898b5c fix for #10872. remember last selected message feature (4xp)
plus some code cleanup.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135258 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 19:57:27 +00:00
sspitzer%netscape.com
f1f023d9c2 fix for #172178. for servers, "Edit | Properties..." and "Properties..." folder context menu
should open account manager dialog to the selected server.
also some code cleanup.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135257 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 19:50:31 +00:00
johnkeis
a5ffdc25f4 Initial Revision
git-svn-id: svn://10.0.0.236/trunk@135256 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 19:43:18 +00:00
relyea%netscape.com
10cf066de9 Increment the tmpbuf pointer to the correct index point
git-svn-id: svn://10.0.0.236/trunk@135255 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 19:02:13 +00:00
igor%mir2.org
07e3ee8c09 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@135254 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 18:26:31 +00:00
igor%mir2.org
57a2f16de5 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@135251 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 18:16:12 +00:00
bernd.mielke%snafu.de
fbc508401a cleanup of unsigned int arithmethic + callqueryinterface, initial patch by tenthumbs@cybernex.net bug 157153 r=karnaze sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@135250 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 15:21:38 +00:00
igor%mir2.org
3b0b840f47 Document update
git-svn-id: svn://10.0.0.236/trunk@135249 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 14:21:38 +00:00
cbiesinger%web.de
b67857a700 184916 patch by neil@parkwaycc.co.uk r=biesi sr=tor
Crash entering quicktime test site


git-svn-id: svn://10.0.0.236/trunk@135248 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 14:11:16 +00:00
axel%pike.org
3e87259071 more on elements, use-attribute-sets has open issues
git-svn-id: svn://10.0.0.236/trunk@135245 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 13:09:51 +00:00
peterv%netscape.com
8a81cb0735 Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@135244 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 12:39:14 +00:00
glazman%netscape.com
edf8ebde5c part of fix bustage, peterv's on the mac side
git-svn-id: svn://10.0.0.236/trunk@135243 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 12:32:31 +00:00
igor%mir2.org
06f9755b5e Fix for http://bugzilla.mozilla.org/show_bug.cgi?id=185165
I made ScriptRuntime.escapeString to escape \ and remove code to escape single quote ' as it is unreachable due to if (' ' <= c && c <= '~' && c != '"' && c != '\\') check as ' should not be escaped.


git-svn-id: svn://10.0.0.236/trunk@135242 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 11:56:54 +00:00
justdave%syndicomm.com
6b977246aa bumping version number to 2.17.2
git-svn-id: svn://10.0.0.236/trunk@135241 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 11:33:07 +00:00
justdave%syndicomm.com
a20b1e85e0 Bug 183188: collectstats.pl no longer makes data/mining world-readable
patch by Christian Franke <Franke@computer.org>
r= bbaetz, justave   a= justdave


git-svn-id: svn://10.0.0.236/trunk@135238 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 11:03:14 +00:00
glazman%netscape.com
9f5bf2939f fixing bustage, so it was not my last checkin...
git-svn-id: svn://10.0.0.236/trunk@135237 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 10:17:42 +00:00
glazman%netscape.com
ee3dc59fbf fixing regression in composer, it was impossible to set foreground and background color; b=184505, r=brade, sr=kin, q=is this my last checkin?
git-svn-id: svn://10.0.0.236/trunk@135236 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:56:21 +00:00
bryner%netscape.com
35e822f021 Landing changes from CHIMERA_M1_0_1_BRANCH. Not part of the normal build.
git-svn-id: svn://10.0.0.236/trunk@135235 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:43:18 +00:00
bryner%netscape.com
6d13e4d78a Add nsIPluginWidget.h from CHIMERA_M1_0_1_BRANCH. Code by sfraser, r=pinkerton, sr=bryner.
git-svn-id: svn://10.0.0.236/trunk@135234 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:42:16 +00:00
peterv%netscape.com
d713ab9563 Back out part of patch for bug 183999, which caused bug 185153.
git-svn-id: svn://10.0.0.236/trunk@135233 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:41:42 +00:00
peterv%netscape.com
6105861ae3 Fix obvious error in patch for bug 183999 which caused bug 185033.
git-svn-id: svn://10.0.0.236/trunk@135232 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:17:44 +00:00
katakai%japan.sun.com
e2ff90c7bd bug 128572
CPU usage jumps to 100% when loading a page with wrong charset
r=bstell,sr=rbs


git-svn-id: svn://10.0.0.236/trunk@135231 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 08:04:51 +00:00
sspitzer%netscape.com
aa101aca06 fix for #75584. get the delete key (and shift delete key)
to work in the advanced search dialog. thanks to varada for the initial patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@135230 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 07:33:41 +00:00
jaggernaut%netscape.com
35a4f7e9c7 Bug 131256: status bar doesn't reflect actual activity. Back out change that made us stop sending status change notifications for images in documents. r=bzbarsky, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@135229 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 07:21:34 +00:00
sspitzer%netscape.com
16f1d12629 fix for bug #73515. delete button should disable in advanced news searches
(as we don't allow you to delete (cancel) from that dialog.)

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135228 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 06:52:18 +00:00
sspitzer%netscape.com
53b48b9be9 fix for #185147. problems when you delete selected messages out from underneath the
advanced search dialog.  (similar to bug #172392)

also make it so when the number of advanced search
results changes (due to deletes) we update the status text.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135227 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 06:33:45 +00:00
robin.lu%sun.com
9eeadf01e1 for bug 180147 [gtk2] need to port over the null plugin.patch=robin.lu@sun.com
r=blizzard sr=bryner


git-svn-id: svn://10.0.0.236/trunk@135226 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 06:15:14 +00:00
nicolson%netscape.com
a0a78775dd Fix 180827: Update version strings for JSS 3.3.
git-svn-id: svn://10.0.0.236/trunk@135225 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 06:12:30 +00:00
sspitzer%netscape.com
05a1c2ba84 fix for bug #172392. delete from other views (like search window, stand alone msg window)
cause selection problems in thread pane, if deleted message was in the selection.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135224 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 03:50:53 +00:00
blizzard%redhat.com
8ff00be380 Bug #184941. mozilla crashes while printing certain pages. Make sure that a widget has been created before moving it. Not part of the regular build.
git-svn-id: svn://10.0.0.236/trunk@135223 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 03:46:33 +00:00
sspitzer%netscape.com
c1bd5bfbac no brainer code cleanup. not part of any bug. rs=bienvenu
git-svn-id: svn://10.0.0.236/trunk@135222 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 03:43:30 +00:00
seawood%netscape.com
25cc1097dc Not all versions of cygpath support the convenient -m function. Too bad.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@135221 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 03:38:39 +00:00
seawood%netscape.com
830fc1c83c Fix typo.
git-svn-id: svn://10.0.0.236/trunk@135220 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 03:21:37 +00:00
seawood%netscape.com
afb973633f Add SRCS_IN_OBJDIR variable to workaround requirement introduced by bug 141834 that srcfiles must be in the srcdir.
Bug #171753 r=bryner


git-svn-id: svn://10.0.0.236/trunk@135219 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:36:06 +00:00
mcafee%netscape.com
e168773802 Adding changes we made to autosummary.win.bash here, quote change for find/shells, dos2unix cleanup for tbox.
git-svn-id: svn://10.0.0.236/trunk@135218 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:11:27 +00:00
bryner%netscape.com
ceba12038d Don't apply a border to <toolbox> (bug 184588). r=blizzard, sr=ben.
git-svn-id: svn://10.0.0.236/trunk@135217 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:10:08 +00:00
mcafee%netscape.com
c1b94a25eb oops, stomped on quote change.
git-svn-id: svn://10.0.0.236/trunk@135216 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:08:27 +00:00
wtc%netscape.com
aa731d6f0a Bug 185074: open the files we just did a "chmod -w" on once to work around
a Mac OS X NFS bug. Subsequent opens will see the file is readonly with no
delay.


git-svn-id: svn://10.0.0.236/trunk@135214 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:06:34 +00:00
mcafee%netscape.com
fb45697dad Adding quotes for some shells, dos2unix cleanup to keep the tinderbox server happy. r=blythe
git-svn-id: svn://10.0.0.236/trunk@135213 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:03:24 +00:00
leaf%mozilla.org
c60f2173d7 Automated update
git-svn-id: svn://10.0.0.236/trunk@135212 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 02:00:16 +00:00
seawood%netscape.com
b0f2b8690d Add check for ml.exe when building psm on win32.
Bug #164646 r=bryner


git-svn-id: svn://10.0.0.236/trunk@135211 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 01:47:12 +00:00
nelsonb%netscape.com
9f7cd0929a Clean up command line options parsing and Usage message.
git-svn-id: svn://10.0.0.236/trunk@135210 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 01:25:45 +00:00
seawood%netscape.com
bb1c9a72a7 Pull calendar & libical by default for mac builds too.
git-svn-id: svn://10.0.0.236/trunk@135207 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 00:52:10 +00:00
shanjian%netscape.com
51b179520f #182089 Extended hkscs.uf and hkscs.ut for HKSCS-2001 support
Tools written by Anthony (anthony@thizlinux.com) to generate the new conversion table for
hkscs. Not part of the build, just put here for future reference.


git-svn-id: svn://10.0.0.236/trunk@135206 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 00:47:38 +00:00
shanjian%netscape.com
fb642043b4 #182089, Extended hkscs.uf and hkscs.ut for HKSCS-2001 support
update unicode conversion table for HKSCS.
proposed by: Anthony Fok
r=shanjian, sr=blizzard.


git-svn-id: svn://10.0.0.236/trunk@135204 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 00:38:32 +00:00
harishd%netscape.com
a2a40a39a6 Backing out my changes to see if it fixes the orangeness
git-svn-id: svn://10.0.0.236/trunk@135202 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 00:28:47 +00:00
relyea%netscape.com
0ef77cf53b Use correct sense of the timeout value.
git-svn-id: svn://10.0.0.236/trunk@135201 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-13 00:25:21 +00:00
darin%netscape.com
ee38e85440 fixes bug 184436 r=dougt sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@135199 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:57:16 +00:00
dougt%netscape.com
8758c7ee75 Fixes XPCOM from using the wrong GRE define tag. r=chak, sr=dveditz, b=185113
git-svn-id: svn://10.0.0.236/trunk@135198 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:48:51 +00:00
pschwartau%netscape.com
9fd4b1899c Added 'compile functions with dynamic scope' feature of Rhino to the test. Necessary to expose the bug.
git-svn-id: svn://10.0.0.236/trunk@135197 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:31:44 +00:00
cbiesinger%web.de
6f84bb1ca2 182554 r=caillon sr=roc+moz cleanup nsImageMap.cpp
git-svn-id: svn://10.0.0.236/trunk@135196 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:22:17 +00:00
locka%iol.ie
ba4031047e Detabbed file. No code changes.
git-svn-id: svn://10.0.0.236/trunk@135193 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:14:24 +00:00
locka%iol.ie
b7cf03b8a1 Implement headers arg on nsIWebNavigation::loadURI b=181903 r=bryner@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135192 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:10:59 +00:00
seawood%netscape.com
541204967e Rename ical libraries to have _lgpl suffix (to be consistent with libart).
Fix .def files so that the dynamic libs compile on win32 (thanks to Mostafa Hosseini <mostafah@oeone.com> for the patch)
Bug #178798 r=blizzard


git-svn-id: svn://10.0.0.236/trunk@135191 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 23:03:26 +00:00
bryner%netscape.com
b396944e0c Use the correct GtkStyle for painting dropdown arrows. This fixes the problem of the arrow not painting with some themes. Bug 184583, r=blizzard, sr=ben.
git-svn-id: svn://10.0.0.236/trunk@135190 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:59:14 +00:00
jkeiser%netscape.com
32a833e9ca Select not reframing when size changes (bug 170446), r=rods@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@135189 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:58:48 +00:00
cbiesinger%web.de
6072949558 184983 patch by timeless r=biesi rs=bz
QT ONLY - Make QT port build w/ Qt2


git-svn-id: svn://10.0.0.236/trunk@135188 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:56:04 +00:00
cbiesinger%web.de
cfbd98d5f2 bug 184982 patch by timeless and me, r=biesi/timeless
QT ONLY - Make PostScript module optional for QT


git-svn-id: svn://10.0.0.236/trunk@135187 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:43:27 +00:00
sfraser%netscape.com
44a29b5da9 Remove duplicate text services files, which fixes a bug with the mac build picking up the wrong source and header files (bug 184935). This fixes bugscape bug 21720.
git-svn-id: svn://10.0.0.236/trunk@135186 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:42:53 +00:00
harishd%netscape.com
b38cebbd49 Reduce the size of CStartToken. b=179523, r=heikki sr=jst.
Added a couple of testcases to the parser regression test suite


git-svn-id: svn://10.0.0.236/trunk@135185 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:38:40 +00:00
jst%netscape.com
6fca90d049 Fixing bug 183604. Making the DOM code reuse the timer for interval timeouts in stead of creating a new timeout every time. r=caillon@returnzero.com, sr=peterv@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135184 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:37:07 +00:00
cltbld%netscape.com
d85a1dfb03 Adding quotes for different shell support. r=blythe, mcafee checking in as cltlbd
git-svn-id: svn://10.0.0.236/trunk@135182 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:35:15 +00:00
cbiesinger%web.de
2e76182dea 184901 r=timeless rs=bz
QT ONLY - unresolved symbols in QT GFX -> fails to load


git-svn-id: svn://10.0.0.236/trunk@135181 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 22:28:04 +00:00
blizzard%redhat.com
70184ac4c3 Bug #178834. Startup script clobbers MOZ_PLUGIN_PATH. a=peter
git-svn-id: svn://10.0.0.236/trunk@135177 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 20:28:27 +00:00
peterv%netscape.com
f50694efbd Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@135176 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 20:01:59 +00:00
kin%netscape.com
87b9e39acc sfraser's fix for commercial blocker bugscape bug 21720 (Spell checker fails find misspelled words (crash on exit from spellchecker)), which is caused by bugzilla bug 184935 (Mac build picks up the wrong nsTextServicesDocument.cpp; spell checking busted)
This patch fixes the editor project to search mozilla/editor/txtsvc before
mozilla/libeditor/, adds nsFilteredContentIterator.cpp, and adds #error to the
unused files.


r=jfrancis@netscape.com  sr=kin@netscape.com


git-svn-id: svn://10.0.0.236/trunk@135173 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 18:04:31 +00:00
caillon%returnzero.com
47f4be1a80 Bug 179269 - New page opens which should display tabular data. Error message in new page instead of data.
Fix contributed by Harshal <keeda@hotpop.com>
r=caillon sr=jst


git-svn-id: svn://10.0.0.236/trunk@135172 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 15:48:30 +00:00
wtc%netscape.com
2b957e0bab Bug 176881: we should also look at the high 32 bits of the performance
counter frequency.  Ignoring the high part of the frequency will cause
our interval timer code to malfunction if the high part is not zero.
Also took the opportunity to simplify the arithmetics.


git-svn-id: svn://10.0.0.236/trunk@135170 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 14:51:20 +00:00
timeless%mozdev.org
46d2fe6e70 Bug 182171 "Javascript" should be "JavaScript " and more...
patch by bugzilla@gemal.dk r=caillon sr=alecf


git-svn-id: svn://10.0.0.236/trunk@135169 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 12:13:04 +00:00
bryner%netscape.com
8623469023 Landing all changes from CHIMERA_M1_0_1_BRANCH onto the trunk, and adapting to trunk API changes. Not part of any normal build.
git-svn-id: svn://10.0.0.236/trunk@135168 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 11:55:38 +00:00
bryner%netscape.com
a3c670c75f Landing all changes from CHIMERA_M1_0_1_BRANCH onto the trunk, and adapting to trunk API changes. Not part of any normal build.
git-svn-id: svn://10.0.0.236/trunk@135167 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 11:34:25 +00:00
igor%mir2.org
f9b2146387 I removed InterpretedFunction.itsClosure as it was effectively used only itsClosure != null test and the effect can be done via setting InterpretedFunction.useDynamicScope to false.
git-svn-id: svn://10.0.0.236/trunk@135166 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 10:46:52 +00:00
sspitzer%netscape.com
a9c60692d5 fix some minor whitespace changes that I had sitting in my tree.
r/sr=no one.


git-svn-id: svn://10.0.0.236/trunk@135165 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 06:25:17 +00:00
sspitzer%netscape.com
262efeedf9 real fix for #59638. for the stand alone msg window, the way to get
"next unread" to work is to do the work after we get the "folder loaded"
event notification.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135164 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 06:16:20 +00:00
nelsonb%netscape.com
d36cf9c052 Support SHA256, SHA384, and SHA512 hashes in NSS.
git-svn-id: svn://10.0.0.236/trunk@135163 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 06:05:45 +00:00
depstein%netscape.com
c0472dafe5 Added post-AsyncOpen() tests to OnStartRequest() impl in BrowserImpl.cpp. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135162 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 02:38:49 +00:00
wtc%netscape.com
b4939c1915 Bug 180293: moved the OpenVMS build from the POSIX subsystem to native VMS
(GNV).  The patch is contributed by Colin Blakes <colin@theblakes.com>.
Modified Files: configure configure.in rules.mk pr/include/md/Makefile
        openvms.c
Added Files: plds_symvec.opt plc_symvec.opt nspr_symvec.opt


git-svn-id: svn://10.0.0.236/trunk@135156 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 01:41:31 +00:00
asasaki%netscape.com
8612e144a2 168580: unhardcode versions in embedding files. r=cls, build changes
with r=cls don't require sr=.


git-svn-id: svn://10.0.0.236/trunk@135155 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 01:18:52 +00:00
jfrancis%netscape.com
131cbc2ca0 fix for 184308: cf_html bustage. fencepost error. r=brade; sr=bz; a=asa
git-svn-id: svn://10.0.0.236/trunk@135154 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 01:05:53 +00:00
timeless%mozdev.org
88968c6c89 Bug 180995 nsStatusBarBiffManager::~nsStatusBarBiffManager() unconditionally releases a null member
r=sspitzer sr=bz


git-svn-id: svn://10.0.0.236/trunk@135153 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:46:45 +00:00
wtc%netscape.com
c898f0120e Bug 180293: ported nsinstall.c to native VMS (GNV) environment. The patch
is contributed by Colin Blakes <colin@theblakes.com>. r=brendan.


git-svn-id: svn://10.0.0.236/trunk@135151 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:28:25 +00:00
leaf%mozilla.org
7ffee1dfad Automated update
git-svn-id: svn://10.0.0.236/trunk@135148 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:15:11 +00:00
seawood%netscape.com
9ad86c9304 Add $(LDFLAGS) to the local nsinstall link command.
Bug #88283 r=wtc


git-svn-id: svn://10.0.0.236/trunk@135147 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:13:46 +00:00
timeless%mozdev.org
96a682a69b Bug 172633 [RFE]link plugindoc.mozdev.org in help about plugins
r=biesi sr=bz


git-svn-id: svn://10.0.0.236/trunk@135146 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:12:16 +00:00
colin%theblakes.com
8b09137c55 OpenVMS build changes. b=180290. r=cls
git-svn-id: svn://10.0.0.236/trunk@135144 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:08:59 +00:00
kin%netscape.com
4b579201bb Fix for commercial blocker bug (bugscape bug 21716 (Spell checker fails to open))
Added missing txtsvc.xpt to packgages-* files:

    mozilla/xpinstall/packager/packages-mac
    mozilla/xpinstall/packager/packages-os2
    mozilla/xpinstall/packager/packages-static-unix
    mozilla/xpinstall/packager/packages-static-win
    mozilla/xpinstall/packager/packages-unix
    mozilla/xpinstall/packager/packages-win

This was fallout from the checkin for bugzilla bug 173046.


git-svn-id: svn://10.0.0.236/trunk@135143 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-12 00:04:22 +00:00
wtc%netscape.com
e8cfa137a1 Bug 166412: ported NSPR to AIX 5.1. AIX 5.1 is the same as AIX 4.3 as far
as NSPR is concerned.  Invented a new macro AIX4_3_PLUS to indicate AIX 4.3
or higher.
Modified files: configure configure.in _pth.h prnetdb.c


git-svn-id: svn://10.0.0.236/trunk@135142 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 23:10:41 +00:00
wtc%netscape.com
edd8212c6a Bug 175423: fixed the problems pointed out by gcc's -pedantic-errors flag.
Modified files: prwin16.h unix.c


git-svn-id: svn://10.0.0.236/trunk@135141 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 23:03:31 +00:00
igor%mir2.org
16a2a4e8a0 I moved itsUseDynamicScope from InterpreterData to InterpretedFunction as this flag affects only functions, not scripts and to initialize this flag not during script compilation but during function creation which happens at the start of script execution. It allows to alter the flag for already compiled scripts before their execution.
git-svn-id: svn://10.0.0.236/trunk@135140 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 22:28:00 +00:00
relyea%netscape.com
c2747050b5 Don't break solaris or linux (add the ';')
git-svn-id: svn://10.0.0.236/trunk@135137 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 17:56:49 +00:00
relyea%netscape.com
ab1e313edc Export new command to pull for token change events.
git-svn-id: svn://10.0.0.236/trunk@135136 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 17:53:20 +00:00
relyea%netscape.com
927e518bfe Program to test smartcard removal and insertion detection.
git-svn-id: svn://10.0.0.236/trunk@135135 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 17:44:53 +00:00
relyea%netscape.com
db9fdd7d91 Add token removal blocking function.
git-svn-id: svn://10.0.0.236/trunk@135134 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 17:43:24 +00:00
dbaron%fas.harvard.edu
119ebf6760 Fix uninitialized variable introduced last night. b=1777
git-svn-id: svn://10.0.0.236/trunk@135133 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 15:59:24 +00:00
peterv%netscape.com
b3b291a3a0 Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@135132 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 15:06:40 +00:00
timeless%mozdev.org
1e25a32c7e Bug 133714 Probably harmless typo.... (PresShell::SetCaretReadOnly Unreachable statement)
patch by riceman+bmo@mail.rit.edu r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@135131 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 15:04:26 +00:00
peterv%netscape.com
c369eaabd8 Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@135130 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:58:13 +00:00
seawood%netscape.com
8c0e151ae6 Use mkstemp instead of tempnam. Potential security issue.
Bug #173178 r=syd sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@135129 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:50:15 +00:00
peterv%netscape.com
3a3c75b9f7 Fix for bug 183999 (Modernize content). r=caillon, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@135128 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:24:49 +00:00
timeless%mozdev.org
c581b7a67f Bug 130600 Search includes MailWindowOverlay which includes viewZoomOverlay which throws an exception.
patch by neil@parkwaycc.co.uk r=jag sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135127 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:10:13 +00:00
timeless%mozdev.org
3c3f07a91f Bug 108271 Support RLE compression and bitfields for the BMP Decoder
patch by neil@parkwaycc.co.uk initial work by jdunn@netscape.com
r=biesi sr=tor


git-svn-id: svn://10.0.0.236/trunk@135126 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:06:51 +00:00
caillon%returnzero.com
8a1bf17a45 Re-landing these because I don't believe this are responsible for the Txul spike.
Bug 181975 - Convert layout to use nsIPrefService, nsIPrefBranch, and friends.
r/sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@135125 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:05:41 +00:00
timeless%mozdev.org
70ffbc9c7f 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


git-svn-id: svn://10.0.0.236/trunk@135124 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:02:19 +00:00
timeless%mozdev.org
93e075bee6 Bug 33732 [MW]Mousewheel scrolling scrolls listbox, not page
patch by frank.schoenheit@gmx.de r=rods sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@135123 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 13:47:44 +00:00
timeless%mozdev.org
60032561cb Bug 183639 Crash |delete datasource| in NS_NewRDFInMemoryDataSource
r=rjc sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@135122 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 12:54:00 +00:00
bzbarsky%mit.edu
9f1c84eb30 And backing bug 182124 yet again... why is comet the _only_ tinderbox showing
the problem?


git-svn-id: svn://10.0.0.236/trunk@135121 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 12:42:50 +00:00
axel%pike.org
f79cd7bb75 backout 74786, gcc 2.96 sucks
git-svn-id: svn://10.0.0.236/trunk@135120 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 11:09:06 +00:00
axel%pike.org
bdc822f042 bug 74786, prepare for string cleanup, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@135119 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 09:51:17 +00:00
seawood%netscape.com
48b0df8e03 Don't always link XIE in static builds.
Thanks to Kai Engert <kaie@netscape.com> for the patch.
Bug #184527 r=cls


git-svn-id: svn://10.0.0.236/trunk@135118 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 07:17:11 +00:00
seawood%netscape.com
e3cfacb8a6 When pulling standalone modules, pull the individual toplevel files first to avoid having the files disappear with cvs giving the ' warning: new-born <file> has disappeared' message.
Bug #122149 r=bryner


git-svn-id: svn://10.0.0.236/trunk@135116 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 07:06:43 +00:00
bratell%lysator.liu.se
d75d6c9b0c Bug 184230 - don't modify a constant string. This caused crashes when Mozilla was built with constant strings in read only memory. (/GF) r=timeless, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135115 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 06:40:46 +00:00
bstell%ix.netcom.com
79804d5ffc bug 144669 add FreeType2 function to convert Truetype to subsetted Postscript
r=Louie.Zhao, sr=jst


git-svn-id: svn://10.0.0.236/trunk@135114 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 06:26:25 +00:00
bstell%ix.netcom.com
53280bf0e1 bug 144669 code to convert Truetype to subsetted Postscript
r=Louie.Zhao, sr=jst


git-svn-id: svn://10.0.0.236/trunk@135113 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 06:24:48 +00:00
bzbarsky%mit.edu
9bee87fcca relanding bug 182124 since it looks like comet was just noise and the other Ts
boxes that cycled with this show no problems...


git-svn-id: svn://10.0.0.236/trunk@135112 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 05:40:14 +00:00
caillon%returnzero.com
d751688cb9 Backing out these changes since they appear to have caused a Txul regression on some tinderboxes (not all... weird...)
git-svn-id: svn://10.0.0.236/trunk@135111 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 05:11:02 +00:00
seawood%netscape.com
cd7937182e Fix CFData memory leak.
Bug #131306 r=beard


git-svn-id: svn://10.0.0.236/trunk@135110 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 05:05:42 +00:00
bzbarsky%mit.edu
e69b0ba88c Backing out bug 182124 because I think it caused Ts to go up...
git-svn-id: svn://10.0.0.236/trunk@135109 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:35:37 +00:00
leaf%mozilla.org
81b901b7c5 Automated update
git-svn-id: svn://10.0.0.236/trunk@135108 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:30:08 +00:00
sspitzer%netscape.com
e1ca468952 fix for #59638. cross folder navigation in the stand alone msg window
doesn't load the next unread message.  thanks to ssu for the initial patch,
and neil for the suggestions.  r/sr=bienvenu

fix for #49305.  in "view all headers" mode, we only see the last header
for headers where multiple headers are legal.  thanks to richard.li@sun.com
for the initial patch.  r/sr=bienvenu

fix for #179803. when we added mail views, we added "Sender is[n't] in addressbook"
support to filter / search / views, but it left us with two "Sender" menuitems.
this code unifies them into one.  on disk (for filters and views) both the old
way ("from in ab") and the new way ("from") work, so there isn't a migration issue.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135107 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:28:05 +00:00
sspitzer%netscape.com
cfe67012c1 optimization suggested by neil. use test() instead of substring()
[part of bug #59638]  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135106 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:20:23 +00:00
seawood%netscape.com
84fde43725 Fix our libical integration:
Pull libical & calendar by default.
RForce libical libs to be always dynamic & prefix them with moz
Bug $178798 r=blizzard


git-svn-id: svn://10.0.0.236/trunk@135105 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:15:45 +00:00
timeless%mozdev.org
c76dda3c44 Bug 184681 qt port fails to compile in plugins code
X and Qt don't get along...
r=peterl sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@135104 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:11:33 +00:00
timeless%mozdev.org
818b7881fd Fixing viewer crashes where prevFont->mFontMetrics is null
rearranged the code to use early returns/no else after returns.
r=jkeiser rs=bz


git-svn-id: svn://10.0.0.236/trunk@135103 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:11:23 +00:00
caillon%returnzero.com
b14aafcb58 Removing ifdef. r/sr=roc+moz. bug 181975
git-svn-id: svn://10.0.0.236/trunk@135102 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:11:04 +00:00
sspitzer%netscape.com
372cf3605c fix for bug #183965. assertions and problems when running news urls.
caused by the checkin for #179162.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135101 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:06:26 +00:00
sspitzer%netscape.com
b5ffcfe301 fix bug #184078. localize "All" and "Unread" in message views.
r=mstoltz,sr=dveditz,sspitzer.  thanks to Marek.Wawoczny@GmbH.rubikon.pl for the fix.


git-svn-id: svn://10.0.0.236/trunk@135100 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:03:20 +00:00
dbaron%fas.harvard.edu
10a7236c6a Correctly implement text-decoration in standards mode by drawing the underline on the element with the text-decoration property set. Refactor painting code a bit to avoid code duplication. Patch by Esben Mose Hansen <esben@oek.dk>, with paint refactoring and some other changes by dbaron. r=dbaron sr=bzbarsky b=1777
git-svn-id: svn://10.0.0.236/trunk@135099 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 04:00:18 +00:00
dbaron%fas.harvard.edu
e4a0d80702 Oops. Make this assertion that snuck in (for bug 81268) |#ifdef DEBUG_dbaron| for now, since it fires sometimes.
git-svn-id: svn://10.0.0.236/trunk@135098 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 03:35:21 +00:00
bzbarsky%mit.edu
321285231b Use the prototype cache smarter, not harder, for getting sheets. Bug
183859, r=sicking, sr=brendan.


git-svn-id: svn://10.0.0.236/trunk@135097 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 03:33:40 +00:00
bzbarsky%mit.edu
d1a0c8d1d1 Chrome protocol handler should not munge URIs on channel open (and remove some
workarounds around that behavior).  Bug 182124, r=rjc, sr=darin


git-svn-id: svn://10.0.0.236/trunk@135096 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 03:29:27 +00:00
kyle.yuan%sun.com
0be0d7608a Bug 159947 no way to multiselect using keyboard in list box
r=akkana, sr=bryner
Use charCode instead of keyCode to check whether a key typing is SPACE


git-svn-id: svn://10.0.0.236/trunk@135095 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 03:24:27 +00:00
dbaron%fas.harvard.edu
0da606ffe7 Clean up twisty maze of IBMBIDI ifdefs related to HorizontalAlignFrames and fix an RTL alignment bug. b=131023 r=smontagu sr=roc
git-svn-id: svn://10.0.0.236/trunk@135094 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 02:38:33 +00:00
dbaron%fas.harvard.edu
c6828396c3 Release theme global in nsBox from layout module destructor instead of on a object count for objects whose destructors are not all called. (Adds nsBox to the leak stats, which will make leaks go up.) b=177807 r=bryner sr=roc
git-svn-id: svn://10.0.0.236/trunk@135093 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 02:33:33 +00:00
dbaron%fas.harvard.edu
8c6d6103fa Fix incorrect check of position property in IsPercentageBase. b=180845 r=roc sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135092 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 02:29:35 +00:00
harishd%netscape.com
3c4e24e3c6 Avoid unnecessary string copies in nsFixPtr. b=169764, r=heikki, sr=peterv.
** Patch provided by jst@netscape.com **


git-svn-id: svn://10.0.0.236/trunk@135091 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 01:46:46 +00:00
thayes%netscape.com
f99655d56d Bug 184557: Allow usage specified on command line (-u) to be used to validate
certificates used for signing (-S option).  Also add special handling for
nickname "NONE" in the -Y option.  This specifies that no certificate and
encryption key preference should be included in the signature object.


git-svn-id: svn://10.0.0.236/trunk@135090 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 01:44:37 +00:00
sicking%bigfoot.com
fda411b22c Bug 184362: kill nsISupportsArray in transformiix
r=bz sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135089 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 01:22:37 +00:00
bienvenu%netscape.com
92922c3365 fix crash creating new account, r=caillon, sr=sspitzer 182982
git-svn-id: svn://10.0.0.236/trunk@135088 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 01:01:14 +00:00
dbaron%fas.harvard.edu
82de7a2bfe Fix bustage from dougt's checkin. b=170585 r=caillon sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@135087 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:53:53 +00:00
bugreport%peshkin.net
a99e419a4f Bug 184256 Canedit group_control_map entry does not prevent making attachments
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135085 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:41:19 +00:00
bienvenu%netscape.com
7613578844 fix crash on startup with missing default val for server pref, r=dmose, caillon, sr=sspitzer 182982
git-svn-id: svn://10.0.0.236/trunk@135084 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:30:18 +00:00
bzbarsky%mit.edu
499000aebc Resolve possible problem in the unlikely event that we kick off an async load
for a sheet and then kick off a sync load for the same sheet before the async
load completes...  Bug 183299, r=sicking, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135083 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:28:47 +00:00
rjc%netscape.com
1c5ae34f7c Fix bug # 183052: remove assert in RDFXMLDataSourceImpl::Flush(). r=bzbarsky@mit.edu sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@135082 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:20:10 +00:00
bzbarsky%mit.edu
d795c711b3 more nsCOMArray goodness -- uriloader, this time. Bug 183656, r=timeless,
sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@135081 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:15:19 +00:00
ducarroz%netscape.com
c8b10b2035 Fix for bug 184550. Don't need anymore to insert the document header separatly. That will avoid the performance regression as well. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@135080 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:14:27 +00:00
bzbarsky%mit.edu
5ddb3f1ed7 Backing this part out; it doesn't work properly without a change elsewhere I
forgot I had in this tree.  :(


git-svn-id: svn://10.0.0.236/trunk@135079 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:09:28 +00:00
jst%netscape.com
cca36a757e Fixing bug 184209. Don't access timeout's past the point where they are released in a situation when the release might have deleted the timeout. r=dbradley@netscape.com, sr=rpotts@netscpae.com
git-svn-id: svn://10.0.0.236/trunk@135078 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:03:34 +00:00
bzbarsky%mit.edu
3cfea6bce3 Remove some nsISupportsArray usage in nsSelection in favor of nsCOMArray. Bug
184022, r=timeless, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135077 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:02:49 +00:00
dougt%netscape.com
d2c1a76809 cleaning up the nsISeekableStream interface comments. r=darin, sr=jst, b=170585
git-svn-id: svn://10.0.0.236/trunk@135076 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 00:01:36 +00:00
bzbarsky%mit.edu
4c211afba5 Clean up some nsISupportsArray users in rdf/. Bug 184346, r=timeless, sr=scc
git-svn-id: svn://10.0.0.236/trunk@135075 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:58:55 +00:00
caillon%returnzero.com
790c7e866a 182982 - Mailnews utility library needs to use nsIPrefBranch, nsIPrefService, et alia
r=timeless/nhotta sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@135074 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:52:28 +00:00
bienvenu%netscape.com
eb9c8225c3 fix crash reading some imap messages, add null check, r/sr=sspitzer 184455
git-svn-id: svn://10.0.0.236/trunk@135073 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:45:27 +00:00
cbiesinger%web.de
85b4a2a508 r=timeless rs=bz
QT ONLY - remove USE_IMG2 ifdefs


git-svn-id: svn://10.0.0.236/trunk@135072 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:44:32 +00:00
caillon%returnzero.com
8eb8abf86c 182954 - Convert content to use nsIPrefService, nsIPrefBranch, and friends.
r=sicking sr=peterv


git-svn-id: svn://10.0.0.236/trunk@135071 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:44:03 +00:00
bienvenu%netscape.com
6cef246e46 fix potential memory trounce when syncing for offline on some imap servers, r=ducarroz, sr=sspitzer 181372
git-svn-id: svn://10.0.0.236/trunk@135070 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:43:09 +00:00
cbiesinger%web.de
cf4a4360eb 184696 r=timeless rs=bz
QT ONLY - running qt build fails due to qwindowsstyle


git-svn-id: svn://10.0.0.236/trunk@135069 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:42:14 +00:00
caillon%returnzero.com
6b60a8affb Bug 181975 - Convert layout to use nsIPrefService, nsIPrefBranch, and friends.
r/sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@135068 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 23:41:12 +00:00
timeless%mozdev.org
141452467f break the Qt build. If you're building Qt you don't want this checkin
git-svn-id: svn://10.0.0.236/trunk@135066 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 21:50:56 +00:00
wtc%netscape.com
b372052c6a Bug 180294: moved the OpenVMS build from the POSIX subsystem to native
VMS (GNV).  The patch is contributed by Colin Blakes <colin@theblakes.com>.
Modified files: OpenVMS.mk config.mk rules.mk nsinstall/nsinstall.c


git-svn-id: svn://10.0.0.236/trunk@135065 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 20:27:45 +00:00
sdagley%netscape.com
a36940e1dc Backing out jfrancis - back to v1.67
git-svn-id: svn://10.0.0.236/trunk@135064 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 20:24:49 +00:00
timeless%mozdev.org
e064eb12fd Bug 184681 qt port fails to compile in plugins code
X and Qt don't get along...
r=peterl sr=roc+moz a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@135063 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:53:06 +00:00
kestes%walrus.com
98b0247347 add functions to access the VC_TREE data structure.:
git-svn-id: svn://10.0.0.236/trunk@135062 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:49:27 +00:00
kestes%walrus.com
4941c1af86 major reworking of code structure to provide a clean Link construction but
not trip the perl warnings about undefined values.


git-svn-id: svn://10.0.0.236/trunk@135061 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:45:03 +00:00
kestes%walrus.com
a620c044e0 I have a better fix for perl warning the last checkin was meant to fix.
Fix it at the source in Build.pm.  This function really should return
undefined if the result is undefined.


git-svn-id: svn://10.0.0.236/trunk@135060 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:43:21 +00:00
kestes%walrus.com
6b84c50469 fixes to allow test harness to run through all VCDisplay implementations during
testing.


git-svn-id: svn://10.0.0.236/trunk@135059 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:35:50 +00:00
kestes%walrus.com
77924b4e3a fixes to allow test driver to run through all VCDisplay packages during unit
testing.


git-svn-id: svn://10.0.0.236/trunk@135058 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:34:34 +00:00
kestes%walrus.com
6b812bd047 fixes to quiet perl warnings about using undefined variables.
Localize most of the  creation of Bonsai arguments into one function
fixes to allow testing of all VCDisplay packages by one test driver.


git-svn-id: svn://10.0.0.236/trunk@135057 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:32:46 +00:00
kestes%walrus.com
70966ce2a4 fix to quiet new perl warnings about using undefined value.
git-svn-id: svn://10.0.0.236/trunk@135056 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:28:48 +00:00
kestes%walrus.com
bf87e9a49e quiet a warning about testing an undefined value (environmental variable
passed from webserver). Update some of the CGI functions to use the
lastest versions.  This was accomplised by including the whole library inside
the file.


git-svn-id: svn://10.0.0.236/trunk@135055 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:27:53 +00:00
kestes%walrus.com
cf2ac11329 add referesh times to summary pages, this variable was empty before this fix.
git-svn-id: svn://10.0.0.236/trunk@135048 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:24:37 +00:00
kestes%walrus.com
85b6b7c354 pass refreshtimes to Summaries. There was no referesh times, in the generated
html before this fix.


git-svn-id: svn://10.0.0.236/trunk@135047 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:23:37 +00:00
kestes%walrus.com
331124639e add target for VCDisplay tests.
git-svn-id: svn://10.0.0.236/trunk@135046 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:22:18 +00:00
kestes%walrus.com
71c4102f3b test the VCDisplay subsystem in isolation.
git-svn-id: svn://10.0.0.236/trunk@135045 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:21:12 +00:00
kestes%walrus.com
39b5a17db3 add new unit tests. These test the VCDisplay and HTMLpopup subsystems.
git-svn-id: svn://10.0.0.236/trunk@135044 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 19:20:05 +00:00
jfrancis%netscape.com
8f704205ad fix for 184308: cf_html bustage. fencepost error. r=brade; sr=bz; a=asa
git-svn-id: svn://10.0.0.236/trunk@135043 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 18:32:58 +00:00
relyea%netscape.com
835ba61f1e Sigh, this is what was breaking the Linux builds... incorrect initializer.
git-svn-id: svn://10.0.0.236/trunk@135041 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 18:09:16 +00:00
timeless%mozdev.org
a59dbd4beb Fixing viewer crashes where prevFont->mFontMetrics is null
rearranged the code to use early returns/no else after returns.
moduleowner=me rs=bz a=roc
part of the Qt module which still doesn't build w/o patches in my tree.


git-svn-id: svn://10.0.0.236/trunk@135040 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:42:15 +00:00
relyea%netscape.com
e6e68328f4 Make SubjectAltEncode a public function. Fixes build breakage in Linux
git-svn-id: svn://10.0.0.236/trunk@135039 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:41:16 +00:00
relyea%netscape.com
79fe77be86 Add test cases for multiple email addresses in a single certificate.
git-svn-id: svn://10.0.0.236/trunk@135037 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:19:00 +00:00
relyea%netscape.com
224056f917 Add code to create multiple email addresses in a single cert.
git-svn-id: svn://10.0.0.236/trunk@135036 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:18:06 +00:00
relyea%netscape.com
dab92f15e2 Export the AltSubjectEncode function so our test programs can build certs
with multiple email addresses.


git-svn-id: svn://10.0.0.236/trunk@135035 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:15:15 +00:00
relyea%netscape.com
1d0c8ab8f4 Create profiles for all the email addresses in a certificate.
git-svn-id: svn://10.0.0.236/trunk@135034 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 17:14:17 +00:00
peterv%netscape.com
dec92d0626 Bustage fix for rods (once more).
git-svn-id: svn://10.0.0.236/trunk@135033 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 16:58:14 +00:00
cmanske%netscape.com
1dac913fc2 Backing out previous changes (relating to bug 183055) since dependend bug 118038 was not approved for checkin. Needed else Publishing and Advanced Edit doesn't work
git-svn-id: svn://10.0.0.236/trunk@135032 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 15:25:41 +00:00
rods%netscape.com
3f0a190da8 Implement filters for spellchecker, so we can skip certain nodes (like Block Quote "cite") for mail
Bug 173046 r=jfrancis sr=kin a=asa


git-svn-id: svn://10.0.0.236/trunk@135030 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 15:03:04 +00:00
bugreport%peshkin.net
3654c27c31 Bug 184081 Change search interfaces to use Viewable products instead of enterable products
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@135029 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 14:17:05 +00:00
rods%netscape.com
71083be349 null pointer check
Bug 183768 r=dcone sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@135028 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 13:00:18 +00:00
justdave%syndicomm.com
7d9386e22d Bug 184336: default urlbase parameter on new installs now points at http://you-havent-visited-editparams.cgi-yet/ to a) relieve cvs-mirror.mozilla.org of all the hits, and b) give people who receive those emails a hint what to do to fix it.
r= joel, a= justdave


git-svn-id: svn://10.0.0.236/trunk@135027 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 12:10:21 +00:00
igor%mir2.org
041c0da3ad Fixed link
git-svn-id: svn://10.0.0.236/trunk@135026 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 11:19:02 +00:00
bratell%lysator.liu.se
e37829757f Bug 135363 - url bar search not working after accidently using the search string as an url. 44 votes, 55 dupes. Patch by Itamar (zipo13@myrealbox.com), r=dveditz@netscape.com, sr=roc+moz@cs.cmu.edu, approved for 1.3a=asa
git-svn-id: svn://10.0.0.236/trunk@135025 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 09:14:49 +00:00
timeless%mozdev.org
84fbaf3931 Bug 178987 Get qt toolkit working again
patch by esben@despammed.com r=timeless rs=bz a=roc
some changes by me
Bug 184257 Infrequent nsIPref users need to be converted to nsIPrefService, etc.
patch by caillon@returnzero.com r=timeless rs=bz a=roc


git-svn-id: svn://10.0.0.236/trunk@135024 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 07:34:13 +00:00
mkaply%us.ibm.com
533ccda82c #178584
r=pedemont, sr=blizzard, a=asa
OS/2 only - implement IsEnabled so Javascript debugger works


git-svn-id: svn://10.0.0.236/trunk@135021 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 05:17:36 +00:00
depstein%netscape.com
886cd40741 Created local uri table with different schemes. Hooked up to RunAllTests(). Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@135020 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 04:23:16 +00:00
dougt%netscape.com
665b51f9bc Fixes XPCOM glue leaving behind exit routine after DLL is unloaded. r=adamlock sr=darin, a=asa, b=184548
git-svn-id: svn://10.0.0.236/trunk@135017 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 01:37:56 +00:00
danm%netscape.com
7d382c305b Reinstating popup-blocking UI previously removed for the 1.2 release. Removing new privacy.popups preferences. bug 166442 r=brendan,dveditz,jag a=asa
git-svn-id: svn://10.0.0.236/trunk@135016 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 01:12:02 +00:00
pschwartau%netscape.com
2c489e02ae Initial add. Regression test for bug 184107.
git-svn-id: svn://10.0.0.236/trunk@135014 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-10 00:22:44 +00:00
blizzard%redhat.com
16015ca6c7 Bug #178128. Xft source files return compile time error. Use LOCAL_INCLUDES to force the Xft include path to be before the X11R6 include path so that we always get the correct version of the header files. r=cls, a=asa
git-svn-id: svn://10.0.0.236/trunk@135010 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 23:17:55 +00:00
seawood%netscape.com
588ef28237 Add objdir build support to libical.
Bug #184032 r=blizzard,mostafah


git-svn-id: svn://10.0.0.236/trunk@135008 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 22:34:38 +00:00
zach%zachlipton.com
e7a9b80e8d Fix for bug 180955: Remove dual-license from test files
Permission to do so granted by: justdave, joel, jake, ddk, gerv, bbaetz,
and myself (as gleamed from bonsai and the contributors lines and
indicated in the bug report). a=justdave.


git-svn-id: svn://10.0.0.236/trunk@135007 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 22:32:12 +00:00
dsirnapalli%netscape.com
246462379d updating test case
git-svn-id: svn://10.0.0.236/trunk@135005 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 21:52:29 +00:00
ashishbhatt%netscape.com
115f203375 Updating testcase
git-svn-id: svn://10.0.0.236/trunk@135004 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 21:45:10 +00:00
locka%iol.ie
f060d57fe5 Share pref settings between com connect and plugin. b=179573 r=dbradley@netscape.com sr=brendan@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@135003 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 21:04:22 +00:00
locka%iol.ie
5a19069457 Share pref settings between com connect and plugin. b=179573 r=dbradley@netscape.com sr=brendan@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@135002 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 20:48:39 +00:00
bienvenu%netscape.com
f2ba1883f8 attempt to fix stalling of imap urls due to race condition in url chaining, r=ducarroz, sr=sspitzer, a=asa 182808
git-svn-id: svn://10.0.0.236/trunk@134999 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 20:03:43 +00:00
shanjian%netscape.com
4aeb1abb66 #124941 charset detector does not work with single line attachment in certain situation
We need to call MimeInlineText_open_dam after ibuffer has been all processed.
Because there are 2 return path, we need to call this function each in each
path.
r=ducarroz, sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@134998 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 20:00:14 +00:00
mkaply%us.ibm.com
cbddd03c11 #183302
r=jeffreyj, sr=blizzard (platform specific code), a=asa
OS/2 only - save mime types in INI file so we don't keep popping up box


git-svn-id: svn://10.0.0.236/trunk@134997 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 19:57:27 +00:00
dbradley%netscape.com
e1988f81ca Bug 173146 - add support to XPConnect for IDispatch interfaces. Final implementation, this is the result of the code walk through with jband, jst, adam, and rpots. sr=jst, r=adam, a=asa
git-svn-id: svn://10.0.0.236/trunk@134996 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 19:41:54 +00:00
harishd%netscape.com
f03d0cf199 Backing out fix for bug 149887 because of bug 184029. a=asa
git-svn-id: svn://10.0.0.236/trunk@134995 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 19:30:10 +00:00
alexsavulov%netscape.com
8e8d6de386 d'oh, missed this in previous checkin for bug 183890 (mea culpa)
git-svn-id: svn://10.0.0.236/trunk@134990 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 19:15:52 +00:00
alexsavulov%netscape.com
c8c4343751 fix for bug 183890: this bug was introduced by the fix for bug 147878 that
is an addition to fix for bug 138957 (the form submission deferral in JS
handlers to wait for the return value.)
the current patch fixes the bug so that it resets mDeferSubmission false only
if we are in the NS_FORM_SUBMIT event preventig reseting in a bubling phase
of a possible onclick of a submit button/image.

r= jkeiser sr= jst a= brendan


git-svn-id: svn://10.0.0.236/trunk@134989 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 19:11:12 +00:00
kestes%walrus.com
66f961df19 package name was declared wrong.
git-svn-id: svn://10.0.0.236/trunk@134988 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:19:59 +00:00
kestes%walrus.com
a42c2449b4 force the use of Link, since this is my design that all links use this.
This will quiet some of my tests.


git-svn-id: svn://10.0.0.236/trunk@134987 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:17:00 +00:00
locka%iol.ie
4a9f325a8b Add directory service provider to control (no more MozillaControl profile pollution). b=76664 r=ccarlen@netscape.com sr=blizzard@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134986 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:15:50 +00:00
kestes%walrus.com
57e8eacc7d change code to quiet perl warnings.
git-svn-id: svn://10.0.0.236/trunk@134985 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:15:06 +00:00
kestes%walrus.com
c38ee94dcb portability fix for xargs
record the arguments to ./configure
find all the full paths for build commands on build machine


git-svn-id: svn://10.0.0.236/trunk@134982 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:02:32 +00:00
kestes%walrus.com
54bfa0cd4a portability fix for xargs
record the arguments to ./configure
providea a means of seeing all the perl package dependencies


git-svn-id: svn://10.0.0.236/trunk@134981 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 18:01:13 +00:00
igor%mir2.org
01dbaf0253 I changed InterpreterData.itsNestedFunctions from InterpretedFunction[] to InterpreterData[] because due recent changes/fixes InterpreterData.itsNestedFunctions was used effectively only to get information already available InterpreterData.
git-svn-id: svn://10.0.0.236/trunk@134980 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 17:50:20 +00:00
shanjian%netscape.com
94df7c58ce #183372, XFree86 provides "*-big5hkscs-0" rather than "*-hkscs-1" for Big5-HKSCS font
patch proposed by: Anthony Fok
r=shanjian, sr=blizzard, a=asa


git-svn-id: svn://10.0.0.236/trunk@134979 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 17:49:16 +00:00
bienvenu%netscape.com
e702f19539 fix for failure deleting in/moving multiple message to local folders 182808 r=dmose, sr=bzbarsky a=asa
git-svn-id: svn://10.0.0.236/trunk@134978 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 17:41:50 +00:00
timeless%mozdev.org
af11ad3f14 Bug 149874 [xlib] Spacebar doesn't toggle checkbox or radio buttons
patch by dolivari@eprocess.fr r=timeless sr=bz a=asa


git-svn-id: svn://10.0.0.236/trunk@134977 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 17:39:10 +00:00
ccarlen%netscape.com
eabcb50f40 Bug 183366 - Mach-0 build fails to launch via icon if whitespace in path the executable. r=seawood/sr=sfraser/a=brendan
git-svn-id: svn://10.0.0.236/trunk@134976 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 15:36:49 +00:00
mostafah%oeone.com
4a14ffa615 Fixed dos type new lines.( From patch 108573 in bug 184032 )
git-svn-id: svn://10.0.0.236/trunk@134975 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 15:26:03 +00:00
mostafah%oeone.com
cf43a3e516 Fixed dos type newlines. (From patch 108573 in bug 184032 )
git-svn-id: svn://10.0.0.236/trunk@134974 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 15:19:54 +00:00
bzbarsky%mit.edu
d4442c2e0d Use a prescontext from the same document as the frame when trying to get
views.  Bug 180329, r=peterv, sr=roc+moz, a=brendan.


git-svn-id: svn://10.0.0.236/trunk@134973 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 15:02:18 +00:00
igor%mir2.org
de6706f60d Move creation of InterpretedFunction instances to createFunction (former createFunctionObject) to have function initialization at one place.
git-svn-id: svn://10.0.0.236/trunk@134972 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 13:37:13 +00:00
justdave%syndicomm.com
491c265682 Bug 184365: link to urlbase instead of index.cgi from "Top" link in navigation toolbar.
r=gerv, a=me


git-svn-id: svn://10.0.0.236/trunk@134971 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 10:40:39 +00:00
jkeiser%netscape.com
10e27ad14e Oog. Green and open not enough. jkeiser back self out, keep drivers from hitting with big rock.
git-svn-id: svn://10.0.0.236/trunk@134970 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 06:15:33 +00:00
jkeiser%netscape.com
7c0e5f36ce Make select redisplay correctly when size changes between 1 and not-1 (bug 170446), r=rods@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134969 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 06:02:00 +00:00
jkeiser%netscape.com
4749233be8 fix behavior (and crasher) when changing type during event handler (bug 175670), patch by Rick.Ju@sun.com, r=jkeiser@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134968 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 05:56:58 +00:00
dean_tessman%hotmail.com
4263001022 184353 - change "Document: Done" to "Done"
git-svn-id: svn://10.0.0.236/trunk@134967 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 05:43:23 +00:00
bugreport%peshkin.net
a450bd78b1 Bug 86029 create permission restrictions for createaccount.cgi (prevent people from creating accounts)
r=burnus
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134966 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-09 00:24:43 +00:00
bugreport%peshkin.net
cfe7ac568e Bug 159627 quips should be editable and deleteable using the web interface
patch by burnus
r=timeless,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134963 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-08 23:57:23 +00:00
igor%mir2.org
8875794c68 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=184111
Patch from Marcus Crafter:
...
After speaking with Christopher Oliver, the problem seems to be a general JDK
1.4 bug that caches selected values in JComboBox, even after removeAllItems() is
called. Since its a general defect Christopher and I thought we'd report and get
it fixed in the main CVS tree.
...


git-svn-id: svn://10.0.0.236/trunk@134962 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-08 21:06:45 +00:00
igor%mir2.org
71326045b0 If debugger does not get function or script source via handleCompilationDone, try to read it from supplied URL.
git-svn-id: svn://10.0.0.236/trunk@134961 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-08 20:49:39 +00:00
blakeross%telocity.com
03c38822dd Fix a bug in history.
git-svn-id: svn://10.0.0.236/trunk@134960 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-08 20:11:25 +00:00
bbaetz%student.usyd.edu.au
9413e610c5 Bug 176461 - Move descs strings from change-columns.html.tmpl to
field-descs.html.tmpl

Patch by burnus@gmx.de (Tobias Burnus), r=gerv, bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134957 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-08 00:42:55 +00:00
blakeross%telocity.com
bef734f3e5 use our pageInfo
git-svn-id: svn://10.0.0.236/trunk@134956 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 23:19:45 +00:00
blakeross%telocity.com
dec07d7493 Fix for crash.
git-svn-id: svn://10.0.0.236/trunk@134954 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 21:56:17 +00:00
blakeross%telocity.com
988049b11c provide workaround for stuck download bug.
git-svn-id: svn://10.0.0.236/trunk@134953 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 21:52:16 +00:00
blakeross%telocity.com
a74c0504a2 remove help button in page info.
git-svn-id: svn://10.0.0.236/trunk@134952 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 20:55:39 +00:00
blakeross%telocity.com
4695c2ab5b Fixing view -> character coding.
git-svn-id: svn://10.0.0.236/trunk@134950 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 20:44:19 +00:00
blakeross%telocity.com
3421727470 Some trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@134946 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 20:10:46 +00:00
blizzard%redhat.com
3164546799 Bug #183912. embedding widget crashes with gtk 2.1.3. Make sure that the types for the signal marshalers match. r=timeless, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@134945 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 20:02:34 +00:00
blakeross%telocity.com
3a6f32e664 Fix a download bug.
git-svn-id: svn://10.0.0.236/trunk@134943 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 18:01:19 +00:00
axel%pike.org
37bfd69c2c missed one item in this run, documentation change only
git-svn-id: svn://10.0.0.236/trunk@134942 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 17:43:51 +00:00
axel%pike.org
7514c0f699 incorporate comments by Jonas, more details, documentation only
git-svn-id: svn://10.0.0.236/trunk@134941 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 16:13:54 +00:00
igor%mir2.org
65687fe933 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=154693
On function/script start create and initialize instance of InterpretedFunction for each function statement.


git-svn-id: svn://10.0.0.236/trunk@134940 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 14:15:27 +00:00
blakeross%telocity.com
d30edf9504 Finish updating version #.
git-svn-id: svn://10.0.0.236/trunk@134939 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 12:33:20 +00:00
peterv%netscape.com
cba3bc5079 Fix for bug 146310 (Make Calendar client available for Macintosh platform). sr=sfraser, a=asa.
git-svn-id: svn://10.0.0.236/trunk@134937 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 11:57:09 +00:00
blakeross%telocity.com
74c54c8c31 Fix theme/extension urls.
git-svn-id: svn://10.0.0.236/trunk@134936 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 04:29:18 +00:00
blakeross%telocity.com
ff52965b69 Fix themes and extension links.
git-svn-id: svn://10.0.0.236/trunk@134935 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 04:29:06 +00:00
blakeross%telocity.com
b1fda407e3 Bring over page info fixes.
git-svn-id: svn://10.0.0.236/trunk@134934 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 04:22:25 +00:00
blakeross%telocity.com
86d49cb69e Revert homepage change; port over some trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@134933 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 04:22:15 +00:00
blakeross%telocity.com
fe30337bfc update homepage
git-svn-id: svn://10.0.0.236/trunk@134932 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 03:55:14 +00:00
dean_tessman%hotmail.com
e84baf1353 bug 181586 - Ctrl+0 selects tenth tab instead of reverting to 100% zoom
git-svn-id: svn://10.0.0.236/trunk@134931 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 03:33:54 +00:00
harishd%netscape.com
f409404ff2 Backing out the fix for bug 142965 inorder to fix an important issue raised in bug 183711. a=asa
git-svn-id: svn://10.0.0.236/trunk@134925 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:48:25 +00:00
bienvenu%netscape.com
3cfa01a1ba move link of unicharutil to build from src to try to fix build bustage
git-svn-id: svn://10.0.0.236/trunk@134924 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:37:09 +00:00
seawood%netscape.com
6c0464d45f Remove extraneous newline when creating pkginfo file.
Bug #183876 r=ccarlen a=asa


git-svn-id: svn://10.0.0.236/trunk@134922 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:10:44 +00:00
beard%netscape.com
776686cc3a Need lwbrk to compile factory. Fix build bustage.
git-svn-id: svn://10.0.0.236/trunk@134921 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:08:19 +00:00
bzbarsky%mit.edu
df8d4201ee Fix capitalization problem. Bug 155693, patch by Sven Krohlas
<darkshadow@web.de> and Mike kowalski <mikejk@ameritech.net>, r=jatin, sr=jst,
a=asa


git-svn-id: svn://10.0.0.236/trunk@134920 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:03:00 +00:00
beard%netscape.com
c8bc8d9618 Fix build bustage, need lwbrk, and unicharutil libraries.
git-svn-id: svn://10.0.0.236/trunk@134919 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 01:00:31 +00:00
aaronl%netscape.com
762dca6d05 Bug 178520. input.focus() should not do input.select(). r=bryner, sr=bzbarsky, a=asa
git-svn-id: svn://10.0.0.236/trunk@134918 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:56:03 +00:00
depstein%netscape.com
affe3e95a0 added AsyncOpen() before security and content tests. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134917 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:55:15 +00:00
beard%netscape.com
f2de85faad Need unicharutil.
git-svn-id: svn://10.0.0.236/trunk@134916 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:52:09 +00:00
beard%netscape.com
e7ec99dcec Need to link against UniCharUtils[Debug].o.
git-svn-id: svn://10.0.0.236/trunk@134914 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:46:23 +00:00
beard%netscape.com
9c0c4c7de3 Fix for bug #183109, r=dmose, sr=sfraser, a=asa.
git-svn-id: svn://10.0.0.236/trunk@134913 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:42:48 +00:00
beard%netscape.com
1bcd881b7e Fix for bug #183109, r=shanjian, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@134912 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-07 00:41:01 +00:00
pschwartau%netscape.com
7962f274ee Adding an improvement by joerg.schaible@gmx.de, plus a new section.
git-svn-id: svn://10.0.0.236/trunk@134911 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 23:45:31 +00:00
bzbarsky%mit.edu
781a4442f8 Backing out nisheeth. The orange all over (leak/bloat tests, ports) is his.
a=drivers@mozilla.org speaking through the oracle of blizzard


git-svn-id: svn://10.0.0.236/trunk@134908 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 20:40:13 +00:00
mostafah%oeone.com
14b079c650 Removed using seperate object for getting display dates. Using EventDisplay object instead.
git-svn-id: svn://10.0.0.236/trunk@134907 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 20:31:20 +00:00
despotdaemon%netscape.com
7d052fe3cf Pseudo-automatic update of changes made by brendan@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134906 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 20:09:56 +00:00
sicking%bigfoot.com
445a3477d8 Bug 181803: Invalidate nsXPathResult when the nodevalue of a node is changed.
r=Pike sr=peterv a=asa


git-svn-id: svn://10.0.0.236/trunk@134903 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 19:54:46 +00:00
cmanske%netscape.com
8bc981de9b Fixed nsIThemes horking of editable menulist. Fix by neil@parkwaycc.co.uk, b=183791, r=cmanske, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@134902 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 19:17:12 +00:00
relyea%netscape.com
6d321f494d Fix padding value.
git-svn-id: svn://10.0.0.236/trunk@134901 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 19:11:57 +00:00
mcafee%netscape.com
878b119848 handle zero case in PrintSize() -mcafee
git-svn-id: svn://10.0.0.236/trunk@134900 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 18:52:32 +00:00
sicking%bigfoot.com
e1b830d3a7 backing out. Didn't mean to hit the commit-button
git-svn-id: svn://10.0.0.236/trunk@134899 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 17:49:27 +00:00
sicking%bigfoot.com
cd42ff9362 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@134898 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 17:47:53 +00:00
igor%mir2.org
18b451b3c2 Cosmetics: layout fix
git-svn-id: svn://10.0.0.236/trunk@134897 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 16:38:38 +00:00
igor%mir2.org
76a1b5dfea isJavaPrimitiveWrap/setJavaPrimitiveWrap are made final as sublasses should not be override them when customizing WrapFactory
git-svn-id: svn://10.0.0.236/trunk@134896 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 16:36:25 +00:00
mostafah%oeone.com
ff600a686e Minor tweaks
git-svn-id: svn://10.0.0.236/trunk@134894 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 15:40:27 +00:00
caillon%returnzero.com
98bc9c6af1 gcc 3.2 bustage fix. r=sicking,timeless
git-svn-id: svn://10.0.0.236/trunk@134893 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 15:15:45 +00:00
roc+%cs.cmu.edu
2d32b81421 Checking in bug 90099 again since it seems tnot to have caused Tp regression. Make sure table cells and other odd frames are given views if they need them. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@134892 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 14:22:11 +00:00
bryner%netscape.com
966bf47fea Comment corrections, not part of the build
git-svn-id: svn://10.0.0.236/trunk@134891 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 10:30:15 +00:00
sicking%bigfoot.com
0e96a0184e Bug 178601: Fix recursion-crash by makeing sure to not reevaluate a script if the script moves its container element. Patch by Harshal (keeda@hotpop.com)
r=sicking sr=bz a=asa


git-svn-id: svn://10.0.0.236/trunk@134890 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 08:16:34 +00:00
ssu%netscape.com
48af467da6 fixing bug 183227 - Destroys Palm Desktop User Account. r=dmose sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@134889 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 07:29:09 +00:00
darin%netscape.com
c9e8b6993b first patch for bug 181230 "profile-change-net-teardown must work"
r=dougt sr=rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@134888 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 06:38:52 +00:00
darin%netscape.com
ce5e8ca743 fixes bug 182490 "New password manager is ignoring valid password entries"
r=morse sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@134887 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 06:36:15 +00:00
bzbarsky%mit.edu
a73068e7c6 Fixing more of nisheeth's bustage
git-svn-id: svn://10.0.0.236/trunk@134886 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 06:15:16 +00:00
dbaron%fas.harvard.edu
628288dc8a Fix build bustage inside |#ifdef DEBUG_dbaron|. (Not part of build.)
git-svn-id: svn://10.0.0.236/trunk@134884 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 04:42:49 +00:00
cmanske%netscape.com
a84c178b46 Fix MacOSX build bustage
git-svn-id: svn://10.0.0.236/trunk@134883 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 04:42:28 +00:00
roc+%cs.cmu.edu
4d55566a79 Backing out fix for bug 170330 due to Tp regression
git-svn-id: svn://10.0.0.236/trunk@134882 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 04:32:07 +00:00
dean_tessman%hotmail.com
273bf1b59f bug 30431 - Intellimouse Explorer Backwards and Forwards button support.
r=rods on widget, timeless on content
sr=bryner
a=asa


git-svn-id: svn://10.0.0.236/trunk@134880 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 03:41:43 +00:00
bugreport%peshkin.net
0d15369571 Bug 183843 Query knobs are missing if requirelogin is set
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134878 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 03:37:59 +00:00
cmanske%netscape.com
349d4e837b Really fixed 'insert HTML' bug 180303 this time. r=akkana, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@134875 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 03:13:39 +00:00
roc+%cs.cmu.edu
6895913433 backing out fix to 90099 to check Tp effect
git-svn-id: svn://10.0.0.236/trunk@134874 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 02:24:35 +00:00
heikki%netscape.com
202ae94157 Build bustage fix. Missed function return types.
git-svn-id: svn://10.0.0.236/trunk@134873 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 02:21:49 +00:00
harishd%netscape.com
25c2e377de Make sure to catch error messages returned by nsCompontentManagerImpl::CreateInstance when creating a dtd ( CNavDTD ). This fixes a shutdown crash. r=timeless, sr=heikki, a=asa
git-svn-id: svn://10.0.0.236/trunk@134872 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:54:39 +00:00
sicking%bigfoot.com
df3526ebc0 Bug 174093: Make ExprParser out-of-memory safe.
r=Pike sr=peterv a=asa


git-svn-id: svn://10.0.0.236/trunk@134871 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:49:26 +00:00
sspitzer%netscape.com
1c62c22553 the mdn and mailviews extensions were not added to the jst files
so they weren't showing up in official bits.
(ns tree fixed also)  r=ssu, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@134870 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:32:37 +00:00
bzbarsky%mit.edu
7b2de6a1f3 Fix crash in some icky document.write() cases.. We gotta stop blocking the
parser.  Bug 183784, r=sicking, sr=peterv, a=asa


git-svn-id: svn://10.0.0.236/trunk@134869 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:27:37 +00:00
timeless%mozdev.org
bd0d94e771 Bug 183733 'Reload Frame' has _second_ "r" as the underlined accessor key
r=neil sr=roc+moz a=asa


git-svn-id: svn://10.0.0.236/trunk@134868 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:17:20 +00:00
nisheeth%netscape.com
8fb70c1415 Checkin for bug 182366. r=heikki. sr=hewitt. a=asa. Start of project to use machine learning to better order results shown in the autocomplete dropdown.
git-svn-id: svn://10.0.0.236/trunk@134867 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 01:15:22 +00:00
smontagu%netscape.com
f6e8ef0617 Comment only checkin, omitted by mistake from bug 182259
git-svn-id: svn://10.0.0.236/trunk@134866 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 00:50:50 +00:00
bienvenu%netscape.com
e8ec44617c fix scoring multiple messages when opening folders, r=dmose,beard, sr=sspitzer, a=blizzard 179162
git-svn-id: svn://10.0.0.236/trunk@134865 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 00:45:13 +00:00
bryner%netscape.com
c6c2b81c2d Fix misdrawn border on focused textfields (bug 175696). r=blizzard, sr=jag, a=asa.
git-svn-id: svn://10.0.0.236/trunk@134864 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 00:08:21 +00:00
cltbld%netscape.com
7855e22fc0 back off on Zdiff formatting, I accidentally lopped off the +/- data. -mcafee
git-svn-id: svn://10.0.0.236/trunk@134863 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-06 00:02:06 +00:00
sspitzer%netscape.com
c7bfe9fce9 bad skinVersion (copy and paste error on my part)
should be 1.2, not 1.0 (like the rest of the tree)


git-svn-id: svn://10.0.0.236/trunk@134862 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 23:15:09 +00:00
roc+%cs.cmu.edu
30ffe3fbf2 Bug 170330. Factor out overflow area calculations and make them take account of overflow:hidden and outline properties. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@134861 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 22:29:08 +00:00
roc+%cs.cmu.edu
a3507947d9 Bug 90099. Make sure table cells and other odd frames are given views if they need them. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@134860 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 22:26:47 +00:00
cltbld%netscape.com
f2e9b2dd77 BuildSize() added a parameter recently to control number of sig figs. -mcafee
git-svn-id: svn://10.0.0.236/trunk@134859 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 22:22:27 +00:00
nelsonb%netscape.com
5a0910167b Expunge dead code.
git-svn-id: svn://10.0.0.236/trunk@134858 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 22:16:22 +00:00
nelsonb%netscape.com
24b5f2f335 Don't compile the .c files in lib/pki1 on the trunk. These files are used
only in Stan.


git-svn-id: svn://10.0.0.236/trunk@134857 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 22:15:36 +00:00
cmanske%netscape.com
43cd7c7a15 Part of fix to bug 170522 (remove unused code), r=akkana, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@134855 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:59:59 +00:00
timeless%mozdev.org
f03fa70722 Bug 183623 malformed for loop results in infinite loop in [@ nsURILoader::DispatchContent]
r=bz sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@134854 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:44:28 +00:00
sspitzer%netscape.com
11a11dcbc0 fix for bug #179412. on linux,
certain elements are disabled in the message search and
address search dialogs until a reflow happens.

this regression was exposed by the fix for #157210.

bug #183776 tracks the real issue.

r=bz, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@134853 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:28:43 +00:00
timeless%mozdev.org
61e3a21454 Bug 183309 Mozilla crashes on startup. - Trunk [@ nsBindingManager::GetXBLDocumentInfo]
patch by nallen@acm.org r=brendan sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@134852 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:25:23 +00:00
cmanske%netscape.com
e33e939024 Increase performance of 'Recent Pages' menu code. Most of the fix by neil@parkwayccc.co.uk, b=170522, r=akkana, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@134851 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:24:09 +00:00
igor%mir2.org
7beec32217 Remove generation of closure icode for function statements as they are initialized at script/function start, not at point of declaration. This redundant closure icodes were effectively no-operation but caused bigger stack to be allocated then necessary.
git-svn-id: svn://10.0.0.236/trunk@134850 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:04:30 +00:00
cmanske%netscape.com
a73d8ffdbb Missing file from checkin to fix 'insert HTML' command' b=180303, r=akkana, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@134849 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 21:03:44 +00:00
neeti%netscape.com
e0a295cee9 Fix for bug 177964 - FTP: can't download file with # in its name,r=nhotta@netscape.com,sr=darin@netscape.com,a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134847 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 19:18:57 +00:00
bienvenu%netscape.com
2706c08012 fix checknew mail on startup for multiple accounts, 85227 r=cavin, sr=sspitzer, a=asa
git-svn-id: svn://10.0.0.236/trunk@134846 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 19:18:16 +00:00
bienvenu%netscape.com
6abfdfe87c fix problem displaying inline images in local mail messages, r=ducarroz, sr=sspitzer, a=brendan 183559
git-svn-id: svn://10.0.0.236/trunk@134845 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 19:13:24 +00:00
mostafah%oeone.com
ea79e0ab7e Fixed backend support for COUNT in recurrence rules. (Bugs 183667 & 167553 )
git-svn-id: svn://10.0.0.236/trunk@134843 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 18:10:57 +00:00
mostafah%oeone.com
e7acc68490 Fixed problem with unresolved symbol on stat()
git-svn-id: svn://10.0.0.236/trunk@134842 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 14:03:48 +00:00
bzbarsky%mit.edu
669a5e13af I meant 8192 and typed 8092. r/sr/a=brendan
git-svn-id: svn://10.0.0.236/trunk@134831 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 06:36:18 +00:00
cltbld%netscape.com
ea29e515ae Turn avg off for codesize graph link. Condense Zdiff display number also.
git-svn-id: svn://10.0.0.236/trunk@134826 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 03:07:50 +00:00
karnaze%netscape.com
83c7949e68 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@134820 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 01:15:55 +00:00
cltbld%netscape.com
e8c627f7e8 Display codesize in MB/KB. Sigfig change to allow 3, 4, etc. sig figs.
git-svn-id: svn://10.0.0.236/trunk@134819 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 00:09:16 +00:00
yokoyama%netscape.com
7c6f57d4af 171468 "Save as type" drop-down box in "Save Page As"
dialog always saves as html only in Win9x
Impact:
- Open/SaveAs dlgbox
- Windows 9x platforms only
/r=shanjian; /sr=kin; /a=asa


git-svn-id: svn://10.0.0.236/trunk@134818 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-05 00:04:25 +00:00
wtc%netscape.com
ff1e8de9dc Bug 39494: added a check to prevent buffer overflow. r=mcgreer,nelsonb.
git-svn-id: svn://10.0.0.236/trunk@134817 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 23:41:49 +00:00
pschwartau%netscape.com
72c01cae94 Test by joerg.schaible@gmx.de arising from bug 181914.
git-svn-id: svn://10.0.0.236/trunk@134811 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 22:11:47 +00:00
dcone%netscape.com
2a582212cf Not part of the build. Updated layout-plugin code. Added method to output the regression data to a file.
git-svn-id: svn://10.0.0.236/trunk@134810 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 22:11:40 +00:00
pschwartau%netscape.com
3091a8d75c Test by joerg.schaible@gmx.de, enforcing ECMA-262 Ed.3, Section 15.11.1.1
git-svn-id: svn://10.0.0.236/trunk@134809 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 21:58:15 +00:00
ere%atp.fi
24f3bc873c Fix for bug 182678: IMAP flags are lost if Mozilla crashes or connection is lost.
r=bienvenu, sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@134806 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 21:17:02 +00:00
djani%netscape.com
72066a575b Bug 179133: Now we support cert and key DBs with prefixes in the names also, just like ldapssl_pkcs_init() does. Now all of the code calls NSS_Initialize() instead of NSS_Init().
git-svn-id: svn://10.0.0.236/trunk@134802 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 19:10:17 +00:00
mostafah%oeone.com
b2499ecc1e Switched order of setserver and addobserver for new calendars ( related to bug 177279 )
git-svn-id: svn://10.0.0.236/trunk@134799 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 17:34:31 +00:00
mkaply%us.ibm.com
47134f84a9 OS/2 bustage - XP_PC does NOT equal XP_WIN
git-svn-id: svn://10.0.0.236/trunk@134798 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 17:25:44 +00:00
mcs%netscape.com
dd4c8f8139 Fix bug # 177756 - eliminate dependency on libNLS.
If HAVE_LIBNLS is not defined, OS functions (iconv and Win32
	native APIs) are used for character set conversion of command
	line arguments.
Fix bug # 177766 - LDAP tools should reject second -h argument.
	A second -p argument is also rejected.
Fix bug # 159139 - HP/UX: LDAP command line tools do no charset conversion.
	Removed special case makefile rules for convutf8.cpp on HP/UX.


git-svn-id: svn://10.0.0.236/trunk@134797 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 17:21:55 +00:00
mcs%netscape.com
cc5865f4c9 Fix bug # 177771 - libssldap: keyfile password should be optional.
If a NULL keypasswd value is passed to ldapssl_enable_clientauth()
		then it is assumed that the application has already unlocked
		the key DB or has installed its own GetPassword callback.
	Also improved some error reporting.


git-svn-id: svn://10.0.0.236/trunk@134796 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 17:11:20 +00:00
blizzard%redhat.com
7f2bd4198e Bug #165198. object files are not stripped for RPM build. Use --enable-strip not --enable-strip-libs.
git-svn-id: svn://10.0.0.236/trunk@134795 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 15:29:03 +00:00
mikep%oeone.com
2b89a404e9 Adding in files for Mac OS 9 build. bug 146310.
git-svn-id: svn://10.0.0.236/trunk@134794 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 15:01:56 +00:00
igor%mir2.org
84eac3c088 Remove closure constructor from InterpretedFunction and initialize InterpretedFunction.itsClosure constructor in Interpreter directly. This besides reducing code size will help to make fix for http://bugzilla.mozilla.org/show_bug.cgi?id=154693 smaller
git-svn-id: svn://10.0.0.236/trunk@134793 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 09:49:07 +00:00
timeless%mozdev.org
7ca99259be whoops
git-svn-id: svn://10.0.0.236/trunk@134792 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 09:47:50 +00:00
timeless%mozdev.org
def553feb6 build bustage: adding local include
git-svn-id: svn://10.0.0.236/trunk@134791 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 09:09:49 +00:00
caillon%returnzero.com
49530b1049 Bug 183069 - trunk topcrash when quitting [@ nsPrefBranch::RemoveObserver].
Release our observer references only _after_ we remove them from our observer list, to avoid someone else trying to remove the same observer we're working on removing.
r=timeless sr=jst
a=jst, and #mozilla (smontagu,timeless) who acting as sheriff asked me to land this into a closed tree.


git-svn-id: svn://10.0.0.236/trunk@134790 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 08:56:34 +00:00
timeless%mozdev.org
1f46e6c41f fixing logparse bustage sr=jst
git-svn-id: svn://10.0.0.236/trunk@134789 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 08:20:46 +00:00
timeless%mozdev.org
1649183284 logparse has include issues, temporarily removing
git-svn-id: svn://10.0.0.236/trunk@134788 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 08:02:12 +00:00
samuel%sieb.net
a54f19257c Bug 176765 - XML-RPC does not support https
r=heikki
sr=darin


git-svn-id: svn://10.0.0.236/trunk@134787 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:59:57 +00:00
timeless%mozdev.org
3f69e05a6f Bug 180336 Add parser tests: grabpage logparse html
r=harishd sr=heikki


git-svn-id: svn://10.0.0.236/trunk@134786 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:27:06 +00:00
samuel%sieb.net
ff91927877 Bug 176764 - XML-RPC creates URL objects in a bad way
r=heikki
sr=darin


git-svn-id: svn://10.0.0.236/trunk@134785 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:26:02 +00:00
samuel%sieb.net
3c708fcb9b Bug 178206 - fix XML-RPC strings
r=heikki
sr=tor


git-svn-id: svn://10.0.0.236/trunk@134784 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:22:50 +00:00
timeless%mozdev.org
eed5883e04 reindent per heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134783 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:22:26 +00:00
bzbarsky%mit.edu
f40558f6ae Um.. spell PRUint16 right
git-svn-id: svn://10.0.0.236/trunk@134782 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:15:43 +00:00
bzbarsky%mit.edu
5c33473c49 Fix mac bustage
git-svn-id: svn://10.0.0.236/trunk@134781 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:13:56 +00:00
ccarlen%netscape.com
f6ddd4190b Bug 181641 - On Mach-0 build, cannot launch if theme was installed into profile with CFM build. Fixes this by fixing the general problem of failure due to missing theme jars. Patch to nsChromeRegistry.cpp by ccarlen, r=ben/sr=brendan. Patch to nsChromeProtocolHandler.cpp by brendan, r=ccarlen/sr=ben.
git-svn-id: svn://10.0.0.236/trunk@134780 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:08:57 +00:00
bzbarsky%mit.edu
c54400e68f UTFInputStream does not do very good error-recovery, so always
use nsConverterInputStream instead.  Bug 183165, r=timeless, sr=sspitzer,
general approval=dbaron


git-svn-id: svn://10.0.0.236/trunk@134779 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:07:50 +00:00
kyle.yuan%sun.com
0d4483fbf0 Bug 134823 Toolbars don't honour accesskeys
r=dean_tessman, sr=jaggernaut
support accesskey for toolbarbutton


git-svn-id: svn://10.0.0.236/trunk@134778 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:38:07 +00:00
caillon%returnzero.com
3519a9924e Bug 177328: Update compareTreePosition to compareDocumentPosition as per the latest DOM3 Core WD: http://www.w3.org/TR/2002/WD-DOM-Level-3-Core-20021022/core.html#Node3-compareDocumentPosition
r=bzbarsky sr=jst


git-svn-id: svn://10.0.0.236/trunk@134777 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:18:39 +00:00
jrgm%netscape.com
77d5383b12 Make use of the new ability to re-init a timer and hang on to the tooltip and autohide timers instead of destroying and creating new timers, bug 181961. Note: this bug depends on the other checkin to nsTimerImpl.(h|cpp) from bug 181961. r=bryner, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@134776 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:13:07 +00:00
sdagley%netscape.com
7df756341a Fix #175868 - Allow multiple instances of Mozilla to run. r=ccarlen,sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134775 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:51:54 +00:00
dbaron%fas.harvard.edu
2c9b578539 Go back to PR_strtod since strtod does different things in different locales. b=183211 sr=bzbarsky r=caillon
git-svn-id: svn://10.0.0.236/trunk@134774 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:43:30 +00:00
bstell%ix.netcom.com
5caa782b76 bug 180473 : make nsFreeType a xpcom service and move from shared lib to static lib
r=Louie.Zhao@sun.com, sr=alecf@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134773 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:42:40 +00:00
timeless%mozdev.org
d5cf0c0d7d Bug 172751 nsITheme support for Windows 9x/NT/2000
patch by tim@prismelite.com r=hyatt sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134772 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:41:35 +00:00
darin%netscape.com
76c7db53b0 fixes bug 173426 "prefetch service should set LOAD_ONLY_IF_MODIFIED flag"
r=gagan sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134770 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:21:10 +00:00
darin%netscape.com
d23b0dfd5f fixes bug 56629 "Proxy: Client->Proxy connection errors should show proxy,
not target hostname" r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@134769 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:18:08 +00:00
mstoltz%netscape.com
f06acb5816 Bug 91043: Make document.write(ln) same-origin-access only to prevent inserting content into a third-party page. r=pavlov, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134768 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:52:07 +00:00
bolian.yin%sun.com
a5d3bb5a0f Bug 183153, MaiTopLevel object should be destoryed in the XPCOM way
This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@134765 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:35:03 +00:00
bryner%netscape.com
db326187c8 fixing aix bustage
git-svn-id: svn://10.0.0.236/trunk@134764 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:26:46 +00:00
mstoltz%netscape.com
99349c69eb adding an include to fix bustage
git-svn-id: svn://10.0.0.236/trunk@134763 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:51:47 +00:00
gilbert.fang%sun.com
c7a20f1e54 Bug 129213 buttons in Manage Bookmarks need accesskeys
patch by jessie.li@sun.com, r=kyle.yuan, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134762 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:51:03 +00:00
gilbert.fang%sun.com
ede1b6606b 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.


git-svn-id: svn://10.0.0.236/trunk@134759 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:16:07 +00:00
caillon%returnzero.com
1918b4fe48 Bug 182953: Clean up IMAP prefs usage to use nsIPrefBranch and friends
r=timeless sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134758 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:09:11 +00:00
caillon%returnzero.com
f85ae2c8ba 182702: Convert printing code to use nsIPrefBranch and nsIPrefService
r=rods sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134753 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:03:17 +00:00
karnaze%netscape.com
fd35d34016 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@134749 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:58:59 +00:00
mstoltz%netscape.com
7ccfe07800 Bug 32571 - add disabling pref and JS console message to window.close security check. r=heikki, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134748 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:55:56 +00:00
yokoyama%netscape.com
7930cd7160 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window.
/r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134747 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:51:31 +00:00
bryner%netscape.com
33c99f67c5 Clean up nsNativeThemeGTK by separating all core drawing functionality into gtkdrawing.c and formalizing the API in gtkdrawing.h. Bug 174927, r=blizzard, rs=jag.
git-svn-id: svn://10.0.0.236/trunk@134746 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:50:38 +00:00
yokoyama%netscape.com
216733424f 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window. /r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134745 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:49:29 +00:00
miodrag%netscape.com
c4df1d005f Removed unnecessary code, updated javadoc
git-svn-id: svn://10.0.0.236/trunk@134744 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:35:57 +00:00
yokoyama%netscape.com
833eab6aa2 181559 MfcEmbed: Find in this page does not find Non-Ascii characters
Find string is correctly converted to unicode string.
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134743 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:19:56 +00:00
yokoyama%netscape.com
fd2d437d51 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window.
/r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134742 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:17:01 +00:00
miodrag%netscape.com
b0070e1509 Removed two trailing ^M
git-svn-id: svn://10.0.0.236/trunk@134741 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:04:19 +00:00
karnaze%netscape.com
15faa7640c bug 127286 (part II due to cvs problems) - Handle splitting of floaters when lines impacting them are outside the block containing the floaters. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@134740 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:58:52 +00:00
brendan%mozilla.org
ba130297b3 Implement support for re-initializing timers (even one-shots), and doc-comment
on how timers may be canceled, re-initialized, and canceled-then-re-initialized
in nsITimer.idl (181961, r=pavlov, sr=alecf).  This helps client code conserve
instances, saving on cycles and malloc/component-manager froth.


git-svn-id: svn://10.0.0.236/trunk@134739 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:57:20 +00:00
bienvenu%netscape.com
daa7c3bef3 fix compact folder performance regression, r=cavin, sr=sspitzer 182262
git-svn-id: svn://10.0.0.236/trunk@134738 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:40:19 +00:00
wtc%netscape.com
3fcc5b0e17 Fixed the build breakage of const unsigned char[] and unsigned char *
mismatch on the Mac (compiler warnings on other platforms) by adding
(unsigned char *) typecasts.  r=relyea.  (Bug 183350)


git-svn-id: svn://10.0.0.236/trunk@134737 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:28:56 +00:00
karnaze%netscape.com
0535fa6175 bug 127286 (part I due to cvs problems) - Handle splitting of floaters when lines impacting them are outside the block containing the floaters. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@134736 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:25:43 +00:00
akkana%netscape.com
f2ac13c9a0 179784: go back to beep by default for typeahead find "not found",
since the nsSound solution doesn't work well on linux or mac.
  r=aaronl sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@134734 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:51:10 +00:00
dougt%netscape.com
8ee6126b8f Fixes loss of category information when using regxpcom, r=darin, sr=alec, b=182771
git-svn-id: svn://10.0.0.236/trunk@134732 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:17:03 +00:00
alexsavulov%netscape.com
a2d6b2fcc9 Fix for bug 147878 - defer submission until onSubmit returns so we can
chose to submit name/value or the triggering element if the return is true.
r= jkeiser sr= jst


git-svn-id: svn://10.0.0.236/trunk@134731 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:06:34 +00:00
dougt%netscape.com
2528bfde89 Fix for nsProxyObjectManager::GetProxy() memory corruption. Patch by wolruf@free.fr, r=dougt, sr=alecf, b=182572
git-svn-id: svn://10.0.0.236/trunk@134730 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:04:28 +00:00
harishd%netscape.com
34717d54ad ** NOT PART OF THE BUILD **
Adding testcases to parser regression test suite


git-svn-id: svn://10.0.0.236/trunk@134729 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:52:02 +00:00
harishd%netscape.com
852bb4c5cf Prevent content inside IFRAME from evaluating ( specifically SCRIPT ). b=149887, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134728 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:31:38 +00:00
darin%netscape.com
55762a8a68 additional comment tweaks for bug 157133 "freeze nsIHttpChannel,
nsIHttpHeaderVisitor" r/sr=nobody


git-svn-id: svn://10.0.0.236/trunk@134727 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:00:54 +00:00
anthonyd%netscape.com
6de131c404 *** NOT PART OF THE BUILD PROCESS
resources for the XPI Packager
bug # 163739


git-svn-id: svn://10.0.0.236/trunk@134726 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:55:02 +00:00
anthonyd%netscape.com
873dac92c4 *** NOT PART OF THE BUILD PROCESS
bug # 163739 - XPI Packager
adding the xpi packager to the mozilla tree.  this is a windows only app used to build the xpi packager
for building self installing xpi files.


git-svn-id: svn://10.0.0.236/trunk@134725 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:52:45 +00:00
ducarroz%netscape.com
23153ef597 Fix for bug 182321. Force to finish the autocomplete (which will remove any extra
"[nickname] >>") when the user either click in the input text or when the user
navigate with the left or right arrow key. R/SR=hewitt, spitzer


git-svn-id: svn://10.0.0.236/trunk@134723 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:41:04 +00:00
nhotta%netscape.com
033cfbefbd Adding UI to swap first and last name in address book,
the UI is disabled as a default, configuable by the entity "hideSwapFnLnUI",
bug 181883, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134722 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:36:06 +00:00
blizzard%redhat.com
47362626d5 Bug #165558. building with --disable-logging and GTK2 default widget fails to compile. Just remove the MOZ_LOGGING defines since we're using PR_FORCE_LOG anyway.
git-svn-id: svn://10.0.0.236/trunk@134721 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:29:35 +00:00
smontagu%netscape.com
b5630a5a43 Print and print preview must not animate images. Never. Not under any circumstances. Bug 182259, r=rods, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@134720 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:24:05 +00:00
locka%iol.ie
335b81ec98 Move IWebBrowser impl into a template class so it can be shared with plugin. Fixed postdata, headers and target args. b=100629 r=chak@netscape.com rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134719 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:20:57 +00:00
mostafah%oeone.com
9a7d7c51c3 Made possible build without need for configure
git-svn-id: svn://10.0.0.236/trunk@134718 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:12:30 +00:00
sdagley%netscape.com
a399aa4362 Fix #179592 - wrong IC constant mapping. r=ccarlen,rs=sfraser
git-svn-id: svn://10.0.0.236/trunk@134717 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:00:45 +00:00
pkw%us.ibm.com
1b5db86251 Bug #181334 - libgfxft2.so fails to link on AIX.
r=seawood@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134715 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:30:23 +00:00
ashishbhatt%netscape.com
3c925ceeaa updating javascript file paths
git-svn-id: svn://10.0.0.236/trunk@134714 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:27:28 +00:00
karnaze%netscape.com
971e0c5824 bug 183274 - bernd's patch to fix some typos and wrong max value. sr=bzbarsky, r=karnaze
git-svn-id: svn://10.0.0.236/trunk@134713 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:20:53 +00:00
bzbarsky%mit.edu
efa23d95ee Take out the hack added in bug 47846 to deal with the fact that Equals() did
not work on mailnews urls.  It works fine now (see bug 98626).

Bug 182248, r=bienvenu. sr=darin


git-svn-id: svn://10.0.0.236/trunk@134712 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:19:18 +00:00
bienvenu%netscape.com
45421c4a5e another fix for 179162 fix run junk mail controls on selected messate r/sr=sspitzer, typo in dump statement
git-svn-id: svn://10.0.0.236/trunk@134711 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:12:29 +00:00
harishd%netscape.com
003dea7bb8 Make sure to collect FORM attributes if the FORM was found along with misplaced content inside TABLE. b=142965, r=heikki, sr=jst. Added -/W3C/DTD HTML 4.0 Transitional/EN to the quirks list. b=146274, r=heikki, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134709 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:55:19 +00:00
ducarroz%netscape.com
2ed3358a13 Fix for bug 63639. Prevent adding duplicate address when pre-filling a message compose window. Patch submitted by Koike Kazuhiko <kazhik@mozilla.gr.jp>. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134708 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:53:53 +00:00
rginda%netscape.com
14d5c06f97 - venkman only -
fix array.sort fallout form bug 178722
show view names in floating window titles
don't spew to IS view when changing frames from the UI
bump version number


git-svn-id: svn://10.0.0.236/trunk@134707 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:50:26 +00:00
blizzard%redhat.com
65fd3ea826 Bug #181404. Crash when printing page with <select> dropdown menu [@ moz_drawingarea_set_visibility ]. Some of the printing and view code tries to set visiblity and sizes on widgets without creating them first. Woo.
git-svn-id: svn://10.0.0.236/trunk@134706 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:46:49 +00:00
locka%iol.ie
97c0b154e5 Comment out base elements during persistence rather than removing and reinserting them. b=179990 r=brade@netscape.com sr=heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134705 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:31:18 +00:00
blythe%netscape.com
9dcd126468 Not part of build.
Remove the overall module size summary from the report, unless there is
nothing else to report.  As suggsted by alecf and mcafee.


git-svn-id: svn://10.0.0.236/trunk@134704 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:07:55 +00:00
karnaze%netscape.com
bf52326163 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@134698 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 16:35:23 +00:00
karnaze%netscape.com
ca5804764b bug 180805 - Added GetAdjustedParentFrame to handle fieldsets. Moved inner/outer table logic there. Added fieldset logic to IsValidSibling. sr=bzbarsky, r=jkeiser.
git-svn-id: svn://10.0.0.236/trunk@134696 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 16:02:42 +00:00
ccarlen%netscape.com
dc6239e350 Bug 173668 - InitWithNativePath crashes if given a URL which begins with a forward slash. It happens during URI fixup. r=sdagley/sr=jaggernaut
git-svn-id: svn://10.0.0.236/trunk@134695 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:51:25 +00:00
karnaze%netscape.com
205710a252 bug 161644 - don't allow a first letter to be a block unless it is floating. sr=bzbarsky, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@134694 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:48:26 +00:00
bienvenu%netscape.com
483ef9e6e0 fix build warnings, patch by Aleksey Nogin, r=ducarroz, sr=bienvenu 59673
git-svn-id: svn://10.0.0.236/trunk@134693 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:31:47 +00:00
mikep%oeone.com
e32f1b9f9d Finishing renaming the files, for Mac OS 9, as per bug 183106.
git-svn-id: svn://10.0.0.236/trunk@134692 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:30:03 +00:00
kaie%netscape.com
1e5d8406b1 b=182158 JavaScript error when pressing Ok in "Cert already exists" dialog - setWindowName is not defined
r=kaie sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134691 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:27:27 +00:00
bienvenu%netscape.com
571e30eb6b fix build warnings, patch by Aleksey Nogin, r=ducarroz, sr=bienvenu 59673
git-svn-id: svn://10.0.0.236/trunk@134690 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:23:42 +00:00
bzbarsky%mit.edu
5e5a29e7af Fixing compiler warning. r=timeless.
git-svn-id: svn://10.0.0.236/trunk@134689 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:14:00 +00:00
beard%netscape.com
08e65cf4cd Fix build bustage, need MsgUtil[Debug].lib now.
git-svn-id: svn://10.0.0.236/trunk@134688 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:05:40 +00:00
mikep%oeone.com
bccfcda4bb Renaming file to selectAddresses.dtd.
git-svn-id: svn://10.0.0.236/trunk@134687 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:03:25 +00:00
mikep%oeone.com
3c7b376a4b Renaming files for Mac OS 9, as per bug 183106
git-svn-id: svn://10.0.0.236/trunk@134686 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:02:22 +00:00
mikep%oeone.com
c59abec732 Renaming files for bug 183106
git-svn-id: svn://10.0.0.236/trunk@134685 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:01:38 +00:00
timeless%mozdev.org
4c0d2dcfbc Bug 175789 <dialog>s don't need dialogOverlay
r=cmanske sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134683 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:25:59 +00:00
bienvenu%netscape.com
d451a4da18 remove unused var to fix warning from last checkin
git-svn-id: svn://10.0.0.236/trunk@134682 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:18:40 +00:00
bienvenu%netscape.com
d2a9218479 179162 chain junk mail classification requests by using new msg service streamMessage method r=dmose, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134681 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:06:46 +00:00
igor%mir2.org
29280edd09 To allow straightforward detection of functions created via Function(...) constructor, I added the fromFunctionConstructor boolean flag to NativeFunction which allows to simplify code dealing with the EcmaScript requirement to return anonymous as a name for such functions.
git-svn-id: svn://10.0.0.236/trunk@134680 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:43:14 +00:00
igor%mir2.org
b53f78eef1 1. Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=182028
Now caching of the last access slot covers GetterSlot instances as well and getter is always called for such slots

2. Fixing a potential race condition in setBySetter when a setter slot becomes an ordinary slot in response to a setter returning a value.

During execution of setBySetter a different thread can see initial null value in slot.value instead of the result of setter call as it is possible that JVM will first update slot.flags and only then slot.value for that thread. The fix replaces the old getter slot  by an ordinary one under synchronized block for that I added new getSlotPosition method and updated the rest of code accordingly.


git-svn-id: svn://10.0.0.236/trunk@134679 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:38:55 +00:00
bbaetz%student.usyd.edu.au
04bd28684d Bug 182946 - fix additional typo noticed on irc by tm
git-svn-id: svn://10.0.0.236/trunk@134678 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:35:44 +00:00
bbaetz%student.usyd.edu.au
1ee4c74dd0 Bug 182946 - fix regressions from bug 171493
(Bug.pm/show_bug.cgi/bug_form.pl reorg)
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134677 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 09:44:42 +00:00
peterv%netscape.com
496da7acfd Fix for bug 165532 (Disable cross-site loading of XSLT stylesheets by default). r=sicking, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@134676 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 09:20:43 +00:00
bzbarsky%mit.edu
e47b242a89 ugh. Forgot this one line...
git-svn-id: svn://10.0.0.236/trunk@134675 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 08:29:35 +00:00
bzbarsky%mit.edu
6ab8d32bdc get rid of build warning for unused var.
git-svn-id: svn://10.0.0.236/trunk@134674 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:53:22 +00:00
bzbarsky%mit.edu
fbeccbf189 Change nsICSSLoader to nsAString instead of nsString (build bustage).
git-svn-id: svn://10.0.0.236/trunk@134673 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:46:46 +00:00
bzbarsky%mit.edu
e6f2be4720 Fix windows bustage. Why can't this compiler get simple scoping right?
git-svn-id: svn://10.0.0.236/trunk@134672 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:39:59 +00:00
bzbarsky%mit.edu
e35cf70ed2 Fix Irix bustage. Stray CR chars are bad.
git-svn-id: svn://10.0.0.236/trunk@134669 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:13:38 +00:00
caillon%returnzero.com
d11a3d4a77 178291 - using window.fullScreen causes scripts to stop.
r=mstoltz sr=jst


git-svn-id: svn://10.0.0.236/trunk@134668 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:08:08 +00:00
bzbarsky%mit.edu
c3731640d3 Make the CSSLoader correctly order stylesheets as they are dynamically added
and removed via the DOM.  Clean up the nsIDocument stylesheet accessors.  Clean
up nsIDocumentObserver stylesheet stuff a bit.  Make style sheets visible in
the CSSOM (though not completely accessible) from the moment the load is kicked
off.  Make us have sheet objects that can be manipulated via CSSOM even for
failed loads. Bug 107567, bug 47734, bug 57225, bug 178407.
r=sicking,  sr=peterv.


git-svn-id: svn://10.0.0.236/trunk@134667 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 05:48:14 +00:00
bernd.mielke%snafu.de
41c72d5fee dont consider the outer table frame twice for a selection, bug 182449, r=karnaze sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134666 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 05:22:32 +00:00
mkaply%us.ibm.com
08320c37be #181678
r=me, sr=blizzard for platform specific code
OS/2 only - another regression from Webdings code


git-svn-id: svn://10.0.0.236/trunk@134665 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 04:49:10 +00:00
bienvenu%netscape.com
7a4356524a add string for auto unzip pref r=mstoltz, sr=sspitzer (not turned on yet) 180798
git-svn-id: svn://10.0.0.236/trunk@134664 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 04:35:05 +00:00
bienvenu%netscape.com
6f9dcc0a37 fix warning about unused variable fromr recent checkin, no bug, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134663 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:54:18 +00:00
bienvenu%netscape.com
ed468a3721 make sure we have a db in SyncFlags, bullet proofing for crash going offline r/sr=sspitzer 181372
git-svn-id: svn://10.0.0.236/trunk@134662 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:42:36 +00:00
bienvenu%netscape.com
4f21694b30 fix losing delete changes on server that says there are no permanent flags, r/sr=sspitzer 182641
git-svn-id: svn://10.0.0.236/trunk@134661 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:38:10 +00:00
alecf%netscape.com
506ef8ddc6 stupid mac / linux compilers were accepting "const const" - but the mac does not.
fixing bustage


git-svn-id: svn://10.0.0.236/trunk@134660 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 02:24:50 +00:00
miodrag%netscape.com
1e4d37b68e Removed in sdk 4.17
git-svn-id: svn://10.0.0.236/trunk@134658 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 01:19:09 +00:00
ashishbhatt%netscape.com
4aee9036fd updating test case
git-svn-id: svn://10.0.0.236/trunk@134657 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 01:12:10 +00:00
miodrag%netscape.com
9547a3050f Minor corrections
git-svn-id: svn://10.0.0.236/trunk@134656 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:43:13 +00:00
miodrag%netscape.com
f33ff5c692 Added JAVA_VERSION variable, .CHECK_VARS target, better support for different java versions
git-svn-id: svn://10.0.0.236/trunk@134655 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:42:35 +00:00
miodrag%netscape.com
fa2abcd100 Updtates for LDAPJDK 4.17
git-svn-id: svn://10.0.0.236/trunk@134654 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:38:20 +00:00
miodrag%netscape.com
a1ee7a06f7 A minor change for javadoc
git-svn-id: svn://10.0.0.236/trunk@134653 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:36:21 +00:00
miodrag%netscape.com
6d40d91740 Added jss32_stub.jar
git-svn-id: svn://10.0.0.236/trunk@134652 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:33:56 +00:00
miodrag%netscape.com
5413a51b98 A fix for jdk1.4 javadoc
git-svn-id: svn://10.0.0.236/trunk@134651 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:26:50 +00:00
alecf%netscape.com
8b24574acb ignore generated makefiles
git-svn-id: svn://10.0.0.236/trunk@134649 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:48:25 +00:00
blizzard%redhat.com
eefb68d410 Bug #182162. gtk2 embedded moz random crashing on toplevel focus in/out. Make sure to pass the right object as the callback argument. r=tor, sr=shaver
git-svn-id: svn://10.0.0.236/trunk@134648 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:47:28 +00:00
ducarroz%netscape.com
fb830b2e98 Fix for bug 180901. Instead of addressing the message to the sender when no recipient is disclosed, it's send now to an empty group named undisclosed-recipients (this is localizable). Also, this is done only if the pref "mail.compose.add_undisclosed_recipients" is set to true. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134645 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:43:26 +00:00
sicking%bigfoot.com
60b76c0448 Bug 169124: Make the XSLT contentsink create generic xml-elements for all elements to get around limitations with xhtml elements. Also do some cleaning in the XML contentsink.
r=harishd sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134640 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:24:57 +00:00
cmanske%netscape.com
5398e492ae Reduce bloat in composer dialog JS. b=183055, r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@134638 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:05:27 +00:00
cmanske%netscape.com
53a7359942 Fixed conflicting insert HTML commands. b=180303, r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@134637 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:00:54 +00:00
wtc%netscape.com
d67bf81692 Bug 181913: disable the makefile rule for .s for OS/2 so that .asm files
are used when there are same-named .s files in the same directory.  The
patch is contributed by Javier Pedemonte <pedemont@us.ibm.com>.


git-svn-id: svn://10.0.0.236/trunk@134636 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:57:21 +00:00
syd%netscape.com
2c4aefc3a8 Change QuickTime --> Quicktime to avoid build failure if includes are located on
a UFS-formatted columne (Mach 0 builds only). r=seawood@netscape.com,
sr=sfraser@netscape.com. http://bugzilla.mozilla.org/show_bug.cgi?id=182425
Fixing this gets us a clean build, so I'm going to mark the bug fixed.


git-svn-id: svn://10.0.0.236/trunk@134633 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:34:03 +00:00
alecf%netscape.com
736bd2c76d oops, forgot to add that my last checkin was bug 177545
git-svn-id: svn://10.0.0.236/trunk@134632 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:32:04 +00:00
alecf%netscape.com
87822e9a61 switch nsBindingManager over to pldhash and nsDoubleHashtable - this greatly reduces the number of allocations from XBL, the single worst consumer of nsHashtable!
sr=brendan, r=hyatt


git-svn-id: svn://10.0.0.236/trunk@134631 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:30:26 +00:00
yokoyama%netscape.com
3e375c3472 Bug 171468
Widget Save As dlgbox needs to include
options.
Affects only in Windows platforms
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134630 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:29:20 +00:00
nhotta%netscape.com
fd1fc8129e Adding sort/search support for phonetic names,
bug 179823, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134629 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:27:38 +00:00
nhotta%netscape.com
77e66a53f3 Adding sort/search support for phonetic names,
bug 179823, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134628 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:21:08 +00:00
brade%netscape.com
8ad91047f9 remove dead code; cleanup command params for a few commands; standardize QI calls (bug 180745, r=cmanske, sr=smfr)
git-svn-id: svn://10.0.0.236/trunk@134627 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:20:12 +00:00
nhotta%netscape.com
8625dc26aa Adding an option to auto-detect common short date format,
bug 98144, r=ducarroz, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134626 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:19:24 +00:00
nhotta%netscape.com
55dac71019 Adding an option to auto-detect common short date format,
bug 98144, r=ducarroz, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134625 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:13:18 +00:00
nhotta%netscape.com
9ca6b931cc Adding Finish method to nsIScriptableUConv,
check in for kazhik@mozilla.gr.jp,
r=nhotta, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@134624 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:11:11 +00:00
brade%netscape.com
9a84531cb2 documentation; not part of a build
git-svn-id: svn://10.0.0.236/trunk@134623 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 20:43:24 +00:00
cbiesinger%web.de
ab17d8f22f 152504 patch by david g king dgk@metrocast.net r=pch sr=ben
JavaScript error while leaving File Bookmark dialog (treecols has no properties)


git-svn-id: svn://10.0.0.236/trunk@134620 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 19:39:45 +00:00
mostafah%oeone.com
ae492c9252 Checked in patch for bug 182880: [patch] multi day, all day events are not saved into ical file.
git-svn-id: svn://10.0.0.236/trunk@134616 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 18:08:22 +00:00
syd%netscape.com
362f719af0 Fix case for Mach o UFS builds. http://bugzilla.mozilla.org/show_bug.cgi?id=182425, r=seawood, sr=fraser
git-svn-id: svn://10.0.0.236/trunk@134615 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 15:39:04 +00:00
syd%netscape.com
fe95ae3eaf Fix case on some files for mach o builds on UFS. r=seawood, sr=sfraser.
http://bugzilla.mozilla.org/show_bug.cgi?id=182425


git-svn-id: svn://10.0.0.236/trunk@134614 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 15:37:55 +00:00
cbiesinger%web.de
a065c99081 103859 patch by neil@parkwaycc.co.uk r=cmanske sr=alecf controller.QueryInterface(Components.interfaces.nsICommandController) should be in goUpdateComposerMenuItems instead of goUpdateCommandState
git-svn-id: svn://10.0.0.236/trunk@134613 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 14:22:43 +00:00
cbiesinger%web.de
fedacb772c 171721 patch by neil@parkwaycc.co.uk r=cmanske sr=alecf Mozilla add-ins can move the Composer taskbutton
git-svn-id: svn://10.0.0.236/trunk@134612 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 14:01:01 +00:00
cbiesinger%web.de
1ac1bdafae 160927 patch by james ross twpol@aol.com r=varga sr=jag
"Customize Tab" breaks with JavaScript error


git-svn-id: svn://10.0.0.236/trunk@134611 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:57:35 +00:00
cbiesinger%web.de
a651c016eb 160040 patch by james ross twpol@aol.com r=varga sr=alecf Download manager; column order not persisted
git-svn-id: svn://10.0.0.236/trunk@134610 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:55:53 +00:00
glazman%netscape.com
a422a6442b Table of Contents management in Composer (lives under Insert menu); b=170050, r=cmanske, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134609 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:54:41 +00:00
bratell%lysator.liu.se
7491cb486a Bug 165877 - ToFloat never reported when the string wasn't a legal float. Also switch to strtod for a small performance win. r=jaggernaut@netscape.com, sr=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134608 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 09:30:59 +00:00
mkaply%us.ibm.com
7ad05b4517 OS/2 only - type in install script
git-svn-id: svn://10.0.0.236/trunk@134607 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 06:27:07 +00:00
justdave%syndicomm.com
cdd8d6b924 Bug 177850: checksetup.pl was failing if the user didn't have read permissions to the entire Bugzilla path
Patch by Jussi Sirpoma <jussi@comlink.fi>
r=justdave, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134606 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 01:47:20 +00:00
axel%pike.org
a7451302b8 npob, docs, initial upload, work in progress
git-svn-id: svn://10.0.0.236/trunk@134605 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 20:47:38 +00:00
cbiesinger%web.de
f754767d3e bug 84756 patch by Harshal <keeda@hotpop.com> r=caillon sr=peterv
JS menu is destroyed during use


git-svn-id: svn://10.0.0.236/trunk@134604 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 13:54:39 +00:00
jake%bugzilla.org
a5c1bff965 Bug 178880 - Creation date is now displayed in the long list.
Patch by Frank Wein <mcsmurf@gmx.net>
r=jake
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134603 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 03:59:33 +00:00
caillon%returnzero.com
f62538ac65 181585 - Moving rdf/ over to the new pref APIs since nsIPref is deprecated.
r=rjc sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134602 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 03:20:50 +00:00
cmanske%netscape.com
39d3f98587 Move caret to text position with rt click. b=181547, r=rods, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134597 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 18:59:34 +00:00
caillon%returnzero.com
1396a937d1 182725 - nsIPref is deprecated - use nsIPrefBranch and nsIPrefService
r=adamlock sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134596 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 15:22:31 +00:00
peterv%netscape.com
06bfcaa734 Fix OS/2 bustage.
git-svn-id: svn://10.0.0.236/trunk@134595 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 09:45:19 +00:00
peterv%netscape.com
d612da8f4c Fix static build bustage.
git-svn-id: svn://10.0.0.236/trunk@134594 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 09:43:13 +00:00
brendan%mozilla.org
3e21682c6e Optimize s.match(r) into r.test(s) if possible (no bug, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@134593 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 06:51:27 +00:00
bugreport%peshkin.net
19d15cdfda Bug 182512 Charts over time broken
patch by joel
r=gerv
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134592 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 03:47:41 +00:00
bugreport%peshkin.net
1c221514d7 Bug 181951 Cannot delete groups
Patch by joel
r=burnus,bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134591 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 03:46:03 +00:00
peterv%netscape.com
4fe797e9a2 Fix warning.
git-svn-id: svn://10.0.0.236/trunk@134590 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 02:07:59 +00:00
peterv%netscape.com
7501d0a65d Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@134589 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 00:27:09 +00:00
alexsavulov%netscape.com
7c522c57b3 Fix for bug 138957 - Submission triggering element must submit nam/value pair
if the submission is performed from onlcick and the handler retunrs true.
Introduced submission deferal to wait for the handler's return value.
r= jkeiser sr=jst


git-svn-id: svn://10.0.0.236/trunk@134588 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 00:01:21 +00:00
peterv%netscape.com
d103a96ada Fix for bug 176610 (Make nsNameSpaceManager a service). r=caillon, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134587 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 23:44:07 +00:00
paper%animecity.nu
ce34f046a9 Bug 148637 Clean-up imgContainerGIF. r=biesi sr=tor
git-svn-id: svn://10.0.0.236/trunk@134586 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 22:45:04 +00:00
blakeross%telocity.com
9b36be5b84 And, of course, update the jar...
git-svn-id: svn://10.0.0.236/trunk@134583 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 04:54:59 +00:00
blakeross%telocity.com
19c2944b04 Cut more comm dependencies; remove some unused files.
git-svn-id: svn://10.0.0.236/trunk@134582 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 04:50:50 +00:00
dbaron%fas.harvard.edu
2644fbd1b6 Remove unneeded stubs for code to support Navigator 4.x-only suppress attribute. b=182554 r=biesi (who noticed the problem) sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134581 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 23:02:31 +00:00
depstein%netscape.com
a5f1824026 refactored code, changes to object error checking handling. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134580 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 22:39:58 +00:00
cbiesinger%web.de
537c0be9c1 removing unused function Area::ToHTML. r=peterv sr=dbaron. no bug.
git-svn-id: svn://10.0.0.236/trunk@134578 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 22:18:01 +00:00
dbaron%fas.harvard.edu
ec61a6b0ab Remove unused parser-related code. b=130439 r=harishd sr=jst
git-svn-id: svn://10.0.0.236/trunk@134577 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:43:51 +00:00
dbaron%fas.harvard.edu
d77395a3b9 Fix margin collapsing of margins other than the first child's top margin out of the top of a block. b=44242, 18206 r=roc (mostly)
git-svn-id: svn://10.0.0.236/trunk@134576 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:29:28 +00:00
dbaron%fas.harvard.edu
bbf1cff0b4 Back out previous checkin. b=180711
git-svn-id: svn://10.0.0.236/trunk@134575 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:15:27 +00:00
dbaron%fas.harvard.edu
782bef8d5f Don't use default parameters for NS_NewAreaFrame. Make relatively positioned frames not use NS_BLOCK_WRAP_SIZE and NS_BLOCK_SPACE_MGR. b=180711 r=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134574 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:12:16 +00:00
kaie%netscape.com
f65124c8f1 b=180806 IMAP backend should avoid unnecessary logout
r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134573 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 18:36:36 +00:00
kaie%netscape.com
c95c71be0b b=115294 Support S/Mime signing only configuration / relax certificate configuration requirements
r=javi sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134572 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 18:31:03 +00:00
sspitzer%netscape.com
96f8e9be54 followup fix to bug #182386
now that there isn't an unknown state, fix the dialog text.

thanks to kairo@kairo.at for pointing this out.


git-svn-id: svn://10.0.0.236/trunk@134571 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 16:42:50 +00:00
mikep%oeone.com
abb3c9b39e Adding in side calendar to main window.
git-svn-id: svn://10.0.0.236/trunk@134568 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 14:20:09 +00:00
bbaetz%student.usyd.edu.au
4dd0d47760 Bug 171493 - make show_bug use Bug.pm and remove bug_form.pl
r=justdave, joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134567 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 10:49:58 +00:00
sspitzer%netscape.com
a8f1bc37f3 fix for bug #179989. make it so if you try to drop "illegal" urls (like mailto:)
or random, non-url text, we don't attach it.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134566 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 08:55:09 +00:00
sspitzer%netscape.com
bac2696b35 fix for #42105.
when creating a news account, don't set the username to be the username
part of the email address (from the wizard).

this fixes bug #154213, a problem with the account picker in the subscribe dialog
cause by the bogus username

also, some code cleanup

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134565 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 06:51:10 +00:00
paper%animecity.nu
2cf75c349c Bug 179546. Remove gs->transparent_pixel since it's not being used.
r=biesi sr=tor


git-svn-id: svn://10.0.0.236/trunk@134564 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 05:50:49 +00:00
sspitzer%netscape.com
2de2445f5d fix for bug #180019.
fix problems when choosing "Customize..." mail view, and then cancelling.
also fix problems when you choose the same view as previously chosen.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134562 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 04:31:58 +00:00
sspitzer%netscape.com
d4c9516bdd followup to bug #182386. no need to ship these unused icons to the user.
git-svn-id: svn://10.0.0.236/trunk@134561 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:50:39 +00:00
sspitzer%netscape.com
3d54bb27b0 fix for bug #182381. remove harded coded strings.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134560 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:48:20 +00:00
sspitzer%netscape.com
a4fe7475bb fix for bug #182386. "unknown" junk state should look like "not junk"
to avoid confusion.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134559 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:39:45 +00:00
jrgm%netscape.com
5114acec96 add back consts to fix bug 182184, 'throbber/back/forward stopped working', r=caillon, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134558 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:37:26 +00:00
bienvenu%netscape.com
8c091d4aad fix problem with folder permissions and imap acl r/sr=sspitzer 170597
git-svn-id: svn://10.0.0.236/trunk@134557 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:32:17 +00:00
depstein%netscape.com
dac59cd51d Add test cases for nsIChannel. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134556 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:31:43 +00:00
jst%netscape.com
49eed9d43a Renaming member variables in nsTimeoutImpl from 'foo' to 'mFoo'. rs=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134555 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:35:45 +00:00
jst%netscape.com
656e41ee04 Fixing bug 178810. Original idea for the fix proposed by keeda@hotpop.com, complete fix written by me. Fix reference counting goofup that is triggerd by timeouts that run while a timeout is executing (due to a bug that lets timeouts fire while modal windows are open). r=peterv@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134553 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:04:18 +00:00
sspitzer%netscape.com
4c0abb0450 fix for #173915. add print preview sub menu to print button in mailnews.
fix title for print preview.  thanks to neil@parkwaycc.co.uk for the patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134551 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:00:32 +00:00
curt%netscape.com
be98122dd2 Merging in Sean's fix from bug #182195
(This script isn't part of the build yet.)


git-svn-id: svn://10.0.0.236/trunk@134548 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 00:28:36 +00:00
jkeiser%netscape.com
6ed54fa40a Make testcase reflect its comments (bug 130834), r=timeless, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134547 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:50:40 +00:00
sspitzer%netscape.com
23d598147d fix for bug #180477. fix crasher and other problems with toggling junk
state from the advanced search dialog.  and some code cleanup.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134546 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:36:38 +00:00
ssu%netscape.com
703255b7b5 fixing bug 182195 - XP Start Menu displays $ProductNameInternal$ instead of Mozilla for the default browser. r=dveditz sr=leaf
git-svn-id: svn://10.0.0.236/trunk@134545 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:25:02 +00:00
akkana%netscape.com
acbc41ecc3 169615: Get rid of MOZILLA_FIVE_HOME warning. r=dmose sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134542 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:02:17 +00:00
curt%netscape.com
1c4588e4f9 New installers build process which will not become part of the build
until Leaf flips the switch on the nightly automation process.


git-svn-id: svn://10.0.0.236/trunk@134541 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:50:46 +00:00
mkaply%us.ibm.com
45bdb3c528 #182014
r=me, sr=blizzard (platform specific code)
OS/2 only - regession caused by webdings code - forgot to set convertcodepage in unicode case


git-svn-id: svn://10.0.0.236/trunk@134540 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:33:37 +00:00
despotdaemon%netscape.com
f7464b5138 Pseudo-automatic update of changes made by amardare@qnx.com.
git-svn-id: svn://10.0.0.236/trunk@134538 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:14:11 +00:00
despotdaemon%netscape.com
b66e1c96ac Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134537 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:10:47 +00:00
darin%netscape.com
566b2efd7b attempted fix for compilation error w/ GCC 2.91.66
git-svn-id: svn://10.0.0.236/trunk@134536 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 20:21:12 +00:00
shanjian%netscape.com
f0b8eddb74 #168582 POST document is not displayed correctly in new window
carry over charset to new window.
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134535 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 19:53:56 +00:00
jake%bugzilla.org
62306f0779 Bug 67077 - We now include the timezone (as configured in editparams.cgi) on every time we display.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134534 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 16:00:44 +00:00
mikep%oeone.com
812a38cd77 Fixing up JS warnings, as per bug 162166.
git-svn-id: svn://10.0.0.236/trunk@134533 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 15:20:28 +00:00
mikep%oeone.com
913d8b05d8 Fixing bug 173028, allowing multiple selection of importing files.
git-svn-id: svn://10.0.0.236/trunk@134532 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 14:53:38 +00:00
bugreport%peshkin.net
cd1d896b54 Bug 173761 Need ability to always require login
patch by joel
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134531 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 14:46:06 +00:00
ere%atp.fi
e3097d519b Bug 24064: Need ability to specify Trash folder
r=Henry.Jia
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134530 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 12:20:37 +00:00
henry.jia%sun.com
f17f4ad580 Bug 161085: get rid of m_onlineBaseFolderExists, it's not used
r=antonio.xu@sun.com, sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134529 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 04:02:00 +00:00
dbradley%netscape.com
fc95069bc7 Bug 180182 - crash[@ 0x10101010 - js_GetSlotThreadSafe - JS_GetPrivate]
This was caused by GC occuring within JS_CloneFunctionObject, and the jsval passed in wasn't protected. r=dbradley, sr=jst, patch=jband


git-svn-id: svn://10.0.0.236/trunk@134527 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:55:17 +00:00
bzbarsky%mit.edu
a7df7dd1ed Remove fishy logic with the advisory type. Bug 155421, r=sicking, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134526 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:42:37 +00:00
wtc%netscape.com
7a20504c45 Bug 162358: added NSPR file I/O functions that take UTF16 pathnames. The
patch is contributed by Roy Yokoyama <yokoyama@netscape.com>.
Modified Files: config/config.mk prio.h prtypes.h _win95.h primpl.h
                prdir.c prfile.c w95io.c ptio.c


git-svn-id: svn://10.0.0.236/trunk@134523 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:17:13 +00:00
blizzard%redhat.com
accc0f11f7 Oops, that debugging code shouldn't have been checked in.
git-svn-id: svn://10.0.0.236/trunk@134521 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:02:40 +00:00
blizzard%redhat.com
e2100603d6 Bug 177405. Scrollbars look funny of they have been resized to infinite. Fix the size at infinity to 1 so the bar fills up the entire length of the scrollbar.
git-svn-id: svn://10.0.0.236/trunk@134520 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:56:11 +00:00
dmose%netscape.com
c5da7cc880 Fix mailnews gcc warnings (bug 179775); thanks to Pratik <psolanki@netscape.net> for the patch. r=dmose, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134519 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:52:37 +00:00
blizzard%redhat.com
dfff886cca Bug #182130. Fix crashes with gtk2 and realvideo plugin. Check to make sure that the window in question is an Xt window before using it. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134518 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:46:39 +00:00
brendan%mozilla.org
6c127b41c8 Fix rt->checkObjectAccess call in fun_getProperty to avoid non-object-accessing calls (r=waterson).
git-svn-id: svn://10.0.0.236/trunk@134515 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:11:53 +00:00
blythe%netscape.com
69dbe67535 Not part of build.
Script to help determine where uuids are declared and who uses them.


git-svn-id: svn://10.0.0.236/trunk@134514 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:09:05 +00:00
depstein%netscape.com
628529582f cosmetic string change. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134511 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:28:51 +00:00
wtc%netscape.com
22041a7a31 Bug 181878: fixed two more bugs in the new code to support multiple email
addresses per certificate.  r=nelsonb.


git-svn-id: svn://10.0.0.236/trunk@134510 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:28:03 +00:00
pschwartau%netscape.com
8b70df5c22 Removing an extraneous line.
git-svn-id: svn://10.0.0.236/trunk@134509 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:12:21 +00:00
pschwartau%netscape.com
b59d6629c8 Initial add. Regression test for bug 154693.
git-svn-id: svn://10.0.0.236/trunk@134508 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:00:29 +00:00
cmanske%netscape.com
a4776ceb5a Added command to notify when document url changes. b=181091, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134507 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 00:35:09 +00:00
jrgm%netscape.com
f2bba7188d 'Remove 'Done' in browser statusbar after first link hover' [bug 181689], (and remove some dead code), r=caillon, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134506 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:43:25 +00:00
ssu%netscape.com
39b9594222 checking in patches for bugzilla2@farside.demon.co.uk for bug 169159 - Inconsistency in the WinXP Start Menu item (version in one not in other). r=ssu, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134505 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:21:07 +00:00
wtc%netscape.com
a53eddc602 Bug 182086: on Mac OS X, ranlib needs to be rerun after static libraries
are moved.


git-svn-id: svn://10.0.0.236/trunk@134504 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:05:56 +00:00
akkana%netscape.com
b038a6f9c6 162083: fix ctrl-delete to delete by words, not to end of line. r=brade sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134503 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:01:12 +00:00
peterlubczynski%netscape.com
9cfbd11307 Fixing bug 137535, supporting BP_GetSupportedMIMETypes on Mach-O for MPEGS to work r=sdagley sr=beard
git-svn-id: svn://10.0.0.236/trunk@134501 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:28:39 +00:00
akkana%netscape.com
d8f411eac7 110378: Don't lose data when head is rewritten to HEAD. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@134497 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:15:30 +00:00
relyea%netscape.com
4a2048f209 More review changes,
Fix incorrect return in pcertdb.c


git-svn-id: svn://10.0.0.236/trunk@134496 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:14:56 +00:00
bienvenu%netscape.com
afe5fca8cf add msg window to spam classification calls for feedback, r=dmose, sr=sspitzer, 179162
git-svn-id: svn://10.0.0.236/trunk@134491 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:47:27 +00:00
bienvenu%netscape.com
0d7ff2e1a5 add msg window to spam classification calls for feedback, r=dmose, sr=sspitzer, 179162
git-svn-id: svn://10.0.0.236/trunk@134490 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:41:44 +00:00
caillon%returnzero.com
cf5e825d62 182084 - Use the preprocessor to turn off slider debugging rather than a run-time check.
r=cbiesinger, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134489 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:38:18 +00:00
neeti%netscape.com
f3e05e1045 fix for bug 163941-resolving shorcuts, r=rpotts,sr=darin
git-svn-id: svn://10.0.0.236/trunk@134488 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:37:58 +00:00
gerv%gerv.net
b3fbaa5983 Bug 114179 - Concentration, improvement, and templatisation of Bugzilla general user help system. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134483 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:11:23 +00:00
gerv%gerv.net
cf013779c4 Bug 181221 - CSV reports on 2-d tables have header messed up. Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134482 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:09:09 +00:00
relyea%netscape.com
cfd47f83ed Incorporate some of Nelson's review changes.
Collapse all the profile data into an array for easier processing when printing out.


git-svn-id: svn://10.0.0.236/trunk@134479 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:03:18 +00:00
relyea%netscape.com
07edc88c17 Move mac build changes from 3.6 branch back to the trunk
git-svn-id: svn://10.0.0.236/trunk@134478 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:00:31 +00:00
shanjian%netscape.com
4a17561eda #171813 Universal auto detector doesn't work well on sohu news page
adjust the detecting parameter.
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134475 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 20:56:08 +00:00
shanjian%netscape.com
9a3aa1fa52 #180988 ¨¢¨¦¨ª¨®¨²¨¤¨¨¨¬¨°¨´¨¢¨¦¨ª¨®¨²¨¤¨¨¨¬¨°¨´ in text causes universal AD to display in Big5
count every char for total.
yokoyama: review+
bzbarsky: superreview+


git-svn-id: svn://10.0.0.236/trunk@134471 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 20:03:30 +00:00
pschwartau%netscape.com
ef2f1b0425 Rearranging section order for greater readability.
git-svn-id: svn://10.0.0.236/trunk@134470 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:55:34 +00:00
pschwartau%netscape.com
a11df2b282 Initial add. Regression test for bug 181834 by felix.meschberger@day.com.
git-svn-id: svn://10.0.0.236/trunk@134469 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:48:14 +00:00
wtc%netscape.com
b36655bf56 Bug 180228: moved CERT_CRLCacheRefreshIssuer from the NSS_3.6.1 section to
the NSS_3.7 section.


git-svn-id: svn://10.0.0.236/trunk@134467 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:21:55 +00:00
darin%netscape.com
3ffaddf49c cvs removing unused files, b=181699, r=gagan, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134465 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:11:33 +00:00
darin%netscape.com
74c316de9d fixes bug 181699 "remove unused nsProxyAutoConfigUtils and
nsIProxyAutoConfigUtils" r=gagan sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134463 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:58:27 +00:00
bzbarsky%mit.edu
b5fe6e003d Fix crash in ~nsCOMArrayEnumerator. Bug 181592, r=alecf, sr=scc
git-svn-id: svn://10.0.0.236/trunk@134462 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:57:56 +00:00
relyea%netscape.com
512e484870 Incorporate Terry's and Nelson's reviews.
git-svn-id: svn://10.0.0.236/trunk@134459 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:27:25 +00:00
blizzard%redhat.com
26e091b8d0 Oops, fix the crash I just introduced.
git-svn-id: svn://10.0.0.236/trunk@134457 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 16:01:26 +00:00
blizzard%redhat.com
325d2ae02c Bug #179740. [gtk2] problems with iframes - make sure that all the windows that are supposed to be listening for resize events actually are doing so. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134456 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 15:46:55 +00:00
ducarroz%netscape.com
d2555e408f Fix for 181155. As Mailing list cards don't have an email address, we should not request one to consider the card valid (this is a regression of my previous checkin). R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134455 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 15:23:47 +00:00
mhammond%skippinet.com.au
f4be74069c Get pyxpcom building and working again, at least on Windows. file test
fails, but we can live with that for now.  Not part of the build.


git-svn-id: svn://10.0.0.236/trunk@134454 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 11:39:07 +00:00
bratell%lysator.liu.se
6d8229ae4a Bug 181545 - removal of some dead code. Fixes a couple of compiler warnings. r=ducarroz, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134453 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:36:22 +00:00
cltbld%netscape.com
a1d9f77e5d up clamp to 20 hours
git-svn-id: svn://10.0.0.236/trunk@134452 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:20:40 +00:00
igor%mir2.org
4c4f27006b I moved decompilation code from NativeFunction to Parser so changes in compressed source structure will affect only one file.
git-svn-id: svn://10.0.0.236/trunk@134451 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:00:44 +00:00
cltbld%netscape.com
eaf04fadfc oops, wrong units for clamp rule
git-svn-id: svn://10.0.0.236/trunk@134449 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:42:40 +00:00
darin%netscape.com
9aa5bdc4c8 fixes bug 153888 "'Redirection limit' error dialog should implicate cookie blocking"
r=adamlock sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@134448 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:09:27 +00:00
nelsonb%netscape.com
78dee2f73b Back out my last change.
git-svn-id: svn://10.0.0.236/trunk@134447 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:07:20 +00:00
bugreport%peshkin.net
6a979fd72b Bug 181960 Reason for account being disabled is not shown
Patch by joel
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134446 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 06:33:28 +00:00
nelsonb%netscape.com
ae3f5cf676 Eliminate bug due to uninitialized variable index. Eliminate leak.
Remove lots of warnings about signed/unsigned and assigning int to uchar.


git-svn-id: svn://10.0.0.236/trunk@134445 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 05:58:51 +00:00
edburns%acm.org
58477a5859 This file now builds an installable xpi for webclient!
git-svn-id: svn://10.0.0.236/trunk@134444 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 05:51:27 +00:00
varga%netscape.com
6f64b4fddb Fixing bookmarks quick search label and accesskey. Bug 162542
r=caillon,sr=mozbot


git-svn-id: svn://10.0.0.236/trunk@134443 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 04:45:40 +00:00
shanjian%netscape.com
7beea85904 #181117 Non-ASCII(plane 1 surrogate) link not correctly parsed in UTF-16
if the doc charset is utf-16 or utf-32,use utf8 for url encoding.
r=nhotta, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134442 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 04:42:30 +00:00
pschwartau%netscape.com
c4d51e9545 Trivial whitespace fix.
git-svn-id: svn://10.0.0.236/trunk@134440 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:55:54 +00:00
pschwartau%netscape.com
0b66433c29 Improvement by joerg.schaible@gmx.de: test not only that |err.toString()| contains |err.message|, but also that |err.message| contains the right value; i.e the value provided to the Error constructor. See bug 181909.
git-svn-id: svn://10.0.0.236/trunk@134439 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:53:39 +00:00
pschwartau%netscape.com
11412fd4ce Improvement by joerg.schaible@gmx.de: test not only that |err.toString()| contains |err.message|, but also that |err.message| contains the right value; i.e the value provided to the Error constructor.
git-svn-id: svn://10.0.0.236/trunk@134438 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:03:32 +00:00
pschwartau%netscape.com
dba533dff9 Fixing three typos.
git-svn-id: svn://10.0.0.236/trunk@134437 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:17:37 +00:00
pschwartau%netscape.com
6f3dbcafc4 Trivial whitespace fix.
git-svn-id: svn://10.0.0.236/trunk@134436 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:16:23 +00:00
bzbarsky%mit.edu
00957e589b Handle null namespaces in getElementsByTagNameNS. Bug 181791, r=sicking, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134435 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:13:27 +00:00
cltbld%netscape.com
2aa8fa3471 clamp y-axis at 8hrs
git-svn-id: svn://10.0.0.236/trunk@134434 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:02:59 +00:00
sfraser%netscape.com
6e93e54f2d Fix bug 181823: make CheckSameOrigin always return a value, rather than garbage. r=heikki, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134433 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:54:12 +00:00
bienvenu%netscape.com
e1d8800f06 fix topcrash in imap GetShowAttachmentsInline, r=ducarroz, sr=sspitzer 181858
git-svn-id: svn://10.0.0.236/trunk@134432 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:45:07 +00:00
nhotta%netscape.com
3a605e8f26 Moving displayName.lastnamefirst out to .property to make it localizable,
bug 160546, r=cavin, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@134431 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:40:50 +00:00
brendan%mozilla.org
52737cc6b9 Comment nit-picks (comment changes only).
git-svn-id: svn://10.0.0.236/trunk@134430 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:33:08 +00:00
brendan%mozilla.org
d6a719baa7 Relax comments restricting Operate calls from enumerator to allow lookups (no bug, comment change only).
git-svn-id: svn://10.0.0.236/trunk@134429 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:32:07 +00:00
darin%netscape.com
556ee1569a fixes bug 141605 "Need to work around non-standard Digest auth server
implementations [was: Digest Authorization do not quote certain values]"
patch=pach@cs.cmu.edu r=bbaetz sr=darin


git-svn-id: svn://10.0.0.236/trunk@134428 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:26:13 +00:00
relyea%netscape.com
bee24534b4 Bug 181878 allow multiple email addresses to point to a single subject record.
git-svn-id: svn://10.0.0.236/trunk@134427 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:13:54 +00:00
smontagu%netscape.com
7a3e55577b Bug 108136: Shift_JIS conversion problem on MacOS9, OS/2. Authors=shom@vinelinux.org, k-ichioka@msb.biglobe.ne.jp; r=ftang, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@134426 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:44:28 +00:00
bzbarsky%mit.edu
0258e6972f Fix crash if a site overrides one of our "magic" rules. Make some of the rules
!important, make nsViewportFrame a containing block no matter what the CSS
says. Bug 181692, r=karnaze, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134425 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:40:58 +00:00
bzbarsky%mit.edu
acc91df5aa Fix bug 181472 -- uri fixup should do the PossiblyHostPortUrl check before
calling NS_NewURI if the protocol handler is the external protocol handler.
r=adamlock, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134424 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:36:37 +00:00
caillon%returnzero.com
138f8ebfcf Bug 181602 - use the newer pref APIs.
r=aaronl sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134423 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:30:13 +00:00
caillon%returnzero.com
90a818bc51 Bug 181415 - Converting over to the new pref APIs
r=aaronl sr=bryner


git-svn-id: svn://10.0.0.236/trunk@134422 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:29:08 +00:00
bienvenu%netscape.com
9782a4920b cleanup dead/unused pop3/local code, r/sr=sspitzer 181805
git-svn-id: svn://10.0.0.236/trunk@134421 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:28:01 +00:00
locka%iol.ie
0b1adf6a45 NOT PART OF BUILD. Added a test to exercise postdata functionality of IWebBrowser2::Navigate2
git-svn-id: svn://10.0.0.236/trunk@134420 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:27:39 +00:00
caillon%returnzero.com
6bb41262ac Bug 181600, Updating for reviewer comments (removing an if). still r=sicking,sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134419 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:27:29 +00:00
caillon%returnzero.com
bd7eb45cc3 Bug 181600 - Use the new pref APIs. r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134418 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:26:06 +00:00
darin%netscape.com
8a27323c19 fixes bug 181732 "nordic mtv site produces 'is not a valid protocol'"
r=andreas.otte@debitel.net sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134417 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:25:09 +00:00
caillon%returnzero.com
be4452b730 180551 - Add color, thickness, and invert to the flasher interface. They should not be passed around so often to its methods since they rarely change and really
belong on the interface to begin with.
r=timeless,sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134416 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:24:30 +00:00
caillon%returnzero.com
58385b1d1d 175197 - Caching the window's prefs so we don't need to constantly re-fetch the service, move the calls to use the new prefs API in the process.
r/sr=sicking,jst,alecf


git-svn-id: svn://10.0.0.236/trunk@134415 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:21:25 +00:00
igor%mir2.org
5794fd2948 Add args and argCount to InterpreterData to emphasize that InterpretedScript/InterpretedFunction are just runtime wrappers around InterpreterData
git-svn-id: svn://10.0.0.236/trunk@134412 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 21:33:56 +00:00
igor%mir2.org
5c23c40494 Wrap restoring of the original optimization level into finally block
git-svn-id: svn://10.0.0.236/trunk@134407 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 16:46:16 +00:00
igor%mir2.org
bcb7c1ff89 Fixing 181654: Error.prototype.toString is a generic function now
printing this.name + ": " + this.message for any this.


git-svn-id: svn://10.0.0.236/trunk@134406 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 16:44:30 +00:00
dbaron%fas.harvard.edu
8d1c43cdb5 Add newline to end of file to fix gcc 3.2 bustage.
git-svn-id: svn://10.0.0.236/trunk@134405 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 15:22:41 +00:00
glazman%netscape.com
3b885b7055 -- not part of the build --
-- CaScadeS only --

compatibility tables for CSS 1 and CSS 2


git-svn-id: svn://10.0.0.236/trunk@134402 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 14:02:51 +00:00
glazman%netscape.com
0102abbeab Coalesce similar inline nodes in Composer's CSS mode; b=179055, r=jfrancis, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134401 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 13:41:26 +00:00
sicking%bigfoot.com
441830f1fb Bug 8929: Kill NS_COMFALSE
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@134400 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 12:44:03 +00:00
sicking%bigfoot.com
6f8753e832 Bug 8929: Kill NS_COMFALSE
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@134398 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 11:21:22 +00:00
sicking%bigfoot.com
2c2d9b13e5 Bug 181808: Implement and declare nsIDocumentObserver using macros
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134397 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 09:38:27 +00:00
sicking%bigfoot.com
de4e9a5e64 fix bustage
git-svn-id: svn://10.0.0.236/trunk@134396 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 09:33:11 +00:00
sicking%bigfoot.com
db4678c2f2 Bug 181808: Use macros to declare and implement nsIDocumentObserver
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134395 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 08:33:30 +00:00
bugreport%peshkin.net
b9d847372f Bug 180460 request.cgi doesn't filter list of products/components
patch by joel
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134393 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 05:38:09 +00:00
darin%netscape.com
122c621103 fixes bug 175641 "Inappropriate behavior on a 412 response"
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134390 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 05:07:10 +00:00
katakai%japan.sun.com
93fd9af3b9 bug 167866
code clean up
clean up comment line codes for nsPresShell.cpp
r=akkana,sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134389 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 04:58:40 +00:00
leaf%mozilla.org
7bf25afe7e adding a phoenix tinderbox module
git-svn-id: svn://10.0.0.236/trunk@134386 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 23:52:19 +00:00
justdave%syndicomm.com
5012191e1a Bug 181582 - reorders the table cells on the query page so that the list headers are grouped with the lists in Links and when
used with voice synthesis packages.
r= timeless, a= justdave


git-svn-id: svn://10.0.0.236/trunk@134385 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 22:08:42 +00:00
cbiesinger%web.de
df21192a04 181724 r=caillon sr=bzbarsky shift+enter in location bar no longer works
git-svn-id: svn://10.0.0.236/trunk@134384 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 22:00:54 +00:00
bugreport%peshkin.net
8bd91adeeb Bug 147275 Rearchitect product groups
Patch by joel
r=bbaetz,justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134383 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 19:56:34 +00:00
bienvenu%netscape.com
28df3b59ab fix 181639 strip out unused code, replace PR_FREEIF with PR_Free, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134382 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 17:14:25 +00:00
bienvenu%netscape.com
ca0da9fc76 fix problem with IMail imap server flag changes not persisting also fixed whitespace and replace PR_FREEIF with PR_Free r=cavin, sr=sspitzer 180001
git-svn-id: svn://10.0.0.236/trunk@134381 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 17:11:43 +00:00
bryner%netscape.com
58193dda87 add -register option for easier automated registration of components and chrome for static builds
git-svn-id: svn://10.0.0.236/trunk@134379 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 09:05:08 +00:00
bryner%netscape.com
b0b3597c6b Don't need to pass -Ldist/lib/components to linker on win32
git-svn-id: svn://10.0.0.236/trunk@134378 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 08:29:38 +00:00
bryner%netscape.com
4b3273bd44 Fixes for static build
git-svn-id: svn://10.0.0.236/trunk@134377 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 07:24:41 +00:00
bryner%netscape.com
048b334124 Define _BUILD_STATIC_BIN in static builds so that the static components are registered
git-svn-id: svn://10.0.0.236/trunk@134376 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 06:00:46 +00:00
bryner%netscape.com
c8a5eb0334 Add MODULE_NAME so that these modules get registered in static builds.
git-svn-id: svn://10.0.0.236/trunk@134375 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 05:59:39 +00:00
darin%netscape.com
ace744c088 cvs removing unused files (NOT PART OF THE BUILD)
git-svn-id: svn://10.0.0.236/trunk@134374 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 05:31:39 +00:00
darin%netscape.com
aa965dde12 fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@134373 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 04:37:56 +00:00
darin%netscape.com
ec022b4495 remove dead mime code, b=172963 r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134372 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 03:31:47 +00:00
pschwartau%netscape.com
8d297c8ea4 Initial add. Regression test for bug 181654 by joerg.schaible@gmx.de.
git-svn-id: svn://10.0.0.236/trunk@134371 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 00:14:18 +00:00
bzbarsky%mit.edu
221ba4ee50 Fix some obviously bogus comments. r=caillon, sr=clear copy/paste error.
git-svn-id: svn://10.0.0.236/trunk@134370 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 22:16:23 +00:00
bienvenu%netscape.com
cbf9b89773 make local msg body search not lock up ui, remove unused code, r=naving, sr=sspitzer 127398
git-svn-id: svn://10.0.0.236/trunk@134369 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:50:00 +00:00
bienvenu%netscape.com
3743887e26 fix duplicate folder name in filter log, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134368 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:48:10 +00:00
ccarlen%netscape.com
6aebccbf0e Bug 175867 - CFM and Mach-0 profile locking mechanisms are different. r=bryner/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134367 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:11:38 +00:00
bernd.mielke%snafu.de
d89ffec36a Initialize text-indent at the table boundary, this cuts inheritance of text-indent inside tables. plus removal of a conflicting border specification bug 140682 r=hixie sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134366 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 17:56:44 +00:00
seawood%netscape.com
ae0f08c6b0 Fix egrep syntax.
git-svn-id: svn://10.0.0.236/trunk@134365 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 09:59:07 +00:00
seawood%netscape.com
139a26ec5d Fix egrep syntax.
git-svn-id: svn://10.0.0.236/trunk@134364 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 09:43:37 +00:00
bratell%lysator.liu.se
041254e0b4 Bug 181458 - Broken error checking in Internet Search caused by misplaced paranthesis. r=mozbot, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134363 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 08:34:28 +00:00
seawood%netscape.com
f7a5f8eec0 Properly detect OS_ARCH when building on Win32 ME.
Bug #180822 r=dmose,wtc


git-svn-id: svn://10.0.0.236/trunk@134362 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 06:06:12 +00:00
ducarroz%netscape.com
9a097a8886 Fix for bug 181576. Some how the line mNextStream = nsnull which was part of the patch for bug 110729 but was actually present it the tree get removed when I checked in the fix for bug 110729!
git-svn-id: svn://10.0.0.236/trunk@134361 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 06:01:41 +00:00
seawood%netscape.com
dd588cc9d5 Properly detect OS_ARCH when building on Win32 ME.
Bug #180822 r=dmose,wtc


git-svn-id: svn://10.0.0.236/trunk@134360 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:57:40 +00:00
jrgm%netscape.com
1851e5c13a null-check fix for bug 181463 'Clicking on slider with hidden thumb crashes browser' [plus a little bit of whitespace cleanup], r=varga, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@134359 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:20:05 +00:00
bzbarsky%mit.edu
710d7daa68 need this error check... part of patch for bug 86486, r=adamlock, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134358 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:17:09 +00:00
jrgm%netscape.com
acfddf401e missing part of checkin for bug 176791, r=curt
git-svn-id: svn://10.0.0.236/trunk@134357 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:14:25 +00:00
curt%netscape.com
422ae45e7a Allow for multiple client installations.
(Bug #176791, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@134355 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 02:05:24 +00:00
yokoyama%netscape.com
0893365069 179151: Need to call FreeLibrary()
We call LoadLibrary(); but need to call
FreeLibrary() upon shutdown.
Impact only Windows platforms only
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134353 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:33:51 +00:00
darin%netscape.com
832cb48664 fixes bug 181440 "UBS E-Banking broken because of regression in http headers"
r=morse sr=bz


git-svn-id: svn://10.0.0.236/trunk@134352 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:30:26 +00:00
caillon%returnzero.com
9641b989dd Bug 181442 - Convert editor's pref usage to the new pref APIs.
r=brade sr=kin


git-svn-id: svn://10.0.0.236/trunk@134351 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:26:58 +00:00
blakeross%telocity.com
dd01853892 Port trunk fix, fix tbox.
git-svn-id: svn://10.0.0.236/trunk@134350 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:21:34 +00:00
blakeross%telocity.com
53a7c32f8c Change tabgroup homepage separator to |.
git-svn-id: svn://10.0.0.236/trunk@134349 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:18:18 +00:00
smontagu%netscape.com
12d319fb57 Make Bidi symmetric swapping handle characters outside BMP. Bug 122800, r=mkaply, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134348 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:49:29 +00:00
smontagu%netscape.com
244ec01837 Remove unnecessary ToNewCString() allocation. Bug 181314, r=jaggernaut, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134347 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:44:42 +00:00
shanjian%netscape.com
5b08039113 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134346 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:23:25 +00:00
cltbld%netscape.com
ab93294271 aim string
git-svn-id: svn://10.0.0.236/trunk@134345 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:19:20 +00:00
dbradley%netscape.com
b32cfb75e5 Bug 173146 - This is the third patch in the series for IDispatch support. The bulk of the changes are comments and formatting, and some better error handling. r=adamlock, sr=jst and the code review group. NOTE: The bulk of this code is still not part of the build and the reviews reflect the XPConnect portions only.
git-svn-id: svn://10.0.0.236/trunk@134344 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:04:53 +00:00
rods%netscape.com
bde4c45748 more tests
git-svn-id: svn://10.0.0.236/trunk@134343 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:46:10 +00:00
rods%netscape.com
fb3365eacd more tests
git-svn-id: svn://10.0.0.236/trunk@134342 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:39:51 +00:00
shanjian%netscape.com
18f083d356 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134341 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:36:42 +00:00
brade%netscape.com
d4b0c0d2e3 checkin fix for bug 169589 (ctrl-tab navigation) for Neil; r=brade, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134340 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:28:57 +00:00
blizzard%redhat.com
c91b921b44 Remove printf() that shouldn't have been checked in in the first place.
git-svn-id: svn://10.0.0.236/trunk@134339 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:17:47 +00:00
rjc%netscape.com
368d40a74d Fix bug # 167335: get cut/copy/paste of bookmarks working. r=chanial@noos.fr sr=ben
git-svn-id: svn://10.0.0.236/trunk@134338 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:06:21 +00:00
leaf%mozilla.org
845e912b8d TRUE -> PR_TRUE, build bustage fix
git-svn-id: svn://10.0.0.236/trunk@134335 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 16:46:32 +00:00
ducarroz%netscape.com
9ab2cdb3de Fix for bug 55657. Implement possibility to disable display attachment inline. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134334 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:47:04 +00:00
mikep%oeone.com
9e267f1a36 Adding in the ability to restrict the day view to certain hours.
git-svn-id: svn://10.0.0.236/trunk@134333 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:41:57 +00:00
ccarlen%netscape.com
51d4f92fe1 Bug 180718 - Use rsync instead of cp to populate Mach-0 bundle. r=seawood/sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134332 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:26:38 +00:00
ccarlen%netscape.com
c8789fae6c Bug 180951 - profile directory never changes on profile switch. r=kaie/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134331 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:11:31 +00:00
rods%netscape.com
337ea6f743 Instead of at the end of of the PO it needs to be in the middel of reflow
where we bail out earlier, basically same fix different location
Bug 149710 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134329 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 13:06:58 +00:00
rods%netscape.com
52fac3b22e The search for the selected frames was not looking in all the child lisst for each frame
Bug 181228 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134328 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 13:02:05 +00:00
glazman%netscape.com
5b8e44eab8 -- not part of the build --
CaScadeS only

Editorshell removal


git-svn-id: svn://10.0.0.236/trunk@134327 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 12:40:12 +00:00
bratell%lysator.liu.se
d8c86a7ceb Bug 165893 - use cached nsParserService pointer instead of looking up the service everywhere. r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134326 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 12:20:05 +00:00
caillon%returnzero.com
d4dd11d541 181420, Use nsIPrefBranch instead of nsIPref.
r=rbs sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134325 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 11:29:31 +00:00
robin.lu%sun.com
f85995dd93 For bug 180147 [gtk2] need to port over the null plugin
patched by blizzard, robin.lu r=blizzard, robin.lu sr=bryner
Not in default build


git-svn-id: svn://10.0.0.236/trunk@134324 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 10:23:51 +00:00
axel%pike.org
62fdd9f141 bug 151055, some result elements dont accept children, txMozillaXMLOutput crashes, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134323 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:52:18 +00:00
despotdaemon%netscape.com
3f10aba7d2 Pseudo-automatic update of changes made by louie.zhao@sun.com.
git-svn-id: svn://10.0.0.236/trunk@134322 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:51:29 +00:00
hewitt%netscape.com
6f45e4f890 updating editor binding url
git-svn-id: svn://10.0.0.236/trunk@134321 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:22:57 +00:00
rjc%netscape.com
9b6d0aa857 Fix bug # 180423: implement nsIRDFRemoteDataSource::FlushTo() which enables, among other things, serializing bookmarks as RDF. r=pavlov sr=ben
git-svn-id: svn://10.0.0.236/trunk@134320 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:55:59 +00:00
darin%netscape.com
b59017f198 fixes bug 157133 "HTTP Interfaces need to be frozen" r=dougt sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134319 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:40:16 +00:00
cltbld%netscape.com
f258f2e6e0 filter irc string
git-svn-id: svn://10.0.0.236/trunk@134318 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:06:10 +00:00
mkaply%us.ibm.com
5d66a43a8a #171166
r=pedemont, sr=blizzard (platform specific code)
OS/2 only - hack to support webdings


git-svn-id: svn://10.0.0.236/trunk@134317 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:03:56 +00:00
darin%netscape.com
8be1d31c3c fixing some WIN32 thread safety problems.
git-svn-id: svn://10.0.0.236/trunk@134316 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:58:47 +00:00
darin%netscape.com
3990c136b7 fixes some XP_WIN review comments from dougt. fixed some startup/shutdown
races, etc.


git-svn-id: svn://10.0.0.236/trunk@134315 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:46:24 +00:00
mkaply%us.ibm.com
f90cdf9b2a #179617
r=me, sr=blizzard (platform specific code)
OS/2 only - fix major regression caused by event checkin - don't reuse event structures


git-svn-id: svn://10.0.0.236/trunk@134314 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:37:53 +00:00
cltbld%netscape.com
7554e4a4ef more log trimming
git-svn-id: svn://10.0.0.236/trunk@134312 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:05:39 +00:00
jfrancis%netscape.com
1c37131272 pay no attention to the man behind the curtain.
git-svn-id: svn://10.0.0.236/trunk@134311 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 05:40:10 +00:00
jfrancis%netscape.com
2d5b4e2164 more work on build bustage.
git-svn-id: svn://10.0.0.236/trunk@134310 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:45:25 +00:00
jfrancis%netscape.com
6ee2992315 fixing build bustage
git-svn-id: svn://10.0.0.236/trunk@134309 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:29:15 +00:00
kyle.yuan%sun.com
72d19006f2 Bug 124556 Crashing on random pages in 8-bit StaticGray class X11 server [nsImageGTK::DrawCompositedGeneral]
r=pavlov, sr=tor
modified the loop limit from (ximage->width*ximage->height) to (width*height) to avoid invalid memory access and corrected some pointer calculation bug.


git-svn-id: svn://10.0.0.236/trunk@134307 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:24:53 +00:00
justdave%syndicomm.com
66f9f5c8f1 Adding blurb to release notes indicating development snapshot status
git-svn-id: svn://10.0.0.236/trunk@134305 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:43:46 +00:00
jfrancis%netscape.com
8247e85525 fix for 142855: cf_html paste functionality. r=brade,cmanske; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134304 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:30:59 +00:00
justdave%syndicomm.com
a676f63720 Correcting website URL in the README file.
git-svn-id: svn://10.0.0.236/trunk@134303 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:29:20 +00:00
dmose%netscape.com
e1f0d7bd80 Fix spelling error in junk mail dialog (bug 181193). Patch from timeless, r=stephend@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134302 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:28:10 +00:00
jfrancis%netscape.com
0d9a9af955 fix for 142855: cf_html paste functioanlity. r=brade, cmanske; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134301 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:24:29 +00:00
bugreport%peshkin.net
36958fba38 Bug 180980 Doing 2 email searches fails when searching for CC list members
Patch by bugreport@peshkin.net
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134300 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 02:38:18 +00:00
bbaetz%student.usyd.edu.au
1ec2e67c0a Bug 180966 - warnings in webserver error log (take 2)
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134299 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:47:38 +00:00
jst%netscape.com
0e103fad90 Fixing bug 181351. Making NS_NewTextNode() return an nsITextContent pointer in stead of reaturning an nsIContent pointer to avoid having to QI the new text node to set it's value. r=caillon@returnzero.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134298 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:11:33 +00:00
ashishbhatt%netscape.com
ef8b07a133 adding xpcom test cases
git-svn-id: svn://10.0.0.236/trunk@134297 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:04:01 +00:00
jfrancis%netscape.com
940908cb67 reland fix for 174017: Multiple enters after quoted text does not move cursor; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134296 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:03:08 +00:00
ashishbhatt%netscape.com
f0f3982147 adding nsIDOMWindow test case
git-svn-id: svn://10.0.0.236/trunk@134295 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:01:21 +00:00
ashishbhatt%netscape.com
2baadee9bd ndding nsISelection test case
git-svn-id: svn://10.0.0.236/trunk@134294 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:58:43 +00:00
ashishbhatt%netscape.com
24b1d45372 nsIProfile Test case
git-svn-id: svn://10.0.0.236/trunk@134293 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:56:32 +00:00
ashishbhatt%netscape.com
0dc4213609 adding netwotking folder for necko test cases
git-svn-id: svn://10.0.0.236/trunk@134292 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:49:06 +00:00
akkana%netscape.com
7859f90a48 181330: fix assert bringing up the overwrite confirmation dialog. r=timeless sr=bz
git-svn-id: svn://10.0.0.236/trunk@134291 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:41:33 +00:00
bbaetz%student.usyd.edu.au
80a2f60d9e Bug 181613 - $::ENV not being cleared
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134290 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:36:13 +00:00
jst%netscape.com
510cbb827d Ok, I've seen this printf enough times now, commenting out.
git-svn-id: svn://10.0.0.236/trunk@134289 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:30:37 +00:00
gerv%gerv.net
648b09e5a1 Bug 181182 - Reporting fix pack 2. Fixes bug 179198 (Don't print labels for pie chart wedges when smaller than a certain size), bug 180255 (Tabular report CSV downloads should suggest csv filename), and bug 180967 (csv reports swap rows/columns). Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134288 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:07:22 +00:00
bbaetz%student.usyd.edu.au
430a10d012 Bug 181286 - Invalid html in banner.html.tmpl
patch by Tobias Burnus <burnus@gmx.de>
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134287 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:55:58 +00:00
cmanske%netscape.com
354babbc6d Fixed command disabling/focus setting when loading page into new editor. b=181002, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@134286 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:53:50 +00:00
jst%netscape.com
0fcfc0bc39 Fixing bug 181351. Making NS_NewTextNode() return an nsITextContent pointer in stead of reaturning an nsIContent pointer to avoid having to QI the new text node to set it's value. r=caillon@returnzero.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134285 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:53:06 +00:00
nelsonb%netscape.com
c7fa828cf4 Put the nss 3.7 section after the nss 3.6.1 section.
git-svn-id: svn://10.0.0.236/trunk@134283 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:22:52 +00:00
gerv%gerv.net
78cd84a92d Bug 179483 - Guided template displays wrong product name sometimes. Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134282 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:04:01 +00:00
ian.mcgreer%sun.com
4a6e624c98 bug 172247, don't allow import of duplicate issuer/serial certs
git-svn-id: svn://10.0.0.236/trunk@134280 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 20:43:15 +00:00
sfraser%netscape.com
201ee50cad Change TinderUtils::print_log "foo" to TinderUtils::print_log("foo") to keep perl 5.6.0 happy.
git-svn-id: svn://10.0.0.236/trunk@134279 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 20:32:28 +00:00
mikep%oeone.com
f13726275d Fixing deleting remote calendars that I just broke.
git-svn-id: svn://10.0.0.236/trunk@134276 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 19:18:36 +00:00
mikep%oeone.com
0515124166 Fixing bug 181305, problem with renaming calendars.
git-svn-id: svn://10.0.0.236/trunk@134274 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 19:14:50 +00:00
justdave%syndicomm.com
ada2fbdaae Backing out the checkin for bug 180966 (fix warnings in web server error log). This checkin caused commenting on bugs to fail
if timetracking is not enabled.


git-svn-id: svn://10.0.0.236/trunk@134273 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 18:46:21 +00:00
despotdaemon%netscape.com
59d00b7be9 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134271 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 17:59:19 +00:00
timeless%mozdev.org
c0793c0771 Bug 180127 Inspector destructors unconditionally delete objects
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134270 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:55:08 +00:00
mkaply%us.ibm.com
9acd03e8b9 #164149
r=pedemont, sr=blizzard (platform specific code)
OS/2 only - convert old Unicode stuff to new APIs


git-svn-id: svn://10.0.0.236/trunk@134269 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:50:26 +00:00
mikep%oeone.com
c45e5c99e2 Adding in publishing prefs file, new build.
git-svn-id: svn://10.0.0.236/trunk@134268 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:29:42 +00:00
karnaze%netscape.com
1432927ab9 bug 91491 - Invalidate the correct area when there is a caption. Invalidate max of area before reflow and area after. sr=kin, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@134267 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:28:02 +00:00
mikep%oeone.com
76c02e1abe Adding in the ability to delete remote calendars.
git-svn-id: svn://10.0.0.236/trunk@134266 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:23:06 +00:00
dbaron%fas.harvard.edu
50c6bdf397 One more shutdown leak. b=179361 r=blizzard sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134265 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:22:49 +00:00
dbaron%fas.harvard.edu
10dd68c42b Correct my incorrect comments relating to combined area, and explain what combined area is for. Comment changes only. b=172896
git-svn-id: svn://10.0.0.236/trunk@134264 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:20:20 +00:00
kin%netscape.com
e3b69667f5 Fix for bug #176251 (Problems with nsContentIterator PRE traversal)
content/base/public/nsIContentIterator.h
  content/base/src/nsContentIterator.cpp
  content/base/src/nsGeneratedIterator.cpp
  content/build/nsContentCID.h
  content/build/nsContentModule.cpp
  embedding/components/find/src/nsFind.cpp
  layout/html/style/src/nsFrameContentIterator.cpp

  - Removed MakePre() and MakePost() from the nsIContentIterator interface.
  - Traversal must now be specified at time of creation.
  - Fixed nsContentIterator Init() methods so that they correctly calculate
    mFirst and mLast.
  - Modified PositionAt() to check if the node is in the traversal range.

r=jfrancis@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134263 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:07:49 +00:00
mikep%oeone.com
351e68b25d Localizing prefs.
git-svn-id: svn://10.0.0.236/trunk@134262 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:00:43 +00:00
mikep%oeone.com
8e1c4fb620 Adding in the ability to remember publishing preferences.
git-svn-id: svn://10.0.0.236/trunk@134261 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:57:42 +00:00
mikep%oeone.com
1d58f12402 Fixing bug 181253, request by P. Lairo to change the to do header from Due Date to just "Due". I removed all the words "Date" from teh headers, to save space.
git-svn-id: svn://10.0.0.236/trunk@134260 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:13:56 +00:00
timeless%mozdev.org
70ff17de00 Bug 122224 Inspect a Window submenu needs access keys
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134259 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:04:10 +00:00
colin%theblakes.com
b5321ce17e Fix broken profile locking on OpenVMS. b=180738 r=ccarlen sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134258 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 13:34:25 +00:00
kairo%kairo.at
b47c92a2fd bug 174072, remove italic definition from modern plugins.css because italic system font comes up unreadable on old win32 systems, r=beppe, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134257 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 11:27:59 +00:00
timeless%mozdev.org
70cd87cd21 Bug 181125 remove nsIEnumerator imgIContainer::enumerate() method
r=biesi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134256 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 09:06:12 +00:00
paper%animecity.nu
95fb518a22 Bug 180963: remove duplicate file /gfx/src/nsRenderingContextImpl.cpp
r=brade sr=tor


git-svn-id: svn://10.0.0.236/trunk@134255 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 08:59:30 +00:00
darin%netscape.com
fbe32eea6c further revisions following review w/ dougt
git-svn-id: svn://10.0.0.236/trunk@134253 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 07:57:09 +00:00
bryner%netscape.com
753fe55c0a Use an explicit select line in installed-chrome.txt so that the default skin is classic, regardless of the order in which chrome is registered during the build. Fixes bug 180984. r=cls.
git-svn-id: svn://10.0.0.236/trunk@134249 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 07:10:01 +00:00
cltbld%netscape.com
7b4a636ccf filter out windows ^Ms
git-svn-id: svn://10.0.0.236/trunk@134248 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 06:23:39 +00:00
nelsonb%netscape.com
d9ba2b2dd3 Add tests for sha256, sha384, and sha512.
git-svn-id: svn://10.0.0.236/trunk@134247 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 05:44:41 +00:00
nelsonb%netscape.com
3eb7a816ce Add test modes for sha256, sha384 and sha512.
Fix the -c (restart) option for testing hashes.  It works with all hashes.
When the -d option is given along with the -i or -o filename option,
and the filename is not absolute, the filename is taken to be relative to
the the mode's test directory.


git-svn-id: svn://10.0.0.236/trunk@134246 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 05:44:03 +00:00
hewitt%netscape.com
4e016327a0 174403 - morkTable::RowToPos doesn't quite work, r=blake, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134244 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 04:59:37 +00:00
timeless%mozdev.org
de37901bcc Bug 181134 change PrintImageDecoders from nsIEnumerator to nsISimpleEnumerator
r=biesi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134243 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 04:21:13 +00:00
bzbarsky%mit.edu
e8a01be9a8 fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@134242 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 03:50:46 +00:00
bzbarsky%mit.edu
6151b6c308 Clean up some mailnews array usage, fix some leaks. Bug 175540, r=dmose,
sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134241 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 03:49:11 +00:00
nelsonb%netscape.com
5d17d7f988 Use the 32-bit code on Solaris x86 platforms, too.
git-svn-id: svn://10.0.0.236/trunk@134240 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:54:04 +00:00
ducarroz%netscape.com
b5fcf8b72f Fix for bug 181127. Don't call nsMsgNewURL when the attachement is in fact a message. We need to use a different path to fetch it. R=caving, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134239 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:44:18 +00:00
dougt%netscape.com
c278ddc80d Autoreg is posting a failure for regxpcom of xpcom component. sr=alecf@netscape.com, r=dveditz@netscape.com, b=180821
git-svn-id: svn://10.0.0.236/trunk@134237 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:36:50 +00:00
cltbld%netscape.com
98a36d80e8 remove </a>
git-svn-id: svn://10.0.0.236/trunk@134236 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:34:44 +00:00
nelsonb%netscape.com
f058825676 Add test cases from FIPS 180-2.
git-svn-id: svn://10.0.0.236/trunk@134235 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:26:50 +00:00
cltbld%netscape.com
a5a50843d5 Further specify data file locations. Record current sheriff using crude scraping/reducing pattern stuff.
git-svn-id: svn://10.0.0.236/trunk@134232 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:45:04 +00:00
jaggernaut%netscape.com
0feba9f112 Bug 147457: mTabProgressListener shouldn't need |this| passed in. r=blake, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134230 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:42:54 +00:00
bryner%netscape.com
f28891cc8f Fixing bug 180285 (hang in mail compose), regression from bug 124990. Don't throw an exception if dispatchEvent is called on an element that's not in a document. r=saari, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134228 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:27:34 +00:00
cltbld%netscape.com
d59b666244 Fixing array error. minor ordering of test prefs. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@134224 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 00:40:37 +00:00
darin%netscape.com
1dcb6a7fec revisions following review w/ dougt
git-svn-id: svn://10.0.0.236/trunk@134223 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 00:13:21 +00:00
smontagu%netscape.com
a17755ec09 Backing out shanjian's last checkin
git-svn-id: svn://10.0.0.236/trunk@134222 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:58:14 +00:00
locka%iol.ie
a37ceea7c5 Fix print cancel behaviour in control and add a couple of null pointer checks. b=179021 r=rods@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134221 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:38:26 +00:00
bryner%netscape.com
bfbda85da1 Removing an unused variable. r=mozbot.
git-svn-id: svn://10.0.0.236/trunk@134219 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:37:52 +00:00
jkeiser%netscape.com
61c84d1fa9 Make textareas and inputs restore again (bug 179330), r=bryner@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134217 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:19:45 +00:00
timeless%mozdev.org
a19acd6f24 Bug 171488 [classic] Remove old import rule in bookmarksWindow.css
patch by walk84@yahoo.com r=shuehan sr=bz


git-svn-id: svn://10.0.0.236/trunk@134216 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:15:18 +00:00
timeless%mozdev.org
08a2274829 Bug 171485 Remove duplicates in classic communicator.css
patch by walk84@yahoo.com r=shuehan sr=bz


git-svn-id: svn://10.0.0.236/trunk@134215 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:15:16 +00:00
heikki%netscape.com
ccf10c93b2 Bug 136717, enabled Save as Complete for XML and XHTML, r=jag, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@134214 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:14:11 +00:00
bzbarsky%mit.edu
b549c5800b Use calloc() instead of malloc() followed by memset to 0. Bug 124302, patch by
Aaron Lehmann <aaronl@vitelus.com>, r=timeless, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134212 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:13:09 +00:00
heikki%netscape.com
cdcb47665c Bug 146062 and bug 136718, pay attention to namespaces in XML documents, and fix the small but important logic/typo error in handling xml-stylesheet href pseudo-attribute. r=adamlock, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@134211 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:09:00 +00:00
jj%netscape.com
fbc6f0ced5 fix for #180374: replaced xpi download protocol for mac (now http). r=syd, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134210 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:02:46 +00:00
bzbarsky%mit.edu
0a849856a4 Links with unknown protocol should report an error when clicked on. Bug 86486,
r=adamlock, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134209 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:58:57 +00:00
jst%netscape.com
b8dd45ae9c Checking in keeda@hotpop.com's fix for bug 179461. Partially implement IE's select.options.add() method. No support for the optional second argument yet. r=caillon@returnzero.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134207 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:36:36 +00:00
jst%netscape.com
2911d76fc4 Fixing bug 180816. Avoid construction of an nsAutoString every time we open a container in the sink when the nsAutoString is only needed when dealing with textarea tags.
git-svn-id: svn://10.0.0.236/trunk@134206 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:30:53 +00:00
nhotta%netscape.com
87919cf96b Changed SetMailCharacterSet, moved us-ascii check from the callers to the function,
bug 178680, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@134204 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 21:44:31 +00:00
shanjian%netscape.com
280bef38e7 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134203 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 21:13:52 +00:00
darin%netscape.com
41c55ec014 fixes bug 181046 "trim unnecessary bytes from standard request headers."
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134202 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 20:51:12 +00:00
blakeross%telocity.com
6415bd2a82 Port trunk fix.
git-svn-id: svn://10.0.0.236/trunk@134200 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 19:32:46 +00:00
mcafee%netscape.com
db11c66151 script to graph tree status over time
git-svn-id: svn://10.0.0.236/trunk@134199 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 19:31:44 +00:00
cbiesinger%web.de
d1bbc9e143 Bug #179296
[BMP] support images with negative height (stored top-to-bottom)
r=paper sr=tor


git-svn-id: svn://10.0.0.236/trunk@134198 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 17:46:41 +00:00
timeless%mozdev.org
3f671e446a Bug 122224 Inspect a Window submenu needs access keys
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134197 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 16:01:15 +00:00
bienvenu%netscape.com
64cf72a098 add default pref for auto unzipping attachments, r/sr=sspitzer, not used yet, 180798
git-svn-id: svn://10.0.0.236/trunk@134196 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:35:32 +00:00
bienvenu%netscape.com
fdd81a2bdf apply filter plugins to new messages in local mail folders, r=cavin, sr=sspitzer 180153
git-svn-id: svn://10.0.0.236/trunk@134195 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:21:01 +00:00
bienvenu%netscape.com
dc7966f26f fix disk thrashing when sending mail attachments by making internal nsIFileStream flushes not sync r=dougt, sr=sspitzer 180153
git-svn-id: svn://10.0.0.236/trunk@134194 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:18:04 +00:00
mkaply%us.ibm.com
e2d97e3db1 #177200
r=cls
OS/2 only - put call to grab nsinstall from toolsdir back
Happy Mr. Pedemonte?


git-svn-id: svn://10.0.0.236/trunk@134193 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 14:17:23 +00:00
brade%netscape.com
4a18d9ecae put delete of editor data earlier in deletion process (as approved in bug 180146); r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134192 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 14:03:01 +00:00
sspitzer%netscape.com
35d0c3fc67 fix for #180131. shift space should scroll upwards, and at the beginning,
go to the previous unread.  (space alone goes down, and at the end, to the next unread.)

thanks to neil@parkwaycc.co.uk for logging the RFE and providing the initial patch.

(I believe pine and Mail.app do this, much to the delight of their users)


git-svn-id: svn://10.0.0.236/trunk@134189 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:49:10 +00:00
cmanske%netscape.com
7831919700 Start controller IDs at 1 for InsertController. b=180814, r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134188 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:36:05 +00:00
caillon%returnzero.com
7ed5d3c58d Bug 113427 - Can't open subfolder of context-"Expand"-ed personal toolbar folder
Patch contributed by neil@parkwaycc.co.uk
r=bryner sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134187 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:28:40 +00:00
timeless%mozdev.org
e9c5d539b4 Bug 174603 Remove nsIEnumerator implementations: ConjoiningEnumerator, UnionEnumerator and IntersectionEnumerator
r=bbaetz sr=bz moa=alecf


git-svn-id: svn://10.0.0.236/trunk@134186 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 10:27:44 +00:00
timeless%mozdev.org
c184582c58 Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134179 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 08:10:37 +00:00
darin%netscape.com
21779967e2 fixes bug 179400 "URI fragment present in HTTP Referer" r=bbaetz sr=bz
git-svn-id: svn://10.0.0.236/trunk@134174 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:47:11 +00:00
caillon%returnzero.com
8030ffe804 Fixing an NS_PRECONDITION to reference the correct variable. Followup to last night's checkin for bug 147189. r/sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134173 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:35:33 +00:00
cmanske%netscape.com
0ff4c5f3cd Fixed nsDocShell leak and nsEditingSession init after forced reload of document. b=180146, r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134172 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:25:42 +00:00
cmanske%netscape.com
f3b0cea7ba Fixed nsDocShell leak and nsEditingSession init after forced reload of document. b=180146, r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134171 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:23:05 +00:00
timeless%mozdev.org
886c145069 Bug 180893 nsXULTemplateBuilder::Retract wastes cycles in an XXX writeme loop
r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@134170 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:15:54 +00:00
mcafee%netscape.com
fa58b7cebc Allow for value=0.
git-svn-id: svn://10.0.0.236/trunk@134169 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:30:47 +00:00
nelsonb%netscape.com
fedc8e686e Back out revision 1.2, which was a workaround for a c preprocessor bug
in a certain version of the c compiler for Dec/Compaq Alpha OSF1.
The file now requires one of these compilers on that platform:
Compaq C V6.3-132  or Compaq C V6.4-214 (dtk)


git-svn-id: svn://10.0.0.236/trunk@134168 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:25:58 +00:00
timeless%mozdev.org
31f62cf60f Bug 180789 nsPrefBranch::GetChildList can call PL_DHashTableEnumerate with an uninitialized gHashTable
r=dbradley sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@134167 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:17:18 +00:00
timeless%mozdev.org
ef759c9697 not part of the build. these directories are probably going to be removed shortly.
git-svn-id: svn://10.0.0.236/trunk@134166 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 04:06:57 +00:00
timeless%mozdev.org
0d784f61bd 180616 nsXKBModeSwitch::HandleMappingNotify should null check GDK_DISPLAY
r=bryner sr=bz


git-svn-id: svn://10.0.0.236/trunk@134165 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 04:01:46 +00:00
timeless%mozdev.org
85548945c5 Bug 180578 nsImageBoxFrame::UpdateLoadFlags doesn't null check loader
r=biesi sr=bz


git-svn-id: svn://10.0.0.236/trunk@134164 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:58:36 +00:00
pete.zha%sun.com
cd28082a88 quote message should be disabled when no message selected
b=144748 r=ducarroz@netscape.com sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134163 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:44:46 +00:00
edburns%acm.org
e1a030efa5 Generates the XPI.
git-svn-id: svn://10.0.0.236/trunk@134162 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:42:27 +00:00
waldemar%netscape.com
0b36d697b2 Added the setup phase, reorganized instance data structure, and wrote new code for processing function definitions and calls
git-svn-id: svn://10.0.0.236/trunk@134161 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:40:20 +00:00
waldemar%netscape.com
e2b7532726 Fixed try-catch variable initialization inference bug and added support for intersections of union types
git-svn-id: svn://10.0.0.236/trunk@134160 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:38:54 +00:00
blizzard%redhat.com
eb0ebd2b3c Bug #180721. floating point error when visiting web page. Paper over the fact that the style system is passing is a pixel size of 0. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134159 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:35:59 +00:00
danm%netscape.com
e781555233 prevent untrusted script from opening modal windows in general while still allowing alerts and the like. bug 180048 r=jst,mstoltz
git-svn-id: svn://10.0.0.236/trunk@134158 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:25:08 +00:00
jeff.hedlund%matrixsi.com
2bda9e1546 Bug 179582 - More informative and easier to read flag email template
r=myk
a=myk


git-svn-id: svn://10.0.0.236/trunk@134157 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:03:21 +00:00
despotdaemon%netscape.com
e3596c7da3 Pseudo-automatic update of changes made by myk@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134156 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:40:04 +00:00
bbaetz%student.usyd.edu.au
a341897ec9 Bug 179293 - time tracking js should only appear if time tracking is
enabled
patch by Jeff Hedlund <jeff.hedlund@matrixsi.com>
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134154 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:26:00 +00:00
dmose%netscape.com
b2b76461e4 Initial size of junk mail dialog is huge (bug 180215). Patch from neil@parkwaycc.co.uk; thanks Neil! r=dmose, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134153 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:09:34 +00:00
ducarroz%netscape.com
1c068cadcc Fix build bustage
git-svn-id: svn://10.0.0.236/trunk@134152 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:06:43 +00:00
rbs%maths.uq.edu.au
7b0bce519f .innerHTML wasn't recovering &nbsp; and this was causing consumers such as View Selection Source to lose it, b=165686, r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134151 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:47:06 +00:00
blakeross%telocity.com
e7bbaa4da9 Port over a trunk fix.
git-svn-id: svn://10.0.0.236/trunk@134150 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:38:08 +00:00
smontagu%netscape.com
ba8f43dc24 Bug 180339 Can't send message if receiver contain Chinese character. Author=joe@numa.com.tw, r=ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@134149 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:32:08 +00:00
brade%netscape.com
27cc5bdc58 bug 157111; handle new command (cmd_fontSize); r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134148 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:23:40 +00:00
brade%netscape.com
06be2f800f bug 157111; add some new commands, remove unneeded Init call for editSession; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134147 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:22:17 +00:00
brade%netscape.com
77eee3a445 bug 157111; register new commands; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134146 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:20:19 +00:00
alecf%netscape.com
d057a740e1 first part of fix for bug 180965 - if the GRE directory is the same as the normal components directory, then dont enumerate it twice.
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134145 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:19:37 +00:00
brade%netscape.com
471812a403 bug 157111; add some new commands; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134144 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:18:48 +00:00
brade%netscape.com
7b474eeb9f bug 157111; add some new commands, cleanup do_QI assignments and some other cleanup; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134143 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:18:23 +00:00
blakeross%telocity.com
592be2ecd8 Fix extensions.
git-svn-id: svn://10.0.0.236/trunk@134141 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:11:09 +00:00
ducarroz%netscape.com
8f11bce6f4 Fix for bug 174396. Cannot use m_attachment_count because it's not reliable for determine if the top part is a multipart container. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134140 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:03:42 +00:00
bbaetz%student.usyd.edu.au
f411ff7fd1 Bug 181000 - Lock the keyworddefs table for READ when using a shadowdb, too
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@134139 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:59:58 +00:00
danm%netscape.com
f22034d975 persistent size now has a lower bound of 100x100. bug 167663 r=dveditz,sgehani
git-svn-id: svn://10.0.0.236/trunk@134137 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:54:46 +00:00
bbaetz%student.usyd.edu.au
d27ba17793 Bug 180966 - fix misc warnings
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@134136 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:53:14 +00:00
nelsonb%netscape.com
a4fade561c Optimization: change macros to do only 32-bit arithmetic on platforms
with only 32-bit registers.


git-svn-id: svn://10.0.0.236/trunk@134135 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:48:09 +00:00
blizzard%redhat.com
3e8c148058 No bug. Add some prlog-driven debugging so that it's easier to figure out what fonts are loaded and when. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134134 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:44:53 +00:00
bzbarsky%mit.edu
f6b3b3afb9 Make nsILinkHandler take uris instead of strings. Bug 176904, r=darin, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134133 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:44:26 +00:00
bbaetz%student.usyd.edu.au
b6ab710264 Bug 180978 - Adding keyword from enter_bug doesn't update keyword cache
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134129 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 23:35:53 +00:00
pschwartau%netscape.com
288ab8eca8 Replace 'onload' with meaningless string. Alertboxes were popping up otherwise when the jsDriver.pl results file was opened!
git-svn-id: svn://10.0.0.236/trunk@134128 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 23:23:33 +00:00
pschwartau%netscape.com
9e49ca6f92 Correcting minor formatting mistake at Retest List header.
git-svn-id: svn://10.0.0.236/trunk@134126 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 22:00:38 +00:00
harishd%netscape.com
037680aa61 Temp. patch to fix DOM TO TEXT CONVERSION. r=jst
git-svn-id: svn://10.0.0.236/trunk@134125 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:47:13 +00:00
jpierre%netscape.com
1ed6e55689 Fix for bug 180894 - don't assert in ShutdownCRLCache()
git-svn-id: svn://10.0.0.236/trunk@134124 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:37:50 +00:00
darin%netscape.com
7ff0170e25 revised comments
git-svn-id: svn://10.0.0.236/trunk@134123 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:31:05 +00:00
pschwartau%netscape.com
ef5d33cd25 One-line fix for bug 62187, "JS shell producing too much console output on Mac" (r=waldemar, r=rginda). Without this fix, running the test driver is impossible on Mac 9. [NOT PART OF BROWSER BUILD].
git-svn-id: svn://10.0.0.236/trunk@134122 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:53:17 +00:00
pschwartau%netscape.com
b9e8ecb09c Bringing Windows makefile for JS shell in sync with recent changes made to the browser build and to the js.mak(VC++) build of the JS shell; see bug 160592. [DOES NOT AFFECT BROWSER BUILD].
git-svn-id: svn://10.0.0.236/trunk@134120 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:29:38 +00:00
blythe%netscape.com
2bbada9b17 Not part of the build.
Remove some unused cruft from the script.


git-svn-id: svn://10.0.0.236/trunk@134119 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:27:57 +00:00
darin%netscape.com
f24b3a154a fixing linux bustage: make |nsCParserNode::operator delete| protected
instead of private.  also fixes some warnings.


git-svn-id: svn://10.0.0.236/trunk@134118 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:42:46 +00:00
harishd%netscape.com
ea7a7325e9 Fixing warning
git-svn-id: svn://10.0.0.236/trunk@134117 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:25:47 +00:00
danm%netscape.com
1b8ea1ec1a set UserState to match when window is sized or moved. bug 167663 r=dveditz,pinkerton,sfraser
git-svn-id: svn://10.0.0.236/trunk@134116 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:17:53 +00:00
harishd%netscape.com
1eb8cce6ae Do not hold parser nodes, that do not contain residual style information, longer than necessary. By recycling the nodes earlier the number of malloc calls and the peak memory usage can be reduced. b=177994, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134114 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 18:29:35 +00:00
timeless%mozdev.org
7cb9ffca42 Bug 180217 nsXULDocument::~nsXULDocument will crash if mDocumentURL is null
r=dbradley sr=brendan


git-svn-id: svn://10.0.0.236/trunk@134113 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 18:22:36 +00:00
dbaron%fas.harvard.edu
0f3daf8137 Fix bustage. b=179228
git-svn-id: svn://10.0.0.236/trunk@134110 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 16:00:01 +00:00
timeless%mozdev.org
cd6fa93874 Bug 147372 Use .hidden and .collapsed instead of [GS]etAttribute
patch by neil@parkwaycc.co.uk r=cmanske sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134109 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:51:56 +00:00
timeless%mozdev.org
b404636630 Bug 178604 when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles
patch by neil@parkwaycc.co.uk r=varga sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134108 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:48:24 +00:00
bernd.mielke%snafu.de
ee30bc57a4 limit the number of columns spanned, as a protection against suspicous html code, bug 86293, r=karnaze, sr=bzbarksy
git-svn-id: svn://10.0.0.236/trunk@134107 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:43:22 +00:00
ducarroz%netscape.com
c88c6e1545 Fix for bug 59148. Use the additional email address during autocompletion. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134106 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:35:06 +00:00
ducarroz%netscape.com
ed544e36f2 Fix for bug 110729. Prevent mail display pane to open a pluging in full page mode. Fix also an uninitialized pointer. Patch provided by av. R=ducarroz, SR=beard
git-svn-id: svn://10.0.0.236/trunk@134105 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:30:03 +00:00
dbaron%fas.harvard.edu
7bfdf9ceaf Remove static nsCOMPtr from nsTextControlFrame. b=179228 r=jkeiser sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134104 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:21:57 +00:00
ducarroz%netscape.com
40597ad7ed Fix for bug 178038. Add a preference to override FQDN for message-id generation. Patch provided by frank.schoenheit@gmx.de . R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134103 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:20:15 +00:00
dbaron%fas.harvard.edu
b6bbd0b471 Enable the page cycler if jprof is built. b=180585 r=alecf sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134102 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:19:32 +00:00
ducarroz%netscape.com
c172a4ab5a Fix for bug 25177. Date should be shown differently depending on the todays date. Patch provided by frank.schoenheit@gmx.de. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134101 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:16:39 +00:00
glazman%netscape.com
6726bfd196 'larger' and 'smaller' CSS values for 'font-size' were not working outside of range xx-small to xx-large and that prevented users to use very big and very small fonts in both Composer and mail composition; b=63987, r=dbaron, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134100 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:16:31 +00:00
bzbarsky%mit.edu
0c8594d486 Report the unknown namespace when we have an unknown namespace error.
Bug 180852, r=dbaron, rs=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134098 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:12:02 +00:00
bratell%lysator.liu.se
d252fe621f Bug 165893 - avoid refetching the parser service all the time. r=jst@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134097 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 13:39:20 +00:00
mkaply%us.ibm.com
7052fc59c5 OS/2 bustage - need get()
git-svn-id: svn://10.0.0.236/trunk@134096 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 13:18:45 +00:00
bbaetz%student.usyd.edu.au
35ee05cac5 Bug 179811, used & instead of &amp;
Patch by Tobias Burnus <burnus@gmx.de>, r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134095 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 11:36:25 +00:00
bbaetz%student.usyd.edu.au
1ebaead6aa Typo fix from bug 124589. oops
r, a=myk


git-svn-id: svn://10.0.0.236/trunk@134094 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 09:20:59 +00:00
caillon%returnzero.com
8a84ae4c09 Attempt to fix nebiros bustage by moving style struct access into nsIInspectorCSSUtils
r/a=timeless,jkeiser,#mozilla
bug 147189


git-svn-id: svn://10.0.0.236/trunk@134093 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 07:41:07 +00:00
bbaetz%student.usyd.edu.au
b98bc5743f Bug 124589 - support database replication
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134091 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 07:19:34 +00:00
ian%hixie.ch
f17db356a9 Fix it so HEAD requests actually work rather than Apache aborting due to 'incomplete headers'.
git-svn-id: svn://10.0.0.236/trunk@134090 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 06:54:35 +00:00
cmanske%netscape.com
078e940273 Fixed rewrap command for messenger composer. b=76461, r=akkana, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134087 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 06:04:33 +00:00
mkaply%us.ibm.com
f10d3d51c9 OS/2 only - need to change how we get version for packaging since it is no longer in configure.in
git-svn-id: svn://10.0.0.236/trunk@134086 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:28:19 +00:00
timeless%mozdev.org
4a699d73c1 Bug 180129 nsStreamProviderProxy::~nsStreamProviderProxy tries to NS_IF_RELEASE an uninitialized member mObserverProxy
r=darin sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134085 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:25:15 +00:00
caillon%returnzero.com
96706e273b Bug 147189. Part 2: Don't hide "significant" whitespace nodes.
r=bzbarsky sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@134084 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:20:45 +00:00
seawood%netscape.com
59b76c88ef Add native app support for OSX mach-o builds.
Fixes the 'Quit from dock not working' problem.
Allows certain files to be dragged to the dock icon.
Thanks to Mike Pinkerton <pinkerton@netscape.com> for the original patch.
Bug #111797 r=ccarlen sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@134083 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:16:50 +00:00
leaf%mozilla.org
858a4b56dd Automated update
git-svn-id: svn://10.0.0.236/trunk@134082 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:15:04 +00:00
seawood%netscape.com
0db44ecf82 Move gmodule checks to the bottom of configure.in after GLIB_CFLAGS is set for non-win32 platforms.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@134080 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:09:08 +00:00
timeless%mozdev.org
d855a84260 Bug 52285 Kill compiler warnings in layout/xul
patch by mozilla-bugs@nogin.org r=timeless sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134079 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:06:36 +00:00
timeless%mozdev.org
3f080b64a2 Bug 180783 nsDependentCString filename(PR_GetEnv("MOZILLA_JS_PROFILER_OUTPUT")) => ASSERTION: nsDependentCString must wrap a non-NULL buffer: 'aPtr'
r=dbradley sr=bz


git-svn-id: svn://10.0.0.236/trunk@134078 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:06:27 +00:00
myk%mozilla.org
95be7eab6e Fix for bug 179881: makes the "Requests" link in the footer be "My Requests" for logged in users.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134077 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:52:54 +00:00
mkaply%us.ibm.com
1c551bf9c3 #179508
r=cls, pedemont, sr=blizzard for platform specific code
Add shared unicode stuff between OS/2 widget and gfx into gkgfx


git-svn-id: svn://10.0.0.236/trunk@134076 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:12:58 +00:00
leaf%mozilla.org
84c33be027 Automated update
git-svn-id: svn://10.0.0.236/trunk@134075 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:00:12 +00:00
seawood%netscape.com
6ca08e8fd8 Check that glib has gmodule support when --enable-ctl is selected.
Bug #180611 r=roland.mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@134074 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:53:58 +00:00
bzbarsky%mit.edu
4f9de0338a Maybe build on PPC too.
git-svn-id: svn://10.0.0.236/trunk@134073 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:43:01 +00:00
bzbarsky%mit.edu
d4ea0fd2db <button> should be a containing block. Bug 180301, r=jkeiser, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134072 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:39:44 +00:00
bzbarsky%mit.edu
462e73c79e <button> should not have preformatted whitespace. Bug 55285, r=jkeiser, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134071 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:34:49 +00:00
leaf%mozilla.org
c7cb8d4927 Automated update
git-svn-id: svn://10.0.0.236/trunk@134068 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:15:06 +00:00
blizzard%redhat.com
1fee22a160 Bug #180700. Only link with superwin with gtk 1.2. r=cls
git-svn-id: svn://10.0.0.236/trunk@134067 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:11:13 +00:00
pete.zha%sun.com
988e3cf33c line break needed after quote line ("... wrote:") when quoting original message using Options->Quote Message
b=158918 r=ducarroz@netscape.com sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134066 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:09:46 +00:00
seawood%netscape.com
ecd18bb74f Get MOZILLA_VERSION from central config/milestone.txt file
Bug #179565 r=asasaki


git-svn-id: svn://10.0.0.236/trunk@134065 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:06:29 +00:00
cltbld%netscape.com
2718c8af38 Don't print Zdiff when values reporting zero change.
git-svn-id: svn://10.0.0.236/trunk@134064 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 02:59:39 +00:00
bzbarsky%mit.edu
aa224c97ca Fix smoketest blocker 180452. If the buffer is not even-sized, we have
to carry a byte around with us.  Patch mostly by alecf, partly by me;
sr=me, r=dmose, a=dmose (sheriff hat).


git-svn-id: svn://10.0.0.236/trunk@134063 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 02:57:30 +00:00
myk%mozilla.org
3d5623ee1c Fix for bug 179876: Labels the "Requestee" field to reduce confusion about its purpose.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134062 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 01:15:01 +00:00
blakeross%telocity.com
41fab29b54 Fix cancel button.
git-svn-id: svn://10.0.0.236/trunk@134061 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:54:06 +00:00
nicolson%netscape.com
ed9112d872 Fix 180396: javax.crypto.Cipher wrapping does not work with RSA algorithm.
Support RSA as a wrapping/unwrapping algorithm.


git-svn-id: svn://10.0.0.236/trunk@134060 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:41:09 +00:00
nicolson%netscape.com
d05069bcc8 Throw InvalidKeyException instead of InvalidAlgorithmParameterException,
because the latter may get thrown away by our caller, but the former will
not be.


git-svn-id: svn://10.0.0.236/trunk@134059 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:39:43 +00:00
nicolson%netscape.com
03aa936d9f Change silly switch statement to an if statement.
git-svn-id: svn://10.0.0.236/trunk@134058 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:31:10 +00:00
nicolson%netscape.com
71f9aa609f Make NotExtractableException take a String argument to its constructor.
git-svn-id: svn://10.0.0.236/trunk@134057 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:30:43 +00:00
bbaetz%student.usyd.edu.au
0515a49e95 Bug 175579 - make templates html compliant
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134056 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:16:44 +00:00
bbaetz%student.usyd.edu.au
0c7c4a2d41 Bug 179206 - enter_bug isn't picking up version from URL
patch by GavinS <bugzilla@chimpychompy.org>, r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134055 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 23:49:18 +00:00
cltbld%netscape.com
b4231403a6 better comments for garrett codesize test. r=blythe, cathleen
git-svn-id: svn://10.0.0.236/trunk@134054 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 23:04:44 +00:00
seawood%netscape.com
d2bc340dd1 Missed a variable rename with the 161617 checkin.
Fixing phoenix nightly builds. r=bryner


git-svn-id: svn://10.0.0.236/trunk@134052 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 22:56:33 +00:00
seawood%netscape.com
ce08953322 Setting OBJS (from CSRCS/CPPSRCS) is not required when using SIMPLE_PROGRAMS so we need to check for SIMPLE_PROGRAMS as well to generate dependency subdirs.
Fixing mach-o nightly build bustage. r=bryner


git-svn-id: svn://10.0.0.236/trunk@134050 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 22:35:22 +00:00
blythe%netscape.com
b089d2d06e Not part of the build.
Alphabetically sort the symbols/names to make it a bit more readable.


git-svn-id: svn://10.0.0.236/trunk@134049 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 21:54:18 +00:00
karnaze%netscape.com
46b83bd196 bug 178855 - don't support fixed, absolute, floating tables that are the root content. sr=bzbarsky, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@134045 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 16:02:43 +00:00
kin%netscape.com
9b97540558 Fix for bug 173553: flawfinder warnings in editor/libeditor/html/nsHTMLEditorLog.cpp
Changed all occurrences of sprintf() to snprintf(). Removed format arg from WriteInt().

r=brade@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134044 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:43:19 +00:00
dbaron%fas.harvard.edu
8fa2ad5646 Fix typos in my previous checkin noticed by bzbarsky. b=147887
git-svn-id: svn://10.0.0.236/trunk@134043 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:21:14 +00:00
bienvenu%netscape.com
e2aa7466cf stop playing back operations in a folder when playback fails (e.g., we're not connected to the server), r=cavin, sr=sspitzer 145048
git-svn-id: svn://10.0.0.236/trunk@134042 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:17:34 +00:00
rods%netscape.com
4215ce8014 Make it so SetDocument doesn't get set when returning from PP
Bug 176201 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134041 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 14:34:09 +00:00
timeless%mozdev.org
97bc540937 Bug 96229 keyboard (and right mouse in context menu) doesn't autocheck menuitem type="checkbox" and type="radio"
patch by neil@parkwaycc.co.uk r=aaronl sr=bz


git-svn-id: svn://10.0.0.236/trunk@134040 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 14:01:20 +00:00
timeless%mozdev.org
609fc3d185 Bug 116441 [clickSelectsAll] should not trigger if click is after end of URL
patch by neil@parkwaycc.co.uk r=jag sr=bz


git-svn-id: svn://10.0.0.236/trunk@134039 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 13:58:46 +00:00
kyle.yuan%sun.com
063c0f2291 Bug 147755 nsIAccessible's accName returns empty string instead of picking up label for XUL listbox node
r=aaronl, sr=bzbarsky
extract accName by calling GetXULAccName()


git-svn-id: svn://10.0.0.236/trunk@134038 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 10:14:04 +00:00
peterlubczynski%netscape.com
9979a08e6e Fixing bug 173938 with a hack for full-page plugins to be destroyed before the frame. r=av sr=jst
git-svn-id: svn://10.0.0.236/trunk@134037 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 07:48:10 +00:00
darin%netscape.com
e0fd9cca64 fixes bug 176626 "Mozilla sends text/css in Accept: header for non-style
pages" r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134036 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 07:13:24 +00:00
timeless%mozdev.org
02804abe11 Bug 155192 crash [@nsRDFResource::~nsRDFResource] if gRDFService wasn't created
patch by tingley@sundell.net r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134035 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 04:44:30 +00:00
jake%bugzilla.org
af6588dd2c Bug 180545 - It was possible to change the product/component of a bug without having the editbugs permission.
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134034 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 04:27:34 +00:00
bbaetz%student.usyd.edu.au
d50d167b25 Bug 179960 - Qucksearch queries are slow and timeout
fixed by adding subselect emulation for product/component lookups
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134029 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 02:03:31 +00:00
gerv%gerv.net
76046a2e78 Bug 180205 - General reporting fixes. Fixes bug 180151 (Grand total links are messed up when axis is restricted), bug 180105 (CSV reports occasionally break), bug 179671 (Boolean charts are broken on reporting pages), bug 179887 (report.cgi should |require Data::Dumper|, not |use|), and works around bug 179581 (Keyword combinations report not very useful). Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134028 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:56:32 +00:00
myk%mozilla.org
330f6c88a9 Fix for bug 180444: Correctly attributes request creation to person who submitted it.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134027 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:37:13 +00:00
myk%mozilla.org
195afd1ecd Fix for bug 180632: corrects reference flag->is_requesteeble to flag->type->is_requesteeble
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134026 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:33:54 +00:00
myk%mozilla.org
1c94919562 Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134021 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 22:50:59 +00:00
timeless%mozdev.org
b8cbc03db2 bug 180576 nsPluginHostImpl::RegisterPluginMimeTypesWithLayout doesn't null check loader
r=av sr=bz


git-svn-id: svn://10.0.0.236/trunk@134020 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 22:48:26 +00:00
timeless%mozdev.org
e37205ec16 180576 nsPluginHostImpl::RegisterPluginMimeTypesWithLayout doesn't null check loader
r=av sr=bz


git-svn-id: svn://10.0.0.236/trunk@134019 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 21:58:03 +00:00
timeless%mozdev.org
3773ada488 Bug 180583 nsTreeBodyFrame::GetImage doesn't null check loader
r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@134015 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 20:11:08 +00:00
dcone%netscape.com
de8eaf44a3 b=173234 r=rods sr=kin. Fixes crash with a drawingsurface.
git-svn-id: svn://10.0.0.236/trunk@134014 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 19:21:15 +00:00
blakeross%telocity.com
045a57dc7d Fixing download bug.
git-svn-id: svn://10.0.0.236/trunk@134013 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 18:06:57 +00:00
kirk.erickson%sun.com
7d8cb29268 Made 'solarispkg' copy pkg/solars to pkg/$(OBJDIR), and go there to
build packages.  This addresses the problems Sonja reported which
resulted from building in the same tree nfs'd from multiple platforms
simultaneously.  Also removed -$(MACH) and ROOT-$OBJDIR changes that
failed to address this problem.


git-svn-id: svn://10.0.0.236/trunk@134011 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 17:26:51 +00:00
bienvenu%netscape.com
bb0aebef57 fix unused variable warning in msgdb, patch by aleksey nogin, r/sr=bienvenu 129631
git-svn-id: svn://10.0.0.236/trunk@134008 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 17:02:19 +00:00
dbaron%fas.harvard.edu
a0f469c2b2 Remove nsLineBox::RemoveFloatersFromSpaceManager, and use nsSpaceManager::PushState and nsSpaceManager::PopState instead. b=177342 r=roc sr=kin
git-svn-id: svn://10.0.0.236/trunk@134007 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 15:51:25 +00:00
dbaron%fas.harvard.edu
307f43b5a1 Consolidate all CSS pseudos and split them into three atom lists to distinguish between pseudo-classes, pseudo-elements, and fake-pseudo-elements used for anonymous boxes. b=147887 r,sr=roc,bz
git-svn-id: svn://10.0.0.236/trunk@134006 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 15:37:56 +00:00
myk%mozilla.org
02ec7d08b8 Fix for bug 179494: prevents Bugzilla from thinking users have changed flags when they haven't.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134005 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 12:46:00 +00:00
myk%mozilla.org
f082b4f08c Fix for bug 180544: prevents display of requestee field for generally requestable fields.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134004 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 12:40:41 +00:00
timeless%mozdev.org
e62aadc8a3 Bug 180204 imgContainerMNG::~imgContainerMNG / nsPPMDecoder::~nsPPMDecoder will release uninitialized objects
r=paper sr=bz


git-svn-id: svn://10.0.0.236/trunk@134001 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 09:23:30 +00:00
timeless%mozdev.org
99731b5e88 Bug 58221 don't use strlen to check if a string is of length 0
patch by aaronl@vitelus.com r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133999 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 05:16:49 +00:00
timeless%mozdev.org
6063118db9 Bug 180129 nsStreamProviderProxy::~nsStreamProviderProxy tries to NS_IF_RELEASE an uninitialized member mObserverProxy
trivial patch by darin r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133998 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 05:16:13 +00:00
blakeross%telocity.com
5c0613c3b1 Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133997 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:54:14 +00:00
blakeross%telocity.com
c737790f3b Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133996 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:53:38 +00:00
blakeross%telocity.com
bb893919ca Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133995 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:53:37 +00:00
blakeross%telocity.com
8c6e659419 Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133994 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:52:30 +00:00
blakeross%telocity.com
7204e8351b Undo typo.
git-svn-id: svn://10.0.0.236/trunk@133993 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:38:22 +00:00
jfrancis%netscape.com
e5288c6ffc 152419: Pressing ENTER after adding styles to text does not move caret to next line.
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133992 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:11:45 +00:00
timeless%mozdev.org
3ab2090501 Bug 180286 cvs remove mozilla/htmlparser/tests/windows/Selftest.cpp
r=harishd, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@133990 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 02:22:49 +00:00
jfrancis%netscape.com
490f165cd9 fix for 172147: URL in composition "decoration" continues on next line
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133989 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:37:29 +00:00
jfrancis%netscape.com
c408834454 fix for 143338: Word wrap of double space incorrect in HTML mailcompose
r=glazman
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133988 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:25:30 +00:00
blakeross%telocity.com
4a734c638f Fix 171747.
git-svn-id: svn://10.0.0.236/trunk@133987 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:11:22 +00:00
jfrancis%netscape.com
84f64636c3 fix for 101544: Text color does not change if change is made and no text is typed then the color is changed again. Also fixes 163712: changing font takes no action.
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133986 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:03:20 +00:00
darin%netscape.com
cc5b7f14ac fixes bug 180494 "apparent code error in netwerk/dns/src/nsDnsService.cpp"
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133985 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 22:49:19 +00:00
bzbarsky%mit.edu
4ebebea365 Don't drop the principal, because we need it later on in destruction.
Let it die a peaceful death on its own.  Bug 180441, patch by
keeda@hotpop.com (Harshal), r=jst, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133984 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 22:49:14 +00:00
bbaetz%student.usyd.edu.au
a50c090080 Bug 179886 - request.cgi should not |use diagnostics|
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133983 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 21:28:08 +00:00
cbiesinger%web.de
2bde51296f patch by abecevello@sympatico.ca r=rangansen,me sr=roc+moz
fix some spelling errors


git-svn-id: svn://10.0.0.236/trunk@133982 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 20:44:32 +00:00
gerv%gerv.net
9e7acbf94c Bug 179264 - only quote non-numeric CSV values. Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133981 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 20:39:13 +00:00
bzbarsky%mit.edu
263a259da7 Fix regression in rendering buttons that people manually size to less
than desired size.  Bug 180085, r=jkeiser, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133980 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 19:32:49 +00:00
bienvenu%netscape.com
58f1385506 fix mark read filters unread count handling r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133979 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:38:35 +00:00
bienvenu%netscape.com
7d86526242 fix counts when adding msg to ignored thread r=cavin,sr=sspitzer 147110
git-svn-id: svn://10.0.0.236/trunk@133978 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:25:59 +00:00
blythe%netscape.com
8bf09774c8 Not part of build.
Make any errors regarding bad .MAP files go away.


git-svn-id: svn://10.0.0.236/trunk@133977 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:22:21 +00:00
bienvenu%netscape.com
ad98e52152 fix get all new messages if an account doesn't have remember password r=cavin,sr=sspitzer 180407
git-svn-id: svn://10.0.0.236/trunk@133976 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:21:36 +00:00
blakeross%telocity.com
2ad2cbadab Implement tabgroup homepages and fix a variety of bugs.
git-svn-id: svn://10.0.0.236/trunk@133975 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 17:14:12 +00:00
leaf%mozilla.org
86b45e1669 Automated update
git-svn-id: svn://10.0.0.236/trunk@133974 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 16:00:07 +00:00
blizzard%redhat.com
aa0c5927fd Bug #176341. configure should check for pango 1.1/1.2 when using gtk2 and xft. r=cls Patch from keitaro@attbi.com.
git-svn-id: svn://10.0.0.236/trunk@133973 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 15:56:09 +00:00
bzbarsky%mit.edu
2dfbc5fd7d Backing out alecf for now, since this change makes mailcompose crash
(and we don't want smoketest blockers, now do we?)


git-svn-id: svn://10.0.0.236/trunk@133971 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 12:07:13 +00:00
bryner%netscape.com
c823470147 profile directory fixup for os x
git-svn-id: svn://10.0.0.236/trunk@133970 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 11:16:58 +00:00
bernd.mielke%snafu.de
819231c5be enable static caption-side testcases for layout regression tests, not part of any build
git-svn-id: svn://10.0.0.236/trunk@133969 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 11:01:59 +00:00
bernd.mielke%snafu.de
4512df7522 fix spelling errors, bug 180287 patch by Martin Wulffeld
git-svn-id: svn://10.0.0.236/trunk@133968 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:46:53 +00:00
bernd.mielke%snafu.de
0a20459e7c Adding debug code to absolute containing blocks, the debug code will be invoked from the command line by
set GECKO_BLOCK_DEBUG_FLAGS=reflow bug 145592, r=bz, sr=waterson


git-svn-id: svn://10.0.0.236/trunk@133967 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:41:10 +00:00
gerv%gerv.net
c63a3ff456 Bug 100639 - make resolution more visible on mostfreq list. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133966 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:07:14 +00:00
bryner%netscape.com
4dd139fe8e add os/2 rc file (bug 177722), patch by mkaply.
git-svn-id: svn://10.0.0.236/trunk@133965 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 09:20:16 +00:00
bryner%netscape.com
647a0a9a0f Fixes for building XRE on BeOS (Bug 177610). patch by arougthopher@lizardland.net, r=me
git-svn-id: svn://10.0.0.236/trunk@133964 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 09:15:36 +00:00
seawood%netscape.com
f2257e2aef Removing unused JSDLL define
git-svn-id: svn://10.0.0.236/trunk@133963 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 08:39:50 +00:00
nelsonb%netscape.com
9d03ba6df4 Change all functions that create contexts for encryption to treat their
input buffers as const.  Warning reduction.


git-svn-id: svn://10.0.0.236/trunk@133961 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 06:09:58 +00:00
bzbarsky%mit.edu
e9b4c6da2c Need to sanity-check the index to avoid out-of-bounds array access. Bug
180043, r=jkeiser, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133960 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 06:08:37 +00:00
caillon%returnzero.com
7b9dc36cde 180377 - openNewTabWith was failing if called from a window which did not have a browser. This was because we were using the current window's document as opposed to the document of the browser (which
we obtained for loading a URL in).
r=bugs4hj@netscape.net, sr=jaggernaut@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133959 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:47:57 +00:00
bzbarsky%mit.edu
796da36786 Make Ctrl-Shift-Caps-key work. Bug 164140, patch by pkw@us.ibm.com
(Philip K. Warren), r=akkana, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133958 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:43:42 +00:00
caillon%returnzero.com
1e6f924459 Bug 163137. Make DOM inspector scroll to put an element in view upon selecting it in the DOM tree view. This was previously only working for HTML elements.
r=rbs, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133957 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:42:29 +00:00
alecf%netscape.com
7ecfcf2dd0 prep work for fixing bug 180379 - stop creating extra nsCSSSelectors - instead of creating them on the stack then copying them to the heap, start with them newly on the heap.
r=bzbarsky, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133956 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:37:24 +00:00
alecf%netscape.com
a1422857af fix warning - extra comma after enumerator
no reviewers, its a one-character change, pointed out by blizzard


git-svn-id: svn://10.0.0.236/trunk@133955 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:10:27 +00:00
jpierre%netscape.com
59aebc2144 Fix again?
git-svn-id: svn://10.0.0.236/trunk@133954 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:05:17 +00:00
jpierre%netscape.com
1a2fc25412 Fix build again !
git-svn-id: svn://10.0.0.236/trunk@133953 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 04:27:39 +00:00
cmanske%netscape.com
ce8ce03ed1 Missed file from checkin for bug 169029. r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133952 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 04:14:12 +00:00
av%netscape.com
7fa8d67a9e Bug 176782 -- hang with scriptable Flash plugin, patch by serge, r=av, sr=darin
git-svn-id: svn://10.0.0.236/trunk@133951 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:38:01 +00:00
nelsonb%netscape.com
c97983a27d Recognize new SHAxxx OIDs.
git-svn-id: svn://10.0.0.236/trunk@133950 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:34:53 +00:00
jpierre%netscape.com
65217a485f Fix build
git-svn-id: svn://10.0.0.236/trunk@133949 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:32:40 +00:00
nelsonb%netscape.com
b2932db701 Correct softoken routines to work with new larger SHAxxx hashes.
git-svn-id: svn://10.0.0.236/trunk@133948 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:32:39 +00:00
nelsonb%netscape.com
db40331209 Correct HMAC code to work with new larger SHAxxx hashes.
git-svn-id: svn://10.0.0.236/trunk@133947 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:30:37 +00:00
nelsonb%netscape.com
77afeeaeb6 Add new SHAxxx hash algorithms to tables of SECHashObjects.
git-svn-id: svn://10.0.0.236/trunk@133946 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:29:32 +00:00
nelsonb%netscape.com
c8de0109d7 Declare new vendor-defined mechanisms for SHA256, SHA384 and SHA512.
git-svn-id: svn://10.0.0.236/trunk@133945 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:25:01 +00:00
nelsonb%netscape.com
4d3de2d45e Now that we have hashes larger than SHA1,
#define HASH_LENGTH_MAX         SHA512_LENGTH


git-svn-id: svn://10.0.0.236/trunk@133944 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:21:53 +00:00
nelsonb%netscape.com
bca9f97d3a Don't reject a cert request with an empty list of CA cert names.
Don't crash with an empty CA name list.


git-svn-id: svn://10.0.0.236/trunk@133943 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:19:48 +00:00
aaronl%netscape.com
30bfa20ad7 Bug 180357. Move location bar accesskey into dtd file. r=timeless, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133942 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:05:00 +00:00
rjc%netscape.com
f10da55ff5 Fix bug # 175324: search hang. code from ajschult@eos.ncsu.edu r=rjc sr=jag
git-svn-id: svn://10.0.0.236/trunk@133941 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:42:53 +00:00
blizzard%redhat.com
294896865b Bug #121253. Port embedding widget to gtk2. r=pavlov, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133940 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:36:22 +00:00
bzbarsky%mit.edu
9a29d832d6 kill off some nsISupportsArray and fix a potential leak. Bug 177400,
r=dmose, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133939 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:35:20 +00:00
alecf%netscape.com
843a3d32f2 fix for bug 177318 - use pldhash for inner hashtable entries to dramatically reduce allocations
r=dougt/sr=brendan
I am watching to see how the performance number change and will back out if the results are nasty


git-svn-id: svn://10.0.0.236/trunk@133938 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:33:49 +00:00
blizzard%redhat.com
8b2346655f Bug #162507. Default icon should not be set for embedding applications. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@133935 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 01:22:10 +00:00
nelsonb%netscape.com
59f951de44 Add "const" modifier to all fixed arrays used for keys or known text.
git-svn-id: svn://10.0.0.236/trunk@133934 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 01:00:44 +00:00
blythe%netscape.com
38e7ded2d6 Not part of the build.
Open flood gates on autosummary scripts, no exclusions anymore.
Make the help text a little more obvious on the purpose of the various scripts.


git-svn-id: svn://10.0.0.236/trunk@133931 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 00:51:56 +00:00
blythe%netscape.com
5c85c0b93d Not part of build.
Add scripts that can report on only files listed in mozilla/embedding/config manifests.


git-svn-id: svn://10.0.0.236/trunk@133929 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:48:39 +00:00
blizzard%redhat.com
5128d302b9 Smoketest blocker bug #180318. Make sure that we include libgfxft2.so in the packages file since - wait for it - libgfx_gtk.so is linked directly against it. This was causing registration for the gfx component to fail silently so mozilla wouldn't ever start up.
git-svn-id: svn://10.0.0.236/trunk@133928 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:44:17 +00:00
myk%mozilla.org
b143ebc2c0 Fix for bug 180232: removes unnecessary margins/borders around XUL duplicates report
git-svn-id: svn://10.0.0.236/trunk@133927 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:04:04 +00:00
mcs%netscape.com
6e31d32214 Fix bug # 177775 - libprldap: NSPR error is sometimes lost.
git-svn-id: svn://10.0.0.236/trunk@133925 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 21:03:19 +00:00
mcs%netscape.com
6107849741 Fix bug # 177778 - ldap_set_option( NULL, ... ) resets ldap_debug to zero.
git-svn-id: svn://10.0.0.236/trunk@133924 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 21:01:43 +00:00
mcs%netscape.com
62ecca7ba7 Use a name shorter than 32 chars. for the C LDAP API Internet Draft.
git-svn-id: svn://10.0.0.236/trunk@133923 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:58:29 +00:00
mikep%oeone.com
0db7fa87c7 Fixing tooltips, bug 180080.
git-svn-id: svn://10.0.0.236/trunk@133922 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:51:22 +00:00
mcs%netscape.com
2967118f83 Fix bug # 163534 - remove Netscape Confidential and Proprietary marker
from errormap.c.


git-svn-id: svn://10.0.0.236/trunk@133920 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:18:50 +00:00
mcs%netscape.com
4a841edc41 Fix bug # 38012 - 64bit issues within CRC-32 code.
Define 32-bit integral types in portable.h (nsldapi_int_32 and
	nsldapi_uint_32) and use them in the memcache crc32_convert()
	function.


git-svn-id: svn://10.0.0.236/trunk@133919 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:15:53 +00:00
cmanske%netscape.com
337eb43628 Final removal of 'editorShell'. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133913 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:52:47 +00:00
cmanske%netscape.com
59e6edaf4b Final removal of 'editorShell' from DOM inspector. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133912 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:45:48 +00:00
cmanske%netscape.com
68222e9779 Final removal of 'editorShell' and associated files. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133911 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:42:22 +00:00
cmanske%netscape.com
55f4416773 Final removal of 'editorShell' and associated files. b=169029, r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133910 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:36:44 +00:00
ccarlen%netscape.com
5660acb14f Bug 179932 - Need GetCFURL() on nsILocalFileMac. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133909 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:35:17 +00:00
timeless%mozdev.org
a66cb608c5 Bug 156633 replace PR_CurrentThread with PR_GetCurrentThread
patch by riceman+bmo@mail.rit.edu r=morse,dougt,dveditz,timeless sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@133907 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:24:56 +00:00
timeless%mozdev.org
ba2e5a2424 Bug 156454 DOM Mouse Scroll events should be handled by a <handler>
patch by neil@parkwaycc.co.uk r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@133906 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:53:33 +00:00
timeless%mozdev.org
8a6019a5e6 Bug 164664 JS console evaluation ignores leading whitespace
patch by neil@parkwaycc.co.uk r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133905 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:43:07 +00:00
timeless%mozdev.org
2fb52773f4 Bug 153869 Obsolete code in help.js
patch by neil@parkwaycc.co.uk r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@133904 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:39:41 +00:00
timeless%mozdev.org
182fee8362 Bug 136130 JavaScript Console is missing the new Windows menu
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133903 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:36:21 +00:00
timeless%mozdev.org
3dd167036a Bug 125268 Edit/Pr_e_ferences, not Pre_f_erences
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133902 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:34:17 +00:00
dbradley%netscape.com
879f140cc4 Bug 180098 - "--enable-activex-scripting" option seems to break composition window. Error was in enumeration when IDispatch logic was turned on. r=adamlock, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133901 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 13:57:16 +00:00
timeless%mozdev.org
098d60ad27 not part of the build
Makefile.in changes should make this build on platforms (at least windows)
grabpage.cpp suffered from serious API rot.


git-svn-id: svn://10.0.0.236/trunk@133899 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 12:22:58 +00:00
seawood%netscape.com
065f2947ba Add bayesian filter & mailview to list of meta_mail sub-components.
Make meta component list more readable


git-svn-id: svn://10.0.0.236/trunk@133898 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 09:39:03 +00:00
gerv%gerv.net
3d0e1972b5 Bug 179462 - Clarify description for enablequips param. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133897 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:48:59 +00:00
pete.zha%sun.com
dde2f3e79f nsFT2FontCatalog compile error when build mozilla(gtk2) on solaris9
b=180052 r=cls sr=bzbarsky@mit.edu
patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@133896 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:26:58 +00:00
bratell%lysator.liu.se
d3e0252f6e Bug 93066 - Don't use FindCharInSet when searching for only one character. r=sspitzer, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133894 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:16:43 +00:00
darin%netscape.com
caf905a0ef 1) add clientUp and clientDown ipc module notifications
2) cleanup some comments in ipcModule.h


git-svn-id: svn://10.0.0.236/trunk@133893 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:01:55 +00:00
seawood%netscape.com
4bb4a830f1 Forte doesn't allow suffixes other than .o so change the naming scheme of host-compiled object files from .ho to host_%.o . Adds the unenforced rule that source files should not start with host_.
Bug #179895 Fixing tinderbox bustage


git-svn-id: svn://10.0.0.236/trunk@133891 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 07:24:44 +00:00
bolian.yin%sun.com
05d28cad33 Bug 175947, port 123389's fix from gtk1 to gtk2: copy&paste between mozilla&openoffice.
patch by louie.zhao@sun.com. r=blizzard. This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@133890 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 07:01:23 +00:00
nelsonb%netscape.com
2b6e228061 Fix crash when formatting a cert with optional version not given.
git-svn-id: svn://10.0.0.236/trunk@133889 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 06:32:51 +00:00
seawood%netscape.com
f9a791c234 Disable dependency generation on OS/2 until bug 135795 is fixed.
git-svn-id: svn://10.0.0.236/trunk@133888 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 05:42:39 +00:00
jpierre%netscape.com
fcdf6d31a0 Patch for 180228 - export CRL cache flush API . r=wtc
git-svn-id: svn://10.0.0.236/trunk@133887 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 05:04:05 +00:00
pete.zha%sun.com
ce3bdb174d Font Catalog Service
b=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@133886 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 04:59:17 +00:00
seawood%netscape.com
664815b624 Make mkdepend failures a fatal condition.
Treat nsinstall & mkdepend as HOST_PROGRAMs so that they don't call mkdepend to generate dependencies.
Bug #179895 r=bryner


git-svn-id: svn://10.0.0.236/trunk@133884 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:41:17 +00:00
sspitzer%netscape.com
e0f7c97db6 code cleanup.
don't do AppendInt(x, 10); as 10 is the default.
just do AppendInt(x);
rs=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133883 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:29:22 +00:00
caillon%returnzero.com
963e001daa 177153 - Cleanup of inspector toggling code
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133882 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:20:01 +00:00
caillon%returnzero.com
55ca195a57 Bug 180185, nsStyleText::WhiteSpaceIsSignificant() should take -moz-pre-wrap into account too
r=dbaron sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133881 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:14:56 +00:00
seawood%netscape.com
6e0a698b49 js/jsd/classes are not part of the java module
git-svn-id: svn://10.0.0.236/trunk@133879 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:42:23 +00:00
bryner%netscape.com
2d355ce509 port fix for bug 172022 to phoenix
git-svn-id: svn://10.0.0.236/trunk@133878 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:19:07 +00:00
bryner%netscape.com
2cdf37fba2 Get XRE building on OS X
git-svn-id: svn://10.0.0.236/trunk@133877 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:05:19 +00:00
seawood%netscape.com
a2bd2c5704 Update Info.plist to contain the proper doc type, use the proper version string, use the proper bundle name & allow for dropping of files onto the dock icon.
Thanks to Conrad Carlen <ccarlen@netscape.com> for the patch.
Bug #178742 r=pinkerton sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@133875 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:51:39 +00:00
blizzard%redhat.com
3f20d30c54 Backout checkin for bug #175320. It was causing cookie files to be saved without any entries but still with the standard "This is a generated file!" header. sr=bz
git-svn-id: svn://10.0.0.236/trunk@133874 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:47:59 +00:00
despotdaemon%netscape.com
9fc3c1636f Pseudo-automatic update of changes made by robin.lu@sun.com.
git-svn-id: svn://10.0.0.236/trunk@133872 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:00:27 +00:00
bryner%netscape.com
e42bf44e7d Fixing topcrash bug 179548 (crash when closing tab via mouse gesture) by null checking the event target frame before dispatching the event the second time, since the first dispatch can nuke the frame. r=dbaron, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@133871 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:59:28 +00:00
rogerl%netscape.com
bead128de2 Fixed arrayliteral & for-init stack. Changed class names to uppercase.
git-svn-id: svn://10.0.0.236/trunk@133870 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:55:22 +00:00
timeless%mozdev.org
71c406762a Bug 180210 nsCookie::~nsCookie frees uninitialized values
r=morse sr=bz


git-svn-id: svn://10.0.0.236/trunk@133867 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:45:51 +00:00
nhotta%netscape.com
fc83dc80aa Changed to do UTF-8 conversion right after we get the body,
bug 120728, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133865 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:03:49 +00:00
nelsonb%netscape.com
80c4c4369b Make selfserv build for Darwin.
git-svn-id: svn://10.0.0.236/trunk@133861 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:33:24 +00:00
nhotta%netscape.com
127de84d36 Removing unnecessary CreateUtf7ConvertedString,
bug 180166, r=naving, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133860 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:33:02 +00:00
mcs%netscape.com
777286fdd1 Fix bug # 179951 - libprldap "cross thread" memory leak.
The prldap_tsd_destroy() function (which is called when a
	thread exits) was not freeing the information contained within
	the PRLDAP_ErrorInfo structure. Added prldap_free_errorinfo()
	and a way to determine if that thread-private data looks like
	error information (the plei_magic field). At the moment, only
	one kind of thread-private data is stored anyway (the error
	information).

	The prldap_allocate_map() function, which is called when a new
	LDAP session is created, was blindly setting the thread-private
	error information pointer to NULL. But if a different thread
	created or used an LDAP session than called ldap_unbind(), old
	error information may have been left in memory. Now the error
	info. pointer is reset and reused, which was the original goal.


git-svn-id: svn://10.0.0.236/trunk@133859 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:07:27 +00:00
bienvenu%netscape.com
037fa1337e remove unneeded call to CreateUtf7ConvertedString when refreshing folder acl r=nhotta, sr=sspitzer 180158
git-svn-id: svn://10.0.0.236/trunk@133853 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 22:01:58 +00:00
igor%mir2.org
ece1ec437f Replace getScriptable() by getFunctionName() in omj/debug/DebuggableScript.java as the debugger used DebuggableScript.getScriptable() only to query function names.
It allows to implement the DebuggableScript interface only  by omj/InterpreterData instead of 2 identical implementations by InterpretedFunction and InterpretedScript.


git-svn-id: svn://10.0.0.236/trunk@133851 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 21:12:36 +00:00
darin%netscape.com
abd2669870 fixes bug 173094 "Freeze nsIUploadChannel" r=dougt,timeless sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@133847 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:36:20 +00:00
seawood%netscape.com
9ba28e1f7e Oops. I checked in v1.0 instead v1.1. Too many trees.
Fixing clobber bustage


git-svn-id: svn://10.0.0.236/trunk@133845 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:23:26 +00:00
bzbarsky%mit.edu
b2477e984f Fire onScroll after the scrolling has happened. Bug 179857, r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133842 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:00:13 +00:00
mkaply%us.ibm.com
257efbef6c #176609
r=mkaply, sr=blizzard (platform specific code)
OS/2 only - use browser DPI for bitmap fonts as well


git-svn-id: svn://10.0.0.236/trunk@133841 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:53:20 +00:00
mkaply%us.ibm.com
08d338442b 150156 type fix for OS/2 - do a copy if move fails because file already exists
git-svn-id: svn://10.0.0.236/trunk@133840 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:41:18 +00:00
mkaply%us.ibm.com
ed799f6f10 #179508
r=cls, sr=alecf
Get OS/2 static build working again


git-svn-id: svn://10.0.0.236/trunk@133839 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:38:21 +00:00
darin%netscape.com
2e50b6f4f7 eliminate primary name from "client hello" (not needed, and added
problematic dependency on libpref).


git-svn-id: svn://10.0.0.236/trunk@133838 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:37:01 +00:00
seawood%netscape.com
6163c33b1c Drop unneeded java build rules & variables since blackwood now builds using ant.
Bug #161617 r=edburns sr=beard


git-svn-id: svn://10.0.0.236/trunk@133837 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:36:28 +00:00
blizzard%redhat.com
5f5287203d Bug #180123. Crashes when resizing mail window with gtk2 build. Make sure to always return something from nsRegionGTK::GetRects(), even if the list of rects is empty. r=tor
git-svn-id: svn://10.0.0.236/trunk@133836 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:29:10 +00:00
bryner%netscape.com
98e8e06585 OS/2 doesn't preserve the width and height of a window if one of them is set to zero, so start the customize toolbar dialog at a height of 50 (so that we don't lose the width). Bug 172903, patch by mkaply, r=me.
git-svn-id: svn://10.0.0.236/trunk@133835 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:25:33 +00:00
despotdaemon%netscape.com
ef49d95050 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133834 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:09:26 +00:00
mkaply%us.ibm.com
dca2e1ea1b #179508
r=cls, sr=alecf
Get OS/2 static build working again


git-svn-id: svn://10.0.0.236/trunk@133833 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:02:05 +00:00
alecf%netscape.com
e38457c675 take two at fixing bug 177401 - convert nsIBinaryStream over to using nsAString/nsACString for string values, to speed up fastload
sr=darin, r=dougt
(the previous checkin had a typo which disabled fastload entirely!)


git-svn-id: svn://10.0.0.236/trunk@133832 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 18:16:31 +00:00
despotdaemon%netscape.com
9f952626d5 Pseudo-automatic update of changes made by antitux@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@133831 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:56:00 +00:00
despotdaemon%netscape.com
ef5843ef9f Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133830 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:50:54 +00:00
ian.mcgreer%sun.com
b9da288235 bug 39494, handle non-standard AVAs properly
r=nelsonb


git-svn-id: svn://10.0.0.236/trunk@133828 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:04:43 +00:00
rods%netscape.com
137ad80cc3 Forgot to fix margin rect calculation
BUg 118954


git-svn-id: svn://10.0.0.236/trunk@133825 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:33:03 +00:00
rods%netscape.com
94b731f412 Nobody caught that the conversion from inches to mm was off by 10
changing 254 to 25.4
Bug 118954


git-svn-id: svn://10.0.0.236/trunk@133824 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:20:15 +00:00
timeless%mozdev.org
7e55103e88 Bug 172691 Prompt with checkbox and one, three or four buttons initally focuses wrong button
patch by neil@parkwaycc.co.uk r=dean_tessman@hotmail.com sr=bz


git-svn-id: svn://10.0.0.236/trunk@133823 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:08:32 +00:00
bbaetz%student.usyd.edu.au
d900d46789 Bug 179697 - OR terms need extra level of bracketing
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133822 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 11:11:18 +00:00
ssu%netscape.com
bdbc8d4f7c fixing bug 173195 - Changes in the Mozilla/Netscape Installer to run Palm Conduit Installer. r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@133821 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 09:04:16 +00:00
shanjian%netscape.com
f89a09f88f #94319 Symbolic fonts do not display properly, need generic solution rather than adding each new font to fontencoding.properties
using the flag set by CSS#94319 Symbolic fonts do not display properly, need generic solution rather than adding each new font to fontencoding.properties
using the flag set by CSS, we only decode symbol font using win-1252 for windows symbol font.
r=ftang, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@133811 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:58:54 +00:00
depstein%netscape.com
857ed7d1e4 Added 2nd param inputs for nsIDOMWindow in nsICmdParams. GRE 1.3a tag in winEmbedFileLocProvider.cpp. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133809 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:39:46 +00:00
bryner%netscape.com
e64c6379e3 nsTextServicesDocument should be #ifdef'd out when building the plaintext editor only. Fixing phoenix build bustage.
git-svn-id: svn://10.0.0.236/trunk@133808 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:23:08 +00:00
pschwartau%netscape.com
3193f8fabf Adding comments.
git-svn-id: svn://10.0.0.236/trunk@133807 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:12:15 +00:00
kaie%netscape.com
7f5f32734d b=175320 Support clean profile & NSS shutdown at any time + Mozilla needs to clean up on exit to allow for PSM failure detection
r=ccarlen sr=darin


git-svn-id: svn://10.0.0.236/trunk@133803 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:50:14 +00:00
dmose%netscape.com
a225ed107e Allow links in mailnews message pane to open in browser tabs (bug 148974). r=sspitzer; sr=jaggernaut
git-svn-id: svn://10.0.0.236/trunk@133802 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:40:38 +00:00
kaie%netscape.com
b384714f3a b=175888 Calling nsGlobalHistory::CloseDB() must be safe
r=timeless sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133800 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:13:37 +00:00
wtc%netscape.com
c224c7ae61 Bug 173827: deleted the l10n_debug cruft. Added the FLAG prefix to
the _LEFT, _SIGNED, _SPACED, _ZEROS, and _NEG macros.  This patch is
contributed by Brendan Eich.


git-svn-id: svn://10.0.0.236/trunk@133796 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:06:02 +00:00
kaie%netscape.com
5715a6d3b9 b=168450 Cleanup some PSM code and add JavaDoc documentation to all freeze candidates
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133794 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:50:02 +00:00
harishd%netscape.com
2a2e596447 bug 167493 - Backing out the patch based on the bug report
git-svn-id: svn://10.0.0.236/trunk@133792 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:38:53 +00:00
bryner%netscape.com
0101a6ee53 Fix --enable-plaintext-editor-only build bustage by removing nsTextEditorReg.cpp (which was needless duplication and easy to forget to update) and just adding plaintext #ifdefs in nsEditorRegistration instead. Bug 177333, r=jfrancis, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@133790 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:29:33 +00:00
mkaply%us.ibm.com
0e2d17ba37 We need composer.xpt too
git-svn-id: svn://10.0.0.236/trunk@133789 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:11:48 +00:00
leaf%mozilla.org
f4bd93fc58 update mac installer version to 1.3a
git-svn-id: svn://10.0.0.236/trunk@133788 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:00:51 +00:00
cmanske%netscape.com
45d443c52e Final removal of editorshell from messagecomposer
git-svn-id: svn://10.0.0.236/trunk@133787 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 23:56:28 +00:00
brendan%mozilla.org
e0ef268766 Remove l10n_debug cruft, expand tabs, eliminate else-after-break, don't invade the standard C namespace with leading _ in identifiers, etc. (173827, r=scole@planetweb.com).
git-svn-id: svn://10.0.0.236/trunk@133784 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:59:15 +00:00
alecf%netscape.com
c952308730 oops, I checked in an earlier version of the patch for bug 173291 - here's the update that reflects the reviewer's comments.
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133783 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:58:56 +00:00
sspitzer%netscape.com
6463bfeb18 add comment about why we don't allow attach= on mailto: urls.
(see bug #99055).  no reviewer.


git-svn-id: svn://10.0.0.236/trunk@133782 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:55:42 +00:00
alecf%netscape.com
71b2ee7677 fix for bug 173291 - use nsISimpleEnumerator for nsHashtableEnumerator, rather than nsIEnumerator
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133780 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:40:10 +00:00
bzbarsky%mit.edu
b8bbf7470c Fix regression bug 179896; need to use the cached ascent in this case
too.  r=jkeiser, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133779 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:34:09 +00:00
caillon%returnzero.com
2555de7923 Bug 107812
Copying from inspector should also copy to primary on platforms that support it.
r=akkana sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133777 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:17:51 +00:00
heikki%netscape.com
2cf6ce6c2a Bug 176186, XMLHttpRequest does not set document URL. Patch from sicking, r=heikki, sr=peterv.
git-svn-id: svn://10.0.0.236/trunk@133775 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:58:12 +00:00
nhotta%netscape.com
9a22e917e7 Call nsIUnicharEncoder::Finish to ensure the converted string is terminated,
bug 179392, r=shanjian, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133774 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:56:01 +00:00
bzbarsky%mit.edu
02536b8319 DD should be allowed to contain DL. Bug 179071 and company, r=harishd, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@133773 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:55:36 +00:00
rogerl%netscape.com
f6b5386589 Added missing attributes. Fixed slotWrite stack bug.
git-svn-id: svn://10.0.0.236/trunk@133772 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:49:57 +00:00
caillon%returnzero.com
d426bb1897 Bug 112682
Some rules have no parentStyleSheet.  Add a null check.
r=cbiesinger sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133771 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:48:46 +00:00
smontagu%netscape.com
12a8c6e364 Change example of escaped Unicode character to use real character not \uXXXX. Bug 179010, r=nhotta, sr=dveditz.
git-svn-id: svn://10.0.0.236/trunk@133770 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:41:43 +00:00
bzbarsky%mit.edu
4785517d37 Clean up some array stuff in necko. Bug 175442, r=darin, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@133769 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:25:32 +00:00
dougt%netscape.com
f7f7a88a19 Crash OOM @ startup. r=darin, sr=alec, bug 175663
git-svn-id: svn://10.0.0.236/trunk@133768 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:23:58 +00:00
brade%netscape.com
e9a66badb0 Cut when no selection should just return NS_OK (not error which causes JS to throw an error); bug 178725, r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133767 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:21:28 +00:00
blizzard%redhat.com
b1ce6d46dc No bug number. Fix the name of the mailview shared lib on unix. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133766 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:21:09 +00:00
bzbarsky%mit.edu
a90238e37d Any disposition that's not "inline" should be treated as "attachment".
Bug 172003, r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@133765 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:17:40 +00:00
leaf%mozilla.org
73d20cd728 bug 176505, sr=sfraser, r=kin. fix packaging for new xpt file
git-svn-id: svn://10.0.0.236/trunk@133764 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 20:31:20 +00:00
mikep%oeone.com
d07a9b7d33 New build, fixing so that icon shows when refreshing remote calendar source.
git-svn-id: svn://10.0.0.236/trunk@133761 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 19:01:01 +00:00
mikep%oeone.com
ed9f6c9267 Fixing button.
git-svn-id: svn://10.0.0.236/trunk@133760 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:45:43 +00:00
mikep%oeone.com
065317adb3 Changing toolbar image from .png to .gif
git-svn-id: svn://10.0.0.236/trunk@133759 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:02:34 +00:00
mikep%oeone.com
d8955ffac2 Fixing bug 179516, changing images from .png to .gif
git-svn-id: svn://10.0.0.236/trunk@133758 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:01:57 +00:00
mikep%oeone.com
62ac45e52b Fixing up the wizard a bit more.
git-svn-id: svn://10.0.0.236/trunk@133757 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:25:26 +00:00
mikep%oeone.com
ea5b4efb02 Fixing selection problems, bug 179566
git-svn-id: svn://10.0.0.236/trunk@133756 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:25:11 +00:00
mikep%oeone.com
bc97a0e322 Fixing selection problems with add event, removing selection after edit event since the event was already selected.
git-svn-id: svn://10.0.0.236/trunk@133755 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:23:53 +00:00
mikep%oeone.com
bca2157227 Reformatting.
git-svn-id: svn://10.0.0.236/trunk@133754 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:21:41 +00:00
brade%netscape.com
b6b8f84407 fix compiler warning introduced by bug 170353
git-svn-id: svn://10.0.0.236/trunk@133753 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:45:34 +00:00
bernd.mielke%snafu.de
5c14c1baea change default height of empty table cells to 1px in quirks mode and 0px in standards mode + some CallQueryInterface cleanup, bug 16012 r=karnaze sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133752 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:38:48 +00:00
brade%netscape.com
9dbd0fc41a implement queryCommandEnabled (bug 179730, r=akkana, sr=peterv)
git-svn-id: svn://10.0.0.236/trunk@133750 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:23:03 +00:00
timeless%mozdev.org
5da8143548 Bug 178604 when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles
patch by neil@parkwaycc.co.uk r=varga sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133748 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 14:10:28 +00:00
neeti%netscape.com
1806c8fb3d fix for bug 150156 - nsIFile's moveTo method does not overwrite existing files,r=dougt@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@133747 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 14:04:51 +00:00
dbradley%netscape.com
eec114f2dc bug 164385 - SetDiry() often uses uninitialized rv. r=dbradley, sr=alecf, patch=ajschult@eos.ncsu.edu
git-svn-id: svn://10.0.0.236/trunk@133746 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:29:00 +00:00
leaf%mozilla.org
d27b9f3d1a Automated update
git-svn-id: svn://10.0.0.236/trunk@133745 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:15:06 +00:00
locka%iol.ie
c4a843ac39 Add --enable-activex-scripting switch to configure.in and package changes to include npmozax.dll. b=133818 r/a=seawood@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133744 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:14:14 +00:00
axel%pike.org
c82618c0b3 bug 179537, fix baseURI and PR_LOG in xslt, r=peterv, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@133743 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:59:31 +00:00
blizzard%redhat.com
679290a4f5 No bug. Put drawing onto its own logging facility.
git-svn-id: svn://10.0.0.236/trunk@133742 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:41:49 +00:00
rods%netscape.com
251c785a71 enable pagesetup to use mertic mm when using page sizes with mm/cm
Bug 118954 r=dcone sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133741 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:35:15 +00:00
igor%mir2.org
460d1f1c00 Fixing in Interpreter.dumpICode reading of index from a wrong offset
git-svn-id: svn://10.0.0.236/trunk@133740 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 10:22:46 +00:00
igor%mir2.org
3bc7187bf3 Fixing misspellings comments
git-svn-id: svn://10.0.0.236/trunk@133739 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 10:13:40 +00:00
gerv%gerv.net
781eadc86f Bug 178043 - Make it possible to have vertical x-axis labels. Patch by gerv; r=joel.
git-svn-id: svn://10.0.0.236/trunk@133738 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 08:29:18 +00:00
caillon%returnzero.com
71ed8bac88 Make sure we properly init the show whitespace nodes checkmark.
r=jkeiser sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133737 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:56:08 +00:00
bzbarsky%mit.edu
f76cceac51 Not sure why this didn't get properly checked in with the rest... Bug
167236, r=jkeiser, sr=roc+moz, moa=rods


git-svn-id: svn://10.0.0.236/trunk@133736 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:50:34 +00:00
bugreport%peshkin.net
98ee17fb1b Bug 179706 activity log needs to include full account names for requestees
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@133735 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:05:41 +00:00
brendan%mozilla.org
e359510677 Fix up comments, overlong lines, NULL in C code, slight code simplification in log_filename (r/sr=blythe/dbaron).
git-svn-id: svn://10.0.0.236/trunk@133734 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:40:17 +00:00
brendan%mozilla.org
1a91c38fee Make enumeration const unless PL_DHASH_REMOVE is returned by the etor callback; improve several comments (174859, r=waterson, sr=beard).
git-svn-id: svn://10.0.0.236/trunk@133733 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:35:37 +00:00
timeless%mozdev.org
caa44bd630 Bug 177975 User-agents on Mac OSX should reflect CFM or Mach-O
patch by zach@zachlipton.com r=sdagley sr=darin


git-svn-id: svn://10.0.0.236/trunk@133732 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:29:47 +00:00
bzbarsky%mit.edu
91750a6526 Fix relative url handling in page info. Bug 153545, patch by
db48x@yahoo.com (Daniel Brooks), r=jag, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133731 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:28:24 +00:00
bzbarsky%mit.edu
d0d90b17a6 Fix bug 122125 (showing "real" dimensions of images) redux, and strict
JS warnings.  Patch by db48x@yahoo.com (Daniel Brooks), r=timeless,
sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133730 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:06:51 +00:00
timeless%mozdev.org
77c17c0cae Bug 179778 regExport accesses argv[1] before checking argc==1
r=dougt sr=bz


git-svn-id: svn://10.0.0.236/trunk@133728 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:58:38 +00:00
jay.yan%sun.com
89161a8141 bug 178404, --enable-ctl in configure will cause mozilla gtk2 build fail, r=seawood
git-svn-id: svn://10.0.0.236/trunk@133727 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:48:17 +00:00
dbaron%fas.harvard.edu
62e688645b Fix various shutdown leaks. b=179361 r=blizzard sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133725 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:01:08 +00:00
blakeross%telocity.com
c72f8b190f History cleanup, add open in tab to history.
git-svn-id: svn://10.0.0.236/trunk@133716 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:55:56 +00:00
ducarroz%netscape.com
e751ca1590 Fix for bug 112986. When parsing data for draft/template, if we are processing a flowed plain text line, we need to remove any stuffed space. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133714 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:21:00 +00:00
pschwartau%netscape.com
bf1aaef14a Removing redundant variable declarations.
git-svn-id: svn://10.0.0.236/trunk@133713 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:19:57 +00:00
rogerl%netscape.com
e362fd61ad Comment.
git-svn-id: svn://10.0.0.236/trunk@133712 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:50:43 +00:00
mjudge%netscape.com
5816046858 need to adjust and add the domwindow to the parameters
git-svn-id: svn://10.0.0.236/trunk@133711 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:49:23 +00:00
cmanske%netscape.com
2a824039fa String change as part of dialog cleanup, b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133710 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:41:23 +00:00
cmanske%netscape.com
6d236babea Command Controller refactoring and cleanup, mostly by mjudge with help by cmanske, b=170353, r=brade, sr=sfraser. EditingSession cleanup and new commands in \editor, b=174439, r=mjudge, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133708 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:30:29 +00:00
caillon%returnzero.com
a073034c11 Allow the hiding of "empty" text nodes from DOM Inspector.
r=cbiesinger, sr=alecf, bug 147189


git-svn-id: svn://10.0.0.236/trunk@133707 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:16:42 +00:00
pschwartau%netscape.com
af53e8c6b9 Adding more sections to cover str.search(), str.replace().
git-svn-id: svn://10.0.0.236/trunk@133706 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:14:17 +00:00
sspitzer%netscape.com
815b397029 fix for static build bustage. thanks for the tip from cls.
git-svn-id: svn://10.0.0.236/trunk@133705 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:13:50 +00:00
cmanske%netscape.com
d6cc98279b Command Controller refactoring and cleanup, mostly by mjudge with help by cmanske, b=170353, r=brade, sr=sfraser. EditingSession cleanup and new commands in \editor, b=174439, r=mjudge, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133703 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:03:27 +00:00
bryner%netscape.com
12a72333d8 Fix context menus in thread pane on Linux by making sure not to re-use an event struct (and its changed event flags) after dispatching it. Bug 179172, r=varga, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@133702 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:59:06 +00:00
cmanske%netscape.com
4c1c7e3809 Remove editorShell from message composer. b=174389, r=ducarroz, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133701 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:55:10 +00:00
cmanske%netscape.com
a64dcd2981 Remove editorShell from Composer app. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133700 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:52:55 +00:00
yokoyama%netscape.com
d1bb1f0d65 Bug 172337
Attachment mechanism incompatible with Unicode
Impact only Windows.  file URL will be UTF-8
when we put the MOZ_UNICODE flang
(MOZ_UNICODE flag is module by module bases for now
 until other modules are ready. NSPR/XPCOM)
/r=nhotta; /sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133699 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:48:53 +00:00
bienvenu%netscape.com
1376e3c13d fix mdn receipts getting filtered to imap sent folder r=cavin, sr=sspitzer 178347
git-svn-id: svn://10.0.0.236/trunk@133698 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:46:58 +00:00
cmanske%netscape.com
335fb3a1bb Remove editorShell from editor dialogs. b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133697 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:44:04 +00:00
cmanske%netscape.com
f42124e4bb New XBL for editor tag and editorshell removal. b=133598, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133696 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:41:16 +00:00
smontagu%netscape.com
ef0e83ae00 Bug 136322: Character coding menu doesn't work in Source window. Author=neil@parkwaycc.co.uk, r=shanjian, sr=bzbarsky@mit.edu.
git-svn-id: svn://10.0.0.236/trunk@133695 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:35:58 +00:00
bzbarsky%mit.edu
83f54c2bcb ok, that didn't make the AIX compiler happy enough, and I trust it over
all our other ones, so...


git-svn-id: svn://10.0.0.236/trunk@133694 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:23:11 +00:00
blakeross%telocity.com
9422a58994 Minor polish.
git-svn-id: svn://10.0.0.236/trunk@133693 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:11:19 +00:00
bzbarsky%mit.edu
b797fc1248 fix windows linker bustage
git-svn-id: svn://10.0.0.236/trunk@133690 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:35:59 +00:00
leaf%mozilla.org
9c093ba9d8 Automated update
git-svn-id: svn://10.0.0.236/trunk@133689 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:15:09 +00:00
seawood%netscape.com
ecfb0e8b98 PATH entries on win9x are all upper-case.
Bug #164646 Fixing win9x bustage.


git-svn-id: svn://10.0.0.236/trunk@133688 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:09:52 +00:00
nhotta%netscape.com
d768bbf1d9 Reset parser's charset to file system's default for file url,
bug 179146, r=yokoyama, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@133687 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:06:16 +00:00
kaie%netscape.com
29bfe3470c b=161488 Forwarding encrypted mail as attachments should be first deciphered
Patch produced by ducarroz and kaie
r=ducarroz/kaie sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133686 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:51:54 +00:00
bzbarsky%mit.edu
04bc7e2dbf Clean up some array stuff in editor; switch to nsCOMArray in a bunch of
places.  Bug 175564, r=jfrancis, sr=kin


git-svn-id: svn://10.0.0.236/trunk@133685 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:40:11 +00:00
pkw%us.ibm.com
0a3cfbf6ce Fix xptcinvoke code on AIX when compiling in 64-bit mode. Specifically,
passing PRBools through xptcinvoke was broken.
Bug 178499: r=jdunn, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133684 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:38:15 +00:00
brendan%mozilla.org
41e9a80c9f Fix s.match('re', 'g') and similar cases to use the right local root (179524, r=rogerl).
git-svn-id: svn://10.0.0.236/trunk@133682 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:25:01 +00:00
blizzard%redhat.com
69f2708fed Bug #179773. mailViews.dat not installed during make install. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133681 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:24:38 +00:00
ducarroz%netscape.com
f2eeb216c2 Fix for bug 179082. We need to insert a decoder even when we edit an encrypted message. R=kaie, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133680 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:22:37 +00:00
bienvenu%netscape.com
9545296f16 ignore tabs in reference headers, fixes threading when folded headers have tabs, r/sr=sspitzer, 179736 thx to jmuto for diagnosing the problem, also, whitespace cleanup
git-svn-id: svn://10.0.0.236/trunk@133679 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:22:09 +00:00
nhotta%netscape.com
23802c12dc Adding phonetic name fields to addressbook (default to be disabled),
bug 178891, r=cavin, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133677 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:21:28 +00:00
ducarroz%netscape.com
2383d44d17 Fix for bug 167131. Not not display remote image in message compose when setting is on. R=morse, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133676 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:18:04 +00:00
bzbarsky%mit.edu
87e0051c3e Align text inputs, buttons, comboboxes to baseline with respect to the
text around them (bug 167236).  Fix width sizing issues for <input
type="button/reset/submit"> (bugs 79927, 36364).  Fix nonuniform heights
of form controls (bug 70251).  Patch is on bug 167236, r=jkeiser,
sr=roc+moz, moa=rods


git-svn-id: svn://10.0.0.236/trunk@133674 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:17:51 +00:00
nhotta%netscape.com
5e08a3cbc0 Chagned to make search date format localizable,
bug 98144, r=ducarroz, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133673 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:11:22 +00:00
blizzard%redhat.com
30c98e4851 Remove freetype, xft and expat locally since it's not needed anymore. r=cls
git-svn-id: svn://10.0.0.236/trunk@133672 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:11:14 +00:00
danm%netscape.com
104b450b14 always constrain new windows fully onscreen. bug 162029 and effectively part of bug 162090. r=hyatt,jag
git-svn-id: svn://10.0.0.236/trunk@133671 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:09:02 +00:00
nhotta%netscape.com
aa11d2f5db Separated the menu charset code from the charset initialization function,
to avoid the mail font code calling the init function and reset the menu charset,
bug 150530, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133670 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:08:23 +00:00
danm%netscape.com
3950784443 hook up _parent target in window.open. it wasn't. bug 168807 code=keeda@hotpop.com r=jkeiser,jst,me
git-svn-id: svn://10.0.0.236/trunk@133669 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:05:17 +00:00
nhotta%netscape.com
c748a19750 Adding pref for phonetic fields, search date format option,
bug 98144, r=ducarroz, sr=sspitzer
bug 178891, r=cavin, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133668 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:03:14 +00:00
pschwartau%netscape.com
c3ce684503 Comment fix.
git-svn-id: svn://10.0.0.236/trunk@133667 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:02:18 +00:00
pschwartau%netscape.com
43359f5192 str.match() CAN take a 2nd parameter, if the 1st one is a string instead of a RegExp object. Added cases to cover that.
git-svn-id: svn://10.0.0.236/trunk@133666 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 18:33:39 +00:00
rogerl%netscape.com
1f29c1fc2c Slot ops.
git-svn-id: svn://10.0.0.236/trunk@133660 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 17:52:42 +00:00
karnaze%netscape.com
40cb00ae72 bug 119786 - don't consider a caption and row group frame to be siblings (caption and row group content are siblings). sr=kin, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@133657 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 15:55:39 +00:00
dbaron%fas.harvard.edu
e8f31961d7 Subclass the nsCSS* structs as nsRuleData* so members can be added to the latter without bloating the former, and to allow the former to go away eventually. Propagate whether a font family name comes from HTML through the style system and use it to set a bit on nsFont indicating that quirky behavior of Symbol fonts is acceptable. b=175372 r=bzbarsky sr=kin
git-svn-id: svn://10.0.0.236/trunk@133655 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 15:17:07 +00:00
locka%iol.ie
195c881f0b NOT PART OF BUILD. Fire events to nsIScriptEventManager targets. Add some #ifdefs around some code to fix breakage in other configurations. Comment out a debug macro. b=174404 sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133654 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 13:15:05 +00:00
dbaron%fas.harvard.edu
71b85664e2 Move the body background repainting hack from the reflow case to the framechange case, since roc's style hint processing changes make it no longer needed in the reflow case, but it's always been needed for the framechange case. b=175131 r=roc sr=kin
git-svn-id: svn://10.0.0.236/trunk@133652 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 11:17:55 +00:00
dbradley%netscape.com
664e4a6037 NOT PART OF BUILD. Corrected scriptability tests.
git-svn-id: svn://10.0.0.236/trunk@133651 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 10:38:17 +00:00
igor%mir2.org
a9d29a14f5 Call NativeArray.getLength() instead of deprecated NativeArray.jsGet_length()
git-svn-id: svn://10.0.0.236/trunk@133645 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:41:09 +00:00
igor%mir2.org
7e3dfdd461 Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.
git-svn-id: svn://10.0.0.236/trunk@133644 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:37:43 +00:00
igor%mir2.org
971ac0bb35 1. Deprecation jsGet_length in favour of getLength
2. Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.


git-svn-id: svn://10.0.0.236/trunk@133643 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:36:40 +00:00
igor%mir2.org
d576005582 1. In js_concat determine the the size of the resulting string to avoid reallocations in StringBuffer .
2. Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.


git-svn-id: svn://10.0.0.236/trunk@133641 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:33:48 +00:00
igor%mir2.org
e0d97e7664 Cosmetics: use consistent naming and layout for internal methods providing JS library implementation
git-svn-id: svn://10.0.0.236/trunk@133639 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:29:57 +00:00
igor%mir2.org
9f64b76c40 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=179068
Allow to use char sequences exceeding 64K when storing source for decompilation

The current 64K limit for string literals comes from omj/Parser.java where it constructs the internal script presentation for future decompilation. The patch extends this form to allow string sequences with more then 64K characters and modifes decompilation code in omj/NativeFunction.java accordingly.


git-svn-id: svn://10.0.0.236/trunk@133638 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:24:54 +00:00
igor%mir2.org
618232cc79 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=179366
Assume --> after a possible whitespace after line start means comments to end-of-line. The change follows the SpiderMonkey solution.


git-svn-id: svn://10.0.0.236/trunk@133637 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:20:09 +00:00
leaf%mozilla.org
503a262619 Automated update
git-svn-id: svn://10.0.0.236/trunk@133633 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:45:08 +00:00
seawood%netscape.com
9a9d72d603 Fix win32 checks for directories that are at the end of the patch.
Thanks to parish@ntlworld.com for the patch.
Bug #164646 r=cls


git-svn-id: svn://10.0.0.236/trunk@133632 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:41:08 +00:00
dbradley%netscape.com
8342029c26 Bug 173146 - Add support to XPConnect for IDispatch interface. Second round of changes. r=adamlock, sr=jst. Most changes are not part of build.
git-svn-id: svn://10.0.0.236/trunk@133631 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:22:35 +00:00
mkaply%us.ibm.com
0832ead0e1 #178280
r=mkaply, sr=blizzard (platform specific code)
OS/2 only - rework how we decide what font names to put in the font list


git-svn-id: svn://10.0.0.236/trunk@133624 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 05:53:16 +00:00
bzbarsky%mit.edu
f7082bb25b Make attribute value testing smarter (using regexps). Bug 177047,
patch by db48x@yahoo.com (Daniel Brooks), r=timeless, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133623 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 05:02:36 +00:00
bzbarsky%mit.edu
e98396416a Fix ScrollFrameIntoView if we have nested views with the child bigger
than the parent.  Bug 143815, r=roc+moz, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133622 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 04:38:28 +00:00
bzbarsky%mit.edu
dd6256cb73 ApplyRenderingChangeToTree should walk {ib} "special siblings". Bug
146409, r=dbaron, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133621 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 04:21:33 +00:00
bzbarsky%mit.edu
2e99df36cd Fix ReplaceChild() on positioned inlines to delegate to
nsAbsoluteContainingBlock.h.  Bug 176915, r=dbaron, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@133620 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 03:30:13 +00:00
bienvenu%netscape.com
1f41cbc610 turn on fix for flush on unix as well, r=dmose, sr=sspitzer 142196
git-svn-id: svn://10.0.0.236/trunk@133619 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:55:08 +00:00
edburns%acm.org
134cf4805b Checkpoint. Copy binary artifacts in a cross platform manner.
git-svn-id: svn://10.0.0.236/trunk@133618 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:52:18 +00:00
blakeross%telocity.com
79d93d62cf Fix a typo.
git-svn-id: svn://10.0.0.236/trunk@133615 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:24:07 +00:00
blakeross%telocity.com
b907a8fb77 179316 - date literals aren't serialized properly. r=rjc sr=ben
git-svn-id: svn://10.0.0.236/trunk@133614 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:12:02 +00:00
bbaetz%student.usyd.edu.au
4b6686fd99 Bug 179302 - 'anyexact' isn't an option for boolean charts
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133613 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:07:46 +00:00
bugreport%peshkin.net
2cb82e0c0e Bug 179491 Searchs of attachments containing a string do not enforce attchment privacy
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133612 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:58:02 +00:00
jrgm%netscape.com
e42052df34 Fix bug 158690, 'textbox .readonly property not implemented correctly'. Fix by djudd@seachange.com (David Judd), r=caillon, sr=blake.
git-svn-id: svn://10.0.0.236/trunk@133611 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:55:58 +00:00
pschwartau%netscape.com
e444ceb885 Initial add. Regression test for bug 179524.
git-svn-id: svn://10.0.0.236/trunk@133610 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:52:25 +00:00
dougt%netscape.com
cc0ab312d1 Moving nsIIOService to SDK. 179610. r=me
git-svn-id: svn://10.0.0.236/trunk@133609 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:42:33 +00:00
darin%netscape.com
477a1136d1 cleaning up ipcCommandModule
git-svn-id: svn://10.0.0.236/trunk@133608 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:13:51 +00:00
locka%iol.ie
eb9724030e NOT PART OF BUILD. Restore file that breaks LiveConnect build of plugin
git-svn-id: svn://10.0.0.236/trunk@133607 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:04:26 +00:00
bienvenu%netscape.com
e994c4429e fix copying multiple imap messages on servers with non-canonical hierarchy delimiter (e.g., cyrus servers), also whitespace cleanup, r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133606 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:00:17 +00:00
bienvenu%netscape.com
6f196c1018 fix problem with summary files on network drives getting out of date, r=cavin, sr=sspitzer, 142196 (make nsIOFileStream::flush really flush)
git-svn-id: svn://10.0.0.236/trunk@133605 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:59:10 +00:00
bienvenu%netscape.com
66fa9ce407 fix copying of messages to local folders leaving the db in an invalid state, r=naving, sr=sspitzer, 178641
git-svn-id: svn://10.0.0.236/trunk@133604 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:58:03 +00:00
blakeross%telocity.com
b3a7dfb34f Remove the unnecessary indentation on non-Windows platforms.
git-svn-id: svn://10.0.0.236/trunk@133601 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:49:00 +00:00
bugreport%peshkin.net
89c311fab6 Second installment of Bug 179260 Unknown table 'map_assigned_to' in order clause at globals.pl line 242
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133600 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:43:34 +00:00
blakeross%telocity.com
87df0e7135 Fix textbox.readonly.
git-svn-id: svn://10.0.0.236/trunk@133599 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:40:59 +00:00
mkaply%us.ibm.com
7f2cf5b82a Bustage fix - Windows only
git-svn-id: svn://10.0.0.236/trunk@133598 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 23:38:51 +00:00
mkaply%us.ibm.com
136089ba1e Two more REQUIRES needed
git-svn-id: svn://10.0.0.236/trunk@133596 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:35:49 +00:00
rogerl%netscape.com
93eee3bfd6 Proto instance dup. Type discovery in expression.
git-svn-id: svn://10.0.0.236/trunk@133595 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:19:59 +00:00
darin%netscape.com
706ecd43c8 1) introduce ipcIClientQueryHandler
2) ipcService impl cleanups


git-svn-id: svn://10.0.0.236/trunk@133593 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:07:26 +00:00
relyea%netscape.com
7beeccdceb Adjust the time values so we have correct and consistant displays.
git-svn-id: svn://10.0.0.236/trunk@133592 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:01:57 +00:00
relyea%netscape.com
7b98e5b2cd Multi-access database race condition patches. These changes are already checked
into NSS 3.6.1.


git-svn-id: svn://10.0.0.236/trunk@133591 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:00:03 +00:00
brade%netscape.com
84dd8719ac add requires (bug 157117)
git-svn-id: svn://10.0.0.236/trunk@133588 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 21:20:47 +00:00
kirk.erickson%sun.com
b15a84738b Made awk_pkginfo-$(MACH) machine dependent for Sonja's release build.
git-svn-id: svn://10.0.0.236/trunk@133586 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:44:55 +00:00
brade%netscape.com
8bff2e0558 check origin, disable paste and some other commands until security review, cmd mgr api changes, remove forced focus (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133584 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:19:37 +00:00
brade%netscape.com
723bbf60a6 api changes to command manager (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133581 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:51 +00:00
brade%netscape.com
e6a01a6ad6 add private methods for targetting of commands (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133580 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:44 +00:00
brade%netscape.com
db4d65de88 change api to allow for commands to be directed to a particular window, all non-targeted commands must come from chrome (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133579 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:40 +00:00
brade%netscape.com
3660cf6b8a change api to allow for commands to be directed to a particular window (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133578 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:31 +00:00
darin%netscape.com
92d2e8dc68 1) XP_UNIX should use getenv("LOGNAME") instead of getpwuid(geteuid())
since the same UID may be shared by multiple logins (yes, really!).
2) fix bug in ipcmMessageClientInfo::NextTarget().


git-svn-id: svn://10.0.0.236/trunk@133577 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:11:05 +00:00
rogerl%netscape.com
0c618d88a5 signed/unsigned comparison.
git-svn-id: svn://10.0.0.236/trunk@133575 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:36:12 +00:00
relyea%netscape.com
b486fee8f0 Remove long dead code from util. triggered by bug 179038
git-svn-id: svn://10.0.0.236/trunk@133574 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:17:24 +00:00
myk%mozilla.org
8ce2b96942 Fix for bug 179360: puts the filters at the top of the request queue and eliminates that empty table that sometimes is at the top of the
queue.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@133573 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:02:03 +00:00
timeless%mozdev.org
7489cba074 Bug 173703 Closing a tab left to the active tab using middle-click displays a blank screen
patch by neil@parkwaycc.co.uk r=hj sr=jag


git-svn-id: svn://10.0.0.236/trunk@133571 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 15:53:57 +00:00
dbradley%netscape.com
cb70055f94 Bug 179026 - URL parameter containing non-ASCII characgter is not parsed correctly
r=dbradley, sr=dveditz, patch by darin


git-svn-id: svn://10.0.0.236/trunk@133570 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 14:16:34 +00:00
roc+%cs.cmu.edu
5a00c656b9 Backing out fix in bug 173072 (see bug 179459).
git-svn-id: svn://10.0.0.236/trunk@133565 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 13:59:48 +00:00
myk%mozilla.org
b0160244f2 Fix for bug 179334: updates the setter consistently. also fixes numerous other bugs in the RT code.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@133564 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 12:36:27 +00:00
bugreport%peshkin.net
e033f7ae5a Bug 179260 Unknown table 'map_assigned_to' in order clause at globals.pl line 242
r=bbatez
a=myk


git-svn-id: svn://10.0.0.236/trunk@133561 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 06:52:59 +00:00
darin%netscape.com
31ac92d024 initial version of CLIENT_INFO support
git-svn-id: svn://10.0.0.236/trunk@133559 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 06:32:27 +00:00
bryner%netscape.com
9f719b9d40 Fixing busted win32 nightly builds (bug 179435). r=cls.
git-svn-id: svn://10.0.0.236/trunk@133558 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 04:04:49 +00:00
blakeross%telocity.com
a1064d2f6b Fix the delay when arrow keying up and down in the themes/extensions listboxes (and other listboxes).
git-svn-id: svn://10.0.0.236/trunk@133557 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 02:25:46 +00:00
bbaetz%student.usyd.edu.au
25c631b65e Bug 179290 - login cookie email needs to be escaped
r=jake, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133556 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 02:23:26 +00:00
blakeross%telocity.com
0a56c58ae2 - Make arrow keys toggle focus between controls.
- Make quicksearch in history case insensitive.
- Port over some trunk fixes.


git-svn-id: svn://10.0.0.236/trunk@133555 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 01:51:50 +00:00
justdave%syndicomm.com
de6528c560 Fix for bug 179380: if "enablequips" is off, quips.cgi now presents a message that the quips are disabled instead of letting you view or add quips.
r=myk, a=me


git-svn-id: svn://10.0.0.236/trunk@133554 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 00:19:43 +00:00
rogerl%netscape.com
479fcdb866 Constuctor function support. Dump of classes.
git-svn-id: svn://10.0.0.236/trunk@133553 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 23:52:33 +00:00
zach%zachlipton.com
1effd6dc67 Fix for bug 179396 (add 007util.t in order to test Bugzilla::Util).
rx2=bbaetz, a=myk (on the condition that we check out the use of the
trilicense later)


git-svn-id: svn://10.0.0.236/trunk@133552 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 23:31:15 +00:00
myk%mozilla.org
1d66813b4a Fix for bug 178984: disables flag requestee field using JavaScript unless flag is set to "requested".
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133551 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:51:45 +00:00
gerv%gerv.net
e7b240ab5c Bug 170464 - OS/2 disappeared from 'Operating System' list. This allows selection of any OS, if the submitter is running it, on this form. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133550 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:48:55 +00:00
darin%netscape.com
27beec2e42 make daemon PlatformSendMsg async on XP_WIN.
git-svn-id: svn://10.0.0.236/trunk@133549 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:34:47 +00:00
paper%animecity.nu
2fa97b3335 Bug 166007 - Fix GIF2.cpp formatting. r=biesi sr=tor
git-svn-id: svn://10.0.0.236/trunk@133548 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:29:15 +00:00
chanial%noos.fr
4b5fe29c82 bug 92380: focus the personal toolbar so that commands executed from the context menu are correctly targeted. r=caillon, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133547 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:58:31 +00:00
chanial%noos.fr
c2dec44586 bug 162333: remove several js warnings in the profile manager. r=timeless, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133546 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:54:21 +00:00
despotdaemon%netscape.com
a37cefff0a Pseudo-automatic update of changes made by paper@animecity.nu.
git-svn-id: svn://10.0.0.236/trunk@133545 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:47:56 +00:00
pschwartau%netscape.com
7e4e0fd61d Initial add. Regression test by igor@icesoft.no for bug 31255, bug 179366.
git-svn-id: svn://10.0.0.236/trunk@133544 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 20:56:42 +00:00
pschwartau%netscape.com
ce621ae6cc Initial add. Regression test for bug 179068.
git-svn-id: svn://10.0.0.236/trunk@133543 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 20:31:36 +00:00
timeless%mozdev.org
6cdb67b898 Bug 178178 Sidebar name should not be hardcoded to "Bugzilla"
r=bbaetz a=justdave


git-svn-id: svn://10.0.0.236/trunk@133542 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 19:26:22 +00:00
roc+%cs.cmu.edu
631a6c40fc Bug 170011. Revert behavior of 'overflow:hidden' to only affect children for the current element is a containing block ancestor. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@133541 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:24:31 +00:00
roc+%cs.cmu.edu
a5a565fd75 Bug 173072. Fix XUL scrollbar regression by forcing a view update after reflow. r=bzbarsky,sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133540 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:21:05 +00:00
sspitzer%netscape.com
bc3890c1d7 fix my comment. thanks to greg onufer for catching my mistake.
git-svn-id: svn://10.0.0.236/trunk@133539 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:12:01 +00:00
ian%hixie.ch
96e303587d Move FileStrings and GenericOutputs to below the MySQL string datasource.
git-svn-id: svn://10.0.0.236/trunk@133538 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 17:00:44 +00:00
ian%hixie.ch
410ecd247a Stop requiring that PLIF applications know about every last PLIF service in order to use PLIF. This will require a one-time change to every PLIF app's registerServices method, but will make future changes a lot easier.
git-svn-id: svn://10.0.0.236/trunk@133537 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 16:39:09 +00:00
jfrancis%netscape.com
dd06260172 fix for 178264: nsRangeUpdater bugs and enhancements. precursor to 143338 landing. r=brade; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133536 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 15:11:08 +00:00
darin%netscape.com
64d542a2d7 adding win32 note
git-svn-id: svn://10.0.0.236/trunk@133535 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 10:06:53 +00:00
darin%netscape.com
cb53eeea4c ipcIService should be completely scriptable
git-svn-id: svn://10.0.0.236/trunk@133534 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 09:57:05 +00:00
gerv%gerv.net
7489ee473f Bug 173689 - Default comments search box type to "contains string". Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133533 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 09:01:08 +00:00
bbaetz%student.usyd.edu.au
1ad96216f8 Bug 179321 - cannot clear status whiteboard entirely
r=joel x2
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133532 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 08:33:45 +00:00
bugreport%peshkin.net
fa55f7fe9e Bug 179264 csv output for the buglist (see url inside) is invalid (too many "s)
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@133531 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 06:40:05 +00:00
darin%netscape.com
27020b681d IPC module methods should not depend on ipcMessage class.
git-svn-id: svn://10.0.0.236/trunk@133530 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 06:21:24 +00:00
myk%mozilla.org
b47d09134e Fix for bug 179329: filters HTML out of quips on "show all quips" page
git-svn-id: svn://10.0.0.236/trunk@133529 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 05:13:28 +00:00
blakeross%telocity.com
0d1e224350 Move where we record the download start time.
git-svn-id: svn://10.0.0.236/trunk@133528 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:59:09 +00:00
blakeross%telocity.com
4d72fb518c add source and target to download properties dialog.
git-svn-id: svn://10.0.0.236/trunk@133527 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:55:06 +00:00
blakeross%telocity.com
0bf2506b97 Remove unused mTimer.
git-svn-id: svn://10.0.0.236/trunk@133526 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:09:41 +00:00
blakeross%telocity.com
6c172d45d9 Fix 172811 - current downloads not updated when path contains non-ASCII character.
git-svn-id: svn://10.0.0.236/trunk@133525 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:06:45 +00:00
zach%zachlipton.com
fa3d7f820c And turn this into a stub for runtests.pl.
No review needed on tests (but review will be needed for all test changes
after this one)


git-svn-id: svn://10.0.0.236/trunk@133524 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:50:31 +00:00
zach%zachlipton.com
db72451923 Adding runtests.pl for bug 143155. runtests.sh will remain for a little
while in order to allow tinderboxen to transition and any documents to be
updated.

Patch by Norton <norton@w5ac.tamu.edu>, r1=jouni, r2=gerv


git-svn-id: svn://10.0.0.236/trunk@133523 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:31:05 +00:00
bbaetz%student.usyd.edu.au
9d2eab8756 Bug 179238 - searching by commenter is ignored if you do 'exact' or
'contains'
r, a=myk


git-svn-id: svn://10.0.0.236/trunk@133522 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:05:23 +00:00
blakeross%telocity.com
1a1e6bf016 Remove some unused prefs.
git-svn-id: svn://10.0.0.236/trunk@133521 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:52:52 +00:00
bbaetz%student.usyd.edu.au
18684acf40 Bug 176599, Improve performance of duplicates.cgi
original patch iteration by gerv, change to use Bugzilla:Search by me
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133520 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:50:39 +00:00
asa%mozilla.org
263c16f4e7 new bookmarks defaults
git-svn-id: svn://10.0.0.236/trunk@133519 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:39:19 +00:00
blakeross%telocity.com
93a8bfa77d fix typo.
git-svn-id: svn://10.0.0.236/trunk@133517 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 01:31:30 +00:00
blakeross%telocity.com
8083f459a2 Add the beginnings of a download properties dialog.
git-svn-id: svn://10.0.0.236/trunk@133516 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 01:21:33 +00:00
mkaply%us.ibm.com
2a315191f0 Use XP_WIN here - XP_PC means win and Os/2, so this is unclear. Note we prefer XP_PC is not used at all
git-svn-id: svn://10.0.0.236/trunk@133515 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 00:48:10 +00:00
jake%bugzilla.org
f882285e40 Bug 179242 Part 2 - Handle both conditions for the if block
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@133514 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:37:07 +00:00
rogerl%netscape.com
d134850835 Added class dumper.
git-svn-id: svn://10.0.0.236/trunk@133513 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:26:06 +00:00
bbaetz%student.usyd.edu.au
6e3588938e Bug 178383 - product/component query conditions appear twice
r=myk, justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133512 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:17:15 +00:00
cbiesinger%web.de
aac3a6ac3a 108271 r=paper sr=tor
support all bitfields in the bmp decoder


git-svn-id: svn://10.0.0.236/trunk@133511 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:06:25 +00:00
edburns%acm.org
4bd8bf317a Checkpoint. Generates Webclient jar.
git-svn-id: svn://10.0.0.236/trunk@133510 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:03:06 +00:00
bbaetz%student.usyd.edu.au
134d1a6ccc Bug 179193 - anyexact should use IN, not OR
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133509 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:02:25 +00:00
rogerl%netscape.com
4c49733aff Fixed missing pop after var initialization. Added instruction trace.
git-svn-id: svn://10.0.0.236/trunk@133508 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:53:51 +00:00
bbaetz%student.usyd.edu.au
27f04d79cc Bug 179184 - regetlastlist returns all bugs
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133507 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:18:47 +00:00
bbaetz%student.usyd.edu.au
6b66251bf4 Bug 179203 - "Preset Queries" text does not appear in footer if last named query is not in footer
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133506 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:11:30 +00:00
ccarlen%netscape.com
55388286d8 Fixing tinderbox orangeness, OS2 bustage
git-svn-id: svn://10.0.0.236/trunk@133505 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:05:09 +00:00
edburns%acm.org
c5cf4d6a65 Make it work on win32.
git-svn-id: svn://10.0.0.236/trunk@133504 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 21:10:09 +00:00
ccarlen%netscape.com
bac3fcaf96 Bug 177321 - factor nsIDirectoryServiceProvider impl out of nsProfile.cpp. Now built as a static lib with which apps can link if they only use a single profile r=dougt/sr=darin
git-svn-id: svn://10.0.0.236/trunk@133503 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:38:43 +00:00
aaronl%netscape.com
583879228f This is the sound for bug 176602, readding as binary file.
git-svn-id: svn://10.0.0.236/trunk@133502 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:25:59 +00:00
aaronl%netscape.com
3b499af38b Removing sound so I can re add it with -kb as binary file -- oops
git-svn-id: svn://10.0.0.236/trunk@133501 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:25:22 +00:00
aaronl%netscape.com
59604b559d Bug 176602. Make typeaheadfind beep less annoying, and implement boolean pref accessibility.typeaheadfind.enablesound. Pref is turned off by default in Linux for now, sound needs testing and work there (see bug 179138 and bug 110385). r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133500 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:21:20 +00:00
jake%bugzilla.org
7bb5a14045 Bug 179188 - The new flag system wasn't indicating which attachment a flag was changed on. This patch inserts the attachment ID any time it exists in the activity log (to match what show_activity does).
r=myk
a=myk


git-svn-id: svn://10.0.0.236/trunk@133499 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:21:03 +00:00
caillon%returnzero.com
52b8972406 Update "how to add a style property" to reflect reality: fix the CSS_PROP macro description, add info on nsIDOMCSS2Properties.idl, linkify the bullets in "Implementation" to jump to
anchors within the page.
This is a doc only change and not part of any build.


git-svn-id: svn://10.0.0.236/trunk@133498 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:08:23 +00:00
bzbarsky%mit.edu
54f34022d8 Allow list labels to be negative. Bug 56088, r=caillon, smontagu, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@133497 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:33:37 +00:00
bugreport%peshkin.net
c9fcb6f045 Bug 179225 Missing space. "Reassign bug to ownerand QA contact of selected component "
2xr=jake
a=myk


git-svn-id: svn://10.0.0.236/trunk@133496 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:31:27 +00:00
caillon%returnzero.com
69643e085d ** Venkman only **
Bug 154132, Allow copy from call stack.
r=rginda


git-svn-id: svn://10.0.0.236/trunk@133495 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:20:56 +00:00
bugreport%peshkin.net
c43188ce95 Bug 179242 Searching for comment contains string + email gives "Not unique table/alias: 'longdescs_' at globals.pl line 242"
r=jake
a=myk


git-svn-id: svn://10.0.0.236/trunk@133494 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:09:25 +00:00
mkaply%us.ibm.com
25693d4f7f Forgot header
git-svn-id: svn://10.0.0.236/trunk@133493 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:03:17 +00:00
bzbarsky%mit.edu
517741de81 Fix assertion from out-of-bounds array access. Bug 175440, r=timeless, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133492 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 17:43:33 +00:00
bugreport%peshkin.net
0e1c93c220 Bug 179207 Blessing doesn't work right
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@133491 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 17:23:55 +00:00
sspitzer%netscape.com
1ba50cdc45 fix some string code, per jag. some minor code cleanup.
git-svn-id: svn://10.0.0.236/trunk@133490 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 16:54:52 +00:00
blythe%netscape.com
fa184dd69a Not part of build.
Fix compile time error.


git-svn-id: svn://10.0.0.236/trunk@133489 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 16:42:50 +00:00
mkaply%us.ibm.com
c6f1fd14b8 #178309
r=jkobal, sr=blizzard
Os/2 only - don't allow recursive calls to WinSetFocus - bad things happen.


git-svn-id: svn://10.0.0.236/trunk@133488 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:31:23 +00:00
mkaply%us.ibm.com
d72e4387ba #178961
r=me, sr=jag
Due to a bug in OS/2 compiler handling of temporaries in a conditional, we need to split this out.
Need this ASAP, Os/2 mail is DOA
Incidentally, I'll point out that this code is wrong anyway because different countries write kb in different ways (kb, KB, Kb)


git-svn-id: svn://10.0.0.236/trunk@133487 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:28:46 +00:00
ian%hixie.ch
bf08137422 More debugging information, to make it easier to debug multiple PLIF-based projects that are outputting to the same error log.
git-svn-id: svn://10.0.0.236/trunk@133486 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:26:41 +00:00
mkaply%us.ibm.com
ae1e0683c1 #178961
r=r=naving, sr=jag
Need a cast here - no telling what the compiler will due to the -1 on the compare


git-svn-id: svn://10.0.0.236/trunk@133485 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:26:04 +00:00
mkaply%us.ibm.com
9db8dc5517 Proper fix for 104371 - just comment out the space case, don't remove it
git-svn-id: svn://10.0.0.236/trunk@133484 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:22:29 +00:00
blakeross%telocity.com
cfd2cbf39b Fix bug that finished downloads disappear after restarting.
git-svn-id: svn://10.0.0.236/trunk@133483 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:07:26 +00:00
blakeross%telocity.com
1d981b0d4a remove unused member.
git-svn-id: svn://10.0.0.236/trunk@133482 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:05:27 +00:00
blakeross%telocity.com
d53c871101 Remove an unused function.
git-svn-id: svn://10.0.0.236/trunk@133481 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:04:41 +00:00
blakeross%telocity.com
9af4a753e3 Download fixes.
git-svn-id: svn://10.0.0.236/trunk@133480 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 14:56:32 +00:00
blakeross%telocity.com
823b97ea4c Fix some bugs where the downloads panel displays -1.
git-svn-id: svn://10.0.0.236/trunk@133479 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 14:04:37 +00:00
myk%mozilla.org
988c51f59c Fix for bug 179205: Makes flag options be correct in all situations.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133478 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:57:28 +00:00
blakeross%telocity.com
64e3e33d6b Download dir pref.
git-svn-id: svn://10.0.0.236/trunk@133477 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:53:22 +00:00
myk%mozilla.org
2f28ece750 Fix for bug 179177: avoid database errors when inserting bug by locking all tables i need to access
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133476 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:50:08 +00:00
blakeross%telocity.com
76910c8a28 Comment out something for now.
git-svn-id: svn://10.0.0.236/trunk@133475 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:17:27 +00:00
blakeross%telocity.com
4f5e0f1ea3 Fix crash trying to save without a default download dir
git-svn-id: svn://10.0.0.236/trunk@133474 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:17:10 +00:00
blakeross%telocity.com
421b8a6221 Fix broken save page as... complete.
git-svn-id: svn://10.0.0.236/trunk@133473 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:15:26 +00:00
bbaetz%student.usyd.edu.au
7cf477c81a Bug 178189 - when filing a new bug, the generated bugmail doesn't include
product/component
r=justdave, myk
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133472 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 12:20:18 +00:00
bbaetz%student.usyd.edu.au
f4e0651a0c Bug 179174 - renable $| = 1
r=justdave x2
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133471 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 11:55:27 +00:00
seawood%netscape.com
bec7157f3e Remove $(CONFIG) from real_install target. It was a typo anyway.
git-svn-id: svn://10.0.0.236/trunk@133467 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 09:23:31 +00:00
sspitzer%netscape.com
ffc0ed36c6 add todo comment for bienvenu.
git-svn-id: svn://10.0.0.236/trunk@133466 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:58:55 +00:00
sspitzer%netscape.com
8b0171b4b0 fix my comments.
git-svn-id: svn://10.0.0.236/trunk@133465 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:55:03 +00:00
sspitzer%netscape.com
63a1061bb2 fix the behaviour and enabling of the "Get Msgs" button.
1) make it always enabled (bug #89404, bug #111102)
2) if news server selected, it updates the unread counts on that server
3) if "Local Folders" selected, it does "get msgs" for default account

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133464 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:52:22 +00:00
leaf%mozilla.org
1d4e7c9315 Automated update
git-svn-id: svn://10.0.0.236/trunk@133463 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:39:06 +00:00
seawood%netscape.com
e23d846c0c Define MKCSHLIB properly for win32
git-svn-id: svn://10.0.0.236/trunk@133462 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:38:44 +00:00
seawood%netscape.com
c3d4380b65 JS is a C only library and should be linked as such.
git-svn-id: svn://10.0.0.236/trunk@133461 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:18:25 +00:00
sspitzer%netscape.com
f071444508 fix js warning.
git-svn-id: svn://10.0.0.236/trunk@133460 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 06:49:34 +00:00
curt%netscape.com
93c86741e3 Changing version string.
(Bug #178716, r=chak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133459 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 05:16:52 +00:00
jkeiser%netscape.com
87616393a6 Fix virtual destructor warning, bug 165647, r=dmose, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133458 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 05:11:26 +00:00
jkeiser%netscape.com
57420fbfec Fix Mac build bustage.
git-svn-id: svn://10.0.0.236/trunk@133456 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 03:42:42 +00:00
leaf%mozilla.org
400772a526 Automated update
git-svn-id: svn://10.0.0.236/trunk@133455 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:24:11 +00:00
seawood%netscape.com
9f85f1518f Tighten (add?) tool version checks for win32 builds.
Allow MIDL to be specified from mozconfig or env since various MS SDKs contain an unsupported version of midl and they insist upon adding their SDK dirs to the beginning of the PATH (bug #178392)
Bug #164646 r=bryner


git-svn-id: svn://10.0.0.236/trunk@133454 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:16:55 +00:00
myk%mozilla.org
2ffb066148 Fixing syntax error build bustage.
git-svn-id: svn://10.0.0.236/trunk@133453 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:05:22 +00:00
justdave%syndicomm.com
bde78c6a04 Bumping version number for development snapshot tarball
git-svn-id: svn://10.0.0.236/trunk@133452 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:59:22 +00:00
myk%mozilla.org
af7b895494 Fix for bug 171505: shows disabled flags in the UI
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133451 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:58:51 +00:00
bbaetz%student.usyd.edu.au
0945eecdec Bug 114696 - permission checking in queries not optimal
Patch by joel, dkl + me
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133450 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:58:07 +00:00
jpierre%netscape.com
31c66bd1dc Assert if the QuickDER decoder does not consume all the input
git-svn-id: svn://10.0.0.236/trunk@133449 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:56:01 +00:00
bryner%netscape.com
bf0cf5ce00 Fixing mac build bustage.
git-svn-id: svn://10.0.0.236/trunk@133448 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:49:31 +00:00
alecf%netscape.com
1c16ef7f73 argh, back out my last checkin because Ts went UP not down!
git-svn-id: svn://10.0.0.236/trunk@133447 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:31:32 +00:00
leaf%mozilla.org
90655a8454 update version strings for bug 178863
git-svn-id: svn://10.0.0.236/trunk@133446 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:31:16 +00:00
myk%mozilla.org
e458425ecb Fix for bug 178841: removes full paths from filenames in attachments table and prevents them from appearing again
r=gerv,bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133445 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:23:07 +00:00
blakeross%telocity.com
b11bfece87 Removing unnecessary checks.
git-svn-id: svn://10.0.0.236/trunk@133444 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:21:19 +00:00
jkeiser%netscape.com
4f05bade61 Fix copyright date. Bug 133354.
git-svn-id: svn://10.0.0.236/trunk@133443 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:03:36 +00:00
morse%netscape.com
8ea9b5f5e6 bug 174189, fix flawfinder warning, r=harishd, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@133440 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:45:53 +00:00
bryner%netscape.com
b345c67a0c Add a second pass of event processing for system events, using DOM3 event group functionality. Bug 124990. Patch by joki, r=saari and bryner, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@133439 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:25:25 +00:00
akkana%netscape.com
d44d25f41e 76461: Enable rewrap in html mail compose. r=ducarroz sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133438 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:22:32 +00:00
rpotts%netscape.com
3d0c95b224 bug #174404 (sr=jst). forgot to check this file in with the rest of the patch...
git-svn-id: svn://10.0.0.236/trunk@133437 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:15:42 +00:00
gerv%gerv.net
3beb5eaa5a Bug 92253 - Boolean chart makes very wide web pages from query.cgi. Patch by slee@wilcoxassoc.com; r=gerv, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133436 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:05:50 +00:00
nhotta%netscape.com
a6be66a96b Moved FN/LN definitions to .dtd to allow localizer to change the order.
bug 160544, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@133435 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:47:38 +00:00
rogerl%netscape.com
08b7b73d98 nuttin honey.
git-svn-id: svn://10.0.0.236/trunk@133434 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:46:32 +00:00
rdayal%netscape.com
461f986b4e Bug #178989 sometimes records are not added to Palm AB during Palm Sync
r=ssu, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133433 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:45:00 +00:00
darin%netscape.com
e4463d2578 fix memory leaks
git-svn-id: svn://10.0.0.236/trunk@133431 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:44:31 +00:00
bienvenu%netscape.com
f05f25584d fix crash undoing imap delete r=cavin, sr=sspitzer, 177835
git-svn-id: svn://10.0.0.236/trunk@133430 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:32:40 +00:00
alecf%netscape.com
aac40e7aa5 fix for bug 177401 - use nsAString& classes instead of wstring in nsIBinaryInputStream, to speed up fastload startup
sr=darin, r=dougt


git-svn-id: svn://10.0.0.236/trunk@133429 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:30:53 +00:00
gerv%gerv.net
4108c79fd9 Bug 164003 - Button "Add another boolean chart" appears twice after clicking "And". Patch by gerv; r=myk, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133428 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:15:14 +00:00
asasaki%netscape.com
ee9eece3a5 bugscape 17934, which has code for unhardcoding versions in both trees
(bugzilla reference 169074).  r=cls, no sr= needed for build changes.


git-svn-id: svn://10.0.0.236/trunk@133427 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:04:01 +00:00
cltbld%netscape.com
4f1981086b Updated user agent string to 1.3a for trunk. Bugzilla 178860 r=lpham/sr=granrose. ycalonje checking in as cltbld
git-svn-id: svn://10.0.0.236/trunk@133426 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:00:40 +00:00
cltbld%netscape.com
a453f0b97c Updated mac getinfo strings to 1.3a for trunk. Bugzilla 178862, r=lpham, sr=kysmith. ycalonje checking in as cltbld.
git-svn-id: svn://10.0.0.236/trunk@133425 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:51:41 +00:00
yokoyama%netscape.com
926b7e0959 Bug 104934 Convert Mozilla to Unicode app
Turning MOZ_UNICODE flag by default.
Impact only in Windows platforms.
r=kmcclusk@netscape.com
sr=kin@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133424 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:47:01 +00:00
cltbld%netscape.com
55bf20206e updated mac getinfo strings to 1.3a for the trunk. bugzilla 178862 r=lpham, sr=kysmith. ycalonje checking in as cltbld.
git-svn-id: svn://10.0.0.236/trunk@133423 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:42:29 +00:00
pschwartau%netscape.com
c7d97152de A more accurate inRhino() function. The previous one failed to distinguish Rhino from LiveConnect.
git-svn-id: svn://10.0.0.236/trunk@133422 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:42:25 +00:00
varga%netscape.com
df0813091b Fix for bug 145969. Can't persist open state of content view trees
r=varga, sr=jag, patch by Neil


git-svn-id: svn://10.0.0.236/trunk@133421 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:34:42 +00:00
rjc%netscape.com
05cc7a666e Fix bug # 178368: reduce search graph footprint re: HTML chunks. r=sgehani sr=jag
git-svn-id: svn://10.0.0.236/trunk@133420 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:34:02 +00:00
pschwartau%netscape.com
b7ba32bae5 New engine command for JS2: was dikdik, now epimetheus.
git-svn-id: svn://10.0.0.236/trunk@133417 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:56:41 +00:00
cbiesinger%web.de
bb8a256059 missed a file. still r=pavlov sr=tor
git-svn-id: svn://10.0.0.236/trunk@133416 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:54:43 +00:00
cbiesinger%web.de
8a2b7c78b0 removing antiquated gif decoder code and similar stuff. r=pavlov sr=tor, and this is not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133415 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:53:18 +00:00
despotdaemon%netscape.com
fd9af5c81e Pseudo-automatic update of changes made by paper@animecity.nu.
git-svn-id: svn://10.0.0.236/trunk@133413 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:54:51 +00:00
sspitzer%netscape.com
8438092bad moving to 8.3. it's too easy to goof this up otherwise.
git-svn-id: svn://10.0.0.236/trunk@133412 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:42:21 +00:00
sspitzer%netscape.com
481208b451 moving to 8.3. it's too easy to goof this up otherwise.
git-svn-id: svn://10.0.0.236/trunk@133411 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:41:45 +00:00
rogerl%netscape.com
c07193ba31 Added '-t' option for controlling parse tree dump.
git-svn-id: svn://10.0.0.236/trunk@133409 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 19:50:16 +00:00
relyea%netscape.com
9ea8d9acc0 Bug 176667: kaie authored the patch, ian/relyea reviewed it.
git-svn-id: svn://10.0.0.236/trunk@133408 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 19:10:54 +00:00
despotdaemon%netscape.com
97ca37e5b4 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133406 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 18:26:00 +00:00
mkaply%us.ibm.com
39717148b9 Os/2 needs 8.3 names
git-svn-id: svn://10.0.0.236/trunk@133403 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 15:24:29 +00:00
ccarlen%netscape.com
152baeb1b3 Bug 177059 Mach-0 nsLocalFile::GetFileSize sometimes fails for directories. Patch by sfraser. r=ccarlen/sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133401 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 15:03:06 +00:00
ccarlen%netscape.com
3bc51b679e Bug 170611 - AlertCheck dialog has a cancel button and it shouldn't. r=pink/rs=sfraser.
git-svn-id: svn://10.0.0.236/trunk@133400 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 14:52:52 +00:00
axel%pike.org
1070a8d232 Not part of build. Make buster load html if unknown decoder likes it. Save numbers with results. Disable most stuff for loading reference thru docshell.
git-svn-id: svn://10.0.0.236/trunk@133398 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 13:40:07 +00:00
locka%iol.ie
c56031a91f Removing unused file
git-svn-id: svn://10.0.0.236/trunk@133397 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 13:20:49 +00:00
igor%mir2.org
00ce524c60 Cosmetics: refactor decompile without changing its functionality so a possible future patch to allow literal strings greater then 64K would be less intrusive.
git-svn-id: svn://10.0.0.236/trunk@133396 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 12:08:52 +00:00
timeless%mozdev.org
cb71555d70 fixing comment about PRUnichar* ToNewUnicode
rs=brendan


git-svn-id: svn://10.0.0.236/trunk@133395 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 11:43:58 +00:00
bzbarsky%mit.edu
f2f1c77c6f Show the "real" dimensions of images too. Bug 122125, patch by
db48x@yahoo.com (Daniel Brooks), r=jag, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133394 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:55:41 +00:00
bzbarsky%mit.edu
750265183b fix leak of charset string. bug 176989, patch by keeda@hotpop.com,
r=peterv, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133393 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:52:06 +00:00
bernd.mielke%snafu.de
015107030e fix OS2 bustage sorry
git-svn-id: svn://10.0.0.236/trunk@133392 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:42:48 +00:00
glazman%netscape.com
49cd5a1fff show tooltip for href (links), src (images) and name (named anchors) in Composer; b=47519, fix by glazman@netscape.com and neil@parkwaycc.co.uk, r=brade, r=glazman for kin's changes, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133391 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 09:14:00 +00:00
sspitzer%netscape.com
bdedf90d5d implement the | operator for mail 3 pane quick search.
bug #177034
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133390 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 09:09:27 +00:00
glazman%netscape.com
aafb9a3250 inline styles were not merged after a SetInlineProperty() call; b=178667, r=jfrancis, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133389 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:54:42 +00:00
axel%pike.org
ea0d3163b2 bug 178461, XSLTProcessor.reset(), r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@133388 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:50:34 +00:00
gerv%gerv.net
154ad8416c Bug 71794 - processmail shouldn't bother checking dependencies unless state changes. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@133387 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:04:58 +00:00
darin%netscape.com
3ef1d1664e 1) make logging compilation controlled by IPC_LOGGING #define
2) make testmodule work when compiling optimized
3) stop loading ipc service at XPCOM startup


git-svn-id: svn://10.0.0.236/trunk@133386 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 07:17:50 +00:00
bryner%netscape.com
9a8c4c8428 Stop building and packaging XBL form controls, since they aren't being actively worked on and aren't slated to be turned on anytime soon (bug 172288). r=jkeiser, sr=blake.
git-svn-id: svn://10.0.0.236/trunk@133385 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 06:09:17 +00:00
bernd.mielke%snafu.de
63c27e6db9 Implement for table captions caption-side: left and right, also <caption align="left"> and right, further vertical-align:top, middle and bottom for table captions bug 3166 r=karnaze sr=kin
git-svn-id: svn://10.0.0.236/trunk@133384 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:29:34 +00:00
blakeross%telocity.com
807a6c355e Default to disablehistory.
git-svn-id: svn://10.0.0.236/trunk@133383 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:10:08 +00:00
mkaply%us.ibm.com
36a02da65f OS/2 bustage
1. PR_CALLBACK
2. PLEASE don't create more implementations using min() and max()
name them something different.


git-svn-id: svn://10.0.0.236/trunk@133382 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:05:28 +00:00
blakeross%telocity.com
99d0b051a8 Oops.
git-svn-id: svn://10.0.0.236/trunk@133381 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:01:03 +00:00
blakeross%telocity.com
6ada4c020c One more small perf opt.
git-svn-id: svn://10.0.0.236/trunk@133380 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:58:40 +00:00
blakeross%telocity.com
2a7b20c4e9 same thing.
git-svn-id: svn://10.0.0.236/trunk@133379 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:56:15 +00:00
blakeross%telocity.com
9311f9a9a0 same thing.
git-svn-id: svn://10.0.0.236/trunk@133378 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:52:37 +00:00
blakeross%telocity.com
844e7d5920 same thing.
git-svn-id: svn://10.0.0.236/trunk@133377 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:51:05 +00:00
blakeross%telocity.com
b1314f687a Try to speed up new window and startup performance for people who have blank homepages.
git-svn-id: svn://10.0.0.236/trunk@133376 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:50:05 +00:00
darin%netscape.com
de9e45259f make daemon automatically shutdown.
git-svn-id: svn://10.0.0.236/trunk@133375 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:48:09 +00:00
dougt%netscape.com
68814c1e49 175932. UMR: PostTimerEvent() does not check return value from GetPRThread(). Thanks to Andrew Schultz for pointing this out. r=pavlov, sr=darin. Also includes 175440 - using nsCOMArray in nsThreadPool, patch by bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@133374 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:46:58 +00:00
dougt%netscape.com
25075002e6 102812. enable file html directory listing mode r=bbaetz sr=darin.
git-svn-id: svn://10.0.0.236/trunk@133373 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:46:44 +00:00
timeless%mozdev.org
e239196b46 Bug 178972 trivial code changes to nsXULElement.cpp
r=brendan sr=kin


git-svn-id: svn://10.0.0.236/trunk@133372 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:28:04 +00:00
myk%mozilla.org
9208a1748c Fix for bug 171480: make output for non requestee-specific requests look better in the request queue.
r=joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133371 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:21:10 +00:00
mkaply%us.ibm.com
556fd86cd7 OS/2 DLL names need to be 8.3
git-svn-id: svn://10.0.0.236/trunk@133369 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:08:31 +00:00
dmose%netscape.com
7585e3bfb6 packager changes for junkmail filtering code; part of bug 169638. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133368 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:38:37 +00:00
sspitzer%netscape.com
606136433d the right fix for the .so and .dll is to staticly link them in.
but that's another issue.  r=dmose


git-svn-id: svn://10.0.0.236/trunk@133367 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:36:58 +00:00
mkaply%us.ibm.com
8a6b21249e Need to change true/false to PR_TRUE/PR_FALSE as well
git-svn-id: svn://10.0.0.236/trunk@133366 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:27:12 +00:00
dmose%netscape.com
6c9f28fd1f Fix OS/2 tinderbox build bustage by changing instances of bool to PRBool
git-svn-id: svn://10.0.0.236/trunk@133365 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:13:07 +00:00
nicolson%netscape.com
24f684096b default doesProduceOutput to true for compatibility.
git-svn-id: svn://10.0.0.236/trunk@133364 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:24:20 +00:00
bolian.yin%sun.com
c358d1affb Bug 156424, PgUp and PgDn in numeric keyboard don't work.
r=Roland.Mainz@informatik.med.uni-giessen.de, sr=bryner.


git-svn-id: svn://10.0.0.236/trunk@133363 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:23:23 +00:00
bryner%netscape.com
11f63cc6f7 Fixing comet orange; need to null check style->engine or we will crash if no theme engine is being used.
git-svn-id: svn://10.0.0.236/trunk@133362 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:21:49 +00:00
bryner%netscape.com
f5752168f3 oops! fixing my last checkin to actually set the widget types as disabled
git-svn-id: svn://10.0.0.236/trunk@133360 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:06:38 +00:00
myk%mozilla.org
3b7adf5ab7 Fix for bug 178776: Eliminates warning in duplicates.cgi.
git-svn-id: svn://10.0.0.236/trunk@133359 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:05:20 +00:00
sspitzer%netscape.com
f969cc0d99 fix my comments. we don't need to hash the file name, it's already been hashed
before we get here.  r/sr=no one


git-svn-id: svn://10.0.0.236/trunk@133358 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:02:56 +00:00
blakeross%telocity.com
22492a9d1d Update UA.
git-svn-id: svn://10.0.0.236/trunk@133357 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:46:33 +00:00
blakeross%telocity.com
fcc5c1a3ad Remove duplicate pref.
git-svn-id: svn://10.0.0.236/trunk@133356 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:45:04 +00:00
blakeross%telocity.com
defa36cafd Remove old pref.
git-svn-id: svn://10.0.0.236/trunk@133355 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:43:03 +00:00
bryner%netscape.com
c46a5dba0c Disable GTK native theme support if we're using a theme engine that's known to crash, such as the Xenophilia engine (bug 175306). r=blizzard, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@133354 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:41:42 +00:00
myk%mozilla.org
dae89726c5 Fix for bug 172518: makes the request tracker use the generic user matching code
r=not_erik,joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133353 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:35:46 +00:00
blakeross%telocity.com
84631ac395 Fix a similar bug whereby bookmark keywords that become full urls get added to urlbar history as keywords.
git-svn-id: svn://10.0.0.236/trunk@133352 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:24:37 +00:00
blakeross%telocity.com
5524e69ed1 Fix bug that hitting ctrl+enter/shift+enter/ctrl+shift+enter to prepend/append to the urlbar url doesn't add that new url to the urlbar history.
git-svn-id: svn://10.0.0.236/trunk@133351 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:18:39 +00:00
blakeross%telocity.com
46dd489b6b Minor tweak.
git-svn-id: svn://10.0.0.236/trunk@133349 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:09:32 +00:00
blakeross%telocity.com
8c82701b3d Remove downloads prompt pref.
git-svn-id: svn://10.0.0.236/trunk@133348 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:01:07 +00:00
nicolson%netscape.com
abe829a4ba Add isExtensionPresent and getExtension.
git-svn-id: svn://10.0.0.236/trunk@133347 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:40:26 +00:00
blakeross%telocity.com
e5d91e4a28 Second attempt at black menu submenu arrow.
git-svn-id: svn://10.0.0.236/trunk@133346 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:39:40 +00:00
bzbarsky%mit.edu
d96d71689f Remove more dead code. bug 102437, r=heikki, sr=rbs
git-svn-id: svn://10.0.0.236/trunk@133345 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:28:24 +00:00
bugreport%peshkin.net
711d966f8e Bug 178772 doeditparams.cgi failed with malformed headers
r= justdave
a= justdave


git-svn-id: svn://10.0.0.236/trunk@133343 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:08:08 +00:00
darin%netscape.com
08ef942334 fixup unix security checks
git-svn-id: svn://10.0.0.236/trunk@133341 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:47:33 +00:00
rogerl%netscape.com
8318629a33 Fixed bad delete of string ptrs in libraries.
git-svn-id: svn://10.0.0.236/trunk@133340 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:46:02 +00:00
myk%mozilla.org
43076e4c08 Fix for bug 178800: fixes taint failure in graphical charts with Perl 5.6.0
r=gerv
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133339 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:28:40 +00:00
locka%iol.ie
0302fed96a Rewrite PropertyList to remove STL, fix various issues in ControlSite and add control download & install. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133337 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:06:08 +00:00
locka%iol.ie
411a1934b2 Remove WMP test harness. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133336 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:04:27 +00:00
locka%iol.ie
eb1cf14324 Update to plugin to support DOM callbacks, control download & install, remove WMP test harness. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133335 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:03:52 +00:00
mkaply%us.ibm.com
150ae82091 Need PR_FALSE here - OS/2 bustage
git-svn-id: svn://10.0.0.236/trunk@133334 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:03:05 +00:00
pschwartau%netscape.com
ac243ee0ec Tweaking sort function.
git-svn-id: svn://10.0.0.236/trunk@133333 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:02:06 +00:00
pschwartau%netscape.com
f901a44784 Reinstituting check on |arr instanceof Array && arr.length === 0| from version 1.1 of test; this is necessary.
git-svn-id: svn://10.0.0.236/trunk@133332 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:57:40 +00:00
glen.beasley%sun.com
0cbae08b88 removes sun provider and set passwords
git-svn-id: svn://10.0.0.236/trunk@133331 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:49:26 +00:00
timeless%mozdev.org
4c2f725ef8 Bug 177772 crash [@JS_GetPrivate] serializing script with syntax error
r=brendan sr=ben


git-svn-id: svn://10.0.0.236/trunk@133330 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:46:38 +00:00
pschwartau%netscape.com
bab0976795 Adding comments -
git-svn-id: svn://10.0.0.236/trunk@133329 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:43:52 +00:00
peterv%netscape.com
fe2743814b Turn on basic junk-mail detection functionality in mail on Mac. r=dmose.
git-svn-id: svn://10.0.0.236/trunk@133327 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:30:16 +00:00
bienvenu%netscape.com
cff6bd9b40 fix mark thread watched/ignored news filter actions r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133326 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:16:25 +00:00
sspitzer%netscape.com
49952737df packaging changes for mailviews
git-svn-id: svn://10.0.0.236/trunk@133324 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:48:35 +00:00
tara%tequilarista.org
e54bab738b Fix for bug 44644
git-svn-id: svn://10.0.0.236/trunk@133323 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:39:57 +00:00
rogerl%netscape.com
7d2e0cc973 Fixed instance member resolution & superclass slot layout.
git-svn-id: svn://10.0.0.236/trunk@133322 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:29:41 +00:00
dmose%netscape.com
aa2af82d45 Removing old, unused files (not part of build)
git-svn-id: svn://10.0.0.236/trunk@133321 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:29:26 +00:00
sspitzer%netscape.com
408037bc2d fix for #178934. junk classification of local mail (and incoming pop mail)
was getting marked as read.  r=dmose, sr=bienvenu.  thanks to granrose for finding the bug.


git-svn-id: svn://10.0.0.236/trunk@133320 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:26:38 +00:00
bienvenu%netscape.com
03a512dbff right align folder size, r/sr=sspitzer 178817
git-svn-id: svn://10.0.0.236/trunk@133319 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:24:03 +00:00
alecf%netscape.com
b548b7bdf9 prep for fixing bug 176559 - use getService rather than createInstance so we stop creating element factories
sr=peterv/jst, r=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133318 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:23:09 +00:00
dmose%netscape.com
3db27f265c Fix incorrect filename used by spam-detection code (bug 169638); thanks to Pratik <psolanki@netscape.com> for catching this. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133316 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:06:13 +00:00
blakeross%telocity.com
9cb69281c6 Keep up with the trunk.
git-svn-id: svn://10.0.0.236/trunk@133315 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:05:16 +00:00
tara%tequilarista.org
f2fb69bde3 Fix for bug 45579, making it so the editparams.cgi page is more secure
git-svn-id: svn://10.0.0.236/trunk@133314 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:46:22 +00:00
dmose%netscape.com
0d6c826fa2 Turn on basic junk-mail detection functionality in mail. Parts (such as moving to other folders) are still disabled as there is work to do there yet. Bug 169638; r=bienvenu; sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133313 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:37:55 +00:00
rjesup%wgate.com
47169439c2 Bug 149764: changes to quit-application observer topic. r=danm, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133312 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:25:45 +00:00
sfraser%netscape.com
ee87fd1e16 Fix debug target to output shared lib, not static lib; fixes autoreg crash in debug builds. r=brade/sspitzer.
git-svn-id: svn://10.0.0.236/trunk@133311 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:02:59 +00:00
blizzard%redhat.com
6b928a4268 Bug #176299. Add gtk2-specific libraries to the package manifest. r=leaf
git-svn-id: svn://10.0.0.236/trunk@133310 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:45:34 +00:00
pschwartau%netscape.com
c66c983e30 Adding cases with non-default sorting.
git-svn-id: svn://10.0.0.236/trunk@133309 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:40:26 +00:00
pschwartau%netscape.com
9d85f91395 Improving readability.
git-svn-id: svn://10.0.0.236/trunk@133308 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:25:42 +00:00
pschwartau%netscape.com
4506bad90c Improving test: arr, arr.sort() must be more than just two arrays of the same length, they must be equal as objects.
git-svn-id: svn://10.0.0.236/trunk@133307 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:15:28 +00:00
pschwartau%netscape.com
5d25a5041f Improving readability.
git-svn-id: svn://10.0.0.236/trunk@133306 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:05:57 +00:00
rogerl%netscape.com
79e1ebc317 signed/unsigned issue on NotALabel.
git-svn-id: svn://10.0.0.236/trunk@133305 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 18:41:17 +00:00
pete.zha%sun.com
8564de7c4b back out for bug 144664
a=cls


git-svn-id: svn://10.0.0.236/trunk@133304 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 17:18:21 +00:00
sspitzer%netscape.com
751e9aee54 commenting some todo items. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@133303 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 16:03:10 +00:00
sspitzer%netscape.com
16090b5590 fix for #142408. Selecting "Search Messages..." folder context menu marks selected message unread. thanks to tobias.weibel@gmx.net for the fix. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133302 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:49:18 +00:00
brade%netscape.com
205b1f301d extend the api for Midas functionality (bug 177700, r=akkana, sr=jst)
git-svn-id: svn://10.0.0.236/trunk@133301 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:38:35 +00:00
brade%netscape.com
79ef0005b1 add Midas functionality (bug 177700, r=akkana, sr=jst)
git-svn-id: svn://10.0.0.236/trunk@133300 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:36:25 +00:00
bzbarsky%mit.edu
cd2b67ecb7 This addref needs removing too. Part of bug 177543, r=rjesup, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133299 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:21:08 +00:00
mostafah%oeone.com
3ab6a9dd6c Added file created from libical patch for bug 146310
git-svn-id: svn://10.0.0.236/trunk@133298 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:50:46 +00:00
mostafah%oeone.com
7ee5faf803 Backing out invalid part of libical patch for bug 146310
git-svn-id: svn://10.0.0.236/trunk@133297 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:33:28 +00:00
jdunn%netscape.com
03715b66dd set initial w/h of Image() as "pixel" units
r=peterv@netscape.com
sr=jst@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133296 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:02:21 +00:00
bzbarsky%mit.edu
9d0e916e54 Make the nsCOMArray destructor release all the objects. Bug 178813,
r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@133295 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:34:18 +00:00
bzbarsky%mit.edu
2ca1fd4009 <form> with no action should submit to document uri, not base uri. Bug
171924, r=jkeiser, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@133294 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:29:34 +00:00
jfrancis%netscape.com
41221abe84 64647: implement "Paste without Formatting"; r=akkana; sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133293 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:04:37 +00:00
glazman%netscape.com
a42d9d93a2 fixing OS2VACPP bustage
git-svn-id: svn://10.0.0.236/trunk@133292 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:03:52 +00:00
jfrancis%netscape.com
9be3545656 175943: port layout-debug plugin+component to mac. This build option is not on by default.
git-svn-id: svn://10.0.0.236/trunk@133291 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 12:06:49 +00:00
jfrancis%netscape.com
b3dd2a097b fix for 174017: Multiple enters after quoted text does not move cursor; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133290 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:38:08 +00:00
jfrancis%netscape.com
408cabdd19 fix for 169586: Plaintext is always pasted in default font not the one in context. r=brade; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133289 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:29:37 +00:00
jfrancis%netscape.com
303874b31f fix for 164060: Drop link into list item makes cursor jump to next item; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133288 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:26:26 +00:00
glazman%netscape.com
074bb889eb fixing rpotts's seamonkey-ports bustage
git-svn-id: svn://10.0.0.236/trunk@133287 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:56:40 +00:00
brendan%mozilla.org
3ebbe7b166 Check in rogerl's patch for bug 178722, r=me.
git-svn-id: svn://10.0.0.236/trunk@133286 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:51:23 +00:00
kyle.yuan%sun.com
f90ff1380c Bug 177965 Wrong option selected in select field when pressing first key
r=jkeiser, sr=bzbarsky
Use a static member function ComboboxFocusSet() to clear the gLastKeyTime, and have gLastKeyTime be a static member


git-svn-id: svn://10.0.0.236/trunk@133285 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:25:03 +00:00
glazman%netscape.com
3b746bae03 -- NOT PART OF THE BUILD --
CaScadeS only

1. adds support for -moz-opacity
2. fixes support for line-height; b=169362
3. SerializeExternalSheet was using unefficient code; b=168755
4. prepares @page support, related to implem did by rods and myself in bug 115199
5. fixed border support
6. added support for !important declarations (but please see bug 178668)
7. fixed volume support; b=169363
8. prepares support for CSS level and browsers compatiblity
   (be able to say e.g. I want styles CSS 2 accepted by both NS4 and Opera5)
9. adds support for moving rules inside and between stylesheets,
    and support for stylesheet reordering
10. removed JS warnings
11. faster and more efficient code in stylesheets tree refresh


git-svn-id: svn://10.0.0.236/trunk@133284 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 09:24:36 +00:00
pete.zha%sun.com
d709d1959d fix the bustage (lose to checkin this file in the previous checkin) r=jkeiser a=#mozilla
git-svn-id: svn://10.0.0.236/trunk@133283 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:48:27 +00:00
darin%netscape.com
e8142930c5 launch IPC service on XPCOM startup.
git-svn-id: svn://10.0.0.236/trunk@133282 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:13:34 +00:00
bzbarsky%mit.edu
0748e6efda that addref should not have landed... thanks to rpotts for catching it
git-svn-id: svn://10.0.0.236/trunk@133281 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:04:04 +00:00
pete.zha%sun.com
9f55f14161 fix bustage for bug 144664 r=bryner a=#mozilla
git-svn-id: svn://10.0.0.236/trunk@133280 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:55:59 +00:00
darin%netscape.com
6935c92435 fix XP_UNIX build bustage
git-svn-id: svn://10.0.0.236/trunk@133279 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:37:24 +00:00
darin%netscape.com
f00dea6d77 1) cleanup ipcService/ipcTransport platform factoring
2) add ipc-startup-category
3) add ipc-startup and ipc-shutdown observer topics


git-svn-id: svn://10.0.0.236/trunk@133278 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:34:54 +00:00
bzbarsky%mit.edu
76387571ce er, and make it link too.
git-svn-id: svn://10.0.0.236/trunk@133276 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:47:45 +00:00
bzbarsky%mit.edu
9eaa56b652 fix build bustage on Linux
git-svn-id: svn://10.0.0.236/trunk@133275 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:39:39 +00:00
pete.zha%sun.com
b98d6e9fa3 Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com patch=louie.zhao@sun.com
This patch fixed the build bustage on windows&HP-UX platform which r=bryner@netscape.com sr=bzbarsky@mit.edu


git-svn-id: svn://10.0.0.236/trunk@133274 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:32:29 +00:00
myk%mozilla.org
88aa2f69c1 Fix for bug 178801: Missing &:: caused function call to fail, resulting in server error.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133272 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:31:51 +00:00
darin%netscape.com
1232c163ef fix windows bustage
git-svn-id: svn://10.0.0.236/trunk@133271 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:25:58 +00:00
rpotts%netscape.com
4b947830a3 fix build bustage... i'm a doofus
git-svn-id: svn://10.0.0.236/trunk@133270 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:03:50 +00:00
darin%netscape.com
547b4d53a1 add ipcModuleMethods::init
git-svn-id: svn://10.0.0.236/trunk@133269 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:00:10 +00:00
darin%netscape.com
2acc29c026 added ipcModuleUtil.h to simplify using the new plug-in API
git-svn-id: svn://10.0.0.236/trunk@133267 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:54:56 +00:00
myk%mozilla.org
c680f43b1c Fix for bug 178801: missing &:: caused function not to be found, resulting in server error
r=justdave


git-svn-id: svn://10.0.0.236/trunk@133265 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:33:51 +00:00
rpotts%netscape.com
dad38a973d bug #174404 (r=adam, sr=jst) Support the optional FOR and EVENT attributes on the SCRIPT tag
git-svn-id: svn://10.0.0.236/trunk@133264 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:17:21 +00:00
sspitzer%netscape.com
8b87dad367 fix for #178793. news filter logs are per group.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133262 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:58:04 +00:00
mkaply%us.ibm.com
67d00b329e #164122
r=cls
OS/2 only - build new viewer app stuff


git-svn-id: svn://10.0.0.236/trunk@133261 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:56:23 +00:00
darin%netscape.com
56efc822ef major overhaul of daemon plug-in module story. modules now talk to the
daemon through a table of function pointers.  this greatly simplifies the
linker magic required to allow the modules to talk with the daemon.


git-svn-id: svn://10.0.0.236/trunk@133260 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:56:06 +00:00
bugreport%peshkin.net
09af7653b1 Bug 178794 Request Queue has Internal Server Error if accessed when not logged in
2xr=justdave
a=justdave (for commit during freeze)


git-svn-id: svn://10.0.0.236/trunk@133259 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:49:19 +00:00
mkaply%us.ibm.com
51791385f5 #177543
r=me, sr=bz
OS/2 build bustage - add explicit casts


git-svn-id: svn://10.0.0.236/trunk@133258 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:48:56 +00:00
sspitzer%netscape.com
152a304176 fix bad comment. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@133256 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:29:34 +00:00
pschwartau%netscape.com
5a95a22f7b Initial add. Regression test for bug 178722.
git-svn-id: svn://10.0.0.236/trunk@133254 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:20:27 +00:00
bryner%netscape.com
da718f1470 Bug 104371 - shiftKey not set correctly for keypress events, breaking shift+space binding. r=brade, bzbarsky, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@133250 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 03:34:13 +00:00
glen.beasley%sun.com
aca505f03a move removeSunProvider after JSS JCE provider is loaded
git-svn-id: svn://10.0.0.236/trunk@133249 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 03:33:04 +00:00
jerry.tan%sun.com
0acc19c43b bug 156731, force image with unlimited css width to reflow,
patch by jerry.tan@sun.com r=karnaze, sr=bz


git-svn-id: svn://10.0.0.236/trunk@133248 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:50:39 +00:00
myk%mozilla.org
76a4a5010b Fix for bug 174731: no longer represents spurious flags as being set by default.
r=joel


git-svn-id: svn://10.0.0.236/trunk@133247 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:45:47 +00:00
bzbarsky%mit.edu
5cce5589b3 clean up some array stuff in nsDocument. Bug 177543, r=peterv, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133245 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:36:24 +00:00
blakeross%telocity.com
a95844993c small perf opt.
git-svn-id: svn://10.0.0.236/trunk@133244 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:25:18 +00:00
depstein%netscape.com
058bfbb7b5 Changed order of interface tests run in OnInterfacesRunalltestcases(). Commented out nsIWebNav tests until at some point they can be automated. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133242 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:54:21 +00:00
bzbarsky%mit.edu
bb8abbf51f remove old cruft; view-source has not been XML in two years. Bug
102437, r=bbaetz, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@133240 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:50:35 +00:00
ducarroz%netscape.com
e35b7f611d Fix for bug 16499. If no recipient is disclosed, we address the message to the sender to prevent problems with some mail server.R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133239 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:21:52 +00:00
timeless%mozdev.org
2edeb19c7e Bug 156814 If bookmark file is symlink, mozilla overwrites symlink with a file
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133238 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:19:25 +00:00
timeless%mozdev.org
eadce824e3 Bug 172377 Moz doesn't properly handle cookies.txt / cookperm.txt symlinks
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133237 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:19:24 +00:00
bzbarsky%mit.edu
f63931169a Fix crash closing prefs. Bug 150769, r=alexsavulov, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133236 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:59:25 +00:00
sfraser%netscape.com
ca2567f0d9 Fixing .headers output file name to fix IDL dependencies, which should fix the flames. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133235 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:57:23 +00:00
darin%netscape.com
b267b07ef5 better security check for mach-o builds
git-svn-id: svn://10.0.0.236/trunk@133233 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:31:40 +00:00
jpierre%netscape.com
941f0104bd Fix for 177798 . Improve handling of initialization / shutdown of the CRL cache using a static status variable
git-svn-id: svn://10.0.0.236/trunk@133228 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:02:31 +00:00
timeless%mozdev.org
a560eb1207 fix off-by-one error in parsing out extension
change by bz


git-svn-id: svn://10.0.0.236/trunk@133227 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:59:36 +00:00
blizzard%redhat.com
f1735775a3 Bug #174283. Xft font prefs should list fontconfig generic families. patch from dbaron@fas.harvard.edu, r=blizzard
git-svn-id: svn://10.0.0.236/trunk@133226 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:49:26 +00:00
rogerl%netscape.com
82611fb130 DumpByteCode implemented/
git-svn-id: svn://10.0.0.236/trunk@133215 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:15:02 +00:00
darin%netscape.com
a873535ff1 fixup security check to work on OSX
git-svn-id: svn://10.0.0.236/trunk@133214 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:14:10 +00:00
nhotta%netscape.com
cc8a5e0a31 Fixed the comparison code for the sort direction in SortBy(),
bug 177177, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@133206 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:37:05 +00:00
bzbarsky%mit.edu
8fd8d79350 Prioritize data-sniffing over extension-sniffing for ftp and http. Bug
177026, r=rpotts, sr=darin


git-svn-id: svn://10.0.0.236/trunk@133205 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:29:17 +00:00
sspitzer%netscape.com
88aa548b67 mac build change for mailViews. bug #176850.
sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@133204 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:27:17 +00:00
sspitzer%netscape.com
8e431a24d0 packaging files for mailViews.dat files. (moved from the ns tree)
bug #176850.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133203 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:26:16 +00:00
darin%netscape.com
4e1324cb9d added startup synchronization for XP_WIN
git-svn-id: svn://10.0.0.236/trunk@133202 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:22:50 +00:00
smontagu%netscape.com
5bf837c7e7 Bug 178623: run-mozilla.sh should popuplate ${XPSERVERLIST} if it was not set yet. Author=Roland.Mainz@informatik.med.uni-giessen.de, r=pete.zha@sun.com, sr=roc+moz, moa=cls
git-svn-id: svn://10.0.0.236/trunk@133201 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:22:32 +00:00
rogerl%netscape.com
7a6f51197d Fixed DikDik remnants.
git-svn-id: svn://10.0.0.236/trunk@133200 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:19:55 +00:00
blakeross%telocity.com
cfabb18b1a Removing an #ifdef MOZ_PHOENIX.
git-svn-id: svn://10.0.0.236/trunk@133199 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:56:02 +00:00
sfraser%netscape.com
c1ae53e29b Fixing up project files for sspitzer. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133198 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:51:59 +00:00
mikep%oeone.com
73804f09b6 Checking in patch from bug 146310 for libxpical and RDF fixes. This should fix those two things for Mac OS 9.
git-svn-id: svn://10.0.0.236/trunk@133197 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:51:47 +00:00
bzbarsky%mit.edu
24e5e9dd08 disabled selects should still take the colors the page sets. Bug
177569, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133196 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:35:36 +00:00
mostafah%oeone.com
41c91200b1 Checking in libical patch to bug 146310 :Make Calendar client available for Macintosh platform
git-svn-id: svn://10.0.0.236/trunk@133195 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:22:46 +00:00
sspitzer%netscape.com
74ffe25e72 ignore generated Makefiles.
git-svn-id: svn://10.0.0.236/trunk@133194 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:21:05 +00:00
seawood%netscape.com
a12196ab17 Fix image dragging corruption on BeOS and remove redundant code.
Thanks to Stuart Parmenter <pavlov@netscape.com> for the patch.
Bug #178614 r=cls sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133193 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:14:59 +00:00
jaggernaut%netscape.com
45feb50d64 Bug 178701: make source in FindInReadable be const. r=alecf, sr=scc
git-svn-id: svn://10.0.0.236/trunk@133192 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:11:24 +00:00
seawood%netscape.com
bc91143746 Fix pointer casting for AIX 64-bit builds.
Thanks to Philip K. Warren <pkw@us.ibm.com> for the patch.
Bug #177906 r=cls sr=scc


git-svn-id: svn://10.0.0.236/trunk@133191 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:07:23 +00:00
nhotta%netscape.com
c2829bafba Changed emitter to use tranlated strings for headers if not quoting,
bug 157979, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133190 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:04:33 +00:00
blakeross%telocity.com
689934f013 170705 - accessing "navigator.cookieEnabled" produces "uncaught exception." r=hyatt sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133189 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:53:52 +00:00
tor%cs.brown.edu
94b36cacfc Bug 148634 - combine imgContainerGIF::ZeroMaskArea & OneMaskArea.
Patch by paper@animecity.nu, r=biese, sr=tor.


git-svn-id: svn://10.0.0.236/trunk@133188 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:52:07 +00:00
blakeross%telocity.com
644a5209d4 Port over a trunk fix.
git-svn-id: svn://10.0.0.236/trunk@133187 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:50:52 +00:00
tor%cs.brown.edu
d83795c6ed Bug 37589 - strange dots next to slashdot news headers (gif decoder).
Patch by paper@animecity.nu, r=biesi, sr=tor.


git-svn-id: svn://10.0.0.236/trunk@133186 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:49:09 +00:00
caillon%returnzero.com
4169dc34bc 177526 - Don't block calls to window.open() that don't actually pop open new windows.
r=jkeiser sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133185 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:48:58 +00:00
tor%cs.brown.edu
ffb291f8fb Bug 155939 - frames not replaced correctly on bordered animated gif.
Patch by paper@animecity.nu, r=bzbarsky, sr=tor


git-svn-id: svn://10.0.0.236/trunk@133184 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:44:51 +00:00
sspitzer%netscape.com
e280bdba6f mailviews for the mac. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133183 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:40:17 +00:00
timeless%mozdev.org
4d83b479b8 Bug 178350 urichecker crashes things
r=cmanske sr=bz


git-svn-id: svn://10.0.0.236/trunk@133182 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:38:52 +00:00
darin%netscape.com
e04a41018c add empty constructor to ipcStringNode to make GCC 3.2 happy
git-svn-id: svn://10.0.0.236/trunk@133181 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:26:53 +00:00
darin%netscape.com
88b577605e fix compilation error
git-svn-id: svn://10.0.0.236/trunk@133180 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:07:33 +00:00
darin%netscape.com
3e356dfc27 added inline utility version of IPC_SendMsg that takes a client ID instead
of an ipcClient pointer.


git-svn-id: svn://10.0.0.236/trunk@133179 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:56:30 +00:00
darin%netscape.com
785aeaf731 rename IPC_GetClientName to IPC_GetPrimaryClientName
implement all of IPC_API


git-svn-id: svn://10.0.0.236/trunk@133178 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:52:39 +00:00
darin%netscape.com
e756c53239 XP_WIN: purge stale clients as each new client comes online.
git-svn-id: svn://10.0.0.236/trunk@133177 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:48:54 +00:00
blakeross%telocity.com
7831057ceb .
git-svn-id: svn://10.0.0.236/trunk@133176 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:27:16 +00:00
sspitzer%netscape.com
08bed16ff6 build work for mailviews, for mac.
not part of the build.


git-svn-id: svn://10.0.0.236/trunk@133174 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:10:33 +00:00
ian.mcgreer%sun.com
ac48db6445 bug 177366, clean up refcounting
r=relyea


git-svn-id: svn://10.0.0.236/trunk@133173 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:53:55 +00:00
mbarnson%sisna.com
5c41365089 Added spaces. I promise next time I'll get a review :)
git-svn-id: svn://10.0.0.236/trunk@133172 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:50:26 +00:00
ashishbhatt%netscape.com
59dca1fa78 Updating resource
git-svn-id: svn://10.0.0.236/trunk@133171 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:40:11 +00:00
ashishbhatt%netscape.com
9c0a9b033b Updatind nsIDomWindow testcase
git-svn-id: svn://10.0.0.236/trunk@133170 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:39:36 +00:00
rogerl%netscape.com
39a8464463 Further attempt to purge js32.lib remnant.
git-svn-id: svn://10.0.0.236/trunk@133169 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:35:33 +00:00
blythe%netscape.com
9c0821b470 Not part of the build.
Work in progress on heap fragmentation reporting tool.


git-svn-id: svn://10.0.0.236/trunk@133165 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 17:10:29 +00:00
timeless%mozdev.org
3f964f3276 backing out.
git-svn-id: svn://10.0.0.236/trunk@133164 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 16:49:13 +00:00
timeless%mozdev.org
b0778013dc Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133163 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 16:10:46 +00:00
mkaply%us.ibm.com
33c56790e3 #164122
r=mkaply, s=blizzard
OS/2 only - add missing style


git-svn-id: svn://10.0.0.236/trunk@133162 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:58:05 +00:00
mkaply%us.ibm.com
eaf8e4f780 #175106
r=av, s=blizzard
OS/2 only - add native plugin window support


git-svn-id: svn://10.0.0.236/trunk@133161 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:52:36 +00:00
ccarlen%netscape.com
e862798727 Bug 178440 - Mach-0 build ignores startup prefs. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133159 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:35:57 +00:00
timeless%mozdev.org
c1e79f47c2 Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133158 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:31:02 +00:00
timeless%mozdev.org
9bf5aa6cfc Bug 175096 Improve doc comment for NS_SoftwareUpdateRequestAutoReg()
r=dougt sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@133157 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:15:38 +00:00
timeless%mozdev.org
91366332ff Bug 153821 crash while inspecting an error window [@inLayoutUtils::GetPresShellFor]
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133156 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:01:56 +00:00
timeless%mozdev.org
1a0485e477 Bug 174004 nsTextFormatter.cpp comment stolen from prprf.c should be removed
comment only change


git-svn-id: svn://10.0.0.236/trunk@133155 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 14:57:41 +00:00
dbaron%fas.harvard.edu
2df075502a Make NS_INIT_ISUPPORTS empty by moving NS_INIT_OWNINGTHREAD into the constructor of a new class, |nsAutoOwningThread|. Deprecate NS_INIT_ISUPPORTS. b=174225 r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133154 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:09:20 +00:00
dbaron%fas.harvard.edu
1b05d0ac34 Remove blue coloring on buttons in personal toolbar. b=174242 r=jag sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133153 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:04:35 +00:00
dbaron%fas.harvard.edu
6fc372f1e2 Fix shutdown leak of IO service and protocol proxy service by breaking cycle in XPCOM shutdown observer. Slight performance improvement to nsIOService::GetCachedProtocolHandler. b=174134 r=bbaetz sr=darin
git-svn-id: svn://10.0.0.236/trunk@133152 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:03:49 +00:00
dbaron%fas.harvard.edu
1c288bd1c6 Fix shutdown leak of |nsHttpHandler| and |nsHttpConnection|s by moving calls to |DropConnections| from the |nsHttpHandler| destructor to the XPCOM shutdown observer. Fix error in |PurgeDeadConnections|. b=174131 r=bbaetz sr=darin
git-svn-id: svn://10.0.0.236/trunk@133151 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:01:42 +00:00
dbaron%fas.harvard.edu
acb32e9f60 Fix leaks of references to jsdService. r=rginda sr=alecf b=170194
git-svn-id: svn://10.0.0.236/trunk@133150 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:59:21 +00:00
dbaron%fas.harvard.edu
7c66f307dd Miscellaneous performance improvements, mostly related to image loads. Cache a copy of the IO service on the Pres Context for use in starting image loads. b=170116 r=darin sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133149 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:58:05 +00:00
dbaron%fas.harvard.edu
27cc9308d2 Fix shutdown leaks of observer service via cycles through JS caused by closures and global variables. b=170022 r=morse sr=jag
git-svn-id: svn://10.0.0.236/trunk@133148 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:55:00 +00:00
dbaron%fas.harvard.edu
0ee9a89ba0 Improve error handling for calls to XGetFontProperty in system fonts code. b=104345 r=bryner sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133147 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:53:16 +00:00
varga%netscape.com
c28a6c24e7 Fix for bug 135272. columns content doesn't flip when setting the UI aligned to the right
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133146 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:20:50 +00:00
locka%iol.ie
fdb5a68e3a Disable XUL progress dialog and fix print progress listener. b=168510 r=rods@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133145 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:14:59 +00:00
varga%netscape.com
e15e269f7d Fix for bug 162542. Quick Search bar for Bookmarks Manager
r=timeless, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133144 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:07:38 +00:00
cbiesinger%web.de
5d604b16f1 bug 177875 r=smontagu sr=roc+moz fontDownloadURL not ideal
git-svn-id: svn://10.0.0.236/trunk@133143 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 11:34:16 +00:00
bryner%netscape.com
4a48c34b4e Fix fullscreen mode on Linux to use the fullscreen hint, rather than manually sizing the window (bug 176640). Move the existing implementation of fullscreen mode from nsGlobalWindow to nsBaseWidget, so that it can be overridden in the gtk widget implementation. r=blizzard, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@133142 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 09:35:13 +00:00
darin%netscape.com
a107150193 fixes some XP_WIN ipcd bugs
git-svn-id: svn://10.0.0.236/trunk@133141 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:47:31 +00:00
dmose%netscape.com
cf43c1a311 Placeholder junkmail icons for classic; part of ongoing spam front end work (bug 169638); r/sr=sspitzer@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133140 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:41:03 +00:00
glazman%netscape.com
ba5cb51bf5 CSS properties set to system colors were returning inconsistent values; b=172199, r=caillon, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@133139 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:31:19 +00:00
timeless%mozdev.org
0eaf84927e <glazou> nom de zeus !!!!!
glazou didn't mean to put files into the top level.
i'm removing them.


git-svn-id: svn://10.0.0.236/trunk@133138 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:16:01 +00:00
darin%netscape.com
6704473f36 implemented first working prototype of WM_COPYDATA based IPC transport for XP_WIN.
still rough around the edges ;-)


git-svn-id: svn://10.0.0.236/trunk@133137 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:55:05 +00:00
sspitzer%netscape.com
209e527acf fix for #178604. when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles. (works fine for new profiles).
this blocks the bayesian filter stuff, as we are adding a new column for junk status.

r=varga, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133136 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:48:19 +00:00
varga%netscape.com
1be3ec1c4d Fix fo bug 177969. Remove unused nsITreeColFrame interface.
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133135 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:36:21 +00:00
timeless%mozdev.org
d9140404fc Bug 133708 Simplify nsStyleList::CalcDifference
r=dbaron sr=brendan


git-svn-id: svn://10.0.0.236/trunk@133134 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:31:27 +00:00
edburns%acm.org
1a84f84b00 Make it build on win32.
git-svn-id: svn://10.0.0.236/trunk@133133 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:08:30 +00:00
dmose%netscape.com
7d7529ef89 Temporarily disable front-end code for turning on spam filtering for news, since more work still needs to be done; part of ongoing spam front end work (bug 169638); r/sr=sspitzer@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133132 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:00:52 +00:00
sspitzer%netscape.com
1fcbfe5e94 fall out from news filter landing / multiple filter action landing.
handle the new news filter actions (ignore / watch), and make sure that
when editing a filter, we scroll the listbox to the first checked action.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133131 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:53:55 +00:00
varga%netscape.com
a8c8204bf0 Fix for bug 177753. Tree painting methods don't have to be virtual
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133130 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:38:14 +00:00
rogerl%netscape.com
e5cc55d9bc (trying to) clean up workspace check-in.
git-svn-id: svn://10.0.0.236/trunk@133129 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:22:33 +00:00
sspitzer%netscape.com
5eeee1a963 fall out from news filter landing / naving multiple filter action landing.
for new mail filters, action is move, for new news filters, action is delete
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133128 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:21:44 +00:00
caillon%returnzero.com
996f96a111 167867. Convert the unicodeToEntity functions to use regexps.
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133127 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:07:38 +00:00
rogerl%netscape.com
e05ccc61dd More DikDik clean-up.
git-svn-id: svn://10.0.0.236/trunk@133126 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:00:12 +00:00
sspitzer%netscape.com
6d72d727ec implement news filters. bug #17483.
implement an ID column in the thread pane, but commented out.
Mail.app has it, but we haven't decided to include it yet or not.
but it is useful for debugging.

code cleanup.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133125 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:59:19 +00:00
leaf%mozilla.org
e45e465787 Automated update
git-svn-id: svn://10.0.0.236/trunk@133123 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:39:37 +00:00
timeless%mozdev.org
9cdf00e28d Bug 154801 ###!!! ASSERTION: null ptr: 'aURL != nsnull', file f:\build\mozilla\rdf\base\src\nsRDFContentSink.cpp, line 696
r=tingley sr=jst


git-svn-id: svn://10.0.0.236/trunk@133120 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:35:14 +00:00
seawood%netscape.com
58a4cc4c0c Remove bogus debugging warning
git-svn-id: svn://10.0.0.236/trunk@133119 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:26:02 +00:00
sspitzer%netscape.com
b611bad118 turn on mscott's mail views. (only linux and windows, working on mac build changes).
bug #176850.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133118 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:22:25 +00:00
dveditz%netscape.com
0f0277ea5c fix crash in ShellExecute() on some versions of windows (bug 161357) r=mstoltz,sr=darin
git-svn-id: svn://10.0.0.236/trunk@133117 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:20:40 +00:00
sspitzer%netscape.com
ca0dcb17df fix for #123767. freeing bogus pointer. thanks to mhammond@skippinet.com.au for the initial patch. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@133116 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:20:21 +00:00
seawood%netscape.com
4ee80820c1 Add CFM, CFBundle and mach-o library loading support to OSX NSPR. Support is only available if the carbon toolkit is detected at build time.
Original patch by Patrick Beard <beard@netscape.com> with modifications by Wan-Teh Chang <wtc@netscape.com>.
Bug #131306 r=cls


git-svn-id: svn://10.0.0.236/trunk@133114 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:10:22 +00:00
naving%netscape.com
2f5a5394df 178580 r=bienvenu fixing regression - mail slow on startup. thanks to bienvenu for catching my mistake
git-svn-id: svn://10.0.0.236/trunk@133113 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:09:20 +00:00
timeless%mozdev.org
d59e88f9dd using http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=MozillaTinderboxAll&branch=HEAD&branchtype=match&dir=&file=&filetype=match&who=pete.zha&whotype=regexp&sortby=Date&hours=2&date=explicit&mindate=1036540000&maxdate=1036553759&cvsroot=%2Fcvsroot&generateBackoutCVSCommands=1
to back out
Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com

this broken windows and other platforms.
approved by cls and #mozilla


git-svn-id: svn://10.0.0.236/trunk@133112 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 04:05:21 +00:00
bzbarsky%mit.edu
3f80eb2fd8 The "value" attribute should not be mapped into style. Bug 157210,
aptch by sicking, r=jst, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133111 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:47:55 +00:00
curt%netscape.com
a94c0f7571 Not part of the build. This file is only used by installer developers.
git-svn-id: svn://10.0.0.236/trunk@133110 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:41:30 +00:00
curt%netscape.com
c8167ae104 Install the installer.
(Bug 169579, r=jbetak, sr=sveditz)


git-svn-id: svn://10.0.0.236/trunk@133109 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:31:11 +00:00
blizzard%redhat.com
f74745c459 Re-work focus handling so that it's more reliable and works with embedding (code to be checked in some time soon.) Also, add new debugging options for IM and focus handling.
git-svn-id: svn://10.0.0.236/trunk@133108 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:29:02 +00:00
blizzard%redhat.com
e8c94d7d78 Bug #176514. Problems with XIM and hot keys. Disable XIM for the moment until we figure out the next step.
git-svn-id: svn://10.0.0.236/trunk@133107 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:27:55 +00:00
nicolson%netscape.com
b94775cb10 Add license header to new file.
git-svn-id: svn://10.0.0.236/trunk@133105 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:24:39 +00:00
nicolson%netscape.com
16eb4e02e6 Add TestSDR, to test the new SecretDecoderRing.
In all.pl, always set the CLASSPATH to be the signed JSS JAR file, so
that we can use the JCE (javax.crypto.*) interface.


git-svn-id: svn://10.0.0.236/trunk@133104 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:22:10 +00:00
pete.zha%sun.com
e91a9ebd3c Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com
Check in step 2(modify files)


git-svn-id: svn://10.0.0.236/trunk@133103 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:21:58 +00:00
nicolson%netscape.com
af2568778b Correctly detect a missing key.
git-svn-id: svn://10.0.0.236/trunk@133102 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:20:53 +00:00
bzbarsky%mit.edu
c992ed7c8d Use the right contractid for the pref service. Bug 178062, r=brendan,
sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133101 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:14:47 +00:00
aaronl%netscape.com
b6b951aa4a Make sure order of member variable initialization in the constructor is correct after all of the typeaheadfind checkins that just occurred, to avoid gcc warnings
git-svn-id: svn://10.0.0.236/trunk@133099 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:07:16 +00:00
pete.zha%sun.com
6348fda195 Font Catalog Service
bug=144664
r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com
Check in step 1 (Add new files, will not break build)


git-svn-id: svn://10.0.0.236/trunk@133098 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:06:00 +00:00
aaronl%netscape.com
a51ab05a14 Bug 175834. Extra MSAA focus events on checkboxes and radios when traversing pref category pane. r=sgehani, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133097 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:03:52 +00:00
aaronl%netscape.com
67faf008e6 Bug 175046, bug 172991, bug 166471. Make sure typeaheadfind and regular find don't find comment nodes, display:none, visibility:hidden or visibility:collapsed nodes. r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133095 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:59:38 +00:00
cavin%netscape.com
188a570716 Fix for multiple bugs. Bug 82748: need to convert account name and organization name to unicode; bug 132671: need to create a content type header if its missing or the content type is multipart/alternative; bug 163597: use NS_ConvertUCS2toUTF8() instead of AssignWithConversion() call; bug 174402: need to convert message header and attachment names to unicode and retrieve long filename from MAPI for the attachments. r=nhotta/ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@133094 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:58:05 +00:00
aaronl%netscape.com
0fb5e07d97 Bug 177005. Protection against accidentally going back in history when using backspace too many times with typeaheadfind. r=caillon, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133093 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:54:55 +00:00
aaronl%netscape.com
7da077568c Bug 174145. Typeaheadfind leaking because of timers. r=kyle, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133092 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:50:39 +00:00
aaronl%netscape.com
7f9d8015f9 Bug 174145. Typeaheadfind leaking because of timers. r=kyle, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133091 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:49:32 +00:00
aaronl%netscape.com
07b36620ee Bug 175548. Reasonable status bar messages for repeated and backward find modes. r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133090 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:46:33 +00:00
aaronl%netscape.com
a318d12ebd Bug 176037. Typeaheadfind status message skips second letter when match not found. r=akkana, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133089 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:43:10 +00:00
aaronl%netscape.com
7c52ec3c01 Bug 178305. Typeaheadfind autowrap broken. r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133088 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:40:38 +00:00
aaronl%netscape.com
f2ed0bd317 Bug 84308. Navigate XUL buttons with arrow keys. r=samir, sr=alecf. Also fixes bug 161410, should be able to use button accesskeys without modifier when button is focused.
git-svn-id: svn://10.0.0.236/trunk@133087 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:37:18 +00:00
aaronl%netscape.com
3b5afc2259 Bug 173350. nsIDOMTreeWalker crashes with XUL documents -- this implements some of the unimplemented methods in nsXULDocument. r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133086 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:30:38 +00:00
bienvenu%netscape.com
5e54024853 fix news msg useage of memory cache so we don't try to use mem cache entries for messages that haven't finished downloading, r=cavin, sr=sspitzer 178332
git-svn-id: svn://10.0.0.236/trunk@133085 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:28:08 +00:00
aaronl%netscape.com
c70e51198a Bug 66834. Autocomplete swallowing clicks. Fixing for Windows and leaving bug open. r=pinkerton, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@133084 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:27:57 +00:00
bzbarsky%mit.edu
75e86ee39c ReframeContainingBlock needs to work on <body> and such too. Bug 74951,
r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133083 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:26:52 +00:00
ducarroz%netscape.com
e3304b6ead Fix for bug 162842.
When we parse a message, we emitt the main message headers as well the headers
of embedded messages. We must call nsIMsgMailNewsUrl::SetMimeHeaders only for
the main headers.
R=sspitzer, SR=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133082 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:25:00 +00:00
dmose%netscape.com
81c9be9b06 Remove unused junk icons; part of ongoing junk mail filtering front-end work for bug 169638; not yet exposed in the default builds. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133081 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:23:04 +00:00
curt%netscape.com
8aaeaf2d32 Mainenance cleanup
(Bugs #177163, #127420, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133080 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:21:00 +00:00
naving%netscape.com
0ec49449ab 174441 r=cavin sr=bienvenu Implementing multiple filter actions, so you can do things like move the message
and label as "to-do" etc..
168553 r=cavin sr=bienvenu Forking rules.dat so that we can handle new filter types. msgFilterRules.dat is
where your filters are going to be persisted. Also added support to handle future filters by not parsing
them, will prevent us from forking in future.


git-svn-id: svn://10.0.0.236/trunk@133079 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:13:37 +00:00
bzbarsky%mit.edu
1e7cef8072 line-height settings should not affect internal layout of form
controls.  Bug 82265, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133078 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:12:18 +00:00
curt%netscape.com
7c3b74f57a Add Force Install command-line option.
(Bug #73336, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133077 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:08:33 +00:00
darin%netscape.com
d067f6f0d2 make windows build compile.
git-svn-id: svn://10.0.0.236/trunk@133076 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:08:22 +00:00
bzbarsky%mit.edu
036dcaa1ec fix regression in setting important property values in inline style via
DOM.  Bug 173767, r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133073 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:07:17 +00:00
curt%netscape.com
2226c4b416 Add Force Install command-line optionl
(Bug #173336, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133072 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:05:38 +00:00
bzbarsky%mit.edu
23118ef7a0 Reorder some members in nsLineLayout to make them pack better. Bug
176749, patch by dann@godzilla.ics.uci.edu (Dan), r=bzbarsky, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133071 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:03:43 +00:00
darin%netscape.com
40a201cb2b more factoring of ipcTransport
git-svn-id: svn://10.0.0.236/trunk@133070 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:01:00 +00:00
nicolson%netscape.com
04974987a2 Improve InvalidBERException.
Add feature of SEQUENCE.OF_Template whereby elements need not produce
any output. This is for dealing with very large SEQUENCEs, such as
large CRLs, where the list should be processed in some way, but not made
into an ASN1 object hierarchy.


git-svn-id: svn://10.0.0.236/trunk@133069 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:00:55 +00:00
bzbarsky%mit.edu
6f34f01f3d nsCOMArray_base copy constructor should not assert. Bug 178534,
r=dougt, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133068 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:00:50 +00:00
bzbarsky%mit.edu
ed88abf015 Use the list-style-type if our list-style-image does not load. Bug
178371, r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133067 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:58:22 +00:00
bzbarsky%mit.edu
cb39275066 Look at $TMP and $TEMP, not just $TEMPDIR. Bug 176887, r=timeless, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133066 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:56:00 +00:00
curt%netscape.com
8eeaf5c960 Let the uninstaller know about the .autoreg file.
(Bug #169371, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133065 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:54:05 +00:00
bzbarsky%mit.edu
a027b6f54b Disabled form controls should not be in the tab order. Bug 177620,
r=akkana,timeless, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@133064 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:54:04 +00:00
bzbarsky%mit.edu
d4406da2ab ctrl-middleclick should not send a referrer. Bug 175092, r=timeless, sr=jag
git-svn-id: svn://10.0.0.236/trunk@133063 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:51:02 +00:00
darin%netscape.com
811b906dfb factor out socket transport specific ipcTransport implementation.
git-svn-id: svn://10.0.0.236/trunk@133062 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:47:07 +00:00
curt%netscape.com
386a683618 Look up the existence of a file to confirm product installation.
(Bug #166666, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133061 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:46:45 +00:00
bzbarsky%mit.edu
22537f1fd2 Notify properly when calling AppendChild on a documentfragment. Bug
175843, r=sicking, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@133060 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:46:03 +00:00
kyle.yuan%sun.com
330334d705 Bug 174888 Active Accessibility: unable to get keyboard shortcut for textbox node
r=aaronl, sr=bzbarsky
inherit accesskey from textbox


git-svn-id: svn://10.0.0.236/trunk@133059 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:32:36 +00:00
naving%netscape.com
684c365224 117835 r=cavin sr=bienvenu fixing invalid folder name containing japanese characters when you restart after creating new local folders. Also cleaning up local folders code that deals with checking for duplicate
folder names, renaming/deleting local folders


git-svn-id: svn://10.0.0.236/trunk@133057 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:30:31 +00:00
kyle.yuan%sun.com
42a06500ad Bug 177451 [Active Accessibility] implement support for <toolbar>
r=aaronl, sr=jst
Bug 177453 [Active Accessibility] implement support for <hr>
r=aaronl, sr=jst
Bug 177646 [Active Accessibility] implement support for <tooltip>
r=aaronl, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133056 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:29:58 +00:00
darin%netscape.com
7e466903ec initial version of windows WM_COPYDATA impl.
git-svn-id: svn://10.0.0.236/trunk@133055 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:27:04 +00:00
seawood%netscape.com
8ae058aa20 Add support for loading cfm plugins in OSX mach-o builds.
Changes backported from the CHIMERA_M1_0_1_BRANCH branch.
Bug #155256 r=peterl sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@133054 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:24:57 +00:00
chak%netscape.com
a4274ab9cb Fix for #178555 - Update Mozilla milestone in MfcEmbed on the trunk..
r=Ashish, sr=Darin Fisher


git-svn-id: svn://10.0.0.236/trunk@133053 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:16:01 +00:00
darin%netscape.com
9a910de9fc factored out unix (file descriptor based) implementation to make way for
a windows WM_COPYDATA based implementation.


git-svn-id: svn://10.0.0.236/trunk@133052 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:11:07 +00:00
naving%netscape.com
35ef117280 176380 r=cavin sr=bienvenu set the sent and trash folder flags on aol folders if redirector="aol"
git-svn-id: svn://10.0.0.236/trunk@133050 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:47:46 +00:00
bienvenu%netscape.com
4b4e4024cb add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133049 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:34:13 +00:00
bienvenu%netscape.com
4ae8388faf add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133048 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:27:13 +00:00
bienvenu%netscape.com
db9a89d797 fix updating of msg counts in standalone msg window, r=cavin, sr=sspitzer 20119
git-svn-id: svn://10.0.0.236/trunk@133046 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:26:06 +00:00
dmose%netscape.com
0a5b9e8208 Updated junk mail icons (part of ongoing junk mail front end work in bug 169638). r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133045 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:25:06 +00:00
bienvenu%netscape.com
af89badceb fix new msg showing up with collapsed twisty in threads with unread view, r=cavin, sr=sspitzer 158217
git-svn-id: svn://10.0.0.236/trunk@133044 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:21:46 +00:00
ducarroz%netscape.com
6eceaa4adf Fix for bug 99217. Need to save the identity key when saving a draft/template. Patch submitted by Frank Schšnheit<frank.schoenheit@gmx.de>. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@133043 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:21:15 +00:00
bienvenu%netscape.com
8672bbe6a9 add folder size to folder pane, r=cavin, sr=sspitzer, 173825 fix imap use of mem cache not to mark entries valid until finished loading, r=cavin, sr=sspitzer 114965
git-svn-id: svn://10.0.0.236/trunk@133042 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:18:25 +00:00
bryner%netscape.com
a9e7ff243d fix orange
git-svn-id: svn://10.0.0.236/trunk@133041 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:13:49 +00:00
bienvenu%netscape.com
02a7640a70 add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133040 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:13:19 +00:00
ducarroz%netscape.com
ded810011e Fix for bug 174804.
I fix 2 problems:
a) we need to accept to resolve a CID when it's in a link (<A...>) even if the
part cannot be displayed inline

2) related Part that are not linked to the message body should appears as
attachment, the current algorithm wasn't working when multipart/related is
embedded in multipart/alternative.
R=cavin, SR=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133039 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:00:45 +00:00
rogerl%netscape.com
aaef5aa057 Fixed Readme for Linux. Beginning bytecode dumper.
git-svn-id: svn://10.0.0.236/trunk@133038 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 23:53:10 +00:00
myk%mozilla.org
2cffc51e14 Fix for bug 171475: make new flags include all categories (product/component combinations) by default.
r=joel


git-svn-id: svn://10.0.0.236/trunk@133037 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 23:45:56 +00:00
rogerl%netscape.com
5a0f930416 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@133033 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 22:16:16 +00:00
bryner%netscape.com
d8705a94b5 Fixing OS/2 phoenix bustage (bug 177977). Patch from mkaply.
git-svn-id: svn://10.0.0.236/trunk@133032 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 22:00:46 +00:00
tara%tequilarista.org
c2cdb832cf Original Blue Martini implementation of cvs-mirroring functionality, not yet genericized for public consumption
git-svn-id: svn://10.0.0.236/trunk@133031 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 21:16:04 +00:00
darin%netscape.com
e6c65b642b cleanup
git-svn-id: svn://10.0.0.236/trunk@133025 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:49:24 +00:00
darin%netscape.com
cf4102aedd major unix cleanup:
1) introduce /tmp/.mozilla-ipc-$USER/ directory for socket and lock file
2) cleaned up daemon startup and shutdown sequences


git-svn-id: svn://10.0.0.236/trunk@133024 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:42:22 +00:00
darin%netscape.com
0b5a1690a7 fixing crash
git-svn-id: svn://10.0.0.236/trunk@133023 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:30:26 +00:00
despotdaemon%netscape.com
de6a8de080 Pseudo-automatic update of changes made by kysmith@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@133022 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:21:23 +00:00
despotdaemon%netscape.com
aca0be6051 Pseudo-automatic update of changes made by leaf@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133021 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:14:17 +00:00
mikep%oeone.com
beda801f44 Fixing slowness of trees. We now don't sort on get cell text, we only sort before adding the view, and after they click on the tree to sort.
git-svn-id: svn://10.0.0.236/trunk@133020 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 18:44:27 +00:00
kaie%netscape.com
499d158fb3 b=166655 ERROR -12227 / Extend the list of TLS intolerance error codes
r=javi sr=jag a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133012 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 14:49:52 +00:00
timeless%mozdev.org
a9f49f6514 Bug 106708 DnD Data Object format incorrect
patch by adrian.buckley@ntlworld.com r=pinkerton sr=roc+moz a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133010 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 12:51:39 +00:00
varga%netscape.com
74eee3ee1d Fix for bug 170249. tree autoscroll triggers incorrectly and crashes
r=mcsmurf, sr=peterv, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133009 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 08:17:24 +00:00
sspitzer%netscape.com
ce433df8fb fix for bug #178061. use better icon for IM button in addressbook.
thanks to gail for the icons.  r/sr=bienvenu, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133008 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:59:51 +00:00
alecf%netscape.com
12f6f515bc oops, fix warning caused by last checkin, by just reordering the initializers
git-svn-id: svn://10.0.0.236/trunk@133007 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:03:47 +00:00
alecf%netscape.com
9f1a89f2ed fix for bug 177990, r=tao, sr=sfraser, a=blizzard
fix string override enumeration, so that embeddors can override strings which are accessed via getSimpleEnumerator()


git-svn-id: svn://10.0.0.236/trunk@133006 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:02:07 +00:00
bzbarsky%mit.edu
ceddbaaa1a Long strings should not make the panel overflow. Bug 138680, patch by
parish@ntlworld.com, r=jag, sr=bzbarsky, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133004 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:33:51 +00:00
timeless%mozdev.org
7658d69f30 Bug 177658 Clipboard copy in Page Info is broken
patch by thieleke@yahoo.com r=db48x@yahoo.com sr=bzbarsky a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133003 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:27:48 +00:00
timeless%mozdev.org
6b4d8c8853 Bug 102905 Site navigation (links) toolbar doesn't update when tabs are switched
patch by neil@parkwaycc.co.uk r=sballard@netreach.net sr=bzbarsky a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133002 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:26:02 +00:00
mkaply%us.ibm.com
7baf8840b6 #174022
r=peterl, a=asa
Get tester plugin building on OS/2


git-svn-id: svn://10.0.0.236/trunk@133000 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:24:26 +00:00
depstein%netscape.com
1f3cfe4213 Some additional error checking for observer service. Direct rv results to screen dialog for nsIEditingSession tests. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@132999 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:19:33 +00:00
mbarnson%sisna.com
b1fcb0abc8 Added information about versioncache back in.
See bug 140332


git-svn-id: svn://10.0.0.236/trunk@132998 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:07:18 +00:00
mbarnson%sisna.com
1fdcaf00d8 Added blurb about movebugs. At this point, only bmo uses it, so I'm
calling it an "undocumented feature".
See bug 127818


git-svn-id: svn://10.0.0.236/trunk@132997 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:54:27 +00:00
mbarnson%sisna.com
962ceec475 Oops, tabs.
Fixed.


git-svn-id: svn://10.0.0.236/trunk@132996 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:48:59 +00:00
bzbarsky%mit.edu
47c119bdef CheckLoadURI should use document uri, not base uri. Bug 177237,
r=mstoltz, sr=jst, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@132995 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:45:28 +00:00
mbarnson%sisna.com
eada2fc965 Modified text for cookiepath line for clarity.
See bug 162359


git-svn-id: svn://10.0.0.236/trunk@132994 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:37:22 +00:00
mbarnson%sisna.com
96e7f94d14 Included note regarding the origin of "bonsaitools", per
bug 174922.


git-svn-id: svn://10.0.0.236/trunk@132993 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:24:52 +00:00
mbarnson%sisna.com
509c18826d Added section for Bugzilla and mod_perl (future expansion).
Right now, it just says "Bugzilla doesn't work under mod_perl".
See bug 149883


git-svn-id: svn://10.0.0.236/trunk@132992 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:19:40 +00:00
blizzard%redhat.com
87cedcda8b Bug #172576. Broken links in help. Checking in for stevechapel@earthlink.net. r=oeschger@netscape.com a=tor
git-svn-id: svn://10.0.0.236/trunk@132991 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:12:58 +00:00
mbarnson%sisna.com
56b4287d55 Removed binmode references on Win32 documentation.
See bug 155743.


git-svn-id: svn://10.0.0.236/trunk@132990 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:11:25 +00:00
mbarnson%sisna.com
746c96cc02 A rather controversial new entry to the FAQ. See bug 107917. I
decided one way for the Guide, based upon the code I see currently
checked in.  If I'm wrong, feel free to correct it!


git-svn-id: svn://10.0.0.236/trunk@132989 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:09:15 +00:00
mbarnson%sisna.com
c05bb2bd12 Fix for Apache configuration directives from bug 174255 and
de-stupidifying of emacs destruction of <programlisting> tags.


git-svn-id: svn://10.0.0.236/trunk@132988 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:52:09 +00:00
mbarnson%sisna.com
9d42f4a8c3 Since I nuked this section out of the SGML, we won't be needing
the HTML generated file anymore.


git-svn-id: svn://10.0.0.236/trunk@132986 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:45:55 +00:00
mbarnson%sisna.com
7976ccbf05 Removed links to dbschema.jpg image. See bug 173484, it was really outdated
and redundant anyway.


git-svn-id: svn://10.0.0.236/trunk@132985 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:44:57 +00:00
mbarnson%sisna.com
3ba2b27a26 Removing these images, since they are too outdated to be useful, and
they are basically redundant anyway.  See bug 173484


git-svn-id: svn://10.0.0.236/trunk@132984 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:44:26 +00:00
mbarnson%sisna.com
14034a426f Added notes on using OpenLDAP;
We should probably look at code changes to make Net::LDAP our permanent
LDAP plugin rather than Mozilla::LDAP...
See bug 167379.


git-svn-id: svn://10.0.0.236/trunk@132983 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:39:52 +00:00
mbarnson%sisna.com
a5f5beb963 Added chunk about setting up DirectoryIndex to use index.cgi as the
Bugzilla index page.


git-svn-id: svn://10.0.0.236/trunk@132982 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:15:02 +00:00
dveditz%netscape.com
efb761db7c Useful documentation of the PKZIP archive format that we've relied on. Should have checked this in years ago.
git-svn-id: svn://10.0.0.236/trunk@132981 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:14:10 +00:00
mbarnson%sisna.com
3901fa6103 Added dependency on File::Template. Not really fond of
doing requirements-of-requirements type stuff, but did it
anyway for clarity.


git-svn-id: svn://10.0.0.236/trunk@132980 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:07:32 +00:00
mbarnson%sisna.com
3dd15bc2be Patched lines per bug 177993.
Customization of "mid-air collision" template file.


git-svn-id: svn://10.0.0.236/trunk@132979 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:59:20 +00:00
myk%mozilla.org
1e4cfb771d Fix for bug 156548: XUL implementation of duplicates report.
git-svn-id: svn://10.0.0.236/trunk@132978 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:54:15 +00:00
nelsonb%netscape.com
d60753042b Workaround a c preprocessor bug on a certain 64-bit platform. Bug 178314.
git-svn-id: svn://10.0.0.236/trunk@132977 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:52:49 +00:00
ashishbhatt%netscape.com
255ee22c8d Adding menu for run all test cases
git-svn-id: svn://10.0.0.236/trunk@132976 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:29:46 +00:00
ashishbhatt%netscape.com
00674c5ad6 Adding functionality for running test cases in automation
git-svn-id: svn://10.0.0.236/trunk@132975 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:29:02 +00:00
despotdaemon%netscape.com
c928146d87 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132974 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:51:12 +00:00
despotdaemon%netscape.com
54c47d9399 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132973 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:49:39 +00:00
blakeross%telocity.com
015b43ef21 Fix some bugs, hook up cross-session sidebar persistence.
git-svn-id: svn://10.0.0.236/trunk@132969 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:29:14 +00:00
nelsonb%netscape.com
827c334f1c Fix missing strings that cause crash in SSL_SecurityStatus(). Bug 178342.
git-svn-id: svn://10.0.0.236/trunk@132968 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:25:20 +00:00
seawood%netscape.com
10b1f042f1 Treat cygwin perl as a win32 platform indicator.
Default to unix if platform is neither win32 nor mac.
Bug #166105 r=gerv a=asa


git-svn-id: svn://10.0.0.236/trunk@132967 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:21:38 +00:00
seawood%netscape.com
4095bb8201 Fixing vc7 bustage caused by original checkin for bug 176302.
Bug #176302 r=bryner


git-svn-id: svn://10.0.0.236/trunk@132966 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:16:23 +00:00
blakeross%telocity.com
13f7eb78bd More trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132961 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:53:49 +00:00
blakeross%telocity.com
1317f58ec7 Bring over more trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132960 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:50:50 +00:00
blakeross%telocity.com
c70067cdfa Port fixes over from trunk.
git-svn-id: svn://10.0.0.236/trunk@132959 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:46:43 +00:00
blakeross%telocity.com
ac36e4a63f Change search bar focusing shortkey to Ctrl+K.
git-svn-id: svn://10.0.0.236/trunk@132958 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:38:25 +00:00
blakeross%telocity.com
cc2e379eda Port over more trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132957 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:36:46 +00:00
blakeross%telocity.com
27bdcca7e3 Port fixes from the trunk.
git-svn-id: svn://10.0.0.236/trunk@132956 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:32:03 +00:00
blakeross%telocity.com
900a7034fd Port over fixes from the trunk.
git-svn-id: svn://10.0.0.236/trunk@132955 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:29:34 +00:00
blakeross%telocity.com
fa99ab7eb3 Port over some fixes from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132954 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:24:29 +00:00
blakeross%telocity.com
d11c3f74d7 Port over a fix from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132953 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:21:20 +00:00
blakeross%telocity.com
6d1945d4a9 Fix accesskey conflict.
git-svn-id: svn://10.0.0.236/trunk@132952 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:16:51 +00:00
blakeross%telocity.com
fccd58c512 SupportsWString -> SupportsString
git-svn-id: svn://10.0.0.236/trunk@132950 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:12:08 +00:00
rogerl%netscape.com
2d72e5fdd5 Fixed gc-ing in frames.
git-svn-id: svn://10.0.0.236/trunk@132948 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:03:58 +00:00
gerv%gerv.net
00b7c7843e Bug 173571 - Turn "all selected" into "none selected" for efficiency. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132945 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 22:43:28 +00:00
darin%netscape.com
9b8ee9f869 make ipcTransport::Init output app-name.
git-svn-id: svn://10.0.0.236/trunk@132944 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 22:29:17 +00:00
bugreport%peshkin.net
69c64a53bd Bug 177436 User matching shouldn't be case-sensitive
patch by not_erik
2xr=justdave
a=justdave for 2.17.1


git-svn-id: svn://10.0.0.236/trunk@132942 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:55:10 +00:00
blizzard%redhat.com
4a7d574838 Bug #178067. gtk2 FE requires xft enabled to compile. Patch from cbiesinger@web.de. r=blizzard, sr=bzbarsky, a=jesup
git-svn-id: svn://10.0.0.236/trunk@132940 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:51:09 +00:00
blizzard%redhat.com
3c52aa93f6 Bug #178045. floating point error when using gtk2 on startup. Make sure to check if the gtk dpi is greater than zero. r=owen sr=scc a=jesup
git-svn-id: svn://10.0.0.236/trunk@132939 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:32:36 +00:00
relyea%netscape.com
db6a20b385 !@#!$@! signtool thinks it knows how to verify if the certdb's are there and
OK or not. Of course it doesn't.

bob


git-svn-id: svn://10.0.0.236/trunk@132938 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 20:37:08 +00:00
darin%netscape.com
7fb645426a give modules the ability to iterate over the registered names and targets
for a particular client.


git-svn-id: svn://10.0.0.236/trunk@132937 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 20:30:54 +00:00
darin%netscape.com
131f215319 implemented ADD_TARGET/DEL_TARGET messages.
added ipcIDList


git-svn-id: svn://10.0.0.236/trunk@132936 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:46:34 +00:00
anthonyd%netscape.com
efab84e88a *** NOT PART OF THE BUILD !!!***
Fix for 176229
Sample plugins are not properly destroyed in NS_DestroyPluginInstance


git-svn-id: svn://10.0.0.236/trunk@132935 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:39:59 +00:00
relyea%netscape.com
d4e4d8b22a db8 code part 1:
1) Create new dbs with 32 k buffers.
   2) New dbs never store a single entry greater than 30 k (those are stored
using the blob code).
   3) NSS can run with either new or old dbs read only.
   4) If possible a new db is upgraded from and old db.


git-svn-id: svn://10.0.0.236/trunk@132934 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:31:59 +00:00
despotdaemon%netscape.com
c8f3e82cf5 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132933 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 18:04:41 +00:00
despotdaemon%netscape.com
531552b93d Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132930 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 17:23:59 +00:00
mikep%oeone.com
5ddb4d02a5 Fixing function name in "CUT", to make cutting events work again, bug 162866
git-svn-id: svn://10.0.0.236/trunk@132929 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 14:33:27 +00:00
darin%netscape.com
773ce670f1 implement ADD_NAME and DEL_NAME messages.
implement part of ADD_TARGET and DEL_TARGET messages.


git-svn-id: svn://10.0.0.236/trunk@132926 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 06:35:32 +00:00
rogerl%netscape.com
a366002374 Moved '#pragma warning' disable list to single file.
git-svn-id: svn://10.0.0.236/trunk@132925 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 04:54:23 +00:00
rogerl%netscape.com
55e47e37a1 Moved strings to bytecodecontainer instead of pointers. Fixed construction
of non-functions.


git-svn-id: svn://10.0.0.236/trunk@132924 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 04:53:17 +00:00
kiko%async.com.br
615c041c85 Fix for bug 62729, "Add real name capability to bug_list.cgi". Patch by
Toms Baugis, r=kiko, 2xr=joel.


git-svn-id: svn://10.0.0.236/trunk@132923 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 00:57:56 +00:00
mkaply%us.ibm.com
2ff0da9f87 When 104371 was backed out, the OS/2 change wasn't
git-svn-id: svn://10.0.0.236/trunk@132922 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 22:37:31 +00:00
blakeross%telocity.com
06479fcf88 Also tack on http:// for key modifiers.
git-svn-id: svn://10.0.0.236/trunk@132921 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 15:23:42 +00:00
blakeross%telocity.com
14ba7c7fce Restore Ctrl+0 for resetting text size.
git-svn-id: svn://10.0.0.236/trunk@132920 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 14:51:29 +00:00
darin%netscape.com
108238b121 forwarding messages now works
git-svn-id: svn://10.0.0.236/trunk@132919 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:54:46 +00:00
igor%mir2.org
ea39f0bd0b I made FunctionNode to inherit from Node instead of Node.StringNode as FunctionNode is never used as a string source.
git-svn-id: svn://10.0.0.236/trunk@132918 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:26:29 +00:00
sspitzer%netscape.com
7ea0a5772a fix for crasher bug #176056. crash when setting up default smtp servers. r/sr=bienvenu, a=asa.
git-svn-id: svn://10.0.0.236/trunk@132917 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:09:31 +00:00
gerv%gerv.net
aad1f35122 Bug 178019 - reports.cgi should use the shadowdb. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@132916 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:59:10 +00:00
blakeross%telocity.com
d88b3de258 back out arrow color change.
git-svn-id: svn://10.0.0.236/trunk@132915 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:27:08 +00:00
blakeross%telocity.com
41a898f138 Fix pref name.
git-svn-id: svn://10.0.0.236/trunk@132914 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:09:49 +00:00
igor%mir2.org
6d57a6e4be I removed method duplication in Node where getNext() was duplicated as getNextSibling() and code was using both of them and similarly for getFirstChild()/getFirst().
git-svn-id: svn://10.0.0.236/trunk@132913 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:08:00 +00:00
blakeross%telocity.com
e1a38da944 Fix some buglets; remove more comm dependencies.
git-svn-id: svn://10.0.0.236/trunk@132912 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 21:14:22 +00:00
darin%netscape.com
34effd1235 implement QueryClientByName
git-svn-id: svn://10.0.0.236/trunk@132911 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 18:57:15 +00:00
igor%mir2.org
10e43018b5 Allow for TokenStream.COMMA node in the parsed tree to contain more then 2 children to avoid too-deep recursion during code generation for long array and object initialization lists.
git-svn-id: svn://10.0.0.236/trunk@132910 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 18:01:26 +00:00
ian%hixie.ch
124d766c7e Adding more debug code to make my life easier.
git-svn-id: svn://10.0.0.236/trunk@132909 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 17:56:51 +00:00
igor%mir2.org
cf34b6d673 Cosmetics: use uniform indentation in switch statements
git-svn-id: svn://10.0.0.236/trunk@132908 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 14:54:35 +00:00
igor%mir2.org
cc5b13cdcc Avoid potentially expensive calls to Node.addChildBefore which may need to traverse a long child list to find the previous child when a reference to the previous child is available from context.
git-svn-id: svn://10.0.0.236/trunk@132907 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:52:11 +00:00
igor%mir2.org
b81b0ee917 Clear reference to sourceBuffer array as soon as it is no longer needed to allow its earlier GC.
git-svn-id: svn://10.0.0.236/trunk@132906 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:46:28 +00:00
locka%iol.ie
34093ecbed Fix about:plugins support in embedding. b=176191 r=chak@netscape.com sr=rpotts@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132905 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:29:38 +00:00
locka%iol.ie
9e986539e5 Add WS_CLIPCHILDREN to fix a painting problem. b=177637 r=jeff@tcbmi.com sr=blizzard@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132904 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:27:52 +00:00
blakeross%telocity.com
80ed34137f add missing files.
git-svn-id: svn://10.0.0.236/trunk@132903 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:13:58 +00:00
samuel%sieb.net
b89daf19db Bug 113227 - make /list not cause chatzilla to time out or freeze mozilla
(also bump version)
chatzilla only
r=rginda
a=asa


git-svn-id: svn://10.0.0.236/trunk@132900 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 06:16:14 +00:00
samuel%sieb.net
f50fc71286 Bug 166187 - fix /hide regression caused by conversion to deck
chatzilla only
r=rginda
a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132899 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 06:10:17 +00:00
darin%netscape.com
a6cb024de2 next round of revisions
1) added ipcQueue<>
2) added ipcLog
3) closer to having a working QueryClientByName
4) build fix


git-svn-id: svn://10.0.0.236/trunk@132898 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:45:24 +00:00
mcs%netscape.com
5d58acb600 Fix bug # 175727 - strict aliasing bugs in LDAP C SDK.
Avoid casts like (void**)&pRes; use temporary local variables
	instead.


git-svn-id: svn://10.0.0.236/trunk@132897 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:29:37 +00:00
blakeross%telocity.com
92fa889b01 Add default prompt pref.
git-svn-id: svn://10.0.0.236/trunk@132896 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:23:17 +00:00
despotdaemon%netscape.com
28dd40f5d3 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132895 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:23:14 +00:00
despotdaemon%netscape.com
67ad8f791c Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132894 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:21:39 +00:00
despotdaemon%netscape.com
03d1555923 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132893 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:21:09 +00:00
despotdaemon%netscape.com
07a934fce1 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132892 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:19:38 +00:00
despotdaemon%netscape.com
239a179cf9 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132891 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:17:12 +00:00
despotdaemon%netscape.com
5181ed8bf7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132890 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:13:33 +00:00
despotdaemon%netscape.com
9166d6317f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132889 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:12:53 +00:00
arougthopher%lizardland.net
fa2cdaed7d Bug#92793
BeOS classes are not threadsafe

In BeOS, each window runs in its own thread.  Because of this,
we have a proxy layer between the mozilla UI thread, and calls made
within the window's thread via CallMethod().  However, since the windows
are still running in their own thread, and reference counting takes place within
that thread, we need to reference and de-reference outselves atomically.

r=rpotts
sr=blizzard
a=asa


git-svn-id: svn://10.0.0.236/trunk@132888 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:12:00 +00:00
despotdaemon%netscape.com
02d10f6da2 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132887 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:54:54 +00:00
despotdaemon%netscape.com
1eb25ec6db Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132886 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:53:43 +00:00
nelsonb%netscape.com
bbd94d3c96 Add some processor and compiler dependent optimizations to SHA1.
git-svn-id: svn://10.0.0.236/trunk@132885 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:53:01 +00:00
nelsonb%netscape.com
66baae99bd Add SHA256 SHA512 and SHA384 hashes to freebl.
git-svn-id: svn://10.0.0.236/trunk@132884 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:51:44 +00:00
despotdaemon%netscape.com
2e34f2aa86 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132883 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:49:08 +00:00
despotdaemon%netscape.com
0795aaf6da Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132882 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:48:15 +00:00
despotdaemon%netscape.com
a960aeae64 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132881 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:43:53 +00:00
despotdaemon%netscape.com
83584b45e7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132880 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:39:24 +00:00
despotdaemon%netscape.com
5280f6681c Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132879 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:34:33 +00:00
despotdaemon%netscape.com
79678f92e5 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132878 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:33:51 +00:00
despotdaemon%netscape.com
ec163641f0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132877 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:32:19 +00:00
despotdaemon%netscape.com
73c0e76290 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132876 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:31:04 +00:00
despotdaemon%netscape.com
f8add7b8f6 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132875 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:29:11 +00:00
despotdaemon%netscape.com
9fe0a5a604 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132874 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:27:52 +00:00
despotdaemon%netscape.com
51c63b89d1 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132873 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:26:20 +00:00
pschwartau%netscape.com
1ab9c767b9 New version of the test, by igor@icesoft.no; uses less memory.
git-svn-id: svn://10.0.0.236/trunk@132872 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:26:08 +00:00
despotdaemon%netscape.com
2cff0ee835 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132871 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:25:47 +00:00
despotdaemon%netscape.com
ed7b8b3df0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132870 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:24:46 +00:00
despotdaemon%netscape.com
bf1d9246f5 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132869 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:24:04 +00:00
despotdaemon%netscape.com
313ab78e5a Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132868 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:20:59 +00:00
blakeross%telocity.com
2b732283c3 Remove dl-start obs on shutdown.
git-svn-id: svn://10.0.0.236/trunk@132867 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:17:36 +00:00
despotdaemon%netscape.com
029ab565ef Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132866 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:15:08 +00:00
despotdaemon%netscape.com
cda87186c0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132865 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:14:34 +00:00
despotdaemon%netscape.com
91daec9e5f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132864 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:14:04 +00:00
despotdaemon%netscape.com
c2374bff47 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132863 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:13:27 +00:00
despotdaemon%netscape.com
c88974a0c0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132862 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:10:34 +00:00
despotdaemon%netscape.com
6bff483ad6 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132861 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:08:23 +00:00
sspitzer%netscape.com
c728dcb6d3 landing mscott's mail views work from the ns tree. see #176850
NOT PART OF THE BUILD YET.


git-svn-id: svn://10.0.0.236/trunk@132860 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:53 +00:00
despotdaemon%netscape.com
eac5e63d31 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132859 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:33 +00:00
despotdaemon%netscape.com
09aa224473 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132858 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:02 +00:00
blakeross%telocity.com
4c3a4fe822 Port over a regression fix from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132856 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:36:06 +00:00
blakeross%telocity.com
068952981b Some bulletproofing.
git-svn-id: svn://10.0.0.236/trunk@132855 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:32:53 +00:00
blakeross%telocity.com
0eb1b588aa - Fixing a bug that caused the menubar to remain disabled after customizing the toolbars.
- First cut at pref for a default download directory, and options to open the download sidebar when starting a download and whether to prompt for a filename.  Under construction!


git-svn-id: svn://10.0.0.236/trunk@132854 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:28:30 +00:00
jpierre%netscape.com
43710b3f3b Fix for bug 177798 - NULL pointers in ShutdownCRLCache to allow shutdown/restart
of NSS.


git-svn-id: svn://10.0.0.236/trunk@132852 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:07:48 +00:00
bzbarsky%mit.edu
cbd9c2d9ba Fix some js errors. Bug 163884, patch by wesha@mail.ru (Wesha), r=jag,
sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@132849 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:55:53 +00:00
aaronl%netscape.com
22501b45fa Bug 175321. Proper fix for typeaheadfind crashes using findnext. r=caillon, sr=brendan, a=asa.
git-svn-id: svn://10.0.0.236/trunk@132848 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:29:14 +00:00
aaronl%netscape.com
e72c199b3e Bug 171260. Typeaheadfind in page with frames wrecks normal find. r=akkana, sr=sfraser. a=asa
git-svn-id: svn://10.0.0.236/trunk@132847 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:24:33 +00:00
despotdaemon%netscape.com
0e6a1a486b Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132846 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:16:18 +00:00
despotdaemon%netscape.com
dae3194ef9 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132845 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:11:35 +00:00
despotdaemon%netscape.com
78d128d111 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132844 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:00:24 +00:00
despotdaemon%netscape.com
61e66e6e90 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132843 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:56:00 +00:00
despotdaemon%netscape.com
feded2b6cd Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132842 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:31:59 +00:00
cmanske%netscape.com
4710078ce9 Fixed busted 'deleteTable' feature - silly spelling error, b=174558, r=brade, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@132841 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:20:37 +00:00
blizzard%redhat.com
e1d71da814 Bug #176842. gtk2 UI fonts are wonky. Use the proper default font for gtk2. Make sure to use the gtk2 dpi and xft dpi when they are available and fall back to the physical dpi if they aren't set for xft and gtk2 builds only. r=bryner,sr=shaver,a=asa
git-svn-id: svn://10.0.0.236/trunk@132840 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:06:30 +00:00
cbiesinger%web.de
641a02d414 bug 177661 patch by paper@animecity.nu r=biesi sr=tor a=roc+moz
2 frame GIFs do not animate


git-svn-id: svn://10.0.0.236/trunk@132839 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:46:35 +00:00
rdayal%netscape.com
68af570021 Bug #177382 Changes to comply with configure.in changes for WIN32_LEAN_AND_MEAN
r=leaf, sr=bienvenu, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132838 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:35:08 +00:00
nelsonb%netscape.com
4eb322a2ce Fix several problems related to error messages, including an attempt to
print a null string pointer.


git-svn-id: svn://10.0.0.236/trunk@132837 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:04:33 +00:00
despotdaemon%netscape.com
9d77529f34 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132836 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:03:29 +00:00
nelsonb%netscape.com
6a4a0128ec Reformat text. Fix syntax error in first examples.
git-svn-id: svn://10.0.0.236/trunk@132835 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:03:24 +00:00
despotdaemon%netscape.com
08baf82472 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132834 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:57:45 +00:00
despotdaemon%netscape.com
62b6f1ae96 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132833 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:55:45 +00:00
rogerl%netscape.com
b79c80a6dd Whole slew of Linux build warning fixes. Fixed over-pop from default
constructor.


git-svn-id: svn://10.0.0.236/trunk@132832 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:55:10 +00:00
despotdaemon%netscape.com
e0dbf35e61 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132831 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:54:44 +00:00
despotdaemon%netscape.com
9a6ef6ac2b Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132830 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:51:53 +00:00
seawood%netscape.com
547c4b6421 Install mozilla-config.h during 'make install'.
Bug #177504 r=pavlov a=asa


git-svn-id: svn://10.0.0.236/trunk@132829 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:47:34 +00:00
mikep%oeone.com
90a3c35555 Fixing the ability to import events, when using the wizard.
git-svn-id: svn://10.0.0.236/trunk@132828 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:46:46 +00:00
despotdaemon%netscape.com
4d29544046 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132826 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:35:53 +00:00
despotdaemon%netscape.com
bd9669e729 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132825 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:10:00 +00:00
mcs%netscape.com
17b2cd625b Fix bug # 169975 - LDAP memory cache accesses response
list w/o locking mutex.


git-svn-id: svn://10.0.0.236/trunk@132824 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 19:57:09 +00:00
mikep%oeone.com
cd73dcd4a6 Removing dependency on xmlextras.
git-svn-id: svn://10.0.0.236/trunk@132822 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 17:59:57 +00:00
justdave%syndicomm.com
a8db7cd397 Fix for bug 176509: "(this bug is not in your list)" no longer appears in the navigation bar when you aren't viewing a bug.
Patch by Jody McIntyre <jodym@oeone.com>
r=justdave


git-svn-id: svn://10.0.0.236/trunk@132821 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 16:40:33 +00:00
ccarlen%netscape.com
80957cfc91 Bug 173311 - RealPlayer One 9.0b2 plugin causes crash at startup for Mach-0 build because of symlink (alias) handling problems. r=bnesse/sr=sfraser/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132820 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:45:38 +00:00
mcs%netscape.com
21a4001728 Fix bug # 166189 - Segmentation fault on invalid filter string.
Check that a sequence of set has been created before using
	it inside ber_put_seqorset().


git-svn-id: svn://10.0.0.236/trunk@132819 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:23:29 +00:00
bugreport%peshkin.net
b7c02ddc43 Bug 127200 Query for CC/longdesc/OR takes long time
r=gerv


git-svn-id: svn://10.0.0.236/trunk@132818 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:22:01 +00:00
igor%mir2.org
ab50c0aa1c Fixing 159334: store bytecode indexes as uint16 to extend limit on maximum number of different strings to 64K
git-svn-id: svn://10.0.0.236/trunk@132817 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 14:43:34 +00:00
darin%netscape.com
40b33e4bfa 1) updated IPCM protocol
2) added ipcMessage primitives to simplify IPCM protocol implementation
3) added ipcMessageCast to simplify casting raw messages to specific types
4) added function table in ipcCommandModule


git-svn-id: svn://10.0.0.236/trunk@132815 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 09:08:25 +00:00
dveditz%netscape.com
58daabcffe Don't fire popup blocked event if we decide to open the content in an existing named window (bug 174765 refinement)
r=danm, sr=jag, a=roc


git-svn-id: svn://10.0.0.236/trunk@132813 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 05:20:07 +00:00
chanial%noos.fr
3d95832efc remove read/change/write cookies items in the Script & Windows preference panel
git-svn-id: svn://10.0.0.236/trunk@132812 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 04:38:21 +00:00
chanial%noos.fr
3224abe735 bug 177837: remove help menu in bookmark manager and view source window
git-svn-id: svn://10.0.0.236/trunk@132811 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 04:28:57 +00:00
chanial%noos.fr
11b6b8e87b clicking again on a bookmark in the sidebar does not reload it.
git-svn-id: svn://10.0.0.236/trunk@132810 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:47:10 +00:00
timeless%mozdev.org
11d2657adf Bug 176733 Saving of images from "Page Info" does not work
patch by grigorig@web.de r=db48x sr=bz a=asa


git-svn-id: svn://10.0.0.236/trunk@132808 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:12:10 +00:00
pschwartau%netscape.com
c053b91ca6 Initial add. Regression test for bug 159334.
git-svn-id: svn://10.0.0.236/trunk@132807 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:00:08 +00:00
darin%netscape.com
c7531e775e fixes bug 177326 "Mozilla rapidly repeats requests multiple times"
r=dougt sr=rpotts a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132806 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 01:11:32 +00:00
blythe%netscape.com
4e49ee6eb7 Not part of any build.
Work in progress on heap fragmentation report tool.


git-svn-id: svn://10.0.0.236/trunk@132805 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 00:34:13 +00:00
gerv%gerv.net
7e7244d7d9 Bug 177430 - buglist.cgi needs a CSV output format. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132803 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 23:06:54 +00:00
bugreport%peshkin.net
15e2597f1b Bug 177435 exact match on assignee fails with user matching
patch by not_erik
r=myk,joel


git-svn-id: svn://10.0.0.236/trunk@132800 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:34:42 +00:00
rogerl%netscape.com
1a44acb461 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132799 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:32:08 +00:00
bugreport%peshkin.net
716a660540 Bug 177624 Wildcard rejects --do_not_change-- in mass-change
Patch by not_erik
r=joel


git-svn-id: svn://10.0.0.236/trunk@132798 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:20:26 +00:00
jpierre%netscape.com
50b85efb10 Remove call to PL_ArenaFinish . This effectively shut down NSPR arenas and created problems when restarting NSS . r=relyea
git-svn-id: svn://10.0.0.236/trunk@132797 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:02:10 +00:00
rogerl%netscape.com
7a9dfbb50f Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132796 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:39:47 +00:00
rogerl%netscape.com
c83f345422 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132795 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:25:35 +00:00
leaf%mozilla.org
fca2ef2c1e Automated update
git-svn-id: svn://10.0.0.236/trunk@132794 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:24:53 +00:00
pschwartau%netscape.com
3653104675 Improving comments.
git-svn-id: svn://10.0.0.236/trunk@132793 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:24:25 +00:00
rogerl%netscape.com
ae8854330d Fixing Linux build.
git-svn-id: svn://10.0.0.236/trunk@132792 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:12:59 +00:00
rogerl%netscape.com
f958ea2305 Fixing Linux build.
git-svn-id: svn://10.0.0.236/trunk@132791 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:08:13 +00:00
mikep%oeone.com
5bfe5d3e64 Fixing some small bugs with event selection thanks to the latest fixes.
git-svn-id: svn://10.0.0.236/trunk@132790 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 20:14:12 +00:00
mikep%oeone.com
5e9dccdf1d Fixing search bug so that when you change filter, the search doesn't flash any longer.
git-svn-id: svn://10.0.0.236/trunk@132786 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:12:52 +00:00
blakeross%telocity.com
efeddf44a9 Remove delay in moving finished download to finished download area.
git-svn-id: svn://10.0.0.236/trunk@132785 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:12:39 +00:00
rogerl%netscape.com
00e4cf8333 Removing DikDik files.
git-svn-id: svn://10.0.0.236/trunk@132784 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:06:24 +00:00
blakeross%telocity.com
0d9f1084ac Themes -> Themes and Extensions.
git-svn-id: svn://10.0.0.236/trunk@132783 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:05:58 +00:00
mikep%oeone.com
4d8b211fe3 Code cleanup, fixing bug when user has a search, changing event filter uses the event table with the search results, not all the events.
git-svn-id: svn://10.0.0.236/trunk@132782 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 18:18:31 +00:00
darin%netscape.com
220a0dfe35 eliminate ipcIService::forwardMessage
git-svn-id: svn://10.0.0.236/trunk@132779 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 17:55:19 +00:00
mikep%oeone.com
2339486901 Fixing publishing to FTP URL, bug 177589
git-svn-id: svn://10.0.0.236/trunk@132776 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:41:13 +00:00
caillon%returnzero.com
d5a98a44f6 Bug 177179
slightly optimize inDOMView::GetNodeTypeKey
r=timeless/jkeiser sr=bzbarsky a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132775 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:25:52 +00:00
ccarlen%netscape.com
301a1d42d9 Bug 143086 - Unicode input handler eats Cmd keys. r=brade/sr=sfraser/a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132774 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:09:17 +00:00
mikep%oeone.com
40a2649814 Fixing copy function.
git-svn-id: svn://10.0.0.236/trunk@132772 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:52:32 +00:00
bugreport%peshkin.net
6fcd6b129c Bug 95430 Reopening en masse fails.
Patch by jeff.hedlund
r=justdave, joel


git-svn-id: svn://10.0.0.236/trunk@132771 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:45:19 +00:00
mikep%oeone.com
44986cf788 Fixing problems with upgrading old calendar data.
git-svn-id: svn://10.0.0.236/trunk@132770 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:26:05 +00:00
darin%netscape.com
ad8a995e9f make modules work again under linux
git-svn-id: svn://10.0.0.236/trunk@132769 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 09:21:42 +00:00
darin%netscape.com
977714663d fix compilation problems under linux
git-svn-id: svn://10.0.0.236/trunk@132768 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 08:57:31 +00:00
darin%netscape.com
0236fb0bbe adding IPC framework -- NOT PART OF THE BUILD
git-svn-id: svn://10.0.0.236/trunk@132767 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 08:19:27 +00:00
dveditz%netscape.com
bc174c9e1c bug 157646 corrupt zip archive filesize can lead to heap overrun r=mstoltz, sr=daring, a=roc (plus tab removals)
git-svn-id: svn://10.0.0.236/trunk@132765 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 06:27:20 +00:00
dveditz%netscape.com
691db65f10 bug 164695 prevent heap overrun if jar manifest file has size -1 (corrupt/malicious archive). Also fixes unrelated potential memory leak. r=mstoltz, sr=darin, a=roc
git-svn-id: svn://10.0.0.236/trunk@132764 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 06:23:52 +00:00
justdave%syndicomm.com
adb1d2261d Fix for bug 177099: stored queries ordering and editing were broken after moving to CGI.pm. They work again now.
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@132762 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 05:30:49 +00:00
wtc%netscape.com
a06389d13d Bug 176543: handle the case of invoking a program wit no arguments. The
command line should be an empty string in that case.  Initialize newEnvp.
The patch is contributed by Michael Kaply <mkaply@us.ibm.com>.


git-svn-id: svn://10.0.0.236/trunk@132760 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 05:00:01 +00:00
morse%netscape.com
87e52d629f bug 174104, secure cookies not recognized as secure, r=mstoltz, sr=dveditz, a=chofmann
git-svn-id: svn://10.0.0.236/trunk@132755 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 03:07:29 +00:00
heikki%netscape.com
f1a1bb1003 Bug 152701, XMLExtras properties should not be available in mailnews. r=harishd, sr=dveditz, aroc+moz.
git-svn-id: svn://10.0.0.236/trunk@132754 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:59:12 +00:00
bugreport%peshkin.net
ad78b41096 Bug 175838 Reopening a bug does not clear resolution, nor does selecting 'clear resolution'
patch by jeff.hedlund@matrixsi.com
2xr=gerv


git-svn-id: svn://10.0.0.236/trunk@132753 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:44:05 +00:00
aaronl%netscape.com
a39d16fcfc Bug 175242. Typeaheadfind shouldn't be active in print preview. r=kyle, sr=alecf, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132752 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:38:40 +00:00
aaronl%netscape.com
3d3df84eaf Bug 177083. Mozilla won't start on win95. r=kyle, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@132749 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:15:11 +00:00
jpierre%netscape.com
10b1e97dd0 Fix for 177208 - unmark arena when DER decoding is successful
git-svn-id: svn://10.0.0.236/trunk@132748 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:54:13 +00:00
chanial%noos.fr
d24a94210b fix various DND/copy bookmark/folder issues
git-svn-id: svn://10.0.0.236/trunk@132747 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:30:43 +00:00
igor%mir2.org
5c6f1453af Fixing regression introduced by 1.93: during generation of code for NEW and CALL do not assume that function name index would be the index of the last string in the string table as due to name sharing it can be any index. Instead NEW and CALL generator uses lastStringIndex which is updated in addString and holds the last used string index.
git-svn-id: svn://10.0.0.236/trunk@132746 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:19:53 +00:00
pschwartau%netscape.com
4f11157aa4 Don't ever run shell.js files as tests; they are only utility files.
git-svn-id: svn://10.0.0.236/trunk@132745 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:01:20 +00:00
jpierre%netscape.com
f40d5c295c Fix for bug 175115 . Remove incorrect check for CA cert expiration. Also fix CRL signature verification and clean up internal functions . r=mcgreer,relyea,nelsonb,wtc
git-svn-id: svn://10.0.0.236/trunk@132742 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 23:31:38 +00:00
mikep%oeone.com
e4f69e946d New build, adding in ability to import outlook data (via csv files)
git-svn-id: svn://10.0.0.236/trunk@132741 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 21:50:00 +00:00
mikep%oeone.com
cbfa934ee9 Fixing function name for pressing delete key.
git-svn-id: svn://10.0.0.236/trunk@132740 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 21:45:50 +00:00
pschwartau%netscape.com
b831a9b871 Initial add. Regression test for bug 177314.
git-svn-id: svn://10.0.0.236/trunk@132739 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 20:34:13 +00:00
rogerl%netscape.com
7f7c6b4ffe Fixed finally invocation.
git-svn-id: svn://10.0.0.236/trunk@132737 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 19:10:38 +00:00
relyea%netscape.com
9071d0302f Fix build breakage. Some platforms do not like to assign unsigned char * to
char * without a cast.


git-svn-id: svn://10.0.0.236/trunk@132736 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 19:01:21 +00:00
mikep%oeone.com
e80c5e1cb1 Removing files.
git-svn-id: svn://10.0.0.236/trunk@132735 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:44:58 +00:00
mikep%oeone.com
0970fd5fdd Fixing bug 177299, don't change view if multiple day event is visible.
git-svn-id: svn://10.0.0.236/trunk@132734 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:41:36 +00:00
mikep%oeone.com
edea2c4a83 Fixing bug 177298, problem with event length after dragging and dropping.
git-svn-id: svn://10.0.0.236/trunk@132733 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:34:54 +00:00
mikep%oeone.com
734e881cc5 Changing wording for more accurate descriptions.
git-svn-id: svn://10.0.0.236/trunk@132732 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:23:59 +00:00
mikep%oeone.com
2e39f71443 Removing unused code, still no images working for priority and completed.
git-svn-id: svn://10.0.0.236/trunk@132731 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:23:30 +00:00
mikep%oeone.com
66a723ae96 Changing email so that you can now email more than one event, bug 177344.
git-svn-id: svn://10.0.0.236/trunk@132730 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:15:02 +00:00
mikep%oeone.com
c214f0e8cc Fixing bug 177431
git-svn-id: svn://10.0.0.236/trunk@132729 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:03:30 +00:00
blythe%netscape.com
f431452c8e Not part of any build.
Temporary directories are to be unique.


git-svn-id: svn://10.0.0.236/trunk@132728 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:46:03 +00:00
relyea%netscape.com
bd5463e3f1 The Serial number needs to be the DEREncoded serial number, not the decoded
Serial number.


git-svn-id: svn://10.0.0.236/trunk@132727 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:22:06 +00:00
relyea%netscape.com
56e7c1f580 Check in new certdata file generated from certdata.txt
git-svn-id: svn://10.0.0.236/trunk@132726 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:20:59 +00:00
mikep%oeone.com
324238bf69 Fixing tooltip name.
git-svn-id: svn://10.0.0.236/trunk@132724 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:19:42 +00:00
mikep%oeone.com
16c5ecb786 Chaning tooltip name.
git-svn-id: svn://10.0.0.236/trunk@132723 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:59 +00:00
mikep%oeone.com
f6c8116624 Fixing a spelling mistake, adding in changing the cursor back to normal after dialog has opened.
git-svn-id: svn://10.0.0.236/trunk@132722 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:31 +00:00
relyea%netscape.com
e1172d0384 Allow the builtin's to accept old style serial numbers as well the the correct
PKCS #11 serial numbers.


git-svn-id: svn://10.0.0.236/trunk@132721 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:14 +00:00
mikep%oeone.com
c83052c29a Changing tree to be built from JS function, instead of by hand. This allows sorting on the tasks tree, bug 155888
git-svn-id: svn://10.0.0.236/trunk@132719 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:16:52 +00:00
mikep%oeone.com
e10296682e Moving functions to calendar.js.
git-svn-id: svn://10.0.0.236/trunk@132718 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:14:40 +00:00
mikep%oeone.com
0b5814fc7e Some function renaming.
git-svn-id: svn://10.0.0.236/trunk@132717 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:13:57 +00:00
mikep%oeone.com
949a7968b2 New build.
git-svn-id: svn://10.0.0.236/trunk@132716 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:12:28 +00:00
rogerl%netscape.com
90bc2a1002 Throw across activations.
git-svn-id: svn://10.0.0.236/trunk@132715 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:12:06 +00:00
relyea%netscape.com
8766ccdf71 Make the Serial Numbers DER Wrapped rather than raw serial numbers.
This is required by PKCS #11 and was causing some bugs in NSS 3.6.


git-svn-id: svn://10.0.0.236/trunk@132714 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:09:28 +00:00
mostafah%oeone.com
4b6838ffd3 Fixed some problems with multi-day event displaydates
git-svn-id: svn://10.0.0.236/trunk@132713 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:55:02 +00:00
mkaply%us.ibm.com
09b63cb877 Let's try this again
git-svn-id: svn://10.0.0.236/trunk@132712 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:53:40 +00:00
wtc%netscape.com
b3ac7bbc90 Bug 174143: Removed the obsolete platform.mk file. Do not allow overriding
of PLATFORM by the environment because PLATFORM is a common environment
variable.


git-svn-id: svn://10.0.0.236/trunk@132711 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:50:59 +00:00
karnaze%netscape.com
3d58e9c1e1 bug 176030 - Make Destroy fix up prev/next-in-flow pointers. a=roc, sr=bzbarsky, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@132710 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:33:36 +00:00
seawood%netscape.com
2172faecd7 Fixing OS/2 tinderbox bustage.
Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Bug #177200


git-svn-id: svn://10.0.0.236/trunk@132709 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:00:32 +00:00
rods%netscape.com
ebe3789dd8 1) Adds two bools to the PrintSettings and then when the PS gets
initialized from Prefs or from the Printer they get set. They get unset when
the printer name changes.

This is all necessary because the Page Setup Dialog calls
initPrintSettingsFromPrinter each time it is shown. So if you have set values
they will get "written" over the next time the dialog is shown.

2) Removes a lot of platform specific initialization from nsPrintOptionsImpl
and it now uses just the the "generic" XP routines and is now consistent with
the other platforms for initializing the PS.
Bug 167894 r=dcone sr=kin a=roc


git-svn-id: svn://10.0.0.236/trunk@132708 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:35:22 +00:00
dbaron%fas.harvard.edu
eb403a9137 Back out patch for bug 161109 that implemented a pref for disabling marquee. b=161109 r=hixie a=asa
git-svn-id: svn://10.0.0.236/trunk@132707 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:31:32 +00:00
mikep%oeone.com
fff5970f08 Skin cleanup, also fixes bug 162631 (resizing list cells causes Mozilla to hang.);
git-svn-id: svn://10.0.0.236/trunk@132706 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:14:46 +00:00
dougt%netscape.com
26edb1d662 177063. Linux segmentation fault at startup using xpcom glue. r=alecf, sr=jag, a=roc+moz@cs.cmu.edu
git-svn-id: svn://10.0.0.236/trunk@132705 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:13:00 +00:00
dougt%netscape.com
8ad50dc8b8 177173 - Exports required string headers to SDK, r=jag, sr=alecf, a=robert@ocallahan.org
git-svn-id: svn://10.0.0.236/trunk@132704 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:11:03 +00:00
rods%netscape.com
cad8f62db6 1) Adds two bools to the PrintSettings and then when the PS gets
initialized from Prefs or from the Printer they get set. They get unset when
the printer name changes.

This is all necessary because the Page Setup Dialog calls
initPrintSettingsFromPrinter each time it is shown. So if you have set values
they will get "written" over the next time the dialog is shown.

2) Removes a lot of platform specific initialization from nsPrintOptionsImpl
and it now uses just the the "generic" XP routines and is now consistent with
the other platforms for initializing the PS.
Bug 167894 r=dcone sr=kin a=roc


git-svn-id: svn://10.0.0.236/trunk@132703 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:38:13 +00:00
rods%netscape.com
c31cff0e8e Put in a lot of safety checks and changed where SetPrintSettingsFromDevMode was
called and set into the psWin, now we only Lock the global devmode once.
Bug 169689 r=dcone sr=alecf a=roc


git-svn-id: svn://10.0.0.236/trunk@132702 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:31:58 +00:00
mkaply%us.ibm.com
fe83288963 Backing out this part of change so Os/2 goes green until we find out why this worked on Javier's machine but not the TB
git-svn-id: svn://10.0.0.236/trunk@132701 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:21:32 +00:00
blythe%netscape.com
f51b5571ec Not part of any build.
Work in progress on heap fragmentation tool.


git-svn-id: svn://10.0.0.236/trunk@132700 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:17:15 +00:00
kairo%kairo.at
3e1e257124 Bug 175853, Update localeVersion strings for 1.2 final - and do it correctly, r=jbetak, sr=bzbarsky, a=blizzard
git-svn-id: svn://10.0.0.236/trunk@132698 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 12:41:38 +00:00
igor%mir2.org
861877b9a6 Fixing 177314:
TokenStream.java: third octal digit is a part of the octal escape in strings only if the result is <= 0377.

resources/Messages.properties: removal of unused msg.oct.esc.too.large


git-svn-id: svn://10.0.0.236/trunk@132697 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 09:20:00 +00:00
bryner%netscape.com
56379af0d6 Remove all necko references to dbm - it's no longer needed for anything (part of bug 175741). r=bbaetz,sr=darin, a=roc.
git-svn-id: svn://10.0.0.236/trunk@132696 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 09:09:49 +00:00
gerv%gerv.net
cb3cfcf309 Bug 177351 - checksetup.pl tells about deleting templates in silent-running mode. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132695 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 08:29:45 +00:00
aaronl%netscape.com
94c458512c Bug 175842. Sending MSAA STATE_CHANGE event on old window, should be on new one. r=kyle, sr=jst, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132694 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 07:46:34 +00:00
aaronl%netscape.com
06ac1266b0 Bug 176100. Tabbing out of file control text field selects text. r=jkeiser, sr=bzbarsky, a=roc+moz. Also fixes bug 132557 and bug 141310.
git-svn-id: svn://10.0.0.236/trunk@132693 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 07:34:42 +00:00
bernd.mielke%snafu.de
91bb891a78 layout regression testcase for caption-side, not part of any build
git-svn-id: svn://10.0.0.236/trunk@132690 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 06:31:49 +00:00
bzbarsky%mit.edu
6913435362 Fix bug 151718, patch by db48x@yahoo.com (Daniel Brooks),
r=dean_tessman@hotmail.com, sr=bzbarsky, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132687 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 06:15:53 +00:00
bryner%netscape.com
47dc988ac2 Fix a regression in dynamically setting the src of an image (bug 176926). r=hyatt, sr=bzbarsky, a=brendan.
git-svn-id: svn://10.0.0.236/trunk@132686 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 06:08:02 +00:00
seawood%netscape.com
e510231894 Removing OS/2 support from nsinstall. OS/2 will use a system installed version of nsinstall like the win32 builds.
Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Bug #177200 r=cls a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132685 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 05:53:39 +00:00
dmose%netscape.com
da7c8081cc Make "Analyze Messages" localizable and change phrasing. Part of ongoing spam UI work (bug 169638). Not on in default builds. r/sr=sspitzer; a=asa
git-svn-id: svn://10.0.0.236/trunk@132684 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 05:47:25 +00:00
bzbarsky%mit.edu
c10c49fc49 Fix uri leak. Bug 176985, patch by Harshal <keeda@hotpop.com>,
r=peterv, sr=bzbarsky, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132683 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 04:57:15 +00:00
caillon%returnzero.com
07bd8f50bc Prevent access to compareTreePosition and friends from script.
bug 176135
r/sr=bzbarsky,jst a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132682 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 04:51:37 +00:00
bzbarsky%mit.edu
cb6115b3c3 Return the right originalURI. Bug 171396, r=timeless, sr=darin, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132681 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 04:40:08 +00:00
mstoltz%netscape.com
51f2a63b0c Bug 168316 - When calling from Java into JS, add a "dummy" JS stack frame with
principal information for the security manager. r=dveditz, sr=jst, a=chofmann.


git-svn-id: svn://10.0.0.236/trunk@132679 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 03:15:59 +00:00
pschwartau%netscape.com
d00fdf43c7 Initial add. Testcases created by Brendan in the course of fixing bug 96526.
git-svn-id: svn://10.0.0.236/trunk@132676 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 02:09:53 +00:00
pschwartau%netscape.com
d57f3b3c1b Initial add. Utility file needed for certain tests in js/tests/js1_5/Expressions/.
git-svn-id: svn://10.0.0.236/trunk@132675 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 02:08:46 +00:00
waldemar%netscape.com
10ec807b2e Made === ignore the numbers' types
git-svn-id: svn://10.0.0.236/trunk@132674 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 01:46:55 +00:00
bienvenu%netscape.com
884f5f344e fix problem where folders are left bold even though there are no unread msgs in them, r=rajiv, sr=sspitzer, a=roc+moz 121660
git-svn-id: svn://10.0.0.236/trunk@132673 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 01:33:53 +00:00
wtc%netscape.com
3cb4b59ccc Bug 177201: declare NSS_CMSEncoder_Cancel.
git-svn-id: svn://10.0.0.236/trunk@132671 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 01:31:01 +00:00
kyle.yuan%sun.com
5854d119ea Bug 119696 Many keyboard shortcuts don't work when focus is on a <select> (listbox or drop-down)
r=jkeiser, sr=bzbarsky, a=roc+moz
Thanks for Simford.Dong@sun.com's fix


git-svn-id: svn://10.0.0.236/trunk@132670 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 01:05:43 +00:00
seawood%netscape.com
7515bc1168 Fix --disable-accessibility + --enable-default-toolkit=gtk2 bustage.
Bug #176556 r=cls a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132669 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 01:04:59 +00:00
dougt%netscape.com
41176a6325 fix to make unregistering a category work. r=rginda, sr=dveditz, b=177176 m a=robert@ocallahan.org
git-svn-id: svn://10.0.0.236/trunk@132668 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:57:40 +00:00
bienvenu%netscape.com
d5251dcf0e fix whitelisting in junk mail plugin r=dmose, sr=sspitzer, a=asa, not seen by users 169557
git-svn-id: svn://10.0.0.236/trunk@132667 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:42:10 +00:00
seawood%netscape.com
17a0283d68 Add plugin pkgconfig file to the build.
Bug #174915 r=bryner a=roz+moz


git-svn-id: svn://10.0.0.236/trunk@132666 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:41:08 +00:00
seawood%netscape.com
827da3a2e9 Pkgconfig metafile for plugins
Thanks to braden@endoframe.com for the file.
Bug#174915 r=cls a=roz+moc


git-svn-id: svn://10.0.0.236/trunk@132665 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:40:16 +00:00
seawood%netscape.com
33b9987b45 Add support for dos-paths in GLIB_PREFIX & LIBIDL_PREFIX env vars.
Bug #176302 r=walk84 a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132664 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:30:09 +00:00
bishakhabanerjee%netscape.com
de9946bfd4 creating the cmdtests.sh script - bug 144316
git-svn-id: svn://10.0.0.236/trunk@132663 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:20:10 +00:00
rdayal%netscape.com
cc26effa7a Bug #177250 fix for crash during / after palmsync
The fix is for using the OLE memory management routines instead of the usual ones
for the 'out-parameters' of the MS COM IPalmSync interface used for IPC
between the conduit loaded in the HotSync Manager process and the Mozilla process.
The fix has also been tested by mozilla community person who mostly saw these crashes.

r=ssu, sr=bienvenu, a=roc+moz.


git-svn-id: svn://10.0.0.236/trunk@132662 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:18:51 +00:00
bryner%netscape.com
917a40c721 Prevent allocating nsDOMMutationEvents from the nsDOMEvent-sized arena (an nsDOMMutationEvent is 4 bytes larger and was therefore clobbering the 4 bytes of memory after gPool). Bug 170001, r=dbaron, sr=jag, a=roc.
git-svn-id: svn://10.0.0.236/trunk@132661 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:12:42 +00:00
bryner%netscape.com
ec1ce6b084 Use only fcntl-based profile locking on Mac OS X (disable symlink-based
locking).  Fixes bug 176608.  r=ccarlen, sr=jag, a=roc.


git-svn-id: svn://10.0.0.236/trunk@132660 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 00:06:58 +00:00
bryner%netscape.com
dac55c8f9a Fix links stuck in :hover state after being scrolled off of using the mouse wheel (bug 78765). r=hewitt, sr=hyatt, a=roc.
git-svn-id: svn://10.0.0.236/trunk@132659 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 23:59:08 +00:00
rogerl%netscape.com
6fa4da6257 eIs
git-svn-id: svn://10.0.0.236/trunk@132658 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 23:49:43 +00:00
jpierre%netscape.com
3dd35bdd1c Fix for bug 95311 - copy the DER input key to the arena, and free the arena upon decoding failure.
git-svn-id: svn://10.0.0.236/trunk@132657 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 23:47:31 +00:00
loadrunner%betak.net
3b5bc6f831 b176276, pathtoexe entry in mfcembed registry key under applist incorrect, r=curt, sr=dveditz, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132656 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 23:38:15 +00:00
rogerl%netscape.com
ff1bfbd8b8 Finished switch statements. Added frame temporaries. Moved label allocation
to Validate phase, (and fixed bytecodeContainer bug for functions).


git-svn-id: svn://10.0.0.236/trunk@132655 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 23:34:48 +00:00
peterlubczynski%netscape.com
addf218c82 Removing redundant NPNVDOMDocument added earlier in bug 169513, r=av sr=rpotts a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132653 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 22:54:10 +00:00
jpierre%netscape.com
55bdd5ad07 Use QuickDER to decode DER public key. Bug #95311
git-svn-id: svn://10.0.0.236/trunk@132652 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 22:52:31 +00:00
mikep%oeone.com
91977f27ff Adding in ability to send email alarms to any email address.
git-svn-id: svn://10.0.0.236/trunk@132648 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 21:27:10 +00:00
bienvenu%netscape.com
74f51ccb15 fix handling of spam plugin imap msg fetch requests so they'll go into memory cache correctly, r=dmose, sr=sspitzer, a=asa not visible to user 169557
git-svn-id: svn://10.0.0.236/trunk@132647 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 21:03:07 +00:00
bienvenu%netscape.com
2ec02ed154 fix off by one error when deciding which msgs to score for spam, r=dmose, sr=sspitzer, a=asa not visible to user 169557
git-svn-id: svn://10.0.0.236/trunk@132646 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 21:00:14 +00:00
mikep%oeone.com
84acc2307e Fixing problem with dialog capturing return key.
git-svn-id: svn://10.0.0.236/trunk@132644 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 20:31:32 +00:00
mikep%oeone.com
e8c6b7fa64 Fixing formatting.
git-svn-id: svn://10.0.0.236/trunk@132642 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 20:10:53 +00:00
mikep%oeone.com
8ef372597f Fixing formatting.
git-svn-id: svn://10.0.0.236/trunk@132641 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 20:02:34 +00:00
mikep%oeone.com
4f559fc57f Fixing so that the datepicker calls back to the program after selecting a date.
git-svn-id: svn://10.0.0.236/trunk@132640 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 20:01:10 +00:00
chanial%noos.fr
079e4e557c DND on the home button did not set the home page.
git-svn-id: svn://10.0.0.236/trunk@132639 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 19:55:04 +00:00
mikep%oeone.com
a4dcb245d9 Renaming email event to email selected event, since it only emails one event for now.
git-svn-id: svn://10.0.0.236/trunk@132638 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 19:44:08 +00:00
mikep%oeone.com
2357f3eb78 Fixing bug 171659, renaming email file with .ics extension.
git-svn-id: svn://10.0.0.236/trunk@132637 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 19:43:29 +00:00
darin%netscape.com
8b8ebaa826 marking nsIIOService frozen (b=157131) r=dougt
(this change was originally intended back in august, but we delayed making
the change in case someone came up with additional modifications to the
interface.  that hasn't happened, so marking frozen without changes.)


git-svn-id: svn://10.0.0.236/trunk@132636 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 19:43:00 +00:00
mikep%oeone.com
9b379670d6 Adding ability to sort the list of events, bug 152807.
git-svn-id: svn://10.0.0.236/trunk@132635 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 18:22:17 +00:00
dkl%redhat.com
22e71effe8 Bug 176953 - version not set properly from form value like others in enter_bug.cgi. Patch by dkl; 2xr=justdave
git-svn-id: svn://10.0.0.236/trunk@132634 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 16:27:30 +00:00
gerv%gerv.net
3cd804451f Bug 168191 - Checksetup needs to force template recompilation. Patch by bbaetz; r=gerv. Should fix tindebox bustage.
git-svn-id: svn://10.0.0.236/trunk@132633 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 09:09:34 +00:00
gerv%gerv.net
8c0a7a11cf Bug 173005 - Add bar charts, pie charts etc. to reporting. Patch by gerv; 2xr=joel.
git-svn-id: svn://10.0.0.236/trunk@132632 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 07:44:18 +00:00
leaf%mozilla.org
9bbf3cb383 Automated update
git-svn-id: svn://10.0.0.236/trunk@132631 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 06:24:21 +00:00
mkaply%us.ibm.com
1de06b4e34 #175487
r=cls, a=brendan
Turn on building of OS/2 installer - hurrah!


git-svn-id: svn://10.0.0.236/trunk@132630 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 06:21:36 +00:00
mkaply%us.ibm.com
442487a5ff #175487
r=cls and r=pedemont (sr=blizzard for platform specific stuff), a=brendan
OS/2 packaging scripts


git-svn-id: svn://10.0.0.236/trunk@132629 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 06:19:39 +00:00
hyatt%netscape.com
9742eb5a48 Temporary hack fix for bookmark jumping problem.
git-svn-id: svn://10.0.0.236/trunk@132627 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 03:34:06 +00:00
hyatt%netscape.com
853adbc7f7 Fix for 176181, fix a phoenix-specific cookie bug, code not used by mozilla.
git-svn-id: svn://10.0.0.236/trunk@132626 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 03:20:31 +00:00
waldemar%netscape.com
20d266bfc1 Parametrized floating-point code due to different Common Lisp implementations using different types for IEEE 32 and 64-bit values
git-svn-id: svn://10.0.0.236/trunk@132625 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 02:15:11 +00:00
waldemar%netscape.com
306db32e0c Added :external-name. Made write-group-contents iterative instead of recursive to avoid blowing the stack on lisps that don't do much tail recursion.
git-svn-id: svn://10.0.0.236/trunk@132622 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:13:58 +00:00
waldemar%netscape.com
17010601c0 A few conditionals for CLisp
git-svn-id: svn://10.0.0.236/trunk@132621 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:12:45 +00:00
waldemar%netscape.com
69f006f1fb Wrapped number and string tokens in wrapper types to simplify documentation. Improved comments of Unicode character categories.
git-svn-id: svn://10.0.0.236/trunk@132620 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:12:27 +00:00
waldemar%netscape.com
776ad772c5 Revamped handling of floats, doubles, and longs per the October ECMA meeting
git-svn-id: svn://10.0.0.236/trunk@132619 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:11:32 +00:00
waldemar%netscape.com
ee27660726 Added tt tag
git-svn-id: svn://10.0.0.236/trunk@132618 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:09:30 +00:00
waldemar%netscape.com
6ec23e43b4 Added abs and rat-abs, removed is-initial-identifier-character and is-continuing-identifier-character, and fixed a couple small bugs
git-svn-id: svn://10.0.0.236/trunk@132617 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:08:42 +00:00
waldemar%netscape.com
278675bcdb Added :keyword depictor
git-svn-id: svn://10.0.0.236/trunk@132616 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:07:49 +00:00
seawood%netscape.com
779b4d309d Remove now bogus makefile.win check.
Modify all_modules detection so that we pickup virtual modules too.


git-svn-id: svn://10.0.0.236/trunk@132615 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 01:07:31 +00:00
hyatt%netscape.com
7be8a1548a Don't allow the menubar to be dragged.
git-svn-id: svn://10.0.0.236/trunk@132611 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 00:23:42 +00:00
hyatt%netscape.com
3007b36c4d Make items droppable before and after the menubar.
git-svn-id: svn://10.0.0.236/trunk@132610 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 00:13:49 +00:00
bryner%netscape.com
b8a30c4e62 this event handler doesn't need to return a value
git-svn-id: svn://10.0.0.236/trunk@132609 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-29 00:11:41 +00:00
mkaply%us.ibm.com
18cbc52b16 Update to nsinstall
git-svn-id: svn://10.0.0.236/trunk@132608 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 23:25:11 +00:00
shanjian%netscape.com
6ca97a5e22 #172700 NS_ConvertUTF8ToUCS2() surrogates buffer overflow
allocate enough space for surrogate.
p=jgmyers, r=shanjian, sr=dbaron, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@132607 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 22:56:03 +00:00
ashishbhatt%netscape.com
64865ebee6 adding js file for automation framework
git-svn-id: svn://10.0.0.236/trunk@132606 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 21:57:23 +00:00
mikep%oeone.com
061f9bf078 Fixing location and text of certain aspects of wizard.
git-svn-id: svn://10.0.0.236/trunk@132605 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 21:52:58 +00:00
mikep%oeone.com
3c8b9ae45c Fixing bug 177121, problem with context menu not showing right values for tasks
git-svn-id: svn://10.0.0.236/trunk@132604 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 21:37:27 +00:00
mkaply%us.ibm.com
f4c95f9d5f #175487
r=pedemonte, sr=blizzard, a=tor
OS/2 only - Finishing up OS/2 install wizard work, I swear


git-svn-id: svn://10.0.0.236/trunk@132603 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 20:56:47 +00:00
mostafah%oeone.com
1c677558db Changed the GetNextRecurrence function to support multi-day events. (related to bug 133331)
git-svn-id: svn://10.0.0.236/trunk@132602 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 20:55:28 +00:00
mkaply%us.ibm.com
bc7f0f8561 #175487
r=pedemonte, sr=blizzard, a=tor
OS/2 only - Finishing up OS/2 install wizard work, I swear


git-svn-id: svn://10.0.0.236/trunk@132601 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 20:43:08 +00:00
mikep%oeone.com
47c0de8e64 Fixing name of variable.
git-svn-id: svn://10.0.0.236/trunk@132598 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 20:29:03 +00:00
mikep%oeone.com
b74677366f Fixing bug 172901.
git-svn-id: svn://10.0.0.236/trunk@132597 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 20:26:45 +00:00
rogerl%netscape.com
db69a8edeb Switch statement start.
git-svn-id: svn://10.0.0.236/trunk@132594 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 17:52:33 +00:00
rogerl%netscape.com
775e3a78b5 Fixed activation stack after throw across nested interpreter loop
invocation.


git-svn-id: svn://10.0.0.236/trunk@132592 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 17:21:42 +00:00
mikep%oeone.com
9e3a238eca Fixing location of jslib.
git-svn-id: svn://10.0.0.236/trunk@132586 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 13:40:31 +00:00
bryner%netscape.com
108859fea2 fixing js strict warnings... i'm not sure why this function is returning a value at all
git-svn-id: svn://10.0.0.236/trunk@132585 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 12:03:21 +00:00
bryner%netscape.com
c33807ac70 Fixing some compiler warnings (extra stuff after #endif, no newline at end of file, member initializer ordering, and signed/unsigned comparisons)
git-svn-id: svn://10.0.0.236/trunk@132584 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 11:28:43 +00:00
sspitzer%netscape.com
2c1d96dbeb new icon for the chat button in addressbook from gail. not referenced by any css yet, so not part of the build.
git-svn-id: svn://10.0.0.236/trunk@132582 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 08:40:04 +00:00
rogerl%netscape.com
f98ebb63f8 Handling exceptions in initilizations.
git-svn-id: svn://10.0.0.236/trunk@132581 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 07:37:58 +00:00
dougt%netscape.com
0c4660964f Fixes EPLF dates. patch by bugzilla@w.d6.org, r=dougt, sr=darin, a=blizzard
git-svn-id: svn://10.0.0.236/trunk@132579 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 06:30:16 +00:00
pschwartau%netscape.com
0be6e09dd7 Fixed small bug in reporting of skipped tests.
git-svn-id: svn://10.0.0.236/trunk@132576 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 03:44:09 +00:00
pschwartau%netscape.com
65b6aa9482 Improving efficiency by calling xp_path() as little as possible. Also, never call xp_path() on a user-provided path.
Improving consistency of style in the get_xxx_engine_command() functions.


git-svn-id: svn://10.0.0.236/trunk@132575 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 03:31:03 +00:00
rogerl%netscape.com
bf8d9b697c var definition initialization fixes.
git-svn-id: svn://10.0.0.236/trunk@132574 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-28 02:05:47 +00:00
hyatt%netscape.com
8643163c60 Up the version to 0.4
git-svn-id: svn://10.0.0.236/trunk@132573 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-27 23:19:06 +00:00
hyatt%netscape.com
47c141b617 Fix autocomplete bug. Total hack. No idea what I'm doing, but it works.
git-svn-id: svn://10.0.0.236/trunk@132572 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-27 22:57:59 +00:00
chanial%noos.fr
66dde6e0f9 Set as Bookmarks Toolbar Folder (instead of Personal)
git-svn-id: svn://10.0.0.236/trunk@132569 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-27 03:15:19 +00:00
timeless%mozdev.org
f2091559e1 Bugzilla Bug 176936 minor consistency changes for editproducts and editflags
r=joel


git-svn-id: svn://10.0.0.236/trunk@132568 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-27 00:30:13 +00:00
ian%hixie.ch
b418373042 Two new filters (substr and acronymise), plus renaming uri_parameter to uriparameter to be consistent with the other filters
git-svn-id: svn://10.0.0.236/trunk@132567 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 22:43:01 +00:00
blythe%netscape.com
090a33c3a2 Not part of build.
Polish the output of this trace-malloc tool with some options.


git-svn-id: svn://10.0.0.236/trunk@132566 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 19:24:22 +00:00
kirk.erickson%sun.com
6dd5a63a0e Integrated bundle of changes that we're done on NSS_3_3_2_SUN_PKG_BRANCH.
x86 support (separate prototype_sparc, prototype_i386)
	single updated copyright on common_files
	no pkgdepend in common_files


git-svn-id: svn://10.0.0.236/trunk@132563 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 18:04:40 +00:00
chanial%noos.fr
7e167cabce fix some focus issues
git-svn-id: svn://10.0.0.236/trunk@132562 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 16:53:19 +00:00
bbaetz%student.usyd.edu.au
b8b08c22b9 Bug 147833 - start using CGI.pm
r=gerv, justdave


git-svn-id: svn://10.0.0.236/trunk@132553 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 01:57:09 +00:00
depstein%netscape.com
c9b175b080 Better error checking in QaUtils and webProgLstnr methods. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@132552 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 01:49:44 +00:00
pschwartau%netscape.com
8f5f8e39bb Improving efficiency. Make $win_sep a global variable so we only have to call get_win_sep() once. And then, only use $win_sep if it differs from $path_sep.
git-svn-id: svn://10.0.0.236/trunk@132551 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 01:24:21 +00:00
bbaetz%student.usyd.edu.au
9f6ed64298 Bug 171278 - component/product ids mean that you can't do change queries on
component/product
r=gerv


git-svn-id: svn://10.0.0.236/trunk@132550 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 01:01:41 +00:00
cathleen%netscape.com
1585d53efe update spacetrace catagory rules. not part of the build
git-svn-id: svn://10.0.0.236/trunk@132549 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 00:35:08 +00:00
bzbarsky%mit.edu
1bfdb16272 Initialize variables before using them in conditionals. Bug 122070,
r=cls,pink, sr=bryner, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@132548 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 00:30:25 +00:00
blythe%netscape.com
4eb1f0e81d Not part of build.
Fix for bug 176350, quicker trace malloc stats for performance eyeballing.


git-svn-id: svn://10.0.0.236/trunk@132547 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 00:21:42 +00:00
pschwartau%netscape.com
6004ce8fd0 Removing two calls to xp_path(). They are unnecessary, since xp_path() gets called again later in the program on the same paths. This also fixes a couple of new bugs. Rev 1.41 of jsDriver made xp_path() more subtle on Windows: it may now return paths containing backslashes instead of forward slashes. But backslashes cause the Perl methods |join| and |grep|, both of which are used in jsDriver, to fail. So we are now delaying any calls to xp_path() until after those methods are used.
git-svn-id: svn://10.0.0.236/trunk@132545 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-26 00:11:50 +00:00
nelsonb%netscape.com
3648789743 Plug cert leak in NSS_SMIMESignerInfo_SaveSMIMEProfile. Bug 176799.
Patch contributed by Kai Engert.


git-svn-id: svn://10.0.0.236/trunk@132542 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 22:46:48 +00:00
hyatt%netscape.com
4bc27725bb Add the ability to add sites by hand to the popup whitelist.
git-svn-id: svn://10.0.0.236/trunk@132541 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 21:55:48 +00:00
smontagu%netscape.com
501a23fc5a Bug 176595: crash caused by wrong parent deleting the next in flow child. r=alexsavulov, sr=dbaron, a=dbaron.
git-svn-id: svn://10.0.0.236/trunk@132540 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 21:40:32 +00:00
axel%pike.org
ea6a189a5f bug 54659, close() in files in transformiix standalone, not part of build, r=sicking, sr=peterv, a=blizzard
git-svn-id: svn://10.0.0.236/trunk@132539 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 20:52:29 +00:00
mikep%oeone.com
775951250c A ton of fixes for the calendar. Multiple calendar info is now stored in RDF instead of prefs, there's a new datepicker and I've integrated changes from OEone into our calendar.
git-svn-id: svn://10.0.0.236/trunk@132536 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 19:28:14 +00:00
hyatt%netscape.com
b62e97abb2 make ctrl+num switch to tabs instead of alt+num
git-svn-id: svn://10.0.0.236/trunk@132534 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 18:13:29 +00:00
rogerl%netscape.com
20c78d8a62 Fixed Number.NaN
git-svn-id: svn://10.0.0.236/trunk@132533 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 18:03:19 +00:00
rogerl%netscape.com
a8ca38540c Added separate number class and initialization.
git-svn-id: svn://10.0.0.236/trunk@132532 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 17:58:43 +00:00
rogerl%netscape.com
da8f29a630 hey rog
git-svn-id: svn://10.0.0.236/trunk@132530 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 16:15:55 +00:00
cltbld%netscape.com
570c490a69 Moving scrape logic over to perl side, insert unique token here. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@132529 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 16:00:31 +00:00
mkaply%us.ibm.com
8403f246c7 #176084
r=cls, a=dbaron
Packaging updates for OS/2


git-svn-id: svn://10.0.0.236/trunk@132527 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 14:54:39 +00:00
timeless%mozdev.org
afc4689ea0 Bug 155696 MOZ_PLUGIN_PATH should support colon-delimited PATH syntax
r=ccarlen sr=shaver a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132526 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 13:08:44 +00:00
wtc%netscape.com
864087d9c6 Bug 168831: fixed the bug that PR_Poll was ignoring out_flags reported by
the poll methods of I/O layers on the Mac.  This patch was written by
jgmyers and reviewed by sfraser and wtc.


git-svn-id: svn://10.0.0.236/trunk@132525 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 12:43:40 +00:00
seawood%netscape.com
8e59542ade Make activestate perl happy.
git-svn-id: svn://10.0.0.236/trunk@132523 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 10:57:12 +00:00
seawood%netscape.com
811ce53051 XSLT standalone builds are special
Bug #173066


git-svn-id: svn://10.0.0.236/trunk@132522 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 10:13:27 +00:00
seawood%netscape.com
a66f96099c Add hack to generate xpidl Makefile first for standalone build.
Bug #170366


git-svn-id: svn://10.0.0.236/trunk@132521 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 09:48:06 +00:00
seawood%netscape.com
c0f52a0672 Pull uniq.pl along with modules.mk so that pulls of the standalone modules don't croak.
Bug #173066


git-svn-id: svn://10.0.0.236/trunk@132517 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 09:22:44 +00:00
hyatt%netscape.com
f86ced4af8 Patch phoenix to use the whitelist instead of the blacklist.
git-svn-id: svn://10.0.0.236/trunk@132516 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 08:21:36 +00:00
seawood%netscape.com
6976ecced3 Update standalone build section using REQUIRES-data
Bug #170366 r=mcafee a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132512 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 06:02:20 +00:00
seawood%netscape.com
89dca9bae5 Build changes to enhance --enable-standalone-modules builds using REQUIRES-based metadata.
Bug #173066 r=mcafee a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132511 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 05:59:52 +00:00
curt%netscape.com
7d7c725031 General cleanup of uninstall logic for shared installations (i.e. GRE).
(Bug #173893, r=jbetak, sr=dveditz, also fixes #173597)


git-svn-id: svn://10.0.0.236/trunk@132510 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 05:16:32 +00:00
rginda%netscape.com
4a419c26e3 venkman only, bug 176604, a=dbaron@fas.harvard.edu
* Fixes errors in the default string bundle
* Prevents a double-click on a scrollbar from being interpreted as a
double-click on the currently selected item
* Displays the value for Boolean and Number objects in the Local Variables and
Watch views.
* Fixes a problem saving profile data on versions of Mozilla from before Sept. 2002
* Makes breakpoints set as a result of a ``Scan for Meta Comments'' act as
future breakpoints, as well as hard breakpoints, so you don't have to rescan
after reloading.
* Fixes the "Two help menus" problem on the Mac (bug 162285)


git-svn-id: svn://10.0.0.236/trunk@132509 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 05:03:43 +00:00
curt%netscape.com
06dff986f9 Need to include GREUser in the command-line for Add/Remove Programs
(Bug #175422, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@132508 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 05:00:10 +00:00
bernd.mielke%snafu.de
c43119a53d pass selection correctly to the children of a caption, bug 164313, r=dbaron sr=bzbarsky a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132507 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:53:41 +00:00
dveditz%netscape.com
fb55943dc5 bug 174765 restoring critical permission manager initialization that reviewers nitpicked out.
git-svn-id: svn://10.0.0.236/trunk@132505 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:46:19 +00:00
mkaply%us.ibm.com
9d2ee03699 #176084
r=cls, a=dbaron
Packaging updates for OS/2


git-svn-id: svn://10.0.0.236/trunk@132504 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:33:14 +00:00
seawood%netscape.com
03f3e7bae7 Update REQUIRES meta-data from recent build.
Bug #173066 r=mcafee a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132503 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:16:07 +00:00
seawood%netscape.com
3e3cf2f0c6 Modifying module-dep scripts to allow them to generate a full modules.mk & allmakefiles.sh useful for building any module using --enable-standalone-modules.
Bug #173066 r=mcafee a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132502 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:09:13 +00:00
bugreport%peshkin.net
e553b3cf3a Bug 162990
Adding missing new file


git-svn-id: svn://10.0.0.236/trunk@132501 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 04:04:12 +00:00
bugreport%peshkin.net
63f877b3c0 Bug 162990 Shorthand/wildcard entry for login names in assign, cc, qa, fields
patch by not_erik@dasbistro.com
r=joel, myk


git-svn-id: svn://10.0.0.236/trunk@132500 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 03:59:35 +00:00
nelsonb%netscape.com
1bebb07ba4 Add new function CERT_VerifySignedDataWithPublicKey containing common code
factored from existing functions CERT_VerifySignedDataWithPubKeyInfo and
CERT_VerifySignedData.  Bug 174193.


git-svn-id: svn://10.0.0.236/trunk@132499 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 03:21:24 +00:00
aaronl%netscape.com
abe8120f48 Bug 175827. Accessibility APIs: XUL and HTML comboboxes - when pulled down, should have initial MSAA focus event on first focused option. r=kyle, sr=alecf, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132498 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:53:45 +00:00
aaronl%netscape.com
d56ed9e474 Bug 175815. Accessibiltiy API's: don't fire MENUPOPUPSTART or MENUPOPUPEND events for HTML/XUL comboboxes. r=kyle, sr=alecf, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132497 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:50:24 +00:00
aaronl%netscape.com
c4f5d8edac Bug 175814. MSAA menubar should have accessible name 'Application'. r=kyle, sr=alecf, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132496 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:47:05 +00:00
blizzard%redhat.com
32f70d51ac Bug #176518. Fix focus on inital startup. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@132495 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:46:17 +00:00
cltbld%netscape.com
812df3035b add diff to log. typo in rename. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@132494 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:32:42 +00:00
dveditz%netscape.com
603cd641eb Backend changes to support popup blocking whitelists. No Mozilla UI yet but used by Phoenix. bug 174765 r=danm,sr=jag,a=brendan
git-svn-id: svn://10.0.0.236/trunk@132493 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:31:12 +00:00
blizzard%redhat.com
988abdc3a0 bug #149390. Link against mozjs, not js. Patch by braden@endoframe.com. r=blizzard, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132492 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:30:37 +00:00
blizzard%redhat.com
0c2f095537 Bug #149388. fix mozilla-js.pc. patch by braden@endoframe.com, r=blizzard, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132491 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:28:34 +00:00
aaronl%netscape.com
8c5cbabfa5 Bug 174902. HTML/XUL onchange events should not be used for MSAA EVENT_STATE_CHANGE events. r=kyle, sr=alecf, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132490 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 02:00:18 +00:00
bzbarsky%mit.edu
31e4da2ff8 Add AppendObjects/InsertObjectsAt to nsCOMArray. Bug 175137,
r=timeless, sr=alecf, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132489 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 01:40:50 +00:00
mstoltz%netscape.com
b995de141a Bug 32571 - Don't allow scripts from content to close windows with a null opener.
r=heikki, sr=jst, a=dbaron.


git-svn-id: svn://10.0.0.236/trunk@132488 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 01:08:29 +00:00
beard%netscape.com
0c3c8a8afa don't require release specific configuration for Darwin [not part of build]
git-svn-id: svn://10.0.0.236/trunk@132487 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 01:01:34 +00:00
aaronl%netscape.com
228c15696a Bug 141880. Always report same hwnd for MSAA focus events as the hwnd for the current system focus. r=jgaunt, sr=bryner, a=roc+moz. Bug 174796. XUL browser's MSAA cache not working correctly. r=jgaunt, sr=bryner, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132486 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:31:23 +00:00
cltbld%netscape.com
0405e6cca5 Moving codesize test reporting to perl-side. Added graph support. Fixed units to bytes. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@132485 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:23:18 +00:00
aaronl%netscape.com
a50e776472 Bug 173973. typeahead wrong behavoiur if the search starts with two equals characters. r=caillon, sr=bzbarsky, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132483 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:17:50 +00:00
jpierre%netscape.com
b979c8298d Fix for 169038 - bump builtins library version to 1.20 on the tip
git-svn-id: svn://10.0.0.236/trunk@132482 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:17:37 +00:00
timeless%mozdev.org
afe1cdc057 Bug 175169 file size textbox in element properties not read only
patch by neil.marshall@sympatico.ca r=dean_tessman@hotmail.com sr=jag a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132481 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:17:35 +00:00
bryner%netscape.com
0ac938ba5f Make sure a new image frame is constructed if the src of an image is changed and we don't have an image frame for the element (bug 228280). r=dbaron, sr=jst, a=dbaron.
git-svn-id: svn://10.0.0.236/trunk@132479 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:16:35 +00:00
aaronl%netscape.com
37391bc49d bug 174978. Accessibility APIs: when exposing <select>, accidentally exposing lots of garbage children. Also, this prevents it from stopping when there is a comment between options. r=kyle, sr=bzbarsky, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132478 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:12:28 +00:00
aaronl%netscape.com
b2894dacc9 Bug 173580. Active Accessibility: unable to get keyboard shortcut for Anchor text node. r=kyle, sr=alecf, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132477 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:08:44 +00:00
aaronl%netscape.com
fdf6c4e28e Bug 173791. Accessibility API bug: GWL_ID (Control ID) is only supposed to report 0 (UI) or 1 (content). r=jgaunt, sr=bzbarsky, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132476 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:03:47 +00:00
jaggernaut%netscape.com
3961099bb6 Bug 171274: check parent shell type for primary content frames. r=dbaron, sr=jst, a=drivers
git-svn-id: svn://10.0.0.236/trunk@132475 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-25 00:00:54 +00:00
aaronl%netscape.com
7889064681 Bug 96446. Regression: right-clicking location bar selects entire URL even if location bar already has focus. r=dean, sr=bzbarsky, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132474 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 23:55:00 +00:00
bryner%netscape.com
d9956db000 Fix gtk native theme crash on solaris (bug 175755) by not relying on gdk_error_trap_push and instead using our own X error handler (and restoring the old handler after the painting operation is finished). r=blizzard, sr=jag, a=dbaron.
git-svn-id: svn://10.0.0.236/trunk@132473 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 23:53:46 +00:00
rogerl%netscape.com
09c78e6f8f Number class.
git-svn-id: svn://10.0.0.236/trunk@132471 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 23:12:24 +00:00
brendan%mozilla.org
e6437f1536 Fix bug where lightweight function expression-statement result would contaminate caller result via js_Interpret's *result pigeon-hole, via better JSOP_POP vs. JSOP_POPV instruction selection (176125, r=shaver, a=dbaron).
git-svn-id: svn://10.0.0.236/trunk@132470 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 21:57:40 +00:00
despotdaemon%netscape.com
5b1d79d178 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132469 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 21:44:38 +00:00
blythe%netscape.com
bb8dd28832 Not part of build.
Improve the zero drift composition by also ignoring negative and positive
parts when zero sum.


git-svn-id: svn://10.0.0.236/trunk@132468 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 21:15:20 +00:00
akkana%netscape.com
2557fc84c3 176505: Fix composer/mail compose regression, back out jag. a=blizzard & #mozilla
git-svn-id: svn://10.0.0.236/trunk@132467 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 19:58:36 +00:00
tara%tequilarista.org
98e33a62b2 Partial fix for bug 104313, making the default behavior of the diff page be correct, at least
git-svn-id: svn://10.0.0.236/trunk@132466 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 17:53:38 +00:00
mikep%oeone.com
e832485a66 Adding in datepicker xbl component, and jslib files which are now needed by the calendar.
git-svn-id: svn://10.0.0.236/trunk@132465 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 17:21:24 +00:00
rogerl%netscape.com
1fe2c78a6a Parameter/argument matching.
git-svn-id: svn://10.0.0.236/trunk@132464 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 17:01:36 +00:00
mikep%oeone.com
50d2a613dc FIxing comment.
git-svn-id: svn://10.0.0.236/trunk@132463 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 16:57:19 +00:00
ccarlen%netscape.com
d2ed2fb495 Bug 172462 - For Mach-0, drag and drop of file onto browser doesn't work. It was because some code was #ifdef'd out for lack of nsILocalFileMac. r=cls/sr=sfraser/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132461 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 13:39:26 +00:00
timeless%mac.com
4c370b4d3c Bug 158227 "fontdef" is appearing in Site Navigation Bar
patch by gregvalure@wanderlife.com r=timeless sr=jst a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132460 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 10:52:04 +00:00
igor%mir2.org
5d19c06ee6 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=173906: change Codegen.visitCall to check for dynamic scope flag when calling
direct call target


git-svn-id: svn://10.0.0.236/trunk@132459 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 10:05:36 +00:00
igor%mir2.org
8d991ff9c8 Using ThreadLocal under JDK >= 1.2 in Context.enter/Context.exit so they do not need to synchronize on global Context.threadContexts object as java.lang.ThreadLocal allows to associate a Context instance with the current thread in a completely synchronization-free way.
When ThreadLocal is not available (JDK 1.1), the old way of doing things is used.


git-svn-id: svn://10.0.0.236/trunk@132458 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 10:04:30 +00:00
rods%netscape.com
db61201a30 change STF threshold to 60%
Bug 175316 r=dcone sr=alecf a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132457 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 09:31:52 +00:00
dveditz%netscape.com
818e404c3b Apply bug 171441 fix to unix, os2 and mac
git-svn-id: svn://10.0.0.236/trunk@132456 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 08:32:19 +00:00
varga%netscape.com
7999d82706 Fix for regression bug 174432. toolbox no longer picks up -moz-appearance
r=bryner, sr=ben, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132455 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 07:32:08 +00:00
dmose%netscape.com
0b4803ce0e Ongoing spam-filtering work for the front end (not yet exposed to the user in default builds). Cleans up unnecessary and partially working UI items; fixes gcc warnings; fixes 3/5 state plugin by adding junkscoreorigin property; moves some plugin interaction from mailCommand.js to nsMsgDBView.cpp. r=sspitzer@netscape.com, sr=bienvenu@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132454 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 07:03:04 +00:00
justdave%syndicomm.com
e953792d34 require Perl 5.6
git-svn-id: svn://10.0.0.236/trunk@132453 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 06:46:22 +00:00
gerv%gerv.net
6f344f4688 Bug 172874 - cvs remove old editattachstatus templates, take 2. All tests still pass. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@132452 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 06:45:18 +00:00
mkaply%us.ibm.com
e950e2de7b Trying this again with the correct case for LICENSE and README.txt
git-svn-id: svn://10.0.0.236/trunk@132451 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 05:14:50 +00:00
mkaply%us.ibm.com
6a92a9cb49 Backing out because of bustage
git-svn-id: svn://10.0.0.236/trunk@132450 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 05:11:51 +00:00
mkaply%us.ibm.com
567d5c71fb Os/2 only - Not part of build - will never be part of build - update to perl helper script
git-svn-id: svn://10.0.0.236/trunk@132449 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:58:46 +00:00
dveditz%netscape.com
580631b564 bug 171441 delete component registry (under its new name) on upgrade to avoid various problems caused by component-combining
r=dougt,sr=bz,a=roc


git-svn-id: svn://10.0.0.236/trunk@132448 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:57:03 +00:00
mkaply%us.ibm.com
a4faf72d7d Os/2 only - Not part of build - will never be part of build - helper perl script to build install packaging for debug purposes
git-svn-id: svn://10.0.0.236/trunk@132447 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:45:08 +00:00
blizzard%redhat.com
2a78ed0114 fix problems with icons/ dir. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@132446 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:43:27 +00:00
seawood%netscape.com
12da5ad8cc Override libdir, bindir & sharedir when calling NSPR's real_install.
Bug #174336 r=bryner a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132445 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:39:50 +00:00
jaggernaut%netscape.com
c046c00f8d Forgot to add comment.
git-svn-id: svn://10.0.0.236/trunk@132444 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:37:33 +00:00
jaggernaut%netscape.com
5bc0accd00 Bug 171274: check shell type for primary content frames. r=/sr=jst,hyatt, a=drivers
git-svn-id: svn://10.0.0.236/trunk@132443 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:32:20 +00:00
mkaply%us.ibm.com
2cf72bf728 #163354
r=cls, a=dbaron
Copy readme and license into dist/bin


git-svn-id: svn://10.0.0.236/trunk@132442 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:24:31 +00:00
wtc%netscape.com
92651ad585 Bug 115865: our code only uses the lower 32 bits of the result of
QueryPerformanceFrequency, so assert that the higher 32 bits are all zeros.


git-svn-id: svn://10.0.0.236/trunk@132441 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:10:25 +00:00
akkana%netscape.com
09ff01eacd 171003: shift-tab shouldn't land on images twice: add a comment. r=aaronl, sr=bryner, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132440 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 04:02:42 +00:00
akkana%netscape.com
1738b3cc52 171003: shift-tab shouldn't land on images twice. r=aaronl, sr=bryner, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132439 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:53:08 +00:00
justdave%syndicomm.com
4d28894838 Backing out checking for bug 172874 because it broke the tree.
git-svn-id: svn://10.0.0.236/trunk@132438 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:52:38 +00:00
akkana%netscape.com
5072c474cc 176355: Warning fix, remove unused var. r=dmose, sr=bz, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132437 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:45:23 +00:00
darin%netscape.com
fd3783c18d fixes bug 174984 "Prefetch requests should send Referer" r=gagan,mstoltz
sr=bzbarsky a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132436 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:17:44 +00:00
timeless%mac.com
2a8d75a3c0 Bug 77716 Scrollbar is loading asynchronously! - Trunk [@ nsCSSFrameConstructor::ConstructDocElementFrame] [@ .__ptr_glue - nsCSSFrameConstructor::ContentInserted]
patch by hyatt r=jag,dbaron sr=bz, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132435 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:11:53 +00:00
bolian.yin%sun.com
4994ac0bc8 Bug 173848 the Root/Application object got from an event by "get_parent" is not the same with the original Root/Application Object.
This is NOT for default build


git-svn-id: svn://10.0.0.236/trunk@132434 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 03:06:04 +00:00
timeless%mac.com
c16e41abd4 Bug 169593 "Mozilla" hard-coded in about.xhtml (about:) - use &brandShortName;
patch by riceman+bmo@mail.rit.edu r=timeless sr=darin a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132433 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 02:52:01 +00:00
roc+%cs.cmu.edu
d037648b47 Bug 170688. Make nsAbsoluteContainingBlock::IncrementalReflow really incrementally reflow every absolute child that needs it, even if we find that a full block reflow will be necessary. r=dbaron,sr=kin,a=asa
git-svn-id: svn://10.0.0.236/trunk@132432 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 02:39:31 +00:00
dbaron%fas.harvard.edu
b95a59cead Attempt to fix crash in ~nsDownloadManager by making global variables |static| and by protecting against |Init| failure and multiple instances of service. b=171782 r=blake sr=bzbarsky a=blizzard
git-svn-id: svn://10.0.0.236/trunk@132431 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 02:19:36 +00:00
naving%netscape.com
6264345f18 175795 r=rdayal sr=bienvenu fixing a crash in purgeService by making mPurgeArray not a pointer of nsVoidArray
mPurgeArray has lifetime equal to that of nsMsgPurgeService


git-svn-id: svn://10.0.0.236/trunk@132430 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 02:06:03 +00:00
bolian.yin%sun.com
bb0db01c3f 173640 [gtk2] Location bar autocomplete lists display incorrectly
r=blizzard. This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@132429 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 02:00:47 +00:00
nelsonb%netscape.com
8ee0616d0c Add -v option, which prints email addresses in certs. This excersizes
the new functions for extracting email addresses from certs.  Bug 152986.


git-svn-id: svn://10.0.0.236/trunk@132427 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 01:40:40 +00:00
akkana%netscape.com
cbdef0d635 110949: preserve quote status from Edit Draft. r=ducarroz sr=sspitzer a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132426 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 01:29:37 +00:00
cltbld%netscape.com
ddeaa052b4 First pass at garrett codesize test.
git-svn-id: svn://10.0.0.236/trunk@132424 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 01:07:14 +00:00
cltbld%netscape.com
f0abb92ad3 Move temp files to cwd instead of /tmp, now in the form codesighs/PID. Added tinderbox-only output clauses so I can scan the logs for data. r=garrett
git-svn-id: svn://10.0.0.236/trunk@132423 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 01:03:47 +00:00
bzbarsky%mit.edu
36a419cd5a need to NS_INIT_ISUPPORTS to prevent thresafety assertions. bug 175437,
r=timeless, sr=alecf, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132422 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 01:03:00 +00:00
sspitzer%netscape.com
80b2d8ee10 updating junk mail button icons from gail. a=asa, (part of bug #169638. not visible to the user.)
git-svn-id: svn://10.0.0.236/trunk@132421 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 00:41:50 +00:00
bishakhabanerjee%netscape.com
81e40f537d commented out unchecked in tests
git-svn-id: svn://10.0.0.236/trunk@132420 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-24 00:19:53 +00:00
blythe%netscape.com
538dc3abb4 Not part of the build.
Change output of the diff tool to give the composition of the result.
In other words, give the positive and negative numbers which result in the
sum of the overall change.


git-svn-id: svn://10.0.0.236/trunk@132419 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 23:57:59 +00:00
jpierre%netscape.com
ea0798106c Fix comment formatting style
git-svn-id: svn://10.0.0.236/trunk@132418 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 23:41:02 +00:00
jpierre%netscape.com
b43037d69f Fix for bug 95311 - replace assertion with comments
git-svn-id: svn://10.0.0.236/trunk@132417 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 23:18:17 +00:00
relyea%netscape.com
a316483397 Make sure the array is big enough to handle all the cases.
git-svn-id: svn://10.0.0.236/trunk@132416 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 22:51:10 +00:00
rogerl%netscape.com
68b6ee1746 Conditional & start parameter frame work.
git-svn-id: svn://10.0.0.236/trunk@132415 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 22:28:37 +00:00
gerv%gerv.net
cb24b10eab Bug 171770 - check in Bugzilla Helper. Code by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@132414 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 22:15:16 +00:00
gerv%gerv.net
1ecf4e93f7 Bug 172874 - cvs remove old attachstatus templates. "patch" by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@132413 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 22:11:06 +00:00
nelsonb%netscape.com
cbddd29696 Include certi.h to resolve invocation of undeclared function.
git-svn-id: svn://10.0.0.236/trunk@132412 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 22:00:48 +00:00
chanial%noos.fr
ae66c4dcde and more again 'open in tabs' menuitem fixing
git-svn-id: svn://10.0.0.236/trunk@132411 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 21:57:50 +00:00
chanial%noos.fr
8d18bc6949 more 'open in tabs' menuitem fixing
git-svn-id: svn://10.0.0.236/trunk@132410 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 21:41:45 +00:00
mikep%oeone.com
7a9f7c181b Fixing bug 172961, problem with doctype not matching root type.
git-svn-id: svn://10.0.0.236/trunk@132409 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 20:58:52 +00:00
nelsonb%netscape.com
3162991a34 Add 2 new functions to NSS, so an application can get a list of all
email addresses in a cert.  Bug 152986.
Modified Files: lib/nss/nss.def lib/certdb/alg1485.c lib/certdb/cert.h
                lib/certdb/certdb.c lib/certdb/certi.h


git-svn-id: svn://10.0.0.236/trunk@132408 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 20:50:51 +00:00
wtc%netscape.com
b18777f1e8 The version of the builtin root certs module is now specified in nssckbi.h.
git-svn-id: svn://10.0.0.236/trunk@132406 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 19:04:22 +00:00
blizzard%redhat.com
90c4427a52 Bring spec files up to date. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@132405 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 17:17:50 +00:00
rogerl%netscape.com
12d7b554a8 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@132404 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 16:15:48 +00:00
blizzard%redhat.com
6dc418b1ea Backout unapproved checkin for bug #104371.
git-svn-id: svn://10.0.0.236/trunk@132403 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 15:18:13 +00:00
glazman%netscape.com
882fa73599 Composer's struct toolbar caused regression in mail composition + UI polish ; b=175276, fix by neil@parkwaycc.co.uk, r=glazman, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@132402 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 12:09:02 +00:00
mkaply%us.ibm.com
3ee1adb371 #104371
r=mkaply, sr=blizzard
Corresponding OS/2 fix


git-svn-id: svn://10.0.0.236/trunk@132401 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 12:08:05 +00:00
chanial%noos.fr
1784c82911 some cleanup
git-svn-id: svn://10.0.0.236/trunk@132400 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 11:56:40 +00:00
chanial%noos.fr
745ed7eb07 don't override single tab when pref is 'append'
git-svn-id: svn://10.0.0.236/trunk@132399 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 10:57:20 +00:00
igor%mir2.org
e148a3be8f I modified Context.enter/Context.exit to remove explicit synchronization on threadContexts as implicit implicit synchronization when calling threadContexts.get/threadContexts.put/threadContexts.remove is enough to ensure thread safety. It reduces time spend in synchronized code so Context.enter/Context.exit is less problematic with script execution on many threads.
The change also allows with simple modifications of Context.getCurrentContext and Context.setThreadContext to use java.lang.ThreadLocal from JDK 1.2 to remove any synchronization on global data structures during Context.enter/Context.exit/Context.getCurrentContext.


git-svn-id: svn://10.0.0.236/trunk@132398 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 09:56:26 +00:00
bryner%netscape.com
8c930e8298 Only build in themes/classic/global/unix on gtk and gtk2. In particular, don't go in there on Mac OS X, so that we don't override the Mac css with the Unix css. Bug 172022, r=cls, a=brendan.
git-svn-id: svn://10.0.0.236/trunk@132396 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 06:36:32 +00:00
rogerl%netscape.com
50c732eb79 Fixed 'load' to load into global scope.
git-svn-id: svn://10.0.0.236/trunk@132395 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 05:47:43 +00:00
jay.yan%sun.com
265291aada bug 146108, popup menu position wrong after opening tabs. patch=robin,r=blizzard,sr=bryner,a=asa
git-svn-id: svn://10.0.0.236/trunk@132394 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 04:24:57 +00:00
hyatt%netscape.com
3dbbc65466 Fix for 104371, SHIFT not being set correctly in the DOM, i.e., the SHIFT+space
keybinding didn't work.  r=blizzard,brade sr=blake


git-svn-id: svn://10.0.0.236/trunk@132393 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 03:15:42 +00:00
timeless%mac.com
5fc3a333a6 Bug 96994 Page info > Images doesn't list background images
patch by db48x@yahoo.com r=bz sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@132392 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 03:08:10 +00:00
rogerl%netscape.com
55237b8c68 Error reporting fixes.
git-svn-id: svn://10.0.0.236/trunk@132391 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 03:02:53 +00:00
jpierre%netscape.com
e0e121590b Up library number for TC roots - bug #169038
git-svn-id: svn://10.0.0.236/trunk@132388 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-23 01:38:57 +00:00
rogerl%netscape.com
9ff4fa0e5b Error reporting fixups.
git-svn-id: svn://10.0.0.236/trunk@132384 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 23:44:32 +00:00
ducarroz%netscape.com
093081c76b Fix for bug 175223. We need to reset the stored message body before getting the new one from editor. R=varada, SR=sspitzer, A=asa
git-svn-id: svn://10.0.0.236/trunk@132382 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 23:23:56 +00:00
jfrancis%netscape.com
c18db78f45 mac port of layout-debug idl, plugin, and component
git-svn-id: svn://10.0.0.236/trunk@132381 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 21:59:34 +00:00
wtc%netscape.com
fbe2f49a08 Bug 175668: merged the fix for the pointer aliasing bug from the 2001
version of dtoa.c.  Removed the workaround of disabling compiler
optimizations on AIX.
Modified Files: Makefile.in prdtoa.c


git-svn-id: svn://10.0.0.236/trunk@132379 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 21:28:03 +00:00
igor%mir2.org
68e4da5809 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=173180
Merges utf8ToOneUcs4Char body into the decode method and adds checks
for overlongs to follow SpiderMonkey.


git-svn-id: svn://10.0.0.236/trunk@132378 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 21:22:44 +00:00
blizzard%redhat.com
498bf9acdf Bug #144215. gtk2 Mozarea not finalized on Destroy. Patch from mpeseng@tin.it. r=blizzard Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@132376 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 20:44:18 +00:00
sicking%bigfoot.com
f55387b5f5 Bug 158457: Properly call StartDocumentLoad when loading XSLT stylesheets and let that deal with stopping scripts and stylesheets from being loaded instead of manually stopping that in the XSL contentsink.
r=harishd sr=peterv a=asa


git-svn-id: svn://10.0.0.236/trunk@132375 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 20:09:13 +00:00
varga%netscape.com
830f71fa79 Fix for bug 134824. Column Sorting in the Download Manager has no effect.
r=neil, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@132374 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 19:49:29 +00:00
jaggernaut%netscape.com
04516f219e Bug 172716: Fix composer Browse button. r=cmanske, sr=dveditz, a=drivers
git-svn-id: svn://10.0.0.236/trunk@132373 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 19:48:59 +00:00
hyatt%netscape.com
bd88f146a8 Enable marquee.
git-svn-id: svn://10.0.0.236/trunk@132371 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 19:10:34 +00:00
mostafah%oeone.com
c462992315 Renamed displayDateEnd to displayEndDate
git-svn-id: svn://10.0.0.236/trunk@132370 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 18:59:36 +00:00
varada%netscape.com
1d6b70a4bd fix for 135748;accesskeys for addressbook dialogs;r=cavin;sr=bienvenu;a=asa
git-svn-id: svn://10.0.0.236/trunk@132369 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 17:57:41 +00:00
varada%netscape.com
aaa7b78446 fix for 24873;accesskeys for account wizard;r=cavin;sr=bienvenu;a=asa
git-svn-id: svn://10.0.0.236/trunk@132368 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 17:57:25 +00:00
mostafah%oeone.com
0f5fd44834 Fixed backend for bug 133331 :[RFE] Allow events to span multiple days
git-svn-id: svn://10.0.0.236/trunk@132367 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 17:33:05 +00:00
mostafah%oeone.com
c6895c6509 Frontend change to use the oeICalEventDisplay. Part of fix to bug 133331: [RFE] Allow events to span multiple days
git-svn-id: svn://10.0.0.236/trunk@132366 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 17:31:42 +00:00
kaie%netscape.com
4ea31e7b71 b=175012 Mozilla don't support multipart/signed mail with md5 micalg parameter
r=ducarroz sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@132364 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 14:48:14 +00:00
kaie%netscape.com
eea7c3bbc3 b=175352 Account Manager should protect itself in case Shutdown gets called twice
r=bhuvan sr=mscott a=asa


git-svn-id: svn://10.0.0.236/trunk@132363 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 14:45:00 +00:00
ian.mcgreer%sun.com
941cca0169 bug 174634, fix handling of authorityCertIssuer in chain construction
git-svn-id: svn://10.0.0.236/trunk@132362 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 14:43:08 +00:00
dbaron%fas.harvard.edu
2ef2290267 Testing backout of bryner's changes (bug 22820) to see if it fixes pageload regression.
git-svn-id: svn://10.0.0.236/trunk@132361 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 10:22:19 +00:00
sicking%bigfoot.com
92a857088d Bug 64945: XML prettyprinting final stage. Implements document.removeBinding and drops the prettyprint binding when the document is modified. Also turn on prettyprinting by default.
r=jkeiser,hyatt,bz sr=rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@132360 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 06:07:52 +00:00
bugreport%peshkin.net
9540fdc7e1 Bugzilla Bug 175625 Timetracking columns are computed even if not displayed
Patch by jeff.hedlund
r=dkl,joel


git-svn-id: svn://10.0.0.236/trunk@132359 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 06:00:52 +00:00
bryner%netscape.com
40c7abf727 If the "src" attribute is changed on an image, and we don't have an image frame, use NS_STYLE_HINT_FRAMECHANGE so that an ImageFrame is constructed and the image is loaded (bug 22820). r=dbaron, sr=jst, a=roc.
git-svn-id: svn://10.0.0.236/trunk@132358 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 05:30:05 +00:00
sicking%bigfoot.com
6245eba57d Bug 64945: XML prettyprinting final stage. Implements document.removeBinding and drops the prettyprint binding when the document is modified. Also turn on prettyprinting by default.
r=jkeiser,hyatt,bz sr=rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@132357 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 05:28:36 +00:00
seawood%netscape.com
901bb46c21 Fix platform detection and workaround bug in cygwin perl's FindBin module.
Thanks to Adam Lock <adamlock@netscape.com> for the patch.
Bug #166105 r=cls a=asa


git-svn-id: svn://10.0.0.236/trunk@132356 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 04:25:08 +00:00
bzbarsky%mit.edu
8cab7771b4 History sort order should persist. Bug 91417, patch by Oswald Fischer
<osfischer@gmx.de> and Wesha <wesha@mail.ru>, r=jag, sr=bzbarsky, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132355 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 04:02:25 +00:00
caillon%returnzero.com
ece21729ad 175920, Null window references are not in the content area.
r=bugs4hj@netscape.net
sr=bryner@netscape.com
a=roc+moz@cs.cmu.edu


git-svn-id: svn://10.0.0.236/trunk@132354 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 04:02:14 +00:00
darin%netscape.com
e208102526 fixes bug 175495 "Password Manager reprompts whether or not to save
passwords it already has stored" r=morse sr=dveditz a=asa


git-svn-id: svn://10.0.0.236/trunk@132353 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 02:30:56 +00:00
asa%mozilla.org
f736453a29 remove
git-svn-id: svn://10.0.0.236/trunk@132352 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 02:21:05 +00:00
asa%mozilla.org
a70561cd8a wiping useless todo content
git-svn-id: svn://10.0.0.236/trunk@132351 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 02:15:52 +00:00
sicking%bigfoot.com
e4e3fcee80 Remove old files that are leftovers from the fix from bug 155578
git-svn-id: svn://10.0.0.236/trunk@132348 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 00:23:57 +00:00
timeless%mac.com
c07177fbab Bug 174448 crash in [@ nsMenuPopupFrame::GetRootViewForPopup] on msnbc page
r=bzbarsky sr=hyatt sr=roc+moz a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132347 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-22 00:23:35 +00:00
naving%netscape.com
76e6568c10 157644 r=cavin sr=mscott a=roc+moz fixing pop3 security bug
git-svn-id: svn://10.0.0.236/trunk@132346 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 23:33:40 +00:00
rogerl%netscape.com
8a2c1cbf5d Throw stmt.
git-svn-id: svn://10.0.0.236/trunk@132341 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 22:42:22 +00:00
rogerl%netscape.com
9698249f39 More try/catch magic.
git-svn-id: svn://10.0.0.236/trunk@132340 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 22:33:41 +00:00
sicking%bigfoot.com
9baa4a36f3 Landing XSLT branch. Tracking bug is 155578, fixes bugs 46633, 54659, 73492, 70369, 85408, 90157, 130161, 109918, 150916 and 170097
* New scriptable interfaces to XSLT
* Make HTML-output create real html
* cleanup the XSLTProcessor class

Patch by sicking, pike and peterv

r=sicking/pike, sr=peterv, a=asa


git-svn-id: svn://10.0.0.236/trunk@132339 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 22:32:29 +00:00
sicking%bigfoot.com
d8d0cac658 Landing XSLT branch. Tracking bug is 155578, fixes bugs 46633, 54659, 73492, 70369, 85408, 90157, 130161, 109918, 150916 and 170097
* New scriptable interfaces to XSLT
* Make HTML-output create real html
* cleanup the XSLTProcessor class

Patch by sicking, pike and peterv

r=sicking/pike, sr=peterv, a=asa


git-svn-id: svn://10.0.0.236/trunk@132337 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 21:35:23 +00:00
timeless%mac.com
dbb8ba3770 Bug 175321 Crashes with Type Ahead Find [@ nsTypeAheadFind::FindItNow]
r=bbaetz sr=bz a=asa


git-svn-id: svn://10.0.0.236/trunk@132336 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 21:19:24 +00:00
cbiesinger%web.de
5a7314b5df bug 169690 patch by paper@animecity.nu r=biesi sr=tor a=roc+moz
crash in HaveDecodedRow


git-svn-id: svn://10.0.0.236/trunk@132334 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 20:57:57 +00:00
kairo%kairo.at
9e1697d75e bug 174989, 1.2b sucks and won't get localization - missing .dtd updates for locale version number, updating all known non-fitting locale version strings (to 1.2b), r=jbetak,sr=bzbarsky, a=asa
git-svn-id: svn://10.0.0.236/trunk@132333 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 20:29:49 +00:00
dcone%netscape.com
84d046adb8 not part of build. Fixed a file that needed to be installed.
git-svn-id: svn://10.0.0.236/trunk@132332 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 20:17:03 +00:00
tara%tequilarista.org
6febbbf59a Checking in timeless' patch for bug #148935
git-svn-id: svn://10.0.0.236/trunk@132331 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 19:36:40 +00:00
pkw%us.ibm.com
4dee9b153e Bug 157397 - Enables entering national language data on AIX.
r=yokoyama@netscape.com, sr=kin@netscape.com, a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@132330 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 19:35:09 +00:00
hyatt%netscape.com
eeda5a2688 Fix PT scrunched icon bustage.
git-svn-id: svn://10.0.0.236/trunk@132329 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 19:24:26 +00:00
hyatt%netscape.com
9d438d96c6 Fix menubar bustage in subwindows.
git-svn-id: svn://10.0.0.236/trunk@132328 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 19:08:45 +00:00
loadrunner%betak.net
17f07b80c5 b167610 Plug gre installer into mfcembed installer, r=curt, sr=leaf, a=asa
git-svn-id: svn://10.0.0.236/trunk@132327 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 19:01:01 +00:00
blythe%netscape.com
a20974fc1b Not part of build.
Reassign weak objects to data instead of code.


git-svn-id: svn://10.0.0.236/trunk@132326 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 17:50:47 +00:00
rogerl%netscape.com
a16af0da07 Try/catch
git-svn-id: svn://10.0.0.236/trunk@132325 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 17:21:44 +00:00
mostafah%oeone.com
c44c19db53 Fixed Bug 172395 : Calendar should support duration
git-svn-id: svn://10.0.0.236/trunk@132323 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 16:03:26 +00:00
mostafah%oeone.com
10062bfef3 int -> unsigned int to avoid warning
git-svn-id: svn://10.0.0.236/trunk@132322 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 15:30:20 +00:00
karnaze%netscape.com
3d9a735c36 New regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@132321 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 15:01:17 +00:00
karnaze%netscape.com
31d587fa18 bug 127145 - split blocks with computed heights. a=asa, sr=kin, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@132320 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 14:54:00 +00:00
rogerl%netscape.com
33303ea4a0 Array literals.
git-svn-id: svn://10.0.0.236/trunk@132319 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 06:39:33 +00:00
seawood%netscape.com
a662fea4a6 Use chomp not chop to strip newlines from results
git-svn-id: svn://10.0.0.236/trunk@132318 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 04:44:36 +00:00
hyatt%netscape.com
27b5304f5b Fix SHIFT as the background toggle. This was broken.
git-svn-id: svn://10.0.0.236/trunk@132317 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 03:51:49 +00:00
rogerl%netscape.com
11bef4ae26 Added Array class. Moved conversions to MetaData.
git-svn-id: svn://10.0.0.236/trunk@132316 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 03:00:21 +00:00
peterlubczynski%netscape.com
97b5b9aa61 Backing out fix to bug 163568 to fix bug 169991, r=darin, sr=bzbarsky, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132315 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 02:05:59 +00:00
caillon%returnzero.com
13922c6b54 Bug 175304 - Composer cannot open files via 'Open file' or 'Edit Link'.
Patch by Kathy Brade <brade@netscape.com>
r=caillon@returnzero.com
sr=bzbarsky@mit.edu
a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@132314 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-21 01:10:06 +00:00
chanial%noos.fr
89869fab2a fix middle-click in bookmarks
+ make it honour the pref


git-svn-id: svn://10.0.0.236/trunk@132313 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:55:17 +00:00
hyatt%netscape.com
1e0c8eb86e make resizer go away when window is maximized.
git-svn-id: svn://10.0.0.236/trunk@132312 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:54:17 +00:00
hyatt%netscape.com
22f2972d77 make resizer go away when window is maximized.
git-svn-id: svn://10.0.0.236/trunk@132311 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:53:22 +00:00
hyatt%netscape.com
2f96f9a6aa Putting home button back in, since there's presumably enough data (7 hours) to tell.
git-svn-id: svn://10.0.0.236/trunk@132310 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:44:32 +00:00
hyatt%netscape.com
f88d754b06 Fix blake's favicon bustage.
git-svn-id: svn://10.0.0.236/trunk@132309 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:38:11 +00:00
hyatt%netscape.com
62ccd83525 Enable menubar customization.
git-svn-id: svn://10.0.0.236/trunk@132308 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:21:27 +00:00
hyatt%netscape.com
191d318435 Enable menubar customization.
git-svn-id: svn://10.0.0.236/trunk@132307 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:13:18 +00:00
hyatt%netscape.com
0e4dd873fd Enable menubar customization.
git-svn-id: svn://10.0.0.236/trunk@132306 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:05:30 +00:00
hyatt%netscape.com
e5442459e7 Enable menubar customization.
git-svn-id: svn://10.0.0.236/trunk@132305 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 08:03:51 +00:00
seawood%netscape.com
970b40d45b This patch does the following:
- converts all commands to an arguments array for passing to exec()
- Runs "dos2unix" on the log file before mailing it off, if on Windows
- Adds a "ProductName" config option to control where to look for the profile on Windows.
- Fixes clobbering of the profile on Windows.
- Makes the script look for the HiRes time module instead of the Win32API module for cygwin perl.

Thanks to Brian Ryner <bryner@netscape.com> for the patch.
Bug #115690 r=cls


git-svn-id: svn://10.0.0.236/trunk@132304 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 07:28:24 +00:00
seawood%netscape.com
00677e3598 Remove the newlines from the tokens returned by AliveTestReturnToken. Add a special check for cygwin perl which has a chomp that does not properly handle dos-newlines.
git-svn-id: svn://10.0.0.236/trunk@132303 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 07:02:57 +00:00
hyatt%netscape.com
25e4e3f1cb Fix regression on tab close dbl-clicking.
git-svn-id: svn://10.0.0.236/trunk@132302 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 03:59:09 +00:00
hyatt%netscape.com
19dcfe2e7e Implement more www/org/com/net magic.
git-svn-id: svn://10.0.0.236/trunk@132301 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 03:52:52 +00:00
hyatt%netscape.com
18f9f4aff0 Fix bug 175575. Dbl-click in tab bar opens new tab.
git-svn-id: svn://10.0.0.236/trunk@132300 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 03:27:03 +00:00
hyatt%netscape.com
f4cd4bd5a4 Fix bug 175575. Dbl-click in tab bar opens new tab.
git-svn-id: svn://10.0.0.236/trunk@132299 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 03:24:56 +00:00
blakeross%telocity.com
d2960769f8 Backing out home button to test perf.
git-svn-id: svn://10.0.0.236/trunk@132298 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 01:06:25 +00:00
hyatt%netscape.com
5268c7d431 Tweak pref values.
git-svn-id: svn://10.0.0.236/trunk@132297 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-20 00:38:04 +00:00
blakeross%telocity.com
3bb7d1b3c7 Make the pref window ever so slightly wider.
git-svn-id: svn://10.0.0.236/trunk@132296 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 23:09:45 +00:00
blakeross%telocity.com
efdd9ecb52 Shortening tab pref wording a bit.
git-svn-id: svn://10.0.0.236/trunk@132295 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 23:07:40 +00:00
blakeross%telocity.com
4c375a0621 fix a bug in bookmarks.
git-svn-id: svn://10.0.0.236/trunk@132294 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 23:05:59 +00:00
bzbarsky%mit.edu
ddc2286ef3 this would be build bustage in C++. ;) Bug 175447, r=mcsmurf (Frank
Wein), sr=bzbarsky, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132293 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 20:44:14 +00:00
blakeross%telocity.com
034a7c862a Fix something in history.
git-svn-id: svn://10.0.0.236/trunk@132292 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 20:19:54 +00:00
blakeross%telocity.com
d5c7e20c94 Hide sidebar when entering print preview.
git-svn-id: svn://10.0.0.236/trunk@132291 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 20:05:43 +00:00
blakeross%telocity.com
d33bdea495 Fix cookie prefs in Phoenix (NPOB; ifdef MOZ_PHOENIX). r=hewitt sr=hyatt a=morse
git-svn-id: svn://10.0.0.236/trunk@132290 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 19:47:04 +00:00
blakeross%telocity.com
2c137d7943 Some modifier cleanup; fix load in background pref.
git-svn-id: svn://10.0.0.236/trunk@132289 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 19:38:57 +00:00
hyatt%netscape.com
0ede43e8ae Just to keep everyone guessing, inverting ctrl and shift. ctrl is new tab, shift is new window.
git-svn-id: svn://10.0.0.236/trunk@132284 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 01:21:57 +00:00
hyatt%netscape.com
ee493055d5 Improving the key bindings even more.
git-svn-id: svn://10.0.0.236/trunk@132281 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 00:37:59 +00:00
hyatt%netscape.com
51def3f209 Remove useless separator now.
git-svn-id: svn://10.0.0.236/trunk@132280 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-19 00:00:33 +00:00
nicolson%netscape.com
a3e7d22558 update version strings.
git-svn-id: svn://10.0.0.236/trunk@132279 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 23:59:01 +00:00
hyatt%netscape.com
d8c24b3d16 Move view source menu back under View.
git-svn-id: svn://10.0.0.236/trunk@132278 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 23:48:09 +00:00
edburns%acm.org
c794b75432 chmod
git-svn-id: svn://10.0.0.236/trunk@132276 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 23:18:45 +00:00
waldemar%netscape.com
c5f35ee917 Fixed buffer overrun bug 174555 r=brendan, a=shaver
git-svn-id: svn://10.0.0.236/trunk@132275 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 23:03:16 +00:00
rogerl%netscape.com
1a0efba050 RegExp literals.
git-svn-id: svn://10.0.0.236/trunk@132274 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:49:17 +00:00
hyatt%netscape.com
d01200d1f0 Adding support for ALT+n to select the nth tab.
git-svn-id: svn://10.0.0.236/trunk@132273 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:43:30 +00:00
jpierre%netscape.com
05f57072ae Fix for bug 175167 - SEC_QuickDERDecodeItem should fre memory upon failure. r=wtc
git-svn-id: svn://10.0.0.236/trunk@132272 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:32:34 +00:00
gerv%gerv.net
3c96b75d31 Bug 172875 - Fix site-navigation.html.tmpl to link to flags CGI and not attachments one. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132271 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:21:08 +00:00
hyatt%netscape.com
0fcc323e78 Make active tab in tabbrowser bold.
git-svn-id: svn://10.0.0.236/trunk@132269 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:08:23 +00:00
rogerl%netscape.com
7b82c9dee6 Prototype functions --> dynamic instance.
git-svn-id: svn://10.0.0.236/trunk@132268 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 22:01:54 +00:00
nelsonb%netscape.com
2a6f78cf87 Verify the self-signed signature on PKCS 10 cert requests before honoring
them.  Bug 174193.


git-svn-id: svn://10.0.0.236/trunk@132267 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 21:58:24 +00:00
hyatt%netscape.com
c7d7a44190 Put home button on toolbar by default.
git-svn-id: svn://10.0.0.236/trunk@132266 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 21:56:48 +00:00
hyatt%netscape.com
9feaede29b Default URL bar is to not search google but to use google's i'm feeling lucky to auto-resolve.
git-svn-id: svn://10.0.0.236/trunk@132263 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 20:45:04 +00:00
hyatt%netscape.com
8cc6e5fb7b Implement CTRL+enter www/com completion in the URL bar.
git-svn-id: svn://10.0.0.236/trunk@132262 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 20:30:53 +00:00
blythe%netscape.com
767b4b7c97 Not part of build.
fix command line option spelling


git-svn-id: svn://10.0.0.236/trunk@132260 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 20:28:49 +00:00
cbiesinger%web.de
1890556219 bug 110076 r=biesi sr=tor a=roc+moz Access violation in Trunk M100 N70PR1 [@ imgContainer::StartAnimation]
git-svn-id: svn://10.0.0.236/trunk@132255 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:46:40 +00:00
hyatt%netscape.com
f0e83689eb Missing typeahead find prefs.
git-svn-id: svn://10.0.0.236/trunk@132254 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:44:48 +00:00
leaf%mozilla.org
c47ce59e4a Automated update
git-svn-id: svn://10.0.0.236/trunk@132253 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:39:24 +00:00
seawood%netscape.com
1f479eb657 Add support for specifying alternate locations for glib & libIDL via GLIB_PREFIX & LIBIDL_PREFIX on win32. Allows us to build with vc7 without damaging our vc6 setup.
Bug #127985 r=bryner a=asa


git-svn-id: svn://10.0.0.236/trunk@132252 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:35:53 +00:00
blakeross%telocity.com
5c6be33b6a Add alt+d shortcut.
git-svn-id: svn://10.0.0.236/trunk@132251 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:28:52 +00:00
akkana%netscape.com
494d7f6a08 174987: Don't skip the last pass through the loop (was deleting signatures). r=brade sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@132250 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:25:32 +00:00
jkeiser%netscape.com
0f735a6172 Make hidden iframes and other widgets not display sub-widgets (bug 139805), r=roc+moz@cs.cmu.edu, sr=dbaron@fas.harvard.edu, a=asa
git-svn-id: svn://10.0.0.236/trunk@132249 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 19:17:35 +00:00
kaie%netscape.com
0f7fe3731d b=101847 keygen does not work if Master Pwd is set to "Everytime it is needed"
r=javi sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@132236 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 13:49:58 +00:00
kaie%netscape.com
73d1d21c8f b=164867 S/Mime messages signed by cert w/o email address should not validate
r=javi/ducarroz sr=mscott


git-svn-id: svn://10.0.0.236/trunk@132235 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 13:46:49 +00:00
dougt%netscape.com
ce6206ecf0 Attempting to fix the bustage on os2, beos, linux/ppc
git-svn-id: svn://10.0.0.236/trunk@132234 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 13:36:32 +00:00
locka%iol.ie
0e8c6808a2 NOT PART OF BUILD. Implement IWebBrowser/2/App object and preference change observer. Cleanup naming convention
git-svn-id: svn://10.0.0.236/trunk@132232 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 11:43:36 +00:00
locka%iol.ie
6a64bf064c Implement put_innerHTML and some other simple methods. Fix property page to display proper content type for document. b=171769 r=chak@netscape.com sr=rpotts@netscape.com a=a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@132231 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 11:39:57 +00:00
bryner%netscape.com
74c1029647 fixing js warnings
git-svn-id: svn://10.0.0.236/trunk@132230 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 10:05:47 +00:00
bryner%netscape.com
88bc5fe693 fixing redeclared variable warning
git-svn-id: svn://10.0.0.236/trunk@132229 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 09:58:28 +00:00
bryner%netscape.com
0df186665c fix tree sort arrows (css syntax error)
git-svn-id: svn://10.0.0.236/trunk@132228 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 09:54:30 +00:00
bryner%netscape.com
3cc8ef4619 fixing css syntax error
git-svn-id: svn://10.0.0.236/trunk@132227 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 09:50:50 +00:00
seawood%netscape.com
9e3968ecbd Correct gtk url
git-svn-id: svn://10.0.0.236/trunk@132226 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 09:02:03 +00:00
seawood%netscape.com
584ae999a3 Adding appropriate license files and README.
git-svn-id: svn://10.0.0.236/trunk@132225 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 08:48:32 +00:00
seawood%netscape.com
96277ab0ee Moving
git-svn-id: svn://10.0.0.236/trunk@132224 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 08:44:51 +00:00
seawood%netscape.com
b2edee0843 Add links for original source locations.
git-svn-id: svn://10.0.0.236/trunk@132223 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 08:38:59 +00:00
seawood%netscape.com
1d292bdd41 Need IDL.h from libIDL-0.6.8
git-svn-id: svn://10.0.0.236/trunk@132222 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 08:31:49 +00:00
bryner%netscape.com
5f62aa2077 Checking in optimized Visual C++ 7.0 versions of glib and libIDL libraries.
git-svn-id: svn://10.0.0.236/trunk@132221 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 08:05:17 +00:00
beard%netscape.com
094b91a2ff Added TokenEnumeration, which provides efficient direct enumeration of the Tokenizer's PLDHashTable. r/sr=brendan, a=asa [not part of build]
git-svn-id: svn://10.0.0.236/trunk@132220 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 06:31:47 +00:00
bryner%netscape.com
a47207e2d8 Fix invoking the preprocessor when the file path is of the form C:/dir/file and cygwin perl is being used (bug 174656). Only affects Phoenix builds. r=cls, a=asa.
git-svn-id: svn://10.0.0.236/trunk@132219 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 06:23:46 +00:00
brendan%mozilla.org
98bcebb648 Fix glitch in comment (no code changes).
git-svn-id: svn://10.0.0.236/trunk@132218 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 05:26:02 +00:00
dougt%netscape.com
3c121c69da Final fix. This is the way this patch should have landed. including nsXPIDLCString when XPCOM_GLUE is defined is not a good idea
git-svn-id: svn://10.0.0.236/trunk@132217 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 03:46:04 +00:00
dougt%netscape.com
515648f5b0 Fixing bustage
git-svn-id: svn://10.0.0.236/trunk@132216 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 03:32:59 +00:00
av%netscape.com
0f108d9885 Bug 118656 -- clean up in plugin SDK, not part of the build
git-svn-id: svn://10.0.0.236/trunk@132215 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 03:20:21 +00:00
dougt%netscape.com
1ab0d65c92 Backing out my last attempt since I believe that the problem is with the cvs mirrors
git-svn-id: svn://10.0.0.236/trunk@132213 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 02:36:28 +00:00
chanial%noos.fr
4d6e34d32f bookmark dropped in a menu between the last bookmark and the 'open in tab' menuseparator are inserted after the menuseparator. Quick fix by hiding the menuseparator before the drop and by showing it again after.
git-svn-id: svn://10.0.0.236/trunk@132210 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 02:20:56 +00:00
dougt%netscape.com
c6c64afe9b Adding nsReadableUtils.cpp to the string glue code. This is required for StringAllocator. Fix for linux build bustage
git-svn-id: svn://10.0.0.236/trunk@132208 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 02:08:14 +00:00
ccarlen%netscape.com
20ee16102c Bug 172223 - Mach-0 impl of nsLocalFile::Reveal() does not work because passing an FSRef in the Apple Event does not work - it must be an FSSpec. r=sdagley/sr=sfraser/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132207 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 01:59:54 +00:00
waldemar%netscape.com
a48658c6ab MacOSX version of the build files; work with CodeWarrior 8.2 to create a Carbon JSRef. Doesn't build mach-o yet.
git-svn-id: svn://10.0.0.236/trunk@132206 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 01:40:40 +00:00
leaf%mozilla.org
3e61ddc832 Automated update
git-svn-id: svn://10.0.0.236/trunk@132201 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 00:39:26 +00:00
seawood%netscape.com
fd762c9c41 Add compiler flags to reduce string overhead in libraries for Solaris Forte builds.
Thanks to Roland Mainz <Roland.Mainz@informatik.med.uni-giessen.de> for the patch.
Bug #149154 r=cls a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132200 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 00:25:31 +00:00
bishakhabanerjee%netscape.com
93ae51e1cc changed error string to reflect error better: 162714
git-svn-id: svn://10.0.0.236/trunk@132199 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 00:13:03 +00:00
chanial%noos.fr
ceb727cc21 use of RDFC Utils methods + fix target check issue
git-svn-id: svn://10.0.0.236/trunk@132198 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 00:06:48 +00:00
cltbld%netscape.com
37f16533fd Switching to CSRCS to get dependencies to work right. r=garrett
git-svn-id: svn://10.0.0.236/trunk@132197 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-18 00:04:54 +00:00
dougt%netscape.com
3ce22699b8 landing 172512. nsEmbedString for component developers and embeders. r=alec, sr=jag/darin, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132196 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:41:47 +00:00
dsirnapalli%netscape.com
370c545c96 Updated test cases to test accKeyboardShortcut attribute method.
git-svn-id: svn://10.0.0.236/trunk@132195 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:16:47 +00:00
blakeross%telocity.com
2259695f12 A little cleanup for the Use Bookmark dialog.
git-svn-id: svn://10.0.0.236/trunk@132194 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:14:44 +00:00
naving%netscape.com
2d9697b300 removing a line I didn't mean to checkin
git-svn-id: svn://10.0.0.236/trunk@132193 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:08:57 +00:00
blakeross%telocity.com
88b7b8f442 Fork print preview.
git-svn-id: svn://10.0.0.236/trunk@132192 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:06:10 +00:00
naving%netscape.com
306ff6a643 172707 r=cavin sr=bienvenu a=asa fixing busy cursor problem when selecting
dest folder on copying msgs and fixing a crash if the dest folder has
invalid summary file.


git-svn-id: svn://10.0.0.236/trunk@132191 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 23:03:42 +00:00
loadrunner%betak.net
d693f09f8f b130331 red error code text displayed under status bar ("key_irc"), r=kairo, rginda, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@132190 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:53:14 +00:00
blakeross%telocity.com
d21b2ca72f Change delay back to 0ms.
git-svn-id: svn://10.0.0.236/trunk@132189 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:51:37 +00:00
rogerl%netscape.com
ac6bfb99bf Build fixes.
git-svn-id: svn://10.0.0.236/trunk@132188 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:50:18 +00:00
blythe%netscape.com
5605817872 Not part of the build
Fix so that it compiles on linux.


git-svn-id: svn://10.0.0.236/trunk@132187 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:42:00 +00:00
blythe%netscape.com
433400ea35 Not part of the build.
Add a bunch of query options to the tool to restrict the results to desired
targets.


git-svn-id: svn://10.0.0.236/trunk@132186 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:39:22 +00:00
av%netscape.com
715d651ae9 Bug 118656 -- clean up in plugin SDK, not part of the build
git-svn-id: svn://10.0.0.236/trunk@132185 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:38:17 +00:00
nelsonb%netscape.com
bb5ff42b98 New utility to test cert chain verification using certs in files.
git-svn-id: svn://10.0.0.236/trunk@132184 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:24:35 +00:00
darin%netscape.com
65ae25e565 fixes bug 162520 "possible princeton-style password stealing exploit"
r=morse sr=dveditz a=asa


git-svn-id: svn://10.0.0.236/trunk@132183 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:21:42 +00:00
jgmyers%netscape.com
53f71624fc fix contents of In-reply-to header: bug 173645 r=ducarroz sr=bienvenu a=asa
git-svn-id: svn://10.0.0.236/trunk@132182 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 22:17:08 +00:00
bryner%netscape.com
65ce4540d4 Remove a bogus style rule that isn't even parsing correctly
git-svn-id: svn://10.0.0.236/trunk@132180 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 21:23:19 +00:00
sicking%bigfoot.com
44bbedba7e Remove transformiix.xpt from packaging as it no longer exists
b=64945 r/sr=darin sr=bz a=rjesup


git-svn-id: svn://10.0.0.236/trunk@132179 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 21:11:38 +00:00
av%netscape.com
1fafe38052 Bug 118656 -- clean up in plugin SDK, not part of the build
git-svn-id: svn://10.0.0.236/trunk@132178 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:27:12 +00:00
av%netscape.com
77020a3232 Bug 118656 -- clean up in plugin SDK, not part of the build
git-svn-id: svn://10.0.0.236/trunk@132177 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:18:29 +00:00
blakeross%telocity.com
7ca6398e50 Backing out skin changes, they have issues.
git-svn-id: svn://10.0.0.236/trunk@132175 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:14:58 +00:00
blakeross%telocity.com
87a7f2ef84 Back out skin changes, they have issues.
git-svn-id: svn://10.0.0.236/trunk@132172 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:12:37 +00:00
chanial%noos.fr
b56a05545b testing Ts: delaying by 200ms delayedStartup
git-svn-id: svn://10.0.0.236/trunk@132171 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:11:01 +00:00
blakeross%telocity.com
cc3543565c Remove some obsolete strings.
git-svn-id: svn://10.0.0.236/trunk@132168 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 20:00:27 +00:00
blakeross%telocity.com
8390aa1d36 Removing File | Open Location
git-svn-id: svn://10.0.0.236/trunk@132167 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:56:46 +00:00
cltbld%netscape.com
d053967b0e Whitespace changes, no tabs.
git-svn-id: svn://10.0.0.236/trunk@132164 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:46:06 +00:00
bzbarsky%mit.edu
962685a5d2 Revive page info. Bug 170143, patch by db48x@yahoo.com (Daniel Brooks),
r=bzbarsky, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@132162 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:30:13 +00:00
bzbarsky%mit.edu
f8ed360af8 Make IndexOf a const method. Bug 174940, r=dougt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@132161 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:26:27 +00:00
pschwartau%netscape.com
62eebb4ebc Whitespace cleanup.
git-svn-id: svn://10.0.0.236/trunk@132160 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:25:40 +00:00
tor%cs.brown.edu
ce68bd25a0 Bug 174831 - fix indexes in spacer image detector.
r=paper, sr=bzbarsky, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@132159 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 19:20:16 +00:00
hyatt%netscape.com
54725117eb make sure we have the link prefetching pref.
git-svn-id: svn://10.0.0.236/trunk@132158 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 18:50:57 +00:00
bbaetz%student.usyd.edu.au
661deea6ca Bug 173495 - require perl 5.6
git-svn-id: svn://10.0.0.236/trunk@132147 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 12:49:44 +00:00
brade%netscape.com
d0082caf67 fix closing of Composer windows (bug 174440) r=cmanske, sr=hewitt, a=Asa
git-svn-id: svn://10.0.0.236/trunk@132146 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 12:33:00 +00:00
kerz%netscape.com
c4b8341a6d skin cleanup
git-svn-id: svn://10.0.0.236/trunk@132145 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 09:26:50 +00:00
kerz%netscape.com
bec5da394a skin cleanup
git-svn-id: svn://10.0.0.236/trunk@132144 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 09:26:34 +00:00
seawood%netscape.com
dec1fd81d2 Removing old cvsignore file
git-svn-id: svn://10.0.0.236/trunk@132143 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 09:26:24 +00:00
seawood%netscape.com
35aacb94ea Remove redundant necko_socket.xpt entry.
Bug #174750 r=blizzard a=asa


git-svn-id: svn://10.0.0.236/trunk@132139 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 08:41:43 +00:00
leaf%mozilla.org
15a5ee6499 Automated update
git-svn-id: svn://10.0.0.236/trunk@132138 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 07:39:24 +00:00
seawood%netscape.com
677416cb5e Define WIN32_LEAN_AND_MEAN globally for win32 builds.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #172898 r=cls a=asa


git-svn-id: svn://10.0.0.236/trunk@132137 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 07:33:49 +00:00
seawood%netscape.com
f9eb727003 Define WIN32_LEAN_AND_MEAN globally for win32 builds.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #172898 r=cls a=asa


git-svn-id: svn://10.0.0.236/trunk@132136 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 06:47:01 +00:00
dbradley%netscape.com
1d42b56652 Bug 173146 - add support to XPConnect for IDispatch interface. r=jband@netscape.com, sr=brendan@mozilla.org, a=shaver@mozilla.org
NOTE: Most of this code is not built by default


git-svn-id: svn://10.0.0.236/trunk@132135 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 05:29:03 +00:00
rogerl%netscape.com
b336a16ca8 Prototype new, 'load' and '-f'.
git-svn-id: svn://10.0.0.236/trunk@132134 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 05:22:29 +00:00
av%netscape.com
8f7ae49d21 Bug 118656 -- clean up in plugin SDK, not part of the build
git-svn-id: svn://10.0.0.236/trunk@132133 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 04:37:12 +00:00
bugreport%peshkin.net
df3dba60ad Bug 112373 you should be able to enter bug dependencies/blockers when you enter a bug.
patch by jhedlund
r,2xr=joel


git-svn-id: svn://10.0.0.236/trunk@132132 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 04:31:56 +00:00
akkana%netscape.com
6bad903f00 168999: don't uninit the spellchecker twice, and eliminate the non-thread-safe asserts
git-svn-id: svn://10.0.0.236/trunk@132131 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 04:22:27 +00:00
caillon%returnzero.com
30f2a17c06 Bug 162393 - Making our content area clicking and link handling more robust.
r=bzbarsky sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@132130 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 04:09:20 +00:00
neeti%netscape.com
a2b623c752 fix for bug 161352 - URL: can't load local file with semicolon (;) in name,r=dougt@netscape.com,sr=darin@netscape.com,a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132129 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 03:23:33 +00:00
jfrancis%netscape.com
a4602c0168 fix for 173818: first char typed in html mail reply lost. r=akk, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@132128 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 03:16:34 +00:00
nelsonb%netscape.com
928be21a4a Change instructions for entering a new token password to say "should"
instead of "must".  Bug 174135.


git-svn-id: svn://10.0.0.236/trunk@132127 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 02:06:31 +00:00
nelsonb%netscape.com
01270dc30d Use unsigned ints for serial numbers. Bug 173872.
Add missing line break to cert requests.  Bug 174659.
Remove unused variables, and #ifndef NSPR20 code.


git-svn-id: svn://10.0.0.236/trunk@132126 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 01:41:14 +00:00
rdayal%netscape.com
d70fa3d6cf Bug #174597.
Changes so that PalmSync Installer can run not just from dir
but also from a program sub-menu or a short cut.
Installer Manifest file changes for PalmSync

r=ssu, sr=mscott, a=asa.


git-svn-id: svn://10.0.0.236/trunk@132124 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 01:32:27 +00:00
blythe%netscape.com
f4ba2202a7 Not part of build.
More verbose help text of these commands.


git-svn-id: svn://10.0.0.236/trunk@132123 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 01:06:06 +00:00
darin%netscape.com
046893c136 backing out previous change!
git-svn-id: svn://10.0.0.236/trunk@132122 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:48:20 +00:00
darin%netscape.com
c0f536eda6 link prefetching (default disabled) b=12274 r=gagan sr=rpotts a=rjesup ADT+
git-svn-id: svn://10.0.0.236/trunk@132121 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:48:19 +00:00
nicolson%netscape.com
6a940b01b5 The new SecretDecoderRing.
git-svn-id: svn://10.0.0.236/trunk@132119 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:33:42 +00:00
nicolson%netscape.com
cb6aa3e00a Generate a permanent key pair, since KeyStore isn't working yet.
git-svn-id: svn://10.0.0.236/trunk@132118 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:32:48 +00:00
nicolson%netscape.com
cef86b7759 remove print statements.
git-svn-id: svn://10.0.0.236/trunk@132114 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:07:50 +00:00
nicolson%netscape.com
32e72bad8f Forget KeyStore, it is still very broken.
git-svn-id: svn://10.0.0.236/trunk@132113 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:07:29 +00:00
akkana%netscape.com
4ef2b83a8e 173953: Fix plaintext quoting. r=ducarroz sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@132112 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:07:28 +00:00
nicolson%netscape.com
ef17c4b85b More little hacks, but it still doesn't work right.
git-svn-id: svn://10.0.0.236/trunk@132111 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:07:08 +00:00
nicolson%netscape.com
3bcb5a3018 Fix an implementation detail.
git-svn-id: svn://10.0.0.236/trunk@132110 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-17 00:05:53 +00:00
locka%iol.ie
76d683b9c5 NOT PART OF BUILD. Add cleaned up scripting sample for plugin
git-svn-id: svn://10.0.0.236/trunk@132109 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:32:29 +00:00
locka%iol.ie
3303a20408 NOT PART OF BUILD. Delete a couple of test scripts
git-svn-id: svn://10.0.0.236/trunk@132108 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:30:57 +00:00
yokoyama%netscape.com
5f5065be41 Bug 170969,104934,171228,170707
#ifdef MOZ_UNICODE fix
Affect in //widget/src/windows only
/r=shanjian;/sr=kin;/a=asa


git-svn-id: svn://10.0.0.236/trunk@132107 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:28:18 +00:00
yokoyama%netscape.com
f5f55eb84c Bug 170855
Need to define #ifdef MOZ_UNICODE
and have WindowClass().
/r=shanjian;/sr=kin;/a=asa


git-svn-id: svn://10.0.0.236/trunk@132106 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:22:44 +00:00
gerv%gerv.net
9a47039eee Bug 174221 - field names should be l10n in user-errors.html.tmpl. Patch by jeff.hedlund@matrixsi.com; r=burnus, gerv.
git-svn-id: svn://10.0.0.236/trunk@132105 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:15:48 +00:00
gerv%gerv.net
34c8aac2ba Bug 172959 - Remove old reporting (most doomed etc.). Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@132103 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:09:31 +00:00
locka%iol.ie
8db57b5393 NOT PART OF BUILD. Fix bustage running in 1.0.x builds and the use of nsAutoString in LegacyPlugin.cpp because of xpcom glue issues
git-svn-id: svn://10.0.0.236/trunk@132099 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 23:06:25 +00:00
timeless%mac.com
773e03ecda Bug 172047 'Redo' item is missing in the context menu of text controls and urlbar
contributions from mats.palmgren@bredband.net r=jkeiser sr=bzbarsky moa=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@132096 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 22:22:09 +00:00
kaie%netscape.com
0a87137472 b=163605 Use of blocking I/O for SSL in PSM stalls network activity
r=javi sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@132095 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 22:20:42 +00:00
mkaply%us.ibm.com
bc429377c9 #174022
r=mikek, sr=blizzard, a=asa
OS/2 only - not part of build - initial code for tester plugin


git-svn-id: svn://10.0.0.236/trunk@132094 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 22:05:31 +00:00
beard%netscape.com
265a314ca2 Performance enhancement: using PLDHashTable to store tokens by value in the hash table, using PLArenaPool to allocate token word strings. r/sr=brendan, r=dmose [not part of build]
git-svn-id: svn://10.0.0.236/trunk@132092 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 21:29:25 +00:00
av%netscape.com
bd5d386188 Changing comment in the sample code, this is not part of the build
git-svn-id: svn://10.0.0.236/trunk@132091 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 21:05:29 +00:00
curt%netscape.com
933ee9dcb0 Get the right installed-chrome.txt for mfcembed.
(This is a build-only, GRE-only fix.)
  (Bug #174619, r=asasaki, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@132089 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 20:04:42 +00:00
kin%netscape.com
651d3a02d6 Temporarily disable attachment 87307 (Async reflow, painting, and scrolling for text widgets) which landed as part of bug 141900. Will re-enable it after bugs 158782, 151882, and 165130 are addressed.
The patch simply prevents the eEditorUseAsyncUpdatesMask bit from being set on the editor.

r=brade@netscape.com  sr=sfraser@netscape.com  a=brendan@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@132088 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 19:02:05 +00:00
leaf%mozilla.org
e19463c6db update localeVersion for 1.2b, a=asa
git-svn-id: svn://10.0.0.236/trunk@132087 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 17:51:38 +00:00
glazman%netscape.com
809e6967d5 correct version of the file ; b=173319, r=brade, sr=peterv, a=rjesup
git-svn-id: svn://10.0.0.236/trunk@132085 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 13:19:27 +00:00
bbaetz%student.usyd.edu.au
ef3b45bd99 Bug 174524 - Tidy up Bugzilla::{Util,Config}, and lazily-load unneeded modules
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@132076 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 10:49:56 +00:00
bbaetz%student.usyd.edu.au
ebcbf12863 Bug 174464 - buglist code for empty query shouldn't set headers_done
r=gerv x2


git-svn-id: svn://10.0.0.236/trunk@132075 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 10:10:45 +00:00
rods%netscape.com
8884621fab null checks added
Bug 173519 r=dcone sr=alecf a=rjesup


git-svn-id: svn://10.0.0.236/trunk@132074 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 09:17:37 +00:00
glazman%netscape.com
40826ba026 Add a tag selector to Composer's status bar. It allows to view the whole hierarchy of the current selection, from the deepest element container up to the body.
Each element in the bar is selectable and a context menu allows to select the element, remove the element preserving its contents, changing the element into another one (regardless of DTD), and open the advanced properties dialog for the element.

When "Change tag" is requested, a textbox appears in the status bar. Changes are discarded if Escape key is pressed, and performed if CR/Enter key is pressed.

b=173319, r=brade, sr=peterv, a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@132070 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 08:07:35 +00:00
bzbarsky%mit.edu
96feeec134 Better naming for mapi registry keys. Bug 166795, patch by
bugzilla@gemal.dk (Henrik Gemal), r=rdayal, sr=sspitzer, a=rjesup


git-svn-id: svn://10.0.0.236/trunk@132069 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 06:16:15 +00:00
nelsonb%netscape.com
82d1230431 Use the new quick DER decoder to decode Certificate requests, because
it does it correctly.  Fix some memory leaks in print code.
Print OCTET strings and bits strings better.


git-svn-id: svn://10.0.0.236/trunk@132067 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 05:34:54 +00:00
bzbarsky%mit.edu
b936f80095 Margin/padding computations need to flush the reflow queue. Bug 173354,
r=caillon, sr=heikki, a=asa.


git-svn-id: svn://10.0.0.236/trunk@132066 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:38:52 +00:00
yxia%netscape.com
ddf5746b5b update for adding pt-BR files
git-svn-id: svn://10.0.0.236/trunk@132063 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:34:01 +00:00
yxia%netscape.com
5a006ad94b contribute Netscape 7.0 translation
git-svn-id: svn://10.0.0.236/trunk@132059 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:12:31 +00:00
bzbarsky%mit.edu
ae2933d7e3 Missed some of that bustage...
git-svn-id: svn://10.0.0.236/trunk@132058 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:07:37 +00:00
bzbarsky%mit.edu
b63bfb40bf Make sure tr/td/tbody/etc elements with display:none end up in the
undisplayed content map.  Bug 151883, r=karnaze, sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@132057 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 03:06:03 +00:00
bzbarsky%mit.edu
d2e663d620 fixing build bustage...
git-svn-id: svn://10.0.0.236/trunk@132056 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 02:50:06 +00:00
kmcclusk%netscape.com
852a2e2dfc Fix sluggish UI during long page loads from local file or cache on WIN32 by setting plevent performance hint when there is user interaction r=rods sr=kin a=asa @173956
git-svn-id: svn://10.0.0.236/trunk@132055 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 02:13:48 +00:00
timeless%mac.com
4f89d003a3 Bug 101910 alt text is not displayed in image properties
patch by neil.marshall@sympatico.ca r=cmanske sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@132054 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 02:05:34 +00:00
nelsonb%netscape.com
5d7c539c7c Eliminate a crash in pp formatting cert requests. Bug 174188.
When asking for a new password and the two values don't match, ask for
both again.  Bug 174133.


git-svn-id: svn://10.0.0.236/trunk@132053 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 01:40:22 +00:00
nelsonb%netscape.com
cb354d67e7 Fix DER_GetInteger. Bug 174644.
git-svn-id: svn://10.0.0.236/trunk@132052 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 01:36:10 +00:00
jband%netscape.com
6758bc6369 NOT PART OF THE BUILD. Fix broken tests
git-svn-id: svn://10.0.0.236/trunk@132051 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-16 01:19:23 +00:00
varga%netscape.com
f1626347cb Fix for bug 174443. nsCOMArray::ApendObject() shouldn't addref
r=dougt, sr=alecf, a=asa


git-svn-id: svn://10.0.0.236/trunk@132048 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 23:59:20 +00:00
colin%theblakes.com
254d42cfbb Fix misplaced #include. b=174527, r=caillon, sr=bzbarsky, a=shaver
git-svn-id: svn://10.0.0.236/trunk@132047 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 23:40:38 +00:00
leaf%mozilla.org
760359020c Automated update
git-svn-id: svn://10.0.0.236/trunk@132046 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 23:39:37 +00:00
blythe%netscape.com
8336381776 Bug 170618
r=cls a=asa
Enable code size measurement build steps.
Should not effect normal build.


git-svn-id: svn://10.0.0.236/trunk@132044 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 23:34:42 +00:00
curt%netscape.com
2307b3801f Selectively add uninstaller to Add/Remove Software list for GRE
(Bug 169580, r=jbetak, sr=dveditz, a=asa)

Cleaned up hardcoded references to "MRE"
  (Bug 173619, r=jbetak, sr=dveditz, a=asa)


git-svn-id: svn://10.0.0.236/trunk@132041 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 21:57:26 +00:00
jband%netscape.com
11ad0956b0 NOT PART OF THE BUILD. Add support for the newish string types to the *optional* type decompiler
git-svn-id: svn://10.0.0.236/trunk@132040 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 21:54:55 +00:00
jband%netscape.com
3ff3d7ac70 NOT PART OF THE BUILD. Fix broken test
git-svn-id: svn://10.0.0.236/trunk@132039 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 21:53:42 +00:00
akkana%netscape.com
51d6cc8df5 174391: Make printing independant of editorshell. Fix from brade, r=me, sr=bryner, a=rjesup
git-svn-id: svn://10.0.0.236/trunk@132036 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 20:31:47 +00:00
locka%iol.ie
b9e4faf590 NOT PART OF BUILD. Fix flawfinder buffer issue.
git-svn-id: svn://10.0.0.236/trunk@132029 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 18:46:17 +00:00
chanial%noos.fr
dc8b3d8536 bug 174576 imported folder group from mozilla don't have an open in tab menuitem
git-svn-id: svn://10.0.0.236/trunk@132028 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 18:43:01 +00:00
locka%iol.ie
7eebd21c28 Fix buffer issue highlighted by flawfinder b=173630 r=chak@netscape.com sr=heikki@netscape.com a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@132027 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 18:38:31 +00:00
locka%iol.ie
e92e9fa8b9 NOT PART OF BUILD. Remove name parameter from control site
git-svn-id: svn://10.0.0.236/trunk@132026 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 18:19:09 +00:00
alecf%netscape.com
d561e65126 bug 170983 - not part of build - update nsNetUtil static library to match current signatures, so this is an easy drop-in replacement
git-svn-id: svn://10.0.0.236/trunk@132025 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 18:08:57 +00:00
mikep%oeone.com
8991b8a16c Fixing bug 174044.
git-svn-id: svn://10.0.0.236/trunk@132021 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 14:03:07 +00:00
chanial%noos.fr
29035d6116 fix open in tabs in trees
git-svn-id: svn://10.0.0.236/trunk@132020 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 13:35:37 +00:00
mikep%oeone.com
b4856f1dc7 Removing unused code.
git-svn-id: svn://10.0.0.236/trunk@132019 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 13:34:01 +00:00
varga%netscape.com
14e9297839 Fix for bug 106656. tabs' use of child nodes is inconsistent
r/sr=jag, bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@132015 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 08:50:01 +00:00
tor%cs.brown.edu
94df92a4c1 Bug 174259 - use appropriate indices in 1-bit alpha spacer image detector.
r=biese, sr=blizzard, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@132013 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 06:37:54 +00:00
bbaetz%student.usyd.edu.au
5a1dcdcdd7 Change the never-defined copy-constructor signature to refer to nsCOMArray<T>
instead of nsCOMArray. Should fix OS2 bustage, which noticed this because
it instantiates the function even when its not used
r=sicking, sr=mozbot, a=tinderbox


git-svn-id: svn://10.0.0.236/trunk@132012 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 05:19:30 +00:00
ian%hixie.ch
8d08b85de3 Switch to a template-based stylesheet.
git-svn-id: svn://10.0.0.236/trunk@132011 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 04:40:26 +00:00
bryner%netscape.com
df37692607 Enabling GTK native theme support (bug 142334). r=blizzard, sr=hyatt, a=dbaron.
git-svn-id: svn://10.0.0.236/trunk@132010 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 03:58:05 +00:00
bryner%netscape.com
6e4534190e fix reporting of errors from preprocessor.pl. only affects phoenix builds.
git-svn-id: svn://10.0.0.236/trunk@132008 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 03:55:05 +00:00
blakeross%telocity.com
757528eca9 Fix whitelisting list.
git-svn-id: svn://10.0.0.236/trunk@132007 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 01:31:57 +00:00
relyea%netscape.com
14451af148 Make grammar, punctuation, capitalization, and content changes suggested by
nelson.


git-svn-id: svn://10.0.0.236/trunk@132006 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 00:56:23 +00:00
dbaron%fas.harvard.edu
b3d24bd19b OK, over from snprintf to PR_snprintf. b=173837
git-svn-id: svn://10.0.0.236/trunk@132005 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 00:29:58 +00:00
dbaron%fas.harvard.edu
37dfe04a81 Maybe an explicit include of stdio.h will fix the myotonic bustage. b=173837
git-svn-id: svn://10.0.0.236/trunk@132004 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 00:20:45 +00:00
dbaron%fas.harvard.edu
7f403370a5 Add preference for whether to enable marquee, and set the default to disabled. b=161109 r=caillon sr=bzbarsky a=rjesup
git-svn-id: svn://10.0.0.236/trunk@132001 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 00:06:57 +00:00
dbaron%fas.harvard.edu
b1688d7dee Prevent typeaheadfind from holding on to windows/documents/etc. longer than it should. b=174113 sr=bzbarsky r=jst,aaronl a=rjesup
git-svn-id: svn://10.0.0.236/trunk@132000 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-15 00:04:27 +00:00
dbaron%fas.harvard.edu
b37e1a7652 Make Linux stack walking code (DEBUG only) print library and offset information even when symbol is unavailable. b=174168 r=bbaetz sr=bzbarsky a=rjesup
git-svn-id: svn://10.0.0.236/trunk@131999 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:59:31 +00:00
dbaron%fas.harvard.edu
521000f98f Remove unused ability to optionally arena-allocate certain stylesheet objects. b=174256 r=kin sr=bzbarsky a=rjesup
git-svn-id: svn://10.0.0.236/trunk@131998 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:57:17 +00:00
dbaron%fas.harvard.edu
795925d5f4 Change sprintf to snprintf to avoid potential for buffer overflow. Untabify surrounding code. b=173837 r=heikki sr=bzbarsky a=rjesup
git-svn-id: svn://10.0.0.236/trunk@131997 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:49:48 +00:00
dbaron%fas.harvard.edu
9d9406d6d8 Fix leak of transactions. b=174123 r=jfrancis sr=kin a=rjesup
git-svn-id: svn://10.0.0.236/trunk@131996 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:48:05 +00:00
curt%netscape.com
8cec20cbdf Missed one file in the manifest for bug 171010
GRE installer build only.  No impact on regular build.


git-svn-id: svn://10.0.0.236/trunk@131995 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:46:41 +00:00
waldemar%netscape.com
d08e9755b2 Added depict-string-words
git-svn-id: svn://10.0.0.236/trunk@131993 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:18:49 +00:00
waldemar%netscape.com
9a18ce6345 Abbreviated repetitive actions as :forward wherever possible
git-svn-id: svn://10.0.0.236/trunk@131992 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:18:34 +00:00
waldemar%netscape.com
81ef7c3f2f Added :forward actions
git-svn-id: svn://10.0.0.236/trunk@131991 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:17:59 +00:00
waldemar%netscape.com
af3bb591d8 First version
git-svn-id: svn://10.0.0.236/trunk@131990 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 23:16:15 +00:00
rogerl%netscape.com
6890e8e380 Prototype constructors.
git-svn-id: svn://10.0.0.236/trunk@131989 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:44:51 +00:00
curt%netscape.com
dd3432f53b Using the right manifests with the right paths
Not part of the build process; used only by installer developers
 (Bug 171010, r=jbetak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@131988 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:41:10 +00:00
timeless%mac.com
74a540e41b Bugzilla Bug 174447 fix typos in nsStaticNameTable.h
git-svn-id: svn://10.0.0.236/trunk@131987 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:39:44 +00:00
curt%netscape.com
fd7d4a2856 Get the right files using the right manifests.
Not part of the regular build; GRE installer build process only.
  (Bug #171010, r=jbetak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@131986 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:38:17 +00:00
asasaki%netscape.com
efe40f2bba bug 173355, update mac getinfo strings for 1.2b. r=jj sr=leaf a=blanket
for version updates.


git-svn-id: svn://10.0.0.236/trunk@131985 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:28:57 +00:00
akkana%netscape.com
3fa55ef291 145196: prevent creation of extra blank lines. Fix from burpmaster@truffula.net, r=akkana, sr=jag, a=rjesup
git-svn-id: svn://10.0.0.236/trunk@131984 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 22:07:48 +00:00
chanial%noos.fr
b9487b624f getting a method back
git-svn-id: svn://10.0.0.236/trunk@131982 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 20:57:16 +00:00
glazman%netscape.com
7ff2141452 Composer was inserting charset information (meta element) after the title of the document; b=145952, r=brade, sr=peterv, a=asa
git-svn-id: svn://10.0.0.236/trunk@131981 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 20:14:40 +00:00
chanial%noos.fr
572e988ef4 fix bookmark property dialog
git-svn-id: svn://10.0.0.236/trunk@131980 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 20:11:33 +00:00
hyatt%netscape.com
fe5ba75966 Yank icon from Open in Tabs for now until we decide whether or not commands will have icons.
git-svn-id: svn://10.0.0.236/trunk@131979 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 20:06:11 +00:00
akkana%netscape.com
46dfccce92 174369: fix mailnews so it can again break quoted sections. r=jfrancis sr=sfraser a=blizzard
git-svn-id: svn://10.0.0.236/trunk@131978 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:54:52 +00:00
dsirnapalli%netscape.com
8bb9ba49c3 Updated testcases to test attribute accKeyboardShortcut.
git-svn-id: svn://10.0.0.236/trunk@131977 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:36:28 +00:00
depstein%netscape.com
53184219cb removed "NULL" entry for aEditorType in MakeWindowEditable() and inserted "text" (Bug 174151). not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131976 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:34:34 +00:00
dbradley%netscape.com
f23404fbd9 Bug 169902 - nsStandardURL::Resolve passes wrong length in some cases to ParseURL. r=dougt@netscape, sr=darin@netscape, a=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@131975 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:20:54 +00:00
chanial%noos.fr
312c643856 fix bookmarks bustage
git-svn-id: svn://10.0.0.236/trunk@131974 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:09:16 +00:00
alecf%netscape.com
2424fe08f3 fix for bug 172004 - provide a mechanism for embeddors to override specific strings in any string bundle with a single "string manifest" file.
r=tao, sr=sfraser, a=asa


git-svn-id: svn://10.0.0.236/trunk@131973 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 19:06:27 +00:00
kaie%netscape.com
ef6033a5a2 b=169185 remove call to non-existant function
r=rangansen sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@131970 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 17:57:58 +00:00
robinf%netscape.com
7693721041 help updates per bug 122806, r=oeschger
git-svn-id: svn://10.0.0.236/trunk@131969 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 17:55:02 +00:00
dougt%netscape.com
820b2ca5fe Not part of build
git-svn-id: svn://10.0.0.236/trunk@131967 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 17:41:00 +00:00
kaie%netscape.com
3255d846d5 b=165574 PSM embedding freeze/ step 3/ replace nsISupportsArray with nsIArray
r=javi sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@131965 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 14:49:00 +00:00
kaie%netscape.com
a0e2f21da0 b=171220 Profile switching network teardown race condition with NSS shutdown
r=ccarlen sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@131964 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 14:42:13 +00:00
kaie%netscape.com
3472b5500b b=147280 Ensure Mozilla uses the shipped nssckbi or a newer builtin roots module
r=javi sr=dveditz a=asa


git-svn-id: svn://10.0.0.236/trunk@131963 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 14:39:04 +00:00
kaie%netscape.com
f524453856 b=106865 Blank page instead of SSL error dialog visiting https server
r=rpotts sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@131962 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 14:34:40 +00:00
varga%netscape.com
1f068eab4b Fix fo bug 173754. JS Debugger doesn't respect text/icon toolbar pref on startup
r=rginda, a=asa
patch by Neil


git-svn-id: svn://10.0.0.236/trunk@131961 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 11:25:08 +00:00
varga%netscape.com
7ff04234b5 Fix for bug 123207. file bookmark dialog window resizes itself after every use from the bookmark manager
r=pch, sr=jag, a=asa
patch by Neil


git-svn-id: svn://10.0.0.236/trunk@131960 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 11:20:08 +00:00
bryner%netscape.com
00fec8fa79 Fix incorrect (and potentially uninitialized) native widget used for NS_THEME_DROPDOWN_BUTTON. Not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@131959 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 10:08:26 +00:00
bryner%netscape.com
adc5115c10 Locate the symbols for gtk_style_get_prop_experimental and _gtk_check_button_get_props at runtime, so that builds done on GTK+ versions < 1.2.9 will function correctly with newer GTK+ versions and themes (bug 174319). r=pavlov, sr=brendan, not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@131957 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 09:32:05 +00:00
bolian.yin%sun.com
84fade5329 Bug 174317, [gtk2] should use nsCOMPtr type for mTopLevelAccessible in nsWindow. This is NOT for default build.
git-svn-id: svn://10.0.0.236/trunk@131954 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 08:43:35 +00:00
dveditz%netscape.com
c2361eff9c bug 167515 fixes WinXP SP1 install crash due to OS change in DLL loading order sometimes picking up zlib.dll from other applications
git-svn-id: svn://10.0.0.236/trunk@131953 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 08:11:01 +00:00
bryner%netscape.com
d37a125650 Removing deleted Makefiles
git-svn-id: svn://10.0.0.236/trunk@131952 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 07:21:36 +00:00
rdayal%netscape.com
aff7cf4d38 Bug #173821 Modify the Palm Installer to search for Palm Dlls on local disk
Changes in the PalmSync installer to search for Palm dir using Registry key settings.
Also changes to include the Palm Sync files in installer manifest.

r=ssu, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@131951 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 06:58:10 +00:00
rdayal%netscape.com
81044fed1b part of Bug #173281 Modify for install.
Changes for registration of PalmSync support interface

r=ssu, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@131950 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 06:53:05 +00:00
ian%hixie.ch
b660a6ab48 Make this work on Mac as well, just in case.
git-svn-id: svn://10.0.0.236/trunk@131949 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 04:12:34 +00:00
ian%hixie.ch
285ed3f1b5 Preprocessor now requires version 0.8 of File::Spec
git-svn-id: svn://10.0.0.236/trunk@131948 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 04:09:03 +00:00
chanial%noos.fr
1a762d09d6 Fix adding a group of tab and bookmark transaction manager horking in phoenix.
Allow the insertion of a resource in a valid container that isn't in the bookmark graph.
Not part of the build


git-svn-id: svn://10.0.0.236/trunk@131947 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 02:41:52 +00:00
rogerl%netscape.com
c02140af8e Added 'for..in' support.
git-svn-id: svn://10.0.0.236/trunk@131944 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 02:26:21 +00:00
chanial%noos.fr
ce6348cfa4 flush the ds after adding a bookmark
git-svn-id: svn://10.0.0.236/trunk@131943 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 02:14:40 +00:00
chanial%noos.fr
4c5b8169c6 delay service instanciation
git-svn-id: svn://10.0.0.236/trunk@131942 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 01:26:08 +00:00
ian%hixie.ch
d9a7cf6783 Change the path handling code to use File::Spec instead of rolling my own. Thanks to bbaetz for the suggestion. This should mean it works on more platforms.
git-svn-id: svn://10.0.0.236/trunk@131941 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 01:22:06 +00:00
ian%hixie.ch
81b30d140c #include now expects unix-like paths on all platforms
git-svn-id: svn://10.0.0.236/trunk@131940 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-14 00:54:49 +00:00
blakeross%telocity.com
0c7a325da2 A little cleanup.
git-svn-id: svn://10.0.0.236/trunk@131939 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 23:52:36 +00:00
blakeross%telocity.com
8642be3ef1 A little cleanup.
git-svn-id: svn://10.0.0.236/trunk@131938 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 23:48:03 +00:00
blakeross%telocity.com
ca93b8f31c remove dump after pageload.
git-svn-id: svn://10.0.0.236/trunk@131937 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 23:33:54 +00:00
blakeross%telocity.com
dda8697c75 Add progressmeter.xml
git-svn-id: svn://10.0.0.236/trunk@131936 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 23:12:54 +00:00
blakeross%telocity.com
90c7c4dc86 use gURLBar
git-svn-id: svn://10.0.0.236/trunk@131935 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:50:26 +00:00
blakeross%telocity.com
e206b423a2 remove a useless comment.
git-svn-id: svn://10.0.0.236/trunk@131934 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:45:50 +00:00
ian%hixie.ch
2ebce3411b Make #error also expand variables, like #expand (makes things easier to debug)
git-svn-id: svn://10.0.0.236/trunk@131933 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:45:34 +00:00
blakeross%telocity.com
b38d63ffc3 Remove nsTransferable
git-svn-id: svn://10.0.0.236/trunk@131932 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:44:53 +00:00
blakeross%telocity.com
6e7d761766 Fork nsDragAndDrop
git-svn-id: svn://10.0.0.236/trunk@131931 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:44:18 +00:00
blakeross%telocity.com
461f2d35a1 Finish forking toolkit.
git-svn-id: svn://10.0.0.236/trunk@131930 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:44:10 +00:00
ian%hixie.ch
e67eedebd9 Make #includes be relative to the path of the current file. This requires platform-specific knowledge, and so will most likely break builds that are on platforms other than linux, cygwin, MacOS, and MSWin32. Contact me on IRC and I'll add the relevant code to make it work on your platform too. Also includes a fix for the spaces filter (it was eating end of lines).
git-svn-id: svn://10.0.0.236/trunk@131929 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:37:17 +00:00
blakeross%telocity.com
ea4213bbd0 Remove a useless comment.
git-svn-id: svn://10.0.0.236/trunk@131928 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:34:36 +00:00
bryner%netscape.com
7192c56727 Pass the file to preprocess on the command line instead of via stdin, so that includes work. Only affects phoenix builds. r=hixie, sr=blake.
git-svn-id: svn://10.0.0.236/trunk@131927 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:33:53 +00:00
blakeross%telocity.com
0dcbf1d1eb readd nsTransferable.js
git-svn-id: svn://10.0.0.236/trunk@131926 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:23:34 +00:00
blakeross%telocity.com
d895c99eca use ifdef for page cycling.
git-svn-id: svn://10.0.0.236/trunk@131925 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 22:22:38 +00:00
blakeross%telocity.com
a6138313bd use better ifdef for xremote.
git-svn-id: svn://10.0.0.236/trunk@131924 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 21:25:16 +00:00
blakeross%telocity.com
5a928a179d use preprocessor instead of checking navigator.platform for click selects all.
git-svn-id: svn://10.0.0.236/trunk@131923 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 21:18:10 +00:00
blakeross%telocity.com
8481f9fe74 Remove space.
git-svn-id: svn://10.0.0.236/trunk@131922 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 20:04:05 +00:00
brendan%mozilla.org
3e1fb18591 Comment improvements motivated by bug 173797, no code changes.
git-svn-id: svn://10.0.0.236/trunk@131921 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 19:08:07 +00:00
bzbarsky%mit.edu
505d37753e Fix crash in nsStyleQuotes copy constructor. Bug 174178, r=caillon,
sr=dbaron, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@131920 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 18:55:12 +00:00
ian%hixie.ch
d1f2d0bed4 Trim spaces at start and end of lines. Also, turn the foreach loop around so it works on old perls.
git-svn-id: svn://10.0.0.236/trunk@131919 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 18:04:58 +00:00
blakeross%telocity.com
eaaa70fa2e Hook up customize toolbar callback after window shows; ifdef XP_UNIX out the xremote stuff (I'm anal).
git-svn-id: svn://10.0.0.236/trunk@131918 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 17:32:15 +00:00
blakeross%telocity.com
8aa9c68679 Fix charset bug.
git-svn-id: svn://10.0.0.236/trunk@131917 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 17:23:14 +00:00
chanial%noos.fr
1870c3fd4b fix DND between the last visible bookmark and the chevron in the personal toolbar. spring loaded chevron menupopup.
git-svn-id: svn://10.0.0.236/trunk@131916 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:56:13 +00:00
blakeross%telocity.com
9f172b7d86 Just put the bookmarks-toolbar binding into browser.css so we don't need to include yet another css file.
git-svn-id: svn://10.0.0.236/trunk@131915 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:50:35 +00:00
blakeross%telocity.com
e35c5147df We shouldn't need nsUserSettings.js anymore.
git-svn-id: svn://10.0.0.236/trunk@131914 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:47:35 +00:00
blakeross%telocity.com
cbd3cd5745 Remove an old overlay hook.
git-svn-id: svn://10.0.0.236/trunk@131913 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:46:31 +00:00
blakeross%telocity.com
2d91ea67cf Remove some stringbundles we no longer use.
git-svn-id: svn://10.0.0.236/trunk@131912 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:43:29 +00:00
blakeross%telocity.com
e19c1e99f1 Remove charset.js, some perf optimizations.
git-svn-id: svn://10.0.0.236/trunk@131911 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:39:47 +00:00
blakeross%telocity.com
52ec0bb2f7 fold contentAreAclick.js into browser.js; speed optimizations.
git-svn-id: svn://10.0.0.236/trunk@131910 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:35:19 +00:00
blakeross%telocity.com
d1b710d66d Some cleanup.
git-svn-id: svn://10.0.0.236/trunk@131909 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 16:28:34 +00:00
blakeross%telocity.com
1682759e92 And now remove nsContextMenu.js.
git-svn-id: svn://10.0.0.236/trunk@131908 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 06:55:16 +00:00
blakeross%telocity.com
979e9b7140 Fold nsContextMenu.js into browser.js, remove two script includes, fix search in context menu.
git-svn-id: svn://10.0.0.236/trunk@131907 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 06:52:56 +00:00
blakeross%telocity.com
bbab0c301c Remove some more cruft from browser.js.
git-svn-id: svn://10.0.0.236/trunk@131906 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 06:34:40 +00:00
blakeross%telocity.com
69b1ff6bca set page proxy state after window shows.
git-svn-id: svn://10.0.0.236/trunk@131905 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 06:28:56 +00:00
blakeross%telocity.com
9e8b6dedfd fix page load event handlers and thus bookmarks last visited col.
git-svn-id: svn://10.0.0.236/trunk@131904 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 06:24:00 +00:00
hyatt%netscape.com
69c0e926f1 Fix PT drag/drop bustage
git-svn-id: svn://10.0.0.236/trunk@131903 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:49:54 +00:00
blakeross%telocity.com
3b96d984dc Remove some cruft from browser.js.
git-svn-id: svn://10.0.0.236/trunk@131902 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:23:24 +00:00
blakeross%telocity.com
d6e87ce2db Fix history bug.
git-svn-id: svn://10.0.0.236/trunk@131901 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:11:04 +00:00
blakeross%telocity.com
ac746c285e Remove some old history code.
git-svn-id: svn://10.0.0.236/trunk@131900 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:07:46 +00:00
blakeross%telocity.com
d38740638a Fix some bugs in the history context menu.
git-svn-id: svn://10.0.0.236/trunk@131899 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:05:05 +00:00
blakeross%telocity.com
42bff0236a Fix history DND to browser window.
git-svn-id: svn://10.0.0.236/trunk@131898 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 05:00:38 +00:00
blakeross%telocity.com
73f1434d7b testing something...
git-svn-id: svn://10.0.0.236/trunk@131897 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 04:52:35 +00:00
blakeross%telocity.com
e1410f95ef testing something...
git-svn-id: svn://10.0.0.236/trunk@131896 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 04:49:37 +00:00
bugreport%peshkin.net
6d78654972 Bug 24789 [E|A|R] Add Estimated, Actual, Remaining Time Fields
patch by jeff.hedlund@matrixsi.com
2xr=joel,justdave


git-svn-id: svn://10.0.0.236/trunk@131895 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 04:26:24 +00:00
blakeross%telocity.com
6472e40a8c move phoenix obs notification, NPOB. r=hewitt/sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@131894 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:51:29 +00:00
blakeross%telocity.com
c80c1c9718 174132 - bookmarks shouldn't hardcode navigator chrome url (fix bookmarks notifications in Phoenix). r=bryner sr=hewitt a=brendan
git-svn-id: svn://10.0.0.236/trunk@131893 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:31:48 +00:00
blakeross%telocity.com
28165ca156 some fixes.
git-svn-id: svn://10.0.0.236/trunk@131892 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:24:34 +00:00
blakeross%telocity.com
6529e1b01a fix added col
git-svn-id: svn://10.0.0.236/trunk@131891 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:18:47 +00:00
blakeross%telocity.com
48491710f6 Fix Added column in bookmarks manager.
git-svn-id: svn://10.0.0.236/trunk@131890 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:11:35 +00:00
blakeross%telocity.com
a75a735ba5 Oops; add new pref panels.
git-svn-id: svn://10.0.0.236/trunk@131889 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 03:02:27 +00:00
bryner%netscape.com
b193df0245 Fix one more warning
git-svn-id: svn://10.0.0.236/trunk@131888 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:55:11 +00:00
blakeross%telocity.com
0a4c4a5836 Reduce timeout to 0.
git-svn-id: svn://10.0.0.236/trunk@131887 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:27:53 +00:00
blakeross%telocity.com
219aeeede3 A little cleanup.
git-svn-id: svn://10.0.0.236/trunk@131886 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:24:18 +00:00
blakeross%telocity.com
5846cca2ab A little cleanup.
git-svn-id: svn://10.0.0.236/trunk@131885 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:22:40 +00:00
blakeross%telocity.com
8360532ece Remove slow cropping stuff.
git-svn-id: svn://10.0.0.236/trunk@131884 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:14:17 +00:00
bryner%netscape.com
fee8a06a11 Fix C++ comments in C file. patch from roc, r=me.
git-svn-id: svn://10.0.0.236/trunk@131883 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:11:46 +00:00
blakeross%telocity.com
df9e08402b Remove popups pref panel.
git-svn-id: svn://10.0.0.236/trunk@131881 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 02:03:04 +00:00
bryner%netscape.com
960d490304 Fix checked checkboxes drawing as unchecked on the Crux theme. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131880 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 01:22:59 +00:00
blakeross%telocity.com
753eb19bb1 Add new day -> site history view.
git-svn-id: svn://10.0.0.236/trunk@131879 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 01:08:43 +00:00
blakeross%telocity.com
0b8ed81291 Remove pointless menubar from js console.
git-svn-id: svn://10.0.0.236/trunk@131878 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 00:08:28 +00:00
wtc%netscape.com
a540a3c70b Converted runtests.ksh (rev. 1.25) into a Bourne shell script. Replaced
Korn shell's echo command by the printf command.


git-svn-id: svn://10.0.0.236/trunk@131877 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-13 00:04:00 +00:00
rogerl%netscape.com
a7adf67f5b Updated README for Epimetheus. Only has win32 for now.
git-svn-id: svn://10.0.0.236/trunk@131876 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 18:08:29 +00:00
blakeross%telocity.com
ae37e6bffe fix blank menuitem.
git-svn-id: svn://10.0.0.236/trunk@131875 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 17:42:17 +00:00
bugreport%peshkin.net
5a6066251b Bug 174112 Edit multiple bugs broken
r=burnus


git-svn-id: svn://10.0.0.236/trunk@131874 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 17:00:33 +00:00
despotdaemon%netscape.com
7b349915c7 Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131872 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 06:48:58 +00:00
despotdaemon%netscape.com
53ad22e6e4 Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131871 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 06:46:48 +00:00
despotdaemon%netscape.com
8afc79e443 Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131870 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 06:46:30 +00:00
despotdaemon%netscape.com
7c779c1a5e Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131869 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 06:45:11 +00:00
blizzard%redhat.com
f90a945691 Try to fix HPUX bustage. Fallout from 126919.
git-svn-id: svn://10.0.0.236/trunk@131868 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 03:27:02 +00:00
blakeross%telocity.com
18d59d7429 Remove unnecessary width specification.
git-svn-id: svn://10.0.0.236/trunk@131867 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 03:16:35 +00:00
tara%tequilarista.org
689cfef2ef Checking in patch to fix 38789
git-svn-id: svn://10.0.0.236/trunk@131866 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 03:10:33 +00:00
blizzard%redhat.com
ee29575595 Fix myotonic bustage by making sure that --disable-mathml works. Fallout from bug #126919.
git-svn-id: svn://10.0.0.236/trunk@131865 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 03:00:17 +00:00
pschwartau%netscape.com
4910885c7c Remove the -x check on the absolute path to xpcshell. In Perl 5.005 on Windows, the -x operator returns |false| on absolute paths, even if they are valid.
git-svn-id: svn://10.0.0.236/trunk@131864 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 02:43:17 +00:00
pschwartau%netscape.com
41a5b57b6e Use -x &xp_path() more consistently.
git-svn-id: svn://10.0.0.236/trunk@131862 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 02:08:02 +00:00
blizzard%redhat.com
c53947e817 Bug #126919. Xft support. r=rbs, sr=dbaron a=roc,shaver,others
git-svn-id: svn://10.0.0.236/trunk@131861 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 02:03:34 +00:00
pschwartau%netscape.com
48b2acdc84 Re-factoring the last fix into the existing function xp_path().
git-svn-id: svn://10.0.0.236/trunk@131860 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:57:16 +00:00
depstein%netscape.com
bddb4eb769 Fixed Get/SetURIContentListener and SetContainerWindow test cases in nsIWebBrow.cpp. Added SetSessionHistory test case in nsiHistory.cpp (while saving existing sHistory). Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131859 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:51:18 +00:00
beard%netscape.com
0858d54598 oops, forgot a return type on isUpperCase() r/sr=sspitzer a=asa [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131858 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:14:53 +00:00
jpierre%netscape.com
2694d28bb8 Fix for 169038 - correct entries for TC TrustCenter roots
git-svn-id: svn://10.0.0.236/trunk@131857 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:08:14 +00:00
jpierre%netscape.com
2111228f87 Fix for 169038 - correct entries for TC TrustCenter roots
git-svn-id: svn://10.0.0.236/trunk@131855 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:04:53 +00:00
jpierre%netscape.com
fbf29a5a7b Fix addbuiltin t add issuer & serial number to trust object
git-svn-id: svn://10.0.0.236/trunk@131853 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 01:00:33 +00:00
beard%netscape.com
6a31d51d96 Don't lowercase non-ASCII characters! r/sr=sspitzer a=asa [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131852 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 00:45:07 +00:00
rogerl%netscape.com
f4cfeebbf0 Exception handling start.
git-svn-id: svn://10.0.0.236/trunk@131850 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 00:12:21 +00:00
blakeross%telocity.com
da8eecf57e fix typo.
git-svn-id: svn://10.0.0.236/trunk@131849 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 00:11:45 +00:00
blakeross%telocity.com
2546fa5ca2 Removing isImage junk.
git-svn-id: svn://10.0.0.236/trunk@131848 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-12 00:10:35 +00:00
cltbld%netscape.com
b4525ff9eb updated version to 1.2b Bug# 173361 r=jj,sr/a=leaf. ycalonje checking in as cltbld
git-svn-id: svn://10.0.0.236/trunk@131847 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:50:48 +00:00
cltbld%netscape.com
5391ebb5f8 updated version to 1.2.0b.0 Bug# 173361 r=jj,sr/a=leaf. ycalonje checking in as cltbld
git-svn-id: svn://10.0.0.236/trunk@131846 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:48:54 +00:00
akkana%netscape.com
da26e1e4b2 168999: Make nsEditorSpellCheck an independant object instead of part of editorshell. r=brade sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@131845 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:46:57 +00:00
bzbarsky%mit.edu
10a3e31964 Fix bug 168737 -- two-byte-encoded pages got no syntax highlighting.
r=caillon, sr=rbs, a=asa.


git-svn-id: svn://10.0.0.236/trunk@131844 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:46:11 +00:00
akkana%netscape.com
aa2b9e0518 173608: fix regression in printing from mail compose. r=brade,ducarroz, sr=sspitzer, a=asa
git-svn-id: svn://10.0.0.236/trunk@131843 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:43:34 +00:00
akkana%netscape.com
8e5f7d26bc 173608: fix regression on inserting data in SendLink, reply, signature, Edit Draft, etc. r=ducarroz, sr=sspitzer, a=asa
git-svn-id: svn://10.0.0.236/trunk@131842 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:42:33 +00:00
sspitzer%netscape.com
c2976098d9 the bayesian plugin is a service, so do get service. thanks to beard for pointing this out.
part of bug #169638.  r=dmose. a=asa, since this doesn't affect end users.


git-svn-id: svn://10.0.0.236/trunk@131841 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:41:37 +00:00
pschwartau%netscape.com
c8fbb2c528 Don't hard-code "\"as the path separator for Windows (rev. 1.36). Some Windows shells (e.g. Cygwin 1.1.8) require "/".
git-svn-id: svn://10.0.0.236/trunk@131839 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:31:23 +00:00
hyatt%netscape.com
d3e012bcb5 Fix PT flex.
git-svn-id: svn://10.0.0.236/trunk@131837 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 23:08:56 +00:00
chanial%noos.fr
2eb079300a correctly adding bookmarks-icons.png
git-svn-id: svn://10.0.0.236/trunk@131835 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:41:12 +00:00
chanial%noos.fr
bdf560dfc4 correctly adding bookmarks-menuicons.png
git-svn-id: svn://10.0.0.236/trunk@131834 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:38:53 +00:00
seawood%netscape.com
bb81de2d15 mach-o builds define both XP_UNIX *and* XP_MACOSX so we need to add a !XP_MACOSX to the XP_UNIX ifdef to avoid repeating a chunk of code twice and crashing.
Bug #173695 r=pavlov sr=alecf a=tor


git-svn-id: svn://10.0.0.236/trunk@131833 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:31:43 +00:00
hyatt%netscape.com
b1f338db70 Fixing CTRL+TAB
git-svn-id: svn://10.0.0.236/trunk@131832 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:24:02 +00:00
hyatt%netscape.com
fe6f0793e9 Fix page report bustage.
git-svn-id: svn://10.0.0.236/trunk@131831 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:16:19 +00:00
chanial%noos.fr
952fefb8d3 when appending, reuse eventual last blank tabs
+ correct tab selection


git-svn-id: svn://10.0.0.236/trunk@131830 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:07:16 +00:00
hyatt%netscape.com
a04b3fc9e6 Add back rules for Open in Tabs having an icon
git-svn-id: svn://10.0.0.236/trunk@131829 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 22:05:33 +00:00
hyatt%netscape.com
4f38af2393 Fix tabbrowser bug.
git-svn-id: svn://10.0.0.236/trunk@131828 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 21:58:14 +00:00
hyatt%netscape.com
e169b2fe3c Sync tab and friends with the trunk
git-svn-id: svn://10.0.0.236/trunk@131827 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 21:47:04 +00:00
rogerl%netscape.com
f2b26e072c Bitwise Long/ULong implementation.
git-svn-id: svn://10.0.0.236/trunk@131826 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 21:43:06 +00:00
cbiesinger%web.de
4f8edccc35 bug 84542 r=jag,doron sr=bzbarsky a=asa,#mozilla disable page source context menu item for images
git-svn-id: svn://10.0.0.236/trunk@131825 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 21:07:06 +00:00
chanial%noos.fr
459fc913c9 adding pref append/replace when opening a bookmark folder
git-svn-id: svn://10.0.0.236/trunk@131824 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 21:03:28 +00:00
hyatt%netscape.com
f7fcbb8170 Fix autocomplete.
git-svn-id: svn://10.0.0.236/trunk@131823 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 20:55:59 +00:00
blakeross%telocity.com
5b07fc3900 Fix history problem.
git-svn-id: svn://10.0.0.236/trunk@131822 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 20:01:37 +00:00
blakeross%telocity.com
0b8db7d6b0 Fixing history problem.
git-svn-id: svn://10.0.0.236/trunk@131821 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:59:02 +00:00
blakeross%telocity.com
9183da3a81 Phoenix changes only, NPOB. r=hewitt / sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@131820 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:58:15 +00:00
despotdaemon%netscape.com
0758ae526f Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131818 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:11:09 +00:00
despotdaemon%netscape.com
8944efc4e3 Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131817 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:08:34 +00:00
despotdaemon%netscape.com
6dcdb21d22 Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131816 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:08:17 +00:00
despotdaemon%netscape.com
4fd68f8d2b Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131815 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:07:57 +00:00
despotdaemon%netscape.com
496897984d Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131814 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:07:30 +00:00
despotdaemon%netscape.com
9cecd6dbed Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131813 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:06:20 +00:00
despotdaemon%netscape.com
28ab2d22a3 Pseudo-automatic update of changes made by pavlov@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131812 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:05:25 +00:00
blakeross%telocity.com
ac9e474c34 Remove unnecessary dtd.
git-svn-id: svn://10.0.0.236/trunk@131811 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 19:02:28 +00:00
hyatt%netscape.com
e60fd52024 Fix Go menu.
git-svn-id: svn://10.0.0.236/trunk@131810 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 18:59:47 +00:00
hyatt%netscape.com
1125ceb9c8 Fix Go menu.
git-svn-id: svn://10.0.0.236/trunk@131809 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 18:56:05 +00:00
blakeross%telocity.com
2f5d0ac006 remove indentation
git-svn-id: svn://10.0.0.236/trunk@131808 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 18:47:26 +00:00
kaie%netscape.com
1647b04020 b=172455 Mozilla crashes when viewing certificate details
r=javi sr=jag a=dbaron


git-svn-id: svn://10.0.0.236/trunk@131806 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 13:21:58 +00:00
blakeross%telocity.com
58e0163f6c Fix font zoom.
git-svn-id: svn://10.0.0.236/trunk@131805 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 10:54:17 +00:00
blakeross%telocity.com
22f3f8d231 hyatt is on crack...
git-svn-id: svn://10.0.0.236/trunk@131804 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 10:46:33 +00:00
hyatt%netscape.com
d813c2fcaf Fix autocomplete field in prefs to not be so small.
git-svn-id: svn://10.0.0.236/trunk@131802 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 10:07:59 +00:00
hyatt%netscape.com
9cba81b471 Mark links as visited when they get opened in new tabs/windows.
git-svn-id: svn://10.0.0.236/trunk@131801 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 09:47:16 +00:00
hyatt%netscape.com
746775c912 Mark links as visited when they get opened in new tabs/windows.
git-svn-id: svn://10.0.0.236/trunk@131800 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 09:20:18 +00:00
hyatt%netscape.com
9889b6925b Mark links as visited when they get opened in new tabs/windows.
git-svn-id: svn://10.0.0.236/trunk@131799 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 09:14:32 +00:00
leaf%mozilla.org
86111a00eb Automated update
git-svn-id: svn://10.0.0.236/trunk@131798 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:54:28 +00:00
hyatt%netscape.com
c7ccb235ba Fix bustage of prefs.
git-svn-id: svn://10.0.0.236/trunk@131797 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:54:02 +00:00
bryner%netscape.com
810912fc95 Fix running the preprocessor from cmd shells; make sure the preprocessed files end up in the jar. Only affects Phoenix builds.
git-svn-id: svn://10.0.0.236/trunk@131796 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:54:00 +00:00
bryner%netscape.com
97d98b9475 Second try at landing bug 171343 - nsProfileAccess's signal handler should use SA_SIGINFO and sa_sigaction where available. r=ccarlen, cls, sr=brendan, a=chofmann.
git-svn-id: svn://10.0.0.236/trunk@131795 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:44:02 +00:00
hyatt%netscape.com
976ae209b8 Fix fullscreen mode.
git-svn-id: svn://10.0.0.236/trunk@131794 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:31:23 +00:00
hyatt%netscape.com
b7d035fd13 Fix autocomplete not closing up on tabbing.
git-svn-id: svn://10.0.0.236/trunk@131793 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:18:50 +00:00
john.marmion%ireland.sun.com
b24a0bb13d 3rdParty LDAP query may result in invalid filter: bug #146411 r=dmose,sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@131792 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:17:13 +00:00
john.marmion%ireland.sun.com
20a807fc6c 3rdParty LDAP query may result in invalid filter: bug #146411, r=dmose,sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@131791 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 08:16:11 +00:00
hyatt%netscape.com
281053d03e Make form fill work again.
git-svn-id: svn://10.0.0.236/trunk@131790 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 07:54:21 +00:00
hyatt%netscape.com
95c8dabb1a Make form fill work again.
git-svn-id: svn://10.0.0.236/trunk@131789 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 07:50:53 +00:00
gerv%gerv.net
2ef1dd25a6 Bug 173808 - Use of uninitialized value in subtraction (-) at duplicates.cgi line 133. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131785 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 06:30:09 +00:00
gerv%gerv.net
9ce9ca0786 Bug 173719 - warnings in report.cgi. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131784 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 06:27:37 +00:00
seawood%netscape.com
83d0a241eb Use -B symbolic when linking component libraries on OSF/1.
Thanks to Shanmugavelu Shanmuganathan <shanmu@netscape.com> for the patch.
Bug #173358 r=cls a=asa


git-svn-id: svn://10.0.0.236/trunk@131782 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 05:18:39 +00:00
seawood%netscape.com
c77e457a97 Fixing bustage caused by parallel build race condition.
Bug #173829 r=bryner a=asa


git-svn-id: svn://10.0.0.236/trunk@131780 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 05:09:31 +00:00
darin%netscape.com
10ba1113a1 fixes bug 151478 "https wyciwyg page is cached on disk" r=mstoltz sr=rpotts a=asa
git-svn-id: svn://10.0.0.236/trunk@131775 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 04:22:54 +00:00
nicolson%netscape.com
8345e49326 Temporary fix for 164692: SSL ops that timeout should throw
java.net.SocketTimeoutException.


git-svn-id: svn://10.0.0.236/trunk@131774 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 03:49:34 +00:00
blakeross%telocity.com
8bc0c2bc75 Missed a line.
git-svn-id: svn://10.0.0.236/trunk@131772 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:35:28 +00:00
blakeross%telocity.com
cb37faedfe Remove more comm.jar dependencies.
git-svn-id: svn://10.0.0.236/trunk@131771 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:31:55 +00:00
blakeross%telocity.com
81fb110d73 Remove final overlay on prefs dlg; remove unused files.
git-svn-id: svn://10.0.0.236/trunk@131770 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:30:01 +00:00
blakeross%telocity.com
f850a6993f Strip another license.
git-svn-id: svn://10.0.0.236/trunk@131769 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:24:42 +00:00
blakeross%telocity.com
7a2bbf6399 A little cleanup.
git-svn-id: svn://10.0.0.236/trunk@131768 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:22:35 +00:00
blythe%netscape.com
78372d6959 NOT part of build
demangle symbols in report


git-svn-id: svn://10.0.0.236/trunk@131767 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:20:28 +00:00
blakeross%telocity.com
55024ae8f6 Removing unused files.
git-svn-id: svn://10.0.0.236/trunk@131766 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:18:13 +00:00
blakeross%telocity.com
701e237e4c Remove another comm.jar dependency.
git-svn-id: svn://10.0.0.236/trunk@131765 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:16:15 +00:00
blakeross%telocity.com
8bea09d72d Fix quit.
git-svn-id: svn://10.0.0.236/trunk@131764 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:15:05 +00:00
blakeross%telocity.com
8590953dfb Removing unused files.
git-svn-id: svn://10.0.0.236/trunk@131763 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:12:33 +00:00
blakeross%telocity.com
d9c74e369a Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@131762 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:11:14 +00:00
blakeross%telocity.com
223466a68b Cleanup.
git-svn-id: svn://10.0.0.236/trunk@131761 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 02:07:29 +00:00
blakeross%telocity.com
b123c6f10c Remove remaining overlay from prefs dialog.
git-svn-id: svn://10.0.0.236/trunk@131760 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:56:25 +00:00
blakeross%telocity.com
8c2ee181e1 Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@131759 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:48:46 +00:00
blakeross%telocity.com
15171e4705 Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@131758 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:45:25 +00:00
blakeross%telocity.com
82d8914726 Strip more licenses.
git-svn-id: svn://10.0.0.236/trunk@131757 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:43:49 +00:00
hyatt%netscape.com
85c8f6a363 Finally fixed autocomplete.
git-svn-id: svn://10.0.0.236/trunk@131756 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:43:27 +00:00
hyatt%netscape.com
d58fd0f458 Finally fixed autocomplete.
git-svn-id: svn://10.0.0.236/trunk@131755 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:42:33 +00:00
blythe%netscape.com
0512c5426d not part of build
refine set of files to get code size information on


git-svn-id: svn://10.0.0.236/trunk@131754 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:40:22 +00:00
blakeross%telocity.com
94340c125f Strip more licenses.
git-svn-id: svn://10.0.0.236/trunk@131753 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:27:28 +00:00
roc+%cs.cmu.edu
255f58cd6b Bug 171334. r=kmcclusk,sr=kin,a=asa. Fix views crasher by eliminating content-parenting nesting assumptions.
git-svn-id: svn://10.0.0.236/trunk@131752 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 01:23:13 +00:00
sspitzer%netscape.com
837eabbb6c fix for crasher #173545. crash at shutdown in nsMsgFolderCache::~nsMsgFolderCache() after a quick search. patch by bienvenu. r=naving, sr=sspitzer, a=asa
git-svn-id: svn://10.0.0.236/trunk@131751 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 00:51:21 +00:00
blythe%netscape.com
1068f113e7 not part of build
Enable usage of codesighs on linux.


git-svn-id: svn://10.0.0.236/trunk@131750 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 00:50:08 +00:00
heikki%netscape.com
5bee27e8e8 Bug 172372, when loading XML as data, we need to disable scripts and styles. r=sicking, sr=bzbarsky, a=asa.
git-svn-id: svn://10.0.0.236/trunk@131749 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 00:38:29 +00:00
hyatt%netscape.com
6d36025452 Make autocomplete work using selection without the extra hacky property.
git-svn-id: svn://10.0.0.236/trunk@131748 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-11 00:28:28 +00:00
hyatt%netscape.com
c3a18af519 Autocomplete fixes.
git-svn-id: svn://10.0.0.236/trunk@131746 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:49:16 +00:00
hyatt%netscape.com
0893be6f75 Autocomplete foo.
git-svn-id: svn://10.0.0.236/trunk@131745 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:47:13 +00:00
hyatt%netscape.com
ed9b2b6abf Fix the height problem in autocomplete that caused blank rows to occur.
git-svn-id: svn://10.0.0.236/trunk@131744 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:35:42 +00:00
ian%hixie.ch
27912c9e86 -F argument support to control filters from outside the file
git-svn-id: svn://10.0.0.236/trunk@131743 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:18:39 +00:00
ian%hixie.ch
a0ccced7e4 Filter support: spaces for collapsing sequences of spaces and slashslash for striping //-style comments.
git-svn-id: svn://10.0.0.236/trunk@131742 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:14:01 +00:00
jj%netscape.com
6e486edb74 removed Netscape targets and Netscape resources from the Mac installer wizard project; added MacInstallerVersion.r - part of Bug #173613, r=leaf, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@131741 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:08:49 +00:00
jj%netscape.com
fb0423c801 does not belong in the mozilla tree - part of Bug #173613, r=leaf, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@131740 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:08:07 +00:00
jj%netscape.com
4c9820ff77 Mac Installer Wizard 'vers' 1 and 2 resources in text format
git-svn-id: svn://10.0.0.236/trunk@131739 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:05:52 +00:00
jj%netscape.com
011a38f989 extracted 'vers' resources into MacInstallerVersion.r - part of Bug #173613, r=leaf, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@131738 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:04:46 +00:00
jj%netscape.com
80649da4f3 merged resources from CheckboxLDEF.rsrc + extract 'vers' resources into MacInstallerVersion.r - part of Bug #173613, r=leaf, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@131737 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:02:30 +00:00
jj%netscape.com
ec7d382f8a merged into MIWCommon.rsrc - part of Bug #173613, r=leaf, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@131736 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 23:01:33 +00:00
sspitzer%netscape.com
f5e6c902c9 fix for regression bug #173817. icons not showing in message hdr area.
r=varada, sr=bienvenu, a=asa.


git-svn-id: svn://10.0.0.236/trunk@131735 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:57:18 +00:00
naving%netscape.com
97172e2899 173325 r/sr=sspitzer a=asa fixing regression filter condition shows null when editing a filter
git-svn-id: svn://10.0.0.236/trunk@131734 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:43:16 +00:00
relyea%netscape.com
b5715de870 Fix memory leaks in the startup of the builtins.
git-svn-id: svn://10.0.0.236/trunk@131733 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:39:23 +00:00
relyea%netscape.com
2a7a5dea12 Fix memory leak in vfyserv.c
git-svn-id: svn://10.0.0.236/trunk@131732 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:38:09 +00:00
blakeross%telocity.com
2bc5afecfa Fix quit.
git-svn-id: svn://10.0.0.236/trunk@131731 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:25:19 +00:00
rogerl%netscape.com
884b0b2ada Wired up delete ops. Finished removal of assignOp functionality.
git-svn-id: svn://10.0.0.236/trunk@131730 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:23:02 +00:00
blakeross%telocity.com
f948c8fd8e Add some padding.
git-svn-id: svn://10.0.0.236/trunk@131729 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:20:43 +00:00
bryner%netscape.com
272041687e Don't assume that the mount point will be /Volumes/$VOLUME_NAME. Not part of any build.
git-svn-id: svn://10.0.0.236/trunk@131728 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:15:35 +00:00
blakeross%telocity.com
dbfd98d54a Use XULPP to strip licenses.
git-svn-id: svn://10.0.0.236/trunk@131725 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 22:03:58 +00:00
ian%hixie.ch
8fbdfcf024 Support for #literal in case users need to output lines starting with a #
git-svn-id: svn://10.0.0.236/trunk@131724 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 21:56:47 +00:00
blakeross%telocity.com
dfc89d7838 Begin using XULPP: strip our last two overlays.
git-svn-id: svn://10.0.0.236/trunk@131722 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 21:54:02 +00:00
ian%hixie.ch
720c1ae7c6 Typo fix: CR is 0x0D not 0xDA... Ahem.
git-svn-id: svn://10.0.0.236/trunk@131721 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 21:44:08 +00:00
ian%hixie.ch
ad4167b122 Be slightly more verbose in error messages.
git-svn-id: svn://10.0.0.236/trunk@131720 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 21:42:44 +00:00
relyea%netscape.com
f045aece62 Fix optimized build failures
git-svn-id: svn://10.0.0.236/trunk@131718 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 21:17:39 +00:00
chanial%noos.fr
d6b8b68e0c typo
git-svn-id: svn://10.0.0.236/trunk@131715 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:53:06 +00:00
sspitzer%netscape.com
4a15b99b96 fix junk threadpane icons, per jglick. part of bug #169638.
doesn't affect end user yet.  r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@131713 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:50:47 +00:00
hyatt%netscape.com
47fe9b229f Fix print preview.
git-svn-id: svn://10.0.0.236/trunk@131711 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:38:23 +00:00
wtc%netscape.com
e2a88b3f49 Bug 131386: use 'tee' (in a pipe) instead of 'tail -f' when we need to
display the test output on stdout.  This avoids the need to kill the tail
process, which is tricky to do under MKS Korn Shell on Windows.
Modified Files: all.sh jssqa common/init.sh


git-svn-id: svn://10.0.0.236/trunk@131710 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:36:53 +00:00
relyea%netscape.com
58d140d4e0 Fix Cert Reference leak in error path
git-svn-id: svn://10.0.0.236/trunk@131709 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:34:29 +00:00
chanial%noos.fr
279ed3c170 cvs add -kb is my new friend
git-svn-id: svn://10.0.0.236/trunk@131708 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:34:13 +00:00
relyea%netscape.com
1e6d88b94e Add missing errors from secerr.h in lib/util
git-svn-id: svn://10.0.0.236/trunk@131707 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:31:25 +00:00
relyea%netscape.com
faa9e5505e Bug 164501. Return a proper error code from PK11_FindCrlByName() so the CRL
code can decide if there is a hw or system failure preventing the reading of a
CRL or if the CRL is just not there.


git-svn-id: svn://10.0.0.236/trunk@131706 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:30:19 +00:00
ian%hixie.ch
e534e68b6f Different approach to fixing newlines on cygwin.
git-svn-id: svn://10.0.0.236/trunk@131705 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:28:44 +00:00
ian%hixie.ch
4e043cca47 A hack for cygwin perl systems: newlines are DOS newlines, not unix newlines.
git-svn-id: svn://10.0.0.236/trunk@131704 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:12:13 +00:00
relyea%netscape.com
346d28c2bf Unix and Mac platforms need to load librdb.* not rdb.*.
git-svn-id: svn://10.0.0.236/trunk@131703 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:11:09 +00:00
relyea%netscape.com
e16188c400 Fix minor memory leak on init.
git-svn-id: svn://10.0.0.236/trunk@131702 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 20:09:30 +00:00
blakeross%telocity.com
943cb026b7 Fix longstanding bug that disabled radiobuttons have enabled-looking bullets.
git-svn-id: svn://10.0.0.236/trunk@131701 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:58:49 +00:00
chanial%noos.fr
a2970b8fe7 middle-click broken in bookmark menus
git-svn-id: svn://10.0.0.236/trunk@131700 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:51:50 +00:00
hyatt%netscape.com
c626c5860b No need for background rule for the customized PT items.
git-svn-id: svn://10.0.0.236/trunk@131699 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:45:09 +00:00
sspitzer%netscape.com
4461362e4c fix some typos in the junk mail UI. r=robinf, a=asa.
git-svn-id: svn://10.0.0.236/trunk@131698 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:41:21 +00:00
ian%hixie.ch
b892fab0b5 Make the preprocessor moderately cleverer about line endings.
git-svn-id: svn://10.0.0.236/trunk@131697 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:39:33 +00:00
dmose%netscape.com
bdd53eed5c Ongoing work for spam filtering GUI (bug 169638); not yet turned on in default builds. Fix Junk Mail dialog to always show content, not just the initial time it comes up. r/sr=sspitzer@netscape.com; a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@131696 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:30:49 +00:00
chanial%noos.fr
a3ad78ff6a default icon for tabs
cutting related browser and communicator dependencies in toolkit


git-svn-id: svn://10.0.0.236/trunk@131695 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:21:54 +00:00
gerv%gerv.net
926fc445c7 Bug 170903 - review markup I missed. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131693 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:12:52 +00:00
gerv%gerv.net
9f77460a6f Bug 170903 - Remove hard-coded titles and things. Patch B. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131692 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 19:02:36 +00:00
asa%mozilla.org
b93495c605 change bookmark to the index of phoenix forums rather than the general forum
git-svn-id: svn://10.0.0.236/trunk@131687 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 17:36:49 +00:00
blakeross%telocity.com
6f0eab04bd Backing out backout of history changes.
git-svn-id: svn://10.0.0.236/trunk@131686 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 10:55:21 +00:00
hyatt%netscape.com
83ae50beff Remove class attribute setting on open in tabs menu item.
git-svn-id: svn://10.0.0.236/trunk@131685 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 09:02:28 +00:00
hyatt%netscape.com
b9a0b96261 Backing out change that breaks history.
git-svn-id: svn://10.0.0.236/trunk@131684 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 07:47:36 +00:00
hyatt%netscape.com
963369ea21 Back out change to global history that stopped it from writing itself to disk.
git-svn-id: svn://10.0.0.236/trunk@131683 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 07:35:10 +00:00
hyatt%netscape.com
308c07f13a Make personal toolbar look better during customization.
git-svn-id: svn://10.0.0.236/trunk@131682 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 07:13:43 +00:00
hyatt%netscape.com
d848b97c57 Make personal toolbar look better during customization.
git-svn-id: svn://10.0.0.236/trunk@131681 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 07:03:27 +00:00
gerv%gerv.net
ba1cc2d33d Bug 173581 - Changing milestone sortkeys is broken. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131680 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 06:54:58 +00:00
hyatt%netscape.com
ce1e82fb92 Fix menu icon bustage.
git-svn-id: svn://10.0.0.236/trunk@131679 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 06:40:31 +00:00
varga%netscape.com
f6df4db2b2 Fix for bug 171752 - Merge nsBoxFrameInner and nsBoxFrame
r=hyatt, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@131678 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 06:39:30 +00:00
varga%netscape.com
d0e82c61ec Fixing JS errors caused by bug 172545.
r=neil, sr=sspitzer, a=asa


git-svn-id: svn://10.0.0.236/trunk@131677 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 06:35:58 +00:00
rogerl%netscape.com
5718e4bcab More long/ulong changes - moved to String for name storage, added string
to GC handling. Removing reference assign ops.


git-svn-id: svn://10.0.0.236/trunk@131676 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 05:32:21 +00:00
depstein%netscape.com
6632bd808f Added test cases for nsIWebProgress->GetIsDocumentLoading() and nsIWebNavigation->SetSessionHistory(). Added IsDocumentLoading tracking in web progress listeners. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131674 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 05:03:39 +00:00
bzbarsky%mit.edu
1dedbd7154 Add & implement imgIContainer::ResetAnimation. Bug 152756, patch by
paper@animecity.nu (Arron), r=pavlov, sr=tor, a=asa


git-svn-id: svn://10.0.0.236/trunk@131673 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 04:43:13 +00:00
glen.beasley%sun.com
68b62dcd08 171027 removed deprecated code
git-svn-id: svn://10.0.0.236/trunk@131672 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 04:35:56 +00:00
av%netscape.com
baae49fa82 Bug 173206 -- crash after Shockwave registration, r=serge, sr=beard, a=asa
git-svn-id: svn://10.0.0.236/trunk@131671 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 04:23:18 +00:00
ian%hixie.ch
059b4d3c37 Implement #elifdef, #elifndef, #elif. Only part of Phoenix build system.
git-svn-id: svn://10.0.0.236/trunk@131668 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 04:12:59 +00:00
bryner%netscape.com
c365cdbe32 Adding a preprocessor to be used for XUL files (bug 170737). This only affects phoenix builds. r=cls, a=asa
git-svn-id: svn://10.0.0.236/trunk@131662 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 03:11:27 +00:00
sspitzer%netscape.com
c3c9f39340 more changes for the spam UI. fix the junk status column. part of bug #169638. not visible to end user yet. r/sr=bienvenu, a=asa
git-svn-id: svn://10.0.0.236/trunk@131660 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 02:21:40 +00:00
sspitzer%netscape.com
12f0d96eb4 temporary icons (from gail) and css rules for junk mail UI. part of bug #169638.
not visible to end user yet.  r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@131659 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 02:07:26 +00:00
blakeross%telocity.com
e6abdb5e68 Fix checkbox for block images.
git-svn-id: svn://10.0.0.236/trunk@131658 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 01:47:29 +00:00
beard%netscape.com
d418a2a975 Fixed declaration of nsIJunkMailPlugin::setMessageClassification consistent with nsMsgJunkStatus typedef. Added pooled allocation for tokens and word strings. r=bienvenu sr=sspitzer, a=asa [not end user visible as yet]
git-svn-id: svn://10.0.0.236/trunk@131655 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 01:20:47 +00:00
sspitzer%netscape.com
2610d3b788 supplimental fix for #173590. r/sr/a=brendan
git-svn-id: svn://10.0.0.236/trunk@131654 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 00:54:05 +00:00
dougt%netscape.com
2d4f6b4911 fixes download dialog comes up even though FTP server can't be found 173280, r=neeti@netscape.com, sr=darin@netscape.com, a=dbaron
git-svn-id: svn://10.0.0.236/trunk@131653 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 00:53:53 +00:00
asa%mozilla.org
c72a82d51c Javascript should be JavaScript
git-svn-id: svn://10.0.0.236/trunk@131652 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 00:29:10 +00:00
sspitzer%netscape.com
709366b8da don't set the "junkscore" string attribute directly, since it won't notify the view
that the key has changed.  bug #169638.  instead, go through the db.  r/sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@131651 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 00:07:04 +00:00
beard%netscape.com
783744a79f tweak performance of whole folder marking. r/sr=sspitzer, a=asa [not an end user feature].
git-svn-id: svn://10.0.0.236/trunk@131650 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-10 00:06:45 +00:00
sspitzer%netscape.com
c53706bce1 fix for crasher bug #173590, caused by checkin for #172276.
r/sr=hyatt, a=asa.


git-svn-id: svn://10.0.0.236/trunk@131649 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 23:31:26 +00:00
blakeross%telocity.com
4f2ca9c325 Change Use Bookmark to Use Bookmark...
git-svn-id: svn://10.0.0.236/trunk@131648 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 23:31:25 +00:00
kerz%netscape.com
79d80678eb fixing image sizes
git-svn-id: svn://10.0.0.236/trunk@131647 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:48:09 +00:00
blakeross%telocity.com
55c390440a Remove tooltip from the urlbar.
git-svn-id: svn://10.0.0.236/trunk@131646 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:43:54 +00:00
locka%iol.ie
26012afe06 NOT PART OF BUILD. Fix IOleInPlaceSiteWindowless impl, expose flags to allow callers to disable windowless support if desired.
git-svn-id: svn://10.0.0.236/trunk@131645 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:32:17 +00:00
locka%iol.ie
9edbc18ce0 NOT PART OF BUILD. Disable windowless control support, extend event sink firing, implement various IE DOM methods to support expectations of some controls
git-svn-id: svn://10.0.0.236/trunk@131644 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:31:08 +00:00
blakeross%telocity.com
6eae68660b Small perf optimizations.
git-svn-id: svn://10.0.0.236/trunk@131642 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:16:33 +00:00
blakeross%telocity.com
7066ad56ff Only open urlbar history on left click.
git-svn-id: svn://10.0.0.236/trunk@131639 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:09:35 +00:00
blakeross%telocity.com
631347b5dd Removing unused files.
git-svn-id: svn://10.0.0.236/trunk@131638 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:05:14 +00:00
blakeross%telocity.com
c9a65aedcc Removing unused files.
git-svn-id: svn://10.0.0.236/trunk@131636 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 22:01:43 +00:00
blakeross%telocity.com
71add20bf2 Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@131635 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:58:56 +00:00
blakeross%telocity.com
8b5a7cc787 remove unused file.
git-svn-id: svn://10.0.0.236/trunk@131634 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:58:11 +00:00
blakeross%telocity.com
9ec18cf003 bookmarks panel should use global.css, not browser.css
git-svn-id: svn://10.0.0.236/trunk@131633 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:57:23 +00:00
blakeross%telocity.com
5b4fe101d7 foopy.
git-svn-id: svn://10.0.0.236/trunk@131632 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:53:03 +00:00
blakeross%telocity.com
af009e918a Fix size of menuitems with icons.
git-svn-id: svn://10.0.0.236/trunk@131631 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:48:53 +00:00
blakeross%telocity.com
3b98a53fae Trees in themes panel should flex.
git-svn-id: svn://10.0.0.236/trunk@131625 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:17:48 +00:00
blakeross%telocity.com
554f54a336 Add bookmark dlg should use global.css, not browser.css
git-svn-id: svn://10.0.0.236/trunk@131624 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:08:53 +00:00
blakeross%telocity.com
5df8fbed31 Kill communicator.css
git-svn-id: svn://10.0.0.236/trunk@131623 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:06:13 +00:00
blakeross%telocity.com
e558eef59c A little find cleanup.
git-svn-id: svn://10.0.0.236/trunk@131622 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:04:58 +00:00
varga%netscape.com
b1096af2b1 Fixing a typo.
bug 26429.


git-svn-id: svn://10.0.0.236/trunk@131621 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 21:02:52 +00:00
pschwartau%netscape.com
5266477dc7 Improving readability.
git-svn-id: svn://10.0.0.236/trunk@131620 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:43:35 +00:00
blakeross%telocity.com
c80f2ce036 Remove outdated comment.
git-svn-id: svn://10.0.0.236/trunk@131618 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:26:11 +00:00
blakeross%telocity.com
02faf71f70 Die, communicator.css, die!
git-svn-id: svn://10.0.0.236/trunk@131617 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:24:58 +00:00
blakeross%telocity.com
28b43c20f7 localize.
git-svn-id: svn://10.0.0.236/trunk@131615 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:22:03 +00:00
blakeross%telocity.com
e725d91fbb localize.
git-svn-id: svn://10.0.0.236/trunk@131614 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:19:45 +00:00
dsirnapalli%netscape.com
66bd437f4b Small correction in output.
git-svn-id: svn://10.0.0.236/trunk@131613 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:18:39 +00:00
blakeross%telocity.com
49c9d65dbf Removing more useless attributes.
git-svn-id: svn://10.0.0.236/trunk@131612 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:18:27 +00:00
blakeross%telocity.com
7ef2514c4f Remove some unnecessary attributes.
git-svn-id: svn://10.0.0.236/trunk@131611 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:15:35 +00:00
blakeross%telocity.com
8b7d28b731 Port change over to Phoenix from trunk.
git-svn-id: svn://10.0.0.236/trunk@131610 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 20:02:41 +00:00
blakeross%telocity.com
e087398dd0 Speed up Phoenix quitting/shutdown immensely.
git-svn-id: svn://10.0.0.236/trunk@131608 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 19:58:16 +00:00
blakeross%telocity.com
9480385c60 Minor bookmarks tweaks for Phoenix. Not part of build. r/sr=ben
git-svn-id: svn://10.0.0.236/trunk@131607 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 19:56:33 +00:00
timeless%mac.com
820eeb6d25 Bug 137753 "timewarp"ing from "All Checkins" (showcheckins.cgi) list (current hook) to previous hook
r=tara


git-svn-id: svn://10.0.0.236/trunk@131605 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 19:23:11 +00:00
nicolson%netscape.com
e69952aae5 upgrade to NSS 3.6 RTM and NSPR 4.2.2.
git-svn-id: svn://10.0.0.236/trunk@131601 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 18:30:38 +00:00
brade%netscape.com
efbc3448fe fix typo (r=akkana, cmanske, sr=kin) bug 171798
git-svn-id: svn://10.0.0.236/trunk@131600 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 18:06:26 +00:00
ducarroz%netscape.com
85c6fe385d Fix for bug 173491. Some how, part of the fix for bug 137629 did not make it into the tree. This patch was R=brade, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131598 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 16:49:18 +00:00
chanial%noos.fr
bda73cd8a8 temporary hack to indent the folders in the add bookmark dialog
git-svn-id: svn://10.0.0.236/trunk@131597 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 11:42:34 +00:00
peterv%netscape.com
60144b8c04 Fix bustage.
git-svn-id: svn://10.0.0.236/trunk@131596 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 10:33:27 +00:00
hyatt%netscape.com
c3229cefe8 Making collapse happen on a timer to deal with Tp regression
git-svn-id: svn://10.0.0.236/trunk@131595 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 09:27:19 +00:00
hyatt%netscape.com
880020e4a2 Making collapse happen on a timer to deal with Tp regression
git-svn-id: svn://10.0.0.236/trunk@131594 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 09:22:09 +00:00
hyatt%netscape.com
f453fe9971 Making collapse happen on a timer to deal with Tp regression
git-svn-id: svn://10.0.0.236/trunk@131593 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 09:19:04 +00:00
hyatt%netscape.com
b33f5a7ccf Making collapse happen on a timer to deal with Tp regression
git-svn-id: svn://10.0.0.236/trunk@131592 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 09:15:21 +00:00
sicking%bigfoot.com
68edf1acff Remove mac-buildstuff to fix bustage from bug 64945
git-svn-id: svn://10.0.0.236/trunk@131591 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 09:01:30 +00:00
sspitzer%netscape.com
a923a8f3e6 attempting to fix MacOSX/Darwin 5.5 planetoid Depend bustage for sicking, r=cls.
git-svn-id: svn://10.0.0.236/trunk@131590 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 08:06:53 +00:00
sicking%bigfoot.com
2842632462 fix mac bustage
git-svn-id: svn://10.0.0.236/trunk@131589 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 08:05:04 +00:00
hyatt%netscape.com
62c6e38186 Make status bars minimally big enough to hold status bar progressmeters by default.
git-svn-id: svn://10.0.0.236/trunk@131588 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 08:03:05 +00:00
hyatt%netscape.com
baed10ff78 Shrink width of progressmeter.
git-svn-id: svn://10.0.0.236/trunk@131587 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 08:00:02 +00:00
hyatt%netscape.com
35e7bb665a Shrink width of progressmeter.
git-svn-id: svn://10.0.0.236/trunk@131586 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:54:41 +00:00
hyatt%netscape.com
096d450a0d make the progress meter disappear when not in use.
git-svn-id: svn://10.0.0.236/trunk@131585 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:37:55 +00:00
sspitzer%netscape.com
590c73d7db add new line to end of file for HPUX
git-svn-id: svn://10.0.0.236/trunk@131584 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:34:38 +00:00
sspitzer%netscape.com
d22da89c9f more changes, not visible to the end user yet, for spam UI. bug #169638.
implement junk logging. r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@131583 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:34:02 +00:00
sspitzer%netscape.com
e7688c3ffa more changes, not visible to the end user yet, for spam UI. bug #169638.
change junk log name.  ignore junk log file so it doesn't show in the folder pane.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@131582 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:07:37 +00:00
sicking%bigfoot.com
8e66ad6d8e bug 64945 stage two.
Prettyprint without modifying the DOM by using an XBL binding. Use viewsource.css for styling. Also refactor a real sync-load service and make transformiix and XBL use it.

r=jkeiser sr=darin


git-svn-id: svn://10.0.0.236/trunk@131580 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 07:03:15 +00:00
bryner%netscape.com
f3a39d287b Fix the search path for optimized builds, too.
git-svn-id: svn://10.0.0.236/trunk@131579 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 06:22:04 +00:00
brendan%mozilla.org
2829f1a1c5 Don't redefine date_methods in each instance created from native code via js_NewDateObject{,Msec}, shadowing the perfectly fine date_methods in Date.prototype (173423, r=hyatt).
git-svn-id: svn://10.0.0.236/trunk@131578 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 05:50:23 +00:00
bryner%netscape.com
acdcb4fea6 Make the access path for ::exthandler nonrecursive so that we don't pick up the BeOS version of nsOSHelperAppService.cpp (fixing bustage)
git-svn-id: svn://10.0.0.236/trunk@131577 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 05:29:29 +00:00
naving%netscape.com
7ff06bf0fe 173399 r/sr=sspitzer fix a temp file leak when we fail compacting multiple local folders
git-svn-id: svn://10.0.0.236/trunk@131576 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 05:24:28 +00:00
naving%netscape.com
9037df0b4f 173137 fixing warning from last checkin
git-svn-id: svn://10.0.0.236/trunk@131575 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 05:12:42 +00:00
loadrunner%betak.net
8e8bcd6e8a b168139, Provide progress updates for external GRE app installers, r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131574 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 04:58:30 +00:00
bzbarsky%mit.edu
6a7cda2ae1 Fix build bustage. OS/2 and Sun Workshop won't do implicit type
conversions (like .get() on an nsCOMPtr) while trying to match a
template, apparently...  r=cls


git-svn-id: svn://10.0.0.236/trunk@131573 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 04:51:59 +00:00
loadrunner%betak.net
84bf0bdce7 b168139, Provide progress updates for external GRE app installers, r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131571 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 04:17:53 +00:00
bryner%netscape.com
198c4ea741 fixing mac bustage, r=cls
git-svn-id: svn://10.0.0.236/trunk@131570 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 04:09:14 +00:00
ccarlen%netscape.com
39dc76fe3c Bug 172018 - Use CFURLs with Mach-0 and Carbon file picker. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131569 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:58:40 +00:00
rods%netscape.com
f472c6c25f adding some new testcases
git-svn-id: svn://10.0.0.236/trunk@131562 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:45:01 +00:00
rods%netscape.com
c3cd3f0f68 adding some test cases
git-svn-id: svn://10.0.0.236/trunk@131560 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:44:20 +00:00
bienvenu%netscape.com
1e0b0daa94 don't score new msgs that have already been scored, part of support for imap and pop3 spam filters, not turned on yet r/sr=sspitzer 169557
git-svn-id: svn://10.0.0.236/trunk@131557 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:26:58 +00:00
morse%netscape.com
09ecb32df9 bug 171944, unable to log into lycos mail, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131556 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:15:11 +00:00
hyatt%netscape.com
e77172c61f Gross. Need to make XBL preload or something.
git-svn-id: svn://10.0.0.236/trunk@131555 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:11:52 +00:00
sspitzer%netscape.com
b7afef8aa4 no need to cast this, now that we use nsMsgJunkStatus type. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@131554 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:11:33 +00:00
sspitzer%netscape.com
e6f7431c75 more changes, not visible to the end user yet, for spam UI. bug #169638. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@131553 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:09:00 +00:00
loadrunner%betak.net
5642e43fa4 b167606, Allow multiple MRE installer instances, r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131552 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:04:13 +00:00
mkaply%us.ibm.com
7e02c7355b No bug - we dont hav ico files here anymore
git-svn-id: svn://10.0.0.236/trunk@131551 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:04:12 +00:00
shanjian%netscape.com
391a52089c #149417 Treat US-ASCII as ISO-8859-1 (Meta chaset tag)
use iso-8859-1 decoder to convert us-ascii to unicode.
r=ftang, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131550 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:01:47 +00:00
gordon%netscape.com
6f09d5ad0b Fix bug 164363 "nsDiskCacheEntry::Size() is incorrect" r=sdagley, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@131549 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:01:11 +00:00
gordon%netscape.com
2b0227c96e Fix bug 131727 "compiler warnings in nsDiskCacheBlockFile.cpp" r=sdagley,
sr=darin.


git-svn-id: svn://10.0.0.236/trunk@131548 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 03:00:09 +00:00
hyatt%netscape.com
ae47a92787 Tweaks.
git-svn-id: svn://10.0.0.236/trunk@131547 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:55:27 +00:00
naving%netscape.com
a513caaea0 fixing comment from last checkin
git-svn-id: svn://10.0.0.236/trunk@131546 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:54:23 +00:00
naving%netscape.com
dd829164d8 173137 r=cavin sr=bienvenu Made it so that deleting/marking read/flagged etc fails and throw
alert (only for delete) if we are compacting that folder in the background.


git-svn-id: svn://10.0.0.236/trunk@131545 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:47:20 +00:00
mkaply%us.ibm.com
637418a200 #172650
r=mkaply, sr=blizzard
OS/2 only - if the web page has no title, use the URL for drag/drop


git-svn-id: svn://10.0.0.236/trunk@131544 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:42:03 +00:00
mkaply%us.ibm.com
d85a459543 #172243
r=mkaply, sr=blizzard
OS/2 only - subtract 1980 from date before using it


git-svn-id: svn://10.0.0.236/trunk@131543 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:37:48 +00:00
akkana%netscape.com
3ce4ef969c more 137629: two lines got reversed from the configuration that was reviewed/tested. r=brade sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131542 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:24:17 +00:00
hyatt%netscape.com
a3d1c73ffb Tweaks to the popup whitelisting.
git-svn-id: svn://10.0.0.236/trunk@131541 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:22:48 +00:00
darin%netscape.com
a51a9827b8 fixing mach-o bustage
git-svn-id: svn://10.0.0.236/trunk@131540 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:21:59 +00:00
mjudge%netscape.com
56f3680bc0 136774 adding param for makewindoweditable. just the default.
git-svn-id: svn://10.0.0.236/trunk@131539 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:15:15 +00:00
mjudge%netscape.com
237d43b93d added null param for make window editable for 136774
git-svn-id: svn://10.0.0.236/trunk@131538 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:11:38 +00:00
mjudge%netscape.com
984772bcf2 135774 r=cmanske sr=jag
git-svn-id: svn://10.0.0.236/trunk@131537 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:10:22 +00:00
rjc%netscape.com
adc9ca4de1 Topcrash bug # 146466: add some trivial extra defensive null checking. r=samir, danm sr=me
git-svn-id: svn://10.0.0.236/trunk@131535 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 02:09:31 +00:00
bzbarsky%mit.edu
8e9f040f59 Make GetImportantRule and GetISupportsValue return already_AddRefed.
Bug 171808, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@131534 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:59:43 +00:00
bzbarsky%mit.edu
a70a392a2c Make GetParent on nsStyleContext return an
already_AddRefed<nsIStyleContext>.  Bug 171808, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@131531 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:46:15 +00:00
hyatt%netscape.com
9eabf13be7 Implemented first time dialog.
git-svn-id: svn://10.0.0.236/trunk@131530 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:41:08 +00:00
hyatt%netscape.com
fcff75d9d8 Implemented first time dialog.
git-svn-id: svn://10.0.0.236/trunk@131529 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:39:57 +00:00
akkana%netscape.com
acb01b3bbf More 161143: fix an uninitialized variable warning noticed by aleksey@nogin.org
git-svn-id: svn://10.0.0.236/trunk@131528 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:33:31 +00:00
sicking%bigfoot.com
8bc6ea322f bug 31510: changes default manual proxy config so localhost and 127.0.0.1 are not proxied
patch by benc, r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@131527 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:31:47 +00:00
hyatt%netscape.com
e990948e8e *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@131526 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:26:47 +00:00
arougthopher%lizardland.net
f48e5a51f1 Bug#145860
BeOS needs implemenation of nsOSHelperAppService
Mozilla under BeOS is now integrated with BeOS's MIME database.

r=arougthopher
r=cls
sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@131525 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:25:42 +00:00
bienvenu%netscape.com
b802c8b579 support for imap and pop3 spam filters, not turned on yet r/sr=sspitzer 169557
git-svn-id: svn://10.0.0.236/trunk@131524 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:21:27 +00:00
sdagley%netscape.com
5d2a1a03f2 Landing changes from Chimera bug #151047 on trunk for mach-o build. Addresses issues of DL'd files going into /tmp rather
than user specified DL folder and deletion of files passed to helper apps which is the wrong thing to do on Mac. Original
patch sr=sfraser, r=gordon on this checkin
 CVS: ----------------------------------------------------------------------


git-svn-id: svn://10.0.0.236/trunk@131523 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:16:38 +00:00
hyatt%netscape.com
f2de31f331 Landing first time dialog. Still working on it.
git-svn-id: svn://10.0.0.236/trunk@131522 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:16:21 +00:00
timeless%mac.com
f99677bd50 Bug 157246 Move Windows prefs to winpref.js
patch by walk84@yahoo.com r=sfraser sr=bryner


git-svn-id: svn://10.0.0.236/trunk@131521 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:15:41 +00:00
rdayal%netscape.com
339974d481 Bug #172844 Installer for Mozilla PalmSync Conduit
This is the implementation for the PalmSync Conduit which enables the synchronization
between Mozilla AB and Palm. This is built as a separate executable, to build this Palm CDK
should be installed and PALM_CDK_DIR environment variable should be set to it's location.

r=ssu, sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@131520 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 01:06:48 +00:00
mstoltz%netscape.com
fae5a36e64 Bug 163648 - Disable specific external protocol handlers with known security
problems. r=darin, sr=dveditz.


git-svn-id: svn://10.0.0.236/trunk@131519 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:54:43 +00:00
varada%netscape.com
b33df79c3f fix for 107447;hide search bar for standalone window;r=cavin;sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131518 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:50:34 +00:00
varada%netscape.com
6c6010e8a9 commenting out pref ui for feature that is not yet implemented;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131516 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:48:15 +00:00
ssu%netscape.com
7263431881 fixing bug 110556 - this is an additional patch to the one already checked in for this bug. this fixes the bug to also work from the advanced search dialog. sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131514 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:37:29 +00:00
hyatt%netscape.com
214b24785a it works sorta.
git-svn-id: svn://10.0.0.236/trunk@131513 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:35:38 +00:00
hyatt%netscape.com
f29aef6f88 it works sorta.
git-svn-id: svn://10.0.0.236/trunk@131512 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:30:34 +00:00
hyatt%netscape.com
7604935edb Still doesn't work.
git-svn-id: svn://10.0.0.236/trunk@131509 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:26:23 +00:00
cmanske%netscape.com
b44e10b466 More 'editorShell' removal. b=169029, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@131508 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:26:08 +00:00
blakeross%telocity.com
9d5d0744bf Javascript Settings -> Javascript
git-svn-id: svn://10.0.0.236/trunk@131507 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:24:42 +00:00
darin%netscape.com
74ec6f2030 fixing mach-o build bustage (from my checking for bug 172963)
git-svn-id: svn://10.0.0.236/trunk@131506 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:17:13 +00:00
hyatt%netscape.com
963b654fb8 More tweaks.
git-svn-id: svn://10.0.0.236/trunk@131505 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:13:11 +00:00
akkana%netscape.com
79690f6dcc Try adding .get() to fix some build bustage
git-svn-id: svn://10.0.0.236/trunk@131504 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:07:25 +00:00
hyatt%netscape.com
1e004d4962 Prefs panel changes for popups.
git-svn-id: svn://10.0.0.236/trunk@131503 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-09 00:05:51 +00:00
naving%netscape.com
2edcd547b4 172710 r=cavin sr=bienvenu Don't update folder counts on each copy. Do
this only after copy has ended.


git-svn-id: svn://10.0.0.236/trunk@131502 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:59:37 +00:00
timeless%mac.com
c4b7d37634 Bug 173258 controller.QueryInterface(Components.interfaces.nsICommandController) should be in goUpdateComposerMenuItems instead of goUpdateCommandState
r=cmanske, r=brade, sr=kin


git-svn-id: svn://10.0.0.236/trunk@131501 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:58:58 +00:00
smontagu%netscape.com
8835158083 Add support for Langbox ISO-8859-6.8x encoding. Bug 78201, r=ftang, sr=roc+moz.
git-svn-id: svn://10.0.0.236/trunk@131500 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:58:48 +00:00
rjc%netscape.com
858253286c Fix bug # 170622: Bookmarks deletion cmd needs to go through RDF composite db cmd APIs. Bookmarks need to NS_RDF_ASSERTION_REJECTED on unknown nodes. Bookmarking a group of tabs fix. r=blake sr=jag
git-svn-id: svn://10.0.0.236/trunk@131499 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:55:39 +00:00
rogerl%netscape.com
406a267dcc Minor long/ulong tweaks.
git-svn-id: svn://10.0.0.236/trunk@131498 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:49:36 +00:00
naving%netscape.com
049e0ba511 173357 r=cavin sr=bienvenu fix a major bug in compacting local folders. We were compacting folder even after we failed to get a lock.
git-svn-id: svn://10.0.0.236/trunk@131497 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:47:58 +00:00
hyatt%netscape.com
2ed7ae0add Add alert when popup is blocked.
git-svn-id: svn://10.0.0.236/trunk@131496 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:45:00 +00:00
timeless%mac.com
e2bf35b1b2 Bug 163104 Long lists of folders/bookmarks down arrow does not work correctly
patch by adrianm2@yahoo.com r=dean_tessman@hotmail.com sr=jag


git-svn-id: svn://10.0.0.236/trunk@131495 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:41:52 +00:00
hyatt%netscape.com
965a4e6a9a Popup whitelisting improvements.
git-svn-id: svn://10.0.0.236/trunk@131494 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:27:21 +00:00
hyatt%netscape.com
5536ad16df POPUP WHITELISTING LIVES!
git-svn-id: svn://10.0.0.236/trunk@131493 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:24:03 +00:00
nhotta%netscape.com
2675d24379 Changed to unescape the tab title with a charset if non ASCII,
bug 158171, r=caillon, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@131492 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:19:03 +00:00
varada%netscape.com
b079b3d1ba backing out changes for 170572;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131491 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:18:15 +00:00
varada%netscape.com
7d333e862b backing out some changes n bug#170572;getting rid of a function and making it an inline call;re-aligning pref-mainews groupbox and changing label to match similar groupbox in browser prefs;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131490 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:16:20 +00:00
blakeross%telocity.com
641ef94790 Put back hyatt's changes.
git-svn-id: svn://10.0.0.236/trunk@131489 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:14:45 +00:00
sdagley%netscape.com
1a0e429da2 #56589 - Add shared menus support (requires version 1.2 of SharedMenus.component) for CFM version of Mozilla for Mac OS X. r=bnesse,sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131488 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:09:00 +00:00
jfrancis%netscape.com
99981179ab fix for 164054: Place selection at first visible content on editor doc load r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@131487 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:08:34 +00:00
jfrancis%netscape.com
9197e52f81 fix for 171243: redo broken
r=brade, sr=kin


git-svn-id: svn://10.0.0.236/trunk@131486 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:06:38 +00:00
akkana%netscape.com
2f396ac007 137629: remove most editorshell references from mailnews. r=brade sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131485 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:04:12 +00:00
hyatt%netscape.com
b4f9b0128b Page report impl.
git-svn-id: svn://10.0.0.236/trunk@131484 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 23:04:11 +00:00
jfrancis%netscape.com
1d6ddcff82 fix for 169033: deletion should delete nested empty blocks all in one action
r=fm; sr=kin


git-svn-id: svn://10.0.0.236/trunk@131483 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:59:09 +00:00
blakeross%telocity.com
9346903f33 Capitalize words in menuitem.
git-svn-id: svn://10.0.0.236/trunk@131482 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:55:06 +00:00
jfrancis%netscape.com
397f1dc55c fix for 164054: Place selection at first visible content on editor doc load
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@131481 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:53:55 +00:00
blakeross%telocity.com
7bb9dbe458 Bring back image blocking.
git-svn-id: svn://10.0.0.236/trunk@131480 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:52:51 +00:00
sspitzer%netscape.com
595ed9d507 more changes, not visible to the end user yet, for spam UI. bug #169638.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@131479 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:45:05 +00:00
asa%mozilla.org
355cc33d9f adding toolkit to the readme
git-svn-id: svn://10.0.0.236/trunk@131477 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:39:54 +00:00
hyatt%netscape.com
6701454f88 page report dialog.
git-svn-id: svn://10.0.0.236/trunk@131475 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:38:16 +00:00
gordon%netscape.com
9acf95ce59 Fix bug 113081 "cache capacity not updated until mozilla is relaunched".
r=bnesse, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@131474 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:35:08 +00:00
darin%netscape.com
dd1edde0a1 fixing bustage
git-svn-id: svn://10.0.0.236/trunk@131472 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:15:57 +00:00
hyatt%netscape.com
2fb76a9976 Fix popup prefs panel.
git-svn-id: svn://10.0.0.236/trunk@131471 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:12:48 +00:00
locka%iol.ie
8f24588501 NOT PART OF BUILD. Add some extra DHTML validation tests, plus test of control's visible property.
git-svn-id: svn://10.0.0.236/trunk@131470 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:09:06 +00:00
locka%iol.ie
ce63d96fdf NOTPART OF BUILD. Fix get_URL impl
git-svn-id: svn://10.0.0.236/trunk@131469 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:07:10 +00:00
hyatt%netscape.com
2bcc0b4e07 Fix script panel.
git-svn-id: svn://10.0.0.236/trunk@131468 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 22:05:33 +00:00
blythe%netscape.com
652867aa82 Work for bug 170618
Build files only, no code changes
Add directory to allmakefiles.sh, r=cls
Pull directory when appropriate


git-svn-id: svn://10.0.0.236/trunk@131465 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:40:10 +00:00
darin%netscape.com
92f2417f65 fixes bug 172963 "remove dead mime code" r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131464 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:31:54 +00:00
akkana%netscape.com
b005e67b4f 161143: Add new method InsertTextWithQuotes, and call it from Rewrap. r=brade,jfrancis sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131463 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:22:27 +00:00
darin%netscape.com
616941008e revising my bustage fix
git-svn-id: svn://10.0.0.236/trunk@131462 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:18:41 +00:00
gerv%gerv.net
d9e15f82fd Bug 173249 - user-error.html.tmpl: Bogus title, inconsistent indenting. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@131461 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:14:18 +00:00
darin%netscape.com
c2b5539c07 fixes win32 bustage from akk's last checkin
git-svn-id: svn://10.0.0.236/trunk@131460 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:11:59 +00:00
cotter%netscape.com
6aaf2795ec Added index & search keys for new cert alert (bugzilla #141612), per bugscape bug #19935 & bugscape bug #19936, r= oeschger; fixed broken search key in certs_help.html.
git-svn-id: svn://10.0.0.236/trunk@131459 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:06:00 +00:00
darin%netscape.com
2fdd85166b fixes bug 173278 "Should not prefetch <link rel="alternate">" r=gordon sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131458 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 21:04:25 +00:00
cmanske%netscape.com
68d7f7503c Restored previous Composer window ID, b=173257, fix by neil@parkway.cc.co.uk, r=cmanske, sr=kin
git-svn-id: svn://10.0.0.236/trunk@131457 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 20:39:05 +00:00
karnaze%netscape.com
7e2beae782 bug 163614 - Changed DeleteChildsNextInFlow to DeleteNextInFlowChild, params, and callers. sr=kin, r=alexsavulov,dcone
git-svn-id: svn://10.0.0.236/trunk@131456 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 20:35:26 +00:00
akkana%netscape.com
1cd9257122 161143: Add new method InsertTextWithQuotes, and call it from Rewrap. r=brade,jfrancis sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131455 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 20:24:23 +00:00
blakeross%telocity.com
363f2e82c8 Remove moz-collapsed.
git-svn-id: svn://10.0.0.236/trunk@131454 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 20:12:56 +00:00
gordon%netscape.com
9984e95f5b Fix bug 167525 "error writing 1k, 4k, 16k documents". Off by one bug with
respect to CalculateFileIndex(). r=dougt, sr=darin.

Also fix bug 166361 "Incorrect comparison in nsDiskCacheMap.cpp". sr=darin.


git-svn-id: svn://10.0.0.236/trunk@131453 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 20:09:04 +00:00
hyatt%netscape.com
20583860f0 Add page report accessor to tabbrowser.
git-svn-id: svn://10.0.0.236/trunk@131452 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:57:21 +00:00
bienvenu%netscape.com
2863f7460d fix 173296 mime emitters not registered successfully, r=ducarroz, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131450 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:40:10 +00:00
chanial%noos.fr
8f35cb93e7 typo
git-svn-id: svn://10.0.0.236/trunk@131446 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:23:39 +00:00
hyatt%netscape.com
698815de5a Put back in a function i removed by accident.
git-svn-id: svn://10.0.0.236/trunk@131445 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:08:57 +00:00
hyatt%netscape.com
ea4b2d7ed6 Fix code inside a phoenix ifdef. NPOB.
git-svn-id: svn://10.0.0.236/trunk@131444 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:07:29 +00:00
seawood%netscape.com
1817627571 Unset DESTDIR when installing NSPR files into SDK dirs.
git-svn-id: svn://10.0.0.236/trunk@131443 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:04:26 +00:00
rdayal%netscape.com
e824c0dabf Bug #164760 Implement Palm Conduit - changes to build it.
Makefile and changes to build the Conduit. This would get built only when Palm CDK
is installed and the env var PALM_CDK_DIR is set to Palm CDK dir path.

r=leaf, sr=mscott.


git-svn-id: svn://10.0.0.236/trunk@131442 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 19:00:06 +00:00
aaronl%netscape.com
d1d0811b89 Bug 172690. Not clearing status bar when last IME character deleted with backspace. Checked in for Kyle Yuan. r=aaronl, sr=jag
git-svn-id: svn://10.0.0.236/trunk@131440 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:32:07 +00:00
sspitzer%netscape.com
fc042fa525 fix for #94439. add per news server UI for "push auth". wording from robinf, UI approval jglick. thanks to neil@parkwaycc.co.uk for the patch and to stephend for testing.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131439 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:27:40 +00:00
anthonyd%netscape.com
f81fd4a4ee bug fix for 165400
r=biesi
sr=bryner
removing un-needed files from the cvs tree


git-svn-id: svn://10.0.0.236/trunk@131438 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:26:24 +00:00
timeless%mac.com
0fcbfe9f2f Bug 173299 change getControlleryById to getControllerById in nsIControllersInterface
r=cmanske sr=kin


git-svn-id: svn://10.0.0.236/trunk@131437 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:25:57 +00:00
sspitzer%netscape.com
956fb0a210 supplimental fix for #169638. spam UI bug. r/sr=mscott.
git-svn-id: svn://10.0.0.236/trunk@131436 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:20:10 +00:00
smontagu%netscape.com
eac859e9eb Add Hebrew punctuation characters to transliterate.properties. Bug 171520, r=ftang, sr=rbs.
git-svn-id: svn://10.0.0.236/trunk@131435 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:19:51 +00:00
nhotta%netscape.com
5bac7023c4 Changed DisplayLoadError() to assume UTF-8 domain name,
also changed to unescape and convert the spec using originCharset.
bug 122705, r=shanjian, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@131433 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:02:40 +00:00
aaronl%netscape.com
66faa22cbd Bug 96229. Support keyboard access of checkbox and radio menu items. r=bryner, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@131432 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:02:34 +00:00
aaronl%netscape.com
388e891855 Bug 171079. Typeaheadfind::findnext overriding regular find next when it shouldn't. r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131431 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 18:00:01 +00:00
aaronl%netscape.com
c754936699 Bug 172560. Don't find visibility hidden/collapsed stuff in typeaheadfidn. r=kyle, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131430 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 17:55:18 +00:00
aaronl%netscape.com
de2bca1089 Bug 172956. Backspace should go back in page. r=dean, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131429 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 17:53:18 +00:00
aaronl%netscape.com
31a8778b28 Accessibility APIs: give visibility hidden/collapsed STATE_HIDDEN. r=kyle, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131428 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 17:49:52 +00:00
timeless%mac.com
27de65850d Bug 172846 QueryInterface should not throw Components.results.NS_NOINTERFACE for Components.interfaces.nsISupports
r=neil@parkwaycc.co.uk sr=kin@netscape.com


git-svn-id: svn://10.0.0.236/trunk@131426 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 14:33:24 +00:00
brade%netscape.com
56a18d8107 fix typo (bug 122992) sr=kin
git-svn-id: svn://10.0.0.236/trunk@131425 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 14:01:02 +00:00
rods%netscape.com
fd580a6eb2 some changes from a nother patch was accidently checked in
git-svn-id: svn://10.0.0.236/trunk@131424 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 14:00:12 +00:00
rods%netscape.com
f94983c561 This patch is a bit different, instead of having the DocShell figure out whether it or one of its children are printing or PP, it gets told whether it is, and it caches that value.
This was done so navigation is as fast as possible, meaning it doesn't have to figure it out each time.
The patch:
1) Adds a method to the nsIContentViewerContainer to tell it whether we are printing or in PP.
2) Fix up the DV and PrintEngine, the DV SetIsXXXX didn't need to set any
values in the PrintEngine, but now instead makes calls and sets the values in DocShells
3) Cleaned up and add a macro to nsIDocumentViewerPrint
Bug 171161 r=dcone sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@131423 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 13:17:56 +00:00
timeless%mac.com
e0d602d48e Bug 106656 tabs' use of child nodes is inconsistent
patch by neil@parkwaycc.co.uk r=timeless sr=jag


git-svn-id: svn://10.0.0.236/trunk@131422 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 12:07:27 +00:00
rods%netscape.com
4e382b6136 safety checks for null pointers
Bug 172783 r=dcone sr=kin


git-svn-id: svn://10.0.0.236/trunk@131421 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 10:46:27 +00:00
caillon%returnzero.com
381f006b3e Oops, this got accidentally checked. Backing out.
git-svn-id: svn://10.0.0.236/trunk@131420 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 10:43:38 +00:00
caillon%returnzero.com
0f7366d6d0 Correcting our background painting code per the latest CSS specs. By default, backgrounds should be painted to the border
area, and not the padding area as per the CSS 2 Errata, CSS2.1 and CSS3.  Also, implementing the CSS3 'background-clip'
and 'background-origin' properties (currently with -moz- prefixes) to control this behavior.
Bug 162252, r=dbaron sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@131419 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 10:24:53 +00:00
jkeiser%netscape.com
eeef82662c Backing out bug 107291 due to OS/2 having a crappy compiler.
git-svn-id: svn://10.0.0.236/trunk@131418 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 09:30:40 +00:00
sspitzer%netscape.com
5b02997b7f trying to fix bustage.
git-svn-id: svn://10.0.0.236/trunk@131417 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 09:07:36 +00:00
sspitzer%netscape.com
64709dcfff more changes, not visible to the end user yet, for spam UI. bug #169638.
git-svn-id: svn://10.0.0.236/trunk@131416 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 08:38:36 +00:00
aaronl%netscape.com
1109b58919 Bug 172996. Acc Explorer getting stuck walking into accessible trees. r=jgaunt, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@131415 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 08:00:00 +00:00
sspitzer%netscape.com
a9a69c41be more changes, not visible to the end user yet, for spam UI. bug #169638.
git-svn-id: svn://10.0.0.236/trunk@131414 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 07:24:37 +00:00
hyatt%netscape.com
195ad4e52c Add id hooks
git-svn-id: svn://10.0.0.236/trunk@131413 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 07:16:51 +00:00
sspitzer%netscape.com
a81736f0ad default spam level to off (0).
git-svn-id: svn://10.0.0.236/trunk@131412 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 07:00:59 +00:00
sspitzer%netscape.com
f0701da958 more changes, not visible to the end user yet, for spam UI. bug #169638.
git-svn-id: svn://10.0.0.236/trunk@131411 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 07:00:20 +00:00
gerv%gerv.net
fb17f6ef2b Bug 171437 - Enhancements to generic reporting. Reporting menu, 3D tables, rearranged UI, better API for new report types. Patch by gerv; r=joel.
git-svn-id: svn://10.0.0.236/trunk@131410 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:41:28 +00:00
rdayal%netscape.com
889fdfcf21 Bug #164970 Track deleted cards and update lastUpdatedTimeStamp
This fix tracks deleted cards and stores the lastUpdatedTimeStamp for modified cards
This is required for Palm Sync.

Initial patch by Srilatha.
r=rdayal, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@131409 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:36:20 +00:00
av%netscape.com
bfc7a45fc3 Bug 168490 -- extra blank window during plugin xpi install, r=serge, sr=darin
git-svn-id: svn://10.0.0.236/trunk@131408 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:31:13 +00:00
loadrunner%betak.net
c609c78dfd b144551 inconsistent en-mac/en-unix in different platform langenus.xpi files, r=cls, tao, sr=sfraser, dveditz
git-svn-id: svn://10.0.0.236/trunk@131407 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:21:11 +00:00
jkeiser%netscape.com
f2519f9d84 Make forward declarations work with nsCOMPtr (bug 107291), r=sicking@bigfoot.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@131406 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:19:10 +00:00
loadrunner%betak.net
89639a302a b144551, inconsistent en-mac/en-unix in different platform langenus.xpi files, r=cls, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131405 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:18:52 +00:00
loadrunner%betak.net
1503bb2f3f b144551 inconsistent en-mac/en-unix in different platform langenus.xpi files, r=cls, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131404 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:17:19 +00:00
sspitzer%netscape.com
0fa33eafe7 more work for #169638. spam UI work (still in progress)
git-svn-id: svn://10.0.0.236/trunk@131403 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:15:42 +00:00
timeless%mac.com
af49ae32a5 Bug 172131 FMM, Comments which suggest the wrong (De)Allocator, and Style
r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@131402 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:12:00 +00:00
darin%netscape.com
de6a534e87 fixes bug 173147 "increase redirection limit" r=dougt sr=heikki
git-svn-id: svn://10.0.0.236/trunk@131401 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:03:35 +00:00
sspitzer%netscape.com
5cd50065a7 comment out the pref for junk button, until it's ready.
git-svn-id: svn://10.0.0.236/trunk@131400 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 06:00:10 +00:00
sspitzer%netscape.com
e47233d890 varada forgot the mailnews.js side of his checkin for bug #170572.
for now, show these buttons.  but that might be changing as junk
might kick off file and or next.


git-svn-id: svn://10.0.0.236/trunk@131399 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:54:12 +00:00
bryner%netscape.com
569797c848 Backing out patch for bug 171343. I need to do autoconf tests for siginfo_t and SA_SIGINFO, it seems.
git-svn-id: svn://10.0.0.236/trunk@131398 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:51:24 +00:00
sspitzer%netscape.com
d54a1eda1b fix more build bustage.
git-svn-id: svn://10.0.0.236/trunk@131397 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:26:03 +00:00
sspitzer%netscape.com
b882793fed fix build bustage. sorry about that.
git-svn-id: svn://10.0.0.236/trunk@131396 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:17:20 +00:00
bryner%netscape.com
66cc2aba8d Fix bustage on btek by defining _POSIX_C_SOURCE to 199506L, to get the |siginfo_t| type defined.
git-svn-id: svn://10.0.0.236/trunk@131395 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:16:58 +00:00
dean_tessman%hotmail.com
4ac78ed6e3 bug 73970 - Tooltips disappear when at bottom of screen
Actually just fixes tooltips so they don't flip to the left of the mouse pointer when they extend off the right edge of the screen.

r=me, sr=bryner@netscape.com
patch by zipo13@myrealbox.com


git-svn-id: svn://10.0.0.236/trunk@131394 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 05:01:10 +00:00
sspitzer%netscape.com
b87ad643aa more work for #169638. spam UI work (still in progress) including changes to allow search by score. "score" attribute is now "junkscore", per mscott. some code cleanup.
r/sr=mscott


git-svn-id: svn://10.0.0.236/trunk@131393 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:29:57 +00:00
bienvenu%netscape.com
f412c602bc work for imap spam filters, ifdeffed off for now r/sr=sspitzer 169557
git-svn-id: svn://10.0.0.236/trunk@131392 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:19:11 +00:00
roc+%cs.cmu.edu
2a762b92df Bug 153679. r=gisburn,sr=kin. Remove bogus assertion; it's OK to have no widget sometimes during scrolling or invalidation.
git-svn-id: svn://10.0.0.236/trunk@131391 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:18:05 +00:00
arougthopher%lizardland.net
e247e1b752 Bugzilla Bug 173116
CRASH: BeZilla sometimes crashes on count_font_styles

r=arougthopher
sr=arougthopher


git-svn-id: svn://10.0.0.236/trunk@131390 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:16:04 +00:00
sspitzer%netscape.com
3cc4110167 work for #169638. spam UI. add the ability to search by junk status to the advanced search UI. r/sr=mscott
git-svn-id: svn://10.0.0.236/trunk@131387 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:10:55 +00:00
roc+%cs.cmu.edu
e0d103b8be Bug 172227. Fix rendering garbage by removing a bogus optimization in nsContainerFrame::SyncFrameViewAfterReflow --- we *always* need to update the view transparency in case FRAME_OUTSIDE_CHILDREN changed. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@131386 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:09:38 +00:00
timeless%mac.com
828be66068 Bug 158129 Add support for Adobe's Type1 Euro fonts
patch by Roland.Mainz@informatik.med.uni-giessen.de r=bstell@ix.netcom.com sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@131385 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:07:42 +00:00
jpierre%netscape.com
ff93525e60 Bump softoken version to 3.7 on tip
git-svn-id: svn://10.0.0.236/trunk@131384 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:07:22 +00:00
bryner%netscape.com
764b016622 Bug 171343 - use SA_SIGINFO and sa_sigaction when hooking up FatalSignalHandler() so that we don't lose parameters if there are other handlers which want all 3 arguments. r=ccarlen, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@131383 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 04:00:03 +00:00
dbaron%fas.harvard.edu
a8ebb4c9a5 Attempt to fix mach-o bustage. b=172207
git-svn-id: svn://10.0.0.236/trunk@131382 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:58:32 +00:00
sspitzer%netscape.com
30a4c26bab work for #169638. spam UI. add the ability to search by junk status to the advanced search UI. r/sr=mscott
git-svn-id: svn://10.0.0.236/trunk@131381 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:53:49 +00:00
timeless%mac.com
f4e2edd096 Bug 158129 Add support for Adobe's Type1 Euro fonts
patch by Roland.Mainz@informatik.med.uni-giessen.de r=bstell@ix.netcom.com sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@131380 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:52:49 +00:00
bienvenu%netscape.com
125b3dd223 add imap msg fetch peek url, part of spam filter work r/sr=sspitzer 169557
git-svn-id: svn://10.0.0.236/trunk@131379 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:52:41 +00:00
sspitzer%netscape.com
541ee7c715 work for #169638. spam UI. add the ability to search by junk status to the
advanced search UI.  r/sr=mscott


git-svn-id: svn://10.0.0.236/trunk@131378 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:52:32 +00:00
bienvenu%netscape.com
08d7f5df7a fix nsIAddrDatabase.h to not include mdb.h part of spam filtering work (the whitelist part) r/sr=sspitzer 169557
git-svn-id: svn://10.0.0.236/trunk@131377 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:50:31 +00:00
nelsonb%netscape.com
eee8033a61 Make indentation style self-consistent: 4 spaces per indent.
Save error code at the beginning of printCertProblems, and restore it at
the end, since CERT_VerifyCert nearly always sets the error code to
-8157 Certificate extension not found when building an error log.
Bug 172036.


git-svn-id: svn://10.0.0.236/trunk@131376 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:39:50 +00:00
chanial%noos.fr
f7834dd33e fix DND regression in menupopup
git-svn-id: svn://10.0.0.236/trunk@131375 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:38:01 +00:00
hyatt%netscape.com
fd66e0f1d3 #ifdefs for phoenix. NPOB.
git-svn-id: svn://10.0.0.236/trunk@131374 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:30:26 +00:00
hyatt%netscape.com
d40fb46c14 Remove alerts.
git-svn-id: svn://10.0.0.236/trunk@131373 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:28:02 +00:00
hyatt%netscape.com
a7cf32b432 more popup whitelisting changes
git-svn-id: svn://10.0.0.236/trunk@131372 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:23:38 +00:00
sfraser%netscape.com
842dea561a Landing fix for bug 164924 on the trunk -- don't use the build-in BinHex decoder on Mac or Mac OS X, and build the nsAppleFileDecoder on Mac OS X. r=sdagley, sr=darin
git-svn-id: svn://10.0.0.236/trunk@131371 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:12:32 +00:00
chanial%noos.fr
c3042de8c8 bug 173145: first time, add to default root folder fails
git-svn-id: svn://10.0.0.236/trunk@131370 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:12:24 +00:00
caillon%returnzero.com
1c8e700439 Attempting to fix Windows bustage
git-svn-id: svn://10.0.0.236/trunk@131369 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 03:03:56 +00:00
hyatt%netscape.com
d531cd1226 Tweaks.
git-svn-id: svn://10.0.0.236/trunk@131368 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:45:07 +00:00
chanial%noos.fr
35c7a23e35 smarter 'Open in Tabs' menuitem
git-svn-id: svn://10.0.0.236/trunk@131367 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:43:36 +00:00
bienvenu%netscape.com
ac548ae92e pass uris, not urls to spam filter plugin, not part of build, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131366 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:39:02 +00:00
hyatt%netscape.com
9102cb6535 Popup whitelisting continues.
git-svn-id: svn://10.0.0.236/trunk@131365 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:21:08 +00:00
shanjian%netscape.com
601999d61a #172402 Change auto-detection option in POST form page with frame will cause page be reloaded
Let detector charset reload be handled the same way as charset reload.
r=naoki, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131364 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:15:26 +00:00
hyatt%netscape.com
3242154aa0 Popup whitelisting continues.
git-svn-id: svn://10.0.0.236/trunk@131363 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:12:42 +00:00
timeless%mac.com
b8d0bcb515 Bug 171842 Build warning caused by checkin for bug 163834
patch by walk84@yahoo.com r=kyle sr=bryner


git-svn-id: svn://10.0.0.236/trunk@131362 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:11:00 +00:00
shanjian%netscape.com
781107ce65 #134053 utf8 conversion problem in nsString.h
Change conversion to handle surrogates
r=yokoyama, sr=scc


git-svn-id: svn://10.0.0.236/trunk@131361 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:10:52 +00:00
timeless%mac.com
fb66b5a211 Bug 170443 Build warning in nsLocalMailFolder.cpp
walk84@yahoo.com r=naving sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@131360 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 02:09:26 +00:00
kmcclusk%netscape.com
42d4a60d1a Remove unneeded call to EnumChildWindows in nsWindow::BroadcastMsgToChildren, which was causing the system color change message to be dispatched too many times. b=173152 r=dcone sr=kin
git-svn-id: svn://10.0.0.236/trunk@131358 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:57:38 +00:00
hyatt%netscape.com
44161cbeaf Page report stuff.
git-svn-id: svn://10.0.0.236/trunk@131357 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:54:15 +00:00
caillon%returnzero.com
ea24d37b22 More footprint work; Axing the large switch statement in GetPropertyCSSValue()
bug 172207 r=bzbarsky sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131356 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:53:31 +00:00
dbaron%fas.harvard.edu
cd7f730327 Don't resolve the positive and negative parts of collapsing margins too early when collapsing through empty blocks. A few bits of other cleanup. b=172892 sr=bzbarsky r=kin
git-svn-id: svn://10.0.0.236/trunk@131355 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:52:34 +00:00
hyatt%netscape.com
1277a10e5e Oops. Didn't mean to check in the popup alert.
git-svn-id: svn://10.0.0.236/trunk@131354 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:47:07 +00:00
hyatt%netscape.com
50f1c7f2fa Tweak pref settings.
git-svn-id: svn://10.0.0.236/trunk@131353 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:44:42 +00:00
rdayal%netscape.com
55c4c6c254 Bug #164760
Files for implementation of PalmSync Conduit, NOT YET PART OF BUILD
The Conduit would be built as separate Windows Dll loaded by the HotSync Manager

r=cavin, sr=mscott


git-svn-id: svn://10.0.0.236/trunk@131352 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:41:17 +00:00
jpierre%netscape.com
bf9976d03d Fix for 172732. r=relyea
git-svn-id: svn://10.0.0.236/trunk@131351 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:23:09 +00:00
sgehani%netscape.com
39ed30014d Rely on necko for browser version when checking for updates.
b=166448; r=harishd; sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@131350 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:21:47 +00:00
ssu%netscape.com
33ccdfee15 fixing bug 110556 - double-clicking on a message in thread should reuse existing window. r=varada, sr=sspitzer (fixed problems in original patch from adam@cfar.umd.edu)
git-svn-id: svn://10.0.0.236/trunk@131348 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:04:11 +00:00
seawood%netscape.com
fbf12b7d65 Callback functions must be declared as such.
Fixing OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@131347 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 01:04:09 +00:00
curt%netscape.com
09930d68d2 This is related to the checkin for bug 171010, but is not part of the
build process.  This file is only used by installer developers.


git-svn-id: svn://10.0.0.236/trunk@131346 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:55:24 +00:00
curt%netscape.com
54f49b1c86 Now we are getting most of the files we need from manifests under
embedding\config.
  (Bug #171010, r=asasaki, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@131345 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:53:04 +00:00
pschwartau%netscape.com
0aa976c37c Initial add. Regression test for bug 172699.
git-svn-id: svn://10.0.0.236/trunk@131344 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:37:49 +00:00
hyatt%netscape.com
5e5de9f727 Cleaning up prefs UI.
git-svn-id: svn://10.0.0.236/trunk@131343 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:34:33 +00:00
hyatt%netscape.com
f2ff044ed8 Cleaning up prefs UI.
git-svn-id: svn://10.0.0.236/trunk@131342 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:33:16 +00:00
alecf%netscape.com
1c1304e5e9 try to fix orange - didn't mean to #if 0 this out
git-svn-id: svn://10.0.0.236/trunk@131341 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:12:37 +00:00
hyatt%netscape.com
ac46710898 Checking in the UI for the popups prefs panel.
git-svn-id: svn://10.0.0.236/trunk@131340 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-08 00:11:15 +00:00
smontagu%netscape.com
985997e785 Backing out fix to bug 158129 because of Mac bustage
git-svn-id: svn://10.0.0.236/trunk@131339 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 22:50:54 +00:00
seawood%netscape.com
fdbd52b0d6 Fixing tinderbox bustage from checkin for bug 77497. Patch by paper@animecity.nu.
git-svn-id: svn://10.0.0.236/trunk@131338 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 22:25:32 +00:00
gerv%gerv.net
548dbfb05f Bug 173027 - code-error.html.tmpl misses a </em>. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@131337 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 22:20:52 +00:00
shanjian%netscape.com
e96dcbdf3f #54467 punctuation mark in the :first-letter pseudo-element does not cover all the Unicode punctuation marks
check more punctual mark for first-letter pseudo-element.
r=pierre, sr=waterson


git-svn-id: svn://10.0.0.236/trunk@131336 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 22:16:57 +00:00
timeless%mac.com
b8a98149f0 Bug 77497 imgContainer needs to have a GIF specific version
patch by paper@animecity.nu r=pavlov sr=tor


git-svn-id: svn://10.0.0.236/trunk@131335 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 21:49:33 +00:00
locka%iol.ie
ce28a4253c NOT PART OF BUILD. Add dispatch tearoff
git-svn-id: svn://10.0.0.236/trunk@131334 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 21:41:04 +00:00
mkaply%us.ibm.com
d816a450a4 OS/2 bustage - need PR_CALLBACK
git-svn-id: svn://10.0.0.236/trunk@131333 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 21:32:37 +00:00
hyatt%netscape.com
99182832b5 Fix the regression in Tp and Ts
git-svn-id: svn://10.0.0.236/trunk@131332 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 21:21:11 +00:00
smontagu%netscape.com
3ea7003741 Add support for Adobe's Type1 Euro fonts. Bug 158129, author=Roland.Mainz@informatik.med.uni-giessen.de, r=bstell, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@131331 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 21:08:10 +00:00
cotter%netscape.com
cf02d26cea Help updates corresponding to "Web Site Certified by an Unknown Authority" alert changes as a result of bugzilla bug #141612. These changes also fix Bugscape bug 19935, for the help system.
git-svn-id: svn://10.0.0.236/trunk@131330 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:48:14 +00:00
wtc%netscape.com
82f2afdc7a Set NSS version to 3.7 Beta on the tip.
git-svn-id: svn://10.0.0.236/trunk@131329 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:47:18 +00:00
chanial%noos.fr
3f56b2b0b7 including the groupmark icon from Chris Neal
git-svn-id: svn://10.0.0.236/trunk@131328 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:47:17 +00:00
smontagu%netscape.com
75caddd20d Some very small images missing in printout. Bug 173035, Author=Roland.Mainz@informatik.med.uni-giessen.de, r=timeless, sr=roc+moz.
git-svn-id: svn://10.0.0.236/trunk@131327 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:45:13 +00:00
chanial%noos.fr
e1eb66da35 Open in Tabs at bottom of menupopups
remove navigator dependencies in bookmarksToolbar.xml
and back out two lines that have not been checked in and that were horking bookmark management.


git-svn-id: svn://10.0.0.236/trunk@131326 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:44:08 +00:00
smontagu%netscape.com
79e5026e35 XprintUtils does not handle non-space "whitespace-like" seperators in ${XPSERVERLIST} correctly. Bug 164648, Author=Roland.Mainz@informatik.med.uni-giessen.de,r=bbaetz, sr=roc+moz.
git-svn-id: svn://10.0.0.236/trunk@131325 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:39:24 +00:00
smontagu%netscape.com
6870f52026 Some nsFontLangGroup entries missing in X11 font code. Bug 172515, author=Roland.Mainz@informatik.med.uni-giessen.de, r=bstell, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@131324 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:30:49 +00:00
danm%netscape.com
90368af4c9 string changes. popup windows were referred to in the UI as both popups and pop-ups. now they all take the unmusical but accepted name 'pop-up'. bug166442
git-svn-id: svn://10.0.0.236/trunk@131323 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:23:19 +00:00
cmanske%netscape.com
99ccfbf71f Fixed broken smileys in Mail Composer. b=70031, r=suresh, sr=kin
git-svn-id: svn://10.0.0.236/trunk@131322 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:13:09 +00:00
seawood%netscape.com
78beb525cd Install mozilla-config.h into SDK dir.
Bug 170377 r=dougt


git-svn-id: svn://10.0.0.236/trunk@131321 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:11:47 +00:00
danm%netscape.com
ce7df72a52 string changes. popup windows were referred to in the UI as both popups and pop-ups. now they all take the unmusical but accepted name 'pop-up'. bug166442
git-svn-id: svn://10.0.0.236/trunk@131320 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:11:25 +00:00
kmcclusk%netscape.com
ab382f03d8 Fix enumeration of childwindows when dispatching pending paint events. bug 170928. r=rods@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@131319 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 20:07:54 +00:00
brade%netscape.com
cea01905ae recheckin save fix (bug 171798) which was inadvertently backed out (r=cmanske, sr=alecf)
git-svn-id: svn://10.0.0.236/trunk@131317 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 19:29:19 +00:00
alecf%netscape.com
6d9b9e292e oops, one more part of bug 162115, r=dougt, sr=darin - make sure the new functions are exported by putting them in dlldeps.cpp
git-svn-id: svn://10.0.0.236/trunk@131316 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 19:11:18 +00:00
blythe%netscape.com
e9bc156ad6 part of bug 170618
Better enable MOZ_MAPINFO for windows builds.
This will lead to some tools to read the map files and report on code/data size.


git-svn-id: svn://10.0.0.236/trunk@131315 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 19:09:05 +00:00
alecf%netscape.com
36dda6d759 fix for bug 162115 - add nsCOMArray<T> and nsIArray to the build
r=dougt, sr=darin, lots of comments from brendan, kai, bugmail@sicking.cc, frank.schoenheit@gmx.de, and even a little license help from timeless


git-svn-id: svn://10.0.0.236/trunk@131314 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 19:03:41 +00:00
mkaply%us.ibm.com
2071e64490 OS/2 bustage - one more PNGAPI needed
git-svn-id: svn://10.0.0.236/trunk@131313 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 19:00:53 +00:00
dougt%netscape.com
d1461573d3 Not part of build
git-svn-id: svn://10.0.0.236/trunk@131312 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 18:53:51 +00:00
dougt%netscape.com
97983cd046 nsDirectoryServiceDefs.h needs to be frozen 168572, r=ccarlen@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@131311 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 18:52:34 +00:00
dougt%netscape.com
a485c6b639 Provides support for a conditional interface map entry 172833, r=bzbarsky@mit.edu, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@131310 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 18:52:27 +00:00
hyatt%netscape.com
d3e40b8de4 Reverse the order of hidden/collapsed rules.
git-svn-id: svn://10.0.0.236/trunk@131309 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 18:43:25 +00:00
nicolson%netscape.com
2f7af6ed13 fix warning.
git-svn-id: svn://10.0.0.236/trunk@131308 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 18:00:28 +00:00
ducarroz%netscape.com
8355227667 Fix for bug 172808 (smoketest blocker). Somehow, I checked in the wrong line when fixing bug 127210. R=cavin, SR=beard
git-svn-id: svn://10.0.0.236/trunk@131306 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 15:44:54 +00:00
chanial%noos.fr
da3a03da71 speeding up a bit the add bookmark dialog by QI'ing only the folders
git-svn-id: svn://10.0.0.236/trunk@131305 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 14:47:23 +00:00
brade%netscape.com
6f4e5503ee remove unused CIDs (r=mjudge/sr=kin/bug 121648)
git-svn-id: svn://10.0.0.236/trunk@131304 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 14:21:34 +00:00
hyatt%netscape.com
667e39f92b Add 1px padding to WinXP input fields. r/sr=jag,bryner
git-svn-id: svn://10.0.0.236/trunk@131303 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 08:31:58 +00:00
kerz%netscape.com
07106aead4 adding pageinfo icon
git-svn-id: svn://10.0.0.236/trunk@131302 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 08:16:40 +00:00
hyatt%netscape.com
25a4f1d422 Still more toolbar tweaks.
git-svn-id: svn://10.0.0.236/trunk@131300 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:46:33 +00:00
gerv%gerv.net
840cf313cb Bug 172740 - "use of uninitialized variable" warnings. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131299 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:44:07 +00:00
rogerl%netscape.com
6d2621b192 More long/ulong/float work.
git-svn-id: svn://10.0.0.236/trunk@131298 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:34:43 +00:00
tor%cs.brown.edu
40a6edb275 document mkaply's os2 build bustage fix
git-svn-id: svn://10.0.0.236/trunk@131297 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:28:56 +00:00
morse%netscape.com
7a55be082c bug 171507, implement cookie logging, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131296 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:13:52 +00:00
bryner%netscape.com
56085a2782 Install a gdk error handler during native theme paint operations, and dynamically disable native theming of the widget in question if an X error occurs, to work around buggy theme engines. Bug 142334, patch by roc, r=blizzard, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@131294 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 06:09:14 +00:00
mkaply%us.ibm.com
1fc0f4a20c Putting code back since I fixed the PNG decoder - note the change to IBMCPP - not sure how that got checked in wrong - probably broke in the PNG mainline code
git-svn-id: svn://10.0.0.236/trunk@131293 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:40:33 +00:00
mkaply%us.ibm.com
9e05282f2e These are not NSPR callbacks, they are PNG callbacks. They should be using PNGAPI - part of correct fix for OS/2 bustage with new PNG code
git-svn-id: svn://10.0.0.236/trunk@131292 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:38:54 +00:00
hyatt%netscape.com
acf867bd05 Still more toolbar tweaks.
git-svn-id: svn://10.0.0.236/trunk@131291 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:29:01 +00:00
hyatt%netscape.com
e112c3ca7a Add style optimizations to make resizing of the window faster.
git-svn-id: svn://10.0.0.236/trunk@131290 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:25:33 +00:00
hyatt%netscape.com
5e32bc35b0 Fix remaining width calc problems with toolbar overflow.
git-svn-id: svn://10.0.0.236/trunk@131289 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:17:29 +00:00
mkaply%us.ibm.com
896c19f944 OS/2 runtime bustage - this should be the right thing to do, but it causes PNG to crash horribly backing out for now
git-svn-id: svn://10.0.0.236/trunk@131288 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:10:10 +00:00
timeless%mac.com
54854bf765 Bug 170441 Build warning caused by checkin for bug 138892
patch by walk84@yahoo.com r=jkeiser sr=jag


git-svn-id: svn://10.0.0.236/trunk@131287 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 04:06:12 +00:00
mkaply%us.ibm.com
c57f6ea8b9 OS/2 orange part two
git-svn-id: svn://10.0.0.236/trunk@131286 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:49:32 +00:00
mkaply%us.ibm.com
08fbb986c7 OS/2 orange
git-svn-id: svn://10.0.0.236/trunk@131285 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:47:50 +00:00
hyatt%netscape.com
a47bf103c4 Enforce a min-width on the new add bookmark dialog.
git-svn-id: svn://10.0.0.236/trunk@131284 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:36:59 +00:00
hyatt%netscape.com
a140bfd014 fix toolbar overflow to work when items get asserted/unasserted in the datasource.
git-svn-id: svn://10.0.0.236/trunk@131283 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:32:24 +00:00
chanial%noos.fr
4e9b03710a *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@131282 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:26:22 +00:00
chanial%noos.fr
c4725cfd6b new add bookmark
git-svn-id: svn://10.0.0.236/trunk@131281 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:23:48 +00:00
chanial%noos.fr
65cf499018 New add bookmark dialog
git-svn-id: svn://10.0.0.236/trunk@131280 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:18:26 +00:00
sspitzer%netscape.com
c112b5d782 fix js errors from hyatt's landing for #172545.
git-svn-id: svn://10.0.0.236/trunk@131279 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 03:11:36 +00:00
hyatt%netscape.com
7fe66b48cc Make go menu faster.
git-svn-id: svn://10.0.0.236/trunk@131278 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-07 01:58:28 +00:00
blakeross%telocity.com
2941f98c1e A little menu reshuffling.
git-svn-id: svn://10.0.0.236/trunk@131277 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 23:49:13 +00:00
timeless%mac.com
7fb125a318 Bug 172846 QueryInterface should not throw Components.results.NS_NOINTERFACE for Components.interfaces.nsISupports
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@131276 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 23:14:25 +00:00
hyatt%netscape.com
bd37eb50fc Checking in the Go Menu.
git-svn-id: svn://10.0.0.236/trunk@131275 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 22:54:24 +00:00
ian%hixie.ch
9dcaf51736 Add support for post-processing output filters. Also, some minor clean-up.
git-svn-id: svn://10.0.0.236/trunk@131274 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 22:08:32 +00:00
ian%hixie.ch
6345ac6027 HTTP HEAD support (unfortunately Apache screws it up, but theoretically this should work, I think...)
git-svn-id: svn://10.0.0.236/trunk@131273 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 22:06:51 +00:00
hyatt%netscape.com
137e60992a Stub out the go menu.
git-svn-id: svn://10.0.0.236/trunk@131272 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 21:11:50 +00:00
darin%netscape.com
ef6903622e fixing oops from checkin for bug 157135 (reported as bug 172930)
git-svn-id: svn://10.0.0.236/trunk@131268 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 19:31:11 +00:00
blakeross%telocity.com
aaf24a1bb3 Version # -> 0.3
git-svn-id: svn://10.0.0.236/trunk@131267 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 18:57:05 +00:00
cbiesinger%web.de
70460e6955 bug 172781 r=morse sr=bz remove unused preferences from all.js
git-svn-id: svn://10.0.0.236/trunk@131266 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 18:34:17 +00:00
chanial%noos.fr
d88c4b409c bug 172504: after clicking on a disabled item, CM does not work anymore
git-svn-id: svn://10.0.0.236/trunk@131265 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 14:00:55 +00:00
gerv%gerv.net
d6fe11dfdb Bug 163114 - Templatise all calls to DisplayError. Patch D (the last one). Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@131264 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 11:52:37 +00:00
darin%netscape.com
d49bf9be24 fixes sun bustage
git-svn-id: svn://10.0.0.236/trunk@131263 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 06:32:42 +00:00
mkaply%us.ibm.com
b9d6c2e51f A couple nits and then we should be good
git-svn-id: svn://10.0.0.236/trunk@131262 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 03:42:55 +00:00
darin%netscape.com
591bccda72 fixes bug 167463 "fromCacheOnly should be an attribute on nsICachingChannel"
and fixes bug 166927 "add nsICachingChannel should provide an attribute to
'load only if modified'" r=dougt sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@131261 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 03:20:40 +00:00
darin%netscape.com
d76cc96df5 another attempt at fixing the OS2 bustage
git-svn-id: svn://10.0.0.236/trunk@131260 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 03:18:11 +00:00
hyatt%netscape.com
857643c557 Widt hcomputation tweaks for PT overflow.
git-svn-id: svn://10.0.0.236/trunk@131259 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:51:49 +00:00
darin%netscape.com
49f2b781d8 fixing OS2 bustage -- my bad for forgetting to follow mkaply's advice!
git-svn-id: svn://10.0.0.236/trunk@131258 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:38:43 +00:00
darin%netscape.com
80efa5a07a moving nsIFileURL into the SDK now that it is frozen.
git-svn-id: svn://10.0.0.236/trunk@131257 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:28:27 +00:00
darin%netscape.com
b0d1215484 fixes bug 157135 "nsIFileURL need to be frozen" r=dougt sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@131256 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:20:35 +00:00
hyatt%netscape.com
ccacff8d88 Implement chevron for overflow.
git-svn-id: svn://10.0.0.236/trunk@131255 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:07:35 +00:00
hyatt%netscape.com
95681c3042 Add chevron to jar.mn
git-svn-id: svn://10.0.0.236/trunk@131254 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 02:07:21 +00:00
cmanske%netscape.com
072667b20d Removed arg test not needed - part of fix to bug 64647, r=mjudge, sr=darin
git-svn-id: svn://10.0.0.236/trunk@131253 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 01:35:51 +00:00
cmanske%netscape.com
b5d60d857b Implemented command and Composer UI for 'Paste Without Formatting' command. b=64647, r=mjudge, sr=darin
git-svn-id: svn://10.0.0.236/trunk@131252 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 01:23:18 +00:00
darin%netscape.com
d0afbbaf0e fixes bug 166612 "implement NS_CopyNativeToUnicode / NS_CopyUnicodeToNative
on all platforms" r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131251 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 00:29:46 +00:00
dougt%netscape.com
790c5bbc87 Removing silly comment.
git-svn-id: svn://10.0.0.236/trunk@131250 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-06 00:26:20 +00:00
timeless%mac.com
ab64df1e66 Bug 172416 Consistency for nsComponentManager.cpp
r=dbradley, sr=scc


git-svn-id: svn://10.0.0.236/trunk@131249 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 23:59:57 +00:00
chanial%noos.fr
3243919ba6 typo correction
git-svn-id: svn://10.0.0.236/trunk@131247 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 20:53:22 +00:00
cmanske%netscape.com
6e3002e5fa More remove editorShell from dialogs work (comments added by neil as requested). b=158881, r=cmanske, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131246 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 20:44:49 +00:00
arougthopher%lizardland.net
cf8138c948 Bug#169506
IsExecutable() deos not work for BeOS

BeOS now uses stat() instead of access() for:
IsWritable()
IsReadable()
IsExecutable()

sr=scc
r-dougt,arougthopher


git-svn-id: svn://10.0.0.236/trunk@131245 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 19:06:28 +00:00
cmanske%netscape.com
6e273b8448 Backed out changes for bugscape bug 20282, will recheckin as a mozilla bug
git-svn-id: svn://10.0.0.236/trunk@131244 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 17:35:36 +00:00
despotdaemon%netscape.com
6765d6dfdf Pseudo-automatic update of changes made by chofmann@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@131243 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 16:30:10 +00:00
aaronl%netscape.com
28738c2f51 Fixing extra comma in checking
git-svn-id: svn://10.0.0.236/trunk@131242 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 16:12:44 +00:00
aaronl%netscape.com
2a80196ae6 Bug 28583. Select text field contents when focused, except by mouse click, on certain platforms. r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@131241 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 15:39:33 +00:00
matty%chariot.net.au
02150d6352 ... and also fix a bug introduced trying to unrot the general bug check rewrite, due to product IDs.
git-svn-id: svn://10.0.0.236/trunk@131240 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 15:29:20 +00:00
matty%chariot.net.au
1c05ab7258 Back out a stupid stupid change I made earlier when fixing the stupid stupid bustage I made even earlier. I need sleep.
git-svn-id: svn://10.0.0.236/trunk@131239 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 15:26:23 +00:00
matty%chariot.net.au
c5399b95da ... oops missed a reviewer checkin condition.
git-svn-id: svn://10.0.0.236/trunk@131238 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 15:08:50 +00:00
matty%chariot.net.au
84277bc1b7 Bug #93667: Minor style fix, uninit var fix, add explanatory comments to CrossCheck/DoubleCrossCheck.
git-svn-id: svn://10.0.0.236/trunk@131237 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 15:07:16 +00:00
matty%chariot.net.au
141d8c1565 Bug #93667: More movement, commenting, and remove an unused variable.
git-svn-id: svn://10.0.0.236/trunk@131236 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 14:37:52 +00:00
matty%chariot.net.au
924bd2581c Bug #93667: Move some code around, add some section heading comments.
git-svn-id: svn://10.0.0.236/trunk@131235 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 14:25:13 +00:00
matty%chariot.net.au
53ca666882 Bug #93667: Rewrite double cross checking.
git-svn-id: svn://10.0.0.236/trunk@131234 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 14:14:47 +00:00
matty%chariot.net.au
75bef9c45f Bug #93667: Rewrite single cross checking.
git-svn-id: svn://10.0.0.236/trunk@131233 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 14:14:22 +00:00
matty%chariot.net.au
842908b2fa ... and fix build.
git-svn-id: svn://10.0.0.236/trunk@131232 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 13:50:12 +00:00
matty%chariot.net.au
3f714789af Bug #93667: General bug check refactoring.
git-svn-id: svn://10.0.0.236/trunk@131231 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 13:23:44 +00:00
rods%netscape.com
3e04f725a5 wrong file got checked in
Impl print preview for mail and addrbook This also makes it so printing parents the printing content window is is modal
Bug 158110 r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131230 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 12:47:15 +00:00
varga%netscape.com
2c37d606f2 Fix for bug 112534. Remove collapse grippies.
r=caillon, sr=jag


git-svn-id: svn://10.0.0.236/trunk@131228 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 08:11:28 +00:00
rogerl%netscape.com
d7690d9b03 Duh. Fixed C++ style comment, sorry.
git-svn-id: svn://10.0.0.236/trunk@131224 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 04:38:42 +00:00
rogerl%netscape.com
c798f05273 Bug #172699. r=rogerl, sr=brendan. Detect illegal (overlong) utf-8.
git-svn-id: svn://10.0.0.236/trunk@131223 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 04:05:56 +00:00
depstein%netscape.com
f4d618d4c6 minor changes to screen dialogs, "Run All Tests" for interface tests run more smoothly.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@131222 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 04:03:32 +00:00
peterlubczynski%netscape.com
8e03e4e94b Fixing bug 169513, Add the means to obtain the DOM from a plugin r=adamlock sr=beard
git-svn-id: svn://10.0.0.236/trunk@131221 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:57:21 +00:00
bryner%netscape.com
c6a22246cd OS/2 fixes from mkaply.
git-svn-id: svn://10.0.0.236/trunk@131220 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:54:35 +00:00
bryner%netscape.com
6e21d6290d Remove gfx2 from REQUIRES globally, since we no longer export headers to a separate gfx2 module. r=cls.
git-svn-id: svn://10.0.0.236/trunk@131219 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:49:02 +00:00
bryner%netscape.com
f449c4cf79 Removing a dead nmake build makefile
git-svn-id: svn://10.0.0.236/trunk@131218 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:28:06 +00:00
jpierre%netscape.com
c1b8340977 Fix for 172678 - move internal functions InitCRLCache and ShutdownCRLCache to private header certi.h
git-svn-id: svn://10.0.0.236/trunk@131215 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:24:25 +00:00
blakeross%telocity.com
d1f7ce42a0 Remove reload.
git-svn-id: svn://10.0.0.236/trunk@131213 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 02:08:12 +00:00
blakeross%telocity.com
86f1aeb1cd More standalone mail work.
git-svn-id: svn://10.0.0.236/trunk@131212 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 01:52:33 +00:00
cmanske%netscape.com
e930020996 Fix problems with styles in IM, Chat, and Mail Composers. bugscape=20282, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@131211 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 01:20:10 +00:00
sgehani%netscape.com
a08c83ee2d Remove dependency on gfx2 which was rolled in to gfx so depend builds work.
r=bryner


git-svn-id: svn://10.0.0.236/trunk@131210 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 01:03:48 +00:00
hyatt%netscape.com
fdf9dc3605 Revising width calc
git-svn-id: svn://10.0.0.236/trunk@131209 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:50:00 +00:00
hyatt%netscape.com
6714d73e7e Fix context menus on PT
git-svn-id: svn://10.0.0.236/trunk@131208 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:33:57 +00:00
naving%netscape.com
1b7b6bf101 fixing earlier bustage correctly thanks dbaron
git-svn-id: svn://10.0.0.236/trunk@131207 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:30:38 +00:00
kerz%netscape.com
171175b617 adding chevron image
git-svn-id: svn://10.0.0.236/trunk@131206 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:26:25 +00:00
hyatt%netscape.com
fae65c2c6b Fix PT bustage.
git-svn-id: svn://10.0.0.236/trunk@131205 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:20:55 +00:00
nicolson%netscape.com
f0010a907b Fix 158727: JSSKeyStoreSpi.getCertificateChain is questionable.
Make KeyStore.getCertificateChain() work.


git-svn-id: svn://10.0.0.236/trunk@131204 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:19:49 +00:00
hyatt%netscape.com
6dca912b3c Fix PT bustage.
git-svn-id: svn://10.0.0.236/trunk@131203 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-05 00:15:07 +00:00
hyatt%netscape.com
824303587d Landing personal toolbar overflow.
git-svn-id: svn://10.0.0.236/trunk@131202 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:50:54 +00:00
dougt%netscape.com
0aa63891b6 Backing out nsStringService.
git-svn-id: svn://10.0.0.236/trunk@131201 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:49:23 +00:00
dougt%netscape.com
c1cfcf9d80 backing out nsGenericFactory.cpp
git-svn-id: svn://10.0.0.236/trunk@131200 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:23:51 +00:00
dougt%netscape.com
a9ad6ad2b2 Mac files.
git-svn-id: svn://10.0.0.236/trunk@131199 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:16:07 +00:00
naving%netscape.com
9b6ecf5e99 commenting out bustage lines while I work on it.
git-svn-id: svn://10.0.0.236/trunk@131198 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:12:50 +00:00
dougt%netscape.com
d37b30fdd2 manifest
git-svn-id: svn://10.0.0.236/trunk@131197 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 23:12:36 +00:00
beard%netscape.com
2844eec47b Using a fixed sized (16k) token buffer, now byte swapping 32-bit integers written into the training data, correctly opening the ANSI file in binary mode (crucial on the Mac). [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131196 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:47:36 +00:00
nicolson%netscape.com
29e734b546 Fix 162904: Missing invalidityDate in RevRequest in CMMF package.
Update RevRequest to conform to RFC 2797.
Also updated the CRLReason enumeration.


git-svn-id: svn://10.0.0.236/trunk@131195 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:46:04 +00:00
ducarroz%netscape.com
2d96391d67 Bug 172210. Set correct parameter to force mime generating clean output for mail filter. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131194 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:43:26 +00:00
despotdaemon%netscape.com
20dafcd6dc Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@131193 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:42:26 +00:00
ducarroz%netscape.com
b791bbaa24 Fix for bug 172210. Add a new mode to generate a clean output for mail filter. This mode get activated when the url contains the option header=filter. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131192 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:40:53 +00:00
ducarroz%netscape.com
caf472d4b0 Bug 172210. Ad a new plain text emitter. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131191 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:37:17 +00:00
ducarroz%netscape.com
aca24b941d Bug 172210. Add a new mime emitter to output plain text headers. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131190 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:35:08 +00:00
naving%netscape.com
b7ae8a304e 170555 r=mscott sr=bienvenu Adding ability to purge junk folder automatically at interval of 1 day. Also
added code to specialize/unspecialize junk folder when the user changes junk folder from UI


git-svn-id: svn://10.0.0.236/trunk@131189 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:32:15 +00:00
naving%netscape.com
8a64ff2d6d 170555 r=mscott sr=bienvenu Changed IsValidFolderURI to GetExistingFolder so that it can be reused
git-svn-id: svn://10.0.0.236/trunk@131188 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:32:04 +00:00
dougt%netscape.com
7ce2b71583 adding UNDER_REVIEW
git-svn-id: svn://10.0.0.236/trunk@131187 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:29:27 +00:00
jgmyers%netscape.com
3061809442 fix include guard: bug 168343 r=ftang sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@131186 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:28:14 +00:00
nicolson%netscape.com
41d734ceac Fix 160028: JSSKeyGeneratorSpi.HmacSHA1 should be renamed to PBAHmacSHA1.
git-svn-id: svn://10.0.0.236/trunk@131185 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:27:46 +00:00
jgmyers%netscape.com
4d88151421 Include In-Reply-To: when sending replies: bug 78117 r=ducarroz sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@131184 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:26:08 +00:00
dougt%netscape.com
686f5cf33f First cut of the nsIStringService. 172512. r=jag, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131183 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:25:41 +00:00
nhotta%netscape.com
fb6e561b9f For Classic, use script mgr to get application font instead of the appearance API
which only supports system fonts for Classic.
bug 169022, r=ftang, sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@131182 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:22:15 +00:00
nicolson%netscape.com
3b633d1611 Fix 160017: getAlgorithm() not implemented for PKCS #11 keys.
git-svn-id: svn://10.0.0.236/trunk@131181 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:13:21 +00:00
wtc%netscape.com
dd6d28b962 Sorted NSS 3.6 symbols in alphabetical order.
git-svn-id: svn://10.0.0.236/trunk@131180 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:11:34 +00:00
blakeross%telocity.com
20e9f9986f load stuff on a 0 timeout.
git-svn-id: svn://10.0.0.236/trunk@131179 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:07:06 +00:00
blakeross%telocity.com
6b0a45aaac Standalone mail work.
git-svn-id: svn://10.0.0.236/trunk@131178 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 22:04:39 +00:00
blakeross%telocity.com
1ed8be7918 Standalone mail work.
git-svn-id: svn://10.0.0.236/trunk@131177 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:51:54 +00:00
wtc%netscape.com
78ee89944b Import nspr20/v4.2.2.
git-svn-id: svn://10.0.0.236/trunk@131174 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:26:10 +00:00
nicolson%netscape.com
db6a32ec5c Open up the class a little.
git-svn-id: svn://10.0.0.236/trunk@131173 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:18:35 +00:00
nicolson%netscape.com
36a6118e7f Remove hardcoded algorithms (now that NSS bug 162761 is fixed).
git-svn-id: svn://10.0.0.236/trunk@131172 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:05:18 +00:00
nicolson%netscape.com
0049aaa56c Deprecate this, start using javax.crypto.BadPaddingException instead.
git-svn-id: svn://10.0.0.236/trunk@131171 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:04:37 +00:00
nicolson%netscape.com
af34c60f39 Fix EncryptionAlgorithm to handle lookups from JCA descriptions.
Support CipherSpi.engineGetKeySize.
Handle javax.crypto.spec.IvParameterSpec.
Handle multiple parameter classes.


git-svn-id: svn://10.0.0.236/trunk@131170 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:04:09 +00:00
nicolson%netscape.com
b903ab2d58 support storing private and symmetric keys (now that NSS bug 128172 is fixed).
git-svn-id: svn://10.0.0.236/trunk@131169 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:02:50 +00:00
nicolson%netscape.com
b381b31548 Handle AES keys.
git-svn-id: svn://10.0.0.236/trunk@131168 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:02:16 +00:00
nicolson%netscape.com
08e32b4adc allow algorithms to support multiple parameter classes.
git-svn-id: svn://10.0.0.236/trunk@131167 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 21:00:58 +00:00
nicolson%netscape.com
d699d77195 Cleanup spurious printlns and exceptions.
git-svn-id: svn://10.0.0.236/trunk@131166 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 20:59:20 +00:00
nicolson%netscape.com
1d826a11a5 Add SymmetricKey.getLength().
git-svn-id: svn://10.0.0.236/trunk@131165 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 20:58:05 +00:00
kirk.erickson%sun.com
fc3538040b Added SUNW_ISA=sparcv9 to clear up error message.
git-svn-id: svn://10.0.0.236/trunk@131164 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 20:47:09 +00:00
blythe%netscape.com
28efadda82 Not part of the build.
Forgot last pattern to exclude.


git-svn-id: svn://10.0.0.236/trunk@131161 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 20:09:08 +00:00
blythe%netscape.com
d0a9f505a7 Not part of the build.
Refine what input files to accept.


git-svn-id: svn://10.0.0.236/trunk@131160 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 20:05:48 +00:00
av%netscape.com
c09066fd8a Updating workspace for the default plugin on Windows, not part of the build
git-svn-id: svn://10.0.0.236/trunk@131159 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 19:59:52 +00:00
mikep%oeone.com
2e3db94609 Fixing spelling mistake, bug 170467
git-svn-id: svn://10.0.0.236/trunk@131158 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 14:56:03 +00:00
timeless%mac.com
19ef4c6c3c Bug 128789 Progressmeter is not smooth
by david@balch.co.uk and gregvalure@wanderlife.com r=andreww sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@131156 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 14:47:39 +00:00
chanial%noos.fr
36ea93dfa9 remove no more pertinent comment
git-svn-id: svn://10.0.0.236/trunk@131152 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 11:26:55 +00:00
chanial%noos.fr
62a6002df9 bug 172504: Context menu items in Bookmarks sidebar don't work (Windows)
git-svn-id: svn://10.0.0.236/trunk@131151 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 11:11:59 +00:00
hyatt%netscape.com
e5e5ba8be1 Fix for 172545, give datasources the ability to specify icons for XUL trees, r=varga, sr=jag
git-svn-id: svn://10.0.0.236/trunk@131150 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 08:26:36 +00:00
hyatt%netscape.com
32c2435c4d Set an infinite expiration for bookmark favicons. Not used by Mozilla (Phoenix only). r=brendan, sr=jag
git-svn-id: svn://10.0.0.236/trunk@131149 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:42:58 +00:00
curt%netscape.com
868045b7a4 Implementation of new config.ini syntax for Condition keyword.
(Bug #169580, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@131148 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:40:08 +00:00
hyatt%netscape.com
1ccb7e0215 Full favicon support landed. Dependent on some mozilla trunk work, but harmless until i get that checked in.
git-svn-id: svn://10.0.0.236/trunk@131147 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:38:44 +00:00
depstein%netscape.com
8b72cc9dfd Better error checking for NS objects. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131146 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:26:37 +00:00
depstein%netscape.com
1d72aacfdf Reference to mozEmbed.ico. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@131145 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:21:53 +00:00
gerv%gerv.net
756b04bcc5 Bug 155389 - More <link> elements & templatization of navigation_links. Fix small regression where I accidentally damaged the user.login field. Patch by gerv.
git-svn-id: svn://10.0.0.236/trunk@131143 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 07:14:15 +00:00
seawood%netscape.com
25bfa9c4fd Fix --disable-bidi on mac bustage.
Bug #136293 r=smontagu sr=jag


git-svn-id: svn://10.0.0.236/trunk@131142 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 06:56:22 +00:00
leaf%mozilla.org
c24f239a23 Automated update
git-svn-id: svn://10.0.0.236/trunk@131141 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 06:39:31 +00:00
tor%cs.brown.edu
5cce33e3a6 update libpng to 1.2.5. r=cls
git-svn-id: svn://10.0.0.236/trunk@131140 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 06:34:53 +00:00
jaggernaut%netscape.com
1c68856486 Bug 118835: add support for home page groups. r=law, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@131139 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 04:42:39 +00:00
av%netscape.com
3eb685f861 Fixing MacOS9 redness
git-svn-id: svn://10.0.0.236/trunk@131137 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 03:54:42 +00:00
morse%netscape.com
f902af5f3c bug 154824, stealth pref to override autocomplete=off, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@131136 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 03:39:46 +00:00
dcone%netscape.com
1b3e519f6c b=143046 r=rods sr=boris API change so we can create different depth nsImages
git-svn-id: svn://10.0.0.236/trunk@131135 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 03:32:26 +00:00
blythe%netscape.com
d53c3702d4 Not part of a normal build.
Correct the help text of the script.


git-svn-id: svn://10.0.0.236/trunk@131134 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 03:14:25 +00:00
timeless%mac.com
7641e8ccde Bug 172433 out of memory check is a bit too late [@ nsMsgKeySet::Output]
r=bbaetz sr=bz


git-svn-id: svn://10.0.0.236/trunk@131133 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:54:59 +00:00
blythe%netscape.com
b01a449148 Not part of a normal build.
Add final touch to license.


git-svn-id: svn://10.0.0.236/trunk@131132 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:51:13 +00:00
blythe%netscape.com
420590a668 Not part of a normal build.
Forgot to license source code.


git-svn-id: svn://10.0.0.236/trunk@131131 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:40:43 +00:00
blythe%netscape.com
4947d5840a Not part of any normal build (yet).
Map file parsing tools for a windows build.
Goal will be to use the script to hook up in tinderbox for code size delta tracking.


git-svn-id: svn://10.0.0.236/trunk@131130 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:33:15 +00:00
curt%netscape.com
95d356d018 Added missing file.
(Bug #172495, r=chak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@131129 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:27:29 +00:00
rjc%netscape.com
3c45c63fef Fix bug # 120712: memory leak fix. Forced to use nsAutoString as CBufDescriptor doesn't guarantee zero termination. Patch from ajschultz@eos.ncsu.edu. r=rjc sr=jag
git-svn-id: svn://10.0.0.236/trunk@131128 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 02:25:03 +00:00
naving%netscape.com
c449ca74fc 121750 r=cavin sr=mscott fixing focus issues when coming out of quick search
git-svn-id: svn://10.0.0.236/trunk@131127 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 01:27:38 +00:00
chanial%noos.fr
0fab0faba6 bug 171327: implement "Use Bookmark" menubutton in General prefs
git-svn-id: svn://10.0.0.236/trunk@131126 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 01:13:49 +00:00
hyatt%netscape.com
1e54d8add8 Add back support for favicons.
git-svn-id: svn://10.0.0.236/trunk@131125 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:57:35 +00:00
hyatt%netscape.com
82b7a5d657 Fix for 172276, enable menus to support context menus (like WinIE's Favorites top-level menu). r/sr=hewitt/brendan
git-svn-id: svn://10.0.0.236/trunk@131124 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:57:09 +00:00
hyatt%netscape.com
36f775c3f0 Fix for 172276, enable menus to support context menus (like WinIE's Favorites top-level menu).
git-svn-id: svn://10.0.0.236/trunk@131123 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:56:43 +00:00
alecf%netscape.com
ea987fd0a6 argh, I'm stupid, s/class/interface/
not part of build


git-svn-id: svn://10.0.0.236/trunk@131122 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:48:16 +00:00
alecf%netscape.com
25b7ac53d0 pre-declare nsISimpleEnumerator instead of #including the header, per darin's request
not part of build, for bug 162115


git-svn-id: svn://10.0.0.236/trunk@131121 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:47:14 +00:00
lordpixel%mac.com
a251c20ceb Fix for bug 119091 - applescript window z order issues
r=timeless, sr=smfr


git-svn-id: svn://10.0.0.236/trunk@131117 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:35:01 +00:00
loadrunner%betak.net
69c5401d2c b112869, No UI to uninstall language packs, r=tao, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131116 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:31:30 +00:00
jaggernaut%netscape.com
54f7af67c2 Bug 118835: add support for home page groups. r=law, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@131115 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:28:07 +00:00
seawood%netscape.com
5b245a4162 Fixing static build bustage caused by checkin for bug 158110.
git-svn-id: svn://10.0.0.236/trunk@131114 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-04 00:27:14 +00:00
curt%netscape.com
cdaecca4e9 Corrected the registry path. (This has no impact on tinderbox build.)
(Bug #172019, r=jbetak, sr=mscott)


git-svn-id: svn://10.0.0.236/trunk@131112 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:50:34 +00:00
curt%netscape.com
f6d684271b Corrected the registry path. (This has no impact on tinderbox build.)
(Bug #171266, r=jbetak, sr=mscott)


git-svn-id: svn://10.0.0.236/trunk@131111 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:47:54 +00:00
curt%netscape.com
22155ef7e8 Variablized a hardcoded version number. (This has no impact on tinderbox build.)
(Bug #172209, r=jbetak, sr=mscott)


git-svn-id: svn://10.0.0.236/trunk@131110 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:44:16 +00:00
beard%netscape.com
cd6b2d15ad Remove obsolete file. r=sspitzer [not part of build, either]
git-svn-id: svn://10.0.0.236/trunk@131109 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:29:52 +00:00
beard%netscape.com
3bcbabe9f1 Kill warnings. [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131107 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:22:42 +00:00
av%netscape.com
5c0a664b59 Bug 104298 -- clean up in plugin module, r=serge, r=bnesse, sr=beard
git-svn-id: svn://10.0.0.236/trunk@131106 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 22:12:40 +00:00
locka%iol.ie
32ac4bb5e9 NOT PART OF BUILD. Cleanup event sink and fire named DOM events, add dispatch tear off to scriptable peer
git-svn-id: svn://10.0.0.236/trunk@131104 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:59:34 +00:00
chanial%noos.fr
78e61cae1b fix double click loading folder in bookmark manager
fix file: protocol


git-svn-id: svn://10.0.0.236/trunk@131103 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:45:05 +00:00
av%netscape.com
3cf944f3c5 Bug 104298 -- clean up in plugin module, r=serge, r=bnesse, sr=beard
git-svn-id: svn://10.0.0.236/trunk@131101 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:31:41 +00:00
rjc%netscape.com
7c3c962bb9 Fix bug # 172450: plug ever-increasing memory leaks. When new internet search results are added, old nodes were being removed, but old attributes hanging off of the old nodes need to be cleared out also (but, IFF there are no other references to the old search result nodes in the graph.) r=sgehani sr=jag
git-svn-id: svn://10.0.0.236/trunk@131100 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:27:05 +00:00
smontagu%netscape.com
daeed6664e Force entry fields for URI elements to be left to right even in right-to-left chrome. Bug 157607, r=jag, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@131099 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:16:39 +00:00
hyatt%netscape.com
e4ad7c2a9f Reverting tab close behavior.
git-svn-id: svn://10.0.0.236/trunk@131098 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:15:51 +00:00
av%netscape.com
733b111ed3 Bug 104298 -- clean up in plugin module, r=serge, r=bnesse, sr=beard
git-svn-id: svn://10.0.0.236/trunk@131097 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 21:05:30 +00:00
rdayal%netscape.com
4334fb47d6 Bug #165247. Implementation of Palm AB HotSync support in Mozilla.
NOT yet part of BUILD.

- files in palmsync/build are for providing IPC support to get called from
Palm Conduit loaded into Palm's HotSync Manager
- files in palmsync/public is the XPCOM interface for Palm HotSync support Mozilla module
- files in palmsync/src is the implementation of this module, the XPCOM interface
implementation, implementation when IPC call is made and the implementation of the
actual PalmSync Logic.

r=cavin, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@131095 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:40:24 +00:00
sspitzer%netscape.com
7c2476c59e fix tooltip. the IM button does IM and Chat. a=jglick,robinf.
git-svn-id: svn://10.0.0.236/trunk@131094 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:35:01 +00:00
alecf%netscape.com
270dd28b76 add do_QueryElementAt, and make NS_NewArray() give you an nsIMutableArray instead of nsIArray
not part of build, for bug 162115


git-svn-id: svn://10.0.0.236/trunk@131093 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:20:13 +00:00
aaronl%netscape.com
be1bd54722 Bug 168281. Make typeaheadfind work with IME. Also fixes repated char find so it handles backspace, findnext, findprev. Also refactors typeaheadfind into smaller, clearer methods. r=kyle, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@131092 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:12:46 +00:00
varada%netscape.com
a8fe9eb3c5 fix for 171068; move compose specific prefs to compose prefs panel;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131091 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:07:11 +00:00
varada%netscape.com
f750d016b1 fix for 170572: adding prefs to hide mail toolbar buttons;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131089 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:03:34 +00:00
varada%netscape.com
aac4eb1da3 fix for 170573 -Create new notification panel for mail prefs;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131088 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:03:16 +00:00
varada%netscape.com
26c58435a7 fix for 170572: adding prefs to hide mail toolbar buttons; 170573 : Create new notification panel for mail prefs;171068: move compose prefs from main to compose panel;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@131087 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 20:03:01 +00:00
varga%netscape.com
8d9d3b4255 Fix for bug 172322. Merge securityOverlay.xul with navigator.xul.
r=kaie, sr=jag


git-svn-id: svn://10.0.0.236/trunk@131086 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 19:48:10 +00:00
ere%atp.fi
6f33cfd311 Fix for bug 170058: Body as "Plain Text" has no linebreaks and is displayed in variable font width
r=BenB, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@131085 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 19:41:59 +00:00
caillon%returnzero.com
6476611c63 Bug 170895. Reducing footprint. Use XPCOM aggregation to get at CSS2Properties.
r=dbaron sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131084 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 19:41:42 +00:00
blakeross%telocity.com
27c491d63c Reviving minotaur.
git-svn-id: svn://10.0.0.236/trunk@131083 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 19:33:07 +00:00
serge%netscape.com
4d575a65b3 back out http channel loadFlags to fix regression 172376
git-svn-id: svn://10.0.0.236/trunk@131082 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 19:10:56 +00:00
karnaze%netscape.com
89daafee46 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@131080 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 16:30:51 +00:00
karnaze%netscape.com
cc81dbe612 bug 165772 - rewrite of SplitSpanningCells and most of SplitRowGroup to better handle splitting of rowspan cells. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@131076 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 14:33:23 +00:00
rods%netscape.com
fa2acba193 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@131075 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 12:42:26 +00:00
rods%netscape.com
4bc583f3ac fixed bustage
git-svn-id: svn://10.0.0.236/trunk@131073 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 12:35:10 +00:00
rods%netscape.com
1628efa2f4 Removing unwanted part of patch
git-svn-id: svn://10.0.0.236/trunk@131072 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 11:28:48 +00:00
rods%netscape.com
c6215b078b Impl print preview for mail and addrbook
This also makes it so printing parents the printing content window is is modal
Bug 158110 r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131071 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 11:13:55 +00:00
rods%netscape.com
273e31f3ad Impl print preview for mail and addrbook
This also makes it so printing parents the printing content window is is modal
Bug 158110 r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131070 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 11:08:25 +00:00
rods%netscape.com
41712f69ca Impl print preview for mail and addrbook
Here we are moving the printing JS code into its own file called printing.js
Bug 158110 r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131069 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 11:04:57 +00:00
rods%netscape.com
31504c0dab Impl print preview for mail and addrbook
Bug 158110 r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@131068 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 10:48:59 +00:00
sspitzer%netscape.com
276bcac866 fix for #141628. don't drop the NNTP connection when doing list if the server
sends us a line like:  ". 0000000001 0000000002 y".  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@131067 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 09:47:36 +00:00
bryner%netscape.com
696be721d8 Support building Phoenix with jprof. Thanks to bbaetz for the patch.
git-svn-id: svn://10.0.0.236/trunk@131066 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 08:30:19 +00:00
hyatt%netscape.com
67bea7ca8d Backing out.
git-svn-id: svn://10.0.0.236/trunk@131065 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 07:04:36 +00:00
gerv%gerv.net
608e491c4f Bug 155389 - More <link> elements & templatization of navigation_links. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@131064 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 07:04:10 +00:00
hyatt%netscape.com
005c283530 Windows XP look and feel for menus on the menu bar, not Win2k. SO there.
git-svn-id: svn://10.0.0.236/trunk@131063 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 06:58:26 +00:00
rogerl%netscape.com
c00addac29 Long/Float support.
git-svn-id: svn://10.0.0.236/trunk@131062 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 06:49:07 +00:00
bryner%netscape.com
8a8190dbb1 Adding support for Phoenix static builds
git-svn-id: svn://10.0.0.236/trunk@131061 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 06:08:18 +00:00
blakeross%telocity.com
5d472b7ddf Turn off js errors in js console.
git-svn-id: svn://10.0.0.236/trunk@131059 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 05:04:01 +00:00
asa%mozilla.org
49c6a2658c go button might not be to the right of the urlbar bug 172127
git-svn-id: svn://10.0.0.236/trunk@131058 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 04:52:10 +00:00
blakeross%telocity.com
6f8f59a654 Change version number.
git-svn-id: svn://10.0.0.236/trunk@131057 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 04:19:39 +00:00
cmanske%netscape.com
d658944797 Remove editorShell from main Composer window. b=169026, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131056 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 04:07:10 +00:00
cmanske%netscape.com
2739e4228e Remove editorShell from dialogs. b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@131055 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 04:05:34 +00:00
wtc%netscape.com
753326f32e Bug 164744: fixed the comment block style.
git-svn-id: svn://10.0.0.236/trunk@131054 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 04:01:34 +00:00
wtc%netscape.com
24a53e67b2 Bug 149832: renamed highestUsage as certificateUsageHighest.
Modified files: certdb/certt.h certhigh/certvfy.c


git-svn-id: svn://10.0.0.236/trunk@131053 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 03:48:55 +00:00
jkeiser%netscape.com
b742025df3 Add CheapSet, reduce select bloat, make blank options restore correctly (bug 166168), r=rjesup@wgate.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@131052 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 03:43:11 +00:00
jpierre%netscape.com
c9fe358c5a Fix for 164744 - implement new functions for pk12util . r=wtc
git-svn-id: svn://10.0.0.236/trunk@131051 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 03:35:32 +00:00
chanial%noos.fr
3afc4cb474 dropping support for imported or already existing folder groups
git-svn-id: svn://10.0.0.236/trunk@131050 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 03:30:06 +00:00
chanial%noos.fr
5ac30a2c20 bug 171330: dropping foldergroup concept.
opening bookmarks in folder via context menu, middle-click and ctrl-click.
saving group of tabs in folder
+ speed optimizations


git-svn-id: svn://10.0.0.236/trunk@131049 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 02:54:05 +00:00
darin%netscape.com
88943e0691 fixes bug 171102 "prefetch <link rel=prefetch> and only prefetch the first
occurance of <link rel=next>" r=gagan sr=jst


git-svn-id: svn://10.0.0.236/trunk@131048 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 02:53:18 +00:00
depstein%netscape.com
c4a495e607 Added protocol menu to UrlDialog. Hooked up nsIWebBrowserFind to screen dialog output.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@131047 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 02:42:09 +00:00
ducarroz%netscape.com
9ae3787610 Fix spam filter bustage on Windows and Linux. Not part of the build yet
git-svn-id: svn://10.0.0.236/trunk@131046 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 02:35:57 +00:00
wtc%netscape.com
98ba356410 Restored a # that was accidentally deleted.
git-svn-id: svn://10.0.0.236/trunk@131045 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 02:11:01 +00:00
tara%tequilarista.org
32a25913c1 Checking in patch for 114836
git-svn-id: svn://10.0.0.236/trunk@131044 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 01:44:27 +00:00
bryner%netscape.com
f0e3378b8c Don't reuse the key event struct between the key down and key press events (bug 124990). r=dbaron, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@131043 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 01:24:39 +00:00
aaronl%netscape.com
1fe0c110b5 Bug 128608. Accesskeys don't work for XUL tabpanels. r=jkeiser, sr=jag
git-svn-id: svn://10.0.0.236/trunk@131042 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 01:10:51 +00:00
dbaron%fas.harvard.edu
90deda8fc9 Use correct interface pointer to fix crash inserting rule into media rule. b=170699 r=glazman sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@131041 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 01:02:13 +00:00
aaronl%netscape.com
60c5ac4eac Bug 81723. Keyboard context menu (Shift+F10/Ctrl+space on mac) should open near focused item. r=pinkerton, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@131040 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:47:54 +00:00
bryner%netscape.com
b587ebf902 Don't reuse the key event struct between the key down and key press events (bug 124990). Patch by joki@netscape.com, r=bzbarsky, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@131039 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:47:11 +00:00
aaronl%netscape.com
4b055fb439 Bug 172194. Initial focus in password dialogs messed up. r=sgehani, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@131038 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:46:24 +00:00
dbaron%fas.harvard.edu
34cc78c36a Don't prevent 'display: none' from working on generated content by being overzealous with CSS2 12.1 'display' fixups. At suggestion of Mats Palmgren, split code path between CSS2 9.7 fixups and CSS2 12.1 fixups since the former can't affect generated content and the latter apply only to generated content. r=bzbarsky and mats.palmgren sr=kin b=171749
git-svn-id: svn://10.0.0.236/trunk@131037 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:42:16 +00:00
leaf%mozilla.org
a60b95ae8c Automated update
git-svn-id: svn://10.0.0.236/trunk@131036 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:39:32 +00:00
blizzard%redhat.com
37211f885d Part of bug #126919. Set up configure options for using an external version of xft. r=cls
git-svn-id: svn://10.0.0.236/trunk@131035 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:37:12 +00:00
beard%netscape.com
5d4a709696 Switched to binary format for training data. [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131034 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-03 00:26:44 +00:00
kirk.erickson%sun.com
73d7803404 Moved solarispkg target to the end of the file.
git-svn-id: svn://10.0.0.236/trunk@131031 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 23:42:40 +00:00
asa%mozilla.org
f88b26a00e adding disable mailnews and composer to the recommended .mozconfig file
git-svn-id: svn://10.0.0.236/trunk@131030 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 23:28:25 +00:00
kirk.erickson%sun.com
96c7df1ac7 Fixes 158683, adds new directory mozilla/security/nss/pkg/solaris.
And 'solarispkg' target to mozilla/security/nss/Makefile.


git-svn-id: svn://10.0.0.236/trunk@131029 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 23:11:39 +00:00
bienvenu%netscape.com
5c4ae92cc9 add undelete to nsMsgDBView r=cavin, sr=sspitzer 20118
git-svn-id: svn://10.0.0.236/trunk@131028 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 22:34:31 +00:00
edburns%acm.org
92c1171044 build_with_ant
git-svn-id: svn://10.0.0.236/trunk@131027 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 22:23:47 +00:00
beard%netscape.com
a41d07ec84 Incorporated patch from bug #172210 (thanks jf), added code to writeTokens to write correct data when there are 0 tokens, so that readTokens will work correctly in that case. [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131026 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 22:16:00 +00:00
beard%netscape.com
4cadc1e28b Added writeTrainingData/readTrainingData methods which save to a file called "training.txt" in the current profile directory. [not part of build]
git-svn-id: svn://10.0.0.236/trunk@131025 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 21:52:21 +00:00
alecf%netscape.com
ade6404249 more work for bug 162115 - add support for weak references in nsIArray
not part of build


git-svn-id: svn://10.0.0.236/trunk@131024 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 21:00:42 +00:00
serge%netscape.com
6570d00a7b #166613 Flash: Lost submovie requests - new to Mozilla 1.1, r=peterl, sr=darin
git-svn-id: svn://10.0.0.236/trunk@131023 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 20:38:46 +00:00
bryner%netscape.com
a56dffdde8 Don't force building a shared library
git-svn-id: svn://10.0.0.236/trunk@131022 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 20:37:09 +00:00
beard%netscape.com
d24ce995d9 Work in progress changes for bayesian spam filter. sr=sspitzer, r=ducarroz
git-svn-id: svn://10.0.0.236/trunk@131019 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 20:04:09 +00:00
hewitt%netscape.com
d71c9f4edb null check to prevent crash reported by a few 0.2 talkbacks
git-svn-id: svn://10.0.0.236/trunk@131018 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:59:08 +00:00
beard%netscape.com
f505719979 Fixes learning, removes usage of NaN, and correctly initializes refcount of the nsIStreamListener. [not part of build].
git-svn-id: svn://10.0.0.236/trunk@131017 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:54:32 +00:00
mikep%oeone.com
e6d2d2af50 Adding in function frome OEone, removing useless calendar window variable.
git-svn-id: svn://10.0.0.236/trunk@131016 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:45:48 +00:00
mikep%oeone.com
130151f08f Removing code from testing.
git-svn-id: svn://10.0.0.236/trunk@131015 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:45:13 +00:00
mikep%oeone.com
1bc05e786b Removing useless comment.
git-svn-id: svn://10.0.0.236/trunk@131014 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:44:21 +00:00
mikep%oeone.com
82cc638730 Fixing spaces.
git-svn-id: svn://10.0.0.236/trunk@131013 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:43:51 +00:00
mikep%oeone.com
97ecb629e6 New build.
git-svn-id: svn://10.0.0.236/trunk@131012 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:42:19 +00:00
mikep%oeone.com
1de5de556e Adding check to make sure file is a calendar file.
git-svn-id: svn://10.0.0.236/trunk@131011 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:42:03 +00:00
blakeross%telocity.com
92f5fffb21 Fix wrong tooltip.
git-svn-id: svn://10.0.0.236/trunk@131010 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 19:06:33 +00:00
kaie%netscape.com
ff49f29e4b b=170562 Some CA's are blank lines
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@131009 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:54:21 +00:00
alecf%netscape.com
8c7efaf56b more work on bug 162115 - use "friend" to allow nsCOMArray<T>'s copy constructor to be protected, but still usable from nsArray
not part of build


git-svn-id: svn://10.0.0.236/trunk@131008 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:54:12 +00:00
kaie%netscape.com
315031c98b b=171217 Bustage: Cannot activate auto CRL update.
r=javi


git-svn-id: svn://10.0.0.236/trunk@131007 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:52:07 +00:00
kaie%netscape.com
25efcafc32 b=170575 View Signature certificate button is busted
r=javi


git-svn-id: svn://10.0.0.236/trunk@131006 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:50:52 +00:00
kaie%netscape.com
777db60cd9 b=172028 Regression: LDAP certificate retrieval does no longer work
r=rjc sr=darin


git-svn-id: svn://10.0.0.236/trunk@131005 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:48:28 +00:00
sspitzer%netscape.com
3fff27ccb1 fix for #172088. allow redirector type for smtp server to determine if we show hostname in password prompt. r=ducarroz, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@131003 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:39:32 +00:00
sspitzer%netscape.com
27b9e45e98 instead of NAN, use 0. build problems on win32 (and probably linux).
r=beard.


git-svn-id: svn://10.0.0.236/trunk@131002 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 18:31:17 +00:00
morse%netscape.com
1a79ada4cb backout patch for bug 155083, path test not being made when setting cookies, r=dveditz, sr=roc+moz@cs.cmu.edu
git-svn-id: svn://10.0.0.236/trunk@131001 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 17:46:07 +00:00
rogerl%netscape.com
62eb876ac2 Adding extra tag handling for long/ulong/float.
git-svn-id: svn://10.0.0.236/trunk@130998 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 16:57:46 +00:00
jfrancis%netscape.com
fd9e439291 fix for 167585: the case of the disappearing cursor.
r=cmanske; sr=kin


git-svn-id: svn://10.0.0.236/trunk@130997 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 13:52:14 +00:00
bbaetz%student.usyd.edu.au
638bb5c9f3 Bug 20122 - Bugzilla requires new login if IP changes
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@130996 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 11:57:26 +00:00
kaie%netscape.com
97de847417 b=107034 OE requires special attribute in incoming signed messages to
support dual key certificates (PSM portion)
r=relyea sr=mscott


git-svn-id: svn://10.0.0.236/trunk@130995 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 10:56:11 +00:00
kaie%netscape.com
195cb3cab3 b=160746 Update PSM's version number to 2.4
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130994 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 10:51:02 +00:00
sspitzer%netscape.com
78fcb67ada more build changes for beards new bayesian filter implementation. not part of build yet.
git-svn-id: svn://10.0.0.236/trunk@130993 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 10:18:56 +00:00
jdunn%netscape.com
e404f5593f only export __shlInit for HP if we aren't on ia64 (which doesn't have the symbol)
r=cls@seawood.org
# 171952


git-svn-id: svn://10.0.0.236/trunk@130992 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 10:10:06 +00:00
sspitzer%netscape.com
1926368170 build bayesian makefiles, but the extension is not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@130991 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 09:02:57 +00:00
sspitzer%netscape.com
780ddefd4b some changes for windows / linux. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130990 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 09:02:18 +00:00
caillon%returnzero.com
1b1b1b2365 162858 - Fix a typo which caused the e-mail icon not to be used on the WinXP start menu
Patch by Malcolm Rowe <bugzilla2@farside.demon.co.uk>
r=dveditz@netscape.com sr=roc+moz@cs.cmu.edu


git-svn-id: svn://10.0.0.236/trunk@130989 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 08:55:36 +00:00
caillon%returnzero.com
8e43539a5c IsCallerChrome() should return a PRBool like the signature says and not an nsresult.
r=cls sr=jst via IRC.  No bug.


git-svn-id: svn://10.0.0.236/trunk@130988 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 08:45:54 +00:00
sspitzer%netscape.com
af9e519c29 fix for bug #172085. override redirector type for smtp server based on hostname.
r=cavin, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130987 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 08:02:35 +00:00
sspitzer%netscape.com
2055b8877c code clean up. use contract id instead of cid. remove bogus comments.
git-svn-id: svn://10.0.0.236/trunk@130986 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:59:50 +00:00
sspitzer%netscape.com
9a0e2f8573 code cleanup. use contract id instead of cid.
git-svn-id: svn://10.0.0.236/trunk@130985 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:52:55 +00:00
sspitzer%netscape.com
17df6352f0 code cleanup. use contract id instead of cid. remove unused cid
git-svn-id: svn://10.0.0.236/trunk@130984 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:52:09 +00:00
sspitzer%netscape.com
029318d7d7 remove bogus comment.
git-svn-id: svn://10.0.0.236/trunk@130983 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:50:21 +00:00
sspitzer%netscape.com
b5826ffdf2 code cleanup. remove unused cid
git-svn-id: svn://10.0.0.236/trunk@130982 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:50:00 +00:00
sspitzer%netscape.com
5a316fd71c code clean up. remove usused static cids.
git-svn-id: svn://10.0.0.236/trunk@130981 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:47:20 +00:00
sspitzer%netscape.com
6a031e67e5 code cleanup. replace static cid with contract id.
git-svn-id: svn://10.0.0.236/trunk@130980 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:46:46 +00:00
sspitzer%netscape.com
5751f7d849 disabling history on the browser element like we do in the 3 pane. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130979 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:44:19 +00:00
sspitzer%netscape.com
40b45bef12 code cleanup, move from static cid to contract id. no bug.
git-svn-id: svn://10.0.0.236/trunk@130978 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:43:18 +00:00
sspitzer%netscape.com
8a30c86e24 ignore generated makefile.
git-svn-id: svn://10.0.0.236/trunk@130977 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:21:41 +00:00
t_mutreja%yahoo.com
7e0c34de7c Bug#169292(text indentation of <li> elements not corrent for final element)
Patch:t_mutreja@yahoo.com, r= akkana, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@130974 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:12:49 +00:00
sspitzer%netscape.com
01f675633b fix for #172084. remove "copy to folder on read" UI as it cramps the
copies and folder panel.  it will be moving.  r=cavin, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@130972 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 07:11:00 +00:00
jpierre%netscape.com
3538f29eed Fix for 164744 - fix for pk12util to export multiple certs
git-svn-id: svn://10.0.0.236/trunk@130966 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 04:32:17 +00:00
sdagley%netscape.com
7314847a33 Fix #172018 - Q&D enabling of file picker for mach-o build. r=bryner,rs=darin
git-svn-id: svn://10.0.0.236/trunk@130964 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 03:31:38 +00:00
bugreport%peshkin.net
e5cd65dc11 Bug 172045 can't see restricted bugs if cc set
r=daa,bbaetz


git-svn-id: svn://10.0.0.236/trunk@130963 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 03:06:06 +00:00
blakeross%telocity.com
dcf2677487 remove unused files.
git-svn-id: svn://10.0.0.236/trunk@130961 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 02:32:49 +00:00
blakeross%telocity.com
d77515e6ce Remove old files.
git-svn-id: svn://10.0.0.236/trunk@130960 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 02:30:36 +00:00
blakeross%telocity.com
5a48ce3885 Add history to the makefile
git-svn-id: svn://10.0.0.236/trunk@130957 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 02:24:34 +00:00
beard%netscape.com
903aab73eb Bayesian Spam Filter C++ implementation. [not part of build yet].
git-svn-id: svn://10.0.0.236/trunk@130956 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 01:58:35 +00:00
sdagley%netscape.com
fd4db9bb66 Oops, Jaguar == Mac OS X 10.2, not OS X 12.0. No bug, just brain fade. rs=sfraser
git-svn-id: svn://10.0.0.236/trunk@130954 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 01:46:37 +00:00
bryner%netscape.com
75bf7f0d90 Removing history xul from toolkit
git-svn-id: svn://10.0.0.236/trunk@130953 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 01:33:46 +00:00
blakeross%telocity.com
8e3320c397 Remove XUL...
git-svn-id: svn://10.0.0.236/trunk@130952 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 01:26:36 +00:00
hewitt%netscape.com
d270e6c470 customize toolbar fixing
git-svn-id: svn://10.0.0.236/trunk@130950 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 01:06:32 +00:00
bugreport%peshkin.net
65f04a9736 Bug 172010 voting broken on tip
Regression from 43600 and 157756
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@130948 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 00:46:22 +00:00
blakeross%telocity.com
508bf7eedb Change Show/Hide to Toolbars in the js console.
git-svn-id: svn://10.0.0.236/trunk@130947 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 00:39:54 +00:00
preed%sigkill.com
7b16d7b6b4 Fixes Gerv's tree bustage from the checkin for bug 163114; 2xr=#mozwebtools
git-svn-id: svn://10.0.0.236/trunk@130943 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-02 00:03:53 +00:00
jaggernaut%netscape.com
f9815a81b3 Bug 172012: clean up pref-navigator.*. r=bryner, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130942 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 23:49:48 +00:00
hewitt%netscape.com
fee72d7f66 fixing toolbar customization to persist changes even if you close the dialog with a keyboard command
git-svn-id: svn://10.0.0.236/trunk@130938 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 23:10:54 +00:00
bienvenu%netscape.com
4c6abbb1f9 fix OnMsgLoaded notification for 3-pane ui r=cavin, sr=sspitzer 19952
git-svn-id: svn://10.0.0.236/trunk@130937 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:58:28 +00:00
bryner%netscape.com
28ccbce6e1 Fix phoenix.exe application name in resource file. r=asasaki (delegated by cls).
git-svn-id: svn://10.0.0.236/trunk@130936 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:55:00 +00:00
blakeross%telocity.com
d0aadb952f 171994 - crash resizing using splitter btwn download panels. patch by roc, r=me sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@130935 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:53:43 +00:00
gerv%gerv.net
f5ff5cdd26 Bug 163114 - Templatise all calls to DisplayError. Patch C. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@130932 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:41:09 +00:00
blakeross%telocity.com
7d339091a7 Readding splitter.
git-svn-id: svn://10.0.0.236/trunk@130931 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:37:18 +00:00
samuel%sieb.net
e0b73c8ac2 Bug 140910 - chatzilla can't handle '+' channels
patch by naitoh@be-in.org
r=rginda


git-svn-id: svn://10.0.0.236/trunk@130930 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:28:29 +00:00
jgmyers%netscape.com
e70aebd98f use default charset for UNKNOWN-8BIT: bug 71541 r=nhotta sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@130929 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:19:17 +00:00
gerv%gerv.net
25c36053b6 Bug 170903 - Remove hard-coded titles and things. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@130928 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 22:07:17 +00:00
rods%netscape.com
56640f11ee Have the DV ref coun itself if the the DV is being Clsoed while printing or a pending print.
Bug 165445 r=dcone sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130927 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:57:15 +00:00
cmanske%netscape.com
87f5c340be Don't set focus to Composer window after publishing. b=170959, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130926 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:56:39 +00:00
cbiesinger%web.de
ec1bf6f17e bug 171170 r=paper sr=tor mCurLine should be 0 based
git-svn-id: svn://10.0.0.236/trunk@130925 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:52:30 +00:00
rods%netscape.com
46588097c3 printing tests
git-svn-id: svn://10.0.0.236/trunk@130924 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:48:17 +00:00
naving%netscape.com
2ee97eb28d 134158 r=cavin sr=bienvenu Made it so that biff settings doesn't disable downloadOnBiff
git-svn-id: svn://10.0.0.236/trunk@130923 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:45:41 +00:00
naving%netscape.com
2630ebcaf7 171965 r=cavin sr=mscott fixing threadpane not getting invalidated after changing sort order (ascending/descending) in quick search view
git-svn-id: svn://10.0.0.236/trunk@130922 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:45:40 +00:00
roc+%cs.cmu.edu
91eaac234c Bug 171802. Make sure views are initialized with the right properties! r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@130921 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:45:33 +00:00
blakeross%telocity.com
a8c5e2af65 Comment out splitter since it now crashes...
git-svn-id: svn://10.0.0.236/trunk@130920 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 21:15:39 +00:00
blakeross%telocity.com
136709905a Remove old cruft.
git-svn-id: svn://10.0.0.236/trunk@130914 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:38:17 +00:00
blakeross%telocity.com
7370655a26 history fixes.
git-svn-id: svn://10.0.0.236/trunk@130913 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:34:33 +00:00
blakeross%telocity.com
83dacacc2d add history last visited.
git-svn-id: svn://10.0.0.236/trunk@130912 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:28:41 +00:00
locka%iol.ie
385a17685e NOT PART OF BUILD. Override the event sink so the DOM specific part can be implement in the plugin not the base class
git-svn-id: svn://10.0.0.236/trunk@130911 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:28:21 +00:00
locka%iol.ie
e3c641bf57 NOT PART OF BUILD. Make event sink overridable
git-svn-id: svn://10.0.0.236/trunk@130910 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:27:15 +00:00
blakeross%telocity.com
1bfcd30a97 add history last visited.
git-svn-id: svn://10.0.0.236/trunk@130909 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 20:26:16 +00:00
mscott%netscape.com
40125d5003 Bug #171073 --> rudimentary implemenation of grouping operators for searches. Works only
for local searches. Needed by mail views.

r=naving
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130908 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 19:43:31 +00:00
rbs%maths.uq.edu.au
22f904d76a fix typo, b=40721, r=karnaze, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130907 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 19:40:28 +00:00
hewitt%netscape.com
39ba0713b3 171874 - customize toolbar window only opens once, and also fixing problems with restore default not rebuilding the palette
git-svn-id: svn://10.0.0.236/trunk@130905 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 19:31:58 +00:00
chanial%noos.fr
3b7fc57320 some more back
git-svn-id: svn://10.0.0.236/trunk@130902 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:53:43 +00:00
bienvenu%netscape.com
7a9b334368 add ability to pass results of commands back to front end code so the fe can handle errors, bug 20071 r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130900 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:45:08 +00:00
brade%netscape.com
47b4d01d71 fix some callers of editorshell's documentModified and documentEditable to use editor (bug 171798, r=cmanske, sr=alecf)
git-svn-id: svn://10.0.0.236/trunk@130899 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:43:04 +00:00
blakeross%telocity.com
e0e3bb7cdd Move bookmarks sidebar back to one click.
git-svn-id: svn://10.0.0.236/trunk@130897 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:35:26 +00:00
peterlubczynski%netscape.com
7db799be4d Moving FORCE_PR_LOG to nsPluginLogging.h, bug 170876 r=serge, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130895 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:30:56 +00:00
alecf%netscape.com
79fdf3ea10 from brendan's review:
oops, use NS_IF_ADDREF where apropriate
also be consistent about using NS_ADDREF() on the result
not part of build


git-svn-id: svn://10.0.0.236/trunk@130894 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 18:29:30 +00:00
chanial%noos.fr
e63707d222 fix sort regression in the bookmarks panel
git-svn-id: svn://10.0.0.236/trunk@130892 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 17:45:45 +00:00
alecf%netscape.com
7a97110e41 add support for a nsISimpleEnumerator implementation for nsCOMArray<T> and nsIArray, and update existing interfaces to support that:
- move nsCOMArray_base's ObjectAt/[]/Count() methods into the public so that nsCOMArrayEnumerator can get to it
- tweak NS_NewArray() to match the existing enumerator NS_New* API
- hook up NS_NewArrayEnumerator to nsArray::Enumerate
Not part of the build, for bug 162115


git-svn-id: svn://10.0.0.236/trunk@130891 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 17:34:25 +00:00
seawood%netscape.com
454204cd9e Set default optimization level to -xO4 for Solaris/Forte builds.
Thanks to Roland Mainz <Roland.Mainz@informatik.med.uni-giessen.de> for the patch.
Bug #109860 r=cls


git-svn-id: svn://10.0.0.236/trunk@130890 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 17:03:24 +00:00
aaronl%netscape.com
1689294307 Bug 171933. Text missing from buttons in common dialogs. r=timeless, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130889 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 16:56:29 +00:00
jdunn%netscape.com
dc95a608fa add support for hpux 11.20/ia64, which doesn't have separate freebl libs
so we shouldn't export them
r=cls@seawood.org
# 145053


git-svn-id: svn://10.0.0.236/trunk@130885 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 14:42:41 +00:00
ian.mcgreer%sun.com
afc9d90049 bug 171224, changes to path construction
r=nelsonb


git-svn-id: svn://10.0.0.236/trunk@130884 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 14:32:15 +00:00
rods%netscape.com
ea176b505c no longer cache the scrollbar width that is used to also calculate the btn width.
Bug 167032 r=jkeiser sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130883 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 14:24:15 +00:00
chanial%noos.fr
e4977d3c8d fixing add new folder
git-svn-id: svn://10.0.0.236/trunk@130882 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 13:29:48 +00:00
brade%netscape.com
000c6d3ebc remove unused files (bug 171715, r=cmanske, sr=scc)
git-svn-id: svn://10.0.0.236/trunk@130881 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 13:20:55 +00:00
seawood%netscape.com
c417e45ea8 Export mozilla-config.h from config/ as the export phase is not always run on the toplevel Makefile.in.
git-svn-id: svn://10.0.0.236/trunk@130879 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 07:53:25 +00:00
kerz%netscape.com
547080920b Adding groupmark icon for menus, not working for the manager yet. bug 161822.
git-svn-id: svn://10.0.0.236/trunk@130878 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 07:17:24 +00:00
sdagley%netscape.com
7802cf769e Re-landing #169667 - use LaunchServices APIs instead of InternetConfig APIs when appropriate (fixed mach-o and Mac Classic build issues from 1st landing try). r=ccarlen,sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130877 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 05:27:15 +00:00
aaronl%netscape.com
dc9171c398 Bug 134066. Make nsIPromptService support accesskey, via & before accesskey character. Also fixes bug 133582 - don't put initial focus on 'Don't ask me again' checkboxes in confirm dialogs. r=sgehani, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@130876 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 05:13:37 +00:00
kerz%netscape.com
34fbeae1dc adding buttons, thanks to Darren Salt for finishing them up for me
git-svn-id: svn://10.0.0.236/trunk@130875 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 04:52:10 +00:00
darin%netscape.com
b8aad0f494 make chrome debug registration messages more readable r/sr=mozbot
git-svn-id: svn://10.0.0.236/trunk@130874 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 04:43:57 +00:00
dean_tessman%hotmail.com
cc7de0cf9d bug 143130 - ALT or F10 keys do not select menu items in MfcEmbed
If there's a native Windows menu bar, pass the keypress through to Windows.

r=aaronl@netscape.com, sr=alecf@netscape.com


git-svn-id: svn://10.0.0.236/trunk@130873 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 04:38:28 +00:00
timeless%mac.com
7e323a21bd Bug 171328 Build warning caused by checkin for bug 168961
patch by walk84@yahoo.com r=Roland.Mainz@informatik.med.uni-giessen.de sr=jag


git-svn-id: svn://10.0.0.236/trunk@130872 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 03:42:07 +00:00
kmcclusk%netscape.com
3db5f70791 improve user interactivity during long page loads by doing better detection of user-input and interrupting the parser more frequently. Also moved the WIN32 specific logic for determining when the user is moving a top-level window from plevent.c to the widget module. b=165039 r=rods@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130871 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 03:04:22 +00:00
shanjian%netscape.com
2379791d20 #36975 Moving caret in convert mode using mouse
Mouse event support for IME is added in this patch.
r=yokoyama, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@130870 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 02:47:41 +00:00
blakeross%telocity.com
2fcb4969d5 Turn on ctrl+mousewheel to resize text.
git-svn-id: svn://10.0.0.236/trunk@130869 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:41:31 +00:00
sdagley%netscape.com
b4f2651166 With the landing of #152231 for mach-o the InternetConfigService is now part of uriloader for Mac trunk builds and these files in appshell are obsolete
git-svn-id: svn://10.0.0.236/trunk@130868 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:40:38 +00:00
blakeross%telocity.com
be8cb2a95c Remove category header from prefs.
git-svn-id: svn://10.0.0.236/trunk@130867 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:31:18 +00:00
bryner%netscape.com
c9d184c89b For mousewheel text resizing, ignore HTML form controls and XUL content, to avoid triggering resizing in cases where the user is both ctrl+clicking and scrolling (bug 65355). r=hewitt, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@130866 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:28:51 +00:00
bryner%netscape.com
7c046215fe Don't crash if the focus controller is null during a deactivate (bug 168454). r=hewitt, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130865 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:25:00 +00:00
roc+%cs.cmu.edu
ace40a9fff Bug 145212. Fix overflow:auto on auto-height elements. r=hyatt,sr=kin
git-svn-id: svn://10.0.0.236/trunk@130864 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:23:47 +00:00
mscott%netscape.com
c16f65d556 Bug #168367 --> support the notion of a default search view
r=naving
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130863 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:13:51 +00:00
mscott%netscape.com
04515562d8 Bug #168367 --> quick search API tweaks to make them more generic and compatible with mail views.
r=naving
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130862 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:07:29 +00:00
sdagley%netscape.com
84ff5d7a5a Landing #152231 on trunk mach-o build - move nsInternetConfig into uriloader. Original patch by ccarlen, r=sdagley, sr=darin
git-svn-id: svn://10.0.0.236/trunk@130861 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 01:00:09 +00:00
bryner%netscape.com
6a2f4115dd Don't build the modern theme for Phoenix. r=pinkerton, sr=blake
git-svn-id: svn://10.0.0.236/trunk@130860 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:56:13 +00:00
relyea%netscape.com
2e87be2046 Bug 16296: fix race in sdr code.
git-svn-id: svn://10.0.0.236/trunk@130859 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:46:20 +00:00
edburns%acm.org
ca91238f57 Make Webclient compile and run on GNU/Linux with Mozilla 1.0.1.
Continue migration to ant.

Start out some JUnit tests.


git-svn-id: svn://10.0.0.236/trunk@130858 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:39:31 +00:00
alecf%netscape.com
82affdbd0d - fix ReplaceObjectAt to properly account for existing null entries
- make nsCOMArray_base accessible from nsCOMArray<T> so that a nsCOMArray<T> can passed to NS_NewArray
for bug 162115, not part of build


git-svn-id: svn://10.0.0.236/trunk@130857 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:37:41 +00:00
blakeross%telocity.com
61fdf84254 didnt mean for this to go in.
git-svn-id: svn://10.0.0.236/trunk@130856 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:31:49 +00:00
blakeross%telocity.com
f90e4d1621 Add keyboard shortcuts for sidebar panels; use dbl not single clicks.
git-svn-id: svn://10.0.0.236/trunk@130855 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:30:47 +00:00
alecf%netscape.com
3585a739fd add lots of docs for bug 162115, not part of build
git-svn-id: svn://10.0.0.236/trunk@130854 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:26:00 +00:00
naving%netscape.com
ca231ba12a 171711 r=cavin sr=bienvenu fixing regression delete in standalone mode works only once.
git-svn-id: svn://10.0.0.236/trunk@130853 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:25:49 +00:00
leaf%mozilla.org
a9ab7eacf2 Automated update
git-svn-id: svn://10.0.0.236/trunk@130852 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:24:51 +00:00
relyea%netscape.com
8b52f12d51 Fix SDR race condition with a coarse lock. Does not address multiaccess DB
races. Bug 169296.


git-svn-id: svn://10.0.0.236/trunk@130851 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:23:46 +00:00
bryner%netscape.com
1c65aed91b Add a configure option to disable building composer (bug 170136). Move handling of the -composer command-line option from libeditor/base/ to composer/src/. Remove unused nsIEditorService interface. r=seawood, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@130850 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:16:51 +00:00
bugreport%peshkin.net
2809005803 Bug 171639 dupes not marked in original bug
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@130849 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:13:58 +00:00
caillon%returnzero.com
4705b76733 171785. Using new CSS_PROP_NOTIMPLEMENTED macro. This should have gone in with the patch to bug 117500 but somehow was left out.
r=dbaron sr=kin/jst


git-svn-id: svn://10.0.0.236/trunk@130848 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:13:55 +00:00
darin%netscape.com
4dcd43bb0b fixes bug 168988 "HTTP should reject URLs that lack a hostname."
r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130847 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-01 00:07:07 +00:00
kerz%netscape.com
535c294eb6 cleaning up bookmarks file, no one cares when asa added these bookmarks or looked at them last :)
git-svn-id: svn://10.0.0.236/trunk@130846 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:58:57 +00:00
aaronl%netscape.com
bca5006409 Bug 166712. Fixing typaheadfind packaging, some things were still incorrect. r=ssu, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130845 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:48:15 +00:00
hyatt%netscape.com
3d82872137 Updating extensions.
git-svn-id: svn://10.0.0.236/trunk@130844 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:46:13 +00:00
blakeross%telocity.com
9719b3d787 Fix js warning.
git-svn-id: svn://10.0.0.236/trunk@130843 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:23:35 +00:00
bienvenu%netscape.com
5b265872a2 fix bug 20071, add ability to pass results of custom commands back to front end code so the fe can handle errors, r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130842 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:23:16 +00:00
dougt%netscape.com
5b28814356 Move documentURI to a new interface. b=157133. r=rpotts@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130841 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:18:43 +00:00
blakeross%telocity.com
31397579e1 Fixes.
git-svn-id: svn://10.0.0.236/trunk@130840 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:14:58 +00:00
alecf%netscape.com
fdfa35a2b7 not part of build, more for bug 162115:
- fix some spelling, add documentation
- add NS_NewArray(), including one that takes an existing nsCOMArray<T>
- implement copy constructor for nsCOMArray_base, so that NS_NewArray can work
not part of build


git-svn-id: svn://10.0.0.236/trunk@130839 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:02:31 +00:00
blakeross%telocity.com
9d75eeeec0 Some fixes.
git-svn-id: svn://10.0.0.236/trunk@130838 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:01:26 +00:00
mscott%netscape.com
3f43ca84e0 Bug #171236--> Add boolean text before each search term
r=ssu
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130837 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 23:00:04 +00:00
sspitzer%netscape.com
fb21e2932e adding some commented out menuitems for beard.
git-svn-id: svn://10.0.0.236/trunk@130836 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:56:37 +00:00
sspitzer%netscape.com
8b0d0c4cc9 moving code around from the bayesian extension to core.
not accessible yet, and mostly temporary.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130835 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:42:56 +00:00
locka%iol.ie
f0f37a3854 Fixup host:port urls that have no spec and cleanup some string calling convention mess. b=155344 r=andreas.otte@debitel.net sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130834 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:38:31 +00:00
rogerl%netscape.com
33ad4ebc8f Implemented (untested) delete support. GC tweaks to engine.
git-svn-id: svn://10.0.0.236/trunk@130833 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:36:27 +00:00
varada%netscape.com
ad92ad5794 fix for #42955;should explain why accountwizard is being opened;r=jglick;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130832 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:28:58 +00:00
leaf%mozilla.org
f10999ba4b Automated update
git-svn-id: svn://10.0.0.236/trunk@130829 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:24:44 +00:00
blakeross%telocity.com
a826e27a67 backing something out.
git-svn-id: svn://10.0.0.236/trunk@130828 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:24:09 +00:00
pkw%us.ibm.com
6f61e587ea Fix Bug 98892 - Null plugin crash on AIX with Java plugin installed.
Link with -lXm before -lXt on AIX, use $XT_LIBS instead of hardcoding
-lXt in Makefiles.
r=cls


git-svn-id: svn://10.0.0.236/trunk@130827 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:18:27 +00:00
sspitzer%netscape.com
f30d3ac63d adding consts to the nsIMsgFilterPlugin interface, and using it.
removing UI added to extension, since there is core UI For this already (but off by default).
part of bug #169638.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130826 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:13:01 +00:00
locka%iol.ie
9397a30f07 NOT PART OF BUILD. Implement the site service provider and event sinks plus lots of cleanup
git-svn-id: svn://10.0.0.236/trunk@130825 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:11:28 +00:00
sspitzer%netscape.com
c7bbba1bf7 define some default prefs for some of the imap extensions. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130824 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:10:01 +00:00
asa%mozilla.org
228e9514d5 new bookmarks defaults
git-svn-id: svn://10.0.0.236/trunk@130823 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:02:38 +00:00
alecf%netscape.com
2c0c64385c match up some reviewers comments:
- tri-license with MPL, not NPL
- be consistent with policy on null in the array (it is allowed)
- move Clear() into implementation file, and hide static callback there too
- make sure to AddRef() on the way out of nsArray::IndexOf()
- handle failure of ReplaceElementAt more gracefully
bug 162115, not part of build yet


git-svn-id: svn://10.0.0.236/trunk@130822 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:01:46 +00:00
varada%netscape.com
16fa7b9899 fix for 154481;Account Settings panel should have account name in title;r=srilatha;sr=mscott
git-svn-id: svn://10.0.0.236/trunk@130821 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 22:01:23 +00:00
locka%iol.ie
a2847aa6ef Disable debug reference counting. b=154814 r=chak sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130820 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:58:44 +00:00
locka%iol.ie
6e21482838 Make backslash to forward slash fixup smarter. b=127831 r=andreas.otte@debitel.net sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130819 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:55:36 +00:00
dougt%netscape.com
615a7db0fe Fixes two FTP bugs 148881 cancelling ftp download before save file dialog is present and 169214 Viewing an HTML page with a missing CSS file via FTP crash. r=rpotts@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130818 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:50:18 +00:00
dougt%netscape.com
0688b00425 Fixes typo. patch by tenthumbs@cybernex.net, r=dougt, b=168584
git-svn-id: svn://10.0.0.236/trunk@130817 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:49:48 +00:00
dougt%netscape.com
1c807dfa8d Fixes assertion logic/build warnings. patch by tenthumbs@cybernex.net, b=171399
git-svn-id: svn://10.0.0.236/trunk@130816 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:49:35 +00:00
brade%netscape.com
197145dd2d removal of files that are no longer part of Composer (bug 171715, r=cmanske, sr=scc)
git-svn-id: svn://10.0.0.236/trunk@130815 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:47:59 +00:00
ian.mcgreer%sun.com
599c379a2b bug 166793, uninitialized variables
r=wtc


git-svn-id: svn://10.0.0.236/trunk@130814 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:15:07 +00:00
blakeross%telocity.com
e586da5978 Release observer service on shutdown.
git-svn-id: svn://10.0.0.236/trunk@130813 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:02:28 +00:00
wtc%netscape.com
52a3c67b06 Bug 154689: removed the "with Shared Database" string. NSS is always built
that way now.


git-svn-id: svn://10.0.0.236/trunk@130812 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 21:00:43 +00:00
blakeross%telocity.com
a93a801bed Get rid of separate history window, make Ctrl+H open the history sidebar.
git-svn-id: svn://10.0.0.236/trunk@130810 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:52:26 +00:00
wtc%netscape.com
cbc1167df3 Bug 127740: added a comment to explain the thread yield in
ssl3_SendApplicationData.


git-svn-id: svn://10.0.0.236/trunk@130809 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:51:05 +00:00
wtc%netscape.com
45321d5b82 Use the enumeration constant 'siBuffer' instead of 0.
git-svn-id: svn://10.0.0.236/trunk@130808 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:36:54 +00:00
wtc%netscape.com
886a419672 Bug 171422: removed unused (and incorrect) code. r=mcgreer.
git-svn-id: svn://10.0.0.236/trunk@130807 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:33:44 +00:00
wtc%netscape.com
423017db16 Bug 166772: 'cinfo' needs to be initialized to NULL. Fixed an indentation
problem.


git-svn-id: svn://10.0.0.236/trunk@130806 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:31:55 +00:00
despotdaemon%netscape.com
86611836dc Pseudo-automatic update of changes made by pkw@us.ibm.com.
git-svn-id: svn://10.0.0.236/trunk@130805 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:27:53 +00:00
despotdaemon%netscape.com
f5c5dab005 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@130804 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:23:23 +00:00
blakeross%telocity.com
5f231211b3 Fix some customize bugs.
git-svn-id: svn://10.0.0.236/trunk@130802 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 20:13:49 +00:00
blakeross%telocity.com
c261728d75 Fix a few tiny customize bugs.
git-svn-id: svn://10.0.0.236/trunk@130801 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 19:57:54 +00:00
chanial%noos.fr
3bc4358a78 fixing keyboard navigation pb in the bookmark panel and exposing the description field by default
git-svn-id: svn://10.0.0.236/trunk@130800 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 18:19:40 +00:00
sspitzer%netscape.com
75144e1aed fix blocker bug #171714. varada forgot the jar.mn change for his landing.
git-svn-id: svn://10.0.0.236/trunk@130799 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 16:11:43 +00:00
dbaron%fas.harvard.edu
6bf02d19fa Properly ignore the 'float' property for generated content. Rename NS_STYLE_POSITION_NORMAL to NS_STYLE_POSITION_STATIC. Patch from Mats Palmgren <mats.palmgren@bredband.net>. r=dbaron sr=bzbarsky b=93227
git-svn-id: svn://10.0.0.236/trunk@130798 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 14:46:56 +00:00
dbaron%fas.harvard.edu
0aaa1704e7 Porting fixes for gcc trunk (to become 3.3): Eliminate C-only option from CXXFLAGS. Don't use pasting for things that are still separate tokens. Don't pass objects of non-POD type through |...|. Don't include strstream.h, which isn't used anymore anyway. b=170250 r=bbaetz sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130797 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 14:18:27 +00:00
brade%netscape.com
ea9ef5da9e bug 121648; remove unused portions of editorshell; r=glazou, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130796 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 13:51:58 +00:00
brade%netscape.com
beaa201891 bug 121648; remove unused portions of editorshell (r=glazou, sr=kin)
git-svn-id: svn://10.0.0.236/trunk@130795 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 13:51:35 +00:00
locka%iol.ie
75fee73c70 NOT PART OF BUILD. Event Sink dumps some info about the event the control has fired
git-svn-id: svn://10.0.0.236/trunk@130794 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 13:49:22 +00:00
roc+%cs.cmu.edu
897f622cd0 Fixing bustage, checked in a bit of another patch, sorry. sr=me
git-svn-id: svn://10.0.0.236/trunk@130793 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 12:41:11 +00:00
roc+%cs.cmu.edu
e25496d35f Bug 113083. Concentrate view setup code into a few shared functions in nsContainerFrame. Only change style-dependent view properties after style change, not during reflow, in response to nsChangeHint_SyncFrameView. Change 'clip' to only do SyncFrameView, not reflow. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@130792 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 11:56:37 +00:00
jkeiser%netscape.com
f2d14853a0 Back out bug 167236 due to regressions 171214 and 171465
git-svn-id: svn://10.0.0.236/trunk@130791 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 10:22:06 +00:00
rogerl%netscape.com
e38cb5ddb4 Added logicalAssignOp, more gc fixes.
git-svn-id: svn://10.0.0.236/trunk@130790 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 08:16:37 +00:00
gerv%gerv.net
1ecd0b7779 Bug 164038 - token.cgi: Cancel token messages should be moved into the templates. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@130789 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 07:22:44 +00:00
blakeross%telocity.com
c11fcb8469 More logical grouping of context menu items.
git-svn-id: svn://10.0.0.236/trunk@130788 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 05:27:49 +00:00
blakeross%telocity.com
b39a5d277c Only open on double /left/ clicks.
git-svn-id: svn://10.0.0.236/trunk@130787 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 05:26:23 +00:00
blakeross%telocity.com
01604dda61 Polishing.
git-svn-id: svn://10.0.0.236/trunk@130786 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 05:12:38 +00:00
blakeross%telocity.com
332b0ac13b Move tree css where it belongs; put quicksearch in history panel.
git-svn-id: svn://10.0.0.236/trunk@130785 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 05:09:15 +00:00
blakeross%telocity.com
881a345c6a Tweaks.
git-svn-id: svn://10.0.0.236/trunk@130784 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:49:10 +00:00
blakeross%telocity.com
8d654c3c5f Revised download UI.
git-svn-id: svn://10.0.0.236/trunk@130783 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:44:52 +00:00
blakeross%telocity.com
a45c6ef19a Bookmarks tweaks.
git-svn-id: svn://10.0.0.236/trunk@130782 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:25:25 +00:00
blakeross%telocity.com
5b21046366 More bookmarks tweaks.
git-svn-id: svn://10.0.0.236/trunk@130781 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:23:19 +00:00
blakeross%telocity.com
4f8492b027 A little polish
git-svn-id: svn://10.0.0.236/trunk@130780 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:15:50 +00:00
blakeross%telocity.com
1091acbc5b Be consistent with use of colon.
git-svn-id: svn://10.0.0.236/trunk@130779 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:07:45 +00:00
blakeross%telocity.com
fff8222326 Add sidebar close button.
git-svn-id: svn://10.0.0.236/trunk@130778 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:04:48 +00:00
blakeross%telocity.com
912621d385 Add sidebar close button.
git-svn-id: svn://10.0.0.236/trunk@130777 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 04:03:00 +00:00
blakeross%telocity.com
0d799e9292 Revised download UI.
git-svn-id: svn://10.0.0.236/trunk@130775 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 03:46:07 +00:00
blakeross%telocity.com
35f08349d6 Revised download UI.
git-svn-id: svn://10.0.0.236/trunk@130774 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 03:23:09 +00:00
blakeross%telocity.com
ff629c1add Revised download UI.
git-svn-id: svn://10.0.0.236/trunk@130773 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 03:22:13 +00:00
kyle.yuan%sun.com
35f293b863 Fix the bustage caused by my previous check in.
git-svn-id: svn://10.0.0.236/trunk@130772 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 02:04:50 +00:00
blakeross%telocity.com
ed584486d6 Actually, make them checkboxes.
git-svn-id: svn://10.0.0.236/trunk@130771 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 02:00:12 +00:00
blakeross%telocity.com
d30f426a5f Add View -> Sidebars.
git-svn-id: svn://10.0.0.236/trunk@130770 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:58:19 +00:00
kyle.yuan%sun.com
861ec6b9c4 Bug 163834 Use correct Accessible object to fire event when text-caret moved and text-selection changed
r=aaronl, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@130769 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:51:48 +00:00
varada%netscape.com
023a9d44d2 fix for 164678;169366;-should be able to set outgoing smtp server in smtp panel;not add empty smtp servers in advanced panels;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130768 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:50:39 +00:00
varada%netscape.com
e2c7e0ab32 fix for 169255;Menu Change to PlainText format hides toolbar in subsequent windows;r=srilatha;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130767 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:26:25 +00:00
varada%netscape.com
fc09886c38 fix for 117924 - strip dupes in mail.smtpservers;r=srilatha;sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130766 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:20:45 +00:00
chanial%noos.fr
dc4b01b21f Bookmark Panel landing + its own Quick Search
Workaround for the hang using QS (bug 167167)
Conflicting accesskey for QS (bug 171545)
Focus the content after loading bm from the panel (bug 171584)
key enter not working in the manager/panel (bug 171610)
and other bugs/tweaks not reported


git-svn-id: svn://10.0.0.236/trunk@130765 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 01:06:30 +00:00
blakeross%telocity.com
413b2e671d Fix bg of sidebar header in luna.
git-svn-id: svn://10.0.0.236/trunk@130764 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 00:28:18 +00:00
blakeross%telocity.com
c7c84c360e Fix history img
git-svn-id: svn://10.0.0.236/trunk@130763 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 00:16:03 +00:00
bbaetz%student.usyd.edu.au
7cd96b010d Bug 169819 - remove 'this is bugzilla...' text from footer
r=justdave x2


git-svn-id: svn://10.0.0.236/trunk@130762 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 00:12:37 +00:00
lordpixel%mac.com
8c6dfab219 Part of a fix for bug 90823 that should have gone in earlier but was missed.
r=timeless, sr=blake


git-svn-id: svn://10.0.0.236/trunk@130761 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 00:11:05 +00:00
lordpixel%mac.com
4087d85564 Part of fix for bug 90823 that previously was missed.
r=timeless, sr=blake


git-svn-id: svn://10.0.0.236/trunk@130760 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-30 00:10:19 +00:00
blakeross%telocity.com
5f35de34ae Turn off error page for now.
git-svn-id: svn://10.0.0.236/trunk@130759 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 23:49:56 +00:00
blakeross%telocity.com
8daf826c15 Make the click behavior in the search bar the same as in the urlbar.
git-svn-id: svn://10.0.0.236/trunk@130758 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 23:18:47 +00:00
justdave%syndicomm.com
84b2fc8ddb Fix for bug 1700073: checksetup.pl (indirectly via Bugzilla::Config.pm) had a dependency on File::Temp, which caused it to
crash before the version checks were even done to warn the admin that it wasn't present.  This patch reorders the loading
sequence in checksetup.pl so that the version checks are done before the Config module is loaded.
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@130757 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 23:01:11 +00:00
blakeross%telocity.com
6d767160b9 No ellipsis after Find in this Page
git-svn-id: svn://10.0.0.236/trunk@130756 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:57:31 +00:00
kerz%netscape.com
d7b2d7c302 New small throbber
git-svn-id: svn://10.0.0.236/trunk@130755 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:50:25 +00:00
blakeross%telocity.com
61bc11cc12 Fix icon mode / iconsize.
git-svn-id: svn://10.0.0.236/trunk@130754 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:31:50 +00:00
hewitt%netscape.com
b4d5d93d43 putting back autocomplete on homepage pref textbox and open location window
git-svn-id: svn://10.0.0.236/trunk@130753 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:28:34 +00:00
hewitt%netscape.com
42633fba6a trimming the sherlock plugins built for phoenix, rs=blake/hyatt
git-svn-id: svn://10.0.0.236/trunk@130752 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:22:56 +00:00
hewitt%netscape.com
42906a1aca removing annoying assertions that bug us when positioning popups from script, rs=hyatt
git-svn-id: svn://10.0.0.236/trunk@130751 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:21:41 +00:00
hyatt%netscape.com
882e37a631 Tweaks to prefs. JUst some shuffling. r/sr=hewitt,blake
git-svn-id: svn://10.0.0.236/trunk@130750 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:08:46 +00:00
hyatt%netscape.com
82d3086d54 Extensions work.
git-svn-id: svn://10.0.0.236/trunk@130749 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:08:02 +00:00
blakeross%telocity.com
c0dbed1763 Adding off-by-default new tab and window.
git-svn-id: svn://10.0.0.236/trunk@130748 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 22:02:37 +00:00
hewitt%netscape.com
74daba8940 more search goodies, now using all installed sherlock plugins
git-svn-id: svn://10.0.0.236/trunk@130747 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:54:14 +00:00
hewitt%netscape.com
84fc6a4738 make autocomplete dropmarker depress on non-nsIThemed systems
git-svn-id: svn://10.0.0.236/trunk@130746 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:50:54 +00:00
kerz%netscape.com
ba8249af4a base images
git-svn-id: svn://10.0.0.236/trunk@130745 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:49:47 +00:00
hewitt%netscape.com
8da82c0451 more search goodies, now using all installed sherlock plugins
git-svn-id: svn://10.0.0.236/trunk@130744 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:45:09 +00:00
blakeross%telocity.com
b2102ea6d2 Use small icons by default.
git-svn-id: svn://10.0.0.236/trunk@130743 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:34:21 +00:00
blakeross%telocity.com
84ee5ebcce Update case in parsetype attribute.
git-svn-id: svn://10.0.0.236/trunk@130742 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:08:29 +00:00
blakeross%telocity.com
ba5da0afe3 171460 - add parsetype attribute. r=hyatt sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130741 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 21:08:27 +00:00
blakeross%telocity.com
707a9e91b5 change defaultset.
git-svn-id: svn://10.0.0.236/trunk@130740 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 20:42:38 +00:00
hewitt%netscape.com
d786f10450 adding ctrl-; keyboard shortcut to focus search bar
git-svn-id: svn://10.0.0.236/trunk@130739 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 20:30:20 +00:00
hewitt%netscape.com
2263139a3f 171581 - toolbar search/find in page for phoenix
git-svn-id: svn://10.0.0.236/trunk@130738 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 20:18:32 +00:00
myk%mozilla.org
e46967d5d3 Fix for bug 171506: Fixes bustage in sanitycheck.cgi by making it check for correct product IDs in the flaginclusions and flagexclusions
tables instead of the flagtypes table, which no longer has a product_id field.
r=joel


git-svn-id: svn://10.0.0.236/trunk@130737 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 20:14:13 +00:00
hewitt%netscape.com
5ba7bd1ade 171581 - toolbar search/find in page for phoenix
git-svn-id: svn://10.0.0.236/trunk@130736 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 20:06:57 +00:00
blakeross%telocity.com
14263e470c Adding files I forgot.
git-svn-id: svn://10.0.0.236/trunk@130735 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 19:41:28 +00:00
chanial%noos.fr
3bd688ab99 let's not forget the .cvsignore files
git-svn-id: svn://10.0.0.236/trunk@130734 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 19:31:06 +00:00
blakeross%telocity.com
4a15b1a2bc Didn't mean for this to go in.
git-svn-id: svn://10.0.0.236/trunk@130733 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 18:26:10 +00:00
blakeross%telocity.com
22eacd5eba Polish tweaks.
git-svn-id: svn://10.0.0.236/trunk@130732 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 18:25:42 +00:00
chanial%noos.fr
cc42b74962 Turning on the Phoenix default profile
git-svn-id: svn://10.0.0.236/trunk@130731 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 18:16:54 +00:00
chanial%noos.fr
61cac76b50 Forking the default profile and moving all.js in it
git-svn-id: svn://10.0.0.236/trunk@130730 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 18:11:09 +00:00
brendan%mozilla.org
48b0666835 Dougt didn't fix that tab nit... just for that, I'm stripping trailing spaces too\!
git-svn-id: svn://10.0.0.236/trunk@130729 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 17:46:18 +00:00
blakeross%telocity.com
474f957069 Make enter work in find dlg.
git-svn-id: svn://10.0.0.236/trunk@130728 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 16:57:11 +00:00
dougt%netscape.com
f2cda97b48 Fixes topcrash 171333 crash at startup in nsFileChannel if chrome modified [@ nsFileChannel::GetFile] r=danm@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@130727 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 16:50:08 +00:00
chanial%noos.fr
94025b2c40 do/undo/redo import bookmark (bug 168416)
also fix for bug 168727, bug 170152 and bug 171451


git-svn-id: svn://10.0.0.236/trunk@130726 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 16:19:47 +00:00
myk%mozilla.org
a1f46dbb39 Fix for bug 171420: fixes usage of $template, $vars, and &Param in Flag.pm.
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@130725 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 16:04:24 +00:00
blakeross%telocity.com
12b09774ba Adding the other image files.
git-svn-id: svn://10.0.0.236/trunk@130724 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 15:55:54 +00:00
blakeross%telocity.com
d9b038b18b Remove printf.
git-svn-id: svn://10.0.0.236/trunk@130723 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 15:18:47 +00:00
blakeross%telocity.com
a09f25903c Fix typo.
git-svn-id: svn://10.0.0.236/trunk@130722 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 15:11:28 +00:00
mkaply%us.ibm.com
0c75504751 #171180
Os/2 only - fix regression in window positioning


git-svn-id: svn://10.0.0.236/trunk@130721 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 13:17:09 +00:00
morse%netscape.com
db79c1f924 bug 170237, cookie-accept dialog doesn't indicate session cookies, c=mvl@shop-engine.nl, r=morse, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130720 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 13:16:53 +00:00
kerz%netscape.com
a800b3e18e stupid stupid stupid
git-svn-id: svn://10.0.0.236/trunk@130719 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 09:23:07 +00:00
kerz%netscape.com
e14af56f0a stupid -kb crap.
git-svn-id: svn://10.0.0.236/trunk@130718 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 09:22:05 +00:00
kerz%netscape.com
367b4614c8 adding images for sidebar panel buttons
git-svn-id: svn://10.0.0.236/trunk@130717 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 09:11:28 +00:00
bryner%netscape.com
a70f2410f0 Patch from mkaply for building Phoenix on OS/2 (bug 171037).
git-svn-id: svn://10.0.0.236/trunk@130716 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 06:51:54 +00:00
bryner%netscape.com
2de054278a Fix bug 171459 (incorrect positioning of toolbar customization dialog on linux) by working around bug 171482 and using moveTo instead of setting screenX and screenY.
git-svn-id: svn://10.0.0.236/trunk@130715 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 05:37:48 +00:00
matty%chariot.net.au
5dbfa75acf Release notes.
git-svn-id: svn://10.0.0.236/trunk@130712 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 05:25:36 +00:00
bolian.yin%sun.com
a9f2386c24 Bug159306,How to activate accessibility feature on linux and other unix platform
r=blizzard. This is NOT for default build


git-svn-id: svn://10.0.0.236/trunk@130711 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 04:51:21 +00:00
timeless%mac.com
5f0487a016 Bug 170430 trunk topcrash [@ nsMsgIdentity::ClearAllValues]
r=blizzard, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@130710 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 04:21:28 +00:00
bugreport%peshkin.net
62bcfce3eb Bug 171322 process_bug.cgi makes reference to non-existant product variable
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@130709 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 04:01:54 +00:00
av%netscape.com
cd7a369a91 Bug 166417 -- Plugin SDK does not build, not part of the build process
git-svn-id: svn://10.0.0.236/trunk@130708 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 03:10:54 +00:00
jkeiser%netscape.com
8697a6f032 Make buttons line up correctly with textboxes again (bzbarsky's patch, bug 171214), r=jkeiser@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@130707 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 02:55:24 +00:00
av%netscape.com
92694300d0 Bug 166417 -- Plugin SDK does not build, not part of the build process
git-svn-id: svn://10.0.0.236/trunk@130706 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 02:45:06 +00:00
av%netscape.com
848c87d4f2 Adding some makefiles from the plugin SDK, those files are not participating in the build
git-svn-id: svn://10.0.0.236/trunk@130705 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 02:33:16 +00:00
blakeross%telocity.com
16058f9985 Fix alignment on linux.
git-svn-id: svn://10.0.0.236/trunk@130704 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 02:32:45 +00:00
blakeross%telocity.com
5adc603206 Don't stretch progressmeter.
git-svn-id: svn://10.0.0.236/trunk@130703 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 02:30:52 +00:00
blakeross%telocity.com
cd75216309 Fixing small bug.
git-svn-id: svn://10.0.0.236/trunk@130702 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 01:56:30 +00:00
kyle.yuan%sun.com
d743efbefd Bug 161449 Non-ASCII shortcuts for select elements in html forms
r=aaronl, sr=alecf
fix nsCRT::ToLower/ToUpper bugs and use |ToLowerCase()| instead of |nsCRT::ToLower()| in nsListControlFrame


git-svn-id: svn://10.0.0.236/trunk@130701 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 01:42:07 +00:00
blakeross%telocity.com
1c6adcb30b Readd connection panel, add tabbed browsing panel.
git-svn-id: svn://10.0.0.236/trunk@130700 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 01:28:11 +00:00
hewitt%netscape.com
0019593a5b fix a bunch of phoenix toolbar customization bugs, 171402, 171397, 171122
git-svn-id: svn://10.0.0.236/trunk@130699 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 01:23:02 +00:00
blakeross%telocity.com
e1367643f6 more
git-svn-id: svn://10.0.0.236/trunk@130698 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 00:57:31 +00:00
blakeross%telocity.com
d8be568136 Fix timer problem.
git-svn-id: svn://10.0.0.236/trunk@130697 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-29 00:13:27 +00:00
blakeross%telocity.com
90d1564acd Try to fix timer problem.
git-svn-id: svn://10.0.0.236/trunk@130694 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 23:49:12 +00:00
blizzard%redhat.com
f47357ebf5 Fix gtk2 build. No bug. r/sr=shaver,tor
git-svn-id: svn://10.0.0.236/trunk@130693 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 23:46:44 +00:00
blakeross%telocity.com
54effea415 Landing new download UI.
git-svn-id: svn://10.0.0.236/trunk@130692 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 22:55:58 +00:00
bugreport%peshkin.net
050fe637e1 Bug 171440 editgroups shows system groups as usable for bugs even though they are not
2xr=justdave


git-svn-id: svn://10.0.0.236/trunk@130691 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 22:54:44 +00:00
hewitt%netscape.com
e919bba149 more phoenix build forking goo, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@130690 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 22:12:24 +00:00
depstein%netscape.com
f909bc6a35 Added nsIProtocolHandler->NewURI() test to the Tests menu.
a=asa for checkins not part of the default build.


git-svn-id: svn://10.0.0.236/trunk@130689 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 22:09:28 +00:00
av%netscape.com
5bb07d1ca4 Bug 166417 -- Plugin SDK does not build, not part of the build process
git-svn-id: svn://10.0.0.236/trunk@130688 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:57:50 +00:00
hewitt%netscape.com
177ff8cc27 moving phoenix history from browser to toolkit to fix bustage, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@130687 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:54:00 +00:00
hewitt%netscape.com
349fcd92ec moving the phoenix history from browser to toolkit
git-svn-id: svn://10.0.0.236/trunk@130686 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:46:52 +00:00
gerv%gerv.net
8f18026494 Bug 163114 - Templatise all calls to DisplayError. Patch B. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@130685 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:44:27 +00:00
bryner%netscape.com
7e9574a81d Fixing typo
git-svn-id: svn://10.0.0.236/trunk@130684 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:35:43 +00:00
bryner%netscape.com
4dd827505a Adding phoenix makefiles to allmakefiles.sh
git-svn-id: svn://10.0.0.236/trunk@130683 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:28:40 +00:00
leaf%mozilla.org
11851fba42 Automated update
git-svn-id: svn://10.0.0.236/trunk@130682 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:24:42 +00:00
bryner%netscape.com
f33f42275e A more compact fix for the "test" problem for bug 165602. r=cls.
git-svn-id: svn://10.0.0.236/trunk@130681 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:18:44 +00:00
hewitt%netscape.com
cbcc33daeb fixing phoenix build bustage
git-svn-id: svn://10.0.0.236/trunk@130680 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 21:03:44 +00:00
blakeross%telocity.com
f319245b5e Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@130679 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 20:25:33 +00:00
myk%mozilla.org
af7a7c6ae3 Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
git-svn-id: svn://10.0.0.236/trunk@130678 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 19:14:07 +00:00
myk%mozilla.org
2fc6e203af Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
git-svn-id: svn://10.0.0.236/trunk@130677 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 19:12:25 +00:00
myk%mozilla.org
4ed4ad1c77 Fixing build bustage. Some template files didn't have version strings.
git-svn-id: svn://10.0.0.236/trunk@130676 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 19:08:45 +00:00
myk%mozilla.org
e73e2ddadd Fixing build bustage.
git-svn-id: svn://10.0.0.236/trunk@130675 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 18:59:28 +00:00
myk%mozilla.org
3137f6f38c Checking in build bustage.
git-svn-id: svn://10.0.0.236/trunk@130674 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 18:51:52 +00:00
blakeross%telocity.com
b265637a2e Fix bug that pressing OK doesn't work after going through all pref panels.
git-svn-id: svn://10.0.0.236/trunk@130673 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 18:48:16 +00:00
myk%mozilla.org
393a392d87 Fix for bug 98801: Implementation of the request tracker, a set of enhancements to attachment statuses.
r=gerv,bbaetz


git-svn-id: svn://10.0.0.236/trunk@130672 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 18:42:54 +00:00
danm%netscape.com
29406c0471 change popup manager's IDL constants to JS standard style instead of that silly reverse hungarian nonsense. r=brendan
git-svn-id: svn://10.0.0.236/trunk@130671 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 18:01:31 +00:00
beard%netscape.com
7c07044f7a Simplify the subclassing, using __proto__ explicitly, and remove an unnecessary extra level of prototype chain when instantiating the algorithm. (not part of build, r=peterv)
git-svn-id: svn://10.0.0.236/trunk@130670 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 17:02:53 +00:00
danm%netscape.com
4efa37f593 add popup blocking context menu item. bug 166442 r=brendan,jag
git-svn-id: svn://10.0.0.236/trunk@130669 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 16:14:43 +00:00
danm%netscape.com
84e94643dd include URI in notification of permission change. bug 166442 r=brendan,jag
git-svn-id: svn://10.0.0.236/trunk@130668 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 16:00:13 +00:00
kmcclusk%netscape.com
95e2ce3116 backing out changes to convert Mozilla to a Unicode app for bug 104934. r=yokoyama@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130667 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 15:52:35 +00:00
hewitt%netscape.com
5f93d669e1 polishing the customize toolbar dialog even more
git-svn-id: svn://10.0.0.236/trunk@130666 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 15:11:50 +00:00
hewitt%netscape.com
aa1b4855ca removing printfs
git-svn-id: svn://10.0.0.236/trunk@130665 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 15:10:44 +00:00
morse%netscape.com
28cd869d57 bug 158216, cookies written out to disk too often, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@130664 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 15:08:22 +00:00
kmcclusk%netscape.com
bf0871fae9 On WIN32, process pending PL_Events and paints after mouse and keyboard events to eliminate starvation of reflow and paints bug 163528 r=rods@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130663 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 15:04:47 +00:00
locka%iol.ie
6311cc476e Clean up DOM classes. b=154814 r=chak@netscape.com sr=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130662 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 14:32:14 +00:00
wtc%netscape.com
d5e4262c2c Bug 153258: fixed a misspelling in pk11_getDefTokName.
git-svn-id: svn://10.0.0.236/trunk@130661 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 14:14:18 +00:00
kairo%kairo.at
74066e971a bug 131477 - Improve design of about:plugins page - this makes about:plugins themeable, plugins.html moved from global to communicator, r=beppe, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130660 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 12:24:36 +00:00
kairo%kairo.at
8788176076 bug 131477 - Improve design of about:plugins page - this makes about:plugins themeable, plugins.html moved from xpfe/global/resouces/content to xpfe/communicator/resources/content, r=beppe, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130659 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 12:14:15 +00:00
hewitt%netscape.com
373c319a35 a little bit of skin loving
git-svn-id: svn://10.0.0.236/trunk@130658 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 11:47:29 +00:00
cbiesinger%web.de
609a122f4e bug 88685 part 2 remove USE_IMG2 ifdefs, r=caillon sr=tor
git-svn-id: svn://10.0.0.236/trunk@130657 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:53:04 +00:00
hewitt%netscape.com
274e6a552f 165955 - build changes for phoenix due to forking history, r=bryner, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@130656 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:51:20 +00:00
cbiesinger%web.de
0dbc1da0de bug 88685 part 1 remove USE_IMG2 ifdefs r=caillon sr=tor
git-svn-id: svn://10.0.0.236/trunk@130655 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:50:50 +00:00
hewitt%netscape.com
6584ce6cb9 165955 - tweaking autocomplete logic a bit
git-svn-id: svn://10.0.0.236/trunk@130654 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:27:37 +00:00
leaf%mozilla.org
e7a53ca4d7 Automated update
git-svn-id: svn://10.0.0.236/trunk@130653 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:24:52 +00:00
bryner%netscape.com
d57920bddc Fixing a problem with my checkin for bug 165602 - don't mix the test for empty MACOS_DEPLOYMENT_TARGET and 10.2-or-greater, some versions of 'test' don't like this.
git-svn-id: svn://10.0.0.236/trunk@130652 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 10:20:32 +00:00
leaf%mozilla.org
a08d8b7d31 Automated update
git-svn-id: svn://10.0.0.236/trunk@130651 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 09:24:57 +00:00
bryner%netscape.com
4f8582db8e Bug 165602 - define MACOS_DEPLOYMENT_TARGET (default to 10.1) for mach-o, and don't test for or reference 10.2-specific functions when building for 10.1. r=cls, wtc.
git-svn-id: svn://10.0.0.236/trunk@130650 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 09:19:58 +00:00
hewitt%netscape.com
1bc1c9017a changing module names
git-svn-id: svn://10.0.0.236/trunk@130649 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 09:17:10 +00:00
hewitt%netscape.com
559e87390e 165955 - preventing phoenix from building history, autocomplete, urlbarhistory, r=bryner, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@130648 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 07:25:15 +00:00
hewitt%netscape.com
d3eaf775bc 165955 - turning on satchel in phoenix
git-svn-id: svn://10.0.0.236/trunk@130647 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 06:25:03 +00:00
hewitt%netscape.com
49ae496b0e 165955 - landing more satchel stuff
git-svn-id: svn://10.0.0.236/trunk@130646 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 06:13:38 +00:00
darin%netscape.com
ebcbd5f608 fixes bug 168577 "Crash in trunk [@ nsViewSourceChannel::GetURI] viewing
source of a mail message" r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@130644 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 04:51:50 +00:00
darin%netscape.com
84faac702d adding missing JS changes for bug 157133
git-svn-id: svn://10.0.0.236/trunk@130643 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 04:39:09 +00:00
darin%netscape.com
ca5dc5fa1b fixing typo in comments
git-svn-id: svn://10.0.0.236/trunk@130642 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 04:37:42 +00:00
justdave%syndicomm.com
061444b7f3 Fix for bug 171296: changing Content-disposition header in attachment.cgi to use 'inline' instead of 'attachment' so that it
doesn't *force* you to download it.
r= bbaetz, bzbarsky


git-svn-id: svn://10.0.0.236/trunk@130641 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 04:10:27 +00:00
blakeross%telocity.com
7da0dbd61d Be consistent in & vs and.
git-svn-id: svn://10.0.0.236/trunk@130640 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 03:05:00 +00:00
pschwartau%netscape.com
73308ebb51 Simplifying test.
git-svn-id: svn://10.0.0.236/trunk@130639 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 02:52:28 +00:00
dmose%netscape.com
1ca85d1d4e First cut at bayesian spam-filtering glue; part of ongoing work (bug 163188); r=peterv, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130638 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 02:47:36 +00:00
blakeross%telocity.com
3f502e8a44 Fix 170641 - find next button doesn't always respond to enter.
git-svn-id: svn://10.0.0.236/trunk@130637 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 02:20:42 +00:00
sspitzer%netscape.com
8a56ffe5da bullet proof for bug #171313. I think this is caused by a wonky .directory pref
so we fail to get the hostinfo.dat file, but until I find out, I can at least
bulletproof.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130636 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 02:14:37 +00:00
blakeross%telocity.com
cf43f58ad1 Fix 170623 - make prefs dialog resizable.
git-svn-id: svn://10.0.0.236/trunk@130635 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:49:18 +00:00
depstein%netscape.com
01236a77fa Modified test results for several interface tests to display to rv dialog.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@130634 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:41:25 +00:00
bryner%netscape.com
e3efe71751 Don't build download manager for phoenix. r=blake, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@130632 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:34:20 +00:00
bryner%netscape.com
7fe4ad6f0e Fork download manager for phoenix.
git-svn-id: svn://10.0.0.236/trunk@130631 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:31:19 +00:00
hewitt%netscape.com
dd0a1452d9 165955 - landing satchel
git-svn-id: svn://10.0.0.236/trunk@130630 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:20:16 +00:00
hewitt%netscape.com
db4942d3a0 165955 - landing satchel
git-svn-id: svn://10.0.0.236/trunk@130629 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:15:11 +00:00
hewitt%netscape.com
f0107de671 missing an s
git-svn-id: svn://10.0.0.236/trunk@130628 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 01:11:11 +00:00
dmose%netscape.com
659314b8c6 Change function name to avoid namespace collision; don't write out the database if nothing has changed; use scores instead of labels to be compatible with the rest of the infrastructure (not part of build)
git-svn-id: svn://10.0.0.236/trunk@130627 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:54:57 +00:00
dmose%netscape.com
39b3ef970f Changes from peterv to not modify the database based on automatically classified spam (not part of build)
git-svn-id: svn://10.0.0.236/trunk@130626 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:53:34 +00:00
nicolson%netscape.com
aeb24092d8 Fix 128172: function to convert a session key to a token key.
git-svn-id: svn://10.0.0.236/trunk@130625 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:48:32 +00:00
hewitt%netscape.com
f6c8a0072f 165955 - landing new autocomplete api and satchel for phoenix. not built yet.
git-svn-id: svn://10.0.0.236/trunk@130624 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:38:20 +00:00
hewitt%netscape.com
ac331b87e8 165955 - forking global history for satchel
git-svn-id: svn://10.0.0.236/trunk@130623 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:27:02 +00:00
jpierre%netscape.com
15234a6282 Fix for 167615 - fix for crash with bad CRLs from token. Also fix error handling
git-svn-id: svn://10.0.0.236/trunk@130622 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:05:34 +00:00
chanial%noos.fr
e38c0d8cc1 bug 171174: sorting bookmarks in the view menu does not work
git-svn-id: svn://10.0.0.236/trunk@130621 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-28 00:01:49 +00:00
hewitt%netscape.com
ca9aa2d909 165955 - forking global history for satchel
git-svn-id: svn://10.0.0.236/trunk@130620 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 23:42:56 +00:00
heikki%netscape.com
0e505bd5ea Bug 169982, same origin check for serializeToStream. r=mstoltz, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130619 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 23:30:10 +00:00
heikki%netscape.com
fc46eb3862 Bug 169984, sanitize XMExtras method availability to scripts. r=mstoltz, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130618 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 23:24:24 +00:00
danm%netscape.com
e7ee73db72 expose constants to script. bug 166442 r=jag,lumpy
git-svn-id: svn://10.0.0.236/trunk@130617 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 23:23:01 +00:00
chak%netscape.com
bea8177797 Part of fix for #79175 - merge jsloader module into xpconnect
[Mainly removing jsloader.dll from the gre package list]
sr=alecf(via AIM)


git-svn-id: svn://10.0.0.236/trunk@130616 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 23:12:16 +00:00
aaronl%netscape.com
d7bce48560 Bug 170820 - xlinks reached with typeaheadfind not accepting Enter or mod+Enter to perform actions. r=sicking, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@130615 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 22:31:05 +00:00
wtc%netscape.com
ba3d26e6cf Bug 166781: fixed the bug that 'r2' may be used uninitialized. r=nicolson.
git-svn-id: svn://10.0.0.236/trunk@130614 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 22:22:12 +00:00
gerv%gerv.net
4f31f2bf28 Bug 170213 - CVS remove old and obsolete HTML files. "Patch" by gerv; a=myk.
git-svn-id: svn://10.0.0.236/trunk@130613 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 22:03:56 +00:00
ian.mcgreer%sun.com
c281b854b0 bug 171198, leak moving temp cert to perm; add force parameter
r=wtc,relyea


git-svn-id: svn://10.0.0.236/trunk@130612 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 21:23:00 +00:00
dbaron%fas.harvard.edu
c2ce7ae3e6 Fix additional typos (and Linux/Mac bustage) from dougt's checkin. b=157133 r=gcc-3.2
git-svn-id: svn://10.0.0.236/trunk@130611 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 20:35:33 +00:00
dougt%netscape.com
66dff08b80 missing arg
git-svn-id: svn://10.0.0.236/trunk@130610 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 20:31:19 +00:00
mkaply%us.ibm.com
acc0c1fa0c Not part of build - Uninstaller enablement - OS/2 only
git-svn-id: svn://10.0.0.236/trunk@130609 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 20:23:03 +00:00
neeti%netscape.com
c894971e3e fix for bug 123388 - FTP should accept CR line endings, r=dougt@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130608 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 20:19:04 +00:00
alecf%netscape.com
fa22adbb77 move contactID out of nsArray.h - not part of build
git-svn-id: svn://10.0.0.236/trunk@130607 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:52:47 +00:00
alecf%netscape.com
90f47cfb27 add documentation and comments, mark interface UNDER_REVIEW
(also not part of build)


git-svn-id: svn://10.0.0.236/trunk@130605 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:33:01 +00:00
alecf%netscape.com
49dbdd1151 continuing work in progress on nsCOMArray<T> - take darin's suggestion and move all nsISupports-related code into a non-template base class nsCOMArray_base. This allows the generated template to be paper thin (or really, non-existent!)
Then, we move some of the non-trivial methods of this class into a .cpp file


git-svn-id: svn://10.0.0.236/trunk@130604 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:29:45 +00:00
aaronl%netscape.com
7625a51cd2 Bug 166340. Typeaheadfind prefer visible not working right. r=kyle, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130603 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:25:48 +00:00
dougt%netscape.com
84eba1874e move contentEncodings and applyConversion to a new interface. r=neeti@netscape.com, sr=darin@netscape.com, b=157133
git-svn-id: svn://10.0.0.236/trunk@130602 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:23:21 +00:00
aaronl%netscape.com
9d92ab6109 Bug 166712. Consolodate typeaheadfind files, cleanup building and packaging of typeaheadfind, make it available to embeddors, remove from install options. r=ssu, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130601 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:07:44 +00:00
pinkerton%netscape.com
38c576810d make sure we keep everything in the range of [0, mMaxValue] in UpdateContentPosition(). r=bryner/sr=sfraser (bug 153574)
git-svn-id: svn://10.0.0.236/trunk@130600 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 19:05:41 +00:00
locka%iol.ie
756fdbe9fa NOT PART OF BUILD. Return error code when requested property is not available
git-svn-id: svn://10.0.0.236/trunk@130598 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:45:08 +00:00
locka%iol.ie
92f35d2276 NOT PART OF BUILD. Use Win32 api for GUID comparison
git-svn-id: svn://10.0.0.236/trunk@130597 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:44:08 +00:00
locka%iol.ie
599e83b63b NOT PART OF BUILD. Event sink class for controls, first cut
git-svn-id: svn://10.0.0.236/trunk@130596 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:43:27 +00:00
alecf%netscape.com
18e828cdfc remove JSLoader.xml as its no longer part of the build
git-svn-id: svn://10.0.0.236/trunk@130595 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:33:38 +00:00
alecf%netscape.com
b05dbf8f5b fix for bug 79175, merge jsloader into xpconnect
r=dbradley, sr=brendan


git-svn-id: svn://10.0.0.236/trunk@130594 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:33:02 +00:00
aaronl%netscape.com
d69fd3078a Bug 166712. Consolodate typeaheadfind files, cleanup building and packaging of typeaheadfind, make it available to embeddors, remove from install options. r=ssu, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130593 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 18:14:06 +00:00
relyea%netscape.com
f268141fc4 Bug 167861: PK11_GetModInfo needs to set the error code.
git-svn-id: svn://10.0.0.236/trunk@130592 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 17:50:59 +00:00
ducarroz%netscape.com
a4cc0dbf31 Fix for bug 171121. prevValue could be null therefore we need to use NS_IF_RELEASE instead of
NS_RELEASE. R=dougt, SR=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130591 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 17:49:08 +00:00
relyea%netscape.com
02b9134dd6 bug 130966: fix problems in searching and storing fixed keys.
bug 170423: Turn on block symetric and Mac'ing functions in the DB token so we can use the fixed keys there without moving them around.

Fix memory leak on shutdown (leaking the sessions).


git-svn-id: svn://10.0.0.236/trunk@130590 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 17:46:36 +00:00
bugreport%peshkin.net
bf4010d96f Bug 170195 Regression - buglist highlighting broken
r=myk


git-svn-id: svn://10.0.0.236/trunk@130589 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 16:44:58 +00:00
relyea%netscape.com
081ac893c4 Bug 166894: Handle changing Trust when cert is in the token.
git-svn-id: svn://10.0.0.236/trunk@130588 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 15:55:01 +00:00
brade%netscape.com
7e24da6f8a remove publish.js per editor embedding meeting (dead file)
git-svn-id: svn://10.0.0.236/trunk@130586 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 14:04:03 +00:00
dougt%netscape.com
77abf83626 Fixes XPCOM Glue on linux, b=168584, sr=rpotts, r=alec
git-svn-id: svn://10.0.0.236/trunk@130583 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 13:07:01 +00:00
mkaply%us.ibm.com
70fa01070f #170638
Fix OS/2 only regression caused by 168463


git-svn-id: svn://10.0.0.236/trunk@130582 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 11:58:08 +00:00
locka%iol.ie
6e3976a782 NOT PART OF BUILD. Added service provider hook for controls which call out for services.
git-svn-id: svn://10.0.0.236/trunk@130581 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 11:54:49 +00:00
cbiesinger%web.de
0c193daf00 bug 160975 patch by arunan_bala@hotmail.com r=pavlov,biesi sr=tor
Mozilla not decoding 31x39 .ICO file correctly


git-svn-id: svn://10.0.0.236/trunk@130580 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 10:22:53 +00:00
timeless%mac.com
9548bff289 Bug 170031 unparsed string in quicklaunch 'disable quicklaunch' dialog
patch by <pepperxn@netscape.net>, r=caillon, sr=jag


git-svn-id: svn://10.0.0.236/trunk@130579 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 10:13:14 +00:00
sspitzer%netscape.com
213bfff8af cid to progid cleanup. no bug.
git-svn-id: svn://10.0.0.236/trunk@130578 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 09:32:06 +00:00
sspitzer%netscape.com
5f66a4f86f fix my comment about normalization
git-svn-id: svn://10.0.0.236/trunk@130577 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 09:28:30 +00:00
dmose%netscape.com
5d22f98681 Part of ongoing spam work: first cut at a message filtering plugin API (bug 169557); r=bienvenu, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130576 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 08:49:36 +00:00
jkeiser%netscape.com
4b3dc6b474 Don't crash on pages with font-size: 1px (Rick.Ju@sun.com's patch, bug 170225), r=jkeiser@netscape.com, sr=bryner@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130575 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 07:50:39 +00:00
pete.zha%sun.com
20f6dcc5be common printing interface for Postscript and TrueType fonts
bug=144665 r=bstell@ix.netcom.com sr=jaggernaut@netscape.com


git-svn-id: svn://10.0.0.236/trunk@130574 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 07:46:19 +00:00
bstell%ix.netcom.com
00cca95c42 bug 169695 r=smontagu, sr=kin@netscape.com
move gdk performance code out of nsRenderingContextGTK.cpp since
it is not directly related to the rendering context


git-svn-id: svn://10.0.0.236/trunk@130573 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 07:13:49 +00:00
hewitt%netscape.com
bbe3761bfa forgot to rename this
git-svn-id: svn://10.0.0.236/trunk@130572 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 06:48:11 +00:00
alecf%netscape.com
e05f12a7a1 continue work-in-progress with freezable array.
Also introduce nsCOMArray<nsIFoo>
not part of build


git-svn-id: svn://10.0.0.236/trunk@130571 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 06:08:49 +00:00
darin%netscape.com
78a87b352c backing out sdagley's patch for bug 169667 to clear up mac build bustage.
git-svn-id: svn://10.0.0.236/trunk@130570 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 04:35:33 +00:00
darin%netscape.com
e56625b347 fixes bug 170789 "HTTP Accept: header should be tailored to context of the
request" r=dougt sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@130569 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 04:22:13 +00:00
hewitt%netscape.com
df2ace3a21 171101 - new toolbar customization features
git-svn-id: svn://10.0.0.236/trunk@130568 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 04:06:56 +00:00
morse%netscape.com
eaca9a2e25 bug 156726, citibank.com broken, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130567 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 03:29:04 +00:00
dougt%netscape.com
6b1ae3c760 Fixes File: URL's w/ an illegal drive name do not display fnf errors. r=neeti, sr=darin
git-svn-id: svn://10.0.0.236/trunk@130566 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 03:13:10 +00:00
blizzard%redhat.com
524c78fab9 Bug #170919. Make sure to allocate the right amount of memory for the rects in the region. patch is from tor@acm.org. r=blizzard Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@130565 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 02:10:27 +00:00
blizzard%redhat.com
760699ff62 Bug #121260. Fix build problems with gtk2 with the current tip and load libesd.so.0 before libesd.so. r=robin.lu@sun.com Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@130564 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 02:03:10 +00:00
scc%mozilla.org
a911ffae5e bug #167722, patch by Donnie Cranford, r=gisburn, sr=scc; ports bustage,
must include "nsReadableUtils.h"


git-svn-id: svn://10.0.0.236/trunk@130563 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 01:30:04 +00:00
scc%mozilla.org
0a0815a327 bug #167722, patch by Donny Cranford, r=gisburn, sr=scc, ports build bustage
need to include "nsReadableUtils.h"


git-svn-id: svn://10.0.0.236/trunk@130562 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 01:26:52 +00:00
nelsonb%netscape.com
4b4200d9a2 Add targets for HPUX Itanium family processors.
git-svn-id: svn://10.0.0.236/trunk@130560 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 01:23:28 +00:00
mscott%netscape.com
77ff49ce1f Bug #116514 --> add ability to search by label in the UI
sr=sspitzer
r=navin


git-svn-id: svn://10.0.0.236/trunk@130557 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 00:27:17 +00:00
mscott%netscape.com
c9d925a041 Bug #115614 --> Add ability to search by label in the UI.
r=navin
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130556 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 00:26:53 +00:00
nicolson%netscape.com
e852f3706d Fix error message when we find something unexpected in a SEQUENCE.
git-svn-id: svn://10.0.0.236/trunk@130555 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 00:07:11 +00:00
jkeiser%netscape.com
d59bc1b4f8 Align input type=text/radio/checkbox/button so that text is on baseline (bzbarsky's patch, bug 167236), r=jkeiser@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@130554 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 00:04:22 +00:00
nicolson%netscape.com
b0e21eb3d2 Fix 169798: Failed to install ca signing certificate with NS3.6beta.
r=wtc


git-svn-id: svn://10.0.0.236/trunk@130553 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-27 00:01:53 +00:00
sspitzer%netscape.com
e7a1d42505 fix for bug #103012. Servers can send us data like: "211 0 41 40 nz.netstatus"
we should graciously handle this, and not stop updating the unread counts in the folder pane.
r/sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@130552 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:55:33 +00:00
jkeiser%netscape.com
bbbc1f29b9 Fix crash on fixed position selects (Rick.Ju@sun.com's patch, bug 166750), r=dbaron@fas.harvard.edu, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130551 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:51:23 +00:00
sdagley%netscape.com
70cc64e45c Landing #169667 - Clean up InternetConfigService and use LaunchServices APIs where appropriate. r=ccarlen,sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130550 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:38:08 +00:00
rpotts%netscape.com
1572ed85a9 bug #171053 (r=jst, sr=darin) load network image requests LOAD_BACKGROUND to avoid generating unnecessary notifications...
git-svn-id: svn://10.0.0.236/trunk@130549 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:37:47 +00:00
gerv%gerv.net
4df7f9a149 Bug 170822 - Linkification process destroys whitespace. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@130548 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:31:53 +00:00
nhotta%netscape.com
c593c7eab0 Adding empty IDN implementation to make actual implementation done easily,
bug 112979, r=shanjian, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@130547 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:30:18 +00:00
nicolson%netscape.com
c778478ad8 override INTEGER.getTemplate() with one that returns an ENUMERATED.Template.
git-svn-id: svn://10.0.0.236/trunk@130546 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:25:21 +00:00
gerv%gerv.net
ffd6464c9e Bug 170986 - General Summary reports don't work with taint checking. Also fixes Throw*Error's $extra_vars parameter. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@130545 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:25:12 +00:00
danm%netscape.com
f9e314a607 propagate state of event modifier keys to menu command handlers. bug 126189 r=bryner,jag
git-svn-id: svn://10.0.0.236/trunk@130544 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:21:59 +00:00
sspitzer%netscape.com
5d0b73535d curse these fat fingers. &&, not &.
git-svn-id: svn://10.0.0.236/trunk@130543 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:07:49 +00:00
sspitzer%netscape.com
ce63ba88d5 fix for bug #170993. MOZ_UNICODE got defined on me, so my fix for multiple
open mode needs to be ported for the unicode case.  r=yokoyama, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@130542 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:04:06 +00:00
dougt%netscape.com
75999480e5 moves nsIHttpHeaderVisitor into a separate IDL file. b=157133. r=neeti@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130541 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:04:01 +00:00
sspitzer%netscape.com
e2e047d386 more work for #169638. junk settings UI. we are going to all for junk mail controls
when reading news.  instead of using canGetMessages (poorly named, really means, "do I have an inbox on this account type?") I've added canGetIncomingMessages, which means ("do messages come in for this account type?")  true for all but none type (think local folders).
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130540 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:03:22 +00:00
darin%netscape.com
1f35d5e002 fixes bug 149586 "can't open files fith a name ending with dot" r=dougt sr=jag
git-svn-id: svn://10.0.0.236/trunk@130539 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 23:03:13 +00:00
darin%netscape.com
be7108ab4c adding initial version of neckoutil library (b=170983) NOT PART OF THE BUILD
git-svn-id: svn://10.0.0.236/trunk@130538 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:59:38 +00:00
sspitzer%netscape.com
a037c8841b work for #169638. adding junk settings for both news and mail.
r/sr=bienvenu.  UI change a=jglick.


git-svn-id: svn://10.0.0.236/trunk@130537 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:58:37 +00:00
sspitzer%netscape.com
674e5753ce for #169638. whoops, this is a long, not a bool. thanks to navin for catching my mistake. r=naving.
git-svn-id: svn://10.0.0.236/trunk@130536 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:58:01 +00:00
sspitzer%netscape.com
922359dbdb work for #169638. make it so when you mark a message as spam from the stand alone msg
window, the other views (like the thread pane) get notified.  also, some code cleanup
to use nsCOMPtr.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130535 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:56:00 +00:00
cavin%netscape.com
2772a16724 Fix for 155491. Don't write out the delimiter if the field is to be ignored (for export). Also, cellular number type should not be exported. R=ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@130534 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:53:30 +00:00
timeless%mac.com
83f5a7057a Bug 167174 builds system should generate .autoreg
r=cls,dveditz sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130533 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:47:37 +00:00
dmose%netscape.com
a5e49be153 Tweaks to match interface; not part of build
git-svn-id: svn://10.0.0.236/trunk@130532 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 22:34:18 +00:00
ian.mcgreer%sun.com
c91514f4dd bug 158078, unitialized variable due to a lot of unneccessary code
git-svn-id: svn://10.0.0.236/trunk@130530 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 20:30:11 +00:00
igor%mir2.org
3f28ac64b8 Add isGeneratedScript to DebuggableScript and its implementations to allow debuger to distinguish between scripts and functions coming from external files or ones defined vvia exec or new Function()
git-svn-id: svn://10.0.0.236/trunk@130529 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 20:19:39 +00:00
glen.beasley%sun.com
f5e62e4d98 163762 configureOCSPNative
git-svn-id: svn://10.0.0.236/trunk@130528 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 19:52:06 +00:00
blakeross%telocity.com
7454f8ef2f Fixing blank toolbar.
git-svn-id: svn://10.0.0.236/trunk@130527 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 19:02:34 +00:00
wtc%netscape.com
67001249a1 Get NSS headers from the new location (dist/public/nss) only.
Modified files: boot/src/Makefile.in pki/src/Makefile.in ssl/src/Makefile.in


git-svn-id: svn://10.0.0.236/trunk@130524 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 17:56:09 +00:00
wtc%netscape.com
cf0e5f700d Bug 165602: checked in Brian Ryner's changes to allow Mac OS X 10.2 builds
to run on 10.1. r=wtc.
Modified files: configure configure.in pr/src/misc/prdtoa.c


git-svn-id: svn://10.0.0.236/trunk@130523 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 12:51:34 +00:00
rods%netscape.com
6501910d0f Convert printer name WideCharToMultiByte
Bug 167128 r=roy sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@130521 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 11:38:03 +00:00
rods%netscape.com
f7e07db9b7 This partially backs out the previous patch. We no longer need to set/get anything in the nsIPrintOptions.
What this does is:
1) Reflows the first time constrained and remembers mOverflowArea.XMost() of
the HTML frame and then later uses that for the calculation of the ratio.
2) Renames some variables
3) This also changes the the maximum STF ratio from 0.5 to 0.3 to match the
dropdown in PP
Bug 168961 r=dcone sr=kin


git-svn-id: svn://10.0.0.236/trunk@130520 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 11:25:04 +00:00
timeless%mac.com
a90600019d cvs server: re-adding file typeaheadfind.js (in place of dead revision 1.13)
build bustage


git-svn-id: svn://10.0.0.236/trunk@130519 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 10:07:08 +00:00
aaronl%netscape.com
f4a058882e Fixing mistake from last checkin, these files shouldn't be removed yet.
git-svn-id: svn://10.0.0.236/trunk@130518 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 09:08:46 +00:00
jkeiser%netscape.com
408f0a663d Make option elements strip whitespace even when empty (bug 164909), r=rods@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130517 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 08:21:26 +00:00
jkeiser%netscape.com
08c48ef32b Make align=left on input type=text do text-align instead of float (bzbarsky@mit.edu's patch, bug 165547), r=jkeiser@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@130516 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 08:18:42 +00:00
seawood%netscape.com
8e21dabd47 BeOS uses the default `NS_CreateNativeAppSupport()
Fixing tinderbox bustage


git-svn-id: svn://10.0.0.236/trunk@130515 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:59:05 +00:00
aaronl%netscape.com
d399379b60 Fixing mistake from last checkin, these files shouldn't be removed yet.
git-svn-id: svn://10.0.0.236/trunk@130514 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:55:50 +00:00
aaronl%netscape.com
352eb871fd Bug 168634. Type Ahead Find should prefer visible match. r=kyle, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@130513 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:49:46 +00:00
sspitzer%netscape.com
bcef137571 fix js warning.
git-svn-id: svn://10.0.0.236/trunk@130512 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:42:17 +00:00
jkeiser%netscape.com
c5b034aaae Make nsHTMLValue store embedded nulls (r=sicking@netscape.com, sr=bzbarsky@mit.edu, sr=jaggernaut@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130511 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:41:53 +00:00
sspitzer%netscape.com
a142e71c45 hide the spam settings until the feature is turned on.
git-svn-id: svn://10.0.0.236/trunk@130510 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:40:34 +00:00
sspitzer%netscape.com
1d71233a2d add account central UI for spam settings. part of #169638. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130509 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:39:46 +00:00
sspitzer%netscape.com
b4781cb512 add rule for junk mail controls in account central.
until we have icons, use the pref icon.  r/sr=bienvenu.  part of #169199


git-svn-id: svn://10.0.0.236/trunk@130508 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:38:21 +00:00
sspitzer%netscape.com
4e174eea2e close the spam log stream and release the ref to the spam settings instance
one shutdown, like we do for mFilterList.  part of #169638.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130507 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:22:49 +00:00
sspitzer%netscape.com
7f575ea3c9 conditionally enable the UI elements. part of #169638. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@130506 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:12:48 +00:00
sspitzer%netscape.com
beb1f66b6a fix score sorting so that unscored messages are before scored messages.
part of #169638.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130505 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 07:11:59 +00:00
dean_tessman%hotmail.com
a1a8c72a23 bug 162073 - strings are truncated on left end when UI aligned to the right
r=smontagu@netscape.com
sr=blizzard@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@130504 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 06:42:55 +00:00
bolian.yin%sun.com
af0b3e38c6 Bug121257, gtk2 needs to get hooked up to i18n text input methods
patch by john.sun@sun.com, r=katakai, sr=blizzard.
This is NOT for the default build.


git-svn-id: svn://10.0.0.236/trunk@130503 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 06:20:01 +00:00
gerv%gerv.net
fbe91818cd Bug 170843 - cvs remove obsolete file, changepassword.cgi. "Patch" by gerv; a=justdave.
git-svn-id: svn://10.0.0.236/trunk@130502 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 06:16:58 +00:00
sspitzer%netscape.com
117d84f5ed fix for #129011. movemail can support filters. r/sr=sspitzer. thanks to pretzalz@techhouse.org for the fix.
git-svn-id: svn://10.0.0.236/trunk@130501 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 05:47:28 +00:00
caillon%returnzero.com
36e93f89dd Bug 117500. Adding support for the CSS2Properties interface to computed style declarations.
r=dbaron sr=jst


git-svn-id: svn://10.0.0.236/trunk@130500 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:46:50 +00:00
lordpixel%mac.com
5627caa86d Fix for bug 90823 Relaunching or clicking Dock icon should display last minimized window or create new window
r=sdagley, sr=smfr


git-svn-id: svn://10.0.0.236/trunk@130499 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:45:59 +00:00
lordpixel%mac.com
0598c4b311 Fix for bug 90823 Relaunching or clicking Dock icon should display last minimized window or create new window
r=timeless, sr=darin


git-svn-id: svn://10.0.0.236/trunk@130498 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:39:19 +00:00
lordpixel%mac.com
c3b1f1daf6 Fix for bug 90823 Relaunching or clicking Dock icon should display last minimized window or create new window
r=sdagley, sr=smfr


git-svn-id: svn://10.0.0.236/trunk@130497 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:38:06 +00:00
lordpixel%mac.com
f9d78e6e71 Fix for buf 90823 - Relaunching or clicking Dock icon should display last minimized window or create new window
r=sdagely, sr=smfr


git-svn-id: svn://10.0.0.236/trunk@130496 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:32:53 +00:00
lordpixel%mac.com
74cec5b976 Fix for bug 90823 - Relaunching or clicking Dock icon should display last minimized window or create new window
r=sdagley, sr=smfr


git-svn-id: svn://10.0.0.236/trunk@130495 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:31:23 +00:00
darin%netscape.com
574d44d010 minor tweak to my checkin for bug 105340
git-svn-id: svn://10.0.0.236/trunk@130494 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 03:06:11 +00:00
depstein%netscape.com
00c918a49a Added test cases for NSNewChannel & AsyncOpen, and nsIIOService->NewURI(). These are accessed from the "Tests" menu. Added a couple of bug verifications, accessed from the "Verify Bugs" menu. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130493 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 02:57:09 +00:00
av%netscape.com
945a20c30b Fixing 132759 -- 100% CPU with Flash, r=peterl, sr=jst
git-svn-id: svn://10.0.0.236/trunk@130492 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 02:53:27 +00:00
caillon%returnzero.com
6d8428579c Typo fix. r=peterv sr=bzbarsky (bug 170782)
git-svn-id: svn://10.0.0.236/trunk@130491 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 02:45:43 +00:00
darin%netscape.com
a37c8d005f fixes bug 169653 "passing null as host in xmlHttpRequest.open crashes
Mozilla [@ net_ExtractURLScheme ]" r=dougt sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@130490 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 02:24:49 +00:00
sspitzer%netscape.com
7c6754c5eb junk mail work. store the current changes on accept, as they might not have been stored yet.
git-svn-id: svn://10.0.0.236/trunk@130489 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 02:06:44 +00:00
av%netscape.com
18da0bd9c9 Getting ready to fix 132759 -- 100% CPU with Flash, those files are not part of the build yet
git-svn-id: svn://10.0.0.236/trunk@130488 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:59:08 +00:00
sspitzer%netscape.com
707fda73b3 remove dump statements.
git-svn-id: svn://10.0.0.236/trunk@130487 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:58:44 +00:00
sspitzer%netscape.com
76de21c964 more work for #169638. implementing spam UI. get the "enable logging" checkbox to work and persisting in prefs. r/sr=bienvenu.
git-svn-id: svn://10.0.0.236/trunk@130486 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:58:11 +00:00
av%netscape.com
dc46a920aa Getting ready to fix 132759 -- 100% CPU with Flash, this file is not part of the build yet
git-svn-id: svn://10.0.0.236/trunk@130485 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:56:25 +00:00
jpierre%netscape.com
1ee6ce35d4 Fix for 167615 - don't crash if a token returns a NULL CRL object
git-svn-id: svn://10.0.0.236/trunk@130484 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:38:45 +00:00
jpierre%netscape.com
0625b2d3eb Fix for 167615 - don't crash if the CRL isn't found due to a database error
git-svn-id: svn://10.0.0.236/trunk@130483 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:37:41 +00:00
dmose%netscape.com
5cf37e759d Fix syntax error (not yet part of build).
git-svn-id: svn://10.0.0.236/trunk@130482 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:12:42 +00:00
mscott%netscape.com
657cea6d81 Allow the component manager to create instances of a nsMsgSearchTerm.
rs=sspitzer


git-svn-id: svn://10.0.0.236/trunk@130481 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:06:25 +00:00
dmose%netscape.com
63be9a0edc Fix syntax error (not part of build).
git-svn-id: svn://10.0.0.236/trunk@130480 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 01:03:06 +00:00
akkana%netscape.com
4796bd4f43 169308: Make nsIEditorLogging scriptable: add idl file to the mac build
git-svn-id: svn://10.0.0.236/trunk@130479 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:52:18 +00:00
martinl%netscape.com
2a30581bc1 Bug 160405
Change to properly use private colormap.  This is ifdef'd for HP, AIX, Sun, OSF only.
Has been tested on OEM branch.  Landing on trunk.
r=syd  sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@130478 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:43:06 +00:00
sspitzer%netscape.com
4cee6ebc59 working on spam UI, making it match the spec. see bug #169638.
not visible to the user yet.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130477 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:33:15 +00:00
dmose%netscape.com
4d3c85e5f7 Add bayesian spam filter Makefile generation; not yet part of the build
git-svn-id: svn://10.0.0.236/trunk@130476 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:31:17 +00:00
sspitzer%netscape.com
3975d71925 rename a global var to gFoo, to match our conventions.
git-svn-id: svn://10.0.0.236/trunk@130475 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:31:09 +00:00
dmose%netscape.com
3be2fcaebe Make it possible to get an nsMsgKeyArray from an nsMsgKeySet, and to get the list of NEW messages from nsIMsgDatabase (bug 170841). r=naving@netscape.com, sr=bienvenu@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130474 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:22:53 +00:00
peterlubczynski%netscape.com
032cdc3810 Fixing bug 167601, support PLUGINURL param values for OBJECT tag instead of codebase attribute, r=anthonyd, sr=jst
git-svn-id: svn://10.0.0.236/trunk@130473 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:17:20 +00:00
aaronl%netscape.com
fb379ad676 Bug 169821. Find prev/next command in typeaheadfind forgets type of search (links only or text). r=kyle, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130472 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:12:44 +00:00
aaronl%netscape.com
c67ef23c64 Bug 169827. Escape should cancel million keystrokes protection in typeaheadfind. r=caillon, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130471 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:09:58 +00:00
aaronl%netscape.com
1726017a75 Bug 166791. Invisible insertion point after tabbing to text field when typeaheadfind is active. r=mjudge, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@130470 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:07:53 +00:00
naving%netscape.com
966316f801 r/sr=sspitzer adding msg_folder_flag_junk needed for junk folder
git-svn-id: svn://10.0.0.236/trunk@130469 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:05:09 +00:00
wtc%netscape.com
14d50e4b47 Bug 170379: fix the stack overflow crash by not allocating the 32K "sieve"
array on the stack.


git-svn-id: svn://10.0.0.236/trunk@130468 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-26 00:04:25 +00:00
waldemar%netscape.com
20953069bb Fixed bug
git-svn-id: svn://10.0.0.236/trunk@130467 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:54:34 +00:00
waldemar%netscape.com
63eadf419b Removed JS20/Units.lisp from the default build
git-svn-id: svn://10.0.0.236/trunk@130466 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:54:19 +00:00
akkana%netscape.com
53086064e0 169308: Make nsIEditorLogging scriptable: fix a typo. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@130465 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:53:17 +00:00
waldemar%netscape.com
0d63582ae8 Added support for float32; changed the lexer's token data structures
git-svn-id: svn://10.0.0.236/trunk@130464 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:53:16 +00:00
waldemar%netscape.com
5606933dec Changes to support the updated lexer and the simplified token data structure
git-svn-id: svn://10.0.0.236/trunk@130463 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:52:03 +00:00
waldemar%netscape.com
b97801e2dd Removed units and added support for l, ul, and f suffixes. Changed the basic types of the token variants to match changes in other files
git-svn-id: svn://10.0.0.236/trunk@130462 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:51:12 +00:00
waldemar%netscape.com
a186a8c4df Replaced fill-capture by the new repeat primitive
git-svn-id: svn://10.0.0.236/trunk@130461 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:49:53 +00:00
waldemar%netscape.com
cc5ee27c21 Added support for float32; made float32 and float64 disjoint from rational numbers; misc. numeric primitive changes
git-svn-id: svn://10.0.0.236/trunk@130460 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:49:12 +00:00
nhotta%netscape.com
7b54cedfcc Adding empty IDN implementation to make actual implementation done easily,
r=shanjian, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@130459 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:49:08 +00:00
waldemar%netscape.com
dd4cccc0aa First version
git-svn-id: svn://10.0.0.236/trunk@130458 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:48:38 +00:00
waldemar%netscape.com
f340e80263 Added support for float32; made float32 and float64 disjoint from rational numbers; misc. numeric primitive changes; added bottom expression; made append take two or more operands; added support for expressions in comments; added repeat operator
git-svn-id: svn://10.0.0.236/trunk@130457 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:47:25 +00:00
waldemar%netscape.com
fc33ae7969 Fixed bug in handling of :wrap
git-svn-id: svn://10.0.0.236/trunk@130456 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:44:38 +00:00
waldemar%netscape.com
99cdeaa11f Fixed bug
git-svn-id: svn://10.0.0.236/trunk@130455 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:43:57 +00:00
samuel%sieb.net
866a6e8893 Bug 132817 - Chatzilla has problems joining channels on a pirc server
r=rginda


git-svn-id: svn://10.0.0.236/trunk@130454 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:40:24 +00:00
akkana%netscape.com
d8b0b8b662 169308: Make nsIEditorLogging scriptable: fix a typo. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@130453 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:34:59 +00:00
akkana%netscape.com
10d9953c1b 169308: Make nsIEditorLogging scriptable: a couple of nicities suggested by Kin. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@130452 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:34:04 +00:00
bienvenu%netscape.com
01325ef12d fix 100% cpu useage loading mail message with background image r=mscott, sr=sspitzer 98626
git-svn-id: svn://10.0.0.236/trunk@130451 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:30:02 +00:00
akkana%netscape.com
de546ddbb7 169308: Make nsIEditorLogging scriptable. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@130450 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:29:40 +00:00
akkana%netscape.com
9bd12db00e 169001: remove editorshell references. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@130449 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 23:20:38 +00:00
dmose%netscape.com
5cf28f089e Add comment crediting various folks in the Bayesian spam community for their ideas.
git-svn-id: svn://10.0.0.236/trunk@130448 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 22:22:07 +00:00
dmose%netscape.com
dc29a5e949 Initial work (mostly by peterv) for a bayesian spam filter. Not yet part of the build.
git-svn-id: svn://10.0.0.236/trunk@130447 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 22:15:12 +00:00
jfrancis%netscape.com
e09ae3ace1 fix for 170344: block operations failing at certain selection points. r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130446 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 21:56:23 +00:00
tara%tequilarista.org
c6d192f480 Fixing (but still leaving commented out) the Log query field, a la bug 170395
git-svn-id: svn://10.0.0.236/trunk@130445 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 21:55:22 +00:00
radha%netscape.com
d98fdec7b0 Fix for bug 156312. onScroll events fire when scroll doesn't happen. r=saari sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130443 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 21:29:33 +00:00
darin%netscape.com
8fa070e5cd fixes bug 170648 "eliminate referrer type from nsIHttpChannel in preparation
for freezing" r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130442 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 21:28:53 +00:00
dougt%netscape.com
276c4673a0 Set means Define. When the method Define was removed, we didn't adjust Set to implictly Define. patch by ashishbhatt@netscape.com, r=khanson, r=dougt, b=169563
git-svn-id: svn://10.0.0.236/trunk@130441 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 21:27:20 +00:00
dougt%netscape.com
1d07c05e8f fixing bustage
git-svn-id: svn://10.0.0.236/trunk@130440 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:49:29 +00:00
dcone%netscape.com
04ea54c330 simplified the interface. r=rods Not part of build, this checkin is for the Debug plugin.
git-svn-id: svn://10.0.0.236/trunk@130439 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:36:30 +00:00
axel%pike.org
698c969855 not part of build. Move to urns, so results are portable. Only add files with both source and style. Some of the logic is by peterv.
git-svn-id: svn://10.0.0.236/trunk@130438 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:25:16 +00:00
roc+%cs.cmu.edu
a87764874f Bug 170629. Back out GetBorderAndPadding usage in nsBoxFrame to fix layout regression. r=karnaze,sr=kin
git-svn-id: svn://10.0.0.236/trunk@130437 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:23:34 +00:00
axel%pike.org
7d1da8bc90 not part of build. Fix stats and output datasources. Don't work on the database, but on the separate datasources, have a in-memory ds for each. Speedup by removing the datasource observer.
git-svn-id: svn://10.0.0.236/trunk@130436 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:23:23 +00:00
dougt%netscape.com
d0657b473a no more nsComponentManager:: in inline fu. sr=darin
git-svn-id: svn://10.0.0.236/trunk@130435 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:19:41 +00:00
timeless%mac.com
a1bceab28c Bug 22056 Show toolbars as text/icons/both
r=biesi sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@130434 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:18:56 +00:00
dougt%netscape.com
4cd3ac5a72 Moves uploadStream to nsIUploadChannel. r=neeti@netscape.com, sr=darin@netscape.com, b=100601
git-svn-id: svn://10.0.0.236/trunk@130433 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 20:15:17 +00:00
aaronl%netscape.com
3702371173 Bug 170745. error occuring while opening compose or mailcompose window. r=akkana, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@130432 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 18:35:36 +00:00
mkaply%us.ibm.com
c915704f67 Urgent OS/2 fix - port change for 164190 to OS/2
git-svn-id: svn://10.0.0.236/trunk@130429 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 17:55:39 +00:00
timeless%mac.com
f80faf06d0 Bug 22056 Show toolbars as text/icons/both
patch by neil@parkwaycc.co.uk r=timeless sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@130425 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 14:50:28 +00:00
mkaply%us.ibm.com
711dcebb30 OS/2 bustage 2
git-svn-id: svn://10.0.0.236/trunk@130424 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 14:18:13 +00:00
mkaply%us.ibm.com
8b93e70c9e OS/2 bustage 1
git-svn-id: svn://10.0.0.236/trunk@130423 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 14:16:08 +00:00
rods%netscape.com
6464ff796e This does two things:
1) When the it returns from the Print Dialog it checks to see if the
PD_PRINTTOFILE flags is set then then set the the info into the PrintSettings
2) IF we are printing to a file, but not a file driver, then check to see if
the file name is the special "FILE:" (as per the MS documentation)
Bug 170332 r=dcone sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130422 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 14:12:14 +00:00
karnaze%netscape.com
57d7acbbf5 bug 167915 - remove 2nd patch of bug 138725 and install the 1st. sr=kin, r=jkeiser.
git-svn-id: svn://10.0.0.236/trunk@130421 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 13:56:40 +00:00
seawood%netscape.com
515d3179ce Let's try that again
git-svn-id: svn://10.0.0.236/trunk@130420 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 12:30:24 +00:00
varga%netscape.com
b8036118cd Fixing Ts regression.
r=peterv


git-svn-id: svn://10.0.0.236/trunk@130419 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 12:26:44 +00:00
ccarlen%netscape.com
4ea79344a0 Bug 118203 - nsLocalFile implementation for Mach-0. r=pinkerton, sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130418 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 12:23:39 +00:00
ccarlen%netscape.com
3632df380f Bug 118203 - nsLocalFile implementation for Mach-0. r=pinkerton, sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130417 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 12:04:50 +00:00
bryner%netscape.com
7de2339127 Fix regression where select dropdowns would not draw on Linux if native theme support was enabled (bug 170672). Only call WidgetStateChanged() if the theme claims to support the widget in question; fix an incorrect frame being passed to WidgetStateChanged. r=hewitt, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@130416 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 10:07:40 +00:00
varga%netscape.com
a94ba7de45 Putting XUL prototype elements on a diet. Bug 26429.
r=ben, sr=brendan


git-svn-id: svn://10.0.0.236/trunk@130415 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 09:56:09 +00:00
antonio.xu%sun.com
c312bc9c91 Patch for bug 169976:IMAP offline:in stand alone mesg window, new folder still enabled
Patch by Harry.Lu@sun.com r=ssu sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130414 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 09:24:44 +00:00
gerv%gerv.net
da63dbfa6e Bug 12282 - General summary reports. Patch by gerv; r=joel.
git-svn-id: svn://10.0.0.236/trunk@130413 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 07:11:45 +00:00
henry.jia%sun.com
a6cb185588 Patch for bug 103040: saving message as file on linux users CRLF and MSG_LINE_BREAK so it mixes the line endings
Patch by leon.zhang@sun.com
r=dmose@netscape.com, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130412 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 06:43:20 +00:00
seawood%netscape.com
3e29f8ac63 Include OS2 specific headers. Attemting to fix tinderbox bustage
git-svn-id: svn://10.0.0.236/trunk@130411 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 06:31:30 +00:00
hyatt%netscape.com
73f2e30ca6 Enabling/disabling extensions works!
git-svn-id: svn://10.0.0.236/trunk@130409 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 06:09:26 +00:00
seawood%netscape.com
b805af063a Fixing typo & static build bustage
git-svn-id: svn://10.0.0.236/trunk@130408 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 06:04:21 +00:00
seawood%netscape.com
708f87c254 BeOS should use Unix/POSIX locale
git-svn-id: svn://10.0.0.236/trunk@130407 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 05:45:23 +00:00
lordpixel%mac.com
88834057fb Checking in to fix Mac optimized tinderboz bustage.
Add chardet directory to optimized Access Paths in i18n.xml codewarrior project.

Approved by Darin (sherif for evening 24th Sep)


git-svn-id: svn://10.0.0.236/trunk@130404 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 03:38:48 +00:00
blakeross%telocity.com
0791262a76 Bump the version to 0.2
git-svn-id: svn://10.0.0.236/trunk@130403 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 02:23:50 +00:00
yokoyama%netscape.com
f830eceaa3 Bug 164204
- Need to create a caret before calling ImmSetCandidateWindow()
  this is a work-around of a bug with MS PinYin.
- Caret is created when we receive StartComposition()
and is destroyed when we receive EndComposition()
- impact only in WinXP with MS PinYin
/r=shanjian; /sr=jst


git-svn-id: svn://10.0.0.236/trunk@130402 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 02:23:01 +00:00
hyatt%netscape.com
42edb77cf4 Woo woo! Extensions show up in the list.
git-svn-id: svn://10.0.0.236/trunk@130401 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 02:10:24 +00:00
hyatt%netscape.com
10ea9f34a3 Fix conflict.
git-svn-id: svn://10.0.0.236/trunk@130400 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 02:06:58 +00:00
hyatt%netscape.com
37311a63de Make mozgestures work as my extension test.
git-svn-id: svn://10.0.0.236/trunk@130399 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 01:50:57 +00:00
ccarlen%netscape.com
a7cc7edbce Fixing Mach-0 bustage
git-svn-id: svn://10.0.0.236/trunk@130398 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 01:45:31 +00:00
aaronl%netscape.com
7aa4d6dbcd Correct nsWebBrowserFind.cpp checkin to fix bustage using NS_NAMED_LITERAL_STRING
git-svn-id: svn://10.0.0.236/trunk@130397 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:56:34 +00:00
alecf%netscape.com
b3b4b8b70c fix MachO bustage - MachO should be using mac locale, not unix
git-svn-id: svn://10.0.0.236/trunk@130396 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:52:16 +00:00
darin%netscape.com
dbd71ea612 fixing aaronl's bustage
git-svn-id: svn://10.0.0.236/trunk@130395 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:42:40 +00:00
blakeross%telocity.com
84db20fff1 Remove unused files.
git-svn-id: svn://10.0.0.236/trunk@130394 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:31:10 +00:00
blakeross%telocity.com
50391fbbe5 Removing unused files.
git-svn-id: svn://10.0.0.236/trunk@130393 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:30:50 +00:00
blakeross%telocity.com
906f6f83a3 readding some advanced prefs.
git-svn-id: svn://10.0.0.236/trunk@130392 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-25 00:29:20 +00:00
chanial%noos.fr
fcc4d74b67 bug 170537: set as personal toolbar folder does not work
git-svn-id: svn://10.0.0.236/trunk@130391 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 23:53:29 +00:00
alecf%netscape.com
c145fcfce0 oops, remove ucharutilmodule.cpp from the mac build - don't know how it stayed there
git-svn-id: svn://10.0.0.236/trunk@130389 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 23:05:55 +00:00
mkaply%us.ibm.com
068d1d2043 OS/2 only - not part of build - rewrite isFat routine
git-svn-id: svn://10.0.0.236/trunk@130388 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:57:48 +00:00
mkaply%us.ibm.com
ff37d3d554 OS/2 only - not part of build - continuing OS/2 uninstall work
git-svn-id: svn://10.0.0.236/trunk@130387 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:54:48 +00:00
mkaply%us.ibm.com
1c54e53dc3 OS/2 doesn't need defaults_info.ini - misname
git-svn-id: svn://10.0.0.236/trunk@130386 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:51:48 +00:00
aaronl%netscape.com
f01d5624ca Bug 167921 - allow web pages to use preventDefault so that typeaheadfind doesn't interfere with them. r=kyle, sr=brendan. Also fixes bug 165315 - typeaheadfind shouldn't hardcode kbd shortcuts, bug 77704 - add accelerator for find prev (also added menu item). Also fixes bug 167783 - ctrl+g for typeaheadfind after repeating characters. Also fixes bug 168408 - backspace after bad character typed should do the right thing, but don't add bad characters to buffer. Also fixes bug 71832 - add F3 for find next (also shift+F3). Bug 157669 - Alt+D to select location bar (IE keyboard compatibility), r=sgehani, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@130385 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:46:50 +00:00
timeless%mac.com
149827d623 Bug 170587 popup.xml, error in method sizeTo()
patch by afatecha@idea.com.py r=timeless rs=bz


git-svn-id: svn://10.0.0.236/trunk@130384 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:31:53 +00:00
rogerl%netscape.com
3931743ddd Completed arithmetic (except Long & float32). Gc work. Hooked up Math class
git-svn-id: svn://10.0.0.236/trunk@130383 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:22:04 +00:00
mkaply%us.ibm.com
55f5222580 OS/2 only - not part of build - nsinstall changes to get uninstaller working
git-svn-id: svn://10.0.0.236/trunk@130382 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:20:24 +00:00
alecf%netscape.com
c360f03055 oops, get embedding side of bug 169498, sr=bryner, r=ftang
git-svn-id: svn://10.0.0.236/trunk@130381 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:16:53 +00:00
karnaze%netscape.com
35e78f4c8c bug 157915 - Use the parent of the continued frame when calling DeleteChildsNextInFlow. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@130380 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:13:20 +00:00
alecf%netscape.com
1e18b99e3b oops, remove obsolete gfx2 cruft leftover from bug 168048
git-svn-id: svn://10.0.0.236/trunk@130379 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:11:21 +00:00
alecf%netscape.com
d79e513119 removing files no longer part of build due to bug 169498
git-svn-id: svn://10.0.0.236/trunk@130378 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:09:32 +00:00
blakeross%telocity.com
fa026f68c9 Add new connection pref panel.
git-svn-id: svn://10.0.0.236/trunk@130376 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:09:30 +00:00
alecf%netscape.com
9401ce46b4 oops, typo fix
git-svn-id: svn://10.0.0.236/trunk@130375 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 22:00:53 +00:00
alecf%netscape.com
1f0bf33276 bug 169498 - combine i18n libraries into one. sr=bryner, r=ftang
git-svn-id: svn://10.0.0.236/trunk@130374 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 21:50:05 +00:00
cbiesinger%web.de
6660ffd3ac Bug 169477 r=paper sr=alecf
favicon color palette reversed or too red


git-svn-id: svn://10.0.0.236/trunk@130373 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 21:21:52 +00:00
glazman%netscape.com
0da7dd55e5 -- not part of the build --
CaScadeS only, doc only change


git-svn-id: svn://10.0.0.236/trunk@130372 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 21:06:12 +00:00
karnaze%netscape.com
b70e7f9f22 bug 169620 - don't pass in negative avail widths, don't add/subtract from NS_UNCONSTRAINEDSIZE, make HR's desired width at least as big as its me width. sr=kin, r=dbaron
git-svn-id: svn://10.0.0.236/trunk@130371 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 21:02:20 +00:00
morse%netscape.com
3dd3222f27 bug 168585, cookie and password order gets reversed, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@130370 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 20:45:53 +00:00
glazman%netscape.com
340f6df3b3 -- not part of the build --
CaScadeS only

fixing bustage in NS7 and Moz<trunk because dependency to editorShell was removed
fixing horked "Choose file buttons" in NS7 and Moz<trunk because of recent changes in nsIIOService


git-svn-id: svn://10.0.0.236/trunk@130369 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 20:38:08 +00:00
blakeross%telocity.com
979df19680 Use external handler for mail/news.
git-svn-id: svn://10.0.0.236/trunk@130366 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 20:04:54 +00:00
rpotts%netscape.com
3a57250c07 bug #169583 (r=jst, sr=darin) URILoader should allow nsIContentHandler::DoContent() to fail...
git-svn-id: svn://10.0.0.236/trunk@130365 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 19:53:43 +00:00
timeless%mac.com
daae3f2fc6 Bug 22056 Show toolbars as text/icons/both
patch by neil@parkwaycc.co.uk r=timeless sr=bz
using xbl:inherits


git-svn-id: svn://10.0.0.236/trunk@130363 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 19:40:29 +00:00
pavlov%netscape.com
4d86a90bee pulling gfx2/ from GFX2_20001016_BRANCH to the trunk
git-svn-id: svn://10.0.0.236/trunk@130362 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 19:15:52 +00:00
wtc%netscape.com
7c882c554b Bug 166894: destroy nssTrust before returning from STAN_ChangeCertTrust.
git-svn-id: svn://10.0.0.236/trunk@130360 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 18:47:33 +00:00
wtc%netscape.com
d4af3f69c1 Bug 169944: declare PK11_TokenKeyGen in pk11func.h and export it from the
nss3 shared library.
Modified Files: nss/nss.def pk11wrap/pk11func.h


git-svn-id: svn://10.0.0.236/trunk@130359 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 18:40:29 +00:00
igor%mir2.org
1802d4ebe7 Fixing 169830: I replaced in jsFunction_concat calls to hasLengthPropert by ScriptRuntime.instanceOf and as hasLengthPropert is no longer used, I removed it as well.
git-svn-id: svn://10.0.0.236/trunk@130356 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 15:57:58 +00:00
jdunn%netscape.com
e457f74458 AIX requires symbols to be resolved at link time:
resolving NS_NewTransformMediator
# 136401
r=cls@seawood.org


git-svn-id: svn://10.0.0.236/trunk@130355 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:36:18 +00:00
wtc%netscape.com
bfeaab7530 Bug 168993: PR_Poll should clear out_flags for null fd's. r=jgmyers.
Modified files: bfile.c os2poll.c uxpoll.c w32poll.c ptio.c


git-svn-id: svn://10.0.0.236/trunk@130354 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:24:46 +00:00
glazman%netscape.com
52f70d1936 -- not part of the build --
CaScadeS only

- never rebuild the list of stylesheets from scratch
- fix bug in line-height support
- support for -moz-opacity
- fixes buggy @import support
- workaround for async stylesheet loading


git-svn-id: svn://10.0.0.236/trunk@130353 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:24:24 +00:00
igor%mir2.org
61f94cb3bf In newObject pass top level scope to the constructor, not ctor.getParentScope() to take into account hasCompileFunctionsWithDynamicScope()
git-svn-id: svn://10.0.0.236/trunk@130351 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:14:00 +00:00
bienvenu%netscape.com
a72ce9bd34 allow mork to open db's with more than 64K rows, with help from leon.zhang@sun.com r=cavin, sr=alecf, 105497
git-svn-id: svn://10.0.0.236/trunk@130350 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:11:01 +00:00
igor%mir2.org
537ca4e14f In getClassPrototype replace ScriptRuntime.getTopLevelProp by getProperty to avoid double call to getTopLevelScope
git-svn-id: svn://10.0.0.236/trunk@130349 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:10:53 +00:00
igor%mir2.org
98b5068af7 In jsFunction_concat inline ScriptRuntime.newObject to throw JavaScriptException if array constructor throws one and avoid double call to ScriptableObject.getTopLevelScope()
git-svn-id: svn://10.0.0.236/trunk@130348 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:08:22 +00:00
igor%mir2.org
1304179314 Change ScriptRuntime.getTopLevelPropery to call ScriptableObject.getProperty in place of explicit loop over the prototype chain. It makes sure that all Scriptable.get(property, start) on the prototype chain are called with a proper start value.
Add getExistingCtor to get existing constructor property or throw an exception.


git-svn-id: svn://10.0.0.236/trunk@130347 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 14:05:24 +00:00
timeless%mac.com
8a75afb6ab Bug 166775 Remove unused _IMPL_NS_APPSHELL defines
Deleting unused file
r=bryner


git-svn-id: svn://10.0.0.236/trunk@130346 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 13:42:44 +00:00
brade%netscape.com
074f22a2c2 remove EditingHTML() stub and its usage; bug 169514, r=mjudge, sr=kin (with clean requested by kin)
git-svn-id: svn://10.0.0.236/trunk@130345 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 13:29:28 +00:00
jdunn%netscape.com
980b0eb394 fix AIX build issues: c-style comments must end before next begins and
the last item in an enum shouldn't have a ","
sr=blizzard@mozilla.org
r=Roland.Mainz@informatik.med.uni-giessen.de
submitted by pkw@austin.ibm.com
# 168531


git-svn-id: svn://10.0.0.236/trunk@130343 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 12:49:42 +00:00
pete.zha%sun.com
1fcff5a387 Browser crash when close print preview in a page has fixed DIV
bug=163800, this patch is to backout previou checkin for this bug to reslove layout regression
r=rods@netscape.com sr=roc+moz@cs.cmu.edu


git-svn-id: svn://10.0.0.236/trunk@130342 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 11:53:20 +00:00
roc+%cs.cmu.edu
82eff2652c Bug 169610. XUL boxes should use GetBorderAndPadding rather than relying on HTMLReflowState's computed border and padding. r=bryner,sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@130341 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 11:46:24 +00:00
roc+%cs.cmu.edu
fe441abc3a Bug 75121. Incrementally reflow absolute frames without doing a resize-reflow of the container. Patch by dbaron and roc. r=dbaron,r=roc,sr=kin
git-svn-id: svn://10.0.0.236/trunk@130340 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 11:43:48 +00:00
igor%mir2.org
653b9e5706 Remove the minimalAllocation field and instead pre-allocate data array in the constructor if necessary.
git-svn-id: svn://10.0.0.236/trunk@130339 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 11:21:19 +00:00
igor%mir2.org
78f34a47e7 Change NativeArray.getLengthProperty to return long instead of double as its results are always uint32 and adjust its usage accordingly . Fix Context.getElements documentation to state that it returns empty array, not null, if object does not have a reasonable length property.
git-svn-id: svn://10.0.0.236/trunk@130338 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 09:29:27 +00:00
hyatt%netscape.com
08349555a1 Fix autocomplete CSS with the same fix the Mac CSS has for autocomplete. Followup to previous checkin.
git-svn-id: svn://10.0.0.236/trunk@130337 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 09:07:06 +00:00
hyatt%netscape.com
f499414486 Fix autocomplete.
git-svn-id: svn://10.0.0.236/trunk@130336 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 09:06:30 +00:00
hyatt%netscape.com
1ec33d82f0 Fix for 115743. r=pavlov, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@130334 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 08:23:48 +00:00
glazman%netscape.com
2d08e4ac57 Add support for :-moz-selection CSS3 pseudo-element. See test case in bug. Should become ::selection once support for '::' parsing is implemented; b=167068, r=mjudge, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130333 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 08:13:05 +00:00
brendan%mozilla.org
ae9bf47126 Don't override the default accessibility.tabfocus setting, it's a new millennium and the default build isn't going back to Motif-land (170429, r=blizzard, sr=hyatt).
git-svn-id: svn://10.0.0.236/trunk@130332 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 05:11:25 +00:00
blakeross%telocity.com
324564729c Oops, toolbar, not bar
git-svn-id: svn://10.0.0.236/trunk@130330 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:53:08 +00:00
blakeross%telocity.com
f37d93acb9 Personal Toolbar -> Bookmarks Toolbar
git-svn-id: svn://10.0.0.236/trunk@130329 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:52:51 +00:00
blakeross%telocity.com
20753b8e8c Removing an old hack, and some unused prefs.
git-svn-id: svn://10.0.0.236/trunk@130328 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:39:45 +00:00
dbaron%fas.harvard.edu
44f30c6540 Remember to increment gRefCnt so we don't leak global variables. sr=alecf r=bryner b=170179
git-svn-id: svn://10.0.0.236/trunk@130327 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:20:24 +00:00
blakeross%telocity.com
a9fb7903de Removing another unused pref.
git-svn-id: svn://10.0.0.236/trunk@130326 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:17:30 +00:00
hyatt%netscape.com
c72aaefe6b Fix the url bar so that the text isn't lost when you customize.
git-svn-id: svn://10.0.0.236/trunk@130325 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:11:16 +00:00
hyatt%netscape.com
ff7c9a7868 Make url bar fully draggable in the customize toolbar dialog.
git-svn-id: svn://10.0.0.236/trunk@130324 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:08:45 +00:00
bryner%netscape.com
8a5adf06ff Stop incorrectly notifying window watcher that a window is active when its focus controller is deactivated. This was contributing to a crash because a window was set as active after it had been unregistered, leaving window watcher with a dangling pointer. Bug 167233, r=danm, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@130323 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:05:27 +00:00
kaie%netscape.com
f7f78f3d94 b=170438 Crash opening cert manager
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130322 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 03:00:37 +00:00
kaie%netscape.com
3b4c4492ec b=170359 Make sure new code from bug 168448 uses NS_INIT_ISUPPORTS
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130321 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 02:57:51 +00:00
hyatt%netscape.com
3b68383aba Working on the extensions prefs panel.
git-svn-id: svn://10.0.0.236/trunk@130320 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 02:37:36 +00:00
hyatt%netscape.com
c91ae8279f Enable add-on chrome packages to ne disabled without being uninstalled. Bug 170432, r=blake, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@130319 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 02:07:20 +00:00
dougt%netscape.com
39061b33ac Backing out 157597
git-svn-id: svn://10.0.0.236/trunk@130318 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:56:37 +00:00
bolian.yin%sun.com
0c4b59d99d Bug 121260, gtk2 needs to have sound hooked up.
patch by robin.lu@sun.com, r=blizzard. This is not for default build.


git-svn-id: svn://10.0.0.236/trunk@130317 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:37:14 +00:00
dbaron%fas.harvard.edu
c2de335afb Fix leaks from nsDocument::mPrincipal by making it an nsCOMPtr. b=170201 r=mstoltz sr=jst
git-svn-id: svn://10.0.0.236/trunk@130316 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:27:44 +00:00
dougt%netscape.com
63df630ac9 exports xpcom tools to sdk r=seawood, b=170275
git-svn-id: svn://10.0.0.236/trunk@130315 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:19:05 +00:00
blizzard%redhat.com
47390f9beb Bug #169094. Regression: " In Composer(edit html),Insert image,link and table not work." Patch from robin.lu@sun.com. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@130314 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:17:19 +00:00
dougt%netscape.com
7cc1f54841 fixes loading data url in nsIURILoader->OpenURI() with 'text/html' content callback results in crash, r=bbaetz, sr=darin, b=170274
git-svn-id: svn://10.0.0.236/trunk@130313 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 01:04:54 +00:00
timeless%mac.com
ca10e1fbc5 Bug 166775 Remove unused _IMPL_NS_APPSHELL defines
patch by walk84@yahoo.com r=bryner


git-svn-id: svn://10.0.0.236/trunk@130312 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 00:56:20 +00:00
timeless%mac.com
8151e47a31 Bug 165400 _IMPL_NS_PLUGIN unused
patch by walk84@yahoo.com r=biesi sr=bryner


git-svn-id: svn://10.0.0.236/trunk@130311 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 00:41:35 +00:00
dbaron%fas.harvard.edu
cc3fa44321 Prevent docloader leaks by making mDocLoader an nsCOMPtr. b=170024 r=peterv sr=jst
git-svn-id: svn://10.0.0.236/trunk@130310 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 00:35:51 +00:00
timeless%mac.com
02a92e09f3 Bug 169782 Build warning caused by checkin for bug 93015
patch by walk84@yahoo.com
r=rpotts sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@130309 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 00:30:09 +00:00
darin%netscape.com
d27333cec6 fixes bug 166479 "DNS: user resinit() to update DNS list when lookup fails
(changing networks, DHCP, etc.)" r=dougt sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@130308 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-24 00:11:54 +00:00
alecf%netscape.com
2063611822 remove some files that are no longer part of the build
git-svn-id: svn://10.0.0.236/trunk@130307 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:54:06 +00:00
wtc%netscape.com
cc42a8d59e Bug 169785: CERT_AddOCSPAcceptableResponses should have a second argument
of type SECOidTag, followed by the optional arguments ..., because it needs
at least one argument of type SECOidTag.  r=nelsonb.


git-svn-id: svn://10.0.0.236/trunk@130306 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:47:49 +00:00
kaie%netscape.com
3784bde01d b=169443 Form submit buttons not working [embedding apps]
r=javi sr=rpotts
Adding files forgotton on earlier checkin


git-svn-id: svn://10.0.0.236/trunk@130305 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:30:22 +00:00
kaie%netscape.com
b2813c2bb0 b=168946 More PSM cleanup
r=javi sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130304 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:23:05 +00:00
kaie%netscape.com
36480443c4 b=168976 Remove RsaPubModulus from nsIX509Cert
r=javi sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130303 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:20:18 +00:00
kaie%netscape.com
1dfa190021 b=169765 View button doesn't work in cert manager
r=javi sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130302 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:16:46 +00:00
kaie%netscape.com
e09c202438 b=170221 Syntax error opening message security info
r=javi sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130301 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:14:39 +00:00
kaie%netscape.com
4a3cb194df b=169943 Form submit buttons not working [embedding apps]
Moving implementation of security warnings from pippki to pipboot.
r=javi sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@130300 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 23:11:10 +00:00
depstein%netscape.com
81f0eaead3 Common table for Editor Embedding tests. Added NS_NewChannel test (Tests menu). not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130299 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 22:29:24 +00:00
mkaply%us.ibm.com
749b5872ab OS/2 only - not part of build - uninstall - better support for killing processes
git-svn-id: svn://10.0.0.236/trunk@130298 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 22:17:07 +00:00
mkaply%us.ibm.com
37aa4b9eb1 OS/2 only - not part of build - uninstall support
git-svn-id: svn://10.0.0.236/trunk@130297 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 22:16:17 +00:00
hyatt%netscape.com
b97657aaae Change default toolbar set.
git-svn-id: svn://10.0.0.236/trunk@130295 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 22:09:45 +00:00
myk%mozilla.org
d2b0de06a5 Fix for bug 169197: Explicitly identifies RDF 'about' and 'resource' tags as being in the RDF namespace to update deprecated syntax and get some RDF parsers to stop
generating warnings.
r=gerv


git-svn-id: svn://10.0.0.236/trunk@130293 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:46:33 +00:00
dougt%netscape.com
1cae55c238 170369 - autoload xpcom components. r=dveditz@netscape.com, sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130292 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:46:25 +00:00
mkaply%us.ibm.com
91f0dfa442 #168643
r=pedemont, sr=blizzard
OS/2 only - implement GetBounds


git-svn-id: svn://10.0.0.236/trunk@130291 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:35:53 +00:00
nhotta%netscape.com
f7a17d896a Remove keyboard script substitution because it has a conflict with native converter's substitution,
bug 169211, r=shanjian, sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@130290 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:35:20 +00:00
nelsonb%netscape.com
ce59d4e445 Change coding style used in nss/lib/pki to one that works with ctags.
Bug 169999.   Modified Files:
  asymmkey.c certdecode.c certificate.c cryptocontext.c pki3hack.c
  pkibase.c pkistore.c symmkey.c tdcache.c trustdomain.c


git-svn-id: svn://10.0.0.236/trunk@130289 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:32:35 +00:00
wtc%netscape.com
a2219ad21a Bug 169790: renamed CERT_DecodeDERCrlEx to CERT_DecodeDERCrlWithFlags.
Modified files: certdb/cert.h certdb/crl.c nss/nss.def pk11wrap/pk11cert.c


git-svn-id: svn://10.0.0.236/trunk@130288 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:31:47 +00:00
timeless%mac.com
f21e41ccc7 Bug 170392 zap annoying border for who in showbuilds.cgi
r=biesi


git-svn-id: svn://10.0.0.236/trunk@130287 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:29:23 +00:00
chanial%noos.fr
2ed43796aa hide the empty "set as default browser" groupbox on linux in the General pref panel
git-svn-id: svn://10.0.0.236/trunk@130286 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:08:53 +00:00
nhotta%netscape.com
aecce5ba65 Convert formatted date to NCR like we do for string bundles,
bug 169081, r=shanjian, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@130285 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 21:01:24 +00:00
mkaply%us.ibm.com
3cedca6fc4 OS/2 only - not part of build - uninstall work
git-svn-id: svn://10.0.0.236/trunk@130283 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:41:17 +00:00
mkaply%us.ibm.com
0cf846649d OS/2 only - not part of build - proper params for finding files
git-svn-id: svn://10.0.0.236/trunk@130282 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:40:20 +00:00
mkaply%us.ibm.com
5a4d35b456 Remove some dead code and uninstall enablement
git-svn-id: svn://10.0.0.236/trunk@130281 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:39:54 +00:00
mkaply%us.ibm.com
d686854803 More wizard fixes - beginning of uninstall
git-svn-id: svn://10.0.0.236/trunk@130280 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:39:17 +00:00
jdunn%netscape.com
25bd17a17d adding support for hpux ia64/11.20, also strip off MOZ_OPTIMIZE_FLAGS
(instead of just -O) for hpux
r=cls@seawood.org
# 136163


git-svn-id: svn://10.0.0.236/trunk@130279 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:31:30 +00:00
kaie%netscape.com
9ab7f38615 b=169932 Replace wstring with AString in IDL
r=darin sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130278 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:17:16 +00:00
naving%netscape.com
9c58888672 134158 r=cavin sr=bienvenu Made it so that new default accounts download pop3 msgs by default (after logging in)
git-svn-id: svn://10.0.0.236/trunk@130277 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 20:05:51 +00:00
naving%netscape.com
f77dd3d757 122373 r=cavin sr=bienvenu Made it so that subsequent deletes/moves fail if last one is still in progress. fixes inbox/trash corruption
git-svn-id: svn://10.0.0.236/trunk@130275 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:43:56 +00:00
jkeiser%netscape.com
b6c4cce5ef Make input type=text width bigger (Rick.Ju@sun.com's patch, bug 92980), r=jkeiser@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130274 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:43:48 +00:00
dougt%netscape.com
579d9ec4d2 Further improvement. r=drepper@redhat.com, sr=brendan@mozilla.org, b=168508
git-svn-id: svn://10.0.0.236/trunk@130272 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:39:26 +00:00
darin%netscape.com
1f66951fca removes some printfs b=134691 patch=pkw@us.ibm.com r=nobody sr=darin
git-svn-id: svn://10.0.0.236/trunk@130271 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:29:05 +00:00
blakeross%telocity.com
2d4bd9ad63 Fixing a stupid oops from the patch for 153946.
git-svn-id: svn://10.0.0.236/trunk@130270 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:26:49 +00:00
yokoyama%netscape.com
1a1a252d7a 104934 convert moz to unicode app.
Because of the scroll-bar blocker,
my first patch was rolled back.
Trying this again with scroll-bar fix.
\\widget and Windows platforms only.
/r=shanjian, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@130268 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:16:58 +00:00
blakeross%telocity.com
30b4c7b6ca Fix jsconsole to open our view source window.
git-svn-id: svn://10.0.0.236/trunk@130267 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:13:51 +00:00
dougt%netscape.com
53db565687 fixes AIX bustage - patch by pkw@us.ibm.com
git-svn-id: svn://10.0.0.236/trunk@130266 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 19:13:28 +00:00
blakeross%telocity.com
a97e500896 Fix lang.version.
git-svn-id: svn://10.0.0.236/trunk@130263 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:52:59 +00:00
blakeross%telocity.com
704b99282e Remove unused pref css.allow.
git-svn-id: svn://10.0.0.236/trunk@130262 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:51:43 +00:00
timeless%mac.com
2a9ac0110b Bug 159070 installer claimed my everything install did not include PSM
r=dveditz sr=darin


git-svn-id: svn://10.0.0.236/trunk@130261 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:50:37 +00:00
naving%netscape.com
f12d926b2f 169372 r=cavin sr=bienvenu Made it so that ctrl-shift-C marks messages read in the quick search view and
not for folder


git-svn-id: svn://10.0.0.236/trunk@130258 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:42:47 +00:00
brendan%mozilla.org
1c2f1880d2 - String.prototype.match, .search, and .replace all use match_or_replace as
a common subroutine, but only replace might need to dereference the regexp
  created from a non-regexp-type argument, which is converted to string and
  compiled into a regexp data struct unowned by any rooted object.  This case
  was broken: a dangling GlobData.regexp pointer could be dereferenced in the
  "lambda replace" code under str_replace, in find_replen, *after* the call
  to match_or_replace had destroyed the regexp and returned to str_replace.
  Bug 167658 reported the symptoms.
- Consolidate GlobData members into a flags word, avoiding yet another ad hoc
  paramter to m_or_r (forceFlat).
- Use a local root in str_match to avoid adding and removing a global root.


git-svn-id: svn://10.0.0.236/trunk@130257 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:33:17 +00:00
mikep%oeone.com
f49c153439 Fixing bug 170351, adding in UTF-8 support for pref stored strings (from AJB)
git-svn-id: svn://10.0.0.236/trunk@130256 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:30:27 +00:00
darin%netscape.com
b2b2e0a25e tweak to checkin for bug 105340 r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@130255 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 18:06:22 +00:00
dougt%netscape.com
b41028152d fixes 170070. wrong parsing of dates in ftp-listings. r=neeti, sr=darin
git-svn-id: svn://10.0.0.236/trunk@130252 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 17:48:12 +00:00
dougt%netscape.com
38458ec52d removing nsCRT reference. 141451.
git-svn-id: svn://10.0.0.236/trunk@130251 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 17:36:35 +00:00
cmanske%netscape.com
24399b90ef Rearrange initialization of member vars to avoid build warning, fix by walker84@yahoo.com, b=169780, r=cmanske, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130250 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 17:34:50 +00:00
tor%cs.brown.edu
75156df070 Bug 125436 - log libpng messages instead of spewing them to stderr.
r=biesi, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@130249 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 17:34:21 +00:00
dougt%netscape.com
d7be4a17ef Relanding 157597 - Make embedding base and examples use XPCOM Glue. r=adamlock, sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@130248 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 17:21:47 +00:00
cbiesinger%web.de
f8cd5c4215 bug 170219 patch originally by jani.lehtinen@oulu.fi brought to patch form by ajschult@eos.ncsu.edu r=biesi sr=bzbarsky
misspelled #define name


git-svn-id: svn://10.0.0.236/trunk@130243 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 16:36:51 +00:00
rogerl%netscape.com
9fe00a0148 Math class definition.
git-svn-id: svn://10.0.0.236/trunk@130240 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 14:40:06 +00:00
leaf%mozilla.org
dcac29a6b9 Automated update
git-svn-id: svn://10.0.0.236/trunk@130239 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 12:24:49 +00:00
cbiesinger%web.de
b42e76eb1e missed that file for last checkin
git-svn-id: svn://10.0.0.236/trunk@130238 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 12:11:01 +00:00
cbiesinger%web.de
3146b4d8ed bug 169483 patch by Roland.Mainz@informatik.med.uni-giessen.de r=cls/roc+moz sr=kin
git-svn-id: svn://10.0.0.236/trunk@130237 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 12:10:28 +00:00
gerv%gerv.net
e8dee5dea2 Bug 170064 - Change error API again to allow vars to be passed in the call. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@130236 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 07:12:12 +00:00
darin%netscape.com
e3893786d1 more fallout from bug 166792 (thx biesi!)
git-svn-id: svn://10.0.0.236/trunk@130235 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 06:27:03 +00:00
bryner%netscape.com
119221bec0 Backing out checkin for bug 104934 because it caused regression bug 170184. a=asa.
git-svn-id: svn://10.0.0.236/trunk@130234 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 06:21:49 +00:00
asa%mozilla.org
a6c9dd6ddf comment out themes pref panel until we fork themes the rest of the way. r=hyatt
git-svn-id: svn://10.0.0.236/trunk@130233 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 05:41:25 +00:00
hyatt%netscape.com
f4af415247 More 169373 goodness.
git-svn-id: svn://10.0.0.236/trunk@130232 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 05:38:30 +00:00
bratell%lysator.liu.se
e770415cc3 Bug 155623, remove unused pref css.allow. r/sr=bzbarsky/dbaron
git-svn-id: svn://10.0.0.236/trunk@130231 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 05:29:58 +00:00
hyatt%netscape.com
3c92b8b8ed Tweak to previous patch for form controls. r=bryner/sr=blake
git-svn-id: svn://10.0.0.236/trunk@130230 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 03:55:35 +00:00
blakeross%telocity.com
48fccc6a98 Update release notes url.
git-svn-id: svn://10.0.0.236/trunk@130229 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 03:18:27 +00:00
naving%netscape.com
e224032dfd 168533 backing out this needs to go with other filter enhancements
git-svn-id: svn://10.0.0.236/trunk@130228 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 03:11:10 +00:00
darin%netscape.com
d926bf2194 fixes bug 105340 "Proxy: manual config uses trailing spaces" r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@130227 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 01:31:17 +00:00
bryner%netscape.com
6bffbf837c Use Windows XP style scrollbars for select controls (bug 170142). r=hewitt, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@130226 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 01:29:45 +00:00
dean_tessman%hotmail.com
d9fe2e30b9 Bug 64076 - xul listbox: Show dotted border around focused item
r=andreww@netscape.com, sr=hewitt@netscape.com


git-svn-id: svn://10.0.0.236/trunk@130225 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-23 01:00:33 +00:00
varada%netscape.com
8f697df0c0 fix for 167834-Cancelling from advanced smtp settings dialog should work;146488-Cant send any Smtp messages; 170228 -remove server Advanced Button when required by isp r/sr= sspitzer
git-svn-id: svn://10.0.0.236/trunk@130224 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 22:58:07 +00:00
kairo%kairo.at
c6e91e9f1e bug 168923 - lang.version is still 1.1b: change lang.version and content.version to 1.2a, r=biesi, sr=bz
git-svn-id: svn://10.0.0.236/trunk@130223 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 22:14:25 +00:00
pschwartau%netscape.com
97e39025a6 Initial add. Regression test for bug 170193.
git-svn-id: svn://10.0.0.236/trunk@130222 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 22:11:40 +00:00
chanial%noos.fr
d909770a56 fix for bug 170222: middle/modifier click should not load in the current tab
git-svn-id: svn://10.0.0.236/trunk@130221 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 22:02:27 +00:00
gerv%gerv.net
670130e9f7 Bug 170075 - Mid-air collision pages should be titled as such. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@130220 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 20:28:25 +00:00
brendan%mozilla.org
63662b25cc Fix middle-delete-function-with-duplicate-formals (170193, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@130219 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 19:34:07 +00:00
bugreport%peshkin.net
2194da2336 bug 157756 - Groups_20020716_Branch Tracking : > 55 groups now supported
r=bbaetz, gerv


git-svn-id: svn://10.0.0.236/trunk@130217 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 17:15:13 +00:00
chanial%noos.fr
9f84ad5013 fix bug 170157: bookmarks should be read regardless of the bookmark toolbar being visible or not.
git-svn-id: svn://10.0.0.236/trunk@130216 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 17:12:08 +00:00
naving%netscape.com
5f471b3fc8 168553 r=cavin sr=bienvenu forked rules.dat to rules1.dat. All the filter rules will be stored in rules1.dat going forward.
git-svn-id: svn://10.0.0.236/trunk@130213 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 06:24:50 +00:00
despotdaemon%netscape.com
c98386ed3c Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@130212 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-22 04:14:38 +00:00
dbaron%fas.harvard.edu
3c25023f5d Fix method-hiding warnings related to nsIRenderingContext::DrawImage variants. b=170107 r=tor sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@130210 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 21:30:24 +00:00
sdagley%netscape.com
91997a8736 Part of #152231 - moving InternetConfigService to uriloader from appshell. These changes are for the CFM builds. r=ccarlen,sr=scc
git-svn-id: svn://10.0.0.236/trunk@130208 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 19:08:45 +00:00
yokoyama%netscape.com
edbe061172 Bug 104934 Convert Mozilla to Unicode app
Turning MOZ_UNICODE flag on by default.
(all the codes are in \\widget\module only)
Only impact on Windows platforms.

This makes mozilla as a true unicode application
under Windows.
/r=shanjian, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@130207 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 18:59:30 +00:00
chanial%noos.fr
7f6aa54820 fixing default proxy icons
git-svn-id: svn://10.0.0.236/trunk@130206 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 18:09:13 +00:00
justdave%syndicomm.com
15d5370c4f Fix for bug 63601: Recommend filename when downloading attachments (except in IE4, which chokes on the Content-Disposition header)
Patch by Daniel Raichle <draichle@gmx.net> and Dave Miller <justdave@syndicomm.com>
r= bbaetz, gerv


git-svn-id: svn://10.0.0.236/trunk@130205 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 16:57:12 +00:00
gerv%gerv.net
1fb24e2472 Bug 108987 - Linkify script to use quoteUrls on texts provided by user. Patch by gerv; r=kiko.
git-svn-id: svn://10.0.0.236/trunk@130204 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 15:17:09 +00:00
tor%cs.brown.edu
1b6694bd49 Bug 78497 - make 1-bit alpha images respect clip region. r=pavlov, sr=roc
git-svn-id: svn://10.0.0.236/trunk@130203 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 08:52:34 +00:00
bryner%netscape.com
1da7619ee4 Fix a problem with the prefs file being deleted at shutdown on Windows, introduced by the checkin for bug 164190. Windows' implementation of nsLocalFile::CopyMove was assuming that a null parent directory meant we should always rename - not true. r=hewitt, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@130202 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 08:26:02 +00:00
depstein%netscape.com
61cd77360c Hooked up command data table to nsICmdParam tests. Table to be revised at later time. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130201 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 08:06:16 +00:00
pschwartau%netscape.com
4dc1f5add5 Initial add. Regression test for bug 169534.
git-svn-id: svn://10.0.0.236/trunk@130197 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 03:17:25 +00:00
danm%netscape.com
83793a942b en/disable individual items in popup manager menu rather than hiding or disabling the entire menu. makes it work on the Mac. bug 166442 r=brendan,morse
git-svn-id: svn://10.0.0.236/trunk@130195 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 02:12:37 +00:00
depstein%netscape.com
f34cdbf8df Added 'data:' url to nsIRequest tests. Now invoking simple string compare for input/output URL matching. GetTheURI() now returns the string.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@130194 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 01:51:36 +00:00
sfraser%netscape.com
1a26cc6742 Fix for 137295 (gaps in images on Mac), this time correctly intersecting the regions. r=pinkerton, sr=beard
git-svn-id: svn://10.0.0.236/trunk@130193 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 01:08:23 +00:00
hyatt%netscape.com
231ada71e5 Fix for 169373, make HTML form controls fully support native look on Windows XP. r/sr=hewitt/blake
git-svn-id: svn://10.0.0.236/trunk@130192 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-21 01:03:38 +00:00
leaf%mozilla.org
4435028e5f removing file from bogus file copy. file shouldn't be in this location!
git-svn-id: svn://10.0.0.236/trunk@130188 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 23:18:04 +00:00
ccarlen%netscape.com
ef346bf73c Bug 162845 - PPEmbed needs native implementation of download UI. r=pink/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130187 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:58:56 +00:00
dbaron%fas.harvard.edu
a3c705af12 Fix leak of nsDOMEvent (and thus nsPresContext) caused by the presence of frames or iframes by avoiding early return so we don't skip necessary manual refcounting. b=160268 r=peterv sr=jst
git-svn-id: svn://10.0.0.236/trunk@130186 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:58:40 +00:00
ccarlen%netscape.com
2661fdb224 Adding new files for bug 162845 - PPEmbed needs native implementation of download UI. r=pink/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130185 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:56:13 +00:00
dougt%netscape.com
d52c17967c Sets the proper content type on the channel so not to confuse upstream clients r=darin, sr=rpotts, b=169617
git-svn-id: svn://10.0.0.236/trunk@130184 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:43:15 +00:00
dougt%netscape.com
b087ce39fc Fixes non idle timers. This is fixes a regression caused by the last timer changes. r=rpotts@netscape.com, sr-darin@netscape.com, b=167841.
git-svn-id: svn://10.0.0.236/trunk@130183 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:32:32 +00:00
gerv%gerv.net
e0d54ace02 Bug 163114 - Templatise all calls to DisplayError. First patch - attachment.cgi. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@130181 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:26:14 +00:00
dougt%netscape.com
d3e4775ae9 More on XPCOM Glue Is broken on linux. r=rpotts@netscape.com, sr=alecf@netscape.com, b=168584
git-svn-id: svn://10.0.0.236/trunk@130180 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 22:23:24 +00:00
blakeross%telocity.com
2e9d4bb29a Fixing UA.
git-svn-id: svn://10.0.0.236/trunk@130178 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:56:57 +00:00
blakeross%telocity.com
b747bc21b1 Fixing UA.
git-svn-id: svn://10.0.0.236/trunk@130177 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:56:24 +00:00
blakeross%telocity.com
165b78e225 Fixing UA
git-svn-id: svn://10.0.0.236/trunk@130176 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:50:48 +00:00
nicolson%netscape.com
e42ff6000b Fix 169578: PK11_ImportAndReturnPrivateKey sets wrong key type.
git-svn-id: svn://10.0.0.236/trunk@130175 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:48:32 +00:00
rogerl%netscape.com
dfb32f7a59 Merged all latest.
git-svn-id: svn://10.0.0.236/trunk@130174 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:40:36 +00:00
dougt%netscape.com
763916e07c Relanding radha's changes.
git-svn-id: svn://10.0.0.236/trunk@130173 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 21:37:38 +00:00
relyea%netscape.com
12bcb16a99 Fix corrupt listing of nicknames on keys.
Bug 166995.


git-svn-id: svn://10.0.0.236/trunk@130172 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 20:36:44 +00:00
relyea%netscape.com
b1b0398b25 Fix memory leak mozbug 165655, r=wtc
git-svn-id: svn://10.0.0.236/trunk@130171 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 20:36:10 +00:00
bryner%netscape.com
d9bdf3ba3a Fix wrapper script name for Linux.
git-svn-id: svn://10.0.0.236/trunk@130170 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 20:15:35 +00:00
dougt%netscape.com
215283d7be Backing out last checkins
git-svn-id: svn://10.0.0.236/trunk@130169 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 20:06:33 +00:00
radha%netscape.com
5a23a56663 Fix for bug # 159659. urlbar spoofing with wyciwyg://. r=adamlock, mstolz, sr=darin. Make sure normal loads of wyciwyg url don't go through nsDocShell::InternalLoad().
git-svn-id: svn://10.0.0.236/trunk@130166 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 19:10:23 +00:00
dougt%netscape.com
ecb9f5bc85 adds return result
git-svn-id: svn://10.0.0.236/trunk@130165 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 19:06:10 +00:00
dougt%netscape.com
22b4466866 Fixes File: URL's w/ an illegal drive name (4th field) do not show fnf error. b=128909, r=neeti@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130164 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 19:04:46 +00:00
cavin%netscape.com
1c59f539f3 Fix for bug 169219. Check if redirector type is null or an empty string. r=naving, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@130163 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:52:48 +00:00
bnesse%netscape.com
b4e9ee33a0 Fix for bug 164190. nsSafeSaveFile mistreats nsLocalFile, deleting files under one. Patch by sfraser, r=ccarlen, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@130162 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:49:40 +00:00
bnesse%netscape.com
eff509e04d Fix for bug 164925. Remove unused directory key and support code. r=ccarlen, sr=beard.
git-svn-id: svn://10.0.0.236/trunk@130161 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:47:49 +00:00
brendan%mozilla.org
f948d775f1 Fix Array.prototype.concat to special-case and flatten Array arguments (including |this|) only, not any object with array-like .length (169795, r=rogerl, who fixed my tired morning patch).
git-svn-id: svn://10.0.0.236/trunk@130160 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:45:05 +00:00
depstein%netscape.com
896d63c203 Inadvertantly overwrote GRE changes in winEmbedFileLocProvider.cpp. Putting back GRE indicators.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@130159 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:44:22 +00:00
wtc%netscape.com
62346310d0 Removed the duplicate NSS_3.6 section in the previous checkin.
git-svn-id: svn://10.0.0.236/trunk@130157 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 18:02:13 +00:00
pschwartau%netscape.com
9e90727c56 Adding two new sections by igor@icesoft.no.
git-svn-id: svn://10.0.0.236/trunk@130156 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 17:43:16 +00:00
pschwartau%netscape.com
aa87fc7695 Fixing typos.
git-svn-id: svn://10.0.0.236/trunk@130154 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 17:04:08 +00:00
seawood%netscape.com
0dbc26cbd3 Oops. Forgot to account for tarball builds. Assume the worst if cvsco.log doesn't exist.
Fixing verification bustage.


git-svn-id: svn://10.0.0.236/trunk@130153 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 16:49:18 +00:00
pinkerton%netscape.com
b5a217a980 make sure |increment| attribute change notification is sent for horiz scrollbars too. oops ;) (bug 161365, r=bryner/sr=sfraser).
git-svn-id: svn://10.0.0.236/trunk@130152 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 14:50:43 +00:00
mkaply%us.ibm.com
e2136b0cd1 Continuing OS/2 wizard work - we are so close
git-svn-id: svn://10.0.0.236/trunk@130151 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 14:47:38 +00:00
mkaply%us.ibm.com
39bd543dea Continuing OS/2 wizard work - we are so close
git-svn-id: svn://10.0.0.236/trunk@130150 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 14:42:22 +00:00
mkaply%us.ibm.com
cae41b060d No bug - remove unused cruft from OS/2 build
git-svn-id: svn://10.0.0.236/trunk@130149 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 14:41:15 +00:00
mikep%oeone.com
d94459c2f5 Adding another check if you launch calendar from command line.
git-svn-id: svn://10.0.0.236/trunk@130148 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:48:01 +00:00
peterv%netscape.com
3f57e344ed Fix for bug 163810 (Option Object created, own properties added, but Mozilla "forgets" them after some time.). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130147 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:40:53 +00:00
glazman%netscape.com
c4e57c72ba undefined variable error in ComposerCommands.js, b=169860, r=neil@parkwaycc.co.uk, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130146 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:28:31 +00:00
rods%netscape.com
5b46e50a47 we were not setting the values we modified in the DevMode back into the printer driver
Bug 169739 r=dcone sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130145 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:22:51 +00:00
kin%netscape.com
b44ee3ebe9 Fix for bug 159363: Text overlaps image (ESPN.com)
- Place right floaters at the unconstrained right edge during an unconstrained reflow. This ensures that the floater will be repositioned when the constrained reflow comes around.

- Fixed |if| expression that was used to detect whether or not we were trying to do an unconstrained reflow.

r=karnaze@netscape.com  sr=dbaron@fas.harvard.edu


git-svn-id: svn://10.0.0.236/trunk@130144 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:19:54 +00:00
mostafah%oeone.com
1c5756569f Added ability to make windows XPI using 'make winxpi'
git-svn-id: svn://10.0.0.236/trunk@130143 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 13:15:22 +00:00
brade%netscape.com
1190f3a24a remove editorshell usage and fix some commands to emit all of the params needed to work; r=akk, sr=kin (bug 169231)
git-svn-id: svn://10.0.0.236/trunk@130142 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 12:41:24 +00:00
seawood%netscape.com
21b651b881 Generate dependencies automatically when compiling a file on win32.
Bug #1677442 r=pavlov


git-svn-id: svn://10.0.0.236/trunk@130140 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 09:47:59 +00:00
shanjian%netscape.com
984eb760cc #169858 Browser--Can not login CMB website.
Populate frameset charset source of post doc to disable autodetection.
r=jkeiser, jebak, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@130139 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 09:24:54 +00:00
shanjian%netscape.com
1e59843352 #169858 Browser--Can not login CMB website.
Suppress autodetection notification when charset source is higher.
r=jkeiser, jebak, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@130138 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 09:23:02 +00:00
seawood%netscape.com
d101941140 Adding pull targets.
git-svn-id: svn://10.0.0.236/trunk@130137 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 09:15:50 +00:00
seawood%netscape.com
8a9d8d56e5 Adding placeholders to silence cvs warnings
git-svn-id: svn://10.0.0.236/trunk@130136 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 09:14:42 +00:00
seawood%netscape.com
971b3d65f5 Link against BIN_FLAGS when building SIMPLE_PROGRAMS.
Remove extraneous $@ from HOST_LIBRARY ruleset.
Thanks to Stuart Parmenter <pavlov@netscape.com> for the patch.
Bug #158720 r=cls


git-svn-id: svn://10.0.0.236/trunk@130135 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:57:51 +00:00
glazman%netscape.com
3d911d45f9 Fixes a crash when hitting backspace in Composer
b=167543, r=timeless, sr=kin


git-svn-id: svn://10.0.0.236/trunk@130134 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:57:04 +00:00
leaf%mozilla.org
59155b6c17 Automated update
git-svn-id: svn://10.0.0.236/trunk@130133 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:54:50 +00:00
seawood%netscape.com
f18b9c817b Add support for hosting a cross-compile from cygwin.
Thanks to Stuart Parmenter <pavlov@netscape.com> for the patch.
Bug #158720 r=cls


git-svn-id: svn://10.0.0.236/trunk@130132 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:54:29 +00:00
glazman%netscape.com
c5b53110a9 attributes VALIGN on TD and WIDTH/SIZE on HR were not CSSized when the elements are created in CSS mode.
b=169824, r=akkana, sr=kin


git-svn-id: svn://10.0.0.236/trunk@130131 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:53:52 +00:00
seawood%netscape.com
346d47c461 Use separate vars for enabling & disabling c++ rtti & exceptions support.
Turn rtti support on for BeOS by default (since it requires it).
Bug #166400 r=pavlov


git-svn-id: svn://10.0.0.236/trunk@130130 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:50:59 +00:00
seawood%netscape.com
672dbe6a97 Add dependency support for NSS to PSM by checking to see if any NSS files have changed during the checkout.
Bug #167927 r=pavlov


git-svn-id: svn://10.0.0.236/trunk@130129 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:46:21 +00:00
seawood%netscape.com
85ee853575 Make sure that OS_TARGET is set to WINNT if NT is detected by uname.
Bug #161725 r=pavlov


git-svn-id: svn://10.0.0.236/trunk@130128 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:42:29 +00:00
seawood%netscape.com
9e8217ab37 Remove hack to work around NSS' lack of dependencies since it only worked for gcc builds.
Bug #167927 r=wtc


git-svn-id: svn://10.0.0.236/trunk@130127 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 08:35:24 +00:00
rogerl%netscape.com
0a471a10be Added Math class functionality.
git-svn-id: svn://10.0.0.236/trunk@130124 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 06:44:36 +00:00
sfraser%netscape.com
a122662a95 Fix bug 137295 -- gaps in images sometimes. We need to work around a CopyDeepMask bug when the clip region is complex, by restricting the clip region to the image destination rectangle. r=sdagley, sr=scc.
git-svn-id: svn://10.0.0.236/trunk@130123 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 06:33:06 +00:00
hewitt%netscape.com
1f9fa4268c renaming mozbrowser.exe to phoenix.exe and changing profile directory to /Phoenix
git-svn-id: svn://10.0.0.236/trunk@130122 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 05:03:16 +00:00
despotdaemon%netscape.com
3a681bbd69 Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@130121 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 05:02:31 +00:00
jpierre%netscape.com
7b62002613 Fix for 145785 - Need to create signer infos using Subject Key ID. r=relyea
git-svn-id: svn://10.0.0.236/trunk@130120 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:41:47 +00:00
sspitzer%netscape.com
fcd1417f21 whoops, my mistake. we still need that seperator.
git-svn-id: svn://10.0.0.236/trunk@130119 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:28:40 +00:00
jpierre%netscape.com
270625397a Update TC TrustCenter CAs in NSS 3.6 (tip). Fix for 169038
git-svn-id: svn://10.0.0.236/trunk@130118 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:26:55 +00:00
sspitzer%netscape.com
f88b7b818b comment out the seperator, too.
git-svn-id: svn://10.0.0.236/trunk@130117 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:18:27 +00:00
sspitzer%netscape.com
c2ee3f1e75 comment out some of the spam UI I added, until it's ready.
git-svn-id: svn://10.0.0.236/trunk@130116 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:17:35 +00:00
akkana%netscape.com
d078984295 169756: in text-control mode, tab to password fields too. r=glazman sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@130115 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:10:55 +00:00
despotdaemon%netscape.com
25c2964047 Pseudo-automatic update of changes made by dbaron@fas.harvard.edu.
git-svn-id: svn://10.0.0.236/trunk@130114 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:06:11 +00:00
despotdaemon%netscape.com
ad0b4dfdcb Pseudo-automatic update of changes made by dbaron@fas.harvard.edu.
git-svn-id: svn://10.0.0.236/trunk@130113 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 04:05:52 +00:00
blakeross%telocity.com
3b38271dff Fix 169347 and 169823.
git-svn-id: svn://10.0.0.236/trunk@130112 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 03:52:36 +00:00
bolian.yin%sun.com
aa898ce081 Bug 169631, MAI should hook the mozilla accessibility after atk-bridge callback with get_application
git-svn-id: svn://10.0.0.236/trunk@130111 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 03:48:22 +00:00
bolian.yin%sun.com
20245c77c4 Bug 169632, deal with event nsIAccessibleEventListener::EVENT_REORDER.
NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@130110 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 03:47:12 +00:00
pschwartau%netscape.com
99c2132e14 Initial add. Tests ECMA-262 Edition 3 Section 15.4.4.4. See bug 169795.
git-svn-id: svn://10.0.0.236/trunk@130109 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 03:35:24 +00:00
blakeross%telocity.com
a4ec0edb52 Moving over dbaron's filtering fix, backing out search code for now.
git-svn-id: svn://10.0.0.236/trunk@130108 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:54:41 +00:00
mkaply%us.ibm.com
44a6bdc72b HPUX bustage - need newline at end
git-svn-id: svn://10.0.0.236/trunk@130107 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:43:43 +00:00
timeless%mac.com
d7ba58dd5d Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>)
patch by riceman+bmo@mail.rit.edu r=timeless rs=jag


git-svn-id: svn://10.0.0.236/trunk@130106 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:42:44 +00:00
henry.jia%sun.com
fe532aba08 Patch for bug 133717: Possibly missing a break before falling through into the default case
Patch by leon.zhang@sun.com
r=henry, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@130105 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:40:42 +00:00
blakeross%telocity.com
f3c95a7766 Fixing close button.
git-svn-id: svn://10.0.0.236/trunk@130104 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:31:43 +00:00
jfrancis%netscape.com
71c1bfb9a7 fix for 168336: block operations crossing breaks incorrectly
r=fm
sr=kin


git-svn-id: svn://10.0.0.236/trunk@130103 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:28:55 +00:00
blakeross%telocity.com
e0cb33e4ab More.
git-svn-id: svn://10.0.0.236/trunk@130102 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:27:50 +00:00
jfrancis%netscape.com
fa9c16961e fix for 167893: ordered list not pasted properly. r=cmanske, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130101 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:27:19 +00:00
blakeross%telocity.com
1aad8b9b17 Fix 169348.
git-svn-id: svn://10.0.0.236/trunk@130100 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:27:06 +00:00
kyle.yuan%sun.com
624d265c11 Bug 150590 should be able to type words into <select> - incremental search for item
r=jkeiser, sr=bryner
Support incremental typing navigation for <select>


git-svn-id: svn://10.0.0.236/trunk@130099 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:12:12 +00:00
glazman%netscape.com
2ea99f5786 missing changes in nsHTMLEditor.cpp from bug 167712, solves minor problems in CSS mode of Composer, r=timeless, sr=kin
git-svn-id: svn://10.0.0.236/trunk@130097 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:09:04 +00:00
blakeross%telocity.com
9e917e29ec 167430 - second phoenix window opens mozilla. r=hyatt sr=bryner
git-svn-id: svn://10.0.0.236/trunk@130096 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 02:08:11 +00:00
jpierre%netscape.com
3d90ca4e50 Fix for bug 156042 - crash when CA not issued by a valid CA
git-svn-id: svn://10.0.0.236/trunk@130095 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 01:53:33 +00:00
kmcclusk%netscape.com
519fefa721 On WIN32 only. Dispatch pending paints before dispatching mouse and keyboard events to eliminate paint starvation when dragging or typing r=rods@netscape.com sr=kin@netscape.com bug 163528
git-svn-id: svn://10.0.0.236/trunk@130094 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 01:24:36 +00:00
depstein%netscape.com
72a281ee2a Updated ReadMe. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130093 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 01:17:28 +00:00
peterlubczynski%netscape.com
57f315826e Fixing bug 169753: NPN_GetURL and friends fail if called before NPP_New returns r=av sr=heikki
git-svn-id: svn://10.0.0.236/trunk@130092 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 00:17:28 +00:00
sspitzer%netscape.com
82e628aef9 land spam UI: control panel UI, spam log UI, toolbar button, tools menu, thread pane UI.
currently, hidden by default.  more work to come.  r/sr=bienvenu.  bug #169638


git-svn-id: svn://10.0.0.236/trunk@130091 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 00:04:01 +00:00
radha%netscape.com
f0e694f871 Additional changes related to previous checkin for bug 151061. More error checking per discussion in the bug.
git-svn-id: svn://10.0.0.236/trunk@130090 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 00:03:03 +00:00
sspitzer%netscape.com
883c78f856 mac build fixes for bug #169638
git-svn-id: svn://10.0.0.236/trunk@130089 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-20 00:01:23 +00:00
gerv%gerv.net
97cb7c665b Bug 167476 - unix_timestamp conversion error using MySQL. Patch by finne@stofanet.dk; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@130087 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 23:15:14 +00:00
srilatha%netscape.com
cf6e4c87ce backing out my previous checkin.
git-svn-id: svn://10.0.0.236/trunk@130086 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 23:12:35 +00:00
gerv%gerv.net
20a1ed06ad Bug 152935 - Pref for no notification on Target Milestone change not respected. Patch by jodym@oeone.com; r=bbaetz, gerv.
git-svn-id: svn://10.0.0.236/trunk@130085 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 23:01:16 +00:00
srilatha%netscape.com
47cfabdf16 Fix for bug # 167803. Ensure that mContentTreeOwner is not null.
r=danm, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@130084 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 22:37:37 +00:00
radha%netscape.com
3102eac96e Fix for bug # 151061. Mozilla loses base uri for wyciwyg documents. r=caillon sr=jst.
git-svn-id: svn://10.0.0.236/trunk@130083 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 21:59:34 +00:00
rods%netscape.com
1b7abf58ea Change STF to use an unconstrainad reflow instead of searching for the widest frame
Bug 168961 r=dcone sr=kin


git-svn-id: svn://10.0.0.236/trunk@130082 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 21:45:07 +00:00
mkaply%us.ibm.com
2b788f5bfc Oops - should have been a backslash here - thanks pkw@us.ibm.com
git-svn-id: svn://10.0.0.236/trunk@130081 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 21:17:21 +00:00
gerv%gerv.net
a9858d8274 160476 - boolean chart addition doesn't keep query template format. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@130080 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 21:05:17 +00:00
chanial%noos.fr
5e70b76860 reset the items to be toggled before any transaction
git-svn-id: svn://10.0.0.236/trunk@130079 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 20:45:58 +00:00
myk%mozilla.org
7b4dea9353 Last part of fix for bug 146945: Hack to support format=rdf for legacy applications that don't know to do ctype=rdf instead.
r=gerv


git-svn-id: svn://10.0.0.236/trunk@130078 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 20:17:21 +00:00
myk%mozilla.org
98ff647279 Fix for bug 169713: Added PrintHeader to a few more places that return HTML, and added a $::header_done global variable so two PrintHeader() calls cause the header to be displayed only once.
r=dmose


git-svn-id: svn://10.0.0.236/trunk@130076 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:52:03 +00:00
seawood%netscape.com
290a45b53d OS/2's stat() doesn't like paths that have a trailing / so remove it.
Use nsinstall from $PATH rather than dist/bin
Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Bug #169564 r=cls


git-svn-id: svn://10.0.0.236/trunk@130075 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:48:23 +00:00
alecf%netscape.com
1463e66ed6 argh, missed one file - reverse the order of components and browser, so that the static libs are there at link time
git-svn-id: svn://10.0.0.236/trunk@130074 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:35:42 +00:00
chanial%noos.fr
ed030148eb fix for bug 169698: click-move-release on menuitem not working in the personal toolbar. also middle-click not working in the bookmark menu.
git-svn-id: svn://10.0.0.236/trunk@130073 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:29:06 +00:00
blakeross%telocity.com
a6bc8697a1 ...And remove an unnecessary vbox while I'm here.
git-svn-id: svn://10.0.0.236/trunk@130072 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:16:23 +00:00
blakeross%telocity.com
7086601abb Remove dumb explanatory text.
git-svn-id: svn://10.0.0.236/trunk@130071 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:14:28 +00:00
blakeross%telocity.com
b09264c76b A better fix for the cust. toolbar separator problem.
git-svn-id: svn://10.0.0.236/trunk@130070 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:10:25 +00:00
alecf%netscape.com
79783a7307 remove mozbrowser.xml from the build now that bug 169003 is fixed
git-svn-id: svn://10.0.0.236/trunk@130069 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:09:35 +00:00
alecf%netscape.com
e62cb7d9b5 remove cache.xml from the build now that bug 115217 is fixed
git-svn-id: svn://10.0.0.236/trunk@130068 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:08:39 +00:00
alecf%netscape.com
36310aeb7b bug 169003 - merge the mozbrwsr DLL into the appcomps DLL
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@130067 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 19:00:13 +00:00
blakeross%telocity.com
e999d72591 Fix 169709.
git-svn-id: svn://10.0.0.236/trunk@130066 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:59:02 +00:00
cmanske%netscape.com
d5d32d1268 Forgot part of fix to remove editorshell from dialogs bug: 158881, r=neil@parkwaycc.co.uk, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130065 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:53:36 +00:00
leaf%mozilla.org
d394ca9a75 Automated update
git-svn-id: svn://10.0.0.236/trunk@130064 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:39:42 +00:00
blizzard%redhat.com
daef51632f Bug #156593. Use pkgconfig for libidl-2, not libIDL-config-2. r=cls
git-svn-id: svn://10.0.0.236/trunk@130062 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:34:24 +00:00
alecf%netscape.com
8c337b1e62 fix for bug 115217
merge cache dll into main necko dll for a minor startup improvement
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@130061 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:29:56 +00:00
ian%hixie.ch
8158886354 Typo: colon should be dot to be consistent with everything else in PLIF.
git-svn-id: svn://10.0.0.236/trunk@130060 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 18:23:36 +00:00
mostafah%oeone.com
4611b74950 No longer needed with the gmake build
git-svn-id: svn://10.0.0.236/trunk@130057 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 17:49:13 +00:00
mostafah%oeone.com
271fdcb1bb Changed to UNIX format
git-svn-id: svn://10.0.0.236/trunk@130056 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 17:27:52 +00:00
mostafah%oeone.com
2296d82a26 Removed test directory from XPI distribution
git-svn-id: svn://10.0.0.236/trunk@130055 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 17:23:05 +00:00
mostafah%oeone.com
6891db732c Running files through dos2unix convertor
git-svn-id: svn://10.0.0.236/trunk@130054 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 17:16:50 +00:00
mikep%oeone.com
b8115b4719 Changing to blue.
git-svn-id: svn://10.0.0.236/trunk@130053 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 16:40:20 +00:00
mikep%oeone.com
cb0e2a642b Changing color to orange.
git-svn-id: svn://10.0.0.236/trunk@130052 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 16:38:58 +00:00
mikep%oeone.com
a38465aeb9 Fixing problem with listitem not being deleted from the tree after deleting an item.
git-svn-id: svn://10.0.0.236/trunk@130051 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 16:10:08 +00:00
mikep%oeone.com
b073f9c817 Fixing bug 169416, calendar crashes if reload remote calendars is set.
git-svn-id: svn://10.0.0.236/trunk@130050 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 16:02:00 +00:00
mikep%oeone.com
f0f7d26209 Fixing bug with showing current events for events that start at minight the following day.
git-svn-id: svn://10.0.0.236/trunk@130049 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:48:51 +00:00
mikep%oeone.com
9c808f6e08 Backing out change to make title a description
git-svn-id: svn://10.0.0.236/trunk@130048 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:45:10 +00:00
mikep%oeone.com
6d6cf71b3b New build.
git-svn-id: svn://10.0.0.236/trunk@130047 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:44:33 +00:00
mikep%oeone.com
a636f69dd8 Changes for new build system
git-svn-id: svn://10.0.0.236/trunk@130046 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:42:04 +00:00
mikep%oeone.com
2ac6c14455 Fixing problems related to Mozilla 1.2 changes.
git-svn-id: svn://10.0.0.236/trunk@130045 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:40:44 +00:00
mikep%oeone.com
62130b4b5a Fixing problem with webcal:// links not working.
git-svn-id: svn://10.0.0.236/trunk@130044 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:39:48 +00:00
mostafah%oeone.com
75acb3c6ef Removing misplaced comment
git-svn-id: svn://10.0.0.236/trunk@130043 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:18:07 +00:00
mostafah%oeone.com
5d291e32c5 Turned libical to a static library ( for windows )
git-svn-id: svn://10.0.0.236/trunk@130042 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 15:15:06 +00:00
mkaply%us.ibm.com
6977a8d302 No bug - quick fix for red icons everywhere
git-svn-id: svn://10.0.0.236/trunk@130041 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 14:51:47 +00:00
cmanske%netscape.com
703085082c Restoring previous accesskey since missing DTD change is now checked in.
git-svn-id: svn://10.0.0.236/trunk@130040 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 14:43:14 +00:00
timeless%mac.com
66eab03bb6 Bug 168881 No more syntax highlighting for XML files, possible crashes in nsContentDLF::CreateInstance
r=rbs sr=jst


git-svn-id: svn://10.0.0.236/trunk@130039 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 14:25:53 +00:00
cmanske%netscape.com
2cd6b29123 Part of removing editorShell from Composer dialogs, form dialog work by neil@parkwaycc.co.uk, b=158881, r=cmanske, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@130038 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 14:25:17 +00:00
glazman%netscape.com
4a77e44112 -- not part of the build --
remove CaScadeS' dependency to editorShell; b=169515, r=brade


git-svn-id: svn://10.0.0.236/trunk@130036 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 14:06:28 +00:00
glazman%netscape.com
ccabef4b7d Reverting to v1.35 of the file since 1.36 introduced a bad entity name horking Composer. r=brade
git-svn-id: svn://10.0.0.236/trunk@130035 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 13:30:23 +00:00
chanial%noos.fr
7c97d59d4b backing out last checking
git-svn-id: svn://10.0.0.236/trunk@130034 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 12:56:06 +00:00
sspitzer%netscape.com
bbdd286838 more spam work.
git-svn-id: svn://10.0.0.236/trunk@130032 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 11:32:13 +00:00
chanial%noos.fr
4aced71e3c unhide the bookmarks-toolbar widget at startup
git-svn-id: svn://10.0.0.236/trunk@130031 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 10:25:24 +00:00
sspitzer%netscape.com
1d398b495b more spam work.
git-svn-id: svn://10.0.0.236/trunk@130030 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 08:34:28 +00:00
sspitzer%netscape.com
e517b56e8b spam spam spam egg sausage spam
git-svn-id: svn://10.0.0.236/trunk@130029 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 08:31:12 +00:00
sspitzer%netscape.com
5caa2a73b7 spam work. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130028 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 07:44:10 +00:00
gerv%gerv.net
c6ab49cdb7 Bug 169561 - Speed up UserInGroup by using cached information. Patch by gerv; r=bbaetz, joel, myk.
git-svn-id: svn://10.0.0.236/trunk@130027 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 06:54:42 +00:00
alecf%netscape.com
a90b98b2de final version of i18n.xml, for bug 169498, not part of build
git-svn-id: svn://10.0.0.236/trunk@130026 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 06:31:51 +00:00
sspitzer%netscape.com
7ef7525723 for spam, not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130025 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 06:28:45 +00:00
alecf%netscape.com
c4304aebfd add per-platform locale #includes
not part of build yet


git-svn-id: svn://10.0.0.236/trunk@130024 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 06:17:31 +00:00
alecf%netscape.com
ca178c5c58 first incarnation of i18n.xml - not part of build right now
just a copy of chardet.xml until I tweak it


git-svn-id: svn://10.0.0.236/trunk@130023 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:44:04 +00:00
sspitzer%netscape.com
3a0693becc more spam work, not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130022 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:36:28 +00:00
sspitzer%netscape.com
99886eafb6 spam work. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130021 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:35:21 +00:00
sspitzer%netscape.com
7731e58f5a spam log viewer. not part of the build
git-svn-id: svn://10.0.0.236/trunk@130020 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:32:58 +00:00
sspitzer%netscape.com
db87eaccf7 adding the spam log viewer. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130019 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:31:22 +00:00
sspitzer%netscape.com
1b52ea77de remove viewLog.css, not needed.
git-svn-id: svn://10.0.0.236/trunk@130018 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:19:59 +00:00
sspitzer%netscape.com
c00608ac1e code cleanup. remove viewLog.css, not needed.
git-svn-id: svn://10.0.0.236/trunk@130017 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:18:14 +00:00
depstein%netscape.com
1725bf1901 Added input stream consumer in nsIStreamListener->OnDataAvailable(). not part of the build.
git-svn-id: svn://10.0.0.236/trunk@130016 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 05:14:28 +00:00
blakeross%telocity.com
8f3758dd89 A little polish...Disable Use Small Icons checkbox if the user selects text-only buttons.
git-svn-id: svn://10.0.0.236/trunk@130011 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 03:59:05 +00:00
blakeross%telocity.com
a70e93c470 Fix for cust toolbar regression
git-svn-id: svn://10.0.0.236/trunk@130010 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 03:43:31 +00:00
cmanske%netscape.com
8cef952e6a Convert from nsIEditorShell to nsIHTMLEditor/nsIEditor interfaces in dialogs. Work by cmanske and neil@parkwaycc.co.uk, b=158881, r=brade,andreww,neil@parkwaycc.co.uk; sr=dveditz,sfraser
git-svn-id: svn://10.0.0.236/trunk@130009 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 03:32:23 +00:00
wtc%netscape.com
7bf501f1b0 Bug 169581: the last two arguments to pk11_mkSlotString should have the
type PRBool, not unsigned char.  As a byproduct this change works around
what seems to be a gnupro gcc compiler optimization bug.  r=relyea.
Modified Files: pk11db.c pk11pars.h


git-svn-id: svn://10.0.0.236/trunk@130008 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 03:23:26 +00:00
kmcclusk%netscape.com
1fc89bc8e9 Change PLEvent notification on WIN32 to use a native timer instead of a posted WM_APP message when documents are not loading. This fixes some DHTML paint starvation issues and lowers overall CPU usage on many pages with DHTML. bug=164931 r=rpotts@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@130007 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 02:53:05 +00:00
sspitzer%netscape.com
c0e833449a add comment explaining why I am choosing these values
git-svn-id: svn://10.0.0.236/trunk@130004 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:53:56 +00:00
sspitzer%netscape.com
b8c91d9570 adding todo comments for later.
git-svn-id: svn://10.0.0.236/trunk@130003 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:53:15 +00:00
sspitzer%netscape.com
7e0dad7754 add menu item to launch spam control dialog, commented out until it's ready.
git-svn-id: svn://10.0.0.236/trunk@130002 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:49:35 +00:00
sspitzer%netscape.com
1458773927 new strings for launch spam control dialog.
git-svn-id: svn://10.0.0.236/trunk@130001 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:48:25 +00:00
sspitzer%netscape.com
16359f35de changes to launch the spam window, but users can get to it yet.
git-svn-id: svn://10.0.0.236/trunk@130000 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:47:47 +00:00
jkeiser%netscape.com
0321a23661 Make nsIFontMetrics::GetAveCharWidth() on all platforms (Rick.Ju@sun.com's patch, bug 50998), r=cbiesinger@web.de, sr=rbs@maths.uq.edu.au
git-svn-id: svn://10.0.0.236/trunk@129999 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:47:14 +00:00
sspitzer%netscape.com
ae365c964e working on spam, not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129998 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:45:00 +00:00
morse%netscape.com
1de963b9c8 bug 160425, forgets previously saved passwords if mail server unavailable, r=jag, sr=jst
git-svn-id: svn://10.0.0.236/trunk@129997 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:42:19 +00:00
roc+%cs.cmu.edu
5d698ae5fc Bug 168873. Improve error handling in Unix print modules. checking in for gisburn. r=rods,sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@129996 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:41:33 +00:00
sspitzer%netscape.com
18b834501f more work on spam UI. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129995 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:35:52 +00:00
pschwartau%netscape.com
1625f1b218 Initial add. Regression test for bug 169497.
git-svn-id: svn://10.0.0.236/trunk@129994 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:24:45 +00:00
blakeross%telocity.com
daadbed025 162286 - separator not available when all toolbar items are in toolbar layout.
git-svn-id: svn://10.0.0.236/trunk@129993 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:23:15 +00:00
nicolson%netscape.com
117ba43908 Fix 160024: remove class JSSJCEProvider.
git-svn-id: svn://10.0.0.236/trunk@129992 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:22:52 +00:00
nicolson%netscape.com
46281ccb74 make SPKI.getEncoded() actually return itself, DER-encoded. This way it
correctly implements X509EncodedKeySpec.


git-svn-id: svn://10.0.0.236/trunk@129991 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:16:41 +00:00
sspitzer%netscape.com
f1a65c019a working on spam, not part of the build
git-svn-id: svn://10.0.0.236/trunk@129990 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:16:10 +00:00
nicolson%netscape.com
fdaadfb2e0 more descriptive error message.
git-svn-id: svn://10.0.0.236/trunk@129989 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:15:36 +00:00
sspitzer%netscape.com
267e60d3e3 working on spam / junk mail. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129988 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:15:23 +00:00
nicolson%netscape.com
46b6273d7c Fix 150720: Support KeyFactory.generatePrivate(DSAPrivateKeySpec).
git-svn-id: svn://10.0.0.236/trunk@129987 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:14:08 +00:00
nicolson%netscape.com
a167ac7ee0 Fix 169577: SGN_End crashes if DSA signature fails.
git-svn-id: svn://10.0.0.236/trunk@129986 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 01:07:43 +00:00
morse%netscape.com
2178371f1b bug 142803, remove port indication from url in cookie, r=sgehani, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@129985 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 00:37:36 +00:00
rogerl%netscape.com
b9ec9529c4 Changed built-ins to FixedInstances. Hooking up regexp.
git-svn-id: svn://10.0.0.236/trunk@129984 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 00:23:10 +00:00
rpotts%netscape.com
699385330e fixing build bustage...
git-svn-id: svn://10.0.0.236/trunk@129981 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 00:13:40 +00:00
wtc%netscape.com
c0e111cf86 Bug 169569: always use the Solaris ld (/usr/ccs/bin/ld) to link NSPR
shared libraries.  r=cls.


git-svn-id: svn://10.0.0.236/trunk@129980 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-19 00:11:54 +00:00
jst%netscape.com
9b143a5e27 Fixing bug 168371. Cleaning up nsHTMLContentSink.cpp, I'll now get to own this whole file! r=caillon@returnzero.com, rs=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129979 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:31:08 +00:00
wtc%netscape.com
6ed2128237 Bug 91224: Make sure that we use Solaris ld, not GNU ld, to build NSS.
Modified Files:
	coreconf/SunOS5.mk nss/Makefile nss/cmd/platlibs.mk
	nss/lib/freebl/Makefile


git-svn-id: svn://10.0.0.236/trunk@129978 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:25:29 +00:00
gerv%gerv.net
b86b1a6850 Bug 168804 - Document CheckCanChangeField so sites can modify it for local needs. Patch by gerv; r=bbaetz, joel.
git-svn-id: svn://10.0.0.236/trunk@129977 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:23:55 +00:00
yokoyama%netscape.com
fdc1a82107 Bug 141630 Need to support Indic/Armenain/Georgian text input
PeekMessage needs to be modified to support those input.
(all #ifdef MOZ_UNICODE)
/r=shanjian, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@129976 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:19:18 +00:00
akkana%netscape.com
2f70524085 163690: Use the prompt service when the string searched for isn't found. Cures an assertion. r=cmanske sr=kin
git-svn-id: svn://10.0.0.236/trunk@129975 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:14:25 +00:00
akkana%netscape.com
7068522e39 67363: Undo should work for batch ReplaceAll. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@129974 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 23:08:59 +00:00
alecf%netscape.com
b230e0333b now that the imglib2 issues have been ironed out, remove the old project files
git-svn-id: svn://10.0.0.236/trunk@129973 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:46:33 +00:00
aaronl%netscape.com
db85cfe83f 169272. Active Accessibility: unable to navigate to child nodes from node received from event. r=jgaunt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129972 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:45:53 +00:00
pinkerton%netscape.com
5cd9f54b08 make sure |increment| attribute change notification is sent. fixes bug where native scrollbars wouldn't know the increment so up/down arrows didn't work (bug 161365, r=bryner/sr=sfraser).
git-svn-id: svn://10.0.0.236/trunk@129971 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:38:23 +00:00
wtc%netscape.com
91b98bac0f Bug 153380: document the default values for the SSL options.
git-svn-id: svn://10.0.0.236/trunk@129970 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:32:19 +00:00
wtc%netscape.com
375250da45 Bug 157827: declare the exported PBE_ functions. Fixed the include-once
ifdef.


git-svn-id: svn://10.0.0.236/trunk@129969 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:12:16 +00:00
rpotts%netscape.com
c3234b594f bug #93015 (r=darin/sr=jst) First patch that cleans up imglib use of LoadFlags and channel attributes...
git-svn-id: svn://10.0.0.236/trunk@129968 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:08:12 +00:00
mkaply%us.ibm.com
61fa910d14 PR_FALSE people NOT false
git-svn-id: svn://10.0.0.236/trunk@129967 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 22:05:09 +00:00
myk%mozilla.org
cabc1632cc Fix for bug 164143: enables non-authenticated users to look up the module to which a file belongs via a form at the top of owners.html.
r=dmose


git-svn-id: svn://10.0.0.236/trunk@129965 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 21:32:08 +00:00
chanial%noos.fr
5ccd290617 fix history tree icons
fix regression: incomplete history view menu


git-svn-id: svn://10.0.0.236/trunk@129964 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 21:29:50 +00:00
terry%mozilla.org
1e782d1a7b Fixing a mistake made long ago that resulted in an empty image being committed in place of the despot handcuff image. This is the original image (from revision 1.3).
git-svn-id: svn://10.0.0.236/trunk@129963 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 21:28:55 +00:00
akkana%netscape.com
e50c7527f2 140612: Introduce tab usage pref accessibility.tabfocus, to allow tab to go only to form elements or only to text controls. (r,sr)=(bryner,sfraser)
git-svn-id: svn://10.0.0.236/trunk@129962 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 21:24:57 +00:00
depstein%netscape.com
233bc64c25 Updated sHistory script so it works in embedding apps (i.e. MfcEmbed). Added read-only txt version of script. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129961 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 21:15:30 +00:00
alecf%netscape.com
cdc04c9242 final not-part-of-build changes for bug 169498
add final constructors and fix the combined module to cover all 5 modules


git-svn-id: svn://10.0.0.236/trunk@129960 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:44:38 +00:00
blakeross%telocity.com
b77debd1cd Fix unreported bug, that if you open cust. toolbar dlg while the throbber is throbbing, it also throbs in the dialog.
git-svn-id: svn://10.0.0.236/trunk@129959 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:38:38 +00:00
alecf%netscape.com
edfc655b19 add more constructor headers for bug 1169498, still not part of build
git-svn-id: svn://10.0.0.236/trunk@129958 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:24:40 +00:00
mikep%oeone.com
38c3b01c95 Fixing situation that could result in a select / unselect loop.
git-svn-id: svn://10.0.0.236/trunk@129957 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:23:14 +00:00
blakeross%telocity.com
d551ed46ba one final tweak.
git-svn-id: svn://10.0.0.236/trunk@129956 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:23:06 +00:00
serge%netscape.com
20e002757e fix 164043,Mozilla crashes in calls to NPN_Status [trunk], r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@129955 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:21:47 +00:00
blakeross%telocity.com
225e088d9e Adding strings.
git-svn-id: svn://10.0.0.236/trunk@129954 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:20:27 +00:00
blakeross%telocity.com
6ab1fdbd27 Tweaking wording.
git-svn-id: svn://10.0.0.236/trunk@129953 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:18:15 +00:00
serge%netscape.com
dbd858b2a5 fix 168893, nsIPluginManager::GetURL leaks an nsIPluginInstance, r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@129952 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:16:16 +00:00
blakeross%telocity.com
a86d496575 perf tweaks.
git-svn-id: svn://10.0.0.236/trunk@129951 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:11:30 +00:00
gerv%gerv.net
4641df1aaf Bug 163790 - colchange.cgi is not localisable. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@129950 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:09:12 +00:00
blakeross%telocity.com
9d16dc3de5 Tweaks.
git-svn-id: svn://10.0.0.236/trunk@129949 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:07:55 +00:00
alecf%netscape.com
3227a4f750 further work on bug 169498 - combine chardet, unicharutil and lwbrk into one dll
also add ns<Foo>Constructors.h to make the constructors/etc more modular
not part of build


git-svn-id: svn://10.0.0.236/trunk@129948 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:03:11 +00:00
blakeross%telocity.com
5c7c009812 More tweaks.
git-svn-id: svn://10.0.0.236/trunk@129947 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 20:00:30 +00:00
blakeross%telocity.com
853f3d13a8 More perf tweaks.
git-svn-id: svn://10.0.0.236/trunk@129946 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:55:12 +00:00
mikep%oeone.com
896022278c Fixing cut.
git-svn-id: svn://10.0.0.236/trunk@129945 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:54:23 +00:00
blakeross%telocity.com
ebb37c7fb2 More perf tweaks.
git-svn-id: svn://10.0.0.236/trunk@129944 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:52:32 +00:00
seawood%netscape.com
ec7b53cab5 Restoring setting of mCurrentProfileAvailable so that prefs.js is actually created.
git-svn-id: svn://10.0.0.236/trunk@129943 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:51:57 +00:00
blakeross%telocity.com
a6f7d77605 More perf tweaks.
git-svn-id: svn://10.0.0.236/trunk@129942 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:51:28 +00:00
curt%netscape.com
8689b6536e Using "mozilla.org" in install and Windows registry paths. Also, version 1.2b
(Bug #168751, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@129941 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:46:03 +00:00
mikep%oeone.com
d28daa33d1 Fixing problems with showing events from currently selected day.
git-svn-id: svn://10.0.0.236/trunk@129940 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:46:00 +00:00
shanjian%netscape.com
7b1a394f70 #152814 detecting BOM when loading script
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@129939 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:44:19 +00:00
blakeross%telocity.com
e2a4fae884 More perf tweaks.
git-svn-id: svn://10.0.0.236/trunk@129938 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:42:41 +00:00
cmanske%netscape.com
7b1780cf51 Progress on removing editorShell from Composer: fixed controller and command problems and mimetype and 'documentEditable' to editor interfaces, b=169029, r=brade, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@129937 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:42:38 +00:00
shanjian%netscape.com
dd1aa98fab #141621 problem in converting non-bmp character to UTF-8
correct a simple mistake.
r=yokoyama, sr=blizzard.


git-svn-id: svn://10.0.0.236/trunk@129936 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:40:45 +00:00
depstein%netscape.com
8630d99fb0 Updated webNav script so it works in embedding apps (i.e. MfcEmbed). not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129935 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:39:15 +00:00
shanjian%netscape.com
983c3cb962 #130091 should we get rid of "NEW_FONT_HEIGHT_APIS"
r=Roland.Mainz@informatik.med.uni-giessen.de, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@129934 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:37:31 +00:00
blakeross%telocity.com
12aa1e044d Another perf tweak.
git-svn-id: svn://10.0.0.236/trunk@129933 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:36:19 +00:00
blakeross%telocity.com
125380fc18 Small perf tweak.
git-svn-id: svn://10.0.0.236/trunk@129932 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:32:51 +00:00
shanjian%netscape.com
850bb718b5 #85434 Entered national characters filtered
using default charset for internet search charset fallback instead of hard coded hardcoded iso88591.
p=bukovjan@mbox.dkm.cz, r=bstell, sr=jag
(Thanks to Michal Bukovjan  for preparing the patch).


git-svn-id: svn://10.0.0.236/trunk@129931 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:27:43 +00:00
dsirnapalli%netscape.com
5073ca0186 Corrected the test case.
git-svn-id: svn://10.0.0.236/trunk@129929 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 19:12:40 +00:00
gerv%gerv.net
f49328d98b Fallout from previous checkin; need to escape "-" in regexp for some versions of Perl, because it interprets it as a range.
git-svn-id: svn://10.0.0.236/trunk@129927 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:59:55 +00:00
brendan%mozilla.org
5a73bfb9f8 Cosmetic nit-picks: respect 80-column limit, use NULL, not 0, for ptr init.
git-svn-id: svn://10.0.0.236/trunk@129926 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:44:47 +00:00
mikep%oeone.com
03cc5a9469 Fixing bug 168335, context clicking and selecting new event gives you an event with the correct date now.
git-svn-id: svn://10.0.0.236/trunk@129925 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:37:17 +00:00
alecf%netscape.com
bd5dc07fb7 first cut at combined i18n library - for now, just roll in chardet
not part of build, for bug 169498


git-svn-id: svn://10.0.0.236/trunk@129924 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:37:11 +00:00
shanjian%netscape.com
9df14c4a4b #88363 Site with duplicate Content-Type loads with incorrect encoding
when site have multiple content-type, we should use the last one with
charset specified as charset.
r=yokoyama, sr=darin


git-svn-id: svn://10.0.0.236/trunk@129923 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:35:24 +00:00
edburns%acm.org
72d64b501f Checkpoint checkin for converting webclient to building with ant.
Currently builds java classes, javah headers, and compiles src_share, src_moz,
and src_moz/gtk.


git-svn-id: svn://10.0.0.236/trunk@129922 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:25:29 +00:00
alecf%netscape.com
617a981e9c add .cvsignore so this directory gets noticed
for bug 169498, not part of build


git-svn-id: svn://10.0.0.236/trunk@129921 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 18:09:48 +00:00
kaie%netscape.com
5816c0eddc b=169164 Replace PRUint* and PRInt* in IDL with "unsigned long" etc
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129920 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 17:15:58 +00:00
seawood%netscape.com
2b61c81084 Call SetCurrentProfile so that LoadNewProfilePrefs() is using the correct profile when checking for new files.
Bug #168433 r=ccarlen sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129919 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 17:14:49 +00:00
mikep%oeone.com
6a4ddcfc5b Moving function for finding if unifinder has focus.
git-svn-id: svn://10.0.0.236/trunk@129918 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:59:28 +00:00
mikep%oeone.com
2793bfe77f Adding in calendarWizard
git-svn-id: svn://10.0.0.236/trunk@129917 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:59:03 +00:00
mikep%oeone.com
8c5e2171fe Adding in new wizard code.
git-svn-id: svn://10.0.0.236/trunk@129916 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:58:10 +00:00
mikep%oeone.com
39d8ea83e3 Adding in wizard to tools menu.
git-svn-id: svn://10.0.0.236/trunk@129915 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:57:46 +00:00
mikep%oeone.com
c57589bf28 Cleaning up drag and drop.
git-svn-id: svn://10.0.0.236/trunk@129914 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:57:23 +00:00
mikep%oeone.com
24ae12453a Adding in small check for new import / export wizard.
git-svn-id: svn://10.0.0.236/trunk@129913 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:56:59 +00:00
mikep%oeone.com
3b1c830556 Disable text when you edit an event.
git-svn-id: svn://10.0.0.236/trunk@129912 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:56:17 +00:00
danm%netscape.com
97b9b073f1 adding a popup window management preference panel. bug 166442 r=jag,jst
git-svn-id: svn://10.0.0.236/trunk@129911 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:47:06 +00:00
danm%netscape.com
8ea0391bb6 switching to the new, final(!?) popup window management preferences organisation. bug 166442 r=jag,jst
git-svn-id: svn://10.0.0.236/trunk@129910 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:45:31 +00:00
mikep%oeone.com
88be2b8670 Adding in drag and drop for week view.
git-svn-id: svn://10.0.0.236/trunk@129909 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:44:11 +00:00
mikep%oeone.com
33b8f568e4 Cleaning up drag and drop in day view.
git-svn-id: svn://10.0.0.236/trunk@129908 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:43:24 +00:00
mikep%oeone.com
4e8ae35a83 Adding in code for drag and drop.
git-svn-id: svn://10.0.0.236/trunk@129907 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:42:24 +00:00
mikep%oeone.com
3ea094ae6d Fixing drop down menu list so it is now the way it should be (for persisting value on it)
git-svn-id: svn://10.0.0.236/trunk@129906 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:41:31 +00:00
mikep%oeone.com
a11216812d Fixing clipboard for 1.2, bug 162866
git-svn-id: svn://10.0.0.236/trunk@129905 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:30:41 +00:00
mikep%oeone.com
f23c306389 Fixing problem where calendar could get into an infinte selection loop, like bug 169242
git-svn-id: svn://10.0.0.236/trunk@129904 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:29:41 +00:00
mikep%oeone.com
f00bf95048 Fixed that should help the calendar get out of an infinite loop situation, like bug 169242
git-svn-id: svn://10.0.0.236/trunk@129903 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:28:54 +00:00
wtc%netscape.com
d979b885ba Bug 72100: added macros for the maximum and minimum values of PRInt8,
PRUint8, PRInt16, PRUint16, PRInt32, and PRUint32. r=jkeiser.


git-svn-id: svn://10.0.0.236/trunk@129902 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 14:23:46 +00:00
caillon%returnzero.com
7067e3488c Bug 169321 - Passing strings generated by .match or .substr into Components.lookupMethod() was throwing exceptions because those strings
are not atomized.
Checking in for Johnny Stenback <jst@netscape.com>
r=dbradley@netscape.com, jaggernaut@netscape.com
sr=brendan@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@129900 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 13:44:43 +00:00
igor%mir2.org
ff7745a6a8 Reduce "new X" usage by inlining few classes or packing their members into long field
git-svn-id: svn://10.0.0.236/trunk@129899 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 12:57:09 +00:00
igor%mir2.org
1721ff345f C relics removal: no need to check for null after "new X"
git-svn-id: svn://10.0.0.236/trunk@129898 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 12:50:51 +00:00
cbiesinger%web.de
eb3aa4861e bug 111164 patch by neil@parkwaycc.co.uk r=nhotta sr=bzbarsky
View of Message source should keep the character coding


git-svn-id: svn://10.0.0.236/trunk@129897 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 12:28:16 +00:00
kaie%netscape.com
c136bb1143 b=166945 Remove "pippki" from embedding packages
r=adamlock sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129896 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 12:23:46 +00:00
sspitzer%netscape.com
a98f26b4a2 more follow up for #64462. playing proper biff sound.
git-svn-id: svn://10.0.0.236/trunk@129895 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 11:09:30 +00:00
sspitzer%netscape.com
7fdf9816e3 backend changes to respect the new biff sound prefs. bug #64462. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129894 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 10:49:54 +00:00
chanial%noos.fr
7c1aed6c8d No more closure on |this| while loading bookmarks
git-svn-id: svn://10.0.0.236/trunk@129893 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 10:00:55 +00:00
sspitzer%netscape.com
dc595bc5a0 fix for #169390. move buddy icon to the far right. r/sr=bienvenu. UI change a=jglick
git-svn-id: svn://10.0.0.236/trunk@129892 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 09:00:16 +00:00
sspitzer%netscape.com
ece6a5164a fix bug #64462. add "play custom sound on new mail" pref UI. right now, it's global.
soon, per server (and also soon, sound as a mail filter action.)
move window prefs to a new windows panel.  we'll be adding some other window
related prefs (like reuse window) to that new panel.  r/sr=bienvenu.
UI changes a=jglick


git-svn-id: svn://10.0.0.236/trunk@129891 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 08:33:35 +00:00
asa%mozilla.org
0d7cb5e5be rename treeitem to General
git-svn-id: svn://10.0.0.236/trunk@129890 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 08:12:12 +00:00
asa%mozilla.org
2cb30b8664 move navigator panel to the top of the tree
git-svn-id: svn://10.0.0.236/trunk@129889 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 08:11:32 +00:00
asa%mozilla.org
bd6bd4b5f0 clear out useless stuff and change name to General
git-svn-id: svn://10.0.0.236/trunk@129888 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 08:02:22 +00:00
asa%mozilla.org
5b484dfe74 fixing xml parsing error for general pref panel
git-svn-id: svn://10.0.0.236/trunk@129887 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 07:46:55 +00:00
gerv%gerv.net
ea759bab12 Bug 162151 - Fix page.cgi's method of finding templates. It now looks in a "pages" subdirectory of the template directory. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@129886 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 07:20:18 +00:00
rogerl%netscape.com
afe49e1870 Hooking up string class.
git-svn-id: svn://10.0.0.236/trunk@129885 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 06:43:41 +00:00
seawood%netscape.com
f7b77c335c Removing debug libs from opt build link list.
git-svn-id: svn://10.0.0.236/trunk@129884 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 05:56:13 +00:00
alecf%netscape.com
98d5d5bbde remove these bogus files as they are causing bustage
git-svn-id: svn://10.0.0.236/trunk@129881 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 05:22:35 +00:00
blakeross%telocity.com
9f6dac2647 Prefs tweaks in preparation for 0.1
git-svn-id: svn://10.0.0.236/trunk@129879 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 04:04:01 +00:00
depstein%netscape.com
ec2bffd8d4 Set return value to false for nsIUriContentListener->OnStartUriOpen(). Added urlDialog for nsIUriLoader->OpenUri(). Now passing 2nd parameter (doCommandState) in DoCommandTest() in nsICommandMgr.cpp. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129878 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 03:42:09 +00:00
blakeross%telocity.com
9f07ef48e9 Fixing 161866.
git-svn-id: svn://10.0.0.236/trunk@129876 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 03:20:18 +00:00
yxia%netscape.com
b698345677 update
git-svn-id: svn://10.0.0.236/trunk@129875 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 03:12:05 +00:00
yxia%netscape.com
ce308c8ba8 contribute Netscape 7.0 localization to Mozilla 1.0.1rc1
git-svn-id: svn://10.0.0.236/trunk@129874 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:59:34 +00:00
yxia%netscape.com
01eca57fef contribute l10n from Netscape 7.0 to Mozilla 1.0.1rc
git-svn-id: svn://10.0.0.236/trunk@129873 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:50:41 +00:00
jay.yan%sun.com
8b216bf67d bug 166202, modules/plugins doesn't build on solaris w/ gtk2 patch=Robin and Blizzard r=Blizzard sr=beard@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129871 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:43:54 +00:00
blakeross%telocity.com
4b6ed69b7b Fork view source and clean it up a bit for release purposes, but we plan to just launch the external editor in future milestones.
git-svn-id: svn://10.0.0.236/trunk@129870 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:39:59 +00:00
hyatt%netscape.com
cfd463f20f Finally. This works.
git-svn-id: svn://10.0.0.236/trunk@129869 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:23:35 +00:00
danm%netscape.com
a689fddb39 just fixing a reversed comment
git-svn-id: svn://10.0.0.236/trunk@129868 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:20:04 +00:00
blakeross%telocity.com
0efeacd196 Fixing help menus.
git-svn-id: svn://10.0.0.236/trunk@129867 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:10:27 +00:00
blakeross%telocity.com
164a70db7d Forking jsconsole.
git-svn-id: svn://10.0.0.236/trunk@129866 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 02:10:04 +00:00
hyatt%netscape.com
4e5d5796ad We didn't need this shit anyway.
git-svn-id: svn://10.0.0.236/trunk@129864 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:59:34 +00:00
hyatt%netscape.com
41175a1d68 Adding manifest to makefile.
git-svn-id: svn://10.0.0.236/trunk@129863 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:51:18 +00:00
hyatt%netscape.com
209b0ba4aa Add manifest file for theming on WinXP.
git-svn-id: svn://10.0.0.236/trunk@129861 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:44:56 +00:00
blakeross%telocity.com
6d1aa81d8b Turn on dynamic skin switching.
git-svn-id: svn://10.0.0.236/trunk@129860 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:31:49 +00:00
blakeross%telocity.com
030128309a Checking in "coming soon" note to advanced prefs dialog.
git-svn-id: svn://10.0.0.236/trunk@129859 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:19:59 +00:00
roc+%cs.cmu.edu
992d8265ec Bug 153907. Give IFRAMEs their correct content-parent even though they construct their views in the wrong order. r=jkeiser,sr=kin
git-svn-id: svn://10.0.0.236/trunk@129858 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:17:02 +00:00
blakeross%telocity.com
a8c418ca27 Add note about a workaround.
git-svn-id: svn://10.0.0.236/trunk@129857 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:15:02 +00:00
asasaki%netscape.com
d57787a7e3 manual fix for bugscape 19932 (about page update). will automate this
later.  verbal r=granrose, verbal sr=leaf


git-svn-id: svn://10.0.0.236/trunk@129856 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:14:28 +00:00
blakeross%telocity.com
c3154318ac Fixing about:
git-svn-id: svn://10.0.0.236/trunk@129855 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 01:13:48 +00:00
blakeross%telocity.com
514289cc68 fixing branding
git-svn-id: svn://10.0.0.236/trunk@129853 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 00:40:40 +00:00
jpierre%netscape.com
3ee12df237 Fix memory leak in CRL cache
git-svn-id: svn://10.0.0.236/trunk@129852 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 00:34:32 +00:00
dsirnapalli%netscape.com
a2d178c18f Corrected the test case. Previously corrected on mozilla but forgot here.
git-svn-id: svn://10.0.0.236/trunk@129851 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-18 00:19:55 +00:00
cmanske%netscape.com
5448414498 Removing unsused files from tree
git-svn-id: svn://10.0.0.236/trunk@129846 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:46:12 +00:00
asasaki%netscape.com
f9219c868f patch for 136686, r=cls.
adding original filename info to windows version tab.


git-svn-id: svn://10.0.0.236/trunk@129845 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:37:30 +00:00
gerv%gerv.net
bea5a12b7f Bug 146945 - clean up format ambiguities. Rename list-rdf.rdf.tmpl to list.rdf.tmpl to fit in with new naming scheme.
git-svn-id: svn://10.0.0.236/trunk@129843 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:30:17 +00:00
alecf%netscape.com
7be87cac74 argh, fix whacked out setjmp bustage
git-svn-id: svn://10.0.0.236/trunk@129842 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:29:29 +00:00
gerv%gerv.net
241f6ae46e Bug 146495 - clean up format ambiguities. We now have separate "format" and "ctype" parameters. Also fixes bug 140513, bug 143604, and bug 148133. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@129841 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:28:24 +00:00
rogerl%netscape.com
4656ad4745 Date connection.
git-svn-id: svn://10.0.0.236/trunk@129838 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:22:40 +00:00
jpierre%netscape.com
7ca9c539d6 Call NSS_Shutdown() in crlutil. Part of purifying effort
git-svn-id: svn://10.0.0.236/trunk@129837 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:14:54 +00:00
alecf%netscape.com
9400843f5b fix for bug 168048 - combine commonly used decoders into the main imglib dll
r=pavlov, sr=tor


git-svn-id: svn://10.0.0.236/trunk@129836 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 23:05:27 +00:00
jaggernaut%netscape.com
9357c15471 Bug 158173: fix some quicklaunch related wording. Patch by Mike Kowalski <pepperxn@netscape.net>, r=timeless, r=jatin, sr=jag
git-svn-id: svn://10.0.0.236/trunk@129835 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:58:00 +00:00
peterlubczynski%netscape.com
23116b3174 Fixing bug 165368: Download dialog appears for Shockwave Flash content r=av sr=heikki
git-svn-id: svn://10.0.0.236/trunk@129834 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:56:06 +00:00
peterlubczynski%netscape.com
0417f35e97 Fixing Mach-O part of bug 159016, IME with Flash 6
git-svn-id: svn://10.0.0.236/trunk@129833 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:50:47 +00:00
jaggernaut%netscape.com
7444fd6673 Bug 162017: step 2: remove aIgnoreCase from FindChar1. r=peterv, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@129832 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:49:00 +00:00
dsirnapalli%netscape.com
d916ce323c Updated the text cases because of the recent changes in the code.
git-svn-id: svn://10.0.0.236/trunk@129831 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:38:58 +00:00
timeless%mac.com
912b09c9fc Bug 135572 remove Theme Preferences from the View > Apply Theme submenu
patch by pepperxn@netscape.net r=doron sr=jag


git-svn-id: svn://10.0.0.236/trunk@129830 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:19:37 +00:00
locka%iol.ie
1600760589 NOT PART OF BUILD. More work on XPConnect in plugin
git-svn-id: svn://10.0.0.236/trunk@129829 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:15:30 +00:00
locka%iol.ie
610ea41b19 NOT PART OF BUILD. Minor tweaks to control site classes to fix problems exposed by random activex controls running in the plugin.
git-svn-id: svn://10.0.0.236/trunk@129828 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:12:43 +00:00
smontagu%netscape.com
7468b73fb4 Extend Bidi processing to elements with position: relative. Bug 168455, r=dbaron, sr=kin
git-svn-id: svn://10.0.0.236/trunk@129827 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 22:08:51 +00:00
jpierre%netscape.com
1e94cc1160 Fix indentation
git-svn-id: svn://10.0.0.236/trunk@129826 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 21:31:28 +00:00
brade%netscape.com
d02f0306a5 PreventDefault in html editors for normal typing (letters/numbers/etc) (bug 158672, r=timeless, sr=smfr)
git-svn-id: svn://10.0.0.236/trunk@129825 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 21:27:30 +00:00
mkaply%us.ibm.com
1c815eabaf #168221
r=pedemont, sr=blizzard
OS/2 only - quote filenames in helpers


git-svn-id: svn://10.0.0.236/trunk@129823 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 21:10:30 +00:00
sspitzer%netscape.com
6b44b64a0a clean up from my removal of sidebar from 3 pane and addressbook.
fix splitter look, and remove unnecessary css.
bug #169057.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129822 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 21:03:39 +00:00
mkaply%us.ibm.com
b545387d38 No bug - get rid of unneeded icons and update default window icon to new Moz icon
git-svn-id: svn://10.0.0.236/trunk@129821 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 21:02:52 +00:00
mkaply%us.ibm.com
4853e1976e #167150
r=pedemont, sr=blizzard
OS/2 only - openMultiple support for OS/2 filepicker


git-svn-id: svn://10.0.0.236/trunk@129820 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:58:29 +00:00
mkaply%us.ibm.com
2f32590c66 adding typeaheadfind package - not part of build
git-svn-id: svn://10.0.0.236/trunk@129819 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:46:17 +00:00
mkaply%us.ibm.com
89328c687c OS/2 wizard stuff plus adding typeaheadfind package - not part of build
git-svn-id: svn://10.0.0.236/trunk@129818 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:45:49 +00:00
mkaply%us.ibm.com
52729de43e Continuing OS/2 wizard work - not part of build
git-svn-id: svn://10.0.0.236/trunk@129817 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:44:06 +00:00
mkaply%us.ibm.com
6e46bdf165 No bug - replace old OS/2 icon with new one
git-svn-id: svn://10.0.0.236/trunk@129814 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:30:27 +00:00
neeti%netscape.com
dae03caf35 backing out fix for bug 141451, r=dougt
git-svn-id: svn://10.0.0.236/trunk@129812 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:22:32 +00:00
dsirnapalli%netscape.com
f4acfbdf8c Updating the test case.
git-svn-id: svn://10.0.0.236/trunk@129811 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:18:17 +00:00
kaie%netscape.com
7b9d47b54a b=141612 Misconfigured SSL web sites cause "unknown authority" messages.
Enhance the error message that is shown to the user.
r=javi sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@129810 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 20:12:14 +00:00
sspitzer%netscape.com
4a47193c23 fix for #169241. fix layout of "Bcc <email>" ui.
r/sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@129808 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:53:18 +00:00
mikep%oeone.com
3fbd8a0a97 Adding in word events after print for clarity.
git-svn-id: svn://10.0.0.236/trunk@129807 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:52:00 +00:00
mikep%oeone.com
cb997bda52 Fixing language stuff.
git-svn-id: svn://10.0.0.236/trunk@129806 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:49:17 +00:00
kaie%netscape.com
75b53b404f b=168448 Fixing bustage caused by previous checkin.
Filename nsIGeneratingKeypairInfoDialogs is too long,
moving to a short filename. Updating Makefiles and include statements.


git-svn-id: svn://10.0.0.236/trunk@129805 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:43:13 +00:00
sspitzer%netscape.com
dc2bce0e72 fix for #169227. for certain redirector types, don't show hostname in the password prompt.
r/sr=bienvenu.  UI changes approved by jglick.


git-svn-id: svn://10.0.0.236/trunk@129803 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:25:31 +00:00
kaie%netscape.com
16fe65898b b=166664 Remove obsolete interface nsISecurityManagerComponent
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129802 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:09:11 +00:00
kaie%netscape.com
faa64d3ee6 b=166663 Wallet should no longer use nsISecurityManagerComponent
r=morse sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129801 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:03:24 +00:00
brade%netscape.com
3422ba7613 fix global name change; bug 169140 (r=glazou, sr=jag)
git-svn-id: svn://10.0.0.236/trunk@129800 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 19:03:18 +00:00
rpotts%netscape.com
5d90e7c567 bug #145579 (r=darin, sr=jst) send the correct referrer for images...
git-svn-id: svn://10.0.0.236/trunk@129799 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 18:59:41 +00:00
leaf%mozilla.org
9dd35360c6 Automated update
git-svn-id: svn://10.0.0.236/trunk@129798 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 18:54:46 +00:00
kaie%netscape.com
49287355c4 b=168448 PSM embedding freeze/ step 1/ move stuff & change data types
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129797 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 18:51:22 +00:00
seawood%netscape.com
3f9811e7d6 Remove unused BROKEN_QSORT define.
Bug #168863 r=Roland.Mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@129796 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 18:49:09 +00:00
mostafah%oeone.com
b2b2e90f7e Cleaned up xpi script
git-svn-id: svn://10.0.0.236/trunk@129795 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 15:28:06 +00:00
jaggernaut%netscape.com
e98768ecf7 Bug 165867: (top)crash at www.sina.com.cn. r=peterv, sr=darin
git-svn-id: svn://10.0.0.236/trunk@129793 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 14:42:24 +00:00
jaggernaut%netscape.com
38f1451727 Bug 162017: first step to inlining nsStr. r=kaie, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129791 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 13:56:34 +00:00
mostafah%oeone.com
393af8c134 Changed from Dos format to Unix format
git-svn-id: svn://10.0.0.236/trunk@129789 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 13:11:55 +00:00
mikep%oeone.com
ac836fd5c1 Fixing bug 169146, moving close calendar menu item.
git-svn-id: svn://10.0.0.236/trunk@129788 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 12:37:23 +00:00
glazman%netscape.com
2f30b4784e fixes several bugs at once:
could not revert to HTML attributes default value,
VALIGN attribute on table elements was not CSSized,
page colors of new documents were not CSSized,
bad design in |nsEditor::CloneAttributes()|,
new image width/height/border attributes were not CSSized,
error in EdTableProps.js

b=167712, b=167716, r=brade, r=jfrancis, sr=kin


git-svn-id: svn://10.0.0.236/trunk@129785 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 12:04:59 +00:00
axel%pike.org
c89ddc9f4a bug 16140, html has xhtml namespace for XPath, XSLT. r=sicking, sr=jst
git-svn-id: svn://10.0.0.236/trunk@129784 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 08:06:40 +00:00
sspitzer%netscape.com
ce083a72e3 fox for #168937. need to set width of messengerBox so that the splitter doesn't jump
around for new (and existing) users.  this is fallout for the sidebar being removed
from the three pane.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129783 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 07:21:34 +00:00
pete.zha%sun.com
40355916d4 rearrange the code of FreeType2 Font Catalog under mozilla/gfx/src/x11shared
bug=166773 r=bstell@ix.netcom.com sr=jst@netscape.com
patch by louie.zhao@sun.com
Check in rest files of this bug.


git-svn-id: svn://10.0.0.236/trunk@129781 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 06:20:26 +00:00
pete.zha%sun.com
735f561252 rearrange the code of FreeType2 Font Catalog under mozilla/gfx/src/x11shared
bug=166773 r=bstell@ix.netcom.com sr=jst@netscape.com
patch by louie.zhao@sun.com
Only check in new files, will not in build. I will check in rest files later.


git-svn-id: svn://10.0.0.236/trunk@129780 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 06:15:04 +00:00
t_mutreja%yahoo.com
2d7f39b84d Bug:131916(HTML list, <dl>, loses formatting when cut and pasted to text or File / SavePage As... text)
Patch:t_mutreja@yahoo.com, r=akkana, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@129779 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 05:41:11 +00:00
alecf%netscape.com
0a6fd820f0 re-fix bug 166147 - autoinitialize mRefCnt to 0 for more efficient constructors
r=dougt, sr=jag, this time including some CSS stuff that has 31-bit refcounts.


git-svn-id: svn://10.0.0.236/trunk@129778 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 04:49:28 +00:00
wtc%netscape.com
57d539b7a5 Bug 168722: fix compiler warnings.
Modified Files: rijndael.c rijndael.h


git-svn-id: svn://10.0.0.236/trunk@129777 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 04:24:11 +00:00
roc+%cs.cmu.edu
e5211852f5 Bug 168294. Make sure all types of clipping are applied using the zParent view chain. r=kmcclusk,sr=kin
git-svn-id: svn://10.0.0.236/trunk@129776 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 04:16:25 +00:00
kyle.yuan%sun.com
37430dbdf6 Bug 164763 no enough arguments for ATK text-change and state-change events
r=aaronl, sr=jst
Bug 166322 Accessibility: better support for XUL tree
r=aaronl, sr=jst


git-svn-id: svn://10.0.0.236/trunk@129775 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 03:51:40 +00:00
yxia%netscape.com
7dcb0cbd8d remove unneed file
git-svn-id: svn://10.0.0.236/trunk@129774 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 03:20:14 +00:00
blakeross%telocity.com
e75e18f1e0 center it
git-svn-id: svn://10.0.0.236/trunk@129773 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 03:10:30 +00:00
pete.zha%sun.com
ad380ffdf5 Sun Forte 7FCS builds crash in layout/ when compiled with -xO3 or higher
bug=164368 r=roc+moz@cs.cmu.edu sr=sfraser@netscape.com
patch by Roland.Mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@129772 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:49:30 +00:00
blakeross%telocity.com
91b2caae02 tweaks
git-svn-id: svn://10.0.0.236/trunk@129771 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:38:07 +00:00
dougt%netscape.com
4a847a7f3f nsCOMPtr.h needs nsISupportsUtils.h. b=169049, r=rpotts, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129770 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:32:00 +00:00
blakeross%telocity.com
f2dad01372 Updating version #
git-svn-id: svn://10.0.0.236/trunk@129769 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:26:39 +00:00
blakeross%telocity.com
d4f8d55bdd Updating
git-svn-id: svn://10.0.0.236/trunk@129768 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:17:23 +00:00
blakeross%telocity.com
3fb845c4ff tweak
git-svn-id: svn://10.0.0.236/trunk@129767 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 02:14:54 +00:00
blakeross%telocity.com
735c18e131 and readding
git-svn-id: svn://10.0.0.236/trunk@129766 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 01:52:37 +00:00
blakeross%telocity.com
9d453582d0 removing
git-svn-id: svn://10.0.0.236/trunk@129765 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 01:52:25 +00:00
blakeross%telocity.com
34d8cbc289 Adding about dialog.
git-svn-id: svn://10.0.0.236/trunk@129764 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 01:44:37 +00:00
jpierre%netscape.com
1e1375a385 Add -r support to crlutil for multiple iterations
git-svn-id: svn://10.0.0.236/trunk@129763 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 00:28:42 +00:00
jpierre%netscape.com
9d07f69b53 Purify crlutil
Add -E option to erase all CRLs from the certificate database even if the issuer certificate is not present
Add -T option to invoke custom test code


git-svn-id: svn://10.0.0.236/trunk@129762 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-17 00:22:09 +00:00
alecf%netscape.com
47f453908d backing out my fix to 166147 to see if it fixes orange
git-svn-id: svn://10.0.0.236/trunk@129761 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 23:48:12 +00:00
jpierre%netscape.com
957c5087bd Fix UMC in Purify
git-svn-id: svn://10.0.0.236/trunk@129760 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 23:25:04 +00:00
brendan%mozilla.org
bf0fcffc71 Fix blunder in obj_propertyIsEnumerable from last checkin (156354, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@129759 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 23:00:03 +00:00
curt%netscape.com
4a676e19d4 Changing MRE to GRE, and getting the version number right.
(bug #169014, r=chak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@129758 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 22:47:01 +00:00
jaggernaut%netscape.com
626de1b9a3 Fix Mac bustage.
git-svn-id: svn://10.0.0.236/trunk@129757 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 22:35:39 +00:00
pschwartau%netscape.com
23bcbe08a0 Initial add. Regression test for bug 156354.
git-svn-id: svn://10.0.0.236/trunk@129756 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 22:24:42 +00:00
jkeiser%netscape.com
918f537a27 Make input type=image only submit once when the image doesn't exist (bug 167664), r=rods@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@129754 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 21:52:16 +00:00
cbiesinger%web.de
a61c87f678 bug 168839 r=pavlov sr=tor share functions between ico and bmp decoder, making them non-member functions
git-svn-id: svn://10.0.0.236/trunk@129753 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 21:49:41 +00:00
jkeiser%netscape.com
a43827cf5e Make multiple HEAD tags work, and fix form to work with it too (patch by harishd@netscape.com, bug 141537), r=jkeiser@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129752 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 21:48:25 +00:00
myk%mozilla.org
1db3608745 Fix for bug 57556: escapes user-entered data when displaying it to prevent cross-site scripting attacks.
r=dmose


git-svn-id: svn://10.0.0.236/trunk@129751 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 21:31:58 +00:00
rogerl%netscape.com
df14736276 Builtin prototype functions.
git-svn-id: svn://10.0.0.236/trunk@129750 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 21:24:27 +00:00
alecf%netscape.com
704b2afb26 fix for bug 166147 - autoinitialize mRefCnt to 0 by using a wrapper class, a la Don Box
also clean up consumers which were using postfix decrement
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@129749 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:59:52 +00:00
mostafah%oeone.com
afc894a2fd Tweaked Makefile to build properly with the new build configuration
git-svn-id: svn://10.0.0.236/trunk@129748 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:53:39 +00:00
mostafah%oeone.com
0193984722 Tweaked Makefiles to build with gmake on Windows
git-svn-id: svn://10.0.0.236/trunk@129747 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:52:33 +00:00
sspitzer%netscape.com
917610fcdf *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@129746 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:39:46 +00:00
dcone%netscape.com
b4d93679aa b=137982 r=dcone sr=sfraser. Fixed some scrolling issue on the Mac with iframes
git-svn-id: svn://10.0.0.236/trunk@129744 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:29:02 +00:00
sspitzer%netscape.com
50b9cdf06f fix bug #168935. make filter list dialog non-modal, like search.
code cleanup.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129742 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 20:09:44 +00:00
loadrunner%betak.net
a326051ea0 b168588, Hardcoded strings in Gopher search alert
r=yokoyama
sr=bryner


git-svn-id: svn://10.0.0.236/trunk@129739 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:46:54 +00:00
jkeiser%netscape.com
5128c55e14 Backing out fix to bug 162572 to see if it fixes btek pageload numbers
git-svn-id: svn://10.0.0.236/trunk@129738 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:45:59 +00:00
nicolson%netscape.com
4de46308fc Fix 157513: SignerInfo.java does not verify what it have signed.
git-svn-id: svn://10.0.0.236/trunk@129737 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:42:13 +00:00
curt%netscape.com
96fe0c6c0f Don't need CurrentVersion for a shared install.
(Bug #168756, r=syd, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@129736 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:41:17 +00:00
sspitzer%netscape.com
fdc66f938d I broke advanced address search. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129734 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:32:37 +00:00
pschwartau%netscape.com
70d5df7e04 Moving all comments to the top of the file.
git-svn-id: svn://10.0.0.236/trunk@129733 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 19:13:43 +00:00
pschwartau%netscape.com
1ff19bd4ab Trivial change: more efficiency in detecting Rhino shell.
git-svn-id: svn://10.0.0.236/trunk@129732 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:57:22 +00:00
mikep%oeone.com
fc68e04aa9 Removing ability to edit calendar file.
git-svn-id: svn://10.0.0.236/trunk@129731 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:22:58 +00:00
mikep%oeone.com
ad907c9f1a Fixing JS error with local files.
git-svn-id: svn://10.0.0.236/trunk@129730 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:22:37 +00:00
mikep%oeone.com
d3384b0c0d Fixing js error.
git-svn-id: svn://10.0.0.236/trunk@129729 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:18:39 +00:00
mikep%oeone.com
9d3c157ba1 Fixing bug 167798, shouldn't add a remote calendar twice, should simply activate it.
git-svn-id: svn://10.0.0.236/trunk@129728 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:17:52 +00:00
mikep%oeone.com
2fe1fd37e3 Adding in new calendar under file menu.
git-svn-id: svn://10.0.0.236/trunk@129727 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:04:11 +00:00
mikep%oeone.com
e0567d29e5 Refreshes to do tree after getting remote events..
git-svn-id: svn://10.0.0.236/trunk@129726 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:03:58 +00:00
mikep%oeone.com
0c54b45199 Fixing so that the calendar is the one that is currently selected.
git-svn-id: svn://10.0.0.236/trunk@129725 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 18:03:24 +00:00
cmanske%netscape.com
456f113812 Part of fix to table editor interface cleanup bug 166922. r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@129724 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:57:17 +00:00
cmanske%netscape.com
efaae43ca0 Load base style sheet for Composer. b=168576, r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@129721 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:42:30 +00:00
nhotta%netscape.com
bbf62282ae Changed to call util function to unescape URI for status bar,
bug 81024, r=ftang, sr=darin.


git-svn-id: svn://10.0.0.236/trunk@129720 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:41:48 +00:00
nhotta%netscape.com
11a6b3f265 Added an error check for charset conversion result for mail folder creation,
patch by mkaply@us.ibm.com,
bug 156336, r=naving, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@129719 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:23:59 +00:00
mikep%oeone.com
6c54cfba7d Removing inline styles from debug.
git-svn-id: svn://10.0.0.236/trunk@129718 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:15:00 +00:00
mikep%oeone.com
803467582f Fixing bug 168591, proper keyboard shortcut for window.
git-svn-id: svn://10.0.0.236/trunk@129716 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 17:12:33 +00:00
john.marmion%ireland.sun.com
f15fd96bfe Eliminate the need for creating RDF resources for Mork and LDAP cards to Outlook. Bug=118119, r=peterv,sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@129714 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 16:07:54 +00:00
mikep%oeone.com
536c13531a Fixing bug 164535, drop down doesn't show initial value.
git-svn-id: svn://10.0.0.236/trunk@129709 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:57:03 +00:00
mikep%oeone.com
5fa4368eaa Adding in more text.
git-svn-id: svn://10.0.0.236/trunk@129706 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:44:12 +00:00
mikep%oeone.com
ec2c1bd158 Adding in synch icon.
git-svn-id: svn://10.0.0.236/trunk@129705 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:43:20 +00:00
mikep%oeone.com
ff2618cf5e Moving text to locale files.
git-svn-id: svn://10.0.0.236/trunk@129704 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:42:14 +00:00
mikep%oeone.com
d55891da16 Fixing status problems in to do dialogs, bug 168500
git-svn-id: svn://10.0.0.236/trunk@129703 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:34:27 +00:00
dbaron%fas.harvard.edu
f15f88b9e8 Fix matching of class selectors on XML elements (pending a better patch that cleans up the NS_COMFALSE-using API). b=168596 r=sicking sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@129701 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:17:18 +00:00
dbaron%fas.harvard.edu
2e1a7eb839 Give LABEL element a pointer cursor. b=158043 r=jkeiser sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@129700 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:15:58 +00:00
mikep%oeone.com
2cb9caee54 Adding in sync icon when calendar items are being synched. This also fixes bug 164858
git-svn-id: svn://10.0.0.236/trunk@129699 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:15:49 +00:00
dbaron%fas.harvard.edu
5d8e5f4e70 Do more filtering of onStateChange notifications in nsBrowserStatusFilter instead of in the nsBrowserStatusHandler JS code. b=168732 sr=jag r=caillon
git-svn-id: svn://10.0.0.236/trunk@129698 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 14:13:55 +00:00
kairo%kairo.at
60524454c5 bug 157683 - cvs remove contentpacks.properties, r=jbetak, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129697 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 13:59:14 +00:00
seawood%netscape.com
ba1e6f7e08 Call FindCanvasBackground after it has been defined since it is an inline funciton.
Fixing Solaris Forte tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129694 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 13:54:28 +00:00
mikep%oeone.com
efe10cbd99 Added in ability to show events from selected day (this doesn't refresh when people click on a new day) bug 168672
git-svn-id: svn://10.0.0.236/trunk@129693 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 13:42:18 +00:00
mikep%oeone.com
919f3429fd Fixing bug 168820.
git-svn-id: svn://10.0.0.236/trunk@129692 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 12:56:32 +00:00
john.marmion%ireland.sun.com
6e5e9425ca ensure tags have same property ids for both outlook modes,bug=111968,r=rdayal,sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@129691 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 12:33:22 +00:00
jpierre%netscape.com
ffadeac987 Undo check-in that broke QA
git-svn-id: svn://10.0.0.236/trunk@129690 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 09:32:09 +00:00
sspitzer%netscape.com
0840f3cc13 XP_WIN, not XP_WIN32. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129689 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 07:58:44 +00:00
sspitzer%netscape.com
8ef36b8b75 more work on the sound datasource.
git-svn-id: svn://10.0.0.236/trunk@129688 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 07:55:17 +00:00
sspitzer%netscape.com
958cd0acdf switch to use contract ID.
git-svn-id: svn://10.0.0.236/trunk@129687 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 07:54:47 +00:00
darin%netscape.com
f71b3fa49f fixing "oops" following my checkin for bug 45421 (thanks to cbiesinger)
git-svn-id: svn://10.0.0.236/trunk@129686 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:51:28 +00:00
sspitzer%netscape.com
d0fbcd90a5 adding new datasource for system sounds. right now, this is just used by mail (prefs and filters). so adding it here as to not bloat mozilla/widget.
git-svn-id: svn://10.0.0.236/trunk@129685 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:33:48 +00:00
rogerl%netscape.com
ea678e00a0 Arithmetic. Global properties.
git-svn-id: svn://10.0.0.236/trunk@129684 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:33:47 +00:00
sspitzer%netscape.com
6493e6faef fix bad comments.
git-svn-id: svn://10.0.0.236/trunk@129683 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:31:47 +00:00
jkeiser%netscape.com
664fc74eb6 Make default wrap soft again, fix up text reflow, remove cruft from button reflow (bug 164641), r=rods@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129682 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:23:52 +00:00
jkeiser%netscape.com
758bd51d55 Allow nsHTMLValue to store embedded nulls (bug 162572), r=sicking@bigfoot.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@129681 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:19:27 +00:00
jkeiser%netscape.com
896bdc4fdb Make file inputs accept leading file:// (t.bubeck@reinform.de's patch, bug 165943), r=jkeiser@netscape.com, sr=darin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129680 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 06:00:08 +00:00
darin%netscape.com
2ec30a8a14 attempting to fix mac bustage
git-svn-id: svn://10.0.0.236/trunk@129679 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 04:34:53 +00:00
sspitzer%netscape.com
f079dc1472 initial UI for sound picker. working on a datasource that will
sniff the system and display a menulist.  r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@129678 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 03:36:23 +00:00
sspitzer%netscape.com
07638ea464 remove dead code.
git-svn-id: svn://10.0.0.236/trunk@129677 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 03:28:34 +00:00
sspitzer%netscape.com
34e3216210 more fixes for allowing user to specify the default mail sound.
allow the pref to be set to a system sound, or to a file url.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129676 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 03:27:57 +00:00
yxia%netscape.com
538b0d2ede Netscape 7.0 PR1 translation
git-svn-id: svn://10.0.0.236/trunk@129675 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 02:59:45 +00:00
bryner%netscape.com
e0288c5179 Remove unused include paths for datetime and finger now that they have moved to extensions.
git-svn-id: svn://10.0.0.236/trunk@129674 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 02:31:22 +00:00
arougthopher%lizardland.net
1461d0ddf2 Bug#167157
[beos] need support for modeOpenMultiple for nsIFilePicker
r=arougthopher


git-svn-id: svn://10.0.0.236/trunk@129673 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 01:45:44 +00:00
arougthopher%lizardland.net
b9c570059c Bug#159137
Fix the font defaults under BeOS

r=arougthopher


git-svn-id: svn://10.0.0.236/trunk@129672 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 01:17:47 +00:00
sspitzer%netscape.com
b884a020c1 add backend code and hidden pref to allow custom sound when new mail arrives.
r/sr=bienvenu.  front end code to come soon.


git-svn-id: svn://10.0.0.236/trunk@129671 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 01:17:32 +00:00
sspitzer%netscape.com
c3eff06a60 code cleanup. use contract ids instead of static cids. remove some usused static cids.
git-svn-id: svn://10.0.0.236/trunk@129670 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 00:46:09 +00:00
sspitzer%netscape.com
db830bee5c code clean up in preparation from allowing the user to pick the sound on new mail.
cache the nsISound instance.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129669 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 00:38:47 +00:00
ccarlen%netscape.com
7414a213bc Bugscape 8854 - allow access to background images for embedding context menu listeners. Adding new interfaces, nsIContextMenuListener2 and nsIContextMenuInfo, to allow access to more information about the menu context. Also fixes bug 163928. r=pinkerton/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129668 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 00:13:37 +00:00
rogerl%netscape.com
521b74c195 More gc. Method invocation.
git-svn-id: svn://10.0.0.236/trunk@129667 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 00:09:58 +00:00
ccarlen%netscape.com
6fa5aa5b2a Adding new files for bugscape 8854 - allow access to background images for embedding context menu listeners. Adding new interfaces, nsIContextMenuListener2 and nsIContextMenuInfo, to allow access to more information about the menu context. Also fixes bug 163928. r=pinkerton/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129666 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-16 00:07:07 +00:00
darin%netscape.com
95506efb63 fixes bug 45421 "Offline: No feedback when browsing to an uncached URL in
offline mode" r=adamlock sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@129665 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 23:40:43 +00:00
cbiesinger%web.de
0fed1f0424 putting back the inline keywords I accidentally removed
git-svn-id: svn://10.0.0.236/trunk@129664 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 21:07:48 +00:00
cbiesinger%web.de
228e2da902 more unwanted stuff
git-svn-id: svn://10.0.0.236/trunk@129663 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 21:02:57 +00:00
cbiesinger%web.de
ddd43545f7 this should've never been checked in...
git-svn-id: svn://10.0.0.236/trunk@129662 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 21:02:03 +00:00
dougt%netscape.com
6fe1c2b00b fixes a gcc warning about a partially-bracketed initializer. patch by dbaron, r=me, b=168584
git-svn-id: svn://10.0.0.236/trunk@129661 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 20:59:29 +00:00
cbiesinger%web.de
c2e455624f bug 163736 fixing speedracer bustage. checking in for roland mainz
git-svn-id: svn://10.0.0.236/trunk@129660 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 20:15:43 +00:00
dougt%netscape.com
b039687b70 Fixing Unregister method to use the same PR_CALLBACK signature for implementations as were used for function declarations.
git-svn-id: svn://10.0.0.236/trunk@129659 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 19:55:08 +00:00
cbiesinger%web.de
9c173cccaf bug 166886 r=jesup,stuart sr=tor Crash while loading sourceforge.net (on a debug build) (on Tru64) fixed by doing some code cleanup
git-svn-id: svn://10.0.0.236/trunk@129658 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 19:51:37 +00:00
morse%netscape.com
dc05f794a5 bug 166218, Bad cookie selection based on cookie path, r=dbaron, sr=jag
git-svn-id: svn://10.0.0.236/trunk@129656 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 19:12:05 +00:00
sspitzer%netscape.com
32bbfa6130 fix for #167567. Message Display prefs: remove 2nd line for emoticon option.
initial patch contributed by stephend@netscape.com.  r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@129654 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 15:53:51 +00:00
t_mutreja%yahoo.com
4d9ee9baea Bug: 156203(copy/paste doesn't always copy numbers/letters in <OL>)
Patch: t_mutreja@yahoo.com, r=akkana, sr=jst, a=asa.


git-svn-id: svn://10.0.0.236/trunk@129653 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 13:14:14 +00:00
tor%cs.brown.edu
4f1a56d667 gfx2 is history. r=cls
git-svn-id: svn://10.0.0.236/trunk@129652 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 09:04:32 +00:00
seawood%netscape.com
37576407e9 Remove extraneous ` from LD_LIBRARY_PATH
git-svn-id: svn://10.0.0.236/trunk@129651 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 08:12:41 +00:00
sspitzer%netscape.com
a2e5dd29b0 fix regression caused by #166792. unable to attach files to compose.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129650 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 06:38:42 +00:00
sspitzer%netscape.com
6f98f82bb6 fix problem with folder pane width not persisting (in normal messenger layout)
and fix gravity problem with folder pane (250px is too much!)
thanks to <gonufer@yahoo.com> for the bug report.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129649 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:51:47 +00:00
sspitzer%netscape.com
6982ba0e33 fix for bug #168236. show buddy icon in the header area (for normal and view all, not collapsed). r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129648 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:39:04 +00:00
sspitzer%netscape.com
b91d7a3525 code clean up for buddy icon in ab card pane. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129647 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:33:47 +00:00
seawood%netscape.com
488db951f1 Removing unused MOZ_JAVA_SUPPLEMENT ifdef
git-svn-id: svn://10.0.0.236/trunk@129646 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:26:45 +00:00
sspitzer%netscape.com
99961a45b8 clean up code for showing buddy name icon in addressbook. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129645 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:07:07 +00:00
sspitzer%netscape.com
ad9e2bc97d remove some unnecessary includes. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@129644 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:05:19 +00:00
sspitzer%netscape.com
40ef26aac9 switch from CID to contractid. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@129643 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 05:03:53 +00:00
curt%netscape.com
cd8789d97f Cleanup for first real build of gre installer.
(Not yet officially being built)


git-svn-id: svn://10.0.0.236/trunk@129642 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 04:52:30 +00:00
curt%netscape.com
1e91fd637e This got missed in the name change update.
(bug #167795)


git-svn-id: svn://10.0.0.236/trunk@129641 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 04:44:26 +00:00
morse%netscape.com
084917570d bug 166143 cookies with quotes around the max-age value expire immediately, r/sr=jag,jst
git-svn-id: svn://10.0.0.236/trunk@129640 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 04:02:44 +00:00
karnaze%netscape.com
e5afbfa65b bug 139524 - handle style of col's with spans. sr=kin, r=bernd
git-svn-id: svn://10.0.0.236/trunk@129634 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 03:45:10 +00:00
seawood%netscape.com
8527d8b5c4 Use the same PR_CALLBACK signature for funciton implementations as were used for function declarations.
Fixing OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129633 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 02:48:28 +00:00
depstein%netscape.com
37a2373dd7 Enhanced nsIUriContentListener test implementations (incl Get/Set methods). Added UI for registering the listener (under Test menu). Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@129632 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 02:35:22 +00:00
karnaze%netscape.com
50553919ea bug 160014 - recalc cellspacing total when balancing. sr=kin, r=kmcclusk
git-svn-id: svn://10.0.0.236/trunk@129631 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-15 01:59:21 +00:00
sspitzer%netscape.com
9ad4162527 fix for bug #168525. r/sr=bienvenu
1) cylon on busy
2) run button turns into stop when filtering
3) closing window while running prompts
4) no ok / cancel / help


git-svn-id: svn://10.0.0.236/trunk@129630 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 23:28:17 +00:00
rogerl%netscape.com
34fed38617 GC, relationals.
git-svn-id: svn://10.0.0.236/trunk@129629 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 22:17:35 +00:00
chanial%noos.fr
e94cdbfd8d adding xul name spaces in the bookmarks-toolbar binding
git-svn-id: svn://10.0.0.236/trunk@129628 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 21:53:24 +00:00
sspitzer%netscape.com
d2451e291a fix for bug #168525. add progress, status when running filters from the filter list dialog.
fix a painting bug in the filter list UI after switching servers.  allow the user to stop running filters.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129627 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 21:17:29 +00:00
danm%netscape.com
5b40b62f89 popup manager dialog title correction. bug 166442
git-svn-id: svn://10.0.0.236/trunk@129626 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 20:13:05 +00:00
danm%netscape.com
e5825654ec minor change to be controlled by a preference setting other than dom.disable_open. r=jag,lumpy
git-svn-id: svn://10.0.0.236/trunk@129625 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 19:49:41 +00:00
danm%netscape.com
f832d33f47 reinstating earlier version; Txul regression in hand. long live bug 166442 r=jag,jst,et al. still applies
git-svn-id: svn://10.0.0.236/trunk@129624 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 19:44:29 +00:00
sspitzer%netscape.com
687461e0ac fix for bug #95468 (Folder names display blank initially until resize for the folder pane).
fix for bug #168670 (remove sidebar from mail)
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129622 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 19:11:27 +00:00
sspitzer%netscape.com
c3e5a0a6eb fix js warning about savePage() and restorePage() not always returning a value.
r/sr=seth@craptastic.org


git-svn-id: svn://10.0.0.236/trunk@129621 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 19:09:09 +00:00
sspitzer%netscape.com
c984ec5290 remove sidebar from mail. part of bug #168670. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129620 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 19:05:51 +00:00
chanial%noos.fr
3414958c7b nsIIOService::GetURLSpecFromFile has been moved to nsIFileProtocolHandler (bug 166792 + correction in addBookmark.js)
git-svn-id: svn://10.0.0.236/trunk@129619 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 18:52:57 +00:00
ere%atp.fi
9fd8f4f29b Bug 168697, Need to request In-Reply-To header from imap server
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129618 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 18:41:15 +00:00
sspitzer%netscape.com
16e63f08a0 fix #168696, js strict warning when opening Message menu item, with no selected messages.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129617 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 18:11:58 +00:00
dougt%netscape.com
e3e8050fea Freeze nsICategoryManager. b=154047 r=alecf@netscape.com, sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129616 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 17:14:02 +00:00
dougt%netscape.com
add17b8f38 XPCOM Glue Is broken on linux. b=168584, sr=alecf@netscape.com, r=bryner@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129615 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 17:12:46 +00:00
nhotta%netscape.com
e34910bb58 Added 'styl' for D&D, the style run is created from script runs
which is generated after the text is converted from Uincode,
bug 168041, r=pink, sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@129614 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 15:52:11 +00:00
sspitzer%netscape.com
59b9a53515 remove defaults for ab sidebar, since it is gone now. bug #162785. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129613 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 15:18:25 +00:00
sspitzer%netscape.com
671968aa38 fix for bug #162785.
1) remove sidebar completely from addressbook.
2) handle scenario where user starts up with dirTree collapsed
3) select all and dir tree has focus, select all and focus results pane
4) code cleanup.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129612 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 15:13:15 +00:00
sspitzer%netscape.com
24b0b733d2 fix whitespace, comment. no bug #.
git-svn-id: svn://10.0.0.236/trunk@129611 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 15:09:26 +00:00
sspitzer%netscape.com
57f670c5ea supplimental fix for bug #142845. when printing cards, print out the newly added screenname attribute. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129610 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 15:08:43 +00:00
ian%hixie.ch
2f4fbdd7ef Form submission cleanup: use ./ instead of blank actions, since some UAs leave the query string on POSTs with blank actions. Also switch some GETs to POSTs since we now support them.
git-svn-id: svn://10.0.0.236/trunk@129609 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 13:07:18 +00:00
mkaply%us.ibm.com
1678dbcb8b Regression caused by bug 167171 - r=pedemont
git-svn-id: svn://10.0.0.236/trunk@129608 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 12:56:33 +00:00
ian%hixie.ch
68af41123b Add more debugging output to core parts of the run loop.
git-svn-id: svn://10.0.0.236/trunk@129607 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 12:47:02 +00:00
ian%hixie.ch
5b9fb951d2 The 'acknowledge' string could be used for more than blank requests.
git-svn-id: svn://10.0.0.236/trunk@129606 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 12:46:16 +00:00
ian%hixie.ch
23f69d1be4 Implement a way for requests to include referrer information.
git-svn-id: svn://10.0.0.236/trunk@129605 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 12:45:26 +00:00
blizzard%redhat.com
1147605a27 Bug #167782. Get gtk2 building again after timer changes. r=dougt, sr=alecf Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@129604 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 12:07:03 +00:00
caillon%returnzero.com
6a6da2c1ef 164453 - Fixing a crasher in nsEventStateManager::DispatchNewEvent()
Fix contributed by Peter A Jonsson <pj@ludd.luth.se>
r=bryner sr=jst


git-svn-id: svn://10.0.0.236/trunk@129603 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 10:28:14 +00:00
jpierre%netscape.com
6d1bd16d38 Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129602 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 06:42:39 +00:00
brendan%mozilla.org
a15af1d979 Better macro name, nit-pick on last checkin.
git-svn-id: svn://10.0.0.236/trunk@129601 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 06:40:59 +00:00
seawood%netscape.com
2468b072d6 Add support for BSDI 5.x
Thanks to lidl@pix.net for the patch.
Bug #167375 r=cls,wtc


git-svn-id: svn://10.0.0.236/trunk@129600 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 06:27:46 +00:00
darin%netscape.com
a1acd5413e fixing oops from my checkin for bug 166792, thx dbaron!
git-svn-id: svn://10.0.0.236/trunk@129599 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 06:05:08 +00:00
jpierre%netscape.com
ed8ceb725e Add assertion to help debugging CRL crash
git-svn-id: svn://10.0.0.236/trunk@129598 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 05:41:42 +00:00
leaf%mozilla.org
2bfb55f311 Automated update
git-svn-id: svn://10.0.0.236/trunk@129597 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 05:40:13 +00:00
seawood%netscape.com
ac49bb399f Remove flawed --with-static-qt & --with-static-gtk options.
Bug #166408 r=blizzard


git-svn-id: svn://10.0.0.236/trunk@129596 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 05:39:15 +00:00
bzbarsky%mit.edu
f700bdbb39 Fix an edge case in color-parsing correctness. Bug 154755, r=glazman,
sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@129595 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 05:28:26 +00:00
aaronl%netscape.com
74ad95a3f0 Bug 168135. Typeaheadfind - support simple xlinks. r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@129594 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 05:16:25 +00:00
loadrunner%betak.net
1191b2df4e DCCK - backing out initial checkin, not part of the build
git-svn-id: svn://10.0.0.236/trunk@129593 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 02:57:35 +00:00
naving%netscape.com
97667dd99e 168607 r/sr=mscott fixing quick search view not invalidated after the sort
git-svn-id: svn://10.0.0.236/trunk@129592 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 02:38:22 +00:00
sspitzer%netscape.com
ce74eb117a fix for #130385. (Filter UI: Action dropdown shows no (blank) Priority default selection)
fix for #168046.  (Filter UI: default dialog size clipped so doesn't show OK/Cancel/Help)
fix for #167891.  (filter log window, persist size, add border, use <p> instead of <pre> so that the log entries will wrap, and we don't force the user to horizontally scroll)
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129591 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 02:24:14 +00:00
loadrunner%betak.net
186b69e049 DCCK - initial checkin, not part of the build
git-svn-id: svn://10.0.0.236/trunk@129590 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 02:15:03 +00:00
sfraser%netscape.com
e896df615d Fix darin build bustage. r=law
git-svn-id: svn://10.0.0.236/trunk@129589 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 01:10:47 +00:00
dbaron%fas.harvard.edu
da966ea999 Fix OS/2 bustage from Akkana's checkin by removing extraneous |const|. r=akkana b=124265
git-svn-id: svn://10.0.0.236/trunk@129588 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 01:10:33 +00:00
law%netscape.com
4afa6f5035 Backing out timeless's change (plus mine that fixed the build bustage); hopefully will clear orange on Linux builds
git-svn-id: svn://10.0.0.236/trunk@129587 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 00:18:33 +00:00
pschwartau%netscape.com
2933f305da Initial add. Regression test for bug 168347.
git-svn-id: svn://10.0.0.236/trunk@129586 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-14 00:12:25 +00:00
sspitzer%netscape.com
58eee39d10 fix for bug #168583. do aim presence in the AB the same way that webmail does it.
r/sr=bienveu


git-svn-id: svn://10.0.0.236/trunk@129585 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 23:43:21 +00:00
jst%netscape.com
a86afa175e Fixing bug 168096. Fix leak in nsXULDocument::GetFocusController(). r=sicking@bigfoot.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@129584 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 23:12:20 +00:00
jst%netscape.com
8cb0a8e929 De-tabifying. Die tabs, die! :-)
git-svn-id: svn://10.0.0.236/trunk@129583 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 23:10:58 +00:00
danm%netscape.com
49ebe1575b new popup window policy pref default thing. bug 166442 r=jag
git-svn-id: svn://10.0.0.236/trunk@129582 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 23:06:49 +00:00
law%netscape.com
23dd8de824 Fixing build bustage
git-svn-id: svn://10.0.0.236/trunk@129581 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 23:06:10 +00:00
serge%netscape.com
5349dde113 166713, crash in [@ PluginViewerImpl::StartLoad] Trunk, r=av, sr=beard
git-svn-id: svn://10.0.0.236/trunk@129580 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:50:02 +00:00
mkaply%us.ibm.com
588eacfc8c Continuing OS/2 XPINSTALL Wizard work
git-svn-id: svn://10.0.0.236/trunk@129576 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:41:34 +00:00
brendan%mozilla.org
1f4ca86d7b Followup fix for 168347, r=rogerl: avoid temporary bloat due to QuoteString without sprinter offset retract.
git-svn-id: svn://10.0.0.236/trunk@129575 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:40:27 +00:00
naving%netscape.com
01cbeb7186 167380 r=cavin sr=bienvenu fix regression in quick search where it doesn't preserve selection if you
select a msg before results are sorted.


git-svn-id: svn://10.0.0.236/trunk@129574 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:40:24 +00:00
timeless%mac.com
55fa722b62 Bug 155413 nsIClassInfo crash [@nsGenericFactory::GetHelperForLanguage] mInfo is null
r=dougt sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@129573 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:36:48 +00:00
mkaply%us.ibm.com
8b5834c1e0 Not sure what happened here - probably a header changed somewhere
git-svn-id: svn://10.0.0.236/trunk@129572 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:36:42 +00:00
brendan%mozilla.org
d8c0e69a55 Restore correct form of assertion removed by last rev.
git-svn-id: svn://10.0.0.236/trunk@129571 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:32:59 +00:00
darin%netscape.com
878c3c330b fixes bug 141641 "disabling cross-site HTTPS referrers breaks sites"
r=mstoltz,bbaetz sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@129570 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:21:57 +00:00
gerv%gerv.net
1f6144a379 Bug 25521 - Keyword field in new bug entry. Patch by jeff.hedlund@matrixsi.com; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@129569 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:21:19 +00:00
chak%netscape.com
98ed7836a1 Fix for #168255 - Change references to MRE into GRE in XPCOM/Embedding
r=dougt, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129568 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:18:43 +00:00
akkana%netscape.com
bb9e89902c More for 124265 -- fix mac build: remove obsolete ApplyStyleSheet method from nsHTMLEditorLog (which only Mac was building). r=cmanske
git-svn-id: svn://10.0.0.236/trunk@129567 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 22:00:16 +00:00
sspitzer%netscape.com
b64587323e fix for bug #168521. too much disk IO when logging filters.
fix for bug #168536.  assertions on shutting down due to filter changes.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129565 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 21:58:45 +00:00
dougt%netscape.com
d4a5d0ea73 Moving frozen interfaces to SDK per http://www.mozilla.org/projects/embedding/HowToFreeze.html.
git-svn-id: svn://10.0.0.236/trunk@129564 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 21:39:07 +00:00
jkeiser%netscape.com
b43245e234 Make input type=hidden style="display: inline" not show artifacts from input type=text (bug 166438), r=rods@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@129563 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 21:30:11 +00:00
jkeiser%netscape.com
607b1e7293 Back out bug 163593 (superceded by bug 164086), r=sicking@bigfoot.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129559 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 21:18:15 +00:00
seawood%netscape.com
790e09bdf3 MODULE & REQUIRES should be set before config.mk is included.
Allow --enable-debugger-info-modules=apprunner to work.


git-svn-id: svn://10.0.0.236/trunk@129558 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 21:15:59 +00:00
danm%netscape.com
7b1d7317cd moving nsIPopupWindowManager.idl from extensions to appshell, where it still doesn't belong but it's an improvement. long live bug 166442 r=jag,timeless
git-svn-id: svn://10.0.0.236/trunk@129556 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:59:56 +00:00
neeti%netscape.com
b12d9a2d7d bug 141451 - First a window "Document contains no data" is shown, r= dougt, sr=darin
git-svn-id: svn://10.0.0.236/trunk@129555 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:47:15 +00:00
seawood%netscape.com
d554f69e3b Use NS_INIT_ISUPPORTS instead of obsolete NS_INIT_REFCNT.
Fixing cocoa build bustage.


git-svn-id: svn://10.0.0.236/trunk@129554 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:37:04 +00:00
oeschger%netscape.com
48727ebb97 just removing a few more unused files from help for 161740, with permission from 162559
git-svn-id: svn://10.0.0.236/trunk@129552 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:22:10 +00:00
akkana%netscape.com
c0d23bd87a Related to bug 124265: remove these redundant .h files (we have idl files for these interfaces) that should have been removed long ago. r=cmanske, smfr sr'ed this months ago on some other bug
git-svn-id: svn://10.0.0.236/trunk@129550 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:11:58 +00:00
danm%netscape.com
c7b15d6fd0 moving from its old home in extensions. it doesn't belong here either, but it's used outside extensions so here it sits for now.
git-svn-id: svn://10.0.0.236/trunk@129549 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:11:25 +00:00
darin%netscape.com
dce12a10ad this file is no longer built and should have been removed ages ago.
git-svn-id: svn://10.0.0.236/trunk@129548 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:05:48 +00:00
cmanske%netscape.com
80212ba120 Checking in fix by stephend: remove 'done' status message in mail Composer. b=90691, r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@129547 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 20:03:05 +00:00
darin%netscape.com
0a70cf08c8 fixes XP_WIN bustage
git-svn-id: svn://10.0.0.236/trunk@129546 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:58:02 +00:00
dougt%netscape.com
0c5cc985f5 Fixes compiler warnings. b=168396, r=dougt, sr=dveditz. patch by walk84@yahoo.com
git-svn-id: svn://10.0.0.236/trunk@129545 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:55:02 +00:00
bienvenu%netscape.com
2e5da9ad4a fix filter after the fact not to have cumulative matches, r/sr=sspitzer, 168551
git-svn-id: svn://10.0.0.236/trunk@129544 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:53:09 +00:00
akkana%netscape.com
a2c8efc800 124265: make nsIEditorStyleSheet more scriptable. Fix is partly me r=cmanske, partly cmanske r=me; all is sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129543 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:47:38 +00:00
curt%netscape.com
06fa5b4d84 Clean up (this is not yet in the build process).
git-svn-id: svn://10.0.0.236/trunk@129542 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:46:21 +00:00
darin%netscape.com
292afed664 fixes bug 166792 "move nsIIOService::GetURLSpecFromFile, etc. to
nsIFileProtocolHandler" r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129541 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:32:45 +00:00
sspitzer%netscape.com
d7ae810d1d fix for assertion. see bug #168533. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129540 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 19:19:24 +00:00
darin%netscape.com
ada1744a2c fixes bug 168425 "cleanup nsIProtocolHandler.idl" r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129538 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 18:55:57 +00:00
sspitzer%netscape.com
ec5befca2b supplimental fix for #168269. we also know that username for username@cs.com is an aim screenname. r/sr=bienvenu,putterman
git-svn-id: svn://10.0.0.236/trunk@129537 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 18:55:02 +00:00
bryner%netscape.com
03b44c81cf Bump skin version to 1.2.
git-svn-id: svn://10.0.0.236/trunk@129536 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 18:50:03 +00:00
rogerl%netscape.com
aad802e73e For stmt, block frame & gc work.
git-svn-id: svn://10.0.0.236/trunk@129531 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 17:54:16 +00:00
gerv%gerv.net
58e667c783 Bug 168075 - Undefined subroutine &main::Error called at /opt/webtools/bugzilla/buglist.cgi line 1005. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@129530 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 17:37:41 +00:00
sspitzer%netscape.com
d1a950cb48 fix for #168269. autocollect improvements. autocollect screennames and displaynames.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129528 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 14:51:17 +00:00
mkaply%us.ibm.com
923a63b3d2 OS/2 bustage - no semicolons after these
git-svn-id: svn://10.0.0.236/trunk@129527 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 14:42:42 +00:00
mikep%oeone.com
3e2e62905e Fixing bug with selection not resetting after deleting an event.
git-svn-id: svn://10.0.0.236/trunk@129526 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 14:22:24 +00:00
mikep%oeone.com
d23fa65772 Moving drag and drop to main calendar window from list of calendars.
git-svn-id: svn://10.0.0.236/trunk@129525 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 14:18:22 +00:00
mikep%oeone.com
ba6c6ca22d Fixing bug 168320, problem with recurrence near the end of the month. Also moved strings to DTD from JS.
git-svn-id: svn://10.0.0.236/trunk@129524 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 14:17:39 +00:00
glazman%netscape.com
29a01cc643 -- not part of the build, cascades only --
adds support for line-height property, fixes a blocking bug in length units menulists, fixes a bug in Border Tab when trying to unspecify the border style and all four side borders have the same styles


git-svn-id: svn://10.0.0.236/trunk@129523 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 13:47:42 +00:00
jfrancis%netscape.com
4ea028e64a fix for 95654: inserting an <hr> creates a blank line after it
r=glazman
sr=kin


git-svn-id: svn://10.0.0.236/trunk@129522 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 13:31:11 +00:00
jfrancis%netscape.com
8510bd9c34 fix for 125161: forward delete in text widget should not delete trailing blank line
r=glazman
sr=kin


git-svn-id: svn://10.0.0.236/trunk@129521 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 13:26:14 +00:00
jfrancis%netscape.com
c5787e7e02 fix for 162874: editor actions can cause asserts in range code.
r=glazman
sr=kin


git-svn-id: svn://10.0.0.236/trunk@129520 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 13:12:30 +00:00
mikep%oeone.com
401ea4983a Adding in required files.
git-svn-id: svn://10.0.0.236/trunk@129519 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 12:24:30 +00:00
av%netscape.com
18019aed9e Fix for bug 166815 -- pref plugin.dont_try_safe_calls is ignored, code=serge, r=av, sr=beard
git-svn-id: svn://10.0.0.236/trunk@129518 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 11:55:55 +00:00
leaf%mozilla.org
c90d3c38a0 Automated update
git-svn-id: svn://10.0.0.236/trunk@129517 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 09:24:43 +00:00
leaf%mozilla.org
c2e8291eb7 updating milestone version to 1.2b
git-svn-id: svn://10.0.0.236/trunk@129516 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 09:20:31 +00:00
leaf%mozilla.org
b840c9bc41 update "mozilla version" to 1.2b
git-svn-id: svn://10.0.0.236/trunk@129515 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 09:19:19 +00:00
peterlubczynski%netscape.com
99fc3852eb Fixing Mach-O bustage
git-svn-id: svn://10.0.0.236/trunk@129514 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 09:09:40 +00:00
morse%netscape.com
c9957f5bab bug 23508, cookie confirmation dialog should show all data, code=mvl@shop-engine.nl, a=morse, r=timeless@myrealbox.com, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129513 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 08:51:13 +00:00
morse%netscape.com
5438aed499 bug 161952, remove-all doesn't update cookieperm.txt file, cls@seawood.org, r=morse, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@129512 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 08:14:35 +00:00
peterv%netscape.com
02e8d05a7b Back out two changes of my fix for bug 86000 (convert LDAP XPCOM SDK to use AUTF8String) because they probably regressed some things. r=dmose.
git-svn-id: svn://10.0.0.236/trunk@129511 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 07:26:36 +00:00
brendan%mozilla.org
4d0bfed156 Reorder QuoteString calls added for bug 58274 to avoid overwriting just-popped strings in the string-stack (168347, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@129507 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 06:58:24 +00:00
cmanske%netscape.com
29a9d1c6be Part of fix for table editor interface changes. (fixed build bustage!) b=166922, r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@129502 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 05:31:50 +00:00
cmanske%netscape.com
764dbe4dbf Part of fix for table editor interface changes. (fixed build bustage!) b=166922, r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@129501 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 05:24:26 +00:00
wtc%netscape.com
2f4c366a9f Removed the SIGTERM signal handler, which was added to debug bug 119340.
git-svn-id: svn://10.0.0.236/trunk@129499 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 05:10:59 +00:00
serge%netscape.com
48c715e94f not part of the build yet, unix plugin sdk
git-svn-id: svn://10.0.0.236/trunk@129492 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 04:26:59 +00:00
cmanske%netscape.com
8198a66a34 Fixed table row deletion and reorganized nsITableEditor methods. b=166922, r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@129491 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 04:19:30 +00:00
chanial%noos.fr
d2c2e3f7f7 fix some command issues
git-svn-id: svn://10.0.0.236/trunk@129490 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 04:14:08 +00:00
peterlubczynski%netscape.com
48cdb18bd0 Correcting comments for deprecated interface method nsIPluginManager::GetURL(), patch by braden@endoframe.com, bug 38373
git-svn-id: svn://10.0.0.236/trunk@129488 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:44:47 +00:00
chanial%noos.fr
bbf40b2497 due update
git-svn-id: svn://10.0.0.236/trunk@129487 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:38:04 +00:00
peterlubczynski%netscape.com
0e0be5a62c Fixing Mac Mach-O bustage
git-svn-id: svn://10.0.0.236/trunk@129486 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:36:45 +00:00
peterlubczynski%netscape.com
3d27773a96 Fixing Use of uninitialized variable in nsPluginInstanceOwner::GetPluginPort(), bug 162350 r=bnesse, sr=beard
git-svn-id: svn://10.0.0.236/trunk@129482 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:24:27 +00:00
chanial%noos.fr
4c8fd7e94e Bye bye...
git-svn-id: svn://10.0.0.236/trunk@129481 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:19:07 +00:00
chanial%noos.fr
27f93a9c6f bookmark update
git-svn-id: svn://10.0.0.236/trunk@129480 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:17:19 +00:00
chanial%noos.fr
50506b8d12 bookmark rewrite landing
git-svn-id: svn://10.0.0.236/trunk@129479 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:15:57 +00:00
chanial%noos.fr
da5050dd4a bookmarks rewrite landing
git-svn-id: svn://10.0.0.236/trunk@129478 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:12:27 +00:00
peterlubczynski%netscape.com
0dfe80e668 Fix for can't show plugins if they start out hidden, bug 137231 r=serge, sr=kin
git-svn-id: svn://10.0.0.236/trunk@129477 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:11:02 +00:00
peterlubczynski%netscape.com
6961591439 Fixing NPN_GetURL (and others) with NULL target does not resolve relative URLs with document's BASE tag, bug 166861 r=anthonyd sr=jst
git-svn-id: svn://10.0.0.236/trunk@129476 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:05:54 +00:00
aaronl%netscape.com
85cbbaf3a7 Bug 165626. Rest of checkin - get typeaheadfind into xpinstall for Mozilla trunk nightlies on Mac. r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@129475 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:02:30 +00:00
peterlubczynski%netscape.com
61f4e9d6a3 Fix for OSX Inline IME does not work in composer and text area when the Flash 6 plugin is running, bug 159016 r=ftang sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@129474 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 03:02:23 +00:00
depstein%netscape.com
47e25737d3 1) Updated nsIWebBrowserChrome, nsIEmbeddingSiteWindow, and nsIURIContentListener implementations.
2) Updated nsICommandManager DoCommand() handling for commands with string attribute input.
3) Added additional FormatAndPrintOutput() method for PRUint32 input.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@129473 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 02:25:34 +00:00
dougt%netscape.com
1207133dd1 exports nspr into dist/sdk. patch by cls, r=me, b=168077
git-svn-id: svn://10.0.0.236/trunk@129472 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 02:20:48 +00:00
wtc%netscape.com
a2766a3aef Bug 168384: need to initialize the nss3lookingForCA field of nssUsage.
git-svn-id: svn://10.0.0.236/trunk@129471 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 02:07:34 +00:00
chanial%noos.fr
64880a2f5e These files are also unused
git-svn-id: svn://10.0.0.236/trunk@129470 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 01:47:48 +00:00
chanial%noos.fr
4870e064e2 bookmark manager landing
git-svn-id: svn://10.0.0.236/trunk@129469 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 01:21:36 +00:00
bienvenu%netscape.com
df768bac3c fix multiline comment
git-svn-id: svn://10.0.0.236/trunk@129467 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 01:12:33 +00:00
bienvenu%netscape.com
7c136988f3 work for filter after the fact, r=naving, sr=sspitzer 11033
git-svn-id: svn://10.0.0.236/trunk@129466 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 01:12:32 +00:00
bienvenu%netscape.com
1609ea1748 work for filter after the fact, r=naving, sr=sspitzer 11033
git-svn-id: svn://10.0.0.236/trunk@129465 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:58:06 +00:00
chanial%noos.fr
57e7eef485 tree widget landing
git-svn-id: svn://10.0.0.236/trunk@129464 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:37:59 +00:00
wtc%netscape.com
3f36686830 Bug 168368: fixed an uninitialized memory read in CERT_CreateRDN. It
should not call va_arg if 'ava0' is NULL (which means 'ava0' is the last
argument).


git-svn-id: svn://10.0.0.236/trunk@129463 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:28:55 +00:00
yxia%netscape.com
e7db88fe7d readme for Mozilla translation from Netscape
git-svn-id: svn://10.0.0.236/trunk@129462 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:27:25 +00:00
sonja.mirtitsch%sun.com
3b1f3b6d4b if USE_64 is set use option -d64 to java
write to stderr like the programs do so output is in order and logfiles
	are clean
fixed path so script works on NT
tarted to put in markers strings so a status report script will be
	able to find the things
clean fix for the NATIVE_FLAG problem
more output for the ENVIRONMENT section


git-svn-id: svn://10.0.0.236/trunk@129461 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:24:34 +00:00
chanial%noos.fr
46d360f86b no more used
git-svn-id: svn://10.0.0.236/trunk@129460 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:17:58 +00:00
chanial%noos.fr
5cb654ba64 initial file
git-svn-id: svn://10.0.0.236/trunk@129459 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:15:14 +00:00
chanial%noos.fr
0966174bb5 remove unused files
git-svn-id: svn://10.0.0.236/trunk@129458 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:13:03 +00:00
chanial%noos.fr
25c339218f renaming bookmark.properties to bookmarks.properties for consistency
git-svn-id: svn://10.0.0.236/trunk@129456 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-13 00:08:42 +00:00
oeschger%netscape.com
1f3b7a85d6 just removing some unused files from Help, bug=161740, dispensation per bug 162559
git-svn-id: svn://10.0.0.236/trunk@129453 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:56:09 +00:00
oeschger%netscape.com
ec6b0413da adding flag to make help window float on top, r=danm, sr=alecf, bug=136647
git-svn-id: svn://10.0.0.236/trunk@129452 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:53:51 +00:00
mscott%netscape.com
313e4f5264 Bug #168334 --> add support for age in days when saving a search term to a file
Add support for saving label search queries to a file
r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129451 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:53:23 +00:00
mscott%netscape.com
cada2e3d28 Bug #168355 --> add capability of setting an array of search terms on a filter.
Don't assume we are saving to rules.dat, use the right leaf name for the final file
when saving filters.

r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129450 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:52:11 +00:00
mscott%netscape.com
e7da7d3292 Bug #168355 --> add capability of setting an array of search terms on a filter
r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129449 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:51:24 +00:00
sfraser%netscape.com
72bb0b4f83 Patch to fix image scaling regression from 14835. r=mjudge/saari, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@129448 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:47:48 +00:00
andreww%netscape.com
1ac9b900c7 bugzilla bug 164174 r=suresh, sr=hewitt. Updating skin version number due to new backwards incompatibilites.
git-svn-id: svn://10.0.0.236/trunk@129447 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:39:25 +00:00
wtc%netscape.com
d43c4cf1e4 Bug 168360: Add support for the MOZ_PROFILE build option.
git-svn-id: svn://10.0.0.236/trunk@129446 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:32:58 +00:00
cbiesinger%web.de
c5151eab97 bug 141481 patch by Morten@Nilsen.com r=timeless sr=jag
strict warning in contextHelp.js


git-svn-id: svn://10.0.0.236/trunk@129444 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:24:47 +00:00
sspitzer%netscape.com
4985d517a3 fix for #167890. r/sr=bienvenu, slow to bring filter list dialog (building filter after the fact folder picker) for certain imap accounts.
git-svn-id: svn://10.0.0.236/trunk@129443 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:24:34 +00:00
aaronl%netscape.com
e1783dafd4 Bug 165632. Get typeaheadfind into mac build. This does not check it into the mac installer. r=cls, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@129442 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:23:18 +00:00
varada%netscape.com
503fe7a604 fix for 168353; regression caused by fix to 77315-missing closing braces;r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@129441 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:20:55 +00:00
wtc%netscape.com
c25b3469a5 The blob db shim code (bug 162023) introduced a crash (bug 167615) so
disable it for NSS 3.6 Beta1.


git-svn-id: svn://10.0.0.236/trunk@129440 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:17:35 +00:00
hyatt%netscape.com
fdfedfa43f Fix for 168352, getElementByID assertions, r/sr=bryner,brendan
git-svn-id: svn://10.0.0.236/trunk@129439 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:13:14 +00:00
aaronl%netscape.com
4672e6dd9e Bug 168018 - Typeaheadfind slow when started at bottom of page. Typeaheadfind wouldn't correclty start at selection or focus. Typeaheadfind selection wouldn't return to normal color after Ctrl+G used. r=kyle, sr=alecf. Bug 168084 - Typeaheadfind for links shouldn't match text inside <a name=foo>. r=caillon, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@129438 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:12:40 +00:00
chanial%noos.fr
3df71b21aa Bug 167180: new API in nsIBookmarksService for creating a new resource (bookmark, folder, folder group and separator) r/sr=hyatt,blake,bryner moa=ben
git-svn-id: svn://10.0.0.236/trunk@129437 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 23:08:12 +00:00
sspitzer%netscape.com
e907712070 implement "clear log". make sure the log is there before viewing it, otherwise
the user gets a nasty "file not found" alert, like they would on the browser.
r/sr=bienvenu.  for bug #167891.


git-svn-id: svn://10.0.0.236/trunk@129436 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:57:26 +00:00
mscott%netscape.com
a7d90878a8 Fix a minor typo inside the IS_STRING_ATTRIBUTE macro so we don't think labels
are strings.
rs=sspitzer


git-svn-id: svn://10.0.0.236/trunk@129435 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:56:45 +00:00
gerv%gerv.net
ee2413046e Bug 167978 - Fix Throw*Error l10n regressions and add a test to catch more. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@129434 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:51:50 +00:00
anthonyd%netscape.com
7063ff5e5a bug fix for 166948
change baked in url for plugin finder service
r=peterl@netscape.com
sr=beard@netscape.com


git-svn-id: svn://10.0.0.236/trunk@129433 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:35:39 +00:00
mjudge%netscape.com
4f88a43200 168043 checkin for (Roland Mainz) r=rods sr=bz fix for removing obsolete code from postscript printing
git-svn-id: svn://10.0.0.236/trunk@129432 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:35:18 +00:00
anthonyd%netscape.com
1db5a27d61 bug fix for 166948 - change baked in url for plugin finder service
r=peterl@netscape.com
sr=beard@netscape.com


git-svn-id: svn://10.0.0.236/trunk@129431 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:29:27 +00:00
sspitzer%netscape.com
c5a6e7898d supplimental fix for #167891. get the "enable logging" checkbox to work.
r/sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@129429 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:15:01 +00:00
brade%netscape.com
67a3ae63c0 reduce size of HashEntry so that the assertion won't be triggered (bug 168301, r=sfraser, sr=brendan)
git-svn-id: svn://10.0.0.236/trunk@129428 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:09:45 +00:00
naving%netscape.com
8a54609163 70322 r=alecf sr=bienvenu make compact folders use unique temp file
git-svn-id: svn://10.0.0.236/trunk@129427 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:05:15 +00:00
rogerl%netscape.com
18fe48d56b DoWhile.
git-svn-id: svn://10.0.0.236/trunk@129426 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 22:00:55 +00:00
serge%netscape.com
de6752efff fixing OS2 bustage
git-svn-id: svn://10.0.0.236/trunk@129425 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:59:53 +00:00
seawood%netscape.com
be6eba40d4 Mach-O builds need to link against gfxshared_s too.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129424 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:54:20 +00:00
sicking%bigfoot.com
01e4f8ab13 Add files to packager, bug 64945
r=peterv sr=jst


git-svn-id: svn://10.0.0.236/trunk@129423 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:50:16 +00:00
mjudge%netscape.com
7faa9021b1 checking in for Roland.Mainz@informatik.med.uni-giessen.de bug # 161364 sr=bz r=roc
git-svn-id: svn://10.0.0.236/trunk@129422 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:50:12 +00:00
brendan%mozilla.org
c16a4b2946 Followup fix to op vs. implicit JSOP_GETELEM blunder in last checkin (168302, r=sspitzer).
git-svn-id: svn://10.0.0.236/trunk@129421 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:38:07 +00:00
locka%iol.ie
ed415872b7 NOT PART OF BUILD. Clean up scriptable peer object to make it inheritable
git-svn-id: svn://10.0.0.236/trunk@129420 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:31:24 +00:00
locka%iol.ie
a1762b72f7 NOT PART OF BUILD. Clean up scriptable peer object to make it inheritable
git-svn-id: svn://10.0.0.236/trunk@129418 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 21:03:32 +00:00
darin%netscape.com
db25f062b7 possible bustage fix for mach-o build (resulting from checking for bug 163736)
git-svn-id: svn://10.0.0.236/trunk@129417 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:58:12 +00:00
mscott%netscape.com
d009b25bea Bug #162789 --> Add backend support for filtering and searching based on the sender in an address book.
Augment the search XBL widgets to support a combo box drop down of local address books.
r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129415 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:46:02 +00:00
mscott%netscape.com
b5762a39d1 Bug #162789 --> Add backend support for filtering and searching based on the sender in an address book.
r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129414 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:45:09 +00:00
mscott%netscape.com
0979eefe60 Bug #162789 --> need a method on a mdb directory to see if a card exits for an address. this is part of the work
for adding the ability to filter and search based on the sender in an address book.
r=navin
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129413 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:43:21 +00:00
sspitzer%netscape.com
d5126fcf1a fix #167891. implement filter log viewer, fix filter list dialog to match spec.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129412 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:35:18 +00:00
bzbarsky%mit.edu
2539b61b98 Fix some inline-block style-resolution issues. Bug 146409, r=kin, r=dbaron
git-svn-id: svn://10.0.0.236/trunk@129411 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:33:11 +00:00
sspitzer%netscape.com
05fe9776e8 fix for #168136. r=mstoltz, sr=dveditz.
for pref controlled schemes, allow access if source scheme is chrome or res.
needed for the new "view filter log UI".


git-svn-id: svn://10.0.0.236/trunk@129410 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:27:07 +00:00
tara%tequilarista.org
b9076a8b7a Quick update to Perl module list
git-svn-id: svn://10.0.0.236/trunk@129408 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:19:45 +00:00
sspitzer%netscape.com
829101f93f whoops, I want the uri here (kPersonalAddressbookUri) not the file name (kPersonalAddressbook). thanks to david for debugging. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@129405 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:13:38 +00:00
seawood%netscape.com
0e0c279968 Fix build order discrepancy.
Build order should go as follows:
export phase of mozilla/config (to build nsinstall)
non-gecko modules (nspr, ldap, xft, etc)
tier dirs (gecko + apps)


git-svn-id: svn://10.0.0.236/trunk@129404 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:05:28 +00:00
rjesup%wgate.com
ef4232374c Bug 167493: userdefined tags should be allowed in <head>. r=harishd, sr=jst
git-svn-id: svn://10.0.0.236/trunk@129403 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 20:04:43 +00:00
curt%netscape.com
53ad821e52 Renaming MRE to GRE (Gecko Runtime Environment)
(Bug 167795, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129400 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:45:21 +00:00
darin%netscape.com
0440ed5ff8 enabling prefetching again for XP_MAC (had to back this out two days back
due to bustage)


git-svn-id: svn://10.0.0.236/trunk@129399 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:45:10 +00:00
darin%netscape.com
8e204b29ee adding mac build changes for new MANIFEST file
git-svn-id: svn://10.0.0.236/trunk@129398 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:44:11 +00:00
dougt%netscape.com
57c8a9eb27 backing out changes until we can figure out why this is busting some machines
git-svn-id: svn://10.0.0.236/trunk@129397 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:42:49 +00:00
darin%netscape.com
5e48577598 adding MANIFEST file for link prefetching
git-svn-id: svn://10.0.0.236/trunk@129394 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:42:16 +00:00
cmanske%netscape.com
3d31f65206 Fixed busted context menu commands for cut, copy, paste, etc. b=114065, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@129393 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:40:52 +00:00
rogerl%netscape.com
c3d4093333 Break/continue fixes.
git-svn-id: svn://10.0.0.236/trunk@129392 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:38:14 +00:00
akkana%netscape.com
b6a27abd2f 130337: Fix Get New Themes when browser.block.target_new_window is set. r=jfrancis sr=kin
git-svn-id: svn://10.0.0.236/trunk@129391 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:35:55 +00:00
dougt%netscape.com
f90dcabeab Adding null checks. patch by timeless, r=me
git-svn-id: svn://10.0.0.236/trunk@129390 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:35:49 +00:00
brendan%mozilla.org
20fd8b549e Restore enumeable, permanent, readonly single-char elements to string objects; fix propertyIsEnumerable to work with shared permanent proto-properties (167910, r=rogerl).
git-svn-id: svn://10.0.0.236/trunk@129389 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:34:59 +00:00
dougt%netscape.com
2bee24bef9 Fixes 130954. crash [@nsComponentManagerImpl::FreeServices] (this=0x0) r=brendan@mozilla.org, sr=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129388 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:34:36 +00:00
mikep%oeone.com
977367e9ec Fixing bug 168194, calendar being opened as a dialog.
git-svn-id: svn://10.0.0.236/trunk@129387 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:24:29 +00:00
curt%netscape.com
5d02586f02 Renaming MRE to GRE (Gecko Runtime Environment)
(Bug 167705, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129386 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:23:52 +00:00
curt%netscape.com
69d160655e Renaming MRE to GRE (Gecko Runtime Environment)
(Bug 167795, r=chak sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129385 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:19:39 +00:00
curt%netscape.com
6ba50d8133 Renaming MRE to GRE (Gecko Runtime Library)
(Bug 167795, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129384 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:17:59 +00:00
serge%netscape.com
b144699668 fix 165094, Compressed PDF doesn't render in Acrobat Plugin, r=peterl, sr=darin
git-svn-id: svn://10.0.0.236/trunk@129383 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:12:56 +00:00
dougt%netscape.com
9a2276a261 exports nspr into dist/sdk. patch by cls, r=me, b=168077
git-svn-id: svn://10.0.0.236/trunk@129382 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:12:13 +00:00
curt%netscape.com
b4d430e581 Renaming MRE to GRE (Gecko Runtime Engine)
(Bug 167795, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129381 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:11:18 +00:00
brade%netscape.com
ae67adfc0d fix api for JS usage (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129380 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:10:32 +00:00
curt%netscape.com
5e74dffac4 Renaming MRE to GRE (Gecko Runtime Engine)
(Bug #167795, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129379 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:09:57 +00:00
brade%netscape.com
9a765843b0 fix api for JS usage; remove nsIStateUpdatingControllerCommands in favor of CommandParams (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129378 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:09:40 +00:00
brade%netscape.com
bcf7afd202 api changes (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129377 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:09:19 +00:00
brade%netscape.com
4d4e95222d remove editorShell; remove UI state; use nsIEditor instead of nsIEditorShell for refcon (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129376 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:09:01 +00:00
brade%netscape.com
69c3d04647 use nsIEditor instead of nsIEditorShell for refCon; editorshell removal; nsIStateUpdatingControlelrCommand removal; remove duplicate API (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129375 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:08:46 +00:00
brade%netscape.com
8c447fe3b5 add mComposerController (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129374 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:08:13 +00:00
brade%netscape.com
366957d7f0 setup mComposerController; use nsIEditor instead of nsIEditorShell to initialize editorControllers (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129373 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:08:04 +00:00
brade%netscape.com
340aebe7f1 api changes; use nsIEditor instead of nsIEditorShell for editorController (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129372 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:07:37 +00:00
curt%netscape.com
f6d369e190 Renaming MRE to GRE (Gecko Runtime Environment)
(Bug 167795, r=chak, sr=leaf)


git-svn-id: svn://10.0.0.236/trunk@129371 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:07:34 +00:00
brade%netscape.com
be6a01e86c use params commands in some cases; separate UI state from commands as much as possible (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129370 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:06:48 +00:00
brade%netscape.com
3a40461a64 api changes; use nsIEditor instead of nsIEditorShell for editorController; update UI here instead of in command code (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129369 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:06:33 +00:00
brade%netscape.com
c708fb5227 remove unused nsCOMPtrs (bug 157097, r=cmanske, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@129368 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 19:02:47 +00:00
mikep%oeone.com
0260af3220 Fixing selection problems in the calendar.
git-svn-id: svn://10.0.0.236/trunk@129367 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 18:47:50 +00:00
yokoyama%netscape.com
24812aff7c Bug 167631
Can't enter CJK Characters when MOZ_UNICODE is set
Supporting unicode codepoint for WM_IME_CHAR msg
/r=shanjain, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@129366 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 18:21:52 +00:00
timeless%mac.com
d0cbc1af41 Bug 168248 minor cleanup to nsMultiMixedConv.cpp
r=brade sr=darin


git-svn-id: svn://10.0.0.236/trunk@129365 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 18:12:51 +00:00
sspitzer%netscape.com
38cdfa8b66 fix tooltips, per jglick, for the IM / Compose buttons in toolbar.
fix AB printing. #168252.  thanks to rods for the bug report.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129364 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 17:52:41 +00:00
mkaply%us.ibm.com
b893e1e80e Forgot a header
git-svn-id: svn://10.0.0.236/trunk@129363 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 17:46:55 +00:00
mikep%oeone.com
894510cda2 Adding in the abilty to drag and drop events in month view.
git-svn-id: svn://10.0.0.236/trunk@129362 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 17:13:57 +00:00
seawood%netscape.com
1222ce9c31 Sun ld is picky about the ordering of libraries & their search paths so put gfxshared_s later in the list.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129359 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 16:31:30 +00:00
seawood%netscape.com
dd99df0530 MODULE_NAME must match the name used in the NS_IMPL_NSGETMODULE macro.
Fixing static build bustage.


git-svn-id: svn://10.0.0.236/trunk@129358 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:55:02 +00:00
seawood%netscape.com
272cd41e18 Mark library as an "EXPORT_LIBRARY" so that it gets linked into static builds.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129357 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:49:08 +00:00
alecf%netscape.com
3adc742bec fix xprint bustage one more time (does not affect main tinderbox builds)
git-svn-id: svn://10.0.0.236/trunk@129355 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:20:53 +00:00
mikep%oeone.com
062603043d Fixing bug 167166, problem with selection after adding event.
git-svn-id: svn://10.0.0.236/trunk@129354 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:16:55 +00:00
mikep%oeone.com
c2abf4a74a Fixing bug 168198 and adding more items to the event list tree.
git-svn-id: svn://10.0.0.236/trunk@129353 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:07:15 +00:00
mikep%oeone.com
974852c807 Removing unused file.
git-svn-id: svn://10.0.0.236/trunk@129352 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:06:35 +00:00
wtc%netscape.com
96fe5c4899 Bug 167375: configuration changes needed for building on BSD/OS 5.0.
The patch is contributed by lidl@pix.net.
Modified files: configure configure.in _bsdi.h


git-svn-id: svn://10.0.0.236/trunk@129351 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 15:04:22 +00:00
alecf%netscape.com
0e6db23118 attempt to fix BeOS bustage
git-svn-id: svn://10.0.0.236/trunk@129350 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:54:09 +00:00
mikep%oeone.com
77a7341bbd Fixing uncaught exception causing events not to disappear.
git-svn-id: svn://10.0.0.236/trunk@129348 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:53:09 +00:00
alecf%netscape.com
18ca0110bf attempt to fix xprint bustage on ports
git-svn-id: svn://10.0.0.236/trunk@129347 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:48:20 +00:00
mkaply%us.ibm.com
6240c9dd43 No bug - fixing my backout of the restart browser turbo action - should have been closer to what windows looked like before the code got put in
git-svn-id: svn://10.0.0.236/trunk@129346 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:48:07 +00:00
mikep%oeone.com
73371c5793 Fixing problems with selectAll.
git-svn-id: svn://10.0.0.236/trunk@129345 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:33:25 +00:00
mikep%oeone.com
28c51fe5ef Fixing some selection problems in calendar. Select All continues not to work.
git-svn-id: svn://10.0.0.236/trunk@129343 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:20:19 +00:00
mkaply%us.ibm.com
a4c3c36b71 #67749
r=pedemont, sr=dbaron
Add #ifdef to nsChromeRegistry to use platform specific forms.css overrides


git-svn-id: svn://10.0.0.236/trunk@129342 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 14:05:22 +00:00
mikep%oeone.com
c89a9800de Fixing bug 165438, problem with hover graphic for time picker.
git-svn-id: svn://10.0.0.236/trunk@129341 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 13:23:02 +00:00
rods%netscape.com
47c1f5ed09 IFrames need their own calculation for placement, different from Frameset frames
Bug 167775 r=dcone sr=kin


git-svn-id: svn://10.0.0.236/trunk@129340 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 13:20:38 +00:00
mikep%oeone.com
d9b76b203a Fixing problem with arguments not being passed in. Window is now being opened as a dialog (bad)
git-svn-id: svn://10.0.0.236/trunk@129339 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 13:17:56 +00:00
mikep%oeone.com
2df1e799ff Fixing bug 167935: Problem with hide completed tasks checkbox.
git-svn-id: svn://10.0.0.236/trunk@129338 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 13:16:57 +00:00
mikep%oeone.com
90fc17aa18 Fixing if statement for imap URLs.
git-svn-id: svn://10.0.0.236/trunk@129337 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 13:16:31 +00:00
rods%netscape.com
f55fb874fb Adding more tests
git-svn-id: svn://10.0.0.236/trunk@129336 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 12:29:33 +00:00
rods%netscape.com
99522dae64 fixing up my own #ifdef debug
git-svn-id: svn://10.0.0.236/trunk@129335 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 12:27:03 +00:00
locka%iol.ie
97d22df80a Added xmlextras to embedding manifests. b=166608 r=ccarlen@netscape.com sr=heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129334 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 12:20:50 +00:00
ian%hixie.ch
2a5ec84f5f To make debugging easier, move the level 9 output debugging dumps from failure cases in the datasources to always, in the generic output service. May need further tweaking later.
git-svn-id: svn://10.0.0.236/trunk@129333 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 11:45:17 +00:00
ian%hixie.ch
1a593fa3aa Adding a new way of executing database statements: attempt(). Works like execute() but doesn't raise an exception on failure. Check for failure by using the ResultsFrame's 'lastError' method.
git-svn-id: svn://10.0.0.236/trunk@129332 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 11:44:07 +00:00
chanial%noos.fr
22d47560a3 Simplified CSS rules for the bookmark buttons and menus. Get rid of the bookmarksToolbar.css file. Fix the drag and drop feedback line and other glitches.
git-svn-id: svn://10.0.0.236/trunk@129331 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 10:37:25 +00:00
mjudge%netscape.com
79716034a2 small fix 14835 sr=jag r=pav very small chance of a memory leak in nsFrame
git-svn-id: svn://10.0.0.236/trunk@129330 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 10:35:46 +00:00
pavlov%netscape.com
39302c0867 Fix string bustage in DEBUG_pavlov code. r=mozbot, sr=lumpy
git-svn-id: svn://10.0.0.236/trunk@129329 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 08:42:39 +00:00
bryner%netscape.com
7c905d570b Remove nsAVLTree.cpp to fix mac bustage from alecf's checkin (bug 124182).
git-svn-id: svn://10.0.0.236/trunk@129328 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 08:36:17 +00:00
brendan%mozilla.org
ea4e97abf7 Limit code generator recursion using iterative techniques; also limit js_EmitTree frame size using arena allocation of cg2 (96526, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@129327 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 07:56:35 +00:00
rogerl%netscape.com
b279520e14 Fixes to loop handling & equality ops.
git-svn-id: svn://10.0.0.236/trunk@129326 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 07:34:22 +00:00
seawood%netscape.com
42fbc2a325 Do not set EXPORTS to empty as it breaks 'make install'.
git-svn-id: svn://10.0.0.236/trunk@129325 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:57:39 +00:00
sspitzer%netscape.com
494f4d0f1d more work on filter log viewer. not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@129324 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:50:04 +00:00
beard%netscape.com
ec974c7b99 Fix for bug #168064, crash when ~/Library/Logs doesn't exist. r=bnesse, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@129323 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:33:49 +00:00
sspitzer%netscape.com
e29f27cf5d supplimental fix for #161002. html escape the buffer we write to disk for security reasons.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129322 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:31:50 +00:00
naving%netscape.com
7ed59f2e8d 166675 r=cavin sr=bienvenu Do not call canGetFileMessage on bogus folder
72322 r=cavin sr=bienvenu Make imap deletes (move to trash) not fail if user hits delete, delete... quickly.


git-svn-id: svn://10.0.0.236/trunk@129321 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:22:55 +00:00
anthonyd%netscape.com
27a160216b fix for 14835, mac specific change to clip image tiling code blit to the dest rect to emulate win32 behavior - saari r=mjudge, pavlov
git-svn-id: svn://10.0.0.236/trunk@129320 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:20:20 +00:00
mjudge%netscape.com
2d40b81f4a 14835 r=pavlov saari, fixing bustage of image selection on mac/unix regression
git-svn-id: svn://10.0.0.236/trunk@129319 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:16:51 +00:00
alecf%netscape.com
7ac1999404 remove all files in gfx2, no longer part of the build
git-svn-id: svn://10.0.0.236/trunk@129318 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:07:09 +00:00
naving%netscape.com
1c5ba37e86 166411 r=cavin sr=bienvenu made so that copying msgs to local folders w/ invalid db not kick off folder parsing, just append the msg
165151 r=cavin sr=bienvenu made so that parsing folder obtains folder lock, fixes some corruption issues
writing/reading from the folder at the same time.
166675 r=cavin sr=bienvenu Do not call canGetFileMessage on bogus folder


git-svn-id: svn://10.0.0.236/trunk@129317 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:01:59 +00:00
naving%netscape.com
cc6cec0a19 165151 r=cavin sr=bienvenu Throw an alert in case parsing folder cannot get folder lock
git-svn-id: svn://10.0.0.236/trunk@129316 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 06:01:41 +00:00
alecf%netscape.com
702c37a525 oops, fix typo
git-svn-id: svn://10.0.0.236/trunk@129315 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 05:48:35 +00:00
alecf%netscape.com
5436295984 argh, missed a Makefile.in to check in
git-svn-id: svn://10.0.0.236/trunk@129313 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 05:41:42 +00:00
alecf%netscape.com
ad5faf06e7 add first cut at combined imglib2 dll
not part of build


git-svn-id: svn://10.0.0.236/trunk@129312 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 05:07:28 +00:00
alecf%netscape.com
f222dfaf57 fix bug 124182 - move nsAVLTree into htmlparser, since it is the only consumer
r=harishd, sr=jst


git-svn-id: svn://10.0.0.236/trunk@129311 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:52:01 +00:00
alecf%netscape.com
2a7fc209e3 one more file for bug 163736 - add gfx2 objects to factory, r=pavlov, sr=rbs
git-svn-id: svn://10.0.0.236/trunk@129310 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:47:09 +00:00
alecf%netscape.com
f18ce85cb7 oops, part of last checkin for bug 163736 - add shared lib to build
git-svn-id: svn://10.0.0.236/trunk@129309 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:46:15 +00:00
alecf%netscape.com
35855739dd fix for bug 163736 - consolidate gfx2 into gfx, and remove the gfx2 DLL from the build.
r=pavlov, sr=rbs
includes creating a new "Shared" library which shares gfx code between all platforms


git-svn-id: svn://10.0.0.236/trunk@129305 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:43:31 +00:00
sspitzer%netscape.com
f11d2b7a15 fix for #168108. show icons in card preview pane, using screenname attribute.
if you happen to use NS 7.x, the place we look on disk (by default) is the buddy icon directory.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129304 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:41:19 +00:00
hyatt%netscape.com
3bfbdef7d1 A collection of broadcaster fixes. Make sure observes are unhooked when removed from the doc. ALso suppress notifications on hookup, since they result in double frame construction. Bug 167445. r/sr=ben/bryner
git-svn-id: svn://10.0.0.236/trunk@129303 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:40:22 +00:00
alecf%netscape.com
d1488005d5 first cut at freezable array interface
not part of build


git-svn-id: svn://10.0.0.236/trunk@129302 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:37:51 +00:00
sspitzer%netscape.com
50b64b23e3 implement view filter log UI. not part of the build yet.
git-svn-id: svn://10.0.0.236/trunk@129300 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 04:04:54 +00:00
kmcclusk%netscape.com
dbf189662a reparent the view's descendant widgets when a view is re-inserted into a new view hierarchy position by paginated reflow. b=129034 r=roc+moz sr=kin
git-svn-id: svn://10.0.0.236/trunk@129299 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 03:59:15 +00:00
sspitzer%netscape.com
19807d05ce fix for CAB UI and backend. bug #167571. following jglick's spec and mscott's document (http://www.mozilla.org/mailnews/arch/cab.html). also fix #168115. add "IM" button to addressbook, and launch default IM application using screenname attributes of selected cards.
if multiple screennames, launch a chat.


git-svn-id: svn://10.0.0.236/trunk@129298 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 03:59:14 +00:00
caillon%returnzero.com
656972473a 167964 - nsCSSProps::LookupPropertyValue() doesn't handle -moz-appearance
r=dbaron sr=jst


git-svn-id: svn://10.0.0.236/trunk@129297 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 03:57:02 +00:00
bzbarsky%mit.edu
ce60597567 Fix debug-only build bustage on GCC 3.2. Don't pass objects through "...".
git-svn-id: svn://10.0.0.236/trunk@129296 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 03:44:37 +00:00
danm%netscape.com
0a1e6ed72f bloody hell. backing out the rest of popup manager because of a suspected Txul regression. bug 167929
git-svn-id: svn://10.0.0.236/trunk@129293 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 02:42:44 +00:00
danm%netscape.com
05d95ba02c backing out Txul-regression-causing popup window manager. bug 167929
git-svn-id: svn://10.0.0.236/trunk@129290 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 01:16:59 +00:00
rogerl%netscape.com
a4d136cbb5 Statement result value. Loop control. Equality op.
git-svn-id: svn://10.0.0.236/trunk@129289 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 01:15:46 +00:00
despotdaemon%netscape.com
d4b544159e Pseudo-automatic update of changes made by cavin@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@129288 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 01:02:27 +00:00
despotdaemon%netscape.com
c6ffa64af2 Pseudo-automatic update of changes made by leaf@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@129287 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-12 00:58:03 +00:00
ian%hixie.ch
e13d023ded Add two new filters: One for theoretically valid URIs, and one for strings being embedded _into_ URIs. Note that the first overrides the Template::Filters version since that version is arguably incorrect.
git-svn-id: svn://10.0.0.236/trunk@129285 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 23:11:43 +00:00
bzbarsky%mit.edu
562291b525 backing out remainder of bug 22056 patch to hopefully fix remaining
regression. a=perf regression.


git-svn-id: svn://10.0.0.236/trunk@129284 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 22:16:36 +00:00
beard%netscape.com
68865a1d52 Trivial resource changes for 1.0.1 release, r=bnesse.
git-svn-id: svn://10.0.0.236/trunk@129282 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 22:05:16 +00:00
bzbarsky%mit.edu
da58f36322 Backing out CSS changes from bug 22056 to see whether this fixes the
perf regression.


git-svn-id: svn://10.0.0.236/trunk@129281 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 20:59:22 +00:00
alecf%netscape.com
fdd536508a check in dummy file so that this directory appears in people's trees - no effect on builds
git-svn-id: svn://10.0.0.236/trunk@129276 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 20:22:22 +00:00
leaf%mozilla.org
d792b4b644 backing out erroneous checkin to pull scripts
git-svn-id: svn://10.0.0.236/trunk@129273 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:34:54 +00:00
mikep%oeone.com
c3ff937be2 Adding in check if not event array is passed.
git-svn-id: svn://10.0.0.236/trunk@129272 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:29:06 +00:00
mikep%oeone.com
006b704eb2 Code cleanup.
git-svn-id: svn://10.0.0.236/trunk@129271 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:28:42 +00:00
mikep%oeone.com
c006d4315c Adding ability to publish to FTP server.
git-svn-id: svn://10.0.0.236/trunk@129270 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:28:16 +00:00
mikep%oeone.com
1e947d378c Changing function that gets called when calendar is passed a URL.
git-svn-id: svn://10.0.0.236/trunk@129269 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:27:42 +00:00
mikep%oeone.com
87b0a9d780 Fixing localizatioFixing localizationn
git-svn-id: svn://10.0.0.236/trunk@129268 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:27:09 +00:00
mikep%oeone.com
536033b41f Fixing bug with main view not refreshing when you click on grippy.
git-svn-id: svn://10.0.0.236/trunk@129267 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:25:18 +00:00
mikep%oeone.com
7ee03ab9ab Changing function name that gets called if URL is passed to calendar.
git-svn-id: svn://10.0.0.236/trunk@129266 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:24:23 +00:00
mikep%oeone.com
5cdb77ff94 New build.
git-svn-id: svn://10.0.0.236/trunk@129265 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:23:48 +00:00
mikep%oeone.com
119a502987 Fixing problems with selecting all. Not complete yet, but at least select all now works.
git-svn-id: svn://10.0.0.236/trunk@129264 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:23:08 +00:00
cltbld%netscape.com
f751ff0e74 update the tag to MOZILLA_1_2a_RELEASE
git-svn-id: svn://10.0.0.236/trunk@129263 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 18:03:05 +00:00
mikep%oeone.com
c57b925e32 Fixing bug 159455.
git-svn-id: svn://10.0.0.236/trunk@129262 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 17:57:59 +00:00
rogerl%netscape.com
c2fdb19d99 Statement labels.
git-svn-id: svn://10.0.0.236/trunk@129261 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 17:20:41 +00:00
mikep%oeone.com
1abbb3f072 Fixing bug with double clicking on Monday in week view.
git-svn-id: svn://10.0.0.236/trunk@129260 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 16:57:15 +00:00
gerv%gerv.net
66237ccbe3 Bug 166698 - The error system's in a bit of a mess. This file was missed on the original checkin.
git-svn-id: svn://10.0.0.236/trunk@129258 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 14:12:12 +00:00
gerv%gerv.net
dd47f59d84 Bug 166821 - reports.cgi broken by recent schema changes. r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@129257 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 13:56:35 +00:00
rods%netscape.com
b75266fbaa Parese for font families before checking font names
Bug 166919 r=dcone sr=bz


git-svn-id: svn://10.0.0.236/trunk@129256 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 12:58:38 +00:00
glazman%netscape.com
ed8f7adafa nobr tag was invisible in AllTags mode, b=163855, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@129255 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 12:28:13 +00:00
mkaply%us.ibm.com
522a3321e5 #166054
Removing unnecessary OS/2 only files


git-svn-id: svn://10.0.0.236/trunk@129254 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 12:23:22 +00:00
chanial%noos.fr
25c99654d9 Bug 161414: some properties windows in Bookmark Manager not properly sized r=timeless, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@129253 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 12:14:20 +00:00
caillon%returnzero.com
17ef3350e8 77315 - Make send page grab the correct document title.
r=sicking sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@129252 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 11:45:38 +00:00
peterv%netscape.com
80930addc5 Fix for bug 86000 (convert LDAP XPCOM SDK to use AUTF8String). r=dmose, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@129251 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 11:22:41 +00:00
bzbarsky%mit.edu
d1696dd645 Adds text/image/both modes for the main toolbar. Bug 22056, patch by
neil@parkwaycc.co.uk, r=timeless, sr=bzbarsky, moa=blake,hyatt


git-svn-id: svn://10.0.0.236/trunk@129250 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 09:48:17 +00:00
glazman%netscape.com
63293fb579 in some cases, it was impossible to unbold selection in CSS mode, b=167510, r=brade, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@129249 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 09:25:47 +00:00
glazman%netscape.com
e2b73a99d7 pressing Ctrl+tab doesn't switch tabs like it does in other tabbed apps; b=136915, r=neil@parkwaycc.co.uk, sr=jag, fix by jruderman@hmc.edu (Jesse Ruderman)
git-svn-id: svn://10.0.0.236/trunk@129248 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 09:21:40 +00:00
darin%netscape.com
1d4d492ac1 adding nsISelectionImageService.idl to layoutIDL.xml to fix more mac
bustage from mjudge's checkin


git-svn-id: svn://10.0.0.236/trunk@129246 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 07:42:03 +00:00
bzbarsky%mit.edu
77aeb90c46 modeGetFolder should have some different wording from modeOpen. Bug
160672, r=caillon,timeless, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@129245 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 07:38:14 +00:00
leaf%mozilla.org
0796fa78fa Automated update
git-svn-id: svn://10.0.0.236/trunk@129244 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 07:24:44 +00:00
seawood%netscape.com
c12fd18941 Add cview to the all extensions build list.
Bug #166939 r=rginda


git-svn-id: svn://10.0.0.236/trunk@129243 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 07:21:18 +00:00
sspitzer%netscape.com
02c398b20d fix for #142845. add screenname support to mozilla.
works with any AIM client, if they support goim: uris.

from cavin:
  1) a bunch new card attributes
  2) back end AB changes for AB Sync

from naving:
  1) Screenname -> nscpaimscreenname mapping for LDAP
  2) assertion fix to nsAddrBookSession::AddAddressBookListener()

from me:
  1) addressbook advanced search features, like "any name", "any number", "organization", "title", etc.
  2) add screen name support (UI, import, export) to mozilla, remove it from the ns tree.
  3) don't allow drop onto non-writable (LDAP) addressbooks
  4) bunch of code cleanup


git-svn-id: svn://10.0.0.236/trunk@129242 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 07:06:19 +00:00
darin%netscape.com
ca6e64652e attempting to fix MANIFEST_IDL bustage from mjudge's checkin
git-svn-id: svn://10.0.0.236/trunk@129240 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 06:54:05 +00:00
rogerl%netscape.com
411ebed350 Label statement.
git-svn-id: svn://10.0.0.236/trunk@129239 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 06:39:10 +00:00
timeless%mac.com
9b70bdb1e1 Bug 167837 Package necko_cookie.xpt
r=darin sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@129238 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:53:04 +00:00
darin%netscape.com
6086897632 oops.. backing that out
git-svn-id: svn://10.0.0.236/trunk@129237 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:50:56 +00:00
darin%netscape.com
e677490bf5 fixes build bustage
git-svn-id: svn://10.0.0.236/trunk@129236 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:50:15 +00:00
curt%netscape.com
451fd1ac6c This is not yet part of the build process.
git-svn-id: svn://10.0.0.236/trunk@129235 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:20:13 +00:00
curt%netscape.com
9950525fce Support for GRE (recently known as MRE)
(Bug #157211, r=syd, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@129234 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:03:44 +00:00
sspitzer%netscape.com
ddfe318889 fix for #161002. implement filter logging. add some UI for applying
filters after the fact.  code cleanup.
r=mscott, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129233 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:03:36 +00:00
curt%netscape.com
e7be316d0c Support for GRE (recently known as MRE)
(Bug #57211, r=syd, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@129232 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 05:00:30 +00:00
darin%netscape.com
75837576ff temporary hack to fix mac bustage... will return with the real fix.
git-svn-id: svn://10.0.0.236/trunk@129231 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 04:32:38 +00:00
danm%netscape.com
3c5a502225 temporary amaaaaazing makefile stupidity to get extension-less builds to build. i promise to sort out the real problem tomorrow.
git-svn-id: svn://10.0.0.236/trunk@129230 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 04:28:44 +00:00
darin%netscape.com
6141179a89 removing unused files
git-svn-id: svn://10.0.0.236/trunk@129229 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 04:15:15 +00:00
darin%netscape.com
2d57c71e85 fixes bug 166498 "nsHTTPChunkConv should be cvs removed" r=dougt sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@129228 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 04:14:37 +00:00
despotdaemon%netscape.com
46a55e92af Pseudo-automatic update of changes made by cls@seawood.org.
git-svn-id: svn://10.0.0.236/trunk@129227 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 04:03:30 +00:00
mjudge%netscape.com
d190cc810e missed a ';' on a ifdef mac section. fixing build bustage
git-svn-id: svn://10.0.0.236/trunk@129226 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 03:41:46 +00:00
darin%netscape.com
fdc588a427 fixes bug 24197 "RFE Show progress while uploading files (in a form post)"
r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@129225 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 03:23:36 +00:00
darin%netscape.com
d692f0f7a2 fixes bug 166647 "allow link prefetching from a META tag + other fixes"
r=dougt,hixie sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@129223 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 03:12:13 +00:00
mjudge%netscape.com
d412f97810 14835 r=pavlov sr=sfraser alpha blending on images to denote selection.
git-svn-id: svn://10.0.0.236/trunk@129222 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 03:03:49 +00:00
bzbarsky%mit.edu
ff450543d2 Include url in error message. Bug 167662, r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@129221 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:55:14 +00:00
danm%netscape.com
945c4237b2 just because an observer supports weak refs doesn't mean it is one. (found while leak hunting in) bug 166442 r=jag,jst
git-svn-id: svn://10.0.0.236/trunk@129219 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:35:26 +00:00
danm%netscape.com
0f4feec698 adding popup window manager menu. bug 166442 r=jag,jst,morse,timeless
git-svn-id: svn://10.0.0.236/trunk@129218 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:33:55 +00:00
roc+%cs.cmu.edu
9391d161f9 Bug 167351. Move z-index topmost bit processing into the z-index sorter; keep view tree in document order. r=kmcclusk,brendan, sr=kin
git-svn-id: svn://10.0.0.236/trunk@129217 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:33:43 +00:00
danm%netscape.com
5a36361f5d adding popup window manager dialog type. bug 166442 r=jag,jst,morse,timeless
git-svn-id: svn://10.0.0.236/trunk@129216 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:33:16 +00:00
bzbarsky%mit.edu
3ed53db2fb Bug 125723 -- use view-source window for message source.
r=neil@parkwaycc.co.uk, sr=jag, moa=sspitzer


git-svn-id: svn://10.0.0.236/trunk@129215 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:32:36 +00:00
danm%netscape.com
9d97aa9fc3 adding popup window checkbox. bug 166442 r=jag,jst,timeless
git-svn-id: svn://10.0.0.236/trunk@129214 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:31:13 +00:00
bzbarsky%mit.edu
458ea17eb5 <input type="button" value=""> should not list default text. Bug
166913, r=jkeiser, sr=jst


git-svn-id: svn://10.0.0.236/trunk@129213 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:30:52 +00:00
danm%netscape.com
c93a9aa3d6 hooking up popup window management. bug 166442 r=jag,jst,timeless
git-svn-id: svn://10.0.0.236/trunk@129212 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:29:27 +00:00
danm%netscape.com
5fa6119d3b add context flags from nsIWindowCreator2. bug 166442 r=jag,jst,timeless
git-svn-id: svn://10.0.0.236/trunk@129211 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:27:14 +00:00
danm%netscape.com
030a5feee6 update popup window abuse check. bug 166442 r=jag,jst,timeles
git-svn-id: svn://10.0.0.236/trunk@129210 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:24:48 +00:00
danm%netscape.com
85887d5360 moving most of the popup window abuse check to WindowCreator. bug 166442 r=jag,jst,timeless
git-svn-id: svn://10.0.0.236/trunk@129209 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:22:25 +00:00
danm%netscape.com
8027bf7358 add new include dependencies for popup window manager. bug 166442 r=jag,jst
git-svn-id: svn://10.0.0.236/trunk@129208 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:19:45 +00:00
danm%netscape.com
28939df6e6 new strings for popup window manager. bug 166442 r=jag,jst,morse
git-svn-id: svn://10.0.0.236/trunk@129207 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:17:48 +00:00
bzbarsky%mit.edu
c77bec01a8 Show style rules for things that are display:none and their
descendants.  Bug 166548, r=dbaron, sr=hewitt.


git-svn-id: svn://10.0.0.236/trunk@129206 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:15:22 +00:00
danm%netscape.com
eb58321c87 add new window permission type. bug 166442 r=jag,jst,morse
git-svn-id: svn://10.0.0.236/trunk@129205 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:14:51 +00:00
danm%netscape.com
e86f57bc2b add new popup window manager to module. bug 166442 r=jag,jst,morse
git-svn-id: svn://10.0.0.236/trunk@129204 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:13:31 +00:00
bzbarsky%mit.edu
3027587244 Make <button> align sorta like <input type="button"> does vertically.
Bug 162573, patch by dbaron, r=bzbarsky, sr=roc


git-svn-id: svn://10.0.0.236/trunk@129203 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:12:24 +00:00
danm%netscape.com
0e13e75618 build new popup window manager
git-svn-id: svn://10.0.0.236/trunk@129202 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:12:14 +00:00
timeless%mac.com
b331dcc0ae Bug 164466 Remove unused debug window pref
patch by walk84@yahoo.com r=caillon sr=bryner


git-svn-id: svn://10.0.0.236/trunk@129201 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:11:08 +00:00
danm%netscape.com
3db303f4d2 popup window permissions manager. bug 166442 r=jag,jst,morse,timeless
git-svn-id: svn://10.0.0.236/trunk@129200 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:10:46 +00:00
naving%netscape.com
a8bbe46ea1 forgot files !
166517 r=cavin sr=bienvenu Handle invalid custom headers in rules.dat and parse custom header pref in such
a way that strtok and split(js) return same tokens. fixes some corruption issues


git-svn-id: svn://10.0.0.236/trunk@129199 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:09:50 +00:00
katakai%japan.sun.com
6ed3afd341 bug 52416
Editor does not accept NS_TEXT_EVENT while losing input focus
r=akkana,sr=bzbarsky
(patch within #ifdef MOZ_X11)


git-svn-id: svn://10.0.0.236/trunk@129198 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:02:29 +00:00
naving%netscape.com
39aee133d6 166517 r=cavin sr=bienvenu Handle invalid custom headers in rules.dat and parse custom header pref in such
a way that strtok and split(js) return same tokens. fixes some corruption issues


git-svn-id: svn://10.0.0.236/trunk@129197 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 02:00:54 +00:00
bzbarsky%mit.edu
7b4eaeec7f Fix offsetTop/offsetLeft to not be confused by table borders. Bugs
163923 and 119167, r=sicking, sr=jst


git-svn-id: svn://10.0.0.236/trunk@129196 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:58:59 +00:00
caillon%returnzero.com
18e737b843 162163 - comma after underline causes the composer to crash
r=rjesup sr=jst


git-svn-id: svn://10.0.0.236/trunk@129195 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:58:50 +00:00
yokoyama%netscape.com
fd9caff0bd 162894
Universal Auto Detector regression fix.
/r=yokoyama, shanjian, /sr=jst, /a=asa


git-svn-id: svn://10.0.0.236/trunk@129194 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:58:29 +00:00
jst%netscape.com
29bd38f228 Fixing bug 161042. If a table cell doesn't have an align attribute, ask the cell's row for the alignment. r=peterv@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@129193 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:57:40 +00:00
naving%netscape.com
bf86951e60 167560 r=cavin sr=bienvenu make remaining cases of copyMessages go through copy service
git-svn-id: svn://10.0.0.236/trunk@129192 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:54:13 +00:00
katakai%japan.sun.com
c3757bbb4f bug 167040
CTL: caret does not move to next/prev line on text area
r=Roland.Mainz@informatik.med.uni-giessen.de,sr=scc
(CTL is not part of default build)


git-svn-id: svn://10.0.0.236/trunk@129191 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:52:34 +00:00
naving%netscape.com
939e3ec55c 167579 r=cavin sr=bienvenu making copyservice handle requests better and deal with failure cases gracefully
git-svn-id: svn://10.0.0.236/trunk@129190 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:50:21 +00:00
bzbarsky%mit.edu
a5718fc9e5 negative border widths are not legal in CSS. bug 167657, r=glazou,
sr=dbaron.


git-svn-id: svn://10.0.0.236/trunk@129189 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:47:25 +00:00
bzbarsky%mit.edu
daf0eeddb4 Fix offset-calculation logic so <select size="1"> works in scrolled
divs.  Bug 115253, r=jkeiser, sr=roc


git-svn-id: svn://10.0.0.236/trunk@129188 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:44:36 +00:00
caillon%returnzero.com
4028442105 Add a method on the fixup object to strip off wyciwyg from nsIURIs
Fixes bug 164006, wyciwyg: should not appear in tab title
r=jag sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@129187 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:44:13 +00:00
bzbarsky%mit.edu
14f87dddf5 views are not refcounted; do not nsCOMPtr them! Bug 166804, r=timeless,
sr=roc


git-svn-id: svn://10.0.0.236/trunk@129186 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:42:02 +00:00
bzbarsky%mit.edu
f764441737 Right click should not toggle checkbox. Bug 166403,
r=neil@parkwaycc.co.uk, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@129185 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:40:23 +00:00
caillon%returnzero.com
5dd7baf61b 166947 - Copy XML (on node context menu) should encode character entities
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@129184 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:36:28 +00:00
timeless%mac.com
90fe1dd336 Bug 167782 widget/src/gtk2/nsWindow.cpp needs to recover from nsITimer changes
r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@129183 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:35:15 +00:00
jpierre%netscape.com
93d06b709b Fix for 167856 - memory leaks in CRL cache
git-svn-id: svn://10.0.0.236/trunk@129182 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 01:08:06 +00:00
jpierre%netscape.com
71c36768a7 Fix for 167849 - copy DER subject before adding an issuer to the hash table in CRL cache
git-svn-id: svn://10.0.0.236/trunk@129181 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-11 00:28:22 +00:00
bugreport%peshkin.net
8e32a0b101 Bug 167595 - Query - multiple-select product (and probably component) broken
2xr = bbaetz


git-svn-id: svn://10.0.0.236/trunk@129180 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 23:51:05 +00:00
rogerl%netscape.com
828603ec5d Function invocation & parameter frame instantiation. Labelled statements.
git-svn-id: svn://10.0.0.236/trunk@129177 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 23:36:00 +00:00
bienvenu%netscape.com
4414de6066 make threadpane pause 500 milliseconds before selecting a msg r=blaker, sr=jst, a=asa 163946
git-svn-id: svn://10.0.0.236/trunk@129174 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 21:03:38 +00:00
bienvenu%netscape.com
30e6529965 make delay for selection while cursoring through trees a settable attribute, r=blaker, sr=jst, a=asa, with an assist from brendan 163946
git-svn-id: svn://10.0.0.236/trunk@129173 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 21:02:06 +00:00
ian.mcgreer%sun.com
fe942ec05f bug 166741, fixing bug in previous patches
r=wtc


git-svn-id: svn://10.0.0.236/trunk@129171 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 20:30:53 +00:00
mkaply%us.ibm.com
6c82eba0d5 #164565
sr/moa=dveditz, a=asa
For OS/2 platform, return win in installer files so windows chrome is used for OS/2


git-svn-id: svn://10.0.0.236/trunk@129169 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 19:50:48 +00:00
mostafah%oeone.com
71ab9d22d6 Fixed adding TODOs to an unselected Calendar
git-svn-id: svn://10.0.0.236/trunk@129167 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 18:31:15 +00:00
mikep%oeone.com
c3759abda2 Adding in publishing, small fixes for wording and look and feel.
git-svn-id: svn://10.0.0.236/trunk@129166 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 18:26:37 +00:00
despotdaemon%netscape.com
ee3681d8a1 Pseudo-automatic update of changes made by cls@seawood.org.
git-svn-id: svn://10.0.0.236/trunk@129165 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 18:24:08 +00:00
naving%netscape.com
ee26422a21 167560 r=cavin sr=bienvenu a=asa fixing a regression in imap offline copy filing code.
git-svn-id: svn://10.0.0.236/trunk@129163 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 18:19:07 +00:00
alecf%netscape.com
7043394a04 cvs remove these files which I accidentally had leaf put in the wrong directory
(not part of the build)


git-svn-id: svn://10.0.0.236/trunk@129161 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 18:01:31 +00:00
mikep%oeone.com
1661afd80c Speed fixes, adding in ability to publish calendar.
git-svn-id: svn://10.0.0.236/trunk@129158 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 16:59:53 +00:00
t_mutreja%yahoo.com
e645ca86e0 BugId:158714("missing paragraph break on pasted text with <blockquote>")
Patch: t_mutreja@yahoo.com, r=akkana, sr=keikki


git-svn-id: svn://10.0.0.236/trunk@129156 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 11:15:43 +00:00
bzbarsky%mit.edu
0456487dcb The last checkin (both, actually) was for bug 114170
git-svn-id: svn://10.0.0.236/trunk@129154 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 08:11:53 +00:00
bzbarsky%mit.edu
d2874fd521 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@129153 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 08:10:10 +00:00
bzbarsky%mit.edu
cf963c8650 make keyboard tab switching work when the url bar is focused. Patch by
neil@parkwaycc.co.uk, r=jesse, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@129152 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 08:08:59 +00:00
sspitzer%netscape.com
338e973d44 supplimental fix for #43015 / #121122. wcyeh@zydas.com.tw points out that
certain directory names (like "1234") don't come with a trailing slash
where most others do.  r/sr=bienvenu a=asa.


git-svn-id: svn://10.0.0.236/trunk@129151 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 06:32:51 +00:00
pete.zha%sun.com
641d0a46ea Print settings on Linux are saved at shutdown but not read at next start
bug=166217 r=rods@netscape.com sr=bryner@netscape.com a=asa Roland.Mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@129149 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 05:15:53 +00:00
wtc%netscape.com
abf9db079e Bug 167532: fixed a regression introduced by the previous checkin.
git-svn-id: svn://10.0.0.236/trunk@129148 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 05:10:53 +00:00
bugreport%peshkin.net
2169d2bfc6 Bug 167643 - Schema Changes from bug 143826 are out of order
2xr=JayPee


git-svn-id: svn://10.0.0.236/trunk@129144 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 04:49:59 +00:00
jpierre%netscape.com
e142702047 Fix for 167649 - invalidate CRL cache when new CRL object is imported into a token
git-svn-id: svn://10.0.0.236/trunk@129143 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 04:49:09 +00:00
kin%netscape.com
cfcea30e08 Fix for bug 167355 (non-inline document.write does not work in builds after 090522)
Clear the mDidInitialReflow flag in ContentRemoved() to allow the content sink
to call InitialReflow() when the <html> node is re-inserted.

r=jkeiser@netscape.com  sr=jst@netscape.com  a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@129142 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 04:36:00 +00:00
mkaply%us.ibm.com
6ad9cb72b7 #164667
r=rods, sr=blizzard, a=rjesup@wgate.com
OS/2 only - convert native printer names to Unicode


git-svn-id: svn://10.0.0.236/trunk@129141 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 04:01:20 +00:00
naving%netscape.com
dc8d3ebeb6 167538 r=bienvenu sr=sspitzer a=asa fixing save as template regression
git-svn-id: svn://10.0.0.236/trunk@129140 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 03:02:41 +00:00
sfraser%netscape.com
b0a1b241ec Add output with a TinderboxPrint: line to show per-window leaks, and tweak the test to load about:blank.
git-svn-id: svn://10.0.0.236/trunk@129139 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 02:19:06 +00:00
wtc%netscape.com
913cde175c Import NSPR 4.2.2 RC1.
git-svn-id: svn://10.0.0.236/trunk@129138 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 02:17:46 +00:00
rods%netscape.com
4aff6cd832 Make sure the Print Data is cleaned up when exiting PP
Bug 164384 r=pete sr=kin a=asa


git-svn-id: svn://10.0.0.236/trunk@129137 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 01:57:09 +00:00
sfraser%netscape.com
aa9375bb5c Added window open/close leak test. r=sleestack
git-svn-id: svn://10.0.0.236/trunk@129133 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 01:06:00 +00:00
rogerl%netscape.com
421e693668 Function invocation handling.
git-svn-id: svn://10.0.0.236/trunk@129125 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 00:18:38 +00:00
mjudge%netscape.com
6ee845dd99 fix for 165169. sr=bryner r=kin solves the problem of not finding the area frame to traverse the page when composing in mail or composer. cntrl-home/end should work now.
git-svn-id: svn://10.0.0.236/trunk@129122 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-10 00:10:09 +00:00
yokoyama%netscape.com
140fc30607 Bug 162362
making unicode mozilla to run under Win9x OS.
Should have no impact on the current build
setting (only when #ifdef MOZ_UNICODE on)
and only gets compiled in Windows platform.
/r=shanjian, /sr=kin, /a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@129119 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 23:58:39 +00:00
brendan%mozilla.org
ae0f269f63 Remove unused variable left from last checkin (not part of build).
git-svn-id: svn://10.0.0.236/trunk@129118 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 23:24:48 +00:00
nicolson%netscape.com
45323ca784 Fix 160020: KeyFactory.translateKey uses bad format names.
git-svn-id: svn://10.0.0.236/trunk@129117 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 23:21:45 +00:00
nicolson%netscape.com
54b00d6443 Fix 158009: enable compression of xpclass*.jar.
git-svn-id: svn://10.0.0.236/trunk@129114 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:54:07 +00:00
alecf%netscape.com
e9f6775326 oops, fix debug build bustage
git-svn-id: svn://10.0.0.236/trunk@129113 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:36:49 +00:00
dougt%netscape.com
d684f7120f Moves nsIComponentRegistrar into the SDK. r=darin, sr=alecf, a=asa, b=167577
git-svn-id: svn://10.0.0.236/trunk@129112 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:35:25 +00:00
alecf%netscape.com
a0470fa36f fix for bug 166308 - remove a bunch of debugging code from XUL
r=bryner, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@129111 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:32:33 +00:00
nicolson%netscape.com
b54eef1ec6 Initialize variable to null. Indicated by bug 160076: Crashes when the
PasswordCallback returns an invalid password.


git-svn-id: svn://10.0.0.236/trunk@129110 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:24:48 +00:00
nhotta%netscape.com
5fbafad2fe Adding nsLatin1Prober.cpp to the project to fix the Mac build problem.
git-svn-id: svn://10.0.0.236/trunk@129109 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:21:47 +00:00
pschwartau%netscape.com
07482ae2d1 Initial add. Tests ECMA-262 Edition 3 Section 8.6.2.6 (default value of objects). See bug 167325.
git-svn-id: svn://10.0.0.236/trunk@129108 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 21:14:28 +00:00
bzbarsky%mit.edu
256d54cb48 document.forms can get confused and insert the same form multiple times
in the list.  Bug 166752, r=caillon/jkeiser, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@129106 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:44:29 +00:00
shanjian%netscape.com
fb2314c2a8 #162894 Extend universal detector's coverage to include iso-8859-1
Added latin1 prober.
r=smontagu, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@129105 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:43:40 +00:00
bzbarsky%mit.edu
830c96387c Fix crash when trying to tab into display:none iframes. Bug 146255,
r=aaronl, sr=bryner, a=asa


git-svn-id: svn://10.0.0.236/trunk@129104 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:32:04 +00:00
ere%atp.fi
9b5941e8ad Bug 167305, Folded references: headers are parsed incorrectly
r=scc, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@129103 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:26:11 +00:00
ian%hixie.ch
ff7c38cadd Changing 'HTTP/1.1' to 'Status:' since we're now in a non-nph environment.
git-svn-id: svn://10.0.0.236/trunk@129102 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:23:04 +00:00
ian%hixie.ch
8e236f1b21 More debugging information at high verbosity settings.
git-svn-id: svn://10.0.0.236/trunk@129101 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:22:10 +00:00
bienvenu%netscape.com
a9e1d181f0 fix filter applying code to not stop after non-move filters, r=naving, sr=sspitzer, a=asa 167519
git-svn-id: svn://10.0.0.236/trunk@129100 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:21:08 +00:00
bienvenu%netscape.com
acb8e92331 fix offline recording and playback of imap offline operations, r=naving (and part of fix by navin), r=sspitzer, a=asa 167382
git-svn-id: svn://10.0.0.236/trunk@129099 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 19:20:29 +00:00
karnaze%netscape.com
5327a7f9d3 bug 154780 - make the computed width for a cell unconstrained when the table will re-initialize or re-balance. a=rjesup, sr=kin, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@129098 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 18:46:06 +00:00
darin%netscape.com
3ccf607aca fixes bug 143541 "SMTP via SSL via SOCKS fails to connect to server."
r=dougt sr=rpotts a=rjesup


git-svn-id: svn://10.0.0.236/trunk@129097 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 18:40:27 +00:00
karnaze%netscape.com
0984e84e98 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@129096 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 18:37:29 +00:00
mikep%oeone.com
81511b085c Fixing bug 165197.
git-svn-id: svn://10.0.0.236/trunk@129095 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 18:07:45 +00:00
mikep%oeone.com
ca4c14f852 Fixing bug 154961.
git-svn-id: svn://10.0.0.236/trunk@129094 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 18:01:07 +00:00
sgehani%netscape.com
d64e4b04b6 Don't show update notification if component being updated doesn't exist on disk.
b=166448; r=law; sr=dveditz; a=rjesup


git-svn-id: svn://10.0.0.236/trunk@129093 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 17:48:56 +00:00
mikep%oeone.com
8bfa109165 Integrating fixes from OEone calendar.
git-svn-id: svn://10.0.0.236/trunk@129092 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 17:32:02 +00:00
cbiesinger%web.de
80b2fd4595 bug 167203 crash in nsDefaultURIFixup.cpp r=adamlock sr=bzbarsky a=jesup
git-svn-id: svn://10.0.0.236/trunk@129091 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 17:22:19 +00:00
mikep%oeone.com
27e6878827 Fixing bug 167285.
git-svn-id: svn://10.0.0.236/trunk@129090 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 17:17:48 +00:00
depstein%netscape.com
5003f14618 Created table for nsICommandManager tests, will also be used for nsICommandParams. Updated the ReadMe text to include new build instructions.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@129089 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 17:17:47 +00:00
ian%hixie.ch
e3a5eea588 Implementations should stop using nph- scripts now. (This may have more fallout.)
git-svn-id: svn://10.0.0.236/trunk@129088 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 15:38:05 +00:00
mostafah%oeone.com
2c949c891f Brought up-to-date with latest changes in XPCOM and Timer interface
git-svn-id: svn://10.0.0.236/trunk@129087 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 15:29:16 +00:00
glazman%netscape.com
05b8c06de4 -- not part of the build --
CaScadeS landing, doc only change, b=161663, r=brade, a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@129085 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 12:47:51 +00:00
glazman%netscape.com
56989f4122 -- not part of the build ---
CaScadeS landing, b=161663, r=brade, a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@129084 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 09:53:49 +00:00
glazman%netscape.com
6107f967f3 -- not part of the build ---
CaScadeS landing, b=161663, r=brade, a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@129083 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 09:33:17 +00:00
rogerl%netscape.com
9a20457970 Bracket refs, post/pre Xcrements. Started function definition & invocation
git-svn-id: svn://10.0.0.236/trunk@129081 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 06:25:09 +00:00
wtc%netscape.com
242c4f7a5e Backed out the previous checkin, which broke 64-bit platforms.
git-svn-id: svn://10.0.0.236/trunk@129079 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 03:56:25 +00:00
hyatt%netscape.com
58edee8897 Fix the blanking on customize of toolbars.
git-svn-id: svn://10.0.0.236/trunk@129078 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 03:32:51 +00:00
bugreport%peshkin.net
8a1d8dd39c Bug 166023 - On failure in template->new, a template is used to display error
2xr = bbaetz


git-svn-id: svn://10.0.0.236/trunk@129076 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-09 01:10:54 +00:00
dougt%netscape.com
ed512d588c cleans up return result. b=157136. r=me.
git-svn-id: svn://10.0.0.236/trunk@129074 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 22:29:35 +00:00
brendan%mozilla.org
3668fd0d34 Fix old bogus error reporting suppression around shell's implicit ToString on command result values, and clean up related #if 0 cruft after it (167325, not part of default build).
git-svn-id: svn://10.0.0.236/trunk@129073 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 21:46:13 +00:00
sspitzer%netscape.com
ada6e79319 fix for #133396. reduce the amount of status bar updates and progress meter updates
when downloading news headers.  r/sr=bienvenu a=asa


git-svn-id: svn://10.0.0.236/trunk@129072 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 19:40:51 +00:00
asa%mozilla.org
1880f9bc5f the update I forgot to make when I created the Bugzilla product
git-svn-id: svn://10.0.0.236/trunk@129071 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 19:24:45 +00:00
sspitzer%netscape.com
692ab525b1 fix for #111321. searching in subscribe results in false scrollbar.
r/sr=bienvenu.  a=asa


git-svn-id: svn://10.0.0.236/trunk@129070 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 19:02:47 +00:00
bzbarsky%mit.edu
dac235b07f Fix sans-serif italics printing on Unix. Bug 135408, patch by
rods@netscape.com, r=drbrain-bugzilla@segment7.net, sr=bzbarsky, a=dbaron


git-svn-id: svn://10.0.0.236/trunk@129069 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 19:01:48 +00:00
ian.mcgreer%sun.com
b70882d5f2 fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129068 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 16:47:58 +00:00
ian%hixie.ch
9240a71692 Return the HTTP headers as well in an array context.
git-svn-id: svn://10.0.0.236/trunk@129067 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 16:39:35 +00:00
mkaply%us.ibm.com
b6c7fe3fe4 #167171
r=pedemont, sr=blizzard, a=rjesup@wgate.com
OS/2 only - Don't scale fonts based on DPI value in prefs
just use it to update the values in nsDevice Context
the magic will happen


git-svn-id: svn://10.0.0.236/trunk@129066 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 15:39:19 +00:00
nhotta%netscape.com
42e97995a2 Changed to use uconv util function to do the unescape which
checks for valid UTF-8 and fallback to the doc charset,
bug 161479, r=shanjian, sr=jst, a=dbaron.


git-svn-id: svn://10.0.0.236/trunk@129064 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 15:08:45 +00:00
nhotta%netscape.com
b6ec177efb Added a function to unescape 8bit only, 7bit encoding support.
bug 161479, r=shanjian, sr=jst, a=dbaron.


git-svn-id: svn://10.0.0.236/trunk@129063 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 15:08:21 +00:00
cbiesinger%web.de
999827ab4f fixing gcc 3.2 bustage
git-svn-id: svn://10.0.0.236/trunk@129061 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 10:42:45 +00:00
aaronl%netscape.com
e85a67b5fd Fix bustage - nsITimer interface changed
git-svn-id: svn://10.0.0.236/trunk@129060 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 06:47:54 +00:00
aaronl%netscape.com
b0f95ea540 Bug 166993. Typeaheadfind, gracefully handle mashed characters on keyboard, r=syd, sr=jst, a=rjesup. Bug 167041. Typeahaedfind, selection+focus+caret not showing up in framed page searches, when found text moves focus to new frame, r=akkana, sr=bzbarsky, a=rjesup
git-svn-id: svn://10.0.0.236/trunk@129059 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 06:19:13 +00:00
wtc%netscape.com
140573d377 Bug 160805: fixed a leak and a double free of the arena introduced in the
previous checkin.


git-svn-id: svn://10.0.0.236/trunk@129058 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 03:25:30 +00:00
dougt%netscape.com
eee6efdaea fixing a regression. r=me.
git-svn-id: svn://10.0.0.236/trunk@129056 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 01:51:29 +00:00
seawood%netscape.com
837362acf5 Include prmon.h to fix OS/2 bustage.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@129055 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-08 00:51:41 +00:00
dougt%netscape.com
68152b0755 removing c++ comment style from nsError.h
git-svn-id: svn://10.0.0.236/trunk@129054 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 20:07:57 +00:00
dougt%netscape.com
756bec984f fixes SVG bustage
git-svn-id: svn://10.0.0.236/trunk@129053 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 19:15:47 +00:00
dougt%netscape.com
36a77df217 Fixes irix bustage. I am guessing that their compiler doesn't like the contraction don't.
git-svn-id: svn://10.0.0.236/trunk@129052 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 18:27:04 +00:00
dougt%netscape.com
9f295bdcc5 fixing bustage
git-svn-id: svn://10.0.0.236/trunk@129051 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 18:18:59 +00:00
dougt%netscape.com
e289284076 166917. Clean up xpcom SDK includes. r=rpotts@netscape.com, sr=alecf@netscape.com, a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@129050 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 17:13:19 +00:00
blakeross%telocity.com
3ed78cf25b Fix more history issues.
git-svn-id: svn://10.0.0.236/trunk@129049 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 16:39:06 +00:00
blakeross%telocity.com
f474a23f69 Fix problems with blank history menuitems in Edit menu.
git-svn-id: svn://10.0.0.236/trunk@129048 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 16:34:11 +00:00
mkaply%us.ibm.com
5ce9c5f2a6 #67749
r=pedemont, sr=blizzard, a=brendan@mozilla.org
OS/2 only - don't malloc(0) - causes memory to be flushed


git-svn-id: svn://10.0.0.236/trunk@129046 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 14:19:04 +00:00
wtc%netscape.com
a9ba0466f5 Bug 129701: removed the sleep command for Linux in kill_selfserv().
Instead, we try to bind to the port in a loop until the port has been
freed.  Added the -b (bindOnly) option to selfserv for this purpose.
Modified files: cmd/selfserv/selfserv.c tests/common/init.sh tests/ssl/ssl.sh


git-svn-id: svn://10.0.0.236/trunk@129045 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 13:41:21 +00:00
sspitzer%netscape.com
a8b26df268 fix build bustage
git-svn-id: svn://10.0.0.236/trunk@129044 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 13:40:32 +00:00
caillon%returnzero.com
4d3d47fb21 167242 - 'Modify Query' will choose the wrong value for 'Sort By'
r=justdave


git-svn-id: svn://10.0.0.236/trunk@129043 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 09:29:13 +00:00
dougt%netscape.com
1188071712 fixes cocoa bustage
git-svn-id: svn://10.0.0.236/trunk@129042 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 08:45:34 +00:00
dougt%netscape.com
164700f0bd fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@129041 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 08:40:26 +00:00
dougt%netscape.com
3238687dab Fixing build bustage
git-svn-id: svn://10.0.0.236/trunk@129040 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 07:17:59 +00:00
wtc%netscape.com
768235cf1b Bug 123753: removed the vestige of the "for Clients" string in softoken's
sccs and rcs version id strings.


git-svn-id: svn://10.0.0.236/trunk@129038 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 05:45:40 +00:00
dougt%netscape.com
db8cc9c7ec Fixes up the timer interface. b157136, r=rpotts@netscape.com, sr=alecf@netscape.com, a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@129037 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 05:38:16 +00:00
wtc%netscape.com
7f7e6c6d70 Bug 123753: the softoken is now compiled the same way for servers and
clients, so removed the "for Clients" string in the version info.
Modified files: config.mk softokn.rc


git-svn-id: svn://10.0.0.236/trunk@129036 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 05:35:46 +00:00
sspitzer%netscape.com
cc4151498a fix for #121122 (nsIFilePicker should allow picking multiple files) and #43015 (Cannot add multiple attachment in Attach File dialog).
right now, only supported on windows.  bugs logged for mac, beos, cocoa, os/2, qnx
and the xpfilepicker (linux).

r=bz, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@129035 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 05:23:45 +00:00
wtc%netscape.com
2697ef855a Bug 127886: added the new function PK11_ImportDERCert.
Modified files: nss/nss.def pk11wrap/pk11cert.c pk11wrap/pk11func.h


git-svn-id: svn://10.0.0.236/trunk@129034 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 04:48:57 +00:00
wtc%netscape.com
e9e683dcce Bug 136209: added the -P dbprefix option. The original -P (partial CRL
decode) option was renamed -p.


git-svn-id: svn://10.0.0.236/trunk@129033 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 04:43:04 +00:00
jpierre%netscape.com
9ec3621b1e Roll back change
git-svn-id: svn://10.0.0.236/trunk@129032 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 03:19:56 +00:00
jpierre%netscape.com
8b0a3479fe Roll back checkin to fix QA tests
git-svn-id: svn://10.0.0.236/trunk@129031 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 02:59:04 +00:00
jpierre%netscape.com
c090eaa1e9 Fix NT build
git-svn-id: svn://10.0.0.236/trunk@129030 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 02:48:45 +00:00
bzbarsky%mit.edu
f1cd30331d Fix crash bug 167038. r=caillon, sr=jst, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@129028 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 02:02:24 +00:00
pete%alphanumerica.com
56babc3f58 b=121489, r=dougt, sr=bzbarsky
Simple fix for nsIFile GetParent to return null when already at the top of the volume
Thanks guys for the speedy review.

--pete


git-svn-id: svn://10.0.0.236/trunk@129027 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 02:00:31 +00:00
sspitzer%netscape.com
73dcbd38b8 fix comment for #157186. a=asa
git-svn-id: svn://10.0.0.236/trunk@129026 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:55:13 +00:00
sspitzer%netscape.com
b7b3237391 fix for #157186. don't collect incoming mail by default.
it's all spam anyways.  still collect outgoing by default.
r=putterman, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@129025 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:49:29 +00:00
jpierre%netscape.com
9b0237c574 Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129024 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:48:46 +00:00
jst%netscape.com
33a6176ec5 Whitespace cleanup, no code changes. r/sr/a=me!
git-svn-id: svn://10.0.0.236/trunk@129023 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:48:39 +00:00
jpierre%netscape.com
c58e9e8e95 Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129022 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:24:27 +00:00
alecf%netscape.com
1cbc7ccce2 removing this file so this directory will just go away
git-svn-id: svn://10.0.0.236/trunk@129021 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:18:09 +00:00
alecf%netscape.com
032de35bda fix for bug 158003 - custom static constructors for i18n unicode converters.
r=shanjian, sr=bz, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@129020 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:17:57 +00:00
leaf%mozilla.org
529fb984ee update localeVersion to 1.2a, a=asa
git-svn-id: svn://10.0.0.236/trunk@129019 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:01:49 +00:00
jpierre%netscape.com
87079cb57c Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129018 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 01:00:04 +00:00
jkeiser%netscape.com
dbaed25a2e Make save/restore in textfields / textare work again (bug 163714), r=rjesup@wgat
e.com, sr=jst@netscape.com, a=asa


git-svn-id: svn://10.0.0.236/trunk@129017 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:58:08 +00:00
caillon%returnzero.com
31e8b032dd 167009 - We should be using the node type constants defined on Node instead of their numerical expression.
r=glazman rs=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@129016 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:55:05 +00:00
jst%netscape.com
7326b78c7d Whitespace cleanup, and a little bit of curly brace fun, no code changes. r/sr/a=me!
git-svn-id: svn://10.0.0.236/trunk@129015 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:43:49 +00:00
jpierre%netscape.com
443e868838 Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129014 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:35:00 +00:00
rogerl%netscape.com
9377dc14db Variable initialization support.
git-svn-id: svn://10.0.0.236/trunk@129013 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:33:31 +00:00
jpierre%netscape.com
0adf875bdb Fix compiler warnings
git-svn-id: svn://10.0.0.236/trunk@129012 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:25:49 +00:00
jpierre%netscape.com
6d6cd1ef6b Fix compiler warning
git-svn-id: svn://10.0.0.236/trunk@129011 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:22:50 +00:00
jpierre%netscape.com
41219d0258 Fix compiler warning under windows
git-svn-id: svn://10.0.0.236/trunk@129010 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:14:14 +00:00
asa%mozilla.org
5219aa79b8 classic-based but not classic
git-svn-id: svn://10.0.0.236/trunk@129009 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-07 00:11:43 +00:00
relyea%netscape.com
217da040b2 Believe both entry types (old and new) when looking for the key.
git-svn-id: svn://10.0.0.236/trunk@129007 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 23:16:42 +00:00
relyea%netscape.com
de9c1e9f91 Initialize len before we use it.
git-svn-id: svn://10.0.0.236/trunk@129006 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 23:15:35 +00:00
despotdaemon%netscape.com
03761cf7f5 Pseudo-automatic update of changes made by angelon@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@129005 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:56:34 +00:00
despotdaemon%netscape.com
37c0bd8726 Pseudo-automatic update of changes made by saileshd@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@129004 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:52:02 +00:00
despotdaemon%netscape.com
faa3480376 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@129003 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:46:50 +00:00
despotdaemon%netscape.com
2a673dc49e Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@129002 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:43:55 +00:00
cltbld%netscape.com
c0584793db updated mac getinfo strings for mozilla 1.2a, per bugzilla 163088. r=jj@netscape.com sr/a=leaf@mozilla.org. o=antitux@netscape.com
git-svn-id: svn://10.0.0.236/trunk@129000 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:22:10 +00:00
nicolson%netscape.com
c5755b26dc Fix 164126: makefile build error.
NSS module has been renamed from "security" to "nss". We will leave the
old "security" include paths until the NSS_CLIENT_TAG gets moved forward:
see bug 167133 for that.
r=kaie@netscape.com, r=wtc@netscape.com, a=rjesup@wgate.com


git-svn-id: svn://10.0.0.236/trunk@128999 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:14:42 +00:00
shanjian%netscape.com
9e2a7ea9ac #165908, &mdash;, &ndash; &#8211;, and &#8212; are displayed as ? (character substitutes/fallbacks broken)
added back a missing code path.

r=yokoyama, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@128996 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:10:13 +00:00
av%netscape.com
e00e954dea Resolving interface name conflict in plugin sample code, not part of the build
git-svn-id: svn://10.0.0.236/trunk@128994 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 21:05:53 +00:00
varada%netscape.com
dbe9bc102f fix for 76772-file save as template should be disabled when multiple messages are selected;r=ssu;sr=bienvenu;a=asa
git-svn-id: svn://10.0.0.236/trunk@128993 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:37:51 +00:00
nhotta%netscape.com
b541b9f17e Add a code to unescape with a charset for a non ASCII file name,
bug 163682, r=jbetak, sr=bzbarsky, a=rjesup@wgate.com.


git-svn-id: svn://10.0.0.236/trunk@128992 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:29:06 +00:00
neeti%netscape.com
ba6fa74d57 fix for bug 141784, ftp.gigo.com does not connect, r=dougt, sr=darin, a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@128991 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:23:00 +00:00
aaronl%netscape.com
f592ec20d8 Bug 165626. Finish checkin - new typeaheadfind.jst files accidentally didn't get in. Get typeaheadfind packaged as part of default install. Leaving out of packages-mac for now. r=curt, sr=dveditz, a=asa.
git-svn-id: svn://10.0.0.236/trunk@128990 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:20:11 +00:00
dougt%netscape.com
8f7fb38feb Mfcembed no longer runs in Visual Studio Debugger, r=timeless, sr=alec, a=rjesup, b=166977
git-svn-id: svn://10.0.0.236/trunk@128989 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:19:14 +00:00
wtc%netscape.com
a6988dbdf4 Bug 166933: fixed build breakage on the Mac.
Modified files: certdb/crl.c certhigh/certhigh.c softoken/dbmshim.c


git-svn-id: svn://10.0.0.236/trunk@128988 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:17:42 +00:00
mikep%oeone.com
972d093986 Fixing bug 167153
git-svn-id: svn://10.0.0.236/trunk@128987 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:11:31 +00:00
dougt%netscape.com
9179f72063 Bug 166595 prompted to save a file twice when downloading with shift-click on ftp link. patch by bzbarsky@mit.edu, r=me, sr=darin, a=rjesup@wgate.com
git-svn-id: svn://10.0.0.236/trunk@128986 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 20:10:15 +00:00
cltbld%netscape.com
625fbe3179 Updated Mozilla installer version string to 1.2.0a.0 for 1.2a release
r=jj, sr/a=leaf.  ycalonje checking in as cltbld. Bugzilla 163089.


git-svn-id: svn://10.0.0.236/trunk@128985 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 19:47:00 +00:00
cltbld%netscape.com
cd15d48544 updated mac installer mozilla version for 1.2a release. ycalonje checking in as cltbld, r=jj, sr/a=leaf. bugzilla 163089
git-svn-id: svn://10.0.0.236/trunk@128984 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 19:39:05 +00:00
rjesup%wgate.com
ab9f087538 Bustage fix for 126346 - checked in the wrong version of this file.
git-svn-id: svn://10.0.0.236/trunk@128982 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 19:16:11 +00:00
relyea%netscape.com
ae6496849b Bug 166893: copy the DER cert when importing the certificate
git-svn-id: svn://10.0.0.236/trunk@128981 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:48:37 +00:00
rjesup%wgate.com
a68c876d94 Bug 126346: make iframes inherit text zoom values. Re-commiting after mods
to deal with 1.5% Tp regression in last commit.  r=dbaron, sr=jst, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@128980 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:46:19 +00:00
mostafah%oeone.com
161300d199 Fixed code to compile in MacOSX
git-svn-id: svn://10.0.0.236/trunk@128979 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:34:32 +00:00
mikep%oeone.com
581bb45cf7 Fixing calendar alarm dates.
git-svn-id: svn://10.0.0.236/trunk@128978 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:22:10 +00:00
sspitzer%netscape.com
7bfb41e76a fix for #41994. Message header display overtakes the area for Status bar etc when window size is too small. r=varada, sr=bienvenu, a=asa
git-svn-id: svn://10.0.0.236/trunk@128976 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:08:56 +00:00
sspitzer%netscape.com
123bd580fd fix for bug #150036. Message cancelling doesn't work.
r=varada, sr=bienvenu, a=asa.


git-svn-id: svn://10.0.0.236/trunk@128974 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:06:40 +00:00
mostafah%oeone.com
a737a12c89 Adding in missing backslash
git-svn-id: svn://10.0.0.236/trunk@128973 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:06:39 +00:00
mostafah%oeone.com
05b20bf202 Fixing code to compile on MacOSX
git-svn-id: svn://10.0.0.236/trunk@128972 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:05:07 +00:00
despotdaemon%netscape.com
69475d32e7 Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128971 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 18:03:22 +00:00
cbiesinger%web.de
8708504328 bug 166379 r=paper sr=tor a=jesup
Image crashes on repaint  [@ nsImageWin::DrawComposited24] N700, M1BR


git-svn-id: svn://10.0.0.236/trunk@128970 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 17:53:16 +00:00
alecf%netscape.com
855959b8cb fix for bug 164657, trace-malloc support in MFCEmbed
r=chak, sr=rpotts, a=rjesup


git-svn-id: svn://10.0.0.236/trunk@128968 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 17:42:40 +00:00
mostafah%oeone.com
cabe066ad7 Enhanced Mac installer and fixed problems
git-svn-id: svn://10.0.0.236/trunk@128967 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 17:40:28 +00:00
timeless%mac.com
f9ac87cbec Bug 166185 sidebar needa a minimum width
r=oeschger sr=jag a=rjesup


git-svn-id: svn://10.0.0.236/trunk@128966 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 17:37:50 +00:00
mikep%oeone.com
ec08d2bb3b Adding in ability to edit and delete calendar servers.
git-svn-id: svn://10.0.0.236/trunk@128965 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 17:37:32 +00:00
nicolson%netscape.com
4b34ca8158 Fix 164126: makefile build error.
Change the NSS module name from "security" to "nss".


git-svn-id: svn://10.0.0.236/trunk@128961 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 16:38:56 +00:00
nicolson%netscape.com
4f412ce97a deal with new exceptions.
git-svn-id: svn://10.0.0.236/trunk@128960 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 16:23:48 +00:00
mostafah%oeone.com
e725badbb9 Fixed bug 166802: Missing nsXPCOMCID.h include in oeICalImpl.cpp by adding #include nsXPCOM.h
git-svn-id: svn://10.0.0.236/trunk@128958 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 15:41:48 +00:00
mostafah%oeone.com
71c66e15bc OnAlarm functions now will receive an instance of oeIICalEventDisplay with the displaydate set to
the date for which the alarm went off


git-svn-id: svn://10.0.0.236/trunk@128957 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 15:23:00 +00:00
mikep%oeone.com
428326e6c4 Adding function names to help with JS debugger.
git-svn-id: svn://10.0.0.236/trunk@128956 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:47:03 +00:00
mikep%oeone.com
19cae767f1 Adding in function name to help with debugging.
git-svn-id: svn://10.0.0.236/trunk@128955 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:46:40 +00:00
mikep%oeone.com
a3986c7627 Changing function name.
git-svn-id: svn://10.0.0.236/trunk@128954 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:46:09 +00:00
mikep%oeone.com
aeb46b5303 Fixing function name.
git-svn-id: svn://10.0.0.236/trunk@128953 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:45:49 +00:00
mikep%oeone.com
8bb3a8e9ba Fixing bug 165693
git-svn-id: svn://10.0.0.236/trunk@128952 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:44:13 +00:00
ian.mcgreer%sun.com
e23acc1e6e additional patch for bug 166768
git-svn-id: svn://10.0.0.236/trunk@128950 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 14:10:14 +00:00
ian%hixie.ch
2fa8882c28 Switch to using smart_encode, cos we are smart. Add support for <fault> in XML-RPC output to handle errors.
git-svn-id: svn://10.0.0.236/trunk@128949 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 10:37:17 +00:00
aaronl%netscape.com
2dc59c58c1 Bug 167022. Color prefs broken. r=caillon, sr=brendan, a=asa
git-svn-id: svn://10.0.0.236/trunk@128948 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 07:30:45 +00:00
rginda%netscape.com
e92edb3255 bug 166967, "profile summary is incorrect"
fix profile summary format string to include avg call time.
also makes isURLFiltered return true for empty urls.


git-svn-id: svn://10.0.0.236/trunk@128947 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 06:54:07 +00:00
jpierre%netscape.com
b694a86db9 Fix for 162983 - consider all certs revoked if there is a bad CRL in the cache
git-svn-id: svn://10.0.0.236/trunk@128946 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 06:53:03 +00:00
darin%netscape.com
a51f7e7215 fixes bug 166396 "embedders should be able to override the default socket
type used for HTTP connections" r=dougt sr=rpotts a=chofmann


git-svn-id: svn://10.0.0.236/trunk@128945 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 06:36:17 +00:00
jkeiser%netscape.com
d73bc69f1a Fix race condition where iframe's frame is created after document is loaded and body is parsed (bug 153815), kin@netscape.com's patch, r=jkeiser@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128944 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 05:44:31 +00:00
jfrancis%netscape.com
dfe90b74d6 fix for 166524: forward delete key changes line order.
r=brade
sr=kin
a=asa


git-svn-id: svn://10.0.0.236/trunk@128943 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 04:27:06 +00:00
matty%chariot.net.au
3a71f4befc Spelling fixes.
git-svn-id: svn://10.0.0.236/trunk@128941 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 03:59:06 +00:00
wtc%netscape.com
6ee9d013fd Bug 136804: initialize inFile to PR_STDIN instead of NULL so that we don't
crash if the -i option is not specified.  Added two assertions to avoid
closing PR_STDIN due to internal errors.


git-svn-id: svn://10.0.0.236/trunk@128940 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 03:52:49 +00:00
sspitzer%netscape.com
160680f2f9 fix for bug #166899. auto detect and set redirector type to based on hostname
r=cavin, sr=bienvenu, a=asa


git-svn-id: svn://10.0.0.236/trunk@128939 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 03:45:00 +00:00
justdave%syndicomm.com
1819365f4f Adds Mac OS X 10.1 and 10.2 to the OS list on new installations. Existing installations will need to add these manually in
localconfig.  Also corrects spelling from "MacOS X" to "Mac OS X" per Apple's encouraged usage.
r= caillon


git-svn-id: svn://10.0.0.236/trunk@128938 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 03:19:02 +00:00
timeless%mac.com
1ccf1fccbb Bug 52007 Menu accelerators don't work if alt held down patch by jruderman@hmc.edu r=akkana sr=kin a=asa
git-svn-id: svn://10.0.0.236/trunk@128937 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 03:15:55 +00:00
aaronl%netscape.com
5e82c47063 Bug 166704. Alt-tabbing between apps can disable typeaheadfind. r=kyle, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@128936 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 02:52:24 +00:00
ian%hixie.ch
5e1e3ccbcd Add a comment to remind others of what I forgot... (that you probably need a propertyImpliedAccessAllowed to use methodMissing)
git-svn-id: svn://10.0.0.236/trunk@128935 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 02:01:48 +00:00
ian%hixie.ch
485d226748 Normalise the command argument so that we don't choke if it has a dot in it or something. (We don't always control what the command is, e.g. for XMLRPC.)
git-svn-id: svn://10.0.0.236/trunk@128934 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 02:00:26 +00:00
ian%hixie.ch
d1fe470c1a Silly typo: the constructor arguments don't go on the class, duh
git-svn-id: svn://10.0.0.236/trunk@128933 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 01:54:14 +00:00
wtc%netscape.com
01a7871a7f Bug 166716: do not assert in the unimplemented memory-mapped file
functions.  It is sufficient for them to fail with the not implemented
error.
Modified Files: bmmap.c macio.c os2misc.c


git-svn-id: svn://10.0.0.236/trunk@128930 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 01:37:32 +00:00
aaronl%netscape.com
c8937800b2 Bug 165626. Get typeaheadfind packaged as part of default install. Leaving out of packages-mac for now. r=curt, sr=dveditz, a=asa
git-svn-id: svn://10.0.0.236/trunk@128928 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 00:45:00 +00:00
relyea%netscape.com
ab744ec709 UnwrapPubKeyWithFlags is supposed to be public!!
git-svn-id: svn://10.0.0.236/trunk@128927 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 00:43:25 +00:00
wtc%netscape.com
16ce983004 Bugs 166734 and 166785: fixed compiler warnings reported by gcc on Linux.
The patch for this checkin is attached to bug 166785.


git-svn-id: svn://10.0.0.236/trunk@128926 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 00:27:52 +00:00
bryner%netscape.com
929cad272b Bug 141295 and 153681 - fix some timing problems with initial focus. Make sure that window watcher's activeWindow accurately reflects the last window to receive an NS_ACTIVATE. Remove the GetFocusController API from nsIDocument, since the focus controller can now be obtained for the entire lifetime of the document by using GetContainer(). Cleaned up some methods on nsEventStateManager/nsIEventStateManager that were virtual for no reason. r=danm, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@128925 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 00:19:58 +00:00
relyea%netscape.com
8e3bcb8080 Remove key.db from the using the blob db code. The blob db code uses the cert7.db record format to
record blobs in the database, which is incompatible with the key3.db format. (key3 does not have
any record types).


git-svn-id: svn://10.0.0.236/trunk@128924 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-06 00:18:24 +00:00
aaronl%netscape.com
5e01bbd43b Bug 166955. Type ahead find causes typing failure in mail compose window after returning from browser. r=bz, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@128923 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 23:41:16 +00:00
leaf%mozilla.org
ab779ec1c6 bug 163086, update user agent string, a=asa
git-svn-id: svn://10.0.0.236/trunk@128922 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 23:27:30 +00:00
ian.mcgreer%sun.com
d3b22da555 bug 166741, unitialized variables
r=wtc


git-svn-id: svn://10.0.0.236/trunk@128919 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 22:28:30 +00:00
brendan%mozilla.org
0e1b53a4dc Fix error.stack computation to avoid toString as well as toSource on objects (166743, r=rginda, a=rjesup).
git-svn-id: svn://10.0.0.236/trunk@128918 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 22:25:48 +00:00
alecf%netscape.com
8c2f01a7f5 fix for bug 166681 - fix leak and lame string usage in global history
r=blake, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@128917 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 22:14:51 +00:00
bienvenu%netscape.com
1c0af37b70 fix bad imap msg hdrs when downloading attachments, r=cavin, sr=sspitzer, a=asa 162342
git-svn-id: svn://10.0.0.236/trunk@128916 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 22:08:50 +00:00
dougt%netscape.com
c65d610a53 Fixes many compiler warnings from xpcom/ds/nsVoidArray.h. r=dougt, sr=darin, patch=colin@theblakes.com, a=asa, b=166427
git-svn-id: svn://10.0.0.236/trunk@128915 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:57:52 +00:00
stephend%netscape.com
d993a7339a Make the patch for bug 44348 pass event into the call to onReset(). r=naving, sr=sspitzer, a=asa.
git-svn-id: svn://10.0.0.236/trunk@128914 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:50:46 +00:00
wtc%netscape.com
b8bec1df0a Bug 166933: added quickder.c.
git-svn-id: svn://10.0.0.236/trunk@128913 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:47:24 +00:00
stephend%netscape.com
11fc674abd Bug 44348. Search UI: reset only clears criteria rows, not results. r=naving@netscape.com, sr=sspitzer@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@128912 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:46:37 +00:00
wtc%netscape.com
19c07d8507 Bug 166933: added dbmshim.c.
git-svn-id: svn://10.0.0.236/trunk@128911 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:46:26 +00:00
stephend%netscape.com
29227e94f5 Bug 166778. Number of results not cleared in the AB Advanced Search window. r=kerz@netscape.com, sr=sspitzer@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@128910 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:44:09 +00:00
ian%hixie.ch
7aa0440655 A wrapper around LWP::UserAgent and HTTP::Entities. (And maybe other things, in future.)
git-svn-id: svn://10.0.0.236/trunk@128909 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:16:24 +00:00
alecf%netscape.com
e14adce270 oops, extra methods
part of bug 163736, again not part of build


git-svn-id: svn://10.0.0.236/trunk@128907 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:16:04 +00:00
ian%hixie.ch
8425f7a31d Minor bug fixes: Make anonymous arguments start from 1 not 0; make a zero argument response have a response (a true boolean); make outputs with zero or one arguments be handled as outputs instead of implied property accesses.
git-svn-id: svn://10.0.0.236/trunk@128906 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:15:15 +00:00
rginda%netscape.com
a21192d5f3 - cview only, not part of the build -
change rec.show() to rec.unHide(), because there is no such thing as rec.show()


git-svn-id: svn://10.0.0.236/trunk@128905 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:06:16 +00:00
ian%hixie.ch
350f9628a0 Add a generic output: acknowledge. Used when nothing is particularily required as a response, e.g. for a one-way XMLRPC call.
git-svn-id: svn://10.0.0.236/trunk@128904 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 21:05:33 +00:00
ian.mcgreer%sun.com
1b9ce6d343 make dsa_SignDigest static (mentioned in bug 166722)
git-svn-id: svn://10.0.0.236/trunk@128902 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 20:44:09 +00:00
ian.mcgreer%sun.com
2fc48d0498 bugs 166722 and 166768, compiler warnings in blapitest
r=wtc


git-svn-id: svn://10.0.0.236/trunk@128901 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 20:37:44 +00:00
mikep%oeone.com
0bd245a351 Fixing problems with selection with the new tree.
git-svn-id: svn://10.0.0.236/trunk@128900 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 20:33:48 +00:00
mikep%oeone.com
951d1c7fd1 Fixing problem with selecting events not showing in current view.
git-svn-id: svn://10.0.0.236/trunk@128897 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 20:09:51 +00:00
morse%netscape.com
8669c9c045 backout offending part of patch in bug 158216, a=asa
git-svn-id: svn://10.0.0.236/trunk@128896 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 20:09:20 +00:00
mikep%oeone.com
a9307434b0 Fixing function names so they aren't annonymous, fixing problem with unifinder events not being selected.
git-svn-id: svn://10.0.0.236/trunk@128895 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 19:54:24 +00:00
mikep%oeone.com
76ddddf624 Adding in some speed improvements.
git-svn-id: svn://10.0.0.236/trunk@128890 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 18:57:19 +00:00
alecf%netscape.com
1e3d6fc907 move these over from gfx in preparation for gfx2 destruction (bug 163736)
not part of build just yet


git-svn-id: svn://10.0.0.236/trunk@128888 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 18:18:40 +00:00
alecf%netscape.com
ad9792d848 add "shared" directory to allow moving gfx2 into gfx
not part of build


git-svn-id: svn://10.0.0.236/trunk@128887 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 18:12:44 +00:00
rogerl%netscape.com
bec7556a00 Fixed writeProperty.
git-svn-id: svn://10.0.0.236/trunk@128886 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 17:58:09 +00:00
ian%hixie.ch
26b1d31c7e XML RPC support. This is all you need to turn a PLIF application into a PLIF application with XML RPC.
git-svn-id: svn://10.0.0.236/trunk@128882 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 17:04:03 +00:00
ian%hixie.ch
28f2ff42db Removing a few things which are now done or which will never be done.
git-svn-id: svn://10.0.0.236/trunk@128881 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:52:07 +00:00
wtc%netscape.com
ed33538220 Fixed unresolved symbol DPCache_Refresh, which I believe is a misspelling
of DP_RefreshCache.


git-svn-id: svn://10.0.0.236/trunk@128879 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:34:27 +00:00
ian%hixie.ch
9aa605e78a Missing newline in the output. This was causing some hickups for some UAs (perfectly understandably...)
git-svn-id: svn://10.0.0.236/trunk@128878 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:27:04 +00:00
ian%hixie.ch
d7a6f3eff3 Optimisation: move the importing of Template::Context to runtime.
git-svn-id: svn://10.0.0.236/trunk@128877 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:24:58 +00:00
ian%hixie.ch
22a0573c3d Untaint the statement as well as the values before handing them to the database, because some statements are made from tainted data. This should be made more secure at some point, because currently there's no checking of database statements.
git-svn-id: svn://10.0.0.236/trunk@128876 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:23:38 +00:00
ian%hixie.ch
b037aed215 Split the CGI input module into one module per method and Content-Type. In the process, added support for MIME multipart POST, so in theory we now support file upload too.
git-svn-id: svn://10.0.0.236/trunk@128875 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:18:38 +00:00
ian%hixie.ch
ce51553c6a Adding yet more layers to the output mechanism: now objects con hook in and do whatever they like to the output before it reaches the protocol (or generic) output service instance. Also, move the objects hash reset code to the end of the run loop so that an input device can add an object (before, the earliest you could add an object was the input verifier).
git-svn-id: svn://10.0.0.236/trunk@128874 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 16:11:25 +00:00
mikep%oeone.com
2d2f0332fd Fixing name and spacing, this shouldn't break anything.
git-svn-id: svn://10.0.0.236/trunk@128873 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 15:24:17 +00:00
mikep%oeone.com
81023fe8de Fixing bug 166762.
git-svn-id: svn://10.0.0.236/trunk@128872 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 15:23:43 +00:00
locka%iol.ie
94a10a6e88 Ignore empty uri strings during persistence. b=166269 r=brade@netscape.com sr=kin@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@128871 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 12:56:22 +00:00
gerv%gerv.net
3b4e6f3b9c Bug 166698 - clean up the error system, which was confused and broken. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@128867 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 07:28:33 +00:00
bryner%netscape.com
f2cd8a568c Fix bug 166614 (wrong linker flags for mozilla.exe on OS/2) by moving the MOZ_WINCONSOLE section of config.mk down so that LDFLAGS doesn't get clobbered. r=cls, a=asa.
git-svn-id: svn://10.0.0.236/trunk@128866 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 06:28:15 +00:00
sspitzer%netscape.com
91c7a74581 fix for #91662 (long strings in headers can cause scroll barfs and attachment window to disappear) and bug #61497 (can't select text in message headers).
r=ben, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@128865 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 06:27:43 +00:00
jpierre%netscape.com
c21d4d52fd Fix for 166714 - make SEC_FindCrlByName use the CRL cache
git-svn-id: svn://10.0.0.236/trunk@128864 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 06:12:33 +00:00
dveditz%netscape.com
2b9912c13a Autoreg after an install in xpistub/wizard case (regression, bug 162593) r=dougt, sr=alecf, a=drivers
git-svn-id: svn://10.0.0.236/trunk@128863 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 05:09:06 +00:00
dougt%netscape.com
1f9175461c Fixes broken symlinks. r=neeti, sr=darin, a=a=rjesup@wgate.com, b=166529.
git-svn-id: svn://10.0.0.236/trunk@128862 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 05:01:12 +00:00
depstein%netscape.com
26c207ee90 Added menus for nsICmdParams tests. Updated nsICommandParams tests. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@128861 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 02:50:27 +00:00
rbs%maths.uq.edu.au
a1be59664a Overshooting when measuring the text caused things to go out-of-sync and to hang, b=142206, r=shanjian, sr=dbaron, a=asa
git-svn-id: svn://10.0.0.236/trunk@128860 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 01:58:55 +00:00
nicolson%netscape.com
cefdc92ac9 fix 166711: SSLSocket.setCipherPreference does the wrong thing.
git-svn-id: svn://10.0.0.236/trunk@128859 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 01:33:40 +00:00
nicolson%netscape.com
26f3fb2c54 Fix 166721: shared library rule does not handle dependencies correctly.
git-svn-id: svn://10.0.0.236/trunk@128856 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 01:21:35 +00:00
nicolson%netscape.com
ca4b99325c Fix 166711: SSLSocket.setCipherPreference does the wrong thing.
git-svn-id: svn://10.0.0.236/trunk@128855 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 01:17:00 +00:00
nicolson%netscape.com
1d4a01269b "assert" is now a keyword, so remove this method.
git-svn-id: svn://10.0.0.236/trunk@128854 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 01:06:26 +00:00
stephend%netscape.com
84949c84c4 Bug 166690. Remove Messages column in Subscribe for News. r=varga@netscape.com, sr=sspitzer@netscape.com. UI approval by jglick@netscape.com. a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@128853 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 00:56:37 +00:00
smontagu%netscape.com
4712aa758d Back out bidi visual selection. Bug 76190, r=mjudge, sr=kin, a=asa.
git-svn-id: svn://10.0.0.236/trunk@128852 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 00:56:25 +00:00
rogerl%netscape.com
c427b56b4a WriteProperty work-in-progress (broken!)
git-svn-id: svn://10.0.0.236/trunk@128851 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 00:26:34 +00:00
jpierre%netscape.com
d60383deaa Fix for 166719 - crash in large object file mapping emulation code . r=wtc
git-svn-id: svn://10.0.0.236/trunk@128850 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-05 00:25:29 +00:00
bbaetz%student.usyd.edu.au
fa2ce29393 Bug 146134 - checksetup.pl gives weird error message
r=justdave x2


git-svn-id: svn://10.0.0.236/trunk@128849 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 23:30:43 +00:00
bugreport%peshkin.net
a3e649e9dc Bug 123957 run checksetup.pl non-interactively (for use with cron jobs on test installs)
2xr=justdave


git-svn-id: svn://10.0.0.236/trunk@128848 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 23:11:02 +00:00
pschwartau%netscape.com
34582fc06d Have factored skip regress-96526.js into three separate tests. Skip them.
git-svn-id: svn://10.0.0.236/trunk@128847 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 22:56:39 +00:00
bbaetz%student.usyd.edu.au
02b73228dd Bug 165756 - Running tests without checksetup causes failure
r=joel, jake


git-svn-id: svn://10.0.0.236/trunk@128846 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 22:43:38 +00:00
pschwartau%netscape.com
e491264a22 Breaking up test regress-96526.js into separate testcases -
git-svn-id: svn://10.0.0.236/trunk@128845 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 21:56:13 +00:00
pschwartau%netscape.com
3f21a1fd0c Removing this test to break it up into three separate tests: regress-96526-001.js, -002.js, -003.js
git-svn-id: svn://10.0.0.236/trunk@128844 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 21:53:40 +00:00
locka%iol.ie
f04c6fa07e Trivial fix for blocker. Restore control ids to the values that commdlg expects. b=166673
git-svn-id: svn://10.0.0.236/trunk@128843 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 21:50:02 +00:00
cbiesinger%web.de
dbcd8b8159 no bug, removing unused file. r=bryner sr=blake
git-svn-id: svn://10.0.0.236/trunk@128842 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 21:13:11 +00:00
timeless%mac.com
fc46fb7a7d bug 166610 jar packaging failure
r=cls. macosx build fails to launch due to packaging failure


git-svn-id: svn://10.0.0.236/trunk@128838 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 20:13:07 +00:00
mikep%oeone.com
0a34cb4900 Fixing bug 166615.
git-svn-id: svn://10.0.0.236/trunk@128835 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 19:26:34 +00:00
mikep%oeone.com
2086cbd994 Fixing bug 166605.
git-svn-id: svn://10.0.0.236/trunk@128832 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 17:17:54 +00:00
mikep%oeone.com
5dc22c0541 Fixing bug 164864.
git-svn-id: svn://10.0.0.236/trunk@128831 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 15:26:53 +00:00
mikep%oeone.com
3a4d555375 Fixing bug with changing to dialog instead of window tag.
git-svn-id: svn://10.0.0.236/trunk@128830 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 15:21:08 +00:00
mikep%oeone.com
a760e47d3c Fixing bug 165425
git-svn-id: svn://10.0.0.236/trunk@128829 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 15:05:33 +00:00
mikep%oeone.com
45e9266028 Cleaning up the preferences a bit.
git-svn-id: svn://10.0.0.236/trunk@128828 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 14:43:25 +00:00
timeless%mac.com
67d609fd3b Bug 166574 password input controls don't accept typing (goes to typeaheadfind) smoketest blocker r=jesup sr=dbaron a=dbaron
git-svn-id: svn://10.0.0.236/trunk@128827 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 14:38:22 +00:00
mikep%oeone.com
7bf71a7252 Fixing bug 165299, problem with reloading servers if pref not set.
git-svn-id: svn://10.0.0.236/trunk@128826 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 13:47:40 +00:00
mikep%oeone.com
7fbd476f18 Fixing bug 165440.
git-svn-id: svn://10.0.0.236/trunk@128825 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 13:30:56 +00:00
mikep%oeone.com
328a59cc96 Fixing bug 166283
git-svn-id: svn://10.0.0.236/trunk@128824 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 13:26:56 +00:00
mikep%oeone.com
38d1cc72b8 New build date.
git-svn-id: svn://10.0.0.236/trunk@128823 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 13:25:57 +00:00
igor%mir2.org
cf6e89d89b Store line number and operation type as int field instead of wrapping them into Integer; use Node subclass for nodes with string data; add few explicit checks about node structure assumptions.
git-svn-id: svn://10.0.0.236/trunk@128822 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 09:28:58 +00:00
peterv%netscape.com
f13c73a6c4 Fixing more sicking bustage.
git-svn-id: svn://10.0.0.236/trunk@128821 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 09:11:53 +00:00
sicking%bigfoot.com
ed003c2587 These files should be part of the build just yet.
git-svn-id: svn://10.0.0.236/trunk@128820 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 07:43:10 +00:00
sicking%bigfoot.com
817b04f093 Need these as well to build.
git-svn-id: svn://10.0.0.236/trunk@128819 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 07:26:02 +00:00
sicking%bigfoot.com
3ffbd92c7f Bug 64945: XML Prettyprinting stage 1
r=peterv sr=jst


git-svn-id: svn://10.0.0.236/trunk@128818 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:57:25 +00:00
karnaze%netscape.com
309cb4340b bug 149275 - Allocate reflow state and let ReflowBlock initialize it so the correct reflow state can be passed to DidReflow. Combined DoReflowBlock with ReflowBlock. sr=bzbarsky, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@128817 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:55:40 +00:00
curt%netscape.com
2d6f75cfff Still cleaning up the MRE stuff that got mixed into the code.
(Not yet part of build.)


git-svn-id: svn://10.0.0.236/trunk@128816 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:53:28 +00:00
timeless%mac.com
36dfb9bef0 Bug 166371 Crashes at [@ nsThreadPool::Shutdown] in Trunk, N700
r=bz sr=darin


git-svn-id: svn://10.0.0.236/trunk@128815 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:45:10 +00:00
darin%netscape.com
28ba677643 fixing a typo in one of the comments.
git-svn-id: svn://10.0.0.236/trunk@128814 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:09:38 +00:00
darin%netscape.com
2de2258cb9 removing dead/unused/broken theme protocol handler, r=beard
git-svn-id: svn://10.0.0.236/trunk@128813 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:06:51 +00:00
brendan%mozilla.org
685415a931 Checking in rogerl's patch for 141078, to restore pre-ECMA perl-ish octal escape sequences in regexps (r=me).
git-svn-id: svn://10.0.0.236/trunk@128812 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:05:56 +00:00
darin%netscape.com
1a19582e98 removing some commented out code and other unused cruft.
git-svn-id: svn://10.0.0.236/trunk@128811 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 06:01:46 +00:00
aaronl%netscape.com
61a1a58370 Bug 166033: Type ahead find messed up menu keyboard navigation. r=caillon, sr=bzbarsky. Bug 165665: Type ahead find not working when new doc loaded in window, r=caillon, sr=bzbarsky. Bug 166340: Type ahead find in full text search mode wouldn't find certain characters. r=akkana, sr=bzbarsky. These fixes also contain some perf improvements for type ahead find.
git-svn-id: svn://10.0.0.236/trunk@128810 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 05:43:13 +00:00
depstein%netscape.com
fc09b062ac Added another form of FormatAndPrintOutput, accepting double param. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@128809 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 05:14:59 +00:00
mkaply%us.ibm.com
79411809cf #67749
r=cls
Better solution for platform specific forms.css - add platform-forms.css for OS/2


git-svn-id: svn://10.0.0.236/trunk@128808 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 05:12:18 +00:00
rginda%netscape.com
32c4dca990 - venkman only -
crop view titles.
hide js components when "Exclude Browser Files" is enabled.
fix strict warnings.
use jsds to get parent instead of __parent__ to avoid warning.
make sure script is valid before trying to pretty print it.
don't trace errors from chrome urls if "Exclude Browser Files" is enabled.
add a source code colorization limit, default to 1500 lines.
add "Include ECMA Properties" and "Include Functions" options in the Locals and Watch views.
fix "Files" node in the Open Windows view.
Don't get property counts in the Locals and Watch views, because it takes too long.
don't print the hook error, of the hook in question was the display hook, to avoid an infinite loop.
Fix logic to reuse tabs once max-tab limit has been reached.
show an error when an unknown pref or pref pattern is passed to the /pref command.


git-svn-id: svn://10.0.0.236/trunk@128805 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 04:27:32 +00:00
dmose%netscape.com
e41e21c745 Fix --enable-ldap-experimental build bustage
git-svn-id: svn://10.0.0.236/trunk@128804 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 04:03:23 +00:00
karnaze%netscape.com
17f5d7a861 bug 137388 - Jery Tan's patch to restrict applying CalcQuirkContainingBlockHeight to a frame inside a table cell. sr=bzbarsky, r=karnaze.
git-svn-id: svn://10.0.0.236/trunk@128803 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 04:00:41 +00:00
timeless%mac.com
76eabf1b51 Bug 158739 Tabbed Browsing, OS X: Command+Enter checkbox text displayed in 3 lines (should be 1 line)
r=doron sr=jag


git-svn-id: svn://10.0.0.236/trunk@128802 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 03:35:58 +00:00
bzbarsky%mit.edu
52ed8405df Add "Open in new tab" to bookmarks. Bug 103834, patch by Chris
Nebergall <ct-nebergall@wiu.edu>, r=jag, sr=ben


git-svn-id: svn://10.0.0.236/trunk@128801 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 03:29:24 +00:00
mkaply%us.ibm.com
e85ac06452 #58668
r=pedemont, sr=alecf
Os/2 #ifdef - for regstry, use sopen rather than fopen so compreg.dat can be shared


git-svn-id: svn://10.0.0.236/trunk@128800 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:39:24 +00:00
jst%netscape.com
61b42ee7ac Fixing bug 145888. Re-ordering the menu items 'Java Console' and 'JavaScript Console' so that the more commonly used one appears before the other one in the menu. r=walk84@yahoo.com, sr=blaker@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128799 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:38:52 +00:00
mkaply%us.ibm.com
7edce67b2f No bug - OS/2 only - by popular demand, our OS/2 users don't want Mozilla to close and restart everytime you close the last turbo window. Goodbye
git-svn-id: svn://10.0.0.236/trunk@128798 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:35:37 +00:00
rbs%maths.uq.edu.au
1a1ddda1e4 Slight iteration on bug 163785 to gain perf
git-svn-id: svn://10.0.0.236/trunk@128797 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:31:46 +00:00
jst%netscape.com
004b82449b Fixing topcrash bug 155681 (patch from timeless@bemail.org, plus slight modification by me). Don't call methods on mDocShell if it's null. r=cbiesinger@web.de, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128796 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:22:35 +00:00
mkaply%us.ibm.com
6ff867dc94 We're not doing icons right now
git-svn-id: svn://10.0.0.236/trunk@128795 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:22:10 +00:00
timeless%mac.com
daa4c3de15 Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>)
patch by riceman+bmo@mail.rit.edu r=timeless rs=jag


git-svn-id: svn://10.0.0.236/trunk@128794 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:20:51 +00:00
mkaply%us.ibm.com
0286ce9d6b OS/2 wizard - not part of build - we're not doing icons and overwriting buffer
git-svn-id: svn://10.0.0.236/trunk@128793 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:20:34 +00:00
caillon%returnzero.com
ac9fbc223c 156849 - embedded gecko can suffer from too little GC in some cases
Patch by Johnny Stenback <jst@netscape.com>
r=caillon sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128792 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:18:52 +00:00
caillon%returnzero.com
e66f7c706d Remove an unneeded check: unsigned ints are always >= 0.
Bug 166364; r=sicking; sr=jst


git-svn-id: svn://10.0.0.236/trunk@128791 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 02:15:35 +00:00
wtc%netscape.com
789c824caa Bug 166257: declare 'temp' with #if DEBUG because it is only used in code
that is ifdef'd with DEBUG.  Thanks to timeless@bemail.org for the patch.


git-svn-id: svn://10.0.0.236/trunk@128790 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 01:29:48 +00:00
rjc%netscape.com
68d677c3a3 Fix bug # 164175: XPCom LDAP API extensions. OnLDAPInit() now passes relevant connection, and LDAP operations/connections accept closures. r=dmose sr=darin
git-svn-id: svn://10.0.0.236/trunk@128789 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 01:28:36 +00:00
wtc%netscape.com
ce6bccbfd7 Bug 166257: removed an unused variable. Thanks to timeless@bemail.org for
the fix.


git-svn-id: svn://10.0.0.236/trunk@128788 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 01:27:00 +00:00
rjc%netscape.com
72095cce43 Fix bug # 145858 - imported bookmarked issue with NetPositive. Change required to old bug fix to get search results resolving correctly with aggregation. r=sergei_d@fi.tartu.ee sr=darin
git-svn-id: svn://10.0.0.236/trunk@128787 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 01:14:09 +00:00
darin%netscape.com
3aac19cd1f enabling link prefetching for XP_MAC (b=12274) r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@128784 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 00:57:13 +00:00
nelsonb%netscape.com
2298373c34 Treat empty SubjectAltName extensions as if they were non-existant.
Bugs 162979 166454.


git-svn-id: svn://10.0.0.236/trunk@128783 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 00:42:01 +00:00
dbaron%fas.harvard.edu
e5167cdc5d Fix regression in graying of disabled radio buttons and checkboxes. b=164484 r=bbaetz sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@128782 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 00:39:19 +00:00
dougt%netscape.com
93a29119d2 moving nsISupportsPrimitives.idl to SDK section per HowToFreeze doc
git-svn-id: svn://10.0.0.236/trunk@128781 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 00:18:10 +00:00
karnaze%netscape.com
f7e67af4b3 bug 154780 - Revised bernd's patch. treat null unit margins as auto. leave the cell avail width at 0 if a strategy init will occur. sr=kin, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@128780 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-04 00:10:43 +00:00
rbs%maths.uq.edu.au
015d412b98 Minimum font-size wasn't working if no font props was specified, b=163785, r=dbaron, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@128778 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:55:48 +00:00
dougt%netscape.com
bbd2f4344f Makefile changes 166426
git-svn-id: svn://10.0.0.236/trunk@128775 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:47:42 +00:00
karnaze%netscape.com
cb28c9b4aa bug 131065 - revised Jerry Tan's patch to handle top/bottom margins and absolutely positioned cases. sr=kin, r=peterl.
git-svn-id: svn://10.0.0.236/trunk@128774 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:42:52 +00:00
dougt%netscape.com
84a55b3892 typo
git-svn-id: svn://10.0.0.236/trunk@128773 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:41:27 +00:00
cmanske%netscape.com
17cf2c24f1 Add support for 'Title' attribute in Image dialog. b=68800, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@128772 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:37:58 +00:00
radha%netscape.com
190a88c582 Fix for bug # 160869. Tweak load Types of subframes according to the parent's loadtype. r=adamlock sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128771 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:37:19 +00:00
dougt%netscape.com
1ebc6538fb Move FROZEN ContractID into nsXPCOM.h and define r=rpotts, sr=alec, b=166426
git-svn-id: svn://10.0.0.236/trunk@128770 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:36:13 +00:00
cmanske%netscape.com
6f67908fe2 Hide context menu items that aren't enabled in Composer. b=164647, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@128769 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:35:00 +00:00
rginda%netscape.com
4d92f7b4c4 - chatzilla only -
bug 165901, "Clicking on network/channel name has no effect"
bug 165875, "Support CTCP CLIENTINFO in Chatzilla"
bug 165868, "Support CTCP TIME in Chatzilla"
bug 137892, "Pref for new tab threshold is ignored"
fix strict warning in static.js


git-svn-id: svn://10.0.0.236/trunk@128768 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:33:27 +00:00
cmanske%netscape.com
cb37f74efc Remove editorShell from List Properties dialog; also dialog cleanup submitted by neil@parkwaycc.co.uk. b=158881, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@128767 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:32:08 +00:00
loadrunner%betak.net
864d3fb972 b165591, Locale selection issues (installed-chrome.txt), r=adamlock, sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128766 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:31:07 +00:00
bienvenu%netscape.com
2fd391f622 fix crash getting new mail when rules.dat has incorrect host name, r=naving, sr=sspitzer 149059
git-svn-id: svn://10.0.0.236/trunk@128765 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:27:56 +00:00
cmanske%netscape.com
9ed8195acd Always edit HTML version for 'view-source' urls. b=165162, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@128764 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:27:33 +00:00
rods%netscape.com
00da111269 Checked in from wrong tree.
git-svn-id: svn://10.0.0.236/trunk@128763 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:25:17 +00:00
bzbarsky%mit.edu
164fda855f Deal with comments inside options. bug 72980, r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@128762 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:23:00 +00:00
rods%netscape.com
d986a615c9 Bug 164250 Instrument the PrintEngine for print testing
r=dcone sr=kin


git-svn-id: svn://10.0.0.236/trunk@128761 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:21:15 +00:00
mkaply%us.ibm.com
551545bcf5 Um, we need msgbase.xpt bad
git-svn-id: svn://10.0.0.236/trunk@128760 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:20:06 +00:00
serge%netscape.com
a9ebb26245 fix for 165287 throbber never stops loading a page with only a .swf plugin object/embed r=av,sr=darin
git-svn-id: svn://10.0.0.236/trunk@128759 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:14:49 +00:00
dougt%netscape.com
3ce6b2e86f Move FROZEN ContractID into nsXPCOM.h and define r=rpotts, sr=alec, b=166426
git-svn-id: svn://10.0.0.236/trunk@128758 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:08:17 +00:00
bbaetz%student.usyd.edu.au
b807ba1b14 Bug 166318 - Bugzilla::Config should check for defparams.pl failure
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128757 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:07:44 +00:00
rods%netscape.com
97d5ad9c6e Get the plugin into the build and some extra work for instrumenting printing testing
Bug 164072 rs=kin r=dcone


git-svn-id: svn://10.0.0.236/trunk@128756 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 23:06:56 +00:00
rods%netscape.com
9fbb6e8972 Bug 166097 set the appropriate flags so they are read from prefs
sr=kin r=dcone


git-svn-id: svn://10.0.0.236/trunk@128755 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:58:46 +00:00
cbiesinger%web.de
281964d562 bug 151983 patch by bernd.mielke@snafu.de r=paper sr=tor
ASSERTION: imgLoader::LoadImage -- NULL URI pointer: 'aURI'


git-svn-id: svn://10.0.0.236/trunk@128754 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:49:51 +00:00
seawood%netscape.com
23677f1f3e Resolve symbols at link time for OpenBSD.
Bug #145136 r=dmose


git-svn-id: svn://10.0.0.236/trunk@128753 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:43:00 +00:00
darin%netscape.com
bc335a29e4 fixes bug 151843 "nsIFile::Append inconsistent across platforms" r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@128751 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:40:45 +00:00
leaf%mozilla.org
b555e52a37 Automated update
git-svn-id: svn://10.0.0.236/trunk@128750 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:40:24 +00:00
seawood%netscape.com
64e3d1ab3d Add 'mozilla' to cvs ignore list.
Thanks to Diego Biurrun <diego@biurrun.de> for the patch.
Bug #165939 r=cls


git-svn-id: svn://10.0.0.236/trunk@128748 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:36:56 +00:00
alecf%netscape.com
6798feb819 fix for bug 165969 - check for MMX headers on windows, too
r=cls


git-svn-id: svn://10.0.0.236/trunk@128747 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:32:19 +00:00
mkaply%us.ibm.com
6724bec546 OS/2 Wizard work - not part of build
git-svn-id: svn://10.0.0.236/trunk@128746 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:32:08 +00:00
sicking%bigfoot.com
e637835693 Bug 159314: Fastload is wasteful wrt nodenames. Instead of serializing nodename+namespaceURI for each element/attribute, serialize a table of all nodename+namespaces used by a document and then serialize pointers into that.
r=jst sr=hyatt


git-svn-id: svn://10.0.0.236/trunk@128745 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:31:38 +00:00
mkaply%us.ibm.com
394c8bd526 oops
git-svn-id: svn://10.0.0.236/trunk@128744 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:28:59 +00:00
bzbarsky%mit.edu
4f51e5b41e use prefix ++, not postfix ++. Bug 82615, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@128743 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:23:22 +00:00
rogerl%netscape.com
6242aacba5 ReadProperty support.
git-svn-id: svn://10.0.0.236/trunk@128742 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:22:42 +00:00
bzbarsky%mit.edu
9a51d5df96 Persist non-unique frame filenames correctly. Bug 166184, r=adamlock, sr=kin
git-svn-id: svn://10.0.0.236/trunk@128741 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:17:05 +00:00
bzbarsky%mit.edu
de517e6915 Allow view-source to handle arbitrary content (as text-plain, in the
worst case).  Bug 77337, r=jst, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128740 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:10:08 +00:00
bzbarsky%mit.edu
ccde92f9ab Honor content-disposition: attachment even when it's set on content we
can handle internally. Bug 98360, r=law,rpotts, sr=darin. Correct
whitespace this time.


git-svn-id: svn://10.0.0.236/trunk@128739 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 22:00:22 +00:00
jfrancis%netscape.com
2755c336bb imprved fix for 78676: fixed evilness that caused 166056 crash. r=sfraser, sr=kin
git-svn-id: svn://10.0.0.236/trunk@128738 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:55:03 +00:00
roc+%cs.cmu.edu
4f2eb464ee Bug 164625. Remove references to nsRectFast, they're not needed and this shouldn't be used outside of the nsRegion code. Patch by Dainis_Jonitis@swh-t.lv. r=roc,sr=kin
git-svn-id: svn://10.0.0.236/trunk@128736 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:53:22 +00:00
dougt%netscape.com
a4673a1317 test cases
git-svn-id: svn://10.0.0.236/trunk@128735 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:52:16 +00:00
dougt%netscape.com
783310b108 [TRUNK] FTP listing is not working properly for native filename, unable to download. r=nhotta, sr=darin, bug=165585
git-svn-id: svn://10.0.0.236/trunk@128734 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:51:24 +00:00
bienvenu%netscape.com
3262ed554b potential fix for crash in nsImapProtocol::HandleMessageDownloadline r/sr=sspitzer 166196
git-svn-id: svn://10.0.0.236/trunk@128733 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:50:36 +00:00
bzbarsky%mit.edu
dd584a1b1c doh. Wrong patch version (-w). backing it out and fixing the whitespace...
git-svn-id: svn://10.0.0.236/trunk@128732 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:47:44 +00:00
bzbarsky%mit.edu
d6efaf6bdf Honor content-disposition: attachment even when it's set on content we
can handle internally.  Bug 98360, r=law,rpotts, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128731 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:46:25 +00:00
mkaply%us.ibm.com
f178298dca More OS/2 wizard work - final JST scripts and INI updates
git-svn-id: svn://10.0.0.236/trunk@128730 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:37:08 +00:00
roc+%cs.cmu.edu
f57491a922 Bug 152373. Fix background-attachment:fixed regression by eliminating last remaining use of bogus ALWAYS_BLIT flags, replacing them with a less odious hack which makes smarter scroll decisions by checking for the presence of fixed-position elements. r=kmcclusk,sr=kin
git-svn-id: svn://10.0.0.236/trunk@128729 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 21:36:28 +00:00
jfrancis%netscape.com
c6af66d4bb backing out 78676 to unblock tree (bug 166056)
git-svn-id: svn://10.0.0.236/trunk@128726 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 20:36:26 +00:00
mikep%oeone.com
92574f9cf0 Upgrading version.
git-svn-id: svn://10.0.0.236/trunk@128725 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 20:01:23 +00:00
mikep%oeone.com
ec83f33d15 Adding in mac build.
git-svn-id: svn://10.0.0.236/trunk@128724 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 20:00:55 +00:00
mikep%oeone.com
7af8360255 Upgrade build number.
git-svn-id: svn://10.0.0.236/trunk@128723 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 20:00:07 +00:00
mikep%oeone.com
02665d8225 Shortcut.
git-svn-id: svn://10.0.0.236/trunk@128722 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:59:45 +00:00
despotdaemon%netscape.com
1ff7833186 Pseudo-automatic update of changes made by roc+@cs.cmu.edu.
git-svn-id: svn://10.0.0.236/trunk@128721 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:48:12 +00:00
ian.mcgreer%sun.com
b2dc5651fc bug 165863, free token on error paths
git-svn-id: svn://10.0.0.236/trunk@128720 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:42:13 +00:00
mikep%oeone.com
b5f985104c Fixing bug 166373 (from bug 132209);
git-svn-id: svn://10.0.0.236/trunk@128719 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:36:20 +00:00
despotdaemon%netscape.com
6c067cc517 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128718 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:13:47 +00:00
mikep%oeone.com
65364d5ac1 Adding in prefs file.
git-svn-id: svn://10.0.0.236/trunk@128717 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:04:52 +00:00
mikep%oeone.com
e7c17de7d9 Adding in debug messages.
git-svn-id: svn://10.0.0.236/trunk@128716 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:04:43 +00:00
mikep%oeone.com
d66b7beac8 Don't recall what this was for.
git-svn-id: svn://10.0.0.236/trunk@128715 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:04:23 +00:00
mikep%oeone.com
77c799fd32 Adding in the start of registering a calendar service.
git-svn-id: svn://10.0.0.236/trunk@128714 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:03:55 +00:00
mikep%oeone.com
7d975851fc Removing useless persist.
git-svn-id: svn://10.0.0.236/trunk@128713 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:02:51 +00:00
mikep%oeone.com
1192e317b7 Updating build.
git-svn-id: svn://10.0.0.236/trunk@128712 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:02:11 +00:00
mikep%oeone.com
385017853e Fixing bug 166173.
git-svn-id: svn://10.0.0.236/trunk@128711 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 19:01:57 +00:00
mikep%oeone.com
0951495231 Fixing bug 165455.
git-svn-id: svn://10.0.0.236/trunk@128710 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 18:42:28 +00:00
rogerl%netscape.com
1aa9f3eb11 Labor day progress. DotReference, class instance variable definition and
associated oevrride resolution support. Branch logic support.


git-svn-id: svn://10.0.0.236/trunk@128706 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 15:20:24 +00:00
timeless%mac.com
7272546a1c Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>)
patch by riceman+bmo@mail.rit.edu r=timeless rs=jag


git-svn-id: svn://10.0.0.236/trunk@128705 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 14:53:25 +00:00
timeless%mac.com
800cde8566 Bug 156633 replace PR_CurrentThread with PR_GetCurrentThread
patch by riceman+bmo@mail.rit.edu r=morse,dougt,dveditz,timeless sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@128704 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 14:51:05 +00:00
blizzard%redhat.com
d79e1399fd Bug #166138. modules/plugins changes for gtk2. r=serge,sr=blizzard patch by robin.lu@sun.com
git-svn-id: svn://10.0.0.236/trunk@128703 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 14:45:02 +00:00
rods%netscape.com
72c0a041f5 Bug 165122 rearrange initializer r=rods sr=bz
git-svn-id: svn://10.0.0.236/trunk@128702 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 14:40:53 +00:00
igor%mir2.org
f275f124b9 Use Node subclass to represent number literals to avoid creation of Double object.
git-svn-id: svn://10.0.0.236/trunk@128701 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 12:34:56 +00:00
jfrancis%netscape.com
17f612fd87 fix for Bug 105761: pasting partial link loses linkiness
r=cmanske; sr=kin


git-svn-id: svn://10.0.0.236/trunk@128700 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 10:46:53 +00:00
katakai%japan.sun.com
5160db0f44 bug 166152
hindShaper should be hindiShaper in allmakefiles.sh
r=cls,sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128697 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 08:18:17 +00:00
jfrancis%netscape.com
7c2c2a1ee3 fix for 129763: edit this page and delete Personals section causes stray bullet r=glazman; sr=kin
git-svn-id: svn://10.0.0.236/trunk@128696 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 07:36:44 +00:00
bryner%netscape.com
fdb1e55c13 Don't do start script munging for Phoenix. Not part of the normal build.
git-svn-id: svn://10.0.0.236/trunk@128694 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 07:20:20 +00:00
jkeiser%netscape.com
df0a2a7500 Make wbr take back what it said about being an eHTML_FORM_CONTROL. (bug 166307), r=caillon@returnvalue.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128693 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 07:04:50 +00:00
bbaetz%student.usyd.edu.au
094c05523d bug 163024 - bugzilla_email_append calls processmail incorrectly
r=joel, preed


git-svn-id: svn://10.0.0.236/trunk@128692 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 06:39:14 +00:00
aaronl%netscape.com
eb7470856a Bug 30088. Turning of type ahead pref again because of regressions. See bug.
git-svn-id: svn://10.0.0.236/trunk@128691 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 06:34:41 +00:00
gilbert.fang%sun.com
3bc0da8a74 bug 129808 Preferences panel accelerator keys don't work when category tree or if OK/Cancel/Help buttons have focus
r=bryner,sr=bzbarsky
Factoring out the HandleAccessKey method of EventStateManager,
checking all sub docShell's accesskey and if necessary, bubbling up to the
parent docShell's EventStateManager's HandleAccessKey method.


git-svn-id: svn://10.0.0.236/trunk@128690 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 05:48:06 +00:00
jay.yan%sun.com
16e11f88a6 bug 164796 disable menu should not be opened. patch=robin.lu@sun.com, r=jay.yan@sun.com, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@128688 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 02:26:01 +00:00
leaf%mozilla.org
427216bdfb Automated update
git-svn-id: svn://10.0.0.236/trunk@128687 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 02:24:49 +00:00
bryner%netscape.com
1f55f30543 Move finger and datetime protocols to extensions/, not built by default (bug 98753). r=cls, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@128686 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 02:14:42 +00:00
bryner%netscape.com
a7f12aa876 Moving Andreas Otte's fix for bug 166085 (Assertion constructing about: URIs) to the new location of these files. r=bzbarsky, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@128685 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 00:32:48 +00:00
bryner%netscape.com
e56aac2d4d New Makefiles for standalone datetime and finger handlers (bug 98753). r=cls, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@128684 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-03 00:25:40 +00:00
timeless%mac.com
64573cc732 Bug 161896 after page finished loading browser crashes [@ gif_clear_screen]
patch by paper@animecity.nu r=biesi sr=tor


git-svn-id: svn://10.0.0.236/trunk@128683 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 23:52:09 +00:00
andreas.otte%debitel.net
97eb045c70 fix bug 166175 [javascript: urls as frame source no longer work] this
is a regression from bug 163225, cloneing the url in case of an
existing base url makes no sense and fixing bug 163225 exposed that. Also
fixing a leak in nsViewSourceHandler in case setting the spec
fails. r=bzbarsky, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128682 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 22:15:07 +00:00
andreas.otte%debitel.net
fa69b03848 fix bug 166085 [Assertion constructing about: URIs
[@nsAboutProtocolHandler:122]] This is a regression fix from the fix
for bug 163225. The assertions never made sense and now they are
exposed. r=bzbarsky, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128681 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 22:04:03 +00:00
timeless%mac.com
9ea8d4c86b Bug 161945 clean up simple mac build warnings
r=dbradley sr=bz


git-svn-id: svn://10.0.0.236/trunk@128679 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 21:26:11 +00:00
edburns%acm.org
b90b9a5fa0 Force wc_share to be static
git-svn-id: svn://10.0.0.236/trunk@128675 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 20:33:54 +00:00
timeless%mac.com
4153b176c8 Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>)
patch by riceman+bmo@mail.rit.edu r=timeless rs=jag


git-svn-id: svn://10.0.0.236/trunk@128674 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 20:23:29 +00:00
bryner%netscape.com
ae592b3308 Removing MOZ_PHOENIX #ifdefs that are no longer needed.
git-svn-id: svn://10.0.0.236/trunk@128673 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 20:21:31 +00:00
kaie%netscape.com
2719dc483a b=149694 After importing cert, CA does not appear until restart of CM
r=javi sr=bryner


git-svn-id: svn://10.0.0.236/trunk@128668 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 14:44:40 +00:00
bolian.yin%sun.com
7e6555f4d4 Bug 97424, Expanding pasted folders results in hang then crash. r=chanial@noos.fr, sr=jag
git-svn-id: svn://10.0.0.236/trunk@128662 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 08:08:32 +00:00
bryner%netscape.com
50dcac6803 Fixing win32 phoenix bustage.
git-svn-id: svn://10.0.0.236/trunk@128661 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 07:42:57 +00:00
bryner%netscape.com
001c3d22fd Fix bustage by defining MOZ_PHOENIX in RCFLAGS.
git-svn-id: svn://10.0.0.236/trunk@128659 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 05:13:46 +00:00
blizzard%redhat.com
9ac4e94bf0 Bug #121615. 4.x plugins for gtk2. Patch by robin.lu@sun.com. r=blizzard Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@128658 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 05:11:10 +00:00
bryner%netscape.com
cdba297115 Switch to building in browser/app and linking with libxulapp_s, instead of building in xpfe/bootstrap, for Phoenix. Remove some MOZ_PHOENIX #ifdefs that are no longer needed. Not part of the normal build.
git-svn-id: svn://10.0.0.236/trunk@128657 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 04:03:07 +00:00
timeless%mac.com
5903d72194 Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>) patch by riceman+bmo@mail.rit.edu r=timeless rs=jag
git-svn-id: svn://10.0.0.236/trunk@128655 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 03:36:38 +00:00
bryner%netscape.com
90eb230ec6 Oops - moving MOZ_WINCONSOLE defines up above include of config.mk.
git-svn-id: svn://10.0.0.236/trunk@128654 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 02:22:10 +00:00
blizzard%redhat.com
ff9a49c7f6 Bug #164994. Fix nsClipboard.cpp after API change. Patch by mpeseng@tin.it. r=bzbarsky@mit.edu.
git-svn-id: svn://10.0.0.236/trunk@128652 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 01:48:06 +00:00
bryner%netscape.com
9f747f8e36 Factor out console linker flags for Win32 (MOZ_WINCONSOLE) into config.mk so that we can use them from elsewhere. r=cls.
git-svn-id: svn://10.0.0.236/trunk@128651 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 01:47:23 +00:00
bbaetz%student.usyd.edu.au
fea72f60a5 Bug 165544 - let mozilla cope with broken socks 4 proxy servers
patch by jra@samba.org (Jeremy Allison), r=bbaetz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128650 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:36:36 +00:00
darin%netscape.com
5eaf75989f enabling link prefetching on all platforms except XP_MAC for now (b=12274)
r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@128649 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:21:48 +00:00
darin%netscape.com
ad870f17f8 pref changes for link prefetching (b=12274) r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128648 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:17:46 +00:00
darin%netscape.com
af457c1371 cache fixes required for link prefetching (b=12274) r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128647 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:17:00 +00:00
darin%netscape.com
f9756c863f http changes required for link prefetching (b=12274) r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128646 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:15:43 +00:00
darin%netscape.com
a69f856870 adding new files for link prefetching (b=12274) [NOT PART OF THE BUILD]
r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@128645 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:14:20 +00:00
caillon%returnzero.com
4972b244a3 152553 - "Show Anonymous Content" menu item doesn't reflect the true state because we were checking |false != null| or |true != null| to determine state.
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128644 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-02 00:03:43 +00:00
darin%netscape.com
f6d85603cf fixes bug 163746 "cache block file patch horked support for partial cache
entries [large image requests never load once interrupted]"
r=dougt sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@128643 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 21:40:45 +00:00
brendan%mozilla.org
2f8b04f282 Store lastIndex in a reserved slot in each regexp instance, mapped by a shared singleton property in RegExp.prototype, for ultimate thread-safety and best sharing (76717, r=rogerl [NB: SpiderMonkey is now a restricted module, a la NSPR]).
git-svn-id: svn://10.0.0.236/trunk@128642 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 19:57:50 +00:00
despotdaemon%netscape.com
3989a03b6c Pseudo-automatic update of changes made by brendan@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128641 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 19:43:20 +00:00
despotdaemon%netscape.com
ef377c4631 Pseudo-automatic update of changes made by brendan@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128640 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 19:39:42 +00:00
bugreport%peshkin.net
40ba441455 Bug 166016 checksetup gives torrent of cryptic errors if my_webservergroup is not found
2xr = timeless


git-svn-id: svn://10.0.0.236/trunk@128639 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 10:29:14 +00:00
jfrancis%netscape.com
c191b484aa fix for Bug 78676: selection inside a single <li> shouldn't include bullet.
r=fm; sr=kin


git-svn-id: svn://10.0.0.236/trunk@128638 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 07:43:35 +00:00
leaf%mozilla.org
ffed0c4830 Automated update
git-svn-id: svn://10.0.0.236/trunk@128637 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 07:24:55 +00:00
seawood%netscape.com
8f2739c779 Define MOZ_LIBART_LIBS properly for beos.
Bug #163251


git-svn-id: svn://10.0.0.236/trunk@128636 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 07:22:06 +00:00
leaf%mozilla.org
7ed3b7bede Automated update
git-svn-id: svn://10.0.0.236/trunk@128635 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 07:09:53 +00:00
alecf%netscape.com
ba21e27273 add configure.in support for MMX instruction compiler intrinsics
git-svn-id: svn://10.0.0.236/trunk@128632 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 07:04:15 +00:00
bugreport%peshkin.net
3b95d8421a Recheckin due to misapplied patch for bug 123957
git-svn-id: svn://10.0.0.236/trunk@128631 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 00:45:44 +00:00
bugreport%peshkin.net
a566ec8203 Bug 123957 run checksetup.pl non-interactively (for use with cron jobs on test installs)
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@128630 18797224-902f-48f8-a5cc-f745e15eee43
2002-09-01 00:33:01 +00:00
caillon%returnzero.com
ce8812c6c4 128420 - getComputedStyle should raise NOT_SUPPORTED_ERR per the CSS WG.
r=glazman sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128628 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 19:57:10 +00:00
dougt%netscape.com
9ad627b035 Linux/SPARC w/GCC3 xptcall broken. r=dougt, sr=shaver@mozilla.org, b=144368, patch by davem@redhat.com.
git-svn-id: svn://10.0.0.236/trunk@128627 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 19:13:50 +00:00
dougt%netscape.com
c03d7bd57d Linux/PPC g++-3 ABI support for XPCOM. r=me, sr=shaver@mozilla.org, b=142594.
git-svn-id: svn://10.0.0.236/trunk@128626 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 19:08:57 +00:00
edburns%acm.org
3dc3985aad remove these until they can be replaced with JUnit tests
git-svn-id: svn://10.0.0.236/trunk@128625 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 18:18:26 +00:00
edburns%acm.org
96fbcc7ad8 remove these until the can be replaced with JUnit tests
git-svn-id: svn://10.0.0.236/trunk@128624 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 18:13:17 +00:00
bienvenu%netscape.com
d1b587ce4c fix 19420, make sure we override cached redirector type if it changes r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@128623 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 16:01:33 +00:00
cbiesinger%web.de
1cb5a15776 fixing bustage... the patch had bitrotted
git-svn-id: svn://10.0.0.236/trunk@128621 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 13:50:00 +00:00
cbiesinger%web.de
c1c8357465 bug 91439 r=pchen sr=darin moa=gagan
about: protocol should be case insensitive


git-svn-id: svn://10.0.0.236/trunk@128620 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 13:47:39 +00:00
bzbarsky%mit.edu
d79855a0c1 nsIExpatSink changed... deal with that. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@128619 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 11:57:35 +00:00
seawood%netscape.com
9b4e7a7d6d Killing lint warnings.
Thanks to John Carter <cyent@paradise.net.nz> for the patch.
Bug #133704 r=cls


git-svn-id: svn://10.0.0.236/trunk@128618 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 08:18:27 +00:00
mkaply%us.ibm.com
74bffe1aa5 Not part of build - OS/2 wizard work - downloading of XPI now working - UI is very nicde
git-svn-id: svn://10.0.0.236/trunk@128617 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 05:49:39 +00:00
wtc%netscape.com
eba7b7a520 Bug 165859: fixed the problem that 'collection' was destroyed twice on
error in nssTrustDomain_FindCertificateByIssuerAndSerialNumber.


git-svn-id: svn://10.0.0.236/trunk@128614 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:52:46 +00:00
bzbarsky%mit.edu
d8011d3ad6 Do not inherit text-transform into inputs and textareas. Bug 150341,
r=glazman, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@128613 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:38:57 +00:00
bryner%netscape.com
eeafbaa427 Use -mdynamic-no-pic when building non-PIC code with gcc 3.1 on MacOS 10.2 (bug 165851). r=cls.
git-svn-id: svn://10.0.0.236/trunk@128612 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:36:54 +00:00
leaf%mozilla.org
7303a41a4f Automated update
git-svn-id: svn://10.0.0.236/trunk@128611 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:09:54 +00:00
seawood%netscape.com
5bf6820e10 Remove --enable-java-supplement.
Fix --enable-auto-deps.
Bug #161461 r=bryner


git-svn-id: svn://10.0.0.236/trunk@128610 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:04:49 +00:00
seawood%netscape.com
056a81900d Remove broken --enable-java-supplement option.
Make --enable-auto-deps work.
Remove unused OBJ_PREFIX variable
Add entries to .SUFFIXES to speed up pattern matches.
Bug #161461 r=bryner


git-svn-id: svn://10.0.0.236/trunk@128609 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 04:03:52 +00:00
edburns%acm.org
2d3428567f linux
git-svn-id: svn://10.0.0.236/trunk@128607 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 02:46:40 +00:00
edburns%acm.org
7885cd1e0a update
git-svn-id: svn://10.0.0.236/trunk@128606 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 02:09:42 +00:00
edburns%acm.org
167b5b8e79 comment_out_Meta
git-svn-id: svn://10.0.0.236/trunk@128605 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 02:09:12 +00:00
bugreport%peshkin.net
74e1d57bca Bug 121419 - If multiple cookies exist, the least significant is assigned.
2xr = bbaetz

Also fixes Duplicate Bug 165685 When switching from no cookiepath to using cookiepath, old cookie gets in the way


git-svn-id: svn://10.0.0.236/trunk@128604 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 01:53:12 +00:00
pschwartau%netscape.com
75acb6c106 Whitespace fix.
git-svn-id: svn://10.0.0.236/trunk@128603 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 01:20:40 +00:00
pschwartau%netscape.com
a47c00b55e Initial add. Regression test for bug 165353.
git-svn-id: svn://10.0.0.236/trunk@128602 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 01:05:09 +00:00
blakeross%telocity.com
1ced5aaa1f Fix personal toolbar context menus.
git-svn-id: svn://10.0.0.236/trunk@128601 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 01:05:03 +00:00
jpierre%netscape.com
0a57a6320a Fix for 160805 . Make a copy of items into the arena before calling SEC_QuickDERDecodeItem where needed
git-svn-id: svn://10.0.0.236/trunk@128597 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-31 00:37:52 +00:00
wtc%netscape.com
b2ff1b60f8 Checked in an equivalent but simpler fix for Bug 165639
(NSSRWLock_UnlockWrite failed to wake up waiting readers).


git-svn-id: svn://10.0.0.236/trunk@128596 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 23:55:51 +00:00
blakeross%telocity.com
2024f4a8ba Some context menu tweaks.
git-svn-id: svn://10.0.0.236/trunk@128595 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 23:42:12 +00:00
jpierre%netscape.com
10bc1a61c0 Implement the CRL cache . Bug 149854
git-svn-id: svn://10.0.0.236/trunk@128594 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 22:57:03 +00:00
mostafah%oeone.com
2cde879bc7 Changing suffix from .so to .dylib
git-svn-id: svn://10.0.0.236/trunk@128593 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 22:54:58 +00:00
jpierre%netscape.com
fe8373b9af Fix for 165639 - NSSRWLock_UnlockWrite causes deadlock when using recursivity of locoks. Fix by Wan-Teh
git-svn-id: svn://10.0.0.236/trunk@128592 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 22:46:45 +00:00
jpierre%netscape.com
737d6d9371 Fix comment
git-svn-id: svn://10.0.0.236/trunk@128591 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 22:45:46 +00:00
mostafah%oeone.com
acd104dc94 script to create xpi for mac OS X
git-svn-id: svn://10.0.0.236/trunk@128587 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 22:12:00 +00:00
mostafah%oeone.com
245f0e125f First try for mac xpi
git-svn-id: svn://10.0.0.236/trunk@128586 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 21:56:49 +00:00
curt%netscape.com
0e8da73833 Not yet in build.
git-svn-id: svn://10.0.0.236/trunk@128585 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 21:50:43 +00:00
rjesup%wgate.com
9b10bc0594 Backout of 126346 because of a 1.5% Tp regression on btek and a 0.9%
regression on luna.  I don't understand how this could cause that;
SetTextZoom/GetTextZoom are cheap, and this isn't called often.


git-svn-id: svn://10.0.0.236/trunk@128584 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 21:19:13 +00:00
timeless%mac.com
ab0c1938d0 Bug 143312 errant link in cvsblame.cgi/software error in cvsview2.cgi for all subsequent links to the first version of a file
r=tara


git-svn-id: svn://10.0.0.236/trunk@128583 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 20:40:06 +00:00
relyea%netscape.com
1b7aa54e66 Check the cert validity only if we actually found a cert.
git-svn-id: svn://10.0.0.236/trunk@128582 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 20:37:58 +00:00
bryner%netscape.com
237fe5c2fb Sync with interface changes. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@128578 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 19:18:23 +00:00
timeless%mac.com
420f13af7c the main bustage was ds requiring io which it can't do, so we'll try to forward declare it instead.
cross your fingers.


git-svn-id: svn://10.0.0.236/trunk@128575 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 18:48:57 +00:00
timeless%mac.com
e8da114bbd tinderbox bustage missing */ caught by kdc on #mozilla
git-svn-id: svn://10.0.0.236/trunk@128573 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 18:43:32 +00:00
relyea%netscape.com
148dba86b9 Bring SSL strength up to NSS 3.x level.
git-svn-id: svn://10.0.0.236/trunk@128571 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 17:56:05 +00:00
alecf%netscape.com
c4bf0a012b fix for bug 97470 - don't display frame/iframe urls in the global history window
r=radha, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128570 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 17:51:48 +00:00
alecf%netscape.com
f3f9eebb08 marking these interfaces as UNDER_REVIEw now that they are in the API that we think we want, future documentation forthcoming
comment-only change, no review


git-svn-id: svn://10.0.0.236/trunk@128569 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 17:35:05 +00:00
alecf%netscape.com
67bdb5ec96 followup comments for bug 164575 that I forgot to add per timeless's request
(comments only, documenting an unfrozen interface - no review)


git-svn-id: svn://10.0.0.236/trunk@128568 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 17:33:55 +00:00
alecf%netscape.com
fea695e47d fix for bug 164575 - clean nsIPersistentProperties interface to reduce UTF8/UCS2 conversions
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128567 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 17:13:34 +00:00
karnaze%netscape.com
2ad50a9fa3 bug 162691 - don't include siblings which will be next in flows when ordering row groups. sr=kin, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@128566 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 16:30:04 +00:00
peterv%netscape.com
f5667535b2 Trying to fix Mac bustage.
git-svn-id: svn://10.0.0.236/trunk@128565 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 16:15:43 +00:00
bienvenu%netscape.com
890f2a82c1 fix build warning, r/sr=sspitzer, no bug
git-svn-id: svn://10.0.0.236/trunk@128564 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 16:11:45 +00:00
rjesup%wgate.com
f01105a7a1 Bug 126346: textzoom is not inherited by iframes. r=jag, sr=blizzard/dbaron
git-svn-id: svn://10.0.0.236/trunk@128563 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 15:44:48 +00:00
alecf%netscape.com
e70b8dc152 fix for bug 164633 - add ssprintf for formatting strings into nsAStrings
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128562 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 15:44:35 +00:00
preed%sigkill.com
bf699ca6af Bug 165221: Apostrophes not properly handled during account creation. r=joel,r2=bbaetz
git-svn-id: svn://10.0.0.236/trunk@128560 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 15:24:12 +00:00
timeless%mac.com
e77a69c351 Bug 69295 [RFE] Unable to follow link/copy/drag elements of Page Info, e.g. images
patch by db48x@yahoo.com r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@128559 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 14:50:16 +00:00
peterv%netscape.com
01c388af8d Part of fix for bug 155578 (branch for refactoring XSLTProcessor and interfaces). Cleanup only to ease branch landing, no functional changes. r=Pike, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@128558 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 14:37:12 +00:00
roc+%cs.cmu.edu
e1ac83a97b Fix probable Mac bustage.
git-svn-id: svn://10.0.0.236/trunk@128556 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 13:25:58 +00:00
peterv%netscape.com
0f3473bff2 Part of fix for bug 155578 (branch for refactoring XSLTProcessor and interfaces). Remove unused context node argument. r=Pike, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@128555 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 12:48:16 +00:00
peterv%netscape.com
947b301ed2 Part of fix for bug 155578 (branch for refactoring XSLTProcessor and interfaces). Remove unused context node argument. r=Pike, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@128554 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 12:43:53 +00:00
peterv%netscape.com
253c180f8c Fix for bug 152728 (XpuWaitForPrintFileChild() needs to call XFlush() before waiting for the consumer child). Patch by Roland.Mainz@informatik.med.uni-giessen.de, r=calvin.liu@sun.com, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@128553 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 12:29:38 +00:00
peterv%netscape.com
eb5f2f05ed Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@128538 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 09:39:33 +00:00
kyle.yuan%sun.com
8ecd5cfbd1 Bug 43714 Tooltip for the 'Home' button not updated when setting page via prefs
r=biesi, sr=bzbarsky
Register a pref callback in navigator.js.


git-svn-id: svn://10.0.0.236/trunk@128537 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 09:37:15 +00:00
peterv%netscape.com
62f8578ae3 Fix for bug 146116 (Image.prototype.foo not delegated to by (new Image).foo). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@128536 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 08:48:58 +00:00
depstein%netscape.com
2cefc3f627 Adding initial test cases for nsICommandParams. Enhanced nsICommandManager cases.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@128535 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 08:29:25 +00:00
timeless%mac.com
93c8607143 Bug 165617 Build warnings caused by bug 158754 checkin
r=aaronl sr=bz


git-svn-id: svn://10.0.0.236/trunk@128534 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 08:29:01 +00:00
bzbarsky%mit.edu
605e6eea80 Extend CTL extension to support multiple CTL scripts (framework + hindi
support).  Bug 163962, r=gilbert.fang@sun.com, r=prabhat.hegde@sun.com,
r=cls, sr=bzbarsky, patch by prabhat.hegde@sun.com and
roland.mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@128531 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 07:45:52 +00:00
caillon%returnzero.com
a9ec620790 Bug 45557 - Rounded transparent borders are not transparent.
r=bzbarsky sr=jag


git-svn-id: svn://10.0.0.236/trunk@128529 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 06:39:34 +00:00
seawood%netscape.com
230f7ec552 Updating cvsignore files.
Thanks to Diego Biurrun <diego@biurrun.de> for the patch.
Bug #164774 r=cls


git-svn-id: svn://10.0.0.236/trunk@128528 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 05:12:02 +00:00
roc+%cs.cmu.edu
126929b920 Fixing Windows build bustage
git-svn-id: svn://10.0.0.236/trunk@128527 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 04:43:09 +00:00
naving%netscape.com
945521b02b 163773 r=cavin sr=bienvenu Made quick search a separate subclass of nsMsgDBView
git-svn-id: svn://10.0.0.236/trunk@128525 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 04:20:06 +00:00
roc+%cs.cmu.edu
45a8f7c62d Bug 164625. Native regions on Linux (and probably some other platforms) are limited to 16bit signed coordinates, so we have to use our own region implementation to manipulate regions in twips space. Using our own regions should also improve performance. r=kmcclusk,sr=kin
git-svn-id: svn://10.0.0.236/trunk@128522 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 03:32:05 +00:00
aaronl%netscape.com
5aac1b09ba Bug 164928. Crash in type ahead find. Patch by Akkana. r=aaronl, sr=bz
git-svn-id: svn://10.0.0.236/trunk@128521 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 03:31:48 +00:00
aaronl%netscape.com
28789717eb Bug 30088. Turning pref back on, because perf issues appear solved. Using original r=/sr= from akkana and jst
git-svn-id: svn://10.0.0.236/trunk@128520 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 02:59:25 +00:00
beard%netscape.com
7106cddec4 Prepends plugin classes to the beginning of the boot class path, to fix part 2 of bug #164712. r=sdagley, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@128519 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 02:38:00 +00:00
mjudge%netscape.com
24b6c23cc2 23784 r=akk sr=dbaron fix for stopping immediate drag after double clicking of the mouse
git-svn-id: svn://10.0.0.236/trunk@128516 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 01:32:11 +00:00
nhotta%netscape.com
fbfba6fcfb Changed the native conversion to return script runs then use it to create 'styl',
bug 163908, r=pink, sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@128515 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 01:29:07 +00:00
nhotta%netscape.com
ad71eabff6 Adding files to create 'styl' from script runs,
bug 163908, r=pink, sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@128513 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 01:22:43 +00:00
serge%netscape.com
ab7a102ccf fix 164209, 3% startup time increase on the 08/22 between 14:50 and 16:30; r=av,sr=alecf
git-svn-id: svn://10.0.0.236/trunk@128512 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 00:38:56 +00:00
rogerl%netscape.com
fea47f6272 Start on Class definitions.
git-svn-id: svn://10.0.0.236/trunk@128511 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-30 00:14:03 +00:00
bzbarsky%mit.edu
70a64180a9 Properly cancel the DragLeaveTimer. Bug 161824, patch by Glen Nakamura
<glen@imodulo.com>, r=blizzard, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128509 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:59:42 +00:00
danm%netscape.com
f530e3f071 restate and simplify the application-quit and application-don't-quit-while-windows-are-open logic. bug 163710 r=brendan,pinkerton
git-svn-id: svn://10.0.0.236/trunk@128508 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:55:37 +00:00
bzbarsky%mit.edu
9ff773082c Fix pgup/pgdown in browser some more. Global window needs to implement
the MovePage commands. Bug 165255, r=aaronl, sr=jag


git-svn-id: svn://10.0.0.236/trunk@128507 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:51:53 +00:00
bienvenu%netscape.com
831150e8d4 fix problems parsing certain imap headers with new hdr downloading code, r/sr=sspitzer, 19552
git-svn-id: svn://10.0.0.236/trunk@128506 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:51:43 +00:00
dougt%netscape.com
4e4c248c84 Test cases. Not part of build
git-svn-id: svn://10.0.0.236/trunk@128504 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:14:56 +00:00
dougt%netscape.com
b1b39f9e94 Fixes 165561. r=me, sr=darin, by=pete collins
git-svn-id: svn://10.0.0.236/trunk@128503 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:11:20 +00:00
serge%netscape.com
94746019d3 fix my cut&paste mistake
git-svn-id: svn://10.0.0.236/trunk@128502 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:07:27 +00:00
kmcclusk%netscape.com
65657bb8d8 On WIN32 only, changed native dispatch of PLEvent notification to use timers instead of Posting WM_APP messages when user input or painting is starved to solve UI Lockup and paint starvation when loading large files from the cache or locally b=157144 r=dougt@netscape.com sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128501 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 23:04:14 +00:00
bzbarsky%mit.edu
c7fbc47739 Don't just hang when we can't load a sheet. Bug 165408, r=rpotts, sr=darin
git-svn-id: svn://10.0.0.236/trunk@128499 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:56:37 +00:00
mkaply%us.ibm.com
52cf49d1dc Not part of build - continuing OS/2 wizard work - man we are getting close
git-svn-id: svn://10.0.0.236/trunk@128498 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:46:14 +00:00
relyea%netscape.com
4e8c53c2b5 When looking for a recipient match, reject non-user certs.
git-svn-id: svn://10.0.0.236/trunk@128496 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:19:46 +00:00
relyea%netscape.com
a210febdfd Export ModInfo call.
git-svn-id: svn://10.0.0.236/trunk@128495 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:11:53 +00:00
relyea%netscape.com
dd234f1f97 Filter on keyID, then run through the best cert check.
git-svn-id: svn://10.0.0.236/trunk@128494 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:11:06 +00:00
heikki%netscape.com
17dc9fdb36 Bug 83573, XMLHttpRequest now adds itself to the loadgroup of the page (if called from JS) so that when you leave the page/hit stop, XMLHttpRequest aborts automatically. r=sicking, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@128493 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:07:18 +00:00
serge%netscape.com
854e1b0716 fix 145054, Plugins may starve when cached data they read from is removed too soon; r=av,sr=darin
git-svn-id: svn://10.0.0.236/trunk@128491 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 22:00:20 +00:00
bzbarsky%mit.edu
45ae52f5d4 Option.selected = false should not select the option. Bug 165404,
r=sicking,jkeiser, sr=jst


git-svn-id: svn://10.0.0.236/trunk@128490 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 21:53:22 +00:00
andreas.otte%debitel.net
28105a83c8 fix bug 163225 [success or failure of ExtractScheme is not enough to
decide if a url is absolute or relative] This is second part of the
stuff to support those deprecated relative urls of type http:file or
http:/path. By loosening the check on absolute uris in
nsIOService::NewURI nsStandardURL::Resolve gets a chance to do its job.
r=bbaetz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128489 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 21:31:55 +00:00
nhotta%netscape.com
0392283d83 Remove BOM (Byte Order Mark) in 'utxt' for clipboard and drag&drop,
bug 165266, r=pinkerton, sfraser.


git-svn-id: svn://10.0.0.236/trunk@128488 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 21:28:28 +00:00
kaie%netscape.com
c7057add86 b=164702 File restore only opens *.p12, but not *.pfx
r=javi sr=bryner


git-svn-id: svn://10.0.0.236/trunk@128487 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 21:27:54 +00:00
nicolson%netscape.com
1f0f47ae70 Take out the NSS_USE_STATIC_LIBS flag. I have no idea why we needed it before.
git-svn-id: svn://10.0.0.236/trunk@128478 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 18:07:42 +00:00
relyea%netscape.com
7ce469a98a Fix Version spelling, remove rcsid.
git-svn-id: svn://10.0.0.236/trunk@128477 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 17:45:12 +00:00
rogerl%netscape.com
b3ab7530ff More namespaces and use statement. Fixed retval behaviour
git-svn-id: svn://10.0.0.236/trunk@128473 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 16:14:40 +00:00
leaf%mozilla.org
aaa5cecf62 Automated update
git-svn-id: svn://10.0.0.236/trunk@128470 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:54:55 +00:00
mkaply%us.ibm.com
6b26585bc4 Emergency OS/2 fix - crashes bringing up file dialogs
git-svn-id: svn://10.0.0.236/trunk@128469 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:50:29 +00:00
blizzard%redhat.com
ae19a10353 Update version from 1.1b to 1.2a since that's our current target. sr=shaver
git-svn-id: svn://10.0.0.236/trunk@128468 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:40:31 +00:00
locka%iol.ie
185f599b02 NOT PART OF BUILD. Added hack workaround for 1.1 which doesn't like equals signs in PLIDs
git-svn-id: svn://10.0.0.236/trunk@128467 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:29:45 +00:00
locka%iol.ie
4fbcc4b562 NOT PART OF BUILD. Removed bogus test method x()
git-svn-id: svn://10.0.0.236/trunk@128466 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:28:44 +00:00
locka%iol.ie
b52e05d725 NOT PART OF BUILD. Added -j flags to xpi file creation
git-svn-id: svn://10.0.0.236/trunk@128465 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:28:11 +00:00
leaf%mozilla.org
fe28428a56 Automated update
git-svn-id: svn://10.0.0.236/trunk@128463 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:25:00 +00:00
bolian.yin%sun.com
802c2d3231 bug 156593, Remove the dependence to gtk1 when the default toolkit is gtk2. This checkin fix a error in last patch
git-svn-id: svn://10.0.0.236/trunk@128462 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 14:21:59 +00:00
brade%netscape.com
4d96d95c3d initialize mSerializingOutput in constructor (bug 164917)
git-svn-id: svn://10.0.0.236/trunk@128461 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 13:49:12 +00:00
brade%netscape.com
b9f1f693d2 fix pageup/pagedown keybinding for browser (bug 165255)
git-svn-id: svn://10.0.0.236/trunk@128458 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 13:01:57 +00:00
cbiesinger%web.de
0b8f0e482c bug 124454 patch by db48x@yahoo.com r=alecf sr=bz
Page info displays media/images at the wrong size.


git-svn-id: svn://10.0.0.236/trunk@128455 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 11:25:28 +00:00
leaf%mozilla.org
df9a6d97d7 Automated update
git-svn-id: svn://10.0.0.236/trunk@128454 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 10:40:24 +00:00
bolian.yin%sun.com
0267da5020 bug 156593, Remove the dependence to gtk1 when the default toolkit is gtk2.
patch by john.sun@sun.com, r=cls


git-svn-id: svn://10.0.0.236/trunk@128453 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 10:30:58 +00:00
bbaetz%student.usyd.edu.au
46d483962b Bug 163829 - move pref code into a separate package
r=joel, preed


git-svn-id: svn://10.0.0.236/trunk@128451 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 09:25:54 +00:00
axel%pike.org
4befb464f0 bug 155578, refactor XSLTProcessor, landing trivial parts to make diff usefull. Function reordering in XSLTProcessor, txExpandedNameMap::remove, r=sicking, sr=bz
git-svn-id: svn://10.0.0.236/trunk@128449 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 08:34:48 +00:00
aaronl%netscape.com
adfb73782f Bug 161960. Slight reordering of original fix - make sure we do init only when pref is set. r=jkeiser, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@128448 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 08:26:38 +00:00
jfrancis%netscape.com
91aef93693 fix for 94176: Text copied from table with multiple rows has no CR/LF. r=fm, sr=kin
git-svn-id: svn://10.0.0.236/trunk@128447 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 08:23:53 +00:00
jfrancis%netscape.com
6cf80b2b8c fix for 159842: parser has no mechanism to allow parsing of incomplete html fragments. sr's from heikki, kin, bz
git-svn-id: svn://10.0.0.236/trunk@128445 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 08:17:41 +00:00
jfrancis%netscape.com
09d3e8e707 fix for 161106: rewrite of deletion in editor. fixes various deletion probs. r=glazman; sr=kin
git-svn-id: svn://10.0.0.236/trunk@128444 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 07:49:31 +00:00
axel%pike.org
f078dbeb93 bug 156523, don't load alternate XSLT stylesheets, r=sicking, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@128440 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 06:53:59 +00:00
aaronl%netscape.com
9c60a13127 Bug 161960. Type Ahead Find, make Accel+G remember last type ahead find until normal find is used again. Also should fix the page load performance issue. r=akkana, sr=bz
git-svn-id: svn://10.0.0.236/trunk@128438 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 06:27:38 +00:00
darin%netscape.com
ac586f427f fixes bug 163841 "Mozilla hangs in PR_Lock at ptsynch.c:190" r=dougt sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@128437 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 04:30:54 +00:00
jkeiser%netscape.com
00f9a12d62 Make anonymous content inaccessible to web content (bug 164086), r=sicking@bigfoot.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128436 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 04:05:39 +00:00
curt%netscape.com
f45319e081 Not yet in build.
git-svn-id: svn://10.0.0.236/trunk@128435 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 04:03:26 +00:00
curt%netscape.com
c4eb48bfc1 Getting xpcom.xpi from the wrong place.
(Not yet in build)


git-svn-id: svn://10.0.0.236/trunk@128433 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 03:39:59 +00:00
dougt%netscape.com
415bf720ed Fixes 95590 FTP: SYST limitations. Intergrates Cyrus Patel LIST Parser. r=dougt, sr=darin@Netscape.com.
git-svn-id: svn://10.0.0.236/trunk@128429 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 03:13:18 +00:00
bryner%netscape.com
2940b53faf Fixing up splash_xpm for phoenix builds on Linux. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@128423 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 03:04:36 +00:00
cltbld%netscape.com
53b59adbd8 Fixing timezone issues, posix errors for OSX/Jaguar. Added date +%Z option for OSX (and others). r=jrgm
git-svn-id: svn://10.0.0.236/trunk@128415 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 02:31:34 +00:00
pete.zha%sun.com
f1830c00be Reproducible crash when printing page [@nsFloaterCacheList::~nsFloaterCacheList()] (bug=149074)
r=karnaze@netscape.com sr=bzbarsky@mit.edu


git-svn-id: svn://10.0.0.236/trunk@128412 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 01:44:15 +00:00
stephend%netscape.com
a538dc60ba Bug 160248. Removing unused _IMPL_NS_INTL defines. Patch by Stephen Walker <walk84@yahoo.com> r=seawood@netscape.com, NO sr needed, makefiles only
git-svn-id: svn://10.0.0.236/trunk@128409 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 01:33:14 +00:00
jpierre%netscape.com
e9fb1eeb0d Fix memory corruption
git-svn-id: svn://10.0.0.236/trunk@128407 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 01:28:53 +00:00
aaronl%netscape.com
5d85f15896 Bug 163897. Can't copy image location. r=rods,caillon, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@128406 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 01:01:31 +00:00
morse%netscape.com
548c847807 bug 90644, http and ftp sites share cookies, r=mstoltz, sr=darin
git-svn-id: svn://10.0.0.236/trunk@128404 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-29 00:12:26 +00:00
morse%netscape.com
30717f5ad9 bug 164278, reading cookie file is inefficient, c=brade, r=morse, sr=darin
git-svn-id: svn://10.0.0.236/trunk@128402 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 23:58:06 +00:00
morse%netscape.com
453adc546e bug 157480, crash if password deleted while select-user prompt is up, r=sgehani, sr=darin
git-svn-id: svn://10.0.0.236/trunk@128400 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 23:50:07 +00:00
relyea%netscape.com
b488dd7d37 File with version number for applications
git-svn-id: svn://10.0.0.236/trunk@128391 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 22:13:19 +00:00
relyea%netscape.com
f55456eef9 Put version number in an external header so applications can check if they
are using an up-to-date builtins module.


git-svn-id: svn://10.0.0.236/trunk@128390 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 22:12:58 +00:00
relyea%netscape.com
5652fb3ab7 handle dbm blobs withouth stressing libdbm.
git-svn-id: svn://10.0.0.236/trunk@128388 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 21:51:10 +00:00
myk%mozilla.org
7994aa593d The rest of the fix for bug 163573: Escapes HTML in form data displayed to the user to secure Bonsai against cross-site scripting attacks.
git-svn-id: svn://10.0.0.236/trunk@128381 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 21:03:26 +00:00
mostafah%oeone.com
24965862a4 Applying changes to make build possible on Mac OS X
git-svn-id: svn://10.0.0.236/trunk@128380 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 20:56:50 +00:00
wtc%netscape.com
bb1ca285a3 Updated for NSPR 4.3.
git-svn-id: svn://10.0.0.236/trunk@128375 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 20:27:31 +00:00
wtc%netscape.com
92d4dc2f03 Set NSPR version to 4.3 Beta.
git-svn-id: svn://10.0.0.236/trunk@128374 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 20:22:15 +00:00
wtc%netscape.com
2c2930d6d0 Updated for NSPR 4.3.
git-svn-id: svn://10.0.0.236/trunk@128373 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 20:21:57 +00:00
wtc%netscape.com
6deb776e17 Use cygwin-wrapper only when we are using cygwin (the mingw and cygwin
targets).


git-svn-id: svn://10.0.0.236/trunk@128368 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 19:53:05 +00:00
brendan%mozilla.org
6f69cb1d79 Disable new fp->objAtomMap code to relieve blocker bug 165201.
git-svn-id: svn://10.0.0.236/trunk@128366 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:53:25 +00:00
wtc%netscape.com
31d1c25d30 Merged the fix for bug 141834 (using cygwin-wrapper) on the tip.
git-svn-id: svn://10.0.0.236/trunk@128365 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:34:30 +00:00
wtc%netscape.com
b2dbf23328 Set NSPR version to 4.2.2 Beta.
git-svn-id: svn://10.0.0.236/trunk@128364 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:23:30 +00:00
wtc%netscape.com
70a1745c7f Updated for NSPR 4.2.2.
git-svn-id: svn://10.0.0.236/trunk@128363 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:21:32 +00:00
nicolson%netscape.com
1ead6b7522 Fix 143163: Add public constructors for some CRMF classes.
git-svn-id: svn://10.0.0.236/trunk@128362 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:20:24 +00:00
nicolson%netscape.com
06bd10142f merge premature JSS_3_2_BRANCH back to the trunk.
git-svn-id: svn://10.0.0.236/trunk@128361 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 18:05:40 +00:00
mikep%oeone.com
63d8b1e8a0 Fixing multiple selection for event tree.
git-svn-id: svn://10.0.0.236/trunk@128360 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:59:40 +00:00
nicolson%netscape.com
b650e0f718 fix call to CryptoManager.initialize.
git-svn-id: svn://10.0.0.236/trunk@128359 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:59:04 +00:00
nicolson%netscape.com
f3bb6e4563 clean up comments
git-svn-id: svn://10.0.0.236/trunk@128358 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:57:48 +00:00
nicolson%netscape.com
2221b5a252 useful getAlgorithm method.
git-svn-id: svn://10.0.0.236/trunk@128357 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:57:20 +00:00
nicolson%netscape.com
b1e2124e74 remove alg-dependent code.
git-svn-id: svn://10.0.0.236/trunk@128356 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:56:48 +00:00
nicolson%netscape.com
ab0927c775 fix bugs in keygen, particularly that break AES.
git-svn-id: svn://10.0.0.236/trunk@128355 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:56:15 +00:00
nicolson%netscape.com
cba213ba79 no more -b symbolic
git-svn-id: svn://10.0.0.236/trunk@128354 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:54:12 +00:00
rogerl%netscape.com
64cbd99ece Changed qualifier evaluation to compile time. Added error handling via
pc map.


git-svn-id: svn://10.0.0.236/trunk@128352 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:43:44 +00:00
mikep%oeone.com
9ae5493eb5 Removing duplicate code.
git-svn-id: svn://10.0.0.236/trunk@128351 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:20:48 +00:00
mikep%oeone.com
16168057c8 Fixing bug 164346.
git-svn-id: svn://10.0.0.236/trunk@128350 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 17:14:57 +00:00
kaie%netscape.com
f37c10c5f5 b=121906 Other People's certs not sorted
r=javi sr=jag


git-svn-id: svn://10.0.0.236/trunk@128340 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 13:49:52 +00:00
brade%netscape.com
9da585e6fe check in patches for 4302 that were overlooked when landing fix for bug 4302 (shift keybindings for pageup/pagedown)
git-svn-id: svn://10.0.0.236/trunk@128339 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 13:36:44 +00:00
brade%netscape.com
68bde037a2 check in patch which was overlooked when checking in fix for bug 4302
git-svn-id: svn://10.0.0.236/trunk@128338 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 13:32:48 +00:00
ian.mcgreer%sun.com
a7f0520fb8 fix broken builds
git-svn-id: svn://10.0.0.236/trunk@128337 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 13:27:32 +00:00
brade%netscape.com
928ca30c1d missing piece from checkin for bug 4302
git-svn-id: svn://10.0.0.236/trunk@128336 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 13:26:37 +00:00
cbiesinger%web.de
3b862595de bug 164527 r=timeless sr=bz moa=ben remove unused function
git-svn-id: svn://10.0.0.236/trunk@128335 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 12:55:29 +00:00
axel%pike.org
6f2a873b95 fix MOZ_TIMELINE bustage by bzbarzky, bug 119321. code by peterv, r=me
git-svn-id: svn://10.0.0.236/trunk@128334 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 12:18:26 +00:00
rods%netscape.com
bca61f5ded remove bit to hide "print to file"
Bug 155552 r=dcone sr=alecf


git-svn-id: svn://10.0.0.236/trunk@128333 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 11:51:15 +00:00
bbaetz%student.usyd.edu.au
4e8a1e0dc7 Backing out jkeiser's checkin for bug 164086 (not bug 96537) because he
left a file out, and the tree turned red....


git-svn-id: svn://10.0.0.236/trunk@128332 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 10:13:28 +00:00
jkeiser%netscape.com
958a25b600 Make anonymous content inaccessible to web content (bug 96537), r=sicking@bigfoot.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@128330 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 08:19:43 +00:00
aaronl%netscape.com
eab9064f31 Bug 30088. Reversing pref that automatically turns on type ahead find due to perf regressions. Patch to fix regressions is being worked on in bug 161960
git-svn-id: svn://10.0.0.236/trunk@128327 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 06:57:56 +00:00
henry.jia%sun.com
ecc50d24a9 fix bug 147995: Difficulty finding trash folder when using an IMAP server directory
Patch By Henry.Jia@sun.com
r=naving, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@128325 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 06:29:15 +00:00
pete.zha%sun.com
40b78c7fec [ps] printing messes up italics and ems (bug=130438)
r=dcone sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@128324 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 05:47:24 +00:00
bbaetz%student.usyd.edu.au
0a71d068a0 Correct checkin date for bug 153578 schema modification
git-svn-id: svn://10.0.0.236/trunk@128323 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 05:43:51 +00:00
bbaetz%student.usyd.edu.au
4df5d64293 Bug 165080 - Delete product fails with missing column error
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128322 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 04:27:21 +00:00
rogerl%netscape.com
fd955bf710 Ongoing namespace implementation + first gc.
git-svn-id: svn://10.0.0.236/trunk@128318 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:45:55 +00:00
morse%netscape.com
d53b13a300 bug 162129 (leak in cookie module) & bug 158216 (cookies written out too often), r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@128315 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:30:06 +00:00
jkeiser%netscape.com
6c53305c36 Fix uninitialized variable crash (bug 160656). Patch by ramon_garcia_f@yahoo.com, r=jkeiser@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@128314 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:18:27 +00:00
smontagu%netscape.com
9eef7fc6ca Bug 82352: Can't select multiline right-to-left text. r=mjudge, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@128313 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:05:54 +00:00
wtc%netscape.com
7197a32e24 Bug 161998: fixed the race condition between PR_Cleanup and a CPU thread
that times out from the GetQueuedCompletionStatus call in the WINNT build.
The fix is to shut down the CPU threads in PR_Cleanup.
Modified Files: _winnt.h primpl.h ntthread.c prinit.c prucpu.c


git-svn-id: svn://10.0.0.236/trunk@128312 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:04:47 +00:00
darin%netscape.com
6202882446 fixes bug 162589 - about:cache-entry should not be sent as a HTTP Referer header.
r=bbaetz sr=heikki


git-svn-id: svn://10.0.0.236/trunk@128311 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-28 00:02:35 +00:00
bzbarsky%mit.edu
8b530edf64 Bug 119321 and bug 80106. Create a generic nsIUnicharStreamLoader that
makes two callbacks -- one to determine the charset and one to provide
an nsIUnicharInputStream.  Use this in the CSSLoader instead of
allocating a single big buffer for the sheet.  Clean up the way we look
for the @charset charset in the sheet data.

r=rpotts for netwerk/, r=peterv for content/, r=smontagu for intl/,
sr=darin for the whole thing.


git-svn-id: svn://10.0.0.236/trunk@128310 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 23:47:25 +00:00
relyea%netscape.com
2f2fb64005 close hole in trust lookups.
git-svn-id: svn://10.0.0.236/trunk@128309 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 23:38:29 +00:00
relyea%netscape.com
49cae577a9 Roll the version number forward
git-svn-id: svn://10.0.0.236/trunk@128306 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 23:32:31 +00:00
relyea%netscape.com
11dd8f0fe6 Roll the version number forward.
git-svn-id: svn://10.0.0.236/trunk@128305 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 23:29:36 +00:00
brendan%mozilla.org
b49e194784 Fix for embeddings that precompile and execute using different globals/standard-classes: clone regexp objects at runtime, on demand, to have the right parentage (164697, r=rogerl, sr=shaver).
git-svn-id: svn://10.0.0.236/trunk@128304 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 23:28:59 +00:00
ducarroz%netscape.com
7c36562c85 Fix for bug 131889. Need to insert separatly the html headers. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@128300 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 22:45:18 +00:00
alexsavulov%netscape.com
aef6811a4b Fix for bug 78820 - right aligned floater in nowrap blocks are not
positioned correctly. r= alexsavulov sr= kin


git-svn-id: svn://10.0.0.236/trunk@128299 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 22:31:24 +00:00
shrutiv%netscape.com
e79ece1418 Fix for bugscape bug 13929: Show Config Info button labels should be consistent
git-svn-id: svn://10.0.0.236/trunk@128296 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 22:14:18 +00:00
alexsavulov%netscape.com
27f0f3f950 Fix for bug 164065 - Broken image input element crashes the browser.
r= jkeiser, sr= jst


git-svn-id: svn://10.0.0.236/trunk@128295 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 22:00:26 +00:00
glen.beasley%sun.com
e25d1ea760 163762 verify cert test example
git-svn-id: svn://10.0.0.236/trunk@128291 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 21:50:44 +00:00
glen.beasley%sun.com
210c030902 163762 make OCSP responder configurable at runtime
git-svn-id: svn://10.0.0.236/trunk@128290 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 21:46:13 +00:00
shrutiv%netscape.com
c44d3dfcea Fix for bugscape bug 19466: Network Installer of custom JA bld crashes (r=mitchf)
git-svn-id: svn://10.0.0.236/trunk@128289 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 21:44:32 +00:00
relyea%netscape.com
3beb9c729a use correct issuer/SN for beTRUSTed -- Entrust
git-svn-id: svn://10.0.0.236/trunk@128288 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:57:48 +00:00
bzbarsky%mit.edu
d8f58536ba Bug 162546 and bug 141883. Better handling of unknown area shapes and
more graceful handling of bogus rect coords.  r=jkeiser, sr=roc.


git-svn-id: svn://10.0.0.236/trunk@128287 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:49:54 +00:00
beard%netscape.com
81d328924f Fix for bug #164712, r=pinkerton, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@128286 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:48:30 +00:00
relyea%netscape.com
9670a9cc35 beTRUSTed, RSA, GeoTrust, UTN-USER, and AOL Roots also need issuer/SN
git-svn-id: svn://10.0.0.236/trunk@128285 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:41:20 +00:00
mikep%oeone.com
da87130a64 Fixing some strict warnings, adding in locale.
git-svn-id: svn://10.0.0.236/trunk@128284 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:19:47 +00:00
relyea%netscape.com
bc9291d7fb Trust objects need Issuer and Serial number.
git-svn-id: svn://10.0.0.236/trunk@128283 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:17:09 +00:00
relyea%netscape.com
6af9522fac Trust attributes need issuer & serial number
git-svn-id: svn://10.0.0.236/trunk@128282 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:15:58 +00:00
mikep%oeone.com
abdf9e60ca Many small bug fixes, mostly look and feel, and moving some functions around.
git-svn-id: svn://10.0.0.236/trunk@128281 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 20:06:09 +00:00
mikep%oeone.com
95d08bce0f Updating converters.
git-svn-id: svn://10.0.0.236/trunk@128278 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 19:58:39 +00:00
curt%netscape.com
4d1494d638 Some platforms don't like quotes in the path.
(Not yet in the build)


git-svn-id: svn://10.0.0.236/trunk@128277 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 19:53:49 +00:00
mostafah%oeone.com
896110f9af Completed implementation of GetFirstEventForRange() function
git-svn-id: svn://10.0.0.236/trunk@128274 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 19:51:23 +00:00
mikep%oeone.com
236d7f1c87 Fixing bug 164435.
git-svn-id: svn://10.0.0.236/trunk@128272 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 19:12:28 +00:00
alecf%netscape.com
11549d59fc fix for bug 164577 - make the nsManifestLineReader include lengths from ParseLine() so that consumers can avoid calling strlen() on them
(tiny startup perf fix for reading in xpti.dat)
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128267 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 18:32:12 +00:00
dcone%netscape.com
3cdde98a28 148598 r=rods sr=kin, fix minor update issues with backgrounds
git-svn-id: svn://10.0.0.236/trunk@128266 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 18:23:47 +00:00
alecf%netscape.com
06618a8551 fix for bug 164940 - D&D and clipboard were broken
author=akkana, sr=alecf, r=timeless


git-svn-id: svn://10.0.0.236/trunk@128265 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 18:15:38 +00:00
locka%iol.ie
b3c992cb77 NOT PART OF BUILD. Bumped up the version number and added install.js and xpi build target
git-svn-id: svn://10.0.0.236/trunk@128264 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 17:53:13 +00:00
rogerl%netscape.com
03df6c02e1 Namespace implemenation.
git-svn-id: svn://10.0.0.236/trunk@128261 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 16:11:32 +00:00
timeless%mac.com
22480de6aa Bug 91835 Can't find [tcl] rebuildtaginfo.cgi
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@128260 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 16:01:10 +00:00
mikep%oeone.com
75c398a747 Fixing view issues, bug 164436..
git-svn-id: svn://10.0.0.236/trunk@128250 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 13:31:25 +00:00
kaie%netscape.com
171583bc21 b=107034 OE requires special attribute in incoming signed messages to support dual key certificates. Add new function
NSS_CMSSignerInfo_AddMSSMIMEEncKeyPrefs.
r=relyea


git-svn-id: svn://10.0.0.236/trunk@128249 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 13:14:42 +00:00
dougt%netscape.com
c2afb63042 Removing nsIURIChecker.idl from sdk exports
git-svn-id: svn://10.0.0.236/trunk@128247 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 13:09:16 +00:00
mkaply%us.ibm.com
6c6859c6d0 OS/2 bustage - don't need these .gets
git-svn-id: svn://10.0.0.236/trunk@128246 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 12:39:30 +00:00
mikep%oeone.com
02f09f475e Fixing bug 164838 and fixing spelling mistake in function name.
git-svn-id: svn://10.0.0.236/trunk@128245 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 12:34:47 +00:00
bryner%netscape.com
3a69400b8e add license. also, back to MOZ_WINCONSOLE.
git-svn-id: svn://10.0.0.236/trunk@128243 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 09:59:37 +00:00
bbaetz%student.usyd.edu.au
335b90f826 Bug 161203 - Bug changes with intermediate pages munges fields with
multiple values (e.g., CC)
patch by "Randall M! Gee", r=bbaetz, myk


git-svn-id: svn://10.0.0.236/trunk@128242 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 09:35:22 +00:00
igor%mir2.org
b0638838f6 Workaround in JS Math.pow implementation for java.lang.Math.pow brokeness in some JVM.
git-svn-id: svn://10.0.0.236/trunk@128241 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 08:14:49 +00:00
igor%mir2.org
7283e58887 Fixing a bug reported by Steven Beal where Interpreter.icodeTokenLength() and In
terpreter.dumpICode() used wrong size for CLOSURE opcode arguments.


git-svn-id: svn://10.0.0.236/trunk@128240 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 08:12:25 +00:00
cbiesinger%web.de
8b5c9c765c bug 164489 r=timeless sr=bz contentAreaUtils.js should use appendFilters for well known types (text, allfiles)
git-svn-id: svn://10.0.0.236/trunk@128239 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 08:06:37 +00:00
seawood%netscape.com
059352bad6 Not all c++ compilers support true. Use PR_TRUE instead.
Fixing OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@128238 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 07:34:41 +00:00
aaronl%netscape.com
6a2f644b16 Bug 30088. Finishing checkin by turning on pref for type ahead find in default build. r=akkana, sr=jst
git-svn-id: svn://10.0.0.236/trunk@128237 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 06:00:13 +00:00
bryner%netscape.com
98525e61b7 Oops.
git-svn-id: svn://10.0.0.236/trunk@128236 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 05:37:23 +00:00
jake%bugzilla.org
b7a53c11ec Updating my e-mail address as jake@acutex.net is no longer valid.
* NO CODE CHANGES *


git-svn-id: svn://10.0.0.236/trunk@128230 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:28:05 +00:00
alecf%netscape.com
716b30d089 oops, fix a typo in my previous checkin that caused help not to display - found by bryner, just returning the logic to where it was before...
git-svn-id: svn://10.0.0.236/trunk@128229 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:17:32 +00:00
sicking%bigfoot.com
4e95691bba Fix whitespacehandling by looking for xml:space-attributes when needed and only when needed.
b=163856 r=Pike sr=bz


git-svn-id: svn://10.0.0.236/trunk@128227 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:13:18 +00:00
bryner%netscape.com
a3ad7ea0fd Sync with API changes.
git-svn-id: svn://10.0.0.236/trunk@128226 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:08:31 +00:00
jake%bugzilla.org
d6ebd344da Bug 86651 - cvs-update was setting sticky dates which made commiting changes and getting updates more difficult
r=bbaetz, jouni


git-svn-id: svn://10.0.0.236/trunk@128225 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:07:14 +00:00
curt%netscape.com
bfc1432d0f Not (yet) in build
git-svn-id: svn://10.0.0.236/trunk@128224 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 04:02:27 +00:00
timeless%mac.com
a7b4f84754 Bug 68509 multidiff.cgi should use diff -u rather than diff -c
r=tara


git-svn-id: svn://10.0.0.236/trunk@128222 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:48:50 +00:00
timeless%mac.com
a9d93e571c Bug 164718 Add maxlength=29 in search input boxes in lxr index
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@128221 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:34:28 +00:00
mkaply%us.ibm.com
6fa5c40d13 I think alec was just overzelous in his changes - this is the only GetData that required change to build with the freeze
git-svn-id: svn://10.0.0.236/trunk@128220 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:31:04 +00:00
blizzard%redhat.com
78e280a8e0 Turn of native theme support for the moment since it's causing problems on some of the build machines and causes crashes with some themes. Bug #164581. r=bryner
git-svn-id: svn://10.0.0.236/trunk@128219 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:17:01 +00:00
mkaply%us.ibm.com
f63aa607d7 #164122
r=mkaply, sr=blizzard
OS/2 only - widget changes to get the viewer app working


git-svn-id: svn://10.0.0.236/trunk@128218 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:14:00 +00:00
mkaply%us.ibm.com
0a1305e067 Backing out alecf - need to look at the ramifications of his changes - they were not as simple as he made them
git-svn-id: svn://10.0.0.236/trunk@128217 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:11:42 +00:00
mkaply%us.ibm.com
63f5b8a257 Those three previous GFX checkins should be this comment:
#164149
r=pedemont, sr=blizzard
OS/2 only - fix uconv leak, remove some unnecessary atom code


git-svn-id: svn://10.0.0.236/trunk@128216 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:07:03 +00:00
mkaply%us.ibm.com
497d4fb8bb Not part of build
Continuing OS/2 wizard work
It's pretty much working now


git-svn-id: svn://10.0.0.236/trunk@128215 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:06:10 +00:00
mkaply%us.ibm.com
940fd760b0 Not part of build
Continuing OS/2 wizard work
It's pretty much working now


git-svn-id: svn://10.0.0.236/trunk@128214 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 03:00:34 +00:00
mkaply%us.ibm.com
8ae4ed5f3a Attempt to fix OS/2 bustage
git-svn-id: svn://10.0.0.236/trunk@128213 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 02:58:04 +00:00
alecf%netscape.com
19ca6005dd hmmm...backing out my change on unix only to if memcmp() is actually SLOWER
(its faster on windows!)


git-svn-id: svn://10.0.0.236/trunk@128212 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 02:56:06 +00:00
darin%netscape.com
7f7fea3e43 fixes bug 152697 "no limit on the size of a HTTP header" r=dougt sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@128208 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 02:26:43 +00:00
timeless%mac.com
7142326c98 Bug 164731 wrong accesskey in bookmarks.xul
r=caillon, rs=darin


git-svn-id: svn://10.0.0.236/trunk@128206 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 02:20:14 +00:00
caillon%returnzero.com
35c44c0bf5 152625 - Make loading a groupmark honor the 'Load links in the background' pref
r=sicking sr=jag


git-svn-id: svn://10.0.0.236/trunk@128205 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 02:20:04 +00:00
bolian.yin%sun.com
0010526b83 Bug163358, Make install not working in widget/src/gtk2, patch by mpeseng@tin.it sr=jag. This is not for the Default Build.
git-svn-id: svn://10.0.0.236/trunk@128199 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 01:41:15 +00:00
seawood%netscape.com
0e9957d897 Use $(patsubst) instead of $(shell echo | sed) to force certain files to be built with a specific optimization level. This avoids potential bustage arising from certain characters not being properly escaped when the commandline flags are evaluated multiple times.
Fixing Irix tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@128196 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 01:37:52 +00:00
dougt%netscape.com
57028338f0 exports frozen interface to dist/sdk using new SDK variable. 164717. r=cls, sr=alec
git-svn-id: svn://10.0.0.236/trunk@128192 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 01:05:21 +00:00
curt%netscape.com
fca296e68e Simplified dialogs which show unnecassary information when installing only
a single component.
  Not (yet) part of the build.


git-svn-id: svn://10.0.0.236/trunk@128190 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 00:43:09 +00:00
curt%netscape.com
da47ac25ef Added in a batch file to run mfcembed using mre.
Not (yet) part of the build.


git-svn-id: svn://10.0.0.236/trunk@128189 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 00:32:40 +00:00
kaie%netscape.com
0a8bd297cb Backing myself out, since it didn't compile on Win32, and I would like to discuss the correct fix.
git-svn-id: svn://10.0.0.236/trunk@128188 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-27 00:05:11 +00:00
rogerl%netscape.com
6be0b4d3f9 DefineStaticMember & multiname changes
git-svn-id: svn://10.0.0.236/trunk@128183 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 23:41:19 +00:00
bienvenu%netscape.com
7e0f39cc90 fix build warnings, no bug, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@128181 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 23:07:50 +00:00
alecf%netscape.com
b3f908edbc huh, try raw casts to try to fix bustage
git-svn-id: svn://10.0.0.236/trunk@128180 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 23:05:57 +00:00
bienvenu%netscape.com
a489131c3e fix build warnings, no bug, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@128179 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 22:58:50 +00:00
bienvenu%netscape.com
787dfefba0 fix 164404, 100% cpu use when waiting for imap server response r=mscott, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@128178 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 22:57:11 +00:00
bugreport%peshkin.net
f7c4a63469 Bug 164623 - xml.cgi - attachments is broken and insiders not enforced
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@128174 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 22:24:58 +00:00
bbaetz%student.usyd.edu.au
b8a7c07b1d Bug 164623 - add .htaccess to .cvsignore
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128172 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 22:24:55 +00:00
alecf%netscape.com
cea0bfc622 oops, forgot to check this file in from unix for bug 157624
git-svn-id: svn://10.0.0.236/trunk@128171 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 22:19:43 +00:00
mjudge%netscape.com
a03311b9c2 4302. left this out of checking. fixing bustage
git-svn-id: svn://10.0.0.236/trunk@128170 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:46:13 +00:00
relyea%netscape.com
644db95e59 Remove warning for unreferenced variable.
git-svn-id: svn://10.0.0.236/trunk@128169 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:39:49 +00:00
kaie%netscape.com
8ceba8cca5 b=107034 OE requires special attribute in incoming signed messages to support dual key certificates. Add new function
NSS_CMSSignerInfo_AddMSSMIMEEncKeyPrefs.
r=relyea


git-svn-id: svn://10.0.0.236/trunk@128165 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:34:31 +00:00
kerz%netscape.com
3071f05410 fixing bookmarks menu
git-svn-id: svn://10.0.0.236/trunk@128164 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:28:33 +00:00
alecf%netscape.com
e3b2da9c83 bug 157624 - freeze nsISupportsPrimitives, which includes changing nsISupport[C]String over to using A[C]String and fixing consumers
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128163 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:20:34 +00:00
seawood%netscape.com
6487e8df55 Rename conflicting global symbols to fix debug static build runtime bustage.
Bug #162918 r=serge sr=alecf


git-svn-id: svn://10.0.0.236/trunk@128162 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:20:31 +00:00
relyea%netscape.com
8630aa0e85 Bug 164690. Fix missing break;
git-svn-id: svn://10.0.0.236/trunk@128161 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:16:07 +00:00
kerz%netscape.com
e8d55f70a4 fixing bookmarks menu
git-svn-id: svn://10.0.0.236/trunk@128159 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 21:13:53 +00:00
mjudge%netscape.com
2f5c006a1d 4302 r=jfrancis sr=kin. pageup/down bug with navigation.
git-svn-id: svn://10.0.0.236/trunk@128157 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:55:30 +00:00
mikep%oeone.com
2810f76a83 Fixing problem with tooltips showing when not over anything in trees.
git-svn-id: svn://10.0.0.236/trunk@128156 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:53:52 +00:00
alecf%netscape.com
b1ea054b38 fix bug 164540 - make nsID::Parse faster by using memcmp
r=bbaetz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128154 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:47:34 +00:00
alecf%netscape.com
f0e3bbb854 ok, re-checking in bug 156567 because it did not affect startup time
git-svn-id: svn://10.0.0.236/trunk@128153 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:38:52 +00:00
dougt%netscape.com
0f22b205af Freezes the nsIProperties interface. 162114. r=ccarlen, sr=alecf. Freezes the mozIJSSubScriptLoader interface. 157136. r=rginda, sr=alec.
git-svn-id: svn://10.0.0.236/trunk@128150 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:36:44 +00:00
ere%atp.fi
1ff85d2f1e Bug 80579, We call CommonFileDialog with spaces in the lpstrFilter parameter and use "*" instead of "*.*" for all files. r=timeless, sr=tor
git-svn-id: svn://10.0.0.236/trunk@128149 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:36:22 +00:00
shanjian%netscape.com
2d279e0043 #41425 UTF-8 converter gets surrogates wrong
correct unicode upper boundary
r=ftang, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@128147 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:32:13 +00:00
kaie%netscape.com
c358e39dff b=122869 Need better message when import a cert with wrong password.
r=javi sr=jag


git-svn-id: svn://10.0.0.236/trunk@128146 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:31:03 +00:00
shanjian%netscape.com
b01fc25353 #137657 html content serializer and nsISaveAsCharset does not handle surrogate correctly
handle surrogate pair
r=ftang, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@128144 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:23:14 +00:00
shanjian%netscape.com
586fb7a0d7 #137657 html content serializer and nsISaveAsCharset does not handle surrogate correctly
Modify the API of DoConversionFallBack and HandleFallBack to take UCS4 string, and
handle surrogate pair properly.
r= ftang, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@128143 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:21:08 +00:00
kaie%netscape.com
26c4795231 b=161915 Combine verified and purposes column in certificate manager
r=javi sr=jag


git-svn-id: svn://10.0.0.236/trunk@128142 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:16:25 +00:00
shanjian%netscape.com
5d1c227024 #162239 POST document could not inherit charset from previous page if the previous charset is from autodetection.
r=ftang, darin, sr=jst
added PrevDocCharset to markupViewer, and pass around previous document charset.
This charset is later used to load POST document.


git-svn-id: svn://10.0.0.236/trunk@128141 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:13:31 +00:00
rogerl%netscape.com
5fe48eddea Bug 58274. Support double byte characters for toSource identifiers.
r=khanson, sr=brendan.


git-svn-id: svn://10.0.0.236/trunk@128139 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 20:07:58 +00:00
mikep%oeone.com
6c05377957 Fixing tooltips.
git-svn-id: svn://10.0.0.236/trunk@128135 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 19:00:54 +00:00
alecf%netscape.com
b14dfc8e9b try backing out just the build-side changes to from bug 156567 to see if I caused the startup regression
git-svn-id: svn://10.0.0.236/trunk@128134 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 18:58:09 +00:00
mikep%oeone.com
bf82de873e Adding in publish dialog to jar.mn.
git-svn-id: svn://10.0.0.236/trunk@128132 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 18:47:38 +00:00
mikep%oeone.com
7c8af28173 Fixing bug 164598.
git-svn-id: svn://10.0.0.236/trunk@128131 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 18:47:22 +00:00
mikep%oeone.com
b15238a2dd Fixing bug with date formatting.
git-svn-id: svn://10.0.0.236/trunk@128129 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 18:37:28 +00:00
mikep%oeone.com
d6ba325bf4 Fixing bug 164370, moving events from below to above the view.
git-svn-id: svn://10.0.0.236/trunk@128127 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 18:20:41 +00:00
cbiesinger%web.de
552e2bf527 bug 159256 patch by bxf04451@nifty.ne.jp r=biesi sr=tor
crash loading favicon


git-svn-id: svn://10.0.0.236/trunk@128125 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:58:06 +00:00
rogerl%netscape.com
9eec6f6701 switching to qualified multinames.
git-svn-id: svn://10.0.0.236/trunk@128124 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:53:04 +00:00
nicolson%netscape.com
fbd9eae433 comment.
git-svn-id: svn://10.0.0.236/trunk@128122 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:37:41 +00:00
nicolson%netscape.com
fa8b566012 remove obsolete samples.
git-svn-id: svn://10.0.0.236/trunk@128120 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:34:15 +00:00
rdayal%netscape.com
5d9d711b15 Removing obsolete files.
THESE FILES ARE NOT PART OF BUILD.
sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@128119 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:32:13 +00:00
nicolson%netscape.com
c549de7d2c remove old SSLClient and SSLServer sample programs. They are not up-to-date.
git-svn-id: svn://10.0.0.236/trunk@128117 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:31:20 +00:00
rdayal%netscape.com
d0b9865c9e Removing obsolete file.
THIS FILE IS NOT PART OF BUILD.
sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@128116 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:31:18 +00:00
nicolson%netscape.com
b246929bb5 syntax error wasn't caught because of bug in build script.
git-svn-id: svn://10.0.0.236/trunk@128114 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 17:22:02 +00:00
relyea%netscape.com
2568cdbc41 Fix URL check. we should check crl->url for null, not the uninitialized variable url.
git-svn-id: svn://10.0.0.236/trunk@128108 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 16:27:49 +00:00
mostafah%oeone.com
c42a6191b8 Added addCalendars() function to accept an array of servers
git-svn-id: svn://10.0.0.236/trunk@128105 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 16:12:47 +00:00
mikep%oeone.com
241f41cb73 Sort of fixing bug 164497, show formatted date in preferences section.
git-svn-id: svn://10.0.0.236/trunk@128098 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:51:15 +00:00
mikep%oeone.com
34bf507ab5 Many small bug fixes, mostly with preferences.
git-svn-id: svn://10.0.0.236/trunk@128094 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:20:53 +00:00
mikep%oeone.com
f530ad31b5 Fixing problem with not importing tasks.
git-svn-id: svn://10.0.0.236/trunk@128093 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:20:27 +00:00
mikep%oeone.com
b3bf41b751 Initial adding of publish file.
git-svn-id: svn://10.0.0.236/trunk@128092 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:19:51 +00:00
mikep%oeone.com
a61dc6bc1c Removing persist hacks.
git-svn-id: svn://10.0.0.236/trunk@128091 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:19:06 +00:00
mikep%oeone.com
749407afaa Fixing problems with splitters not remembering their position.
git-svn-id: svn://10.0.0.236/trunk@128090 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:15:52 +00:00
mikep%oeone.com
270ec1b82a Fixing problem with crashing if prefs not set.
git-svn-id: svn://10.0.0.236/trunk@128089 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 15:15:25 +00:00
rods%netscape.com
a3c9b676cf checks visibility on IFrames so it knows whether it needs to print/dislpay them
Bug 158195 sr=jst r=dcone


git-svn-id: svn://10.0.0.236/trunk@128088 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 14:37:59 +00:00
kairo%kairo.at
a3462a35e4 bug 164496 - Language switching broken (again), regression of 144740, r=timeless, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@128087 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 11:02:28 +00:00
bryner%netscape.com
b2c22e0247 Fix GetProductDirectory. Add handling for the app registry so our new profile location actually works. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@128086 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 10:18:41 +00:00
bryner%netscape.com
65d04787ad Checkpointing changes, this won't build for everyone yet. Move the $(PROGRAM) rule below rules.mk so we don't skip the rules that install the binary to dist/bin!
git-svn-id: svn://10.0.0.236/trunk@128085 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 10:15:02 +00:00
igor%mir2.org
963093912e Fixing a bug reported by Steven Beal where Interpreter.icodeTokenLength() and Interpreter.dumpICode() used wrong size for REGEXP opcode arguments.
git-svn-id: svn://10.0.0.236/trunk@128084 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 09:11:54 +00:00
bryner%netscape.com
a85bd46841 Ignore copied sources.
git-svn-id: svn://10.0.0.236/trunk@128083 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 09:05:19 +00:00
bryner%netscape.com
d15db71205 Ignore copied source files.
git-svn-id: svn://10.0.0.236/trunk@128082 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 09:02:31 +00:00
igor%mir2.org
38368627ed Renaming the TokenStream.OBJECT constant to TokenStream.REGEXP for better reflection of semantics.
git-svn-id: svn://10.0.0.236/trunk@128081 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 08:06:27 +00:00
bbaetz%student.usyd.edu.au
71381b40ed Bug 76923 - Don't |use diagnostics| (its really expensive at startup time)
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128080 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 06:17:26 +00:00
kaie%netscape.com
26ce9e916a b=106988 Switching sender should also change the sign/encrypt setting
r=javi sr=mscott


git-svn-id: svn://10.0.0.236/trunk@128079 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 06:13:17 +00:00
bbaetz%student.usyd.edu.au
0ef173d294 Bug 164470 - mass reassign changes UNCONFIRMED->NEW
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128078 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 05:51:00 +00:00
bbaetz%student.usyd.edu.au
2aced73b10 Bug 164566 - Param and UserInGroup are not defined in Bugzilla::Search
r= joel x2


git-svn-id: svn://10.0.0.236/trunk@128077 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 05:11:57 +00:00
mkaply%us.ibm.com
f188a022f2 Continuing Os/2 wizard work
git-svn-id: svn://10.0.0.236/trunk@128076 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 04:44:24 +00:00
mkaply%us.ibm.com
877c4e81ce Not part of build yet - continuing OS/2 wizard work
git-svn-id: svn://10.0.0.236/trunk@128075 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 04:43:35 +00:00
mkaply%us.ibm.com
00ca0249a3 Not part of build - continuing OS/2 wizard work
git-svn-id: svn://10.0.0.236/trunk@128074 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 04:42:50 +00:00
mkaply%us.ibm.com
02c112d241 Not part of build - OS/2 install work
git-svn-id: svn://10.0.0.236/trunk@128073 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 04:42:03 +00:00
bolian.yin%sun.com
1dfe8e938b Bug157298, make install does not work in mozilla/widget/src/gtk2/mai, patch by mpeseng@tin.it, r=kyle. This is not for the Default build.
git-svn-id: svn://10.0.0.236/trunk@128068 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-26 02:10:10 +00:00
bugreport%peshkin.net
5d72e76ff4 Bug 163494 - runtests.sh needs a switch to include optional modules
Tests now detect optional modules and only exclude optional files
if optional module dependencies are not met.
Also major indent cleanup
r=timeless


git-svn-id: svn://10.0.0.236/trunk@128066 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 17:19:03 +00:00
bugreport%peshkin.net
94053d5f15 Bug 164464 - Importxml will fail if versioncache needs update
r=bbatez, timeless


git-svn-id: svn://10.0.0.236/trunk@128064 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 16:38:13 +00:00
bbaetz%student.usyd.edu.au
2706b60579 Bug 164465 - importxml.pl fails
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@128063 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 12:32:49 +00:00
bryner%netscape.com
c1b6c643ee Ignore copied sources.
git-svn-id: svn://10.0.0.236/trunk@128062 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 09:33:50 +00:00
bryner%netscape.com
bdd1d0c322 Un-fork everything except nsAppRunner.cpp from xpfe/bootstrap. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@128061 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 09:31:39 +00:00
alexsavulov%netscape.com
df9a96a787 regression test files update to match the gmake directory tree
not affecting the build


git-svn-id: svn://10.0.0.236/trunk@128060 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 06:44:45 +00:00
bryner%netscape.com
ec23e29028 Sync with xpfe/bootstrap to fix phoenix bustage (from bug 163918).
git-svn-id: svn://10.0.0.236/trunk@128059 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 05:57:46 +00:00
bbaetz%student.usyd.edu.au
c4c07feb0a Bug 142072 - Don't free a loginfo structure which we don't own (nspr does)
r=wtc, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@128058 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 05:55:50 +00:00
jpierre%netscape.com
7213b7013f Fix for 164471 - Hide passwords in NSS command-line tools on OS/2
git-svn-id: svn://10.0.0.236/trunk@128056 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 03:00:34 +00:00
blakeross%telocity.com
76e3099e65 fix forward
git-svn-id: svn://10.0.0.236/trunk@128055 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 02:52:03 +00:00
blakeross%telocity.com
a48a984583 Fixing back/forward context menu.
git-svn-id: svn://10.0.0.236/trunk@128054 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 02:40:49 +00:00
blakeross%telocity.com
09b11ea6be Removing unnecessary default status.
git-svn-id: svn://10.0.0.236/trunk@128053 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 02:39:45 +00:00
blakeross%telocity.com
c7217f554c Statusbar says Document: Done if homepage is about:blank
git-svn-id: svn://10.0.0.236/trunk@128052 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-25 02:37:10 +00:00
brendan%mozilla.org
3443a81261 One-character fix to a comment, use modulus with %, not mask.
git-svn-id: svn://10.0.0.236/trunk@128051 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 22:14:15 +00:00
danm%netscape.com
a47dd72a42 removing parameter to nsINativeAppSupport::OnLastWindowClosing. Also bringing up to date with nsNativeAppSupportWin.cpp rev 1.82 (see bug 163718). bug 163918 r=brendan,law
git-svn-id: svn://10.0.0.236/trunk@128050 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 18:59:04 +00:00
danm%netscape.com
e69137949f removing parameter to nsINativeAppSupport::OnLastWindowClosing. bug 163918 r=brendan,law
git-svn-id: svn://10.0.0.236/trunk@128049 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 18:58:52 +00:00
danm%netscape.com
8993ffb477 update for rev 1.26 of nsIAppShellService.idl: Quit takes a new parameter. bug 163918 r=brendan,bryner
git-svn-id: svn://10.0.0.236/trunk@128048 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 18:58:19 +00:00
danm%netscape.com
bc2d7122ec rearrange Destroy to not confuse WindowWatcher. bug 163918 r=brendan,bryner
git-svn-id: svn://10.0.0.236/trunk@128047 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 18:57:55 +00:00
danm%netscape.com
03f27af813 move Quit code from UnregisterWindow into Quit. bug 163918 r=brendan,bryner
git-svn-id: svn://10.0.0.236/trunk@128046 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 18:57:45 +00:00
roc+%cs.cmu.edu
380c23ee4b Fix probable Mac build bustage
git-svn-id: svn://10.0.0.236/trunk@128045 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 15:07:24 +00:00
bugreport%peshkin.net
a203208d86 Fixed merge problem from checkin of 143826 - No bug
git-svn-id: svn://10.0.0.236/trunk@128044 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 14:51:27 +00:00
bugreport%peshkin.net
5220874f74 Bug 143286 - Adding 2 new files missing from repository
git-svn-id: svn://10.0.0.236/trunk@128042 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 14:43:49 +00:00
roc+%cs.cmu.edu
c6bb83f66a Bug 160936. Add type nsChangeHint for style hints. Make it a set of bits. Make sure an NS_STYLE_HINT_REFLOW always also does a repaint of the frame. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@128041 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 14:41:28 +00:00
jpierre%netscape.com
ddecbb9b5a Correctly identify tty on OS/2 - fix for 164420
git-svn-id: svn://10.0.0.236/trunk@128040 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 13:46:50 +00:00
jpierre%netscape.com
a10778e6db Fix for 164403 - make console input work in NSS tools on OS/2
git-svn-id: svn://10.0.0.236/trunk@128039 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 11:51:42 +00:00
rogerl%netscape.com
c3b18c3077 Disneyland progress.
git-svn-id: svn://10.0.0.236/trunk@128034 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 04:10:42 +00:00
myk%mozilla.org
17a72174c7 Changed the password field on the "create document" page to type="password" (was type="text") so passwords get obscured.
git-svn-id: svn://10.0.0.236/trunk@128033 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 03:01:35 +00:00
myk%mozilla.org
f2435d07d5 Fix for bug 142829: Allow users to create files. Also whacks the tree heavily with improvements to error handling (differentiating between user and code errors),
reorganization of the Perl code, and additional instructions for setup in the README file and the sample.conf file.


git-svn-id: svn://10.0.0.236/trunk@128032 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 01:56:50 +00:00
bryner%netscape.com
a7ab68fe64 Oops, change unixcharset.properties to maccharset.properties. r/sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@128027 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 01:26:38 +00:00
curt%netscape.com
f4bfb77a70 Used wrong comment symbol.
(Not yet in build.)


git-svn-id: svn://10.0.0.236/trunk@128025 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 01:20:18 +00:00
curt%netscape.com
6d6e23381f Making a wrong assumption about the existence of the installer directory.
(Not yet in build.)


git-svn-id: svn://10.0.0.236/trunk@128024 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 01:19:48 +00:00
jpierre%netscape.com
20841a8843 Convert slow SEC_ASN1DecodeItem calls to SEC_QuickDERDecodeItem where possible. Performance improvement. Bug #160805 . r=relyea
git-svn-id: svn://10.0.0.236/trunk@128023 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:52:47 +00:00
curt%netscape.com
9deede746b Not yet in the build.
git-svn-id: svn://10.0.0.236/trunk@128022 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:51:02 +00:00
bbaetz%student.usyd.edu.au
ddf6b1b807 Bug 164197 - ftp leaks control channel data. Also fixes an ABR in the
indexed-to-html converter
r=deveditz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@128021 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:48:58 +00:00
curt%netscape.com
2ec5eb4d20 Oops. That was a mistake. Backing out last checkin
(Still not in the build yet.)


git-svn-id: svn://10.0.0.236/trunk@128020 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:48:52 +00:00
mkaply%us.ibm.com
6ae8d4439e Not part of build
Continuing OS/2 wizard work


git-svn-id: svn://10.0.0.236/trunk@128019 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:45:32 +00:00
despotdaemon%netscape.com
fe83761982 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128018 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:11:27 +00:00
despotdaemon%netscape.com
9c6e072a50 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128016 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-24 00:08:09 +00:00
despotdaemon%netscape.com
314daf22a0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128015 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:52:04 +00:00
despotdaemon%netscape.com
769c0dd1fe Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128013 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:45:59 +00:00
despotdaemon%netscape.com
7c0741ca93 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128012 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:44:03 +00:00
despotdaemon%netscape.com
0ce06c5ea1 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128011 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:21:20 +00:00
despotdaemon%netscape.com
4246921a11 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128010 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:20:38 +00:00
nicolson%netscape.com
5bc5c6a1f6 A FilterInputStream to decode base64-encoded data.
git-svn-id: svn://10.0.0.236/trunk@128008 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:17:00 +00:00
despotdaemon%netscape.com
9597abb3da Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128006 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:14:04 +00:00
leaf%mozilla.org
ba79b248dc Automated update
git-svn-id: svn://10.0.0.236/trunk@128004 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:09:56 +00:00
smontagu%netscape.com
4d1417980b Fix build bustage with --enable-ctl by moving files from extensions/ctl to intl/ctl. Bug 133212. Author=Roland.Mainz@informatik.med.uni-giessen.de; Makefile changes r=cls. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@128003 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:09:22 +00:00
despotdaemon%netscape.com
1d44a5f285 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@128002 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 23:05:25 +00:00
pschwartau%netscape.com
d91d81555f Removing this testcase from skip list; I have adapted it to run in Rhino.
git-svn-id: svn://10.0.0.236/trunk@128000 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 22:52:20 +00:00
pschwartau%netscape.com
64da969ea3 Editing comments.
git-svn-id: svn://10.0.0.236/trunk@127998 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 22:48:38 +00:00
pschwartau%netscape.com
8893553e7c Rhino can't seem to handle the largest array, so we'll skip this case in Rhino -
git-svn-id: svn://10.0.0.236/trunk@127997 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 22:38:45 +00:00
pschwartau%netscape.com
ff385b73aa Re-ordering the sections to try the largest possible array first.
git-svn-id: svn://10.0.0.236/trunk@127996 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 22:12:12 +00:00
pschwartau%netscape.com
7355d5b03a Editing comments in the test.
git-svn-id: svn://10.0.0.236/trunk@127995 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:56:21 +00:00
pschwartau%netscape.com
fda8728866 Removing two extraneous lines.
git-svn-id: svn://10.0.0.236/trunk@127994 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:47:05 +00:00
shanjian%netscape.com
0e38ae2644 #161328 CJK string is not breakable before joined frames
This patch include 3 changes:
 1) check the breaking possibility  in between for 2 connection pieces.
 2) Make word breakable after the second word, priviously it only applies to western.
 3) always call RevertSpacesToNBSP before call line breaker. This is necessary because the
    change in 1.
r=boris zbarsky, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@127993 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:43:42 +00:00
pschwartau%netscape.com
7dd3e9a3b6 Adapted the test to run in Rhino.
git-svn-id: svn://10.0.0.236/trunk@127992 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:42:32 +00:00
mkaply%us.ibm.com
00424ac330 #163529
r=pedemont, sr=dveditz
If a file is before the first component in packages-***, copy it in the flat case
This allows for files like installed-chrome.txt which we want to package in flat, but not in component


git-svn-id: svn://10.0.0.236/trunk@127990 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:36:52 +00:00
mkaply%us.ibm.com
5717302a48 #135508
r=pedemont, sr=dveditz
Remove 99.9% OS/2 stuff from Packager.pm - we're going to take the Unix path


git-svn-id: svn://10.0.0.236/trunk@127989 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:25:43 +00:00
mkaply%us.ibm.com
08ab0d399a #161997
r=dprice, sr=dveditz
Get LIBXPNET working on OS/2


git-svn-id: svn://10.0.0.236/trunk@127988 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:18:22 +00:00
aaronl%netscape.com
2c397c8854 Bug 164295. [typeaheadfind] Linker Error with Sun Forte Compile against gkgfx
git-svn-id: svn://10.0.0.236/trunk@127987 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:16:50 +00:00
naving%netscape.com
035c494071 no bug r/sr=bienvenu removing some lines not needed
git-svn-id: svn://10.0.0.236/trunk@127986 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 21:02:36 +00:00
shanjian%netscape.com
56b7107188 #162949 Line wrapping: suspension points are placed at the beginning of a new line.
change the class of character u+2024, u+2025, u+2026 so that they will not be
placed in the beginning of the line.
p=ftang, r=shanjian, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@127985 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:58:43 +00:00
curt%netscape.com
c536719fc7 Not (yet) part of build.
git-svn-id: svn://10.0.0.236/trunk@127983 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:15:52 +00:00
curt%netscape.com
8f7295c5a3 Updating from MRE to MFCEmbed
(Not yet part of the build)


git-svn-id: svn://10.0.0.236/trunk@127982 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:13:10 +00:00
curt%netscape.com
edf19bd57d Not (yet) part of the build.
git-svn-id: svn://10.0.0.236/trunk@127981 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:09:51 +00:00
pinkerton%netscape.com
3126bf3c34 make toplevel widget the size of teh grayRgn to prevent region coordinate overflow problems and shearing when scrolling (r=sdagley/sr=sfraser) bug 162885.
git-svn-id: svn://10.0.0.236/trunk@127980 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:07:07 +00:00
pinkerton%netscape.com
e31f2ae5fd fix shearing during scrolling in embedding apps on 10.2 (r=ccarlen/sr=sfraser) bug 162885
git-svn-id: svn://10.0.0.236/trunk@127979 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 20:00:00 +00:00
mikep%oeone.com
7c8f11ee97 Fixing bug 164287.
git-svn-id: svn://10.0.0.236/trunk@127976 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 19:24:52 +00:00
mikep%oeone.com
7f86cdecb3 Fixing context menu for bug 164286.
git-svn-id: svn://10.0.0.236/trunk@127975 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 19:23:24 +00:00
mikep%oeone.com
59d5fc2d73 Fixing bug 160378.
git-svn-id: svn://10.0.0.236/trunk@127974 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:58:58 +00:00
wtc%netscape.com
109532d7f0 Removed CERT_VerifyCertChain from the export list. Use
CERT_VerifyCACertForUsage instead.


git-svn-id: svn://10.0.0.236/trunk@127973 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:58:52 +00:00
timeless%mac.com
2721bf247a Bug 159771 Some colors in classic theme are weird
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard (ports)


git-svn-id: svn://10.0.0.236/trunk@127972 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:45:38 +00:00
bnesse%netscape.com
8851585539 Backing myself out to see if this caused btek to go orange.
git-svn-id: svn://10.0.0.236/trunk@127970 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:36:03 +00:00
rangansen%netscape.com
7ccd1c4293 Removing c++ style comment
git-svn-id: svn://10.0.0.236/trunk@127968 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:31:22 +00:00
bienvenu%netscape.com
7084c0da8f fix msg size for newly downloaded imap headers r/sr=sspitzer, 164281
git-svn-id: svn://10.0.0.236/trunk@127967 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:30:08 +00:00
jfrancis%netscape.com
62d2e71794 fix for 129763: edit this page and delete Personals section causes stray bullet
r=glazman; sr=kin


git-svn-id: svn://10.0.0.236/trunk@127966 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:14:30 +00:00
mikep%oeone.com
7bb6f8cf9e Fixing bug 157269./
git-svn-id: svn://10.0.0.236/trunk@127965 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:13:04 +00:00
jfrancis%netscape.com
531d4ce862 fixes for:
159924:  table split up when applying paragraph style to select all
161723: backspace through list item when at beginning of document
r=glazman; sr=kin


git-svn-id: svn://10.0.0.236/trunk@127964 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:11:25 +00:00
jfrancis%netscape.com
144e308344 fix for 149320: crash if invalid setStart is set on a Range
r=glazman; sr=kin


git-svn-id: svn://10.0.0.236/trunk@127963 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:02:45 +00:00
rangansen%netscape.com
7042708f76 Making sure VerifyCACertForUsage checks CRL if usage is statusResponder. Changes reviewed by Bob Relyea
git-svn-id: svn://10.0.0.236/trunk@127962 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 18:02:10 +00:00
jfrancis%netscape.com
c5067db88b fix for 159392: Composer add <br> to end everytime it opens a file.
r=brade; sr=kin


git-svn-id: svn://10.0.0.236/trunk@127961 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 17:57:51 +00:00
bnesse%netscape.com
dae532403b Fix for bug 164190. nsSafeSaveFile mistreats nsLocalFile, deleting files under one. Patch by sfraser, r=ccarlen, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@127957 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 17:44:47 +00:00
mikep%oeone.com
e336223fa6 Fixing bug 158510, patch number 96466.
git-svn-id: svn://10.0.0.236/trunk@127956 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 17:14:36 +00:00
mikep%oeone.com
1bbadbfbc5 Fixing bug 164127. As well, this adds in the ability to download calendar data from remote locations.
git-svn-id: svn://10.0.0.236/trunk@127954 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 16:33:29 +00:00
bienvenu%netscape.com
0c4031ec0f fix regression in imap undo so that it downloads undeleted header immediately r/sr =sspitzer 164144
git-svn-id: svn://10.0.0.236/trunk@127947 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 14:07:04 +00:00
rods%netscape.com
c89babb5a0 fixing a couple of printing tests
git-svn-id: svn://10.0.0.236/trunk@127946 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 14:00:40 +00:00
av%netscape.com
9e8093038f Bug 92005 -- Acrobat Copy button doesn't work on windows, r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@127943 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 12:01:22 +00:00
kairo%kairo.at
78d5803937 Bug 131825 downloadmanager.ent file name should be changed to downloadmanager.dtd (localization issue), part 2: cvs removing downloadmanager.ent, r=timeless sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@127942 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 11:47:33 +00:00
av%netscape.com
cf2ed91ab7 Fixing bug 48972 -- adding GetOwner interface method to plugin instance peer, r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@127940 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 11:23:49 +00:00
kaie%netscape.com
a3c72acc3c b=157927 Fix memory leaks in nsNSSCertificate.cpp, fix some compiler warnings, do some cleanup.
r=javi sr=jag


git-svn-id: svn://10.0.0.236/trunk@127939 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:40:27 +00:00
bryner%netscape.com
68cf1731aa Ignore generated Makefiles.
git-svn-id: svn://10.0.0.236/trunk@127938 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:30:06 +00:00
bryner%netscape.com
4218d72b79 Ignore UniversalChardetTest binary.
git-svn-id: svn://10.0.0.236/trunk@127937 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:28:28 +00:00
kaie%netscape.com
2a532c936b b=124624 [RFE]Wording change for SSL, Privacy Pref
r=cotter sr=jag


git-svn-id: svn://10.0.0.236/trunk@127936 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:28:07 +00:00
kaie%netscape.com
e4fb4762f3 b=154634 if you collapse the message pane, the security status can be misleading
r=ducarroz sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127935 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:25:32 +00:00
bryner%netscape.com
b91b9da8dd Ignore ParseCSS binary.
git-svn-id: svn://10.0.0.236/trunk@127934 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:23:19 +00:00
kaie%netscape.com
a2620adc1b b=156343 [LDAP] address lookup appears to be case sensitive when dir server lookup is enabled
r=javi sr=jag


git-svn-id: svn://10.0.0.236/trunk@127933 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:20:41 +00:00
kaie%netscape.com
932c2222a2 b=100129 UI: extra space in "Security Error: Domain Name Mismatch" title
r=kaie sr=jag


git-svn-id: svn://10.0.0.236/trunk@127932 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:13:47 +00:00
kaie%netscape.com
4d6d181451 b=142147 Viewing signed message crashes Mozilla, if I did not log-in into the FIPS module
r=javi sr=bryner


git-svn-id: svn://10.0.0.236/trunk@127931 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:10:17 +00:00
kaie%netscape.com
43e5786682 b=106587 FIPS enabled mode fails when Master PWD is not set.
r=javi/cotter sr=shaver


git-svn-id: svn://10.0.0.236/trunk@127930 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 10:07:47 +00:00
glazman%netscape.com
ff72c25261 Composer was unable to set upper-roman style to a list because it was erroneously lowercasing the html TYPE attribute; b=145311, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@127929 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 09:24:47 +00:00
brendan%mozilla.org
2a4866c57c My tweaks on top of a patch from Mark Hawlitzeck <mhawlitzeck1@earthlink.net> to avoid last-ditch gc failure (162779, sr=jband/shaver).
git-svn-id: svn://10.0.0.236/trunk@127928 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 07:56:11 +00:00
relyea%netscape.com
5b7f9aba42 Fix mixing different free calls. PR_smprintf requires PR_smprintf_free()
git-svn-id: svn://10.0.0.236/trunk@127920 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 02:12:05 +00:00
relyea%netscape.com
8f6655a693 handle attribute types more intellegently. Don't fetch the object for invalid attributes if we don't have to.
git-svn-id: svn://10.0.0.236/trunk@127919 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 02:11:03 +00:00
timeless%mac.com
314b8431c9 Bug 72488 [beos] Closing Window with open menu crashes Mozilla [@nsMenuPopupFrame::GetWidget]
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard (ports)


git-svn-id: svn://10.0.0.236/trunk@127915 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 01:46:53 +00:00
wtc%netscape.com
3f7c990b78 1. Checked in the fix for bug 157241 to enable debugging with gcc/gdb on
Linux with compiler optimizations on.
2. Cleaned up the fix for bug 137059. Replaced MOZ_DEBUG_ENABLE_DEFS by
DEFINES.
3. Backed out portions of the fix for bug 161461 that broke the build under
MKS toolkit.
4. Merged the fix for bug 141834 (using cygwin-wrapper) on the tip.


git-svn-id: svn://10.0.0.236/trunk@127914 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 01:11:26 +00:00
wtc%netscape.com
b3a46ff143 Added cygwin-wrapper to the tip. Bug 141834.
git-svn-id: svn://10.0.0.236/trunk@127913 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 01:03:57 +00:00
mcafee%netscape.com
b9b0a9e136 Adding SeaMonkeyAll to Chimera module. a=smfr
git-svn-id: svn://10.0.0.236/trunk@127911 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 00:42:39 +00:00
wtc%netscape.com
e4d838f1cb Added coreconf config file for Solaris 10 Intel.
git-svn-id: svn://10.0.0.236/trunk@127909 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 00:33:48 +00:00
wtc%netscape.com
07f1f35d31 Bug 164161: made PR_ResumeSet and PR_ResumeTest static and remove the
unused function PR_SuspendAllSuspended. Use the pt_ prefix for static
functions.


git-svn-id: svn://10.0.0.236/trunk@127908 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-23 00:04:19 +00:00
alecf%netscape.com
618b988299 oops, add nsTSDNotifier
git-svn-id: svn://10.0.0.236/trunk@127907 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 23:41:17 +00:00
shrutiv%netscape.com
c4d4077502 Fix for bugscape bug 19201: Mismatch btw button label and its reference in
instruction


git-svn-id: svn://10.0.0.236/trunk@127905 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 23:12:29 +00:00
alecf%netscape.com
5ac73cc23c oops, reverse the order of the build directories so that txtsvc is built before editor
fixes bustage


git-svn-id: svn://10.0.0.236/trunk@127903 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 23:04:19 +00:00
chak%netscape.com
115d1eadb1 Fix for #149208 - NS_InitEmbedding() uncoditionally calls AutoRegister
[When this fix was originally checked in, it broke registration of
components in the MRE dir. This patch fixes it]
r=darin, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@127902 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 23:04:04 +00:00
serge%netscape.com
2fdf7840d5 fix for 163228 Trunk startup crashes [@ nsPluginHostImpl::WritePluginInfo] r=av, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@127901 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:59:43 +00:00
morse%netscape.com
7a56eeda82 bug 146271, password manager contains undeletable entries, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127900 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:58:16 +00:00
leaf%mozilla.org
584aa6bb6b Automated update
git-svn-id: svn://10.0.0.236/trunk@127899 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:55:58 +00:00
dmose%netscape.com
80b3bbc5f9 Make --enable-optimize --enable-debug builds easier to debug on linux (bug 157241), r=seawood@netscpae.com, mcs@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127898 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:52:44 +00:00
dmose%netscape.com
dd4cf6a8b0 Make --enable-optimize --enable-debug builds easier to debug on linux (bug 157241), r=seawood@netscpae.com, shaver@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@127896 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:40:30 +00:00
mkaply%us.ibm.com
caf6c9793c #154657
r=morse, sr=alecf
Remove wallet samples from the build - point to the ones on mozilla.org


git-svn-id: svn://10.0.0.236/trunk@127894 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:36:44 +00:00
aaronl%netscape.com
c3da0d3ca7 Bug 135485: Active Accessibility: should we cache accessible children of an accessible node? r=jgaunt. sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127893 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:34:59 +00:00
aaronl%netscape.com
de0f035361 Bug 163812: incorrect caching in accessibility leads to null ptr deref. r=jgaunt, sr=alecf. Bug 163815: Accessibility should not use nsCOMPtr with frames. r=jgaunt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127891 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:32:35 +00:00
mkaply%us.ibm.com
e051f15fc4 #154657
r=morse, sr=alecf
Remove wallet samples from the build - point to the ones on mozilla.org


git-svn-id: svn://10.0.0.236/trunk@127890 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:30:59 +00:00
aaronl%netscape.com
af5aad71f5 Bug 163905. [typeaheadfind] F3 hangs browser after selection returns to normal color. r=kyle, sr=alecf. Bug 163913: [typeaheadfind] status messages no longer displayed. r=kyle, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127889 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:28:44 +00:00
morse%netscape.com
f87d5da59b bug 129238, login entered in form even if cancel is pressed, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127888 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:26:04 +00:00
alecf%netscape.com
00371c3623 embedding side of txtsvc removal for bug 157567 - remove dll references from embedding packages
r=akkana, sr=kin


git-svn-id: svn://10.0.0.236/trunk@127887 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:16:36 +00:00
alecf%netscape.com
213339e021 for bug 157567
combine txtsvc into libeditor - no need for seperate dlls
r=akkana, sr=kin


git-svn-id: svn://10.0.0.236/trunk@127885 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:08:36 +00:00
ducarroz%netscape.com
01395948ea Fix for bug 162440. Add 2 new attributes to nsIMsgAttachmentHandler to allow to set the charset as well an extra parameter for the content-type header. R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127884 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:08:04 +00:00
mkaply%us.ibm.com
a3b4751f29 #164122
r=mkaply, sr=blizzard
not part of build - OS/2 only - add OS/2 specific underpinnings for webshell/tests/viewer


git-svn-id: svn://10.0.0.236/trunk@127883 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:03:52 +00:00
alecf%netscape.com
ed1cbc7584 for bug 157567
combine txtsvc and editor into one dll
r=akkana, sr=kin


git-svn-id: svn://10.0.0.236/trunk@127882 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:02:32 +00:00
timeless%mac.com
5213574b04 Bug 72488 [beos] Closing Window with open menu crashes Mozilla [@nsMenuPopupFrame::GetWidget]
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard (ports)


git-svn-id: svn://10.0.0.236/trunk@127881 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:01:53 +00:00
timeless%mac.com
c299dcb57d Bug 131846 warnings in test page load
r=jesup sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@127880 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:01:50 +00:00
timeless%mac.com
7bd0911051 Bug 131825 downloadmanager.ent file name should be changed to downloadmanager.dtd (localization issue)
patch by Marek.Wawoczny@GmbH.rubikon.pl r=timeless sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@127879 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 22:01:43 +00:00
anthonyd%netscape.com
fab47188ca fix for bug#163738
removal of ms4xPluginStream since it is no longer used in build.
r=peterl
sr=beard


git-svn-id: svn://10.0.0.236/trunk@127878 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 21:58:29 +00:00
bryner%netscape.com
4412e7f461 Go ahead and build toolkit/xre for phoenix (not used yet). Not part of the normal build.
git-svn-id: svn://10.0.0.236/trunk@127871 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 20:28:34 +00:00
mikep%oeone.com
317f51f87a Adding in files for multiple calendar files support.
git-svn-id: svn://10.0.0.236/trunk@127870 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 20:15:15 +00:00
av%netscape.com
c86087a558 Fixing blocker 164066 -- backing out changes for yesterday fix for 48972
git-svn-id: svn://10.0.0.236/trunk@127867 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 18:12:59 +00:00
mostafah%oeone.com
20a8a8a7d5 Added ability to add events to calendars not yet added to icalcontainer
git-svn-id: svn://10.0.0.236/trunk@127866 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 18:09:55 +00:00
wtc%netscape.com
de732d34dc Bug 164035: checked in a small code optimization suggested by
J”rg Brunsmann <joerg_brunsmann@yahoo.de>. Use the local variable that
has the same value.


git-svn-id: svn://10.0.0.236/trunk@127865 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 18:05:32 +00:00
bienvenu%netscape.com
fdb189a1b8 fix mem leak introduced by blocker fix, a=loan
git-svn-id: svn://10.0.0.236/trunk@127863 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 17:02:21 +00:00
bienvenu%netscape.com
4f5fb2809e attempted fix for smoketest blocker in imap header downloading 164047 - backout part of change for imap hdr downloading, so that we go through the line termination adjustment code we used to
git-svn-id: svn://10.0.0.236/trunk@127862 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 16:45:17 +00:00
mikep%oeone.com
4e47368b32 Adding in files for new multiple calendar.
git-svn-id: svn://10.0.0.236/trunk@127861 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 16:14:44 +00:00
mostafah%oeone.com
4459f0f079 Changed code for multi-calendar support
git-svn-id: svn://10.0.0.236/trunk@127857 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 14:44:01 +00:00
mikep%oeone.com
e5be1d2cda Start of allowing multiple calendars.
git-svn-id: svn://10.0.0.236/trunk@127856 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 14:33:32 +00:00
mikep%oeone.com
1e3fa3730c FIxing skin bugs to match other mozilla apps.
git-svn-id: svn://10.0.0.236/trunk@127855 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 14:32:41 +00:00
peterv%netscape.com
cd2afe8bb1 Fix for bug 163955 (Header cleanup for transformiix). r=sicking, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@127854 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 12:33:45 +00:00
peterv%netscape.com
05ca9a5742 Fix for bug 163955 (Header cleanup for transformiix). r=sicking, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@127853 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 12:22:47 +00:00
pete.zha%sun.com
6441c65e80 wrong format data for text/html type in cut-and-paste [X clipboard]
bug=123389 r=akkana sr=jst patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@127850 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 10:31:32 +00:00
bbaetz%student.usyd.edu.au
a4ef313035 Bug 163570 - Bugzilla::Search missing Date::Format include
patch by jussi@comlink.fi (Jussi Sirpoma), r=bbaetz x2


git-svn-id: svn://10.0.0.236/trunk@127849 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 10:31:24 +00:00
jdunn%netscape.com
0d43bee6f2 fix gdk warnings in non en-us fields (AIX only)
# 157394
submitted by pkw@austin.ibm.com
r=yokoyama@netscape.com
sr=kin@netscape.com


git-svn-id: svn://10.0.0.236/trunk@127848 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 09:50:22 +00:00
jkeiser%netscape.com
8e92071d86 Fix file event.originalTarget problem (bug 163598), r=joki@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127846 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 06:10:56 +00:00
sfraser%netscape.com
b646253272 Fix bug 161856 (news tabs cannot receive drags) and 162001 (put focus in the url bar for new blank tabs).
git-svn-id: svn://10.0.0.236/trunk@127843 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 06:09:56 +00:00
sfraser%netscape.com
66df8f1416 Fix bug 161856 (news tabs cannot receive drags) and 162001 (put focus in the url bar for new blank tabs).
git-svn-id: svn://10.0.0.236/trunk@127841 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 06:03:44 +00:00
sfraser%netscape.com
3bc0bf4bf6 Minor variable rename.
git-svn-id: svn://10.0.0.236/trunk@127840 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 05:57:12 +00:00
stephend%netscape.com
0b564a43f5 Bug 147440. Properly enable and disable textfields in the Account Manager. Patch by Stephen Walker <walk84@yahoo.com>. r=bhuvan@netscape.com, sr=sspitzer@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127839 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 05:47:54 +00:00
alecf%netscape.com
3daa201c05 fix the static build for bug 163217
use the shared support library instead of the ucvmath-specific library to build the converters
patch by keeda@hotpop.com, mac work by bnesse@netscape.com
sr=alecf, r=cls


git-svn-id: svn://10.0.0.236/trunk@127833 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 04:58:57 +00:00
depstein%netscape.com
e33cd99c8c Added preliminary Editor Embedding test cases. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@127832 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 04:49:42 +00:00
aaronl%netscape.com
c9a854382f Bug 133155. Site Navigation menu doesn't have access keys. Patch from gregvalure@wanderlife.com. r=aaronl, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127831 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 04:16:12 +00:00
bolian.yin%sun.com
245ef172fa Bug 163850, focusing on text input field will cause mozilla hangs. This patch is not in the current Default Build of Mozilla.
git-svn-id: svn://10.0.0.236/trunk@127830 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 03:22:09 +00:00
bolian.yin%sun.com
9ef7c01f0d Bug 154327, cache newly created objects in MAI. This is for the Mozilla Accessiblity on Unix/Linux. It will not be included in the Default build of Mozilla.
git-svn-id: svn://10.0.0.236/trunk@127829 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 02:52:04 +00:00
jkeiser%netscape.com
041c0f67e4 Make clicking button outside of form not crash (bug 163327), r=alexsavulov@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127828 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 02:49:36 +00:00
jkeiser%netscape.com
01aaff5895 Make frameborder=0 work again (bug 147883), patch by mats.palmgren@bredband.net, r=jkeiser@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127827 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 02:11:05 +00:00
cltbld%netscape.com
e1edc1988f chimera/projects going away, builds dir is now @ chimera/builds. a=smfr
git-svn-id: svn://10.0.0.236/trunk@127826 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 01:44:57 +00:00
av%netscape.com
34699ce131 Fixing bug 48972 -- adding an interface method GetOwner to plugin instance peer, r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@127825 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 01:31:44 +00:00
av%netscape.com
52172fe2c6 Fixing bug 48972 -- adding an interface method GetOwner to plugin instance peer, r=peterl, sr=beard
git-svn-id: svn://10.0.0.236/trunk@127824 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 01:26:17 +00:00
seawood%netscape.com
48a29745c8 Add mozilla-config.h to .cvsignore
Bug #163929


git-svn-id: svn://10.0.0.236/trunk@127823 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 01:14:34 +00:00
seawood%netscape.com
98892cc3a5 Redirect errors from md5sum detection to /dev/null since md5sum is not available on all platforms.
Bug #163744 r=bryner


git-svn-id: svn://10.0.0.236/trunk@127822 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 01:06:17 +00:00
seawood%netscape.com
ea6d9d12aa Rename config-defs.h to mozilla-config.h. Always generate mozilla-config.h and install it with the rest of the headers so that embeddors can use it instead of duplicating the flags on the commandline.
Bug #163929 r=bryner


git-svn-id: svn://10.0.0.236/trunk@127821 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:50:51 +00:00
relyea%netscape.com
33b165b3a3 Add pubwrap with flags
git-svn-id: svn://10.0.0.236/trunk@127820 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:41:41 +00:00
bryner%netscape.com
1ef11e5552 Bug 159578 - <select> popups within frames are mispositioned. Use the content node's document, instead of the toplevel document, to compute the scroll offset. Also, #define IBMBIDI so that we get the correct vtable for nsIDocument. r=sfraser.
git-svn-id: svn://10.0.0.236/trunk@127818 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:24:33 +00:00
sspitzer%netscape.com
037ab3c32d fix for #163404. when the height of a tree shrinks, we should ensure that the selected row is still visible. this really comes into play in the mailnews thread pane.
when I show the message pane (after it has been collapsed), the selected message can go out of view.

if the size of the thread pane shrinks because I move the splitter or make the whole window smaller, it can happen as well.

Note Outlook Express does the same thing.

r=varga, sr=bryner.  thanks to martinl for the bug report.


git-svn-id: svn://10.0.0.236/trunk@127817 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:21:20 +00:00
curt%netscape.com
3797537d6e Not (yet) part of build.
git-svn-id: svn://10.0.0.236/trunk@127816 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:19:15 +00:00
curt%netscape.com
65f346062f Not (yet) part of build.
git-svn-id: svn://10.0.0.236/trunk@127814 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:08:05 +00:00
dbaron%fas.harvard.edu
3c91110102 Fix XUL style attribute change regression by making |#ifdef MOZ_SVG| code the default, but moved elsewhere. b=163481 r=bbaetz sr=bryner
git-svn-id: svn://10.0.0.236/trunk@127813 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-22 00:01:30 +00:00
sfraser%netscape.com
ab7773e17a Remove bogus parens.
git-svn-id: svn://10.0.0.236/trunk@127812 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:55:43 +00:00
sfraser%netscape.com
ff7f7d4177 Project moved back to this directory, so remove the 'cd projects'.
git-svn-id: svn://10.0.0.236/trunk@127811 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:54:35 +00:00
naving%netscape.com
b0f8344b1c no bug r=ducarroz sr=bienvenu making extractHeaderAddressMailboxes scriptable
git-svn-id: svn://10.0.0.236/trunk@127810 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:25:57 +00:00
sfraser%netscape.com
7ad56dcd9f Removing files which were moved to chimera/resources/localized/English.lproj.
git-svn-id: svn://10.0.0.236/trunk@127809 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:06:55 +00:00
sfraser%netscape.com
d673479ca8 Project has moved back to mozilla/chimera, so that Interface Builder can continue to find images in nib files.
git-svn-id: svn://10.0.0.236/trunk@127808 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:02:16 +00:00
jst%netscape.com
4c6e97ddb3 Checking in rpotts' fix for bug 158128. Plugging javascript: URL related leak found by keeda@hotpop.com. r=peterv@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127807 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 23:01:23 +00:00
sfraser%netscape.com
85574ba41a Removing files which have been moved to other locations under mozilla/chimera
git-svn-id: svn://10.0.0.236/trunk@127806 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:59:47 +00:00
cmanske%netscape.com
dfe103c49e More improvements to Composer List properties dialog. fix by neil@parkwaycc.co.uk, b=47686, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127805 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:56:19 +00:00
bienvenu%netscape.com
4c9a69b9e2 reduce number of xpcom proxy calls during imap hdr download, r=mscott, sr=sspitzer, 162929
git-svn-id: svn://10.0.0.236/trunk@127803 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:55:27 +00:00
sspitzer%netscape.com
2a446659a5 adding new .idl file to the mac build for bienvenu.
git-svn-id: svn://10.0.0.236/trunk@127801 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:37:48 +00:00
sfraser%netscape.com
ca509f5bd5 Update project to use new file paths, and remove obsolete cruft.
git-svn-id: svn://10.0.0.236/trunk@127800 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:35:33 +00:00
varga%netscape.com
e51fb9dee6 Fixing regression bug 163191. Unable to resize columns in Subscribe.
r=timeless, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127799 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:25:52 +00:00
bryner%netscape.com
50a98b4d3d Turn on nsITheme support for gtk (bug 142334). r=blizzard, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@127798 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:06:46 +00:00
ducarroz%netscape.com
bfe0bf4b3e Fix for bug 90728. Replace mailto parameter force-plain-text by html-body. Also, when a mailto url contains an html body, we run the body into the HTML sanitizer to prevent security breach. R=varada, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@127797 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 22:00:34 +00:00
danm%netscape.com
9b41dfa792 mInitialWindow is now a simple boolean; it's no longer a useful window after bug 130719 was fixed. bug 163718 r=brendan,law
git-svn-id: svn://10.0.0.236/trunk@127796 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:57:13 +00:00
varada%netscape.com
7b5586db2f fix for 78060 ; adding smiley to insert menu;r=ducarroz;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127795 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:32:14 +00:00
morse%netscape.com
0095d4ffb6 bug 162331, fix memory leak, r=dbradley, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127794 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:31:50 +00:00
varada%netscape.com
3813b4b5f0 fix for 78060- adding insertmenuoverlay to jar.mn;r=ducarroz;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127793 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:29:00 +00:00
varada%netscape.com
65cc7c5c14 fixes for bugs 160992 : Saving messages with account name;78060- adding smiley menu item to Insert menu;18323-spellcheck is sometimes disabled in body;95789 - selecting right domain name when identity changes;r=ducarroz;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127792 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:28:44 +00:00
varada%netscape.com
68981825c5 fix for 78060;adding insertsmiley menu item in mailcompose insert menu; r=ducarroz;sr=bienvenu;
git-svn-id: svn://10.0.0.236/trunk@127791 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:22:38 +00:00
bienvenu%netscape.com
7ff5d9e462 new interfaces to reduce number of xpcom proxy calls during imap hdr download, not part of build yet, r=mscott, sr=sspitzer, 162929
git-svn-id: svn://10.0.0.236/trunk@127790 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:13:58 +00:00
mkaply%us.ibm.com
b3446da2ab #156402
r=cls
OS/2 only - go back to using nsTransform2D


git-svn-id: svn://10.0.0.236/trunk@127789 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:07:57 +00:00
alecf%netscape.com
a11acba0f4 fix bug 161701 - stop using prefs to save the last page visited
instead, use mork's MetaRow and store it in the kLastVisitedPage token
r=bnesse, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@127788 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 21:00:49 +00:00
alecf%netscape.com
ee7a655cd1 fix bug 160000 - custom.jar support for chrome
look for custom.jar in the chrome directory - if found, always check it first for files before using the rest of the chrome registry. This allows embeddors to override specific chrome URLs with their own files.
sr=hyatt, r=chak


git-svn-id: svn://10.0.0.236/trunk@127787 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 20:58:05 +00:00
mikep%oeone.com
7a9a5193a0 Fixing bug 163925.
git-svn-id: svn://10.0.0.236/trunk@127786 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 20:50:01 +00:00
myk%mozilla.org
7de88b366c Fix for bug 163541: Corrects problem with previous patch that causes primary headers not to appear on some installations.
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@127784 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 19:23:32 +00:00
bryner%netscape.com
0a97481d49 Phoenix files to use generic XUL application library. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@127783 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 19:21:36 +00:00
wtc%netscape.com
e87805b09f Bug 163863: removed duplicate PORT_Memset calls in CERT_KeyFromDERCert.
Thanks to J”rg Brunsmann <joerg_brunsmann@yahoo.de> for the fix.


git-svn-id: svn://10.0.0.236/trunk@127779 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 18:05:20 +00:00
peterv%netscape.com
9b29b9e156 Remove warnings.
git-svn-id: svn://10.0.0.236/trunk@127778 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 14:22:58 +00:00
peterv%netscape.com
dba58a0cf5 Try to fix linking problem on planetoid.
git-svn-id: svn://10.0.0.236/trunk@127777 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 14:18:12 +00:00
peterv%netscape.com
18779fe62f Add back widget to REQUIRES.
git-svn-id: svn://10.0.0.236/trunk@127775 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 13:20:21 +00:00
brade%netscape.com
89c89b1076 use calloc instead of malloc/memset 0; bug 163472; r=Roland.Mainz@informatik.med
.uni-giessen.de, sr=darin


git-svn-id: svn://10.0.0.236/trunk@127774 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 13:17:01 +00:00
mkaply%us.ibm.com
b68ef95b90 Back we go since glazman backed out 117730
git-svn-id: svn://10.0.0.236/trunk@127773 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 13:12:30 +00:00
peterv%netscape.com
50925d8693 Adding back widget to REQUIRES.
git-svn-id: svn://10.0.0.236/trunk@127772 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 13:07:25 +00:00
rods%netscape.com
d214df3027 Move printing code out of the DocumentViewer
add in #defines to turn on and off printing and print preview
Bug 139905 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@127768 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 12:55:24 +00:00
peterv%netscape.com
a5c621c75d Fix for bug 94456 (wrappers need performance increase, support conformance). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127764 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 12:05:50 +00:00
rods%netscape.com
c19d8288b7 Move printing code out of the DocumentViewer
add in #defines to turn on and off printing and print preview
Bug 139905 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@127763 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 12:01:05 +00:00
bryner%netscape.com
0d1ab7c903 New files for generic XUL app support library (fork from xpfe/bootstrap). Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@127761 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 10:25:54 +00:00
pete.zha%sun.com
9202c4a93e Browser crash when close print preview in a page has fixed DIV
bug=163800 r=rods sr=jst


git-svn-id: svn://10.0.0.236/trunk@127758 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 08:56:58 +00:00
peterv%netscape.com
91f77ae3fb Fix for bug 163753 (Code for xsl:comment has a bug). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127756 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 08:46:13 +00:00
cltbld%netscape.com
7bcf386ab9 Changes to match file moves in chimera project. a=smfr
git-svn-id: svn://10.0.0.236/trunk@127754 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 05:43:05 +00:00
seawood%netscape.com
8b5357e580 Install new icons during 'make install'
Thanks to Paul Boven <p.boven@chello.nl> for the patch.
Bug #163237 r=bryner


git-svn-id: svn://10.0.0.236/trunk@127751 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 04:09:14 +00:00
sfraser%netscape.com
b5ef8c7dac Checking in the project changes, which were missed because I copied pink's project around.
git-svn-id: svn://10.0.0.236/trunk@127750 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 03:27:41 +00:00
sfraser%netscape.com
c0c107d985 Undoing my last project changes, which were not supposed to happen here.
git-svn-id: svn://10.0.0.236/trunk@127749 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 02:32:49 +00:00
bryner%netscape.com
fc4799ec73 Add a clean/clobber target.
git-svn-id: svn://10.0.0.236/trunk@127748 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 02:28:22 +00:00
sfraser%netscape.com
916bbbf824 Fix some references to CHHistoryDataSource -> HistoryDataSource.
git-svn-id: svn://10.0.0.236/trunk@127746 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 02:14:52 +00:00
sfraser%netscape.com
1039b9d523 Updating files for the new class names ('CH' for Gecko-embedding wrapper, all other classes have no prefix).
git-svn-id: svn://10.0.0.236/trunk@127745 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 02:06:38 +00:00
bryner%netscape.com
28fcd7f772 Adding a Makefile to automatically invoke pbxbuild with the current tree configuration (debug/opt and static/non-static).
git-svn-id: svn://10.0.0.236/trunk@127744 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 00:56:57 +00:00
mkaply%us.ibm.com
0e2b30000a Switch OS/2 package file to unix format
git-svn-id: svn://10.0.0.236/trunk@127743 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 00:30:08 +00:00
mkaply%us.ibm.com
dfd7758a57 No bug - not part of build
OS/2 Install wizard work


git-svn-id: svn://10.0.0.236/trunk@127742 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 00:27:58 +00:00
mkaply%us.ibm.com
33e0ccd37f No bug - not part of build
Checkin files for OS/2 packaging


git-svn-id: svn://10.0.0.236/trunk@127741 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 00:17:49 +00:00
relyea%netscape.com
9ec384d361 1) fix crl memory.
2) remove several memory copies in the crl.


git-svn-id: svn://10.0.0.236/trunk@127738 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-21 00:09:23 +00:00
cmanske%netscape.com
f40aff5700 Continued work on removing editorShell from Composer code. b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127735 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 23:59:19 +00:00
locka%iol.ie
0af4c341ea NOT PART OF BUILD. Add XPConnect scripting interface with working invoke/setProperty/getProperty
git-svn-id: svn://10.0.0.236/trunk@127734 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 23:36:15 +00:00
despotdaemon%netscape.com
3fcda86947 Pseudo-automatic update of changes made by chanial@noos.fr.
git-svn-id: svn://10.0.0.236/trunk@127732 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:54:38 +00:00
despotdaemon%netscape.com
41a8100e46 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127731 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:48:45 +00:00
mjudge%netscape.com
1b7fd3dbf6 163631 fixing regression caused by last checkin. just undoing to what was there allready. no need to check height on frames. this messed up table row group frames.
git-svn-id: svn://10.0.0.236/trunk@127730 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:42:26 +00:00
leaf%mozilla.org
60d1e68733 Automated update
git-svn-id: svn://10.0.0.236/trunk@127726 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:25:03 +00:00
mkaply%us.ibm.com
e868f538ad #163550
r=cls
Add support for USE_STATIC_LIBS on OS/2


git-svn-id: svn://10.0.0.236/trunk@127725 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:21:21 +00:00
mjudge%netscape.com
c19120f618 163483 backing out poor change that didnt take into account the translation of coordinates by the container frame. this is just a backout.
git-svn-id: svn://10.0.0.236/trunk@127722 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 22:08:44 +00:00
rbs%maths.uq.edu.au
51d900ccdc One-liner forgotten in the mass merge of bug 162412
git-svn-id: svn://10.0.0.236/trunk@127721 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 21:56:51 +00:00
myk%mozilla.org
6ec673c947 Partial fix for bug 163573: Escapes HTML in form data displayed to the user to secure Bonsai against cross-site scripting attacks.
r=tara


git-svn-id: svn://10.0.0.236/trunk@127720 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 21:32:07 +00:00
locka%iol.ie
d56d89072f NOT PART OF BUILD. Move ActiveX plugin over to GNU make
git-svn-id: svn://10.0.0.236/trunk@127719 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 21:06:19 +00:00
smontagu%netscape.com
d6054944dd Correct parsing errors of some edge cases omitting optional parameters in data: URLs. Bug 161965 and bug 162019, r=bz, sr=darin
git-svn-id: svn://10.0.0.236/trunk@127718 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 20:34:39 +00:00
locka%iol.ie
e43c2fe955 NOT PART OF BUILD. Move ActiveX plugin over to GNU make
git-svn-id: svn://10.0.0.236/trunk@127717 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 20:21:11 +00:00
locka%iol.ie
efb7c8cb14 NOT PART OF BUILD. Move ActiveX plugin over to GNU make
git-svn-id: svn://10.0.0.236/trunk@127716 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 19:52:26 +00:00
dbaron%fas.harvard.edu
650a42831e Remove unused Equals and HashValue methods (methods that were once on nsIStyleRule). b=163058 r=hyatt sr=kin
git-svn-id: svn://10.0.0.236/trunk@127715 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 19:40:23 +00:00
alecf%netscape.com
b91485f337 oops, one more file for bug 162741
r=bryner, sr=hyatt


git-svn-id: svn://10.0.0.236/trunk@127714 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 18:15:54 +00:00
alecf%netscape.com
b9b46541a9 fix bug 162741 - revamp chrome registry interface in preparation for bug 160000 - switch lots of public APIs over to ACString, etc.
r=bryner, sr=hyatt


git-svn-id: svn://10.0.0.236/trunk@127711 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 18:12:51 +00:00
ducarroz%netscape.com
bfedcd17e6 Fix for bug 153930. Patch provided by Yuedong Du<yuedong.du@sun.com>. Do not call GetTypeFromExtension is we don't have an extension. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127710 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 18:07:41 +00:00
kerz%netscape.com
32f590d07f adding missing file
git-svn-id: svn://10.0.0.236/trunk@127709 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 17:32:27 +00:00
smontagu%netscape.com
7cde0da736 Bug 110388: Enhancements and bugfixes to viewsource. r=bz, sr=rbs.
git-svn-id: svn://10.0.0.236/trunk@127708 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 17:29:16 +00:00
mikep%oeone.com
065905eabd Fixing bug 163151.
git-svn-id: svn://10.0.0.236/trunk@127706 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 15:33:10 +00:00
katakai%japan.sun.com
66c49a98ce bug 152521
XIM is disabled by bad font lookup
Should look up more font pattern for XIC
r=Roland.Mainz@informatik.med.uni-giessen.de,sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@127702 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 14:39:30 +00:00
mikep%oeone.com
876025da3b Adding in category name as search field.
git-svn-id: svn://10.0.0.236/trunk@127701 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 14:24:17 +00:00
dbradley%netscape.com
26c46a2853 Bug 160602 - Patch sets FPU precision to 53 bit mantissa. r=khanson, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@127699 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 12:56:30 +00:00
kaie%netscape.com
8d50c514ce b=140302 hang when collapsing some ssl-security details
r=javi sr=bryner


git-svn-id: svn://10.0.0.236/trunk@127698 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 12:51:55 +00:00
glazman%netscape.com
00757df453 Take advantage of fix for bug 60683 (thanks bz) in ChangeCSSInlineStyleTxn and then reduce a lot the size of the transaction, keeping only property values instead of a whole style attribute ; major memory impact in CSS mode; b=162473, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@127697 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 11:28:57 +00:00
peterv%netscape.com
0f5a6dd48e Restore alphabetical order. No functional change.
git-svn-id: svn://10.0.0.236/trunk@127696 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 11:14:34 +00:00
peterv%netscape.com
12204a19fb Remove bogus appshell dependency. r=Pike.
git-svn-id: svn://10.0.0.236/trunk@127695 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 11:12:05 +00:00
kerz%netscape.com
33b766e84c removing single bookmark images, creating one large folder/bookmark image
git-svn-id: svn://10.0.0.236/trunk@127692 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 06:12:45 +00:00
rogerl%netscape.com
55a9c54f97 New exec functionality
git-svn-id: svn://10.0.0.236/trunk@127691 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 06:07:41 +00:00
rogerl%netscape.com
51c2c59fb3 Exec milestone.
git-svn-id: svn://10.0.0.236/trunk@127690 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 06:02:27 +00:00
kerz%netscape.com
8b3299db3f cleaning up button names and states, fixes back/forward depressed state
git-svn-id: svn://10.0.0.236/trunk@127687 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 04:59:38 +00:00
pschwartau%netscape.com
52398185c8 Re-factoring for greater clarity.
git-svn-id: svn://10.0.0.236/trunk@127686 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 04:42:33 +00:00
danm%netscape.com
214f1db096 reorder Destroy() sequence and remove new window creation check from bug 115969 (rev 1.89 of .cpp). bug 130719 r=brendan,pavlov
git-svn-id: svn://10.0.0.236/trunk@127685 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 04:34:09 +00:00
danm%netscape.com
a3abbf23d1 exit the app from Quit() only if all windows could be closed. bug 130719 r=brendan,pavlov
git-svn-id: svn://10.0.0.236/trunk@127683 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 04:30:27 +00:00
danm%netscape.com
ceacbfca5c CheckForAbusePoint spreads to Alert,Confirm,Prompt. because of bug 130719. r=brendan,pavlov
git-svn-id: svn://10.0.0.236/trunk@127682 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 04:28:21 +00:00
shanjian%netscape.com
46adb8b561 #162377 Non-ASCII filename is not shown when saving and downloading from a ftp listing
added code to convert string bundle to ncr.
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@127680 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 03:32:28 +00:00
kyle.yuan%sun.com
181d0d449d 152651 Main menu items get forver disabled after the invocation of Save File dialog.
r=jag, sr=bz
Check in for Simford.Dong@sun.com's fix


git-svn-id: svn://10.0.0.236/trunk@127679 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 03:30:19 +00:00
hyatt%netscape.com
8da19e030c Fix error in browser.js
git-svn-id: svn://10.0.0.236/trunk@127678 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 02:55:31 +00:00
jkeiser%netscape.com
6e75616972 Make option.value = option.text when there is no value attribute (bug 162368), r=rods@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127677 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 02:45:02 +00:00
jkeiser%netscape.com
a6bf84b6d6 Turn off double submit protection after JS sets action or target (bug 145142), r=alexsavulov@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127676 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 02:35:39 +00:00
pschwartau%netscape.com
f049bd5e03 Modifying test to handle Function.prototype.toString() output whether it is escaped or not.
git-svn-id: svn://10.0.0.236/trunk@127675 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 01:57:55 +00:00
beard%netscape.com
d9e6589574 workaround fix for bug #154699, r=sdagley, sr=bryner, a=adt.
git-svn-id: svn://10.0.0.236/trunk@127674 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 01:39:30 +00:00
myk%mozilla.org
afeb2d971c Fix for bug 163541: let there be a page title but no primary page header.
2xr=bbaetz


git-svn-id: svn://10.0.0.236/trunk@127672 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 01:25:07 +00:00
despotdaemon%netscape.com
ca0ffa80de Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127671 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 01:20:39 +00:00
sfraser%netscape.com
cf52981c71 Fix bug 162776: prevent the toolbar root bookmarks folder from being deleted by a drag to the trash.
git-svn-id: svn://10.0.0.236/trunk@127670 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 01:10:56 +00:00
naving%netscape.com
170a1bbf5d 127409 r=neil sr=bienvenu Made it so that newsserver change is shown on window title bar
163493 r=cavin sr=bienvenu Made it so that quick search view can be shown w/o showing folder getting loaded


git-svn-id: svn://10.0.0.236/trunk@127669 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 00:28:42 +00:00
despotdaemon%netscape.com
2bd9885a9f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127668 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 00:22:35 +00:00
ducarroz%netscape.com
6e8d24e94f Fix for build bustage. Backup lines that should not have been checked in.
git-svn-id: svn://10.0.0.236/trunk@127667 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 00:18:45 +00:00
sfraser%netscape.com
814d402913 Fix for bug 156893: strip control characters from bookmark titles and hrefs on import, so that we don't just refuse the entire import.
git-svn-id: svn://10.0.0.236/trunk@127666 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 00:10:13 +00:00
despotdaemon%netscape.com
db896475e7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127665 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-20 00:01:25 +00:00
cltbld%netscape.com
41b38b3414 Forgot to pass test_result back in run_all_tests, this was causing build status to be zero in some cases, which the server was rejecting. -mcafee
git-svn-id: svn://10.0.0.236/trunk@127664 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 23:26:22 +00:00
ducarroz%netscape.com
5f21639706 Fix for 160029. Rewrote mime encoding process when generating a RFC822 message. That fix various bugs and cleanup the code, see bug reposrt for details. R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127662 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 23:02:30 +00:00
asasaki%netscape.com
b0c01edccb fix for bug 136673 and bug 138764, adding version info to mozilla.exe
for the trunk and adding a program description.
r=cls, no sr= needed for build module.


git-svn-id: svn://10.0.0.236/trunk@127660 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:51:52 +00:00
wtc%netscape.com
b0832a36fb Fixed the comments for PR_Poll. PR_Poll only works on sockets; the support
for files is not portable. Document the fd field of PRPollDesc.


git-svn-id: svn://10.0.0.236/trunk@127659 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:51:06 +00:00
gerv%gerv.net
3ddaaaccc1 Bug 163457 - bugs not registered as "new". Patch by gerv; r=timeless, bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127657 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:47:06 +00:00
gerv%gerv.net
754db3da7e Bug 163331 - shutdownhtml is broken. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127656 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:34:32 +00:00
alecf%netscape.com
45c0b22a4c fix for bug 159328 - submit broken in some locales - use locale-insensitive tolower()
r=jag, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@127653 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:17:13 +00:00
sicking%bigfoot.com
68c5f24c91 Bug 94036: Rewrite implementation of xsl:number. Also implement errorhandling for txList and NS_ConvertASCIItoUCS2 for standalone.
r=Pike sr=jst


git-svn-id: svn://10.0.0.236/trunk@127651 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:16:09 +00:00
bbaetz%student.usyd.edu.au
5aee75da90 Bug 163299 - Can't change cc accessible checkbox
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@127650 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:16:04 +00:00
cbiesinger%web.de
b6cbc73d22 bug 163230 r=db48x sr=roc+moz update "file a bug" link
git-svn-id: svn://10.0.0.236/trunk@127649 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 22:05:18 +00:00
despotdaemon%netscape.com
16e2d6b082 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127648 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:56:58 +00:00
despotdaemon%netscape.com
2f2d8a3069 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127647 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:55:21 +00:00
sfraser%netscape.com
c8e5d5ca01 Fix for bug 163480 (dragging from inactive tabs). Also add disabled generic icon to about:blank tabs.
git-svn-id: svn://10.0.0.236/trunk@127646 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:53:42 +00:00
despotdaemon%netscape.com
22a8c88521 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127645 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:53:38 +00:00
pschwartau%netscape.com
6941a905f2 Adding a comment.
git-svn-id: svn://10.0.0.236/trunk@127644 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:46:26 +00:00
ducarroz%netscape.com
175d8a6a20 Fix for bug 162961. Don't set decrypt_p to true if smime is not enable. R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127643 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:40:23 +00:00
jkeiser%netscape.com
cc54e872a9 Make one-level-deep selects do add() and remove() 5-6 times faster (bug 113491), r=rods@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127642 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:25:51 +00:00
despotdaemon%netscape.com
29ec430688 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127641 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:17:29 +00:00
gerv%gerv.net
12f6d8cb39 Bug 143286 - Add support for Insiders, Private comments, Private Attachments. Patch by bugreport@peshkin.net; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@127640 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:17:28 +00:00
jkeiser%netscape.com
bc2b4966c5 Fix crash on clicking button outside of form (bug 163327), r=rods@netscape.com,
sr=dbaron@fas.harvard.edu


git-svn-id: svn://10.0.0.236/trunk@127639 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:01:56 +00:00
jst%netscape.com
0734ef5de2 Renaming GetDocShellChildren() to GetDocShellChildCount(). See bug 98158 for details.
git-svn-id: svn://10.0.0.236/trunk@127638 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 20:55:03 +00:00
mkaply%us.ibm.com
b0fa8fd36f OS/2 install wizard work - removing unnecessary stuff
git-svn-id: svn://10.0.0.236/trunk@127637 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 20:46:25 +00:00
mkaply%us.ibm.com
b89827ad49 No bug - we need this to execute for OS/2 - no idea why it was ever iffed for OS/2
git-svn-id: svn://10.0.0.236/trunk@127636 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 20:33:53 +00:00
wtc%netscape.com
6fd696962e The comments for PR_ConnectContinue incorrectly referred to
PR_GetConnectStatus.


git-svn-id: svn://10.0.0.236/trunk@127635 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 20:26:45 +00:00
leaf%mozilla.org
88c0cab5a3 Automated update
git-svn-id: svn://10.0.0.236/trunk@127634 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 19:40:08 +00:00
aaronl%netscape.com
b15b376544 Bug 30088. Type ahead find, pref defaults to off for now. To turn on, use (accessibility.typeaheadfind, true). No Code Warrior project yet. See http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html for more details on feature. r=akkana,cls. sr=jst
git-svn-id: svn://10.0.0.236/trunk@127633 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 19:29:39 +00:00
jst%netscape.com
3c510141ef Whitespace cleanup, not part of the build.
git-svn-id: svn://10.0.0.236/trunk@127632 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 19:17:48 +00:00
sspitzer%netscape.com
719cf5e532 remove unused (and incorrect) code. r/sr=no one.
git-svn-id: svn://10.0.0.236/trunk@127631 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:50:40 +00:00
sspitzer%netscape.com
9dab62c5bd remove unused (and incorrect) code.
git-svn-id: svn://10.0.0.236/trunk@127630 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:50:09 +00:00
dbaron%fas.harvard.edu
da446121bd Make marquee 'display: block' so that styling it works correctly. (The XBL binding already forces block-like display.) b=163031 r=doron sr=kin
git-svn-id: svn://10.0.0.236/trunk@127629 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:43:17 +00:00
dbaron%fas.harvard.edu
5ae251ef21 Correctly process a framechange hint on the root element to prevent crashes. Prevent selects from triggering style reresolution before they're added to the document, and prevent a little bit more reresolution that's a performance hit. b=143862 r=bzbarsky, jkeiser sr=jst, waterson
git-svn-id: svn://10.0.0.236/trunk@127628 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:35:09 +00:00
dbaron%fas.harvard.edu
12c9b29b2b Ensure that the event state manager doesn't send content state changed notifications for content that's been removed from the document. b=157322 r=bryner sr=kin
git-svn-id: svn://10.0.0.236/trunk@127627 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:31:59 +00:00
dbaron%fas.harvard.edu
8ec55d91d3 Make PopupSet registration on the root box frame done by the popupset and add unregistration when the popupset goes away to fix crashes from dangling pointers. b=156719 (and 136513) r=bryner sr=kin
git-svn-id: svn://10.0.0.236/trunk@127625 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:29:29 +00:00
relyea%netscape.com
6ea28d5f16 Bug 142172
1) look up the private key much earlier in the process so we know what slot it is on.
2) if a slot isn't specified, you the private key's slot.
3) if the specified slot and the private key slot don't match & the private key slot can do the PBE, then use the private key slot to do the PBE so we don't have to move the key.
4) if we have generated the PBE key in a different slot from the private key,


git-svn-id: svn://10.0.0.236/trunk@127624 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:24:58 +00:00
sfraser%netscape.com
dc8ed43583 Restore text truncation to tab labels using an NSCell subclass, NSTruncatingTextCell.
git-svn-id: svn://10.0.0.236/trunk@127623 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:17:06 +00:00
sfraser%netscape.com
8146174071 Part of patch in bug 161387 for better tab label truncation.
git-svn-id: svn://10.0.0.236/trunk@127622 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:15:41 +00:00
ducarroz%netscape.com
8ab864e33a Fix for bug 138125. Patch submitted by ere@atp.fi (Ere Maijala). Call super class parse_eof fist. Also fix some I18N convertion. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127620 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 18:07:13 +00:00
rogerl%netscape.com
ff5fd2bb04 Filling out exec.
git-svn-id: svn://10.0.0.236/trunk@127619 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 17:30:48 +00:00
pinkerton%netscape.com
c442122bd9 When moving and resizing popups, use coordinate system where the origin
is the top left since that's what webpages expect.


git-svn-id: svn://10.0.0.236/trunk@127618 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 17:18:22 +00:00
sfraser%netscape.com
523d7e87db NSString utility parts of the width-based truncation patch, bug 161387. Patch from Max Horn.
git-svn-id: svn://10.0.0.236/trunk@127617 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 16:49:25 +00:00
pinkerton%netscape.com
d3c48b3293 make status bar text field scrollable instead of wrapping for long
urls (bug 163245)


git-svn-id: svn://10.0.0.236/trunk@127616 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 14:33:04 +00:00
bbaetz%student.usyd.edu.au
00e249203e Fix long line noticed by Gerv, no bug #.
git-svn-id: svn://10.0.0.236/trunk@127615 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 14:30:28 +00:00
pinkerton%netscape.com
73f64f26ac removing unused file (bug 163156)
git-svn-id: svn://10.0.0.236/trunk@127614 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 14:26:10 +00:00
bbaetz%student.usyd.edu.au
d4ca4bbcc4 Big 163291 - Move utility funcs into a module
r=preed x2


git-svn-id: svn://10.0.0.236/trunk@127613 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 13:59:45 +00:00
glazman%netscape.com
51aa631ff3 backing out 2002-09-08 changes of fix for bug 117730 due to very bad regression in absolute positioning (see bug 117730) and
because bz, who did the original check-in, is on vacation. rs=brade


git-svn-id: svn://10.0.0.236/trunk@127612 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 13:35:21 +00:00
mikep%oeone.com
a5f7c65597 Adding in converters to CVS.
git-svn-id: svn://10.0.0.236/trunk@127611 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 13:32:35 +00:00
mostafah%oeone.com
e880517379 Fixing faulty checkin of patch for bug 145525
git-svn-id: svn://10.0.0.236/trunk@127610 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 13:15:30 +00:00
mostafah%oeone.com
c3580ec4af Checked in for fix to bug 163160: Event Category not persisted
git-svn-id: svn://10.0.0.236/trunk@127609 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 13:05:22 +00:00
mikep%oeone.com
034007109d FIxing bug 161162
git-svn-id: svn://10.0.0.236/trunk@127608 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 12:36:13 +00:00
peterv%netscape.com
20c9af6a65 Fix for bug 161880 (privacy hole in JS regexps ?). r=jst, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@127604 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 11:19:05 +00:00
syd%netscape.com
048c44e151 Fix for 163423. Make sure we let deletes of non-existing keys go thru at
runtime, they should no-op, not bring an install script to its knees.
r=hewitt, sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@127603 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 09:57:55 +00:00
peterv%netscape.com
bb292a2570 Fix for bug 101890 (break linkage from transformiix to layout). r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127602 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 06:58:21 +00:00
sfraser%netscape.com
198b0fccae Optimize drawing when showing and hiding the drag target hilight.
git-svn-id: svn://10.0.0.236/trunk@127601 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 06:35:12 +00:00
rogerl%netscape.com
baeb39e46d New engine work
git-svn-id: svn://10.0.0.236/trunk@127600 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 06:31:16 +00:00
bryner%netscape.com
e50d6a3307 Missed one instance of <new.h> for bug 155852. r=cls.
git-svn-id: svn://10.0.0.236/trunk@127598 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 05:19:22 +00:00
sspitzer%netscape.com
5aae3bbb60 fix for #80608. Thread pane's initial scroll position should follow date sorting.
when loading a folder, if there are no new message, scroll to where the "newest" messages are.
thanks to Neil Rashbrook (neil@parkwaycc.co.uk) for the patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127597 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 05:18:25 +00:00
aaronl%netscape.com
29aaaae1ca Not part of build. Type ahead find. More cleanup
git-svn-id: svn://10.0.0.236/trunk@127596 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 04:44:22 +00:00
kin%netscape.com
a850d5d255 Fix for bug #96736: [FLOATER]The "Top 1000 Reviewer" is overwritten by text
mozilla/layout/base/src/nsSpaceManager.cpp
  mozilla/layout/base/src/nsSpaceManager.h

    - Implemented nsSpaceManager methods PushState()
      and PopState().

  mozilla/layout/html/base/src/nsBlockReflowContext.cpp

    - Modified nsBlockReflowContext::DoReflowBlock() to
      call PushState() and PopState() to remove any
      floaters that may have been added to the SpaceManager
      during the intermediate "unconstrained" Reflow()
      call, used to calculate the max block width. This
      allows the Reflow() call that immediately follows
      it to properly place the floaters.


r=waterson@netscape.com  sr=dbaron@fas.harvard.edu


git-svn-id: svn://10.0.0.236/trunk@127595 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 04:41:57 +00:00
henry.jia%sun.com
d4a65691fd Fix bug 159889: replace the hardcode of "@mozilla.org/preferences;1" with NS_PREF_CONTRACTID
Patch by leon.zhang@sun.com
r=Henry, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127594 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 04:29:58 +00:00
henry.jia%sun.com
e79b8105b8 Patch for bug Bug 98158: Recursive frames exhaust memory
Patch By Jack.Jia@sun.com
r=jkeiser, sr=jst


git-svn-id: svn://10.0.0.236/trunk@127593 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 04:04:43 +00:00
sfraser%netscape.com
be295dd17e Remove an NSLog, and set the LOAD_BACKGROUND flag for remote data loads.
git-svn-id: svn://10.0.0.236/trunk@127592 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:57:07 +00:00
sfraser%netscape.com
a49bf1b117 Improve drag and drop feedback (bug 163403). Tab items now contain a view that handles drag and drop for that item, and draws via a couple of NSCells, and show drag feedback when you drag over them.
git-svn-id: svn://10.0.0.236/trunk@127591 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:55:08 +00:00
leaf%mozilla.org
985fd66960 Automated update
git-svn-id: svn://10.0.0.236/trunk@127590 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:55:03 +00:00
sfraser%netscape.com
0e985c7e17 Changed to use BrowserTabViewItem, and lots of tidyup.
git-svn-id: svn://10.0.0.236/trunk@127589 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:52:43 +00:00
sfraser%netscape.com
f3eb762c7a Create BrowserTabViewItems using the factory method on BrowserTabView, and add an accessor for the proxy icon view.
git-svn-id: svn://10.0.0.236/trunk@127587 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:51:32 +00:00
sfraser%netscape.com
3e9c62d488 Create BrowserTabViewItems using the factory method on BrowserTabView.
git-svn-id: svn://10.0.0.236/trunk@127586 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:50:54 +00:00
bryner%netscape.com
79c62ac5b7 Get rid of gcc3's numerous warnings about using <new.h> instead of <new> by creating a new #define, NEW_H, which should be used instead of <new.h> or <new>. This is so we can continue to support a couple of braindead compilers that don't accept <new>. Bug 155852, r=cls.
git-svn-id: svn://10.0.0.236/trunk@127585 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:50:27 +00:00
sfraser%netscape.com
0ff1b11149 Add a factory method for new tabs, and improve drag and drop feedback. Also added calls to BrowserTabViewItems to tell them when they are shown or hidden.
git-svn-id: svn://10.0.0.236/trunk@127584 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:50:13 +00:00
sfraser%netscape.com
db4ddddf9e Moving nsCocoaBrowserListener into a new file, and making a new group for gecko embedding files.
git-svn-id: svn://10.0.0.236/trunk@127583 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:45:35 +00:00
sfraser%netscape.com
2ffbf70d73 Move nsCocoaBrowserListener into its own file, and add a few new methods to the NSBrowserContainer protocol.
git-svn-id: svn://10.0.0.236/trunk@127582 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 03:41:17 +00:00
bolian.yin%sun.com
ba7d427f1b bug 136467, [Linux] F7 doesn't always toggle on caret.
patch by john.sun@sun.com, r=aaronl, r=caillon, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@127580 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 02:58:15 +00:00
mkaply%us.ibm.com
1b203c1c4c No bug
Not part of build
Beginning work on OS/2 XPInstall wizard


git-svn-id: svn://10.0.0.236/trunk@127577 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 01:32:34 +00:00
bugreport%peshkin.net
3d02a46a3f Fix typo from 43600
r=bbaetz x2


git-svn-id: svn://10.0.0.236/trunk@127574 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 01:06:56 +00:00
sspitzer%netscape.com
51a9637c60 abCommon from branch.
git-svn-id: svn://10.0.0.236/trunk@127567 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 20:06:16 +00:00
sspitzer%netscape.com
51d0cad081 from blake's branch checkins: "Autocomplete modifications to work with comma-delimited list."
git-svn-id: svn://10.0.0.236/trunk@127566 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 20:05:23 +00:00
sspitzer%netscape.com
7c84bbd3cd more changes
git-svn-id: svn://10.0.0.236/trunk@127565 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 19:32:07 +00:00
sspitzer%netscape.com
ff6aa6bba6 ignore generated makefiles
git-svn-id: svn://10.0.0.236/trunk@127564 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 19:27:55 +00:00
sspitzer%netscape.com
cf0be2ffcd some skin for blake's compose window.
git-svn-id: svn://10.0.0.236/trunk@127563 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 19:25:49 +00:00
sspitzer%netscape.com
be04c0ca8b build changes for blake's compose window.
git-svn-id: svn://10.0.0.236/trunk@127561 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 18:58:25 +00:00
sspitzer%netscape.com
c6e13c25cf first pass at landing blake's new compose window.
git-svn-id: svn://10.0.0.236/trunk@127560 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 18:57:49 +00:00
sspitzer%netscape.com
eeb4c7123b just some white space foo, in preparation for blake's compose window changes.
no bug.  r/sr=no one.


git-svn-id: svn://10.0.0.236/trunk@127558 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 17:55:20 +00:00
sspitzer%netscape.com
1b717bdc2e fix for #163355. move hard coded "Web Page (URL):" string from .xul to .dtd.
fix by shliang@netscape.com, from another branch.  r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127557 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 17:45:49 +00:00
blakeross%telocity.com
c68b70f5d3 Readding platform overlays.
git-svn-id: svn://10.0.0.236/trunk@127554 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 04:50:34 +00:00
blakeross%telocity.com
ec6a3772fb Removing more overlays.
git-svn-id: svn://10.0.0.236/trunk@127552 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 03:18:08 +00:00
dcone%netscape.com
d8354db5d9 bug 148598 r=mcclusk,sr=kin fixes slow scrolling
git-svn-id: svn://10.0.0.236/trunk@127551 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 00:47:54 +00:00
dcone%netscape.com
99d5eac239 b=148598 r=mcclusky,sr=kin Speed up scrolling
git-svn-id: svn://10.0.0.236/trunk@127550 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-18 00:46:00 +00:00
sfraser%netscape.com
843b1fa85f Be sure to catch cocoa exceptions when trying to make favicons, otherwise things get really messed up (see bug 163260 for the general problem).
git-svn-id: svn://10.0.0.236/trunk@127547 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 22:04:33 +00:00
bryner%netscape.com
0a0af516b2 Make sure tooltips don't appear for the content under the popup when you bring up a context menu, since it causes all sorts of focus weirdness if you click on the tooltip (bug 155018). r=blizzard, sr=dbaron.
git-svn-id: svn://10.0.0.236/trunk@127545 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 19:09:18 +00:00
aaronl%netscape.com
01e753225e Complete fix for last night's bustage when checking in bug 132158 - forgot to check in MANIFEST.
git-svn-id: svn://10.0.0.236/trunk@127544 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 18:49:30 +00:00
bbaetz%student.usyd.edu.au
9682343ad1 Bug 162854 - buglist.cgi reporter is actually owner
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@127541 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 14:31:00 +00:00
bbaetz%student.usyd.edu.au
6a21bf6238 bug 160631 - bug_email.pl is broken
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@127540 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 14:26:32 +00:00
bbaetz%student.usyd.edu.au
6e975e2023 Bug 160112 - clean up quip table conversion code
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@127539 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 14:09:08 +00:00
dbaron%fas.harvard.edu
0ef8b1f443 Convert mapped attribute table from nsHashtable to pldhash. b=148368 sr=bzbarsky r=sicking
git-svn-id: svn://10.0.0.236/trunk@127538 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 12:17:03 +00:00
andreas.otte%debitel.net
2ddcbb421f fix bug 32966 [http:/ (one slash) treated as http:// rather than /] We
now support some deprectated relative urls because RFC2396 allows for
a backwards compatibility implementation. Also fixes bug 22251, bug
40670, and some more. r=bbaetz, sr=darin


git-svn-id: svn://10.0.0.236/trunk@127537 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 11:56:52 +00:00
bbaetz%student.usyd.edu.au
02012cbb68 Hopefully fix HPUX bustage from bug 7965.
git-svn-id: svn://10.0.0.236/trunk@127536 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 11:12:29 +00:00
cbiesinger%web.de
f81f5abcf1 fixing AIX bustage, maybe others too
git-svn-id: svn://10.0.0.236/trunk@127535 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 10:30:59 +00:00
jst%netscape.com
7e3a67660b More random cleanup. Not part of the build yet
git-svn-id: svn://10.0.0.236/trunk@127534 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 07:15:09 +00:00
jkeiser%netscape.com
5e154c9e2c Make forms with input type=image submit on pressing enter (bug 150232), r=sicking@bigfoot.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127533 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 05:42:55 +00:00
bryner%netscape.com
fe9e747740 Speed up intrinsic sizing of trees by not creating a new rendering context for each cell width measurement (bug 163186). r=varga, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@127532 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 05:36:24 +00:00
justdave%syndicomm.com
a28271d7d8 Backing out patch for bug 126955 (supporting localized templates) due to fatal regression in checksetup.pl for initial
checkouts/clean installs.  See comment 25 onward in bug for details.


git-svn-id: svn://10.0.0.236/trunk@127531 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 04:40:53 +00:00
sicking%bigfoot.com
557827e676 Bug 162461: Make inLayoutUtils::GetContainerFor use nsIDOMWindowInternal::GetFrameElement
r=bz, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@127530 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 04:19:34 +00:00
bryner%netscape.com
d8bd02689e Include window icons in installer packages (bug 163067). r=leaf, sr=dveditz.
git-svn-id: svn://10.0.0.236/trunk@127529 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 04:11:05 +00:00
aaronl%netscape.com
63c4b9be5a Temporarily fixing bustage until proper fix comes later
git-svn-id: svn://10.0.0.236/trunk@127527 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 04:05:50 +00:00
varga%netscape.com
d1d587edb9 Fix for bug 114989. Expand / collapse thread ("+" and "-") icons are drawn
incorrectly. r=bryner, sr=bz


git-svn-id: svn://10.0.0.236/trunk@127526 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 03:58:18 +00:00
naving%netscape.com
0cd28e9587 156558 r=cavin sr=sspitzer bienvenu Adding changes on mozilla side so that aim can show new mail status from buddies etc..
git-svn-id: svn://10.0.0.236/trunk@127525 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 02:31:08 +00:00
jkeiser%netscape.com
78af8899a1 Restore select by value, not position (bug 95622), r=rods@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127524 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 01:56:04 +00:00
aaronl%netscape.com
6ec7265fbf Bug 132158. Active Accessibility: expose correct bounds information and accessible value for HTML areas. r=saari, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@127523 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 01:46:58 +00:00
caillon%returnzero.com
3c55e1f0aa 119044 - Prevent a crash when trying to append/insert the current element or one of its ancestors into itself. Throw the correct exception in this case per the DOM spec.
Thanks to Neil Deakin <ndeakin@sympatico.ca> for pinpointing this and providing a patch.
r=bryner/caillon sr=jst


git-svn-id: svn://10.0.0.236/trunk@127522 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 01:43:07 +00:00
katakai%japan.sun.com
8d6d9d08b6 bug 7965
[converter] need ISO-2022-CN converters
Added ISO-2022-CN converter. (no new file)
r=ftang,sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127521 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 01:17:42 +00:00
jst%netscape.com
b336df4317 Fixing topcrash bug 162526. Change the shutdown code in nsGenericElement so that the order in which things are torn down, and also the things that are torn down match what we did before my fix for bug 156364. This causes us to leak what we leaked before my fix for bug 156364. r=jkeiser@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127520 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-17 01:06:11 +00:00
dbaron%fas.harvard.edu
885376c9da Move nsStyleUtil from content/shared/ to content/html/style/ to reduce the size the shared library that is part of both content and layout. b=71257 sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127514 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:57:09 +00:00
bugreport%peshkin.net
7f593e6c10 Bug 10037 - param to disable adding new quips
r=imajes, preed


git-svn-id: svn://10.0.0.236/trunk@127510 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:28:58 +00:00
heikki%netscape.com
634b27b5ce Bug 163039, relax sanity check on XML serializer so that we won't throw an error if the serialized document is not XML. This is needed because Bugzilla (at least) abuses XMLSerializer (to edit attachments). r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127509 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:24:15 +00:00
heikki%netscape.com
731eb54139 Bug 158977, GetResponseXML() can return null document even with NS_OK return value, so callers need to check the document exists before using it. r=bzbarsky, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127508 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:20:49 +00:00
heikki%netscape.com
02706fd84b Bug 137866, responseText should default to UTF-8. r=bzbarsky, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127507 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:18:20 +00:00
chak%netscape.com
8a24ce8994 Fix for #162829 - Add additional missing files to the current MRE package.
r=leaf, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127506 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:15:54 +00:00
relyea%netscape.com
adb3071784 use error code in secutil.
Clean up the output.
Print out cert chain parsing issues more completely.


git-svn-id: svn://10.0.0.236/trunk@127505 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:09:02 +00:00
danm%netscape.com
3733a7ff4d fixing a typo which caused a parsing error. been there 8 months, by the way
git-svn-id: svn://10.0.0.236/trunk@127504 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:03:18 +00:00
dbaron%fas.harvard.edu
43734511f2 Move nsStyleUtil from content/shared/ to content/html/style/ to reduce the size the shared library that is part of both content and layout. b=71257 sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127502 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 23:00:25 +00:00
dbaron%fas.harvard.edu
6d1e1fc9fc File moved from content/shared/src/ to content/html/style/src/. b=71257 sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127501 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:56:49 +00:00
dbaron%fas.harvard.edu
461ab7eb60 File moved from content/shared/public/ to content/html/style/public/. b=71257 sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127500 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:56:08 +00:00
dprice%netscape.com
e5b86f82de 136497 r=fraser sr=dveditz
add carbResource.r to carbon target


git-svn-id: svn://10.0.0.236/trunk@127499 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:37:48 +00:00
dprice%netscape.com
f85305128a 136497 r=sfraser sr=dveditz
add carbResource.r file to carbon targets


git-svn-id: svn://10.0.0.236/trunk@127498 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:37:07 +00:00
dprice%netscape.com
61cfaa2372 158729 - sr=leaf
fix flag to build nsztool on windows nt


git-svn-id: svn://10.0.0.236/trunk@127497 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:26:38 +00:00
naving%netscape.com
620932155e 66955 r=cavin sr=bienvenu. Implementing drag and drop messages from advanced search results to 3 pane.
Hooking up fcc, search results and drag and drop copies to copyService so that we can handle multiple sources/requests.
89285 r=cavin sr=bienvenu fixing copy to Sent folder failed sometimes by queuing copy requests


git-svn-id: svn://10.0.0.236/trunk@127496 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 22:22:55 +00:00
alecf%netscape.com
99ece36edf fix off-by-one error from bug 162947, found by rbs@maths.uq.edu.au
(no functional change, just prevents assertion)


git-svn-id: svn://10.0.0.236/trunk@127495 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 21:47:12 +00:00
morse%netscape.com
5831704fc8 bug 155083, path test not being made when site sets a cookie, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@127494 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 21:40:50 +00:00
brade%netscape.com
ecf0215829 clean up new Object usage (bug 157970); r=Neil, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127493 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 21:37:24 +00:00
rbs%maths.uq.edu.au
a0fbf5f0ca Merge mi/ms/mtext in a single token class and make mo inherit from the token class. The merge allows centralizing the special treatment needed for their child text frames that are non-MathML, b=162412, r=roc+moz, sr=kin
git-svn-id: svn://10.0.0.236/trunk@127492 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 21:36:31 +00:00
despotdaemon%netscape.com
7033730777 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127489 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 20:28:49 +00:00
despotdaemon%netscape.com
29bf564121 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127488 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 20:28:03 +00:00
mikep%oeone.com
2661d70e35 Fixing bug 159653.,
git-svn-id: svn://10.0.0.236/trunk@127481 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 18:15:59 +00:00
mikep%oeone.com
58a22f1ab6 Fixing bug 158605, problem with dates from events being imported.
git-svn-id: svn://10.0.0.236/trunk@127480 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 18:04:50 +00:00
mikep%oeone.com
7c9ab32551 Fixing bug 157511.
git-svn-id: svn://10.0.0.236/trunk@127479 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 17:41:09 +00:00
bryner%netscape.com
e949564634 Sync Chimera changes with CHIMERA_M1_0_1_BRANCH (bug 161668). In addition to landing all the Chimera-specific changes here, I'm creating a new chimera.js file with our Chimera-specific prefs (and moving them out of all.js). r=brade.
git-svn-id: svn://10.0.0.236/trunk@127478 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 17:35:52 +00:00
relyea%netscape.com
cb662cf220 Quick and dirty utility to pink SSL servers to see if they are configured
correctly.

NOTES: This program is a (very slightly) modified version of the
SSLSample/client.c program. As such it used the sample program support, which is
a duplication of much of secutil. Future enhancements would be 1) link with
secutil.lib. 2) When handling BadCert requests, run the Full VerifyCert and dump
the results. Make connections to the servers testing SSL2, SSL3 and TLS.

Changes were basically 1) Set the program to run without a security database
(this means no token support, or client auth). 2) Explicitly load the builtins
module so that we can test against the standard trust.


git-svn-id: svn://10.0.0.236/trunk@127476 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 16:29:18 +00:00
alecf%netscape.com
3eef59e2c8 fix other bustage
git-svn-id: svn://10.0.0.236/trunk@127475 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 16:17:13 +00:00
alecf%netscape.com
2d02911818 argh, back myself out because it causes xpcomglue bustage
git-svn-id: svn://10.0.0.236/trunk@127474 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 15:24:58 +00:00
mikep%oeone.com
e51ac209bd Removing unused Js file.
git-svn-id: svn://10.0.0.236/trunk@127473 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 15:04:22 +00:00
mikep%oeone.com
c5ec82b940 FIxing bug 123583, date picker not highlighting dates after clicking on month.
git-svn-id: svn://10.0.0.236/trunk@127472 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 15:04:10 +00:00
alecf%netscape.com
f25ebf57af warning fix for bug 12493 - quiet down on warnings when url spec is set to ""
sr=darin


git-svn-id: svn://10.0.0.236/trunk@127471 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:55:34 +00:00
alecf%netscape.com
81006a3af9 fix bug 159328, and probably bug 146673 - use locale-insensitive string comparisons in strings so we don't break when doing case-insensitive matching of simple ASCII strings in non-US locales, like "SubMIT" != "submit"
r=brade, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@127470 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:35:48 +00:00
mikep%oeone.com
28069d9a85 Fixing bug 163028, adding in ability to launch edit event dialog from alarms.
git-svn-id: svn://10.0.0.236/trunk@127469 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:34:34 +00:00
mikep%oeone.com
1ad1ca9546 Removing background image.
git-svn-id: svn://10.0.0.236/trunk@127468 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:34:08 +00:00
mikep%oeone.com
ca70cf5699 FIxing bug 161162, dont' include CVS files.
git-svn-id: svn://10.0.0.236/trunk@127467 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:15:17 +00:00
mostafah%oeone.com
debc02947d Checking in patch for bug 145525: [PATCH] tm_gmtoff is not a member of struct tm on Solaris
git-svn-id: svn://10.0.0.236/trunk@127466 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 14:05:23 +00:00
mikep%oeone.com
5919dbf4a4 REmoving toggle background, bug 160517
git-svn-id: svn://10.0.0.236/trunk@127465 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 13:49:06 +00:00
mikep%oeone.com
1f69bdadd8 Fixing bug color coding for events based on category.
git-svn-id: svn://10.0.0.236/trunk@127464 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 13:46:14 +00:00
mikep%oeone.com
b085577d3c Fixing bug 155875.
git-svn-id: svn://10.0.0.236/trunk@127463 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 13:34:44 +00:00
dbaron%fas.harvard.edu
e8821b1085 Clean up unneeded includes of nsStyleUtil.h, and some other include cleanup in MathML. r=rbs b=71257 (|#include| changes only)
git-svn-id: svn://10.0.0.236/trunk@127461 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 11:52:20 +00:00
dbaron%fas.harvard.edu
de6516960e Handle style attribute changes in XUL through the normal style change mechanism rather than forcing a reframe. Change nsIStyledContent::WalkInlineStyleRules to nsIStyledContent::GetInlineStyleRule to simplify nsCSSFrameConstructor::AttributeChanged. b=156971 sr=hyatt r=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127460 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 11:29:20 +00:00
blakeross%telocity.com
99aba06c8a More perf work.
git-svn-id: svn://10.0.0.236/trunk@127457 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 06:44:56 +00:00
igor%mir2.org
29c61f9c6c Fixing line number generation for the empty return statement which was reported by Steven Beal. It was caused by missed update of lineno in statementHelper when dealing with return;.
git-svn-id: svn://10.0.0.236/trunk@127456 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 06:42:27 +00:00
caillon%returnzero.com
11636586e4 128801 - downloading dialog has "-1%" in titlebar
Patched by Aaron Kaluszka <ask@swva.net>
r=law sr=bryner


git-svn-id: svn://10.0.0.236/trunk@127454 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 05:23:47 +00:00
rginda%netscape.com
ff608cf19c apply scole@planetweb.com's fix for JS_InitClass (bug 162946)
git-svn-id: svn://10.0.0.236/trunk@127453 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 05:11:36 +00:00
blakeross%telocity.com
923efdff21 More stripping.
git-svn-id: svn://10.0.0.236/trunk@127451 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 04:11:28 +00:00
sspitzer%netscape.com
75f4479496 fix for #162987. some build changes for minotaur. r=bryner, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127450 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 04:10:13 +00:00
blakeross%telocity.com
ab3b302c59 More stripping.
git-svn-id: svn://10.0.0.236/trunk@127449 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 04:07:36 +00:00
blakeross%telocity.com
5a4387a062 Remove navigator links.
git-svn-id: svn://10.0.0.236/trunk@127448 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 03:57:09 +00:00
sspitzer%netscape.com
7a10957136 removing. thanks to hewitt for lending his voice and his recording studio for this sound.
git-svn-id: svn://10.0.0.236/trunk@127447 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 03:51:57 +00:00
sspitzer%netscape.com
677e45796d ignore generated makefiles.
git-svn-id: svn://10.0.0.236/trunk@127446 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 03:48:41 +00:00
sspitzer%netscape.com
522223fd6d some build changes. remove wav file, not used.
git-svn-id: svn://10.0.0.236/trunk@127445 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 03:46:38 +00:00
pinkerton%netscape.com
b13c726b46 reduce size of splash screen. ifdef'd off use of "loading..." which we never
used anyway. fixed huge leak that basically leaked the entire splash screen.


git-svn-id: svn://10.0.0.236/trunk@127444 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 03:20:54 +00:00
pinkerton%netscape.com
786ab5a3a6 Add a "view source" toolbar button, off by default
git-svn-id: svn://10.0.0.236/trunk@127442 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 02:34:19 +00:00
cmanske%netscape.com
f5f33c5077 Fixed small error in nsIIOService checkin. b=157131, r=dougt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127441 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 02:15:34 +00:00
bzbarsky%mit.edu
91868318af Adding files for Load/Save. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@127440 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 02:05:22 +00:00
myk%mozilla.org
4947a394db Fix for bug 41917: Gets LXR working again on systems with only one sourceroot.
Patch by Gregory Leblanc <gleblanc@linuxweasel.com>.
r=kiko


git-svn-id: svn://10.0.0.236/trunk@127438 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 01:31:20 +00:00
anthonyd%netscape.com
04c9507cab fix for bug #135292. fix for unsigned int being compared to -1
r=serge
sr=darin


git-svn-id: svn://10.0.0.236/trunk@127437 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 01:11:18 +00:00
blakeross%telocity.com
6802e3fd9d Checking in more files.
git-svn-id: svn://10.0.0.236/trunk@127436 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 01:04:47 +00:00
alecf%netscape.com
9b07d2c3cd fix bug 162947 - small leak in nsXULDocument
sr=jst, r=timeless


git-svn-id: svn://10.0.0.236/trunk@127435 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 01:04:40 +00:00
sfraser%netscape.com
6bfb6e7e72 Rename CHExtendedTabView to BrowserTabView (because that's what it is), and add a new subclass of CHIconTabViewItem, BrowserTabViewItem, for browser tabs.
git-svn-id: svn://10.0.0.236/trunk@127434 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:58:10 +00:00
ftang%netscape.com
c450de2903 fix bug 128263. let ATSUI to render Unicode surrogate characters. r=nhotta sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@127433 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:54:03 +00:00
blakeross%telocity.com
db47b1057a More cleanup.
git-svn-id: svn://10.0.0.236/trunk@127432 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:44:41 +00:00
blakeross%telocity.com
6f063deae5 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@127430 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:33:05 +00:00
blakeross%telocity.com
9a24a8976c Minotaur. Only half bull.
git-svn-id: svn://10.0.0.236/trunk@127429 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:26:44 +00:00
sfraser%netscape.com
ed79738c63 Fixing absolute path to dist/Embed/components
git-svn-id: svn://10.0.0.236/trunk@127428 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:12:47 +00:00
alecf%netscape.com
a6a3adab0e bug 162944 - FMM in cache
r=dougt/timeless, sr=darin


git-svn-id: svn://10.0.0.236/trunk@127427 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:08:14 +00:00
jpierre%netscape.com
8477590d10 Correctly count the number of items in a SEQUENCE OF or SET OF in quickder decoder. Bug found by one of Terry's tests.
git-svn-id: svn://10.0.0.236/trunk@127426 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:05:55 +00:00
aaronl%netscape.com
3a960e1e95 Not part of build. Typeaheadfind - forgot to change module names in makefile
git-svn-id: svn://10.0.0.236/trunk@127425 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-16 00:02:58 +00:00
cmanske%netscape.com
0be16689d1 Fixed small typos in Darin's nsIIOService checkin. b=157131, r=dougt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127424 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:56:03 +00:00
joki%netscape.com
d8749c3ce6 Fix for bug 162648, Call HandleDOMEventWithTarget when sending submit event since only DOM processing is required. sr:jst, r:bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127423 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:33:40 +00:00
aaronl%netscape.com
1abf13decd Not part of build. Type ahead find, removing superfluous file
git-svn-id: svn://10.0.0.236/trunk@127421 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:22:19 +00:00
aaronl%netscape.com
c451e95228 Not part of build. Dividing type ahead find into sub directories src resources public
git-svn-id: svn://10.0.0.236/trunk@127420 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:21:00 +00:00
wtc%netscape.com
90a3d136f5 Bug 160030: check for __sparc and __i386, which is defined by the Solaris
compilers and gcc in strict ANSI conformance mode.  sparc and i386 are not
defined by the compilers in strict ANSI conformance mode.
Modified Files: _solaris32.cfg _solaris64.cfg


git-svn-id: svn://10.0.0.236/trunk@127419 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:04:03 +00:00
gerv%gerv.net
efa3c555e4 Bug 162066 - Fix callers of ThrowCodeError to use messages in code-error.html.tmpl. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127418 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:01:30 +00:00
bzbarsky%mit.edu
8df67b73a5 Fix placement of positioned elements with auto "top". Bug 44508, patch
by Mats Palmgren (mats.palmgren@bredband.net), r=dbaron, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@127417 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 23:00:23 +00:00
gerv%gerv.net
c069c70dfc Bug 162068 - Fix callers of ThrowUserError to use messages.html.tmpl. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127416 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:57:21 +00:00
cmanske%netscape.com
e883d3db74 Change tab label from 'Show All Tags' to 'HTML Tags'. b=152309, r=brade,sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127415 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:42:11 +00:00
cmanske%netscape.com
e52da9770b Set radio button to 'Cell' if cell is selected when setting background color. b=98194, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127414 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:40:18 +00:00
pinkerton%netscape.com
a01378c1bf pull base prefpanel into the privacy panel target
git-svn-id: svn://10.0.0.236/trunk@127413 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:31:01 +00:00
nhotta%netscape.com
2547b4f920 Changed a deafult value of "mailnews.reply_header_locale" from "en-US" to empty,
bug 140882, r=rchen, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@127412 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:30:31 +00:00
pinkerton%netscape.com
15a2cb745f Move cache clearing button to Navigation panel, add security prefs to
Privacy panel. make privacy panel inherit from base prefpanel class.


git-svn-id: svn://10.0.0.236/trunk@127411 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:30:17 +00:00
wtc%netscape.com
9ce59ef31c Bug 162930: fixed the bug that PR_GetSystemInfo always returns "sparc"
as PR_SI_ARCHITECTURE on Solaris, even though Solaris also runs on x86.
Thanks to Sonja Mirtitsch <sonja.mirtitsch@sun.com> for the fix.


git-svn-id: svn://10.0.0.236/trunk@127410 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:25:42 +00:00
bryner%netscape.com
2eff10c2c7 Static build changes for universalchardet (bug 162851).
git-svn-id: svn://10.0.0.236/trunk@127409 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:24:54 +00:00
jst%netscape.com
028064e4f0 Mostly cleanup of the typeaheadfind code, not part of the build.
git-svn-id: svn://10.0.0.236/trunk@127408 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:24:26 +00:00
alecf%netscape.com
627a8e0aac ok, hopefully the last attempt to fix bug 12493, normalizing URLs for global history
this time cache the most common URI objects for links that appear on a webpage - http, https, ftp
r=radha, sr=darin


git-svn-id: svn://10.0.0.236/trunk@127407 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:21:40 +00:00
cmanske%netscape.com
365acd3bec Dont allow arrow key event processing in radiogroup unless focus is on radio button. b=149517, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127406 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 22:12:01 +00:00
pinkerton%netscape.com
fa2c794604 Pull in universal charset decoder in dylib build. update include paths for
navigation pref panel for cache. (bug 162851)


git-svn-id: svn://10.0.0.236/trunk@127405 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:51:55 +00:00
cmanske%netscape.com
33afebeaeb Fix upper limits for input fields in Composer property dialogs. b=155193, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127403 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:49:40 +00:00
cmanske%netscape.com
0c8841c982 Part of fix to show tooltip when Advanced Edit button is disabled. b=161113, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127402 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:44:33 +00:00
bryner%netscape.com
6eb3610ee2 Bug 162917 (carried over from bugscape 19001) - initial focus problems with sheets. Patch by sfraser, r=sdagley, sr=bryner.
git-svn-id: svn://10.0.0.236/trunk@127401 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:31:47 +00:00
jst%netscape.com
8f63151f8f Fixing bug 159236. Store interned JSString's as jsval's in stead of as JSString*'s to avoid having to convert between the two all the time. r=peterv@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@127400 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:18:20 +00:00
sfraser%netscape.com
bd4b443af6 Fix some site icons not displaying properly.
git-svn-id: svn://10.0.0.236/trunk@127399 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:13:27 +00:00
seawood%netscape.com
0de4816dc3 Use PR_snprintf instead of snprintf.
Fixing hpux tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@127398 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:09:40 +00:00
mikep%oeone.com
56a638c8e6 Removing extra window.
git-svn-id: svn://10.0.0.236/trunk@127397 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:02:01 +00:00
mikep%oeone.com
0183c42c97 Fixing bug 160225.
git-svn-id: svn://10.0.0.236/trunk@127396 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:01:07 +00:00
jst%netscape.com
e0464bdb81 Fixing part of bug 96108. Don't ask for items in an empty nsVoidArray, and speed things up a bit too. r=pavlov@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@127395 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 21:00:58 +00:00
pinkerton%netscape.com
ca11412c22 fix problem where we were ignoring the return value reading home page pref
git-svn-id: svn://10.0.0.236/trunk@127394 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:52:13 +00:00
cmanske%netscape.com
2bfe62af91 Retain 'Dont use alt text' check state after using Advanced Edit in Image Properties. b=145047, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127393 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:51:24 +00:00
cmanske%netscape.com
a1f6c4c749 Disable 'Save password' in Composer publishing when PasswordManager is turned off. b=143154, r=brade, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@127392 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:48:08 +00:00
mikep%oeone.com
bc6912c54b Fixing bug 158557.
git-svn-id: svn://10.0.0.236/trunk@127391 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:46:04 +00:00
pinkerton%netscape.com
25afaeebc8 Remove a hack used to workaround having gecko views in the sidebar. fixes
cmdkeys working when opening the sidebar (bug 152612)


git-svn-id: svn://10.0.0.236/trunk@127390 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:32:06 +00:00
mikep%oeone.com
b1ba7e22ed Fixing import export bugs.
git-svn-id: svn://10.0.0.236/trunk@127388 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:14:46 +00:00
mikep%oeone.com
32934ae265 FIxing skin problem and week view problems.
git-svn-id: svn://10.0.0.236/trunk@127387 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:14:02 +00:00
mikep%oeone.com
d841da107e Fixing week view.
git-svn-id: svn://10.0.0.236/trunk@127386 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 20:10:04 +00:00
sfraser%netscape.com
e291360967 Adding a Get Info item to the Edit menu, which, for now, only applies to the selected bookmark in the bookmarks sidebar. This is part of bug 155484.
git-svn-id: svn://10.0.0.236/trunk@127385 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 19:39:14 +00:00
pinkerton%netscape.com
bd4be00b01 Remove pause/resume button from d/l progress dialog and ui strings (bug 157826)
git-svn-id: svn://10.0.0.236/trunk@127384 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 19:15:24 +00:00
pinkerton%netscape.com
b816080750 updated icon from ugo
git-svn-id: svn://10.0.0.236/trunk@127383 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 19:05:52 +00:00
sfraser%netscape.com
bb6142fa85 Fixing alignment of proxy icon so that site icons don't clip the text border.
git-svn-id: svn://10.0.0.236/trunk@127382 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 19:01:51 +00:00
sfraser%netscape.com
ed28ec690f Fix build warning by adding an include.
git-svn-id: svn://10.0.0.236/trunk@127381 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:58:41 +00:00
pinkerton%netscape.com
e2eaf17e29 updated icons from ugo
git-svn-id: svn://10.0.0.236/trunk@127380 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:55:54 +00:00
darin%netscape.com
f4ac8b67b2 second attempt at landing fix for bug 157131 "nsIIOService mods in preparation for freezing" r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127379 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:38:46 +00:00
pinkerton%netscape.com
043f466d14 Untitled -> untitled per aqua guidelines
git-svn-id: svn://10.0.0.236/trunk@127378 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:21:13 +00:00
sfraser%netscape.com
795a3f15e2 Changes for bug 160725: adding site icon support to the proxy icon, tabs, bookmarks (in sidebar, tolbar and menu). Site icons are fetched via the SiteIconProvider, which uses the more generic RemoteDataProvider under the hood. RemoteDataProvider talks to necko, getting the resulting data into an NSData. Notifications are used to indicate to listeners when the load is done.
Site icons that are loaded to into the necko cache. We also cache data for missing site icons, to avoid continual refetches.

Site icons are on by default, but can be turned off via the "browser.chrome.site_icons" pref.


git-svn-id: svn://10.0.0.236/trunk@127377 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:08:12 +00:00
sfraser%netscape.com
71f49a5cb1 Project changes for bug 160725: add RemoteDataProvider.mm/h, SiteIconProvider.mm/h, and include paths into dist/include/nkcache.
git-svn-id: svn://10.0.0.236/trunk@127376 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:04:24 +00:00
sfraser%netscape.com
6d812d3f55 Nib changes for bug 160725: hook up mProxyIcon on the BrowserWindowController.
git-svn-id: svn://10.0.0.236/trunk@127375 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:03:38 +00:00
mkaply%us.ibm.com
dc440a3b15 Package file for OS/2
git-svn-id: svn://10.0.0.236/trunk@127374 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 18:02:32 +00:00
pinkerton%netscape.com
41182c893a pull in mimetypes.rdf since we're using helperAppDlg.js (bug 157564) r=ccarlen/sr=sfraser/a=asa.
git-svn-id: svn://10.0.0.236/trunk@127372 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 17:54:25 +00:00
pinkerton%netscape.com
6e3d9a0224 fix typos in moz-appearance stuff (bug 162674) r=bryner/sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127371 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 17:50:57 +00:00
john.marmion%ireland.sun.com
2bd1d69af8 fix for #139786: some LDAP attribute values not returned in third party search. r=dmose,sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@127370 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 14:51:51 +00:00
mkaply%us.ibm.com
da40f1c4d7 #162387
r=pedemont, no sr.

OK, I need this in. OS/2 menus are unusable without this.
Basically, when 117730 went in, it regressed this because
the fix for 101771 was no longer needed.

This is backing out the 101771 fix.

I have verified this doesn't break Windows.
The only other platform that could be an issue is Mac, but
it shouldn't be because Mac uses native menus. No other
platform handles clipSiblings.

If this does break something, you would see it as menus
appearing behind other menus.


git-svn-id: svn://10.0.0.236/trunk@127369 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 14:49:44 +00:00
mkaply%us.ibm.com
f2fbc5ec8a #162605
r=bryner
Copy OS/2 icons into chrome


git-svn-id: svn://10.0.0.236/trunk@127368 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 12:34:50 +00:00
axel%pike.org
069f15bbb5 bug 46754, remove transformiix copy of expat. Not part of build. build transformiix standalone on windows again.
changes to build system are r=cls, changes to transformiix r=peterv


git-svn-id: svn://10.0.0.236/trunk@127362 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 08:52:59 +00:00
caillon%returnzero.com
ae64a6d0b7 134395 Add 'tree status' to QA menu
Patch by magicdice@hotmail.com
r=timeless sr=blake


git-svn-id: svn://10.0.0.236/trunk@127361 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 08:51:43 +00:00
caillon%returnzero.com
7d1fd573b7 155794 Make nsXULElement::SetPersist() do the right thing.
Patch by ndeakin@sympatico.ca
r=jrgm sr=blake


git-svn-id: svn://10.0.0.236/trunk@127360 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 08:41:36 +00:00
gerv%gerv.net
8d7c9af492 Bug 53764 - Netscape Confidential and Proprietary source code in the mozilla source tree. Patch by moz@compsoc.man.ac.uk; r=gerv, auto-sr=brendan (comment changes only.)
git-svn-id: svn://10.0.0.236/trunk@127359 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 07:20:52 +00:00
gerv%gerv.net
8fe720408f Bug 162216 - colchange.cgi, buglist.cgi and page.cgi messages should be l10nable. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@127358 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 07:14:34 +00:00
asa%mozilla.org
4663793861 fixing description
git-svn-id: svn://10.0.0.236/trunk@127357 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 06:59:12 +00:00
pete.zha%sun.com
be64c8d42d [ps] envvar should not be freed after PR_SetEnv
bug=161634 r=dcone sr=bzbarsky
patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@127355 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 06:49:40 +00:00
gerv%gerv.net
d93355f3ed Bug 162066 - Fix callers of ThrowCodeError to use messages in code-error.html.tmpl. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127354 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 06:43:47 +00:00
igor%mir2.org
0c1407d0c4 Fixing ArrayIndexOutOfBoundsException reported by Steven Beal caused by broken code to setup endLine in SourceInfo.updateLineInfo.
git-svn-id: svn://10.0.0.236/trunk@127353 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 06:42:45 +00:00
seawood%netscape.com
829192b1b5 Removing unused _NS_IMPL_LAYOUT define.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #162308 r=cls


git-svn-id: svn://10.0.0.236/trunk@127350 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:39:40 +00:00
aaronl%netscape.com
be513f584e Not part of build. Bug 30088 - type ahead find. Simplify code to go from docshell -> dom window using nsIInterfaceRequestor
git-svn-id: svn://10.0.0.236/trunk@127349 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:36:54 +00:00
seawood%netscape.com
f095953fcc Remove unused _NS_IMPL_COOKIE/NS_COOKIE defines.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #162402 r=cls


git-svn-id: svn://10.0.0.236/trunk@127348 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:34:26 +00:00
blakeross%telocity.com
46764820ed *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@127347 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:26:39 +00:00
blakeross%telocity.com
fa1a26d51d New privacy pref panel, more pref cleanup.
git-svn-id: svn://10.0.0.236/trunk@127346 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:17:59 +00:00
varga%netscape.com
53215663c6 Fix for bug 142642 - Tree should not scroll on dragover immediately after that mouse enters the drag scroll.
r=bryner, sr=bz
Thanks to Pierre Chanial for initial patch.


git-svn-id: svn://10.0.0.236/trunk@127345 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 05:06:19 +00:00
aaronl%netscape.com
f1460c19f3 Not part of build. Bug 30088 - type ahead find. Simplify code to go from docshell -> dom window using nsIInterfaceRequestor
git-svn-id: svn://10.0.0.236/trunk@127344 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 04:57:33 +00:00
mkaply%us.ibm.com
c2cc662ad8 #159729
r=pedemont, sr=blizzard
OS/2 only - don't activate a frame if the parent isn't visible


git-svn-id: svn://10.0.0.236/trunk@127343 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 04:09:30 +00:00
mkaply%us.ibm.com
ccdcd6f8db #162605
r=pedemont, sr=blizzard
OS/2 only - support for SetIcon


git-svn-id: svn://10.0.0.236/trunk@127342 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 04:03:49 +00:00
bzbarsky%mit.edu
dd8a124fb9 Fix crash; we may have a #text node. Bug 159359, r=sicking, sr=jst
git-svn-id: svn://10.0.0.236/trunk@127339 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 02:28:54 +00:00
bolian.yin%sun.com
8b86f1dc0f Bug 160069, Mailnews crashes by DND, patch by robin.lu@sun.com, r=ducarroz, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@127338 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 02:07:48 +00:00
alecf%netscape.com
39292fd43d oops, this wasn't part of my backout
git-svn-id: svn://10.0.0.236/trunk@127337 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 01:45:39 +00:00
alecf%netscape.com
f1ec72c0ba back myself out to see if I caused the pageload times to go up
I'm sure its me :(


git-svn-id: svn://10.0.0.236/trunk@127336 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 01:44:51 +00:00
nhotta%netscape.com
6abbc0b8d3 For HTTP redirect, inherit the origin charset of the current uri for a new uri.
patch by darin,
bug 161174, r=nhotta, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@127334 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 01:16:33 +00:00
nhotta%netscape.com
df3e990491 For filename download, ignore http header's filename if it contains 8bit characters,
bug 161174, r=ftang, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@127333 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 01:15:58 +00:00
despotdaemon%netscape.com
3c47350d76 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127331 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:53:16 +00:00
despotdaemon%netscape.com
2bf77b861e Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127329 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:39:16 +00:00
despotdaemon%netscape.com
fe2be88da2 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127328 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:38:20 +00:00
bryner%netscape.com
984e371c39 Bug 157830 - add per-window taskbar icons for Linux. Move the windows icon files into xpfe/bootstrap/icons/windows. r=pavlov, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@127327 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:36:57 +00:00
blakeross%telocity.com
a84ec2508c Tweaking.
git-svn-id: svn://10.0.0.236/trunk@127326 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:36:11 +00:00
blakeross%telocity.com
5fe7621a34 Bookmarks QS.
git-svn-id: svn://10.0.0.236/trunk@127324 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:31:39 +00:00
despotdaemon%netscape.com
d18992bed3 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127323 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:31:16 +00:00
despotdaemon%netscape.com
7b1375cb95 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127322 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:30:13 +00:00
despotdaemon%netscape.com
f4b5363151 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127321 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:29:38 +00:00
blakeross%telocity.com
d358c0b4d5 Readd import/export to File.
git-svn-id: svn://10.0.0.236/trunk@127320 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:29:19 +00:00
despotdaemon%netscape.com
90e887b456 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127319 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:28:45 +00:00
despotdaemon%netscape.com
a2b36fc106 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127318 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:28:02 +00:00
despotdaemon%netscape.com
bbbc594b88 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127317 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:27:27 +00:00
despotdaemon%netscape.com
8b786d6d5d Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127316 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:26:58 +00:00
despotdaemon%netscape.com
579c867fd7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127315 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:26:23 +00:00
despotdaemon%netscape.com
edf5b046fa Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127314 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:25:50 +00:00
blakeross%telocity.com
6daa7dd797 Forking bookmarks, adding QS.
git-svn-id: svn://10.0.0.236/trunk@127313 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:22:41 +00:00
despotdaemon%netscape.com
a38b737cf9 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127312 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:22:38 +00:00
despotdaemon%netscape.com
3450fa091d Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127311 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:20:51 +00:00
despotdaemon%netscape.com
f03078dc18 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127310 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:20:03 +00:00
serge%netscape.com
70b1ca2f00 fix irix redness, removing ^M
git-svn-id: svn://10.0.0.236/trunk@127309 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:16:56 +00:00
despotdaemon%netscape.com
de673d65af Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127308 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:16:44 +00:00
despotdaemon%netscape.com
8a61fd45c0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127307 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:15:04 +00:00
despotdaemon%netscape.com
121f52815a Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127306 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:14:25 +00:00
despotdaemon%netscape.com
219e1c0cb7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127305 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:13:53 +00:00
despotdaemon%netscape.com
f9b101048f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127304 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:12:56 +00:00
depstein%netscape.com
955411de6f Updated prompt and dialog Component impls to be compatible with MfcEmbed. Some general code cleanup as well.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@127303 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:12:26 +00:00
despotdaemon%netscape.com
7ab1e33a75 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127302 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:12:25 +00:00
despotdaemon%netscape.com
cbc374e7af Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127301 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-15 00:11:38 +00:00
nicolson%netscape.com
16f89c85e1 Fix 162761: PK11_GetKeyGen should work if you pass in a keygen alg.
Make PK11_GetKeyGen an identity function for keygen algs.


git-svn-id: svn://10.0.0.236/trunk@127300 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:57:45 +00:00
kaie%netscape.com
0b1add5b4a Patch from bug 87902 to fix SSL/TLS logic.
- make TLS intolerant server detection over proxies work
  (this bug 87902)
- on connection failure, only retry without TLS when it is really
  likely to help (bug 149910)
- remove obsolete workarounds in SSL i/o layer
  (see removed comments in patch)
- avoid to confuse programmers reading code,
  by renaming TLSStepUp (which means something else)
  to the correct term STARTTLS (what the code is actually doing).
  (As suggested by nelsonb)
- If an invalid or expired etc. server certificate is presented,
  a warning is shown. If the user decides to cancel,
  network activity should stop immediately.
  (we currently warn multiple times) (bug 87209)

r=javi/darin/ducarroz/dmose sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127298 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:43:28 +00:00
bbaetz%student.usyd.edu.au
1f5b944420 Bug 151619 - Problem with the regex in checksetup.pl to find dependancies
r=jouni, joel


git-svn-id: svn://10.0.0.236/trunk@127297 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:32:04 +00:00
seawood%netscape.com
5d1bcea3f4 Removing old unused module prefix files.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #162186 r=cls


git-svn-id: svn://10.0.0.236/trunk@127296 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:09:28 +00:00
seawood%netscape.com
f05c312d73 Use shared prefix files instead of old module specific ones.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #162186 r=cls


git-svn-id: svn://10.0.0.236/trunk@127295 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:07:41 +00:00
seawood%netscape.com
5b5ba80d18 Fix standalone xpcom builds for OSX
git-svn-id: svn://10.0.0.236/trunk@127294 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:04:49 +00:00
nicolson%netscape.com
e72dad9571 Remove try/catch block when loading libjss. This allows any UnsatisfiedLinkError
to get thrown to the application, where it can print it out with all its
information. Also stop checking for jssjava.


git-svn-id: svn://10.0.0.236/trunk@127293 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 23:00:45 +00:00
nicolson%netscape.com
065f052977 fine-tune javadoc commands.
git-svn-id: svn://10.0.0.236/trunk@127292 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:55:47 +00:00
alecf%netscape.com
16e7daf1b9 really fix bug 12493 - sr=darin, r=radha
move the check for mIOService into its own check


git-svn-id: svn://10.0.0.236/trunk@127289 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:43:05 +00:00
bzbarsky%mit.edu
0e3e4ceb45 Clean up the mLanguage string. Bug 35768 add-on, rs=dbaron, r=sicking
git-svn-id: svn://10.0.0.236/trunk@127288 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:37:33 +00:00
serge%netscape.com
42388fc100 ix 109739, removed nsIRegistry and switched to flat file support for caching plugins info, r=av, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@127285 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:31:59 +00:00
naving%netscape.com
c618ce42b3 162156 r=cavin sr=bienvenu get db only if you are doing db batching
git-svn-id: svn://10.0.0.236/trunk@127284 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:31:49 +00:00
sspitzer%netscape.com
7c32e0d772 extensibility hooks for mailnews FE and IMAP back end.
see bug #161226.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@127283 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:12:32 +00:00
pinkerton%netscape.com
2f535afdfb Register for undo/redo notifications so we can hide the suggestions
list. Fixes the urlbar font size. (bug 159606)


git-svn-id: svn://10.0.0.236/trunk@127282 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:11:02 +00:00
ducarroz%netscape.com
0093113f88 Fix for bug 162709. We need to check the pointer before we access it. This is a regression caused by my previous checkin for bug 71301. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127281 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:03:05 +00:00
cbiesinger%web.de
619bad24cd bug 84542 r=timeless sr=bzbarsky disable view|page source for images
git-svn-id: svn://10.0.0.236/trunk@127280 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:01:44 +00:00
naving%netscape.com
d1b3abec71 162156 r=cavin sr=bienvenu disable folder count updation while searching
git-svn-id: svn://10.0.0.236/trunk@127278 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 22:00:20 +00:00
mscott%netscape.com
1fdaeadf0f Bug #162569 --> modify quick search apis to make them more generic so mail views can use them.
r=naving
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127277 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 21:57:35 +00:00
mscott%netscape.com
b8ce801743 Bug #162563 --> add a search attribute and value for labels so you can search on labels
r=naving
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@127276 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 21:56:57 +00:00
pinkerton%netscape.com
b8befe80b3 Stop the throbber from animating when it's been removed from the toolbar
(bug 155869)


git-svn-id: svn://10.0.0.236/trunk@127275 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 21:46:01 +00:00
jst%netscape.com
ec845ed149 Fixing typo's in comments. Typo's found by dbaron (bug 162526).
git-svn-id: svn://10.0.0.236/trunk@127273 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 20:48:55 +00:00
relyea%netscape.com
1364a51ba2 bug 161552: Make the recipient list traversal functions call the internal
nsstoken_FindCertByIssuerAndSN() function to gain the benefit of the fixed
Searching code.


git-svn-id: svn://10.0.0.236/trunk@127272 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 20:42:40 +00:00
pinkerton%netscape.com
9925241d5f Fix padding issues and a memory leak (bug 162205)
git-svn-id: svn://10.0.0.236/trunk@127270 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 19:37:40 +00:00
shanjian%netscape.com
abf2bedad3 Back out my previous change because it cause regression 162670.
git-svn-id: svn://10.0.0.236/trunk@127269 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 19:18:27 +00:00
pinkerton%netscape.com
0a5f439f93 remove hack for unsupported protocols now that necko correctly
dispatches them for us (bug 145807)


git-svn-id: svn://10.0.0.236/trunk@127268 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 19:10:26 +00:00
dbaron%fas.harvard.edu
b1e72cadfc Remove extraneous line pointed out by peterv. b=35768
git-svn-id: svn://10.0.0.236/trunk@127263 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 14:23:56 +00:00
pinkerton%netscape.com
832bb956ec a double-click to dismiss a menu on a folder would cause us to popup
the menu again. check for that case (bug 162367)


git-svn-id: svn://10.0.0.236/trunk@127262 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 14:20:09 +00:00
dbaron%fas.harvard.edu
43e046d34d Attempt to fix page load regression. b=35768
git-svn-id: svn://10.0.0.236/trunk@127261 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 14:01:39 +00:00
bbaetz%student.usyd.edu.au
28c5771cf0 Bug 153578 - Attachment modified date is meant to be attachment creation
date
r=preed, joel


git-svn-id: svn://10.0.0.236/trunk@127260 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 13:42:33 +00:00
dbaron%fas.harvard.edu
23762bb47e Remove unused method nsIStyleRule::GetStrength. b=162492 r=kin sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127259 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 13:16:35 +00:00
glazman%netscape.com
73219baa16 make CSS mode the default in Composer and hide text highlight button when not in CSS mode; b=161303, r=neil@parkwaycc.co.uk, sr=kin
git-svn-id: svn://10.0.0.236/trunk@127258 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 13:12:52 +00:00
dbaron%fas.harvard.edu
87f1ec1ab2 Back out most of patch for bug 154910 to fix crash, since nsLineLayout need not do all its allocation without other things lower on the stack. b=162516
git-svn-id: svn://10.0.0.236/trunk@127257 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 13:00:16 +00:00
dbaron%fas.harvard.edu
47bcd9d189 Mark freed memory in stack arena with 0xdd. b=161283 sr=bzbarsky r=kin
git-svn-id: svn://10.0.0.236/trunk@127256 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:49:24 +00:00
dbaron%fas.harvard.edu
83790ad136 Use PRSize to fix alignment problems on some platforms, although it doesn't guarantee a fix for all platforms. Patch from <scooter@gene.com>. b=160535 r=dbaron sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127255 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:47:18 +00:00
dbaron%fas.harvard.edu
7bb0d33a99 Don't repeatedly reapply the carried out bottom margin when clearing long words past floats. Fixes infinite loop in the case where the margin is negative. b=153429 sr=bzbarsky r=roc+moz
git-svn-id: svn://10.0.0.236/trunk@127254 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:44:40 +00:00
dbaron%fas.harvard.edu
e02d3833a4 Make the declarations of colors for radio buttons and check boxes important, so they are unstylable (and styles in web pages don't cause them to disappear). b=58755 r=jkeiser sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127253 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:42:03 +00:00
antonio.xu%sun.com
6e54672f56 replace the hardcode of "@mozilla.org/embedcomp/dialogparam;1" with NS_DIALOGPARAMBLOCK_CONTRACTID
Bug 158608 r=Henry sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127252 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:39:03 +00:00
dbaron%fas.harvard.edu
e58a8cf95b Implement CSS2 :lang() selector. Fix problems with dynamic changes of 'quotes' property. Patch mostly by Ulrich Drepper (drepper@redhat.com), with some changes by Pierre Saslawsky and dbaron. r=rbs, dbaron sr=bzbarsky b=35768
git-svn-id: svn://10.0.0.236/trunk@127250 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 12:34:39 +00:00
bbaetz%student.usyd.edu.au
b2c38c611a Bug 162642 - Cannot accept bugs if requiremilestone is on; regression from
bug 43600
r=preed x2


git-svn-id: svn://10.0.0.236/trunk@127249 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 11:55:24 +00:00
timeless%mac.com
64bcc706fa Bug 153655 aboutCommunicatorCmd.label is unused
also removing:
howTutorialCmd.label
helpChannelCmd.label
r=biesi sr=bz


git-svn-id: svn://10.0.0.236/trunk@127247 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 10:13:28 +00:00
bryner%netscape.com
cb63bd6b37 phoenix only - not part of build
Change the DDE application name so that you can start Phoenix with Mozilla running.  r=hyatt, cls.


git-svn-id: svn://10.0.0.236/trunk@127243 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 09:46:17 +00:00
bolian.yin%sun.com
596788743c Bug 148996, enable the feature of Drag and Drop on Bookmarks button on the personal toolbar. r=bryner, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@127242 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 09:41:07 +00:00
antonio.xu%sun.com
6698b4732a File | New | Folder menu needs to be disabled while offline
Bug 102284 r=ssu sr=bienvenu patch=calvin.liu@sun.com


git-svn-id: svn://10.0.0.236/trunk@127241 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 06:33:06 +00:00
henry.jia%sun.com
918761ba12 fix of Patch for Bug 75081: nsCString::FindChar is stupid. Extremely stupid
Patch by bratell@lysator.liu.se
Fix by Henry.Jia@sun.com
r=bryner


git-svn-id: svn://10.0.0.236/trunk@127239 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 05:37:48 +00:00
henry.jia%sun.com
cebc56dd96 fix of Patch for Bug 75081: nsCString::FindChar is stupid. Extremely stupid
Patch by bratell@lysator.liu.se
Fix by Henry.Jia@sun.com
r=jag, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127238 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 05:06:09 +00:00
henry.jia%sun.com
c700eee56c Patch for Bug 75081: nsCString::FindChar is stupid. Extremely stupid
Patch by bratell@lysator.liu.se
r=jag, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127237 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 04:13:38 +00:00
henry.jia%sun.com
d95178ecfa Patch for bug 77221: Options menu for Format doesn't work like stated in spec
Patch by Calvin.Liu@sun.com
r=henry,r=neil,r=varada, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@127235 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 02:48:14 +00:00
aaronl%netscape.com
2bb9c1b3e5 Not part of build. Bug 30088, type ahead find. Fixing the way we listen for focus events, and the way we clean up when a window closes
git-svn-id: svn://10.0.0.236/trunk@127234 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 02:41:22 +00:00
bzbarsky%mit.edu
7b3559d1f9 Fieldset should look at its computed width even when there is no
legend.  Bug 162502, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@127232 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 02:28:23 +00:00
shanjian%netscape.com
5d4e469ac5 #57332, Quick typing erases a converting text
previous patch is incomplete. I forget one part.
Here is it.
p=shotaro  r=shanjian, sr=kin


git-svn-id: svn://10.0.0.236/trunk@127231 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 01:07:05 +00:00
bbaetz%student.usyd.edu.au
b19b95beef Bug 162438 - fix permissions/tests for Bugzilla/ directory
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@127230 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 00:59:47 +00:00
blakeross%telocity.com
5c3806fde7 Only show security icon when the page is secure; get rid of cruft at right of Classic statusbar;
git-svn-id: svn://10.0.0.236/trunk@127226 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 00:22:12 +00:00
brendan%mozilla.org
6fc223e905 Avoid reloading rt->interruptHandler on each cycle of the bytecode interpreter (121414, r=rginda, sr=jband).
git-svn-id: svn://10.0.0.236/trunk@127225 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 00:17:27 +00:00
pschwartau%netscape.com
204c964041 Amending testcase to expect a run-time "out of memory" error. Still tests that we don't crash.
git-svn-id: svn://10.0.0.236/trunk@127224 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 00:12:54 +00:00
morse%netscape.com
8253853252 bug 156922, dynamic updating of cookie manager dialog, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127223 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-14 00:05:17 +00:00
heikki%netscape.com
6f423be454 Fix OS/2 bustage - const should not be here.
git-svn-id: svn://10.0.0.236/trunk@127221 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:57:36 +00:00
waldemar%netscape.com
4a591b48c0 Added another test case
git-svn-id: svn://10.0.0.236/trunk@127220 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:56:53 +00:00
waldemar%netscape.com
6447fb5e48 Many changes, including: removed user-definable operators and units; added long, ulong, and character; reorganized frame structures; and added more directive code.
git-svn-id: svn://10.0.0.236/trunk@127219 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:56:31 +00:00
waldemar%netscape.com
fcb4bfb5fc Partially implemented integer-range type. Changed bottom from an expression to a statement.
git-svn-id: svn://10.0.0.236/trunk@127217 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:54:10 +00:00
waldemar%netscape.com
2a4ca124ef Partially implemented integer-range type. Allowed unions of tags with sets or vectors. Allowed testing of a float64 to see whether it's an integer.
git-svn-id: svn://10.0.0.236/trunk@127216 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:53:16 +00:00
shanjian%netscape.com
68a2861b2a #161328, CJK string is not breakable before joined frames
CJK character is marked as breakable after first word.
For joined piece, check if it is breakable in between.

r=rbs, sr=boris zbarsky


git-svn-id: svn://10.0.0.236/trunk@127215 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:50:42 +00:00
shanjian%netscape.com
3e0bcd1533 #57332 Quick typing erases a converting text
Let all ime/key message have the same priority.
p=shotaro kamio,   r=shanjian, sr=kin


git-svn-id: svn://10.0.0.236/trunk@127213 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:43:01 +00:00
darin%netscape.com
7c90640409 fixes bug 158500 "Binary data in multipart/x-mixed-replace get an extra line end when saved or viewed." r=dougt sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127211 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:39:36 +00:00
darin%netscape.com
d47c679513 fixes bug 162448 "Page takes loooong to load with pipelining enabled [IIS/5.0]"
r=gagan sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127210 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:37:22 +00:00
bzbarsky%mit.edu
d47090aca6 Fix crash bug 159359, patch by leon.zhang@sun.com, r=jkeiser, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127209 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:33:58 +00:00
sicking%bigfoot.com
594ba172c4 Bug 162398: Make XPath lexer look at entire qname when checking for operators.
r=Pike sr=bz


git-svn-id: svn://10.0.0.236/trunk@127208 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:30:04 +00:00
nhotta%netscape.com
d8ab8c9628 Get a doc charset and use it for nsIURI and removed unnecessary convert/escape part,
bug 162523, r=darin, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@127207 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:26:05 +00:00
sspitzer%netscape.com
295eb052b4 fix for #162577. problem with "retain all IMAP mail I've read", "retain all mail I've sent" code if we point to a non-ASCII folder. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127206 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:25:39 +00:00
ftang%netscape.com
e0bafde243 fix bug 111728. skik tec fallback if we are in latin, greek or cyrillic script. r=nhotta, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@127205 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 23:25:00 +00:00
darin%netscape.com
814c20da8a backing out jkeiser's last patch to fix linux orange, b=95622
git-svn-id: svn://10.0.0.236/trunk@127203 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 22:03:20 +00:00
blakeross%telocity.com
e13035349e Change name to "Phoenix'
git-svn-id: svn://10.0.0.236/trunk@127202 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 21:32:30 +00:00
ftang%netscape.com
7b5c5ce8ac update unihan to .uf .ut tools
not part of the build
1. corret the mistake in nonhan.txt
2. make the unihan2cns.pl able to process unihan-3.2.0.txt which
   contains characters beyond BMP
3. add cns.sh which generate .uf .ut files in uconv/ucvtw2


git-svn-id: svn://10.0.0.236/trunk@127199 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 20:37:09 +00:00
darin%netscape.com
b183626402 fixes bug 113206 "fix default port selection of nsHttpHandler::NewURI"
r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127198 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 20:33:45 +00:00
mkaply%us.ibm.com
88277938a3 Adding desktop icons for OS/2
git-svn-id: svn://10.0.0.236/trunk@127197 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 20:30:39 +00:00
darin%netscape.com
eff773293d fixes bug 102312 "URL: Href attributes spanning multiple lines are taken
to be relative rather than absolute links" r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127195 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 20:22:33 +00:00
jkeiser%netscape.com
364bd19f5e Make select restore by value, not position (bug 95622), r=rods@netscape.com, sr=dbaron@fas.harvard.edu
git-svn-id: svn://10.0.0.236/trunk@127194 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 19:59:12 +00:00
heikki%netscape.com
39e91316ee Bug 142812, setRequestHeader() should set, not add to, the header. r=timeless, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@127192 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 19:25:54 +00:00
radha%netscape.com
48cd1db9db Initial checkin for mozEmbed, XPCOM based embedding app. Not part of the mozilla trunk build.
git-svn-id: svn://10.0.0.236/trunk@127191 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 19:23:55 +00:00
radha%netscape.com
7f15f850cf Initial checkin for mozEmbed, XPCOM based embedding component. Not part of the mozilla build.
git-svn-id: svn://10.0.0.236/trunk@127190 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 19:21:53 +00:00
blythe%netscape.com
71db67adf7 Fix bug 119034, win startup/shutdown problem
r=pavlov,sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127189 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 18:45:41 +00:00
mkaply%us.ibm.com
98cd85cf87 #158472
r=dainis, sr=blizzard - platform specific
OS/2 only - handle transparency better when printing


git-svn-id: svn://10.0.0.236/trunk@127188 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 18:44:34 +00:00
heikki%netscape.com
fbe40219c9 Bug 63558, we now store XML declaration in the document and can serialize it. There is fix for 158617 as well, newlines behave properly around doctype. r=bzbarsky, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127185 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 18:41:16 +00:00
shannond%netscape.com
9fe54066dc Bugscape 18989 - Recapture Netscape.com dialog checkbox is UNCHECK by default
r=smeredith


git-svn-id: svn://10.0.0.236/trunk@127184 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 18:35:38 +00:00
rbs%maths.uq.edu.au
77ec48d8cd Fix the mishandling of generic fonts that led to pageload performance regression, b=161481, p=schofield@wolfram.com, r=jfrancis@netscape.com, sr=rbs@maths.uq.edu.au
git-svn-id: svn://10.0.0.236/trunk@127181 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 17:56:27 +00:00
cmanske%netscape.com
d52b4f74d6 Optimize RegExp code by using 'test' instead of 'match'. b=145373, fix by neil@parkwaycc.co.uk, r=cmanske, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127180 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 17:36:50 +00:00
cmanske%netscape.com
8b0254a1fa Optimize RegExp code by using 'test' instead of 'match'. b=145373, fix by neil@parkwaycc.co.uk, r=cmanske, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127179 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 17:30:23 +00:00
mostafah%oeone.com
b7d0d489ec Completely applied patch for bug 132231: No support for International characters
to fix this bug fro description,location,categories and url field


git-svn-id: svn://10.0.0.236/trunk@127178 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 17:15:49 +00:00
jkeiser%netscape.com
b1a1838c37 Rearrange how layout history keys are created (bug 162409), r=sicking@bigfoot.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@127177 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 17:14:18 +00:00
cmanske%netscape.com
ef138a1a16 Use 'insert/deleteNode' instead of 'insert/deleteElement' in dialog utilities. b=158881, r=neil@parkwaycc.co.uk, sr=kin
git-svn-id: svn://10.0.0.236/trunk@127175 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 16:59:49 +00:00
mkaply%us.ibm.com
6359f7ae44 #157773
r=mkaply, sr=blizzard - platform specific
OS/2 only - wrong mapping for OS/2 codepage 1386


git-svn-id: svn://10.0.0.236/trunk@127174 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 16:48:19 +00:00
timeless%mac.com
2410470389 Bug 129612 Remove "Enable Syntax Highlighting" checkbox
rossi@viel.org r=neil@parkwaycc.co.uk sr=blake


git-svn-id: svn://10.0.0.236/trunk@127173 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 16:28:44 +00:00
pinkerton%netscape.com
9316f443f7 going back to a NSTextField with field editor for the url bar. fixes a lot
of hacks and crashes with the NSTextView, while still managing to provide
undo support (bug 161621).


git-svn-id: svn://10.0.0.236/trunk@127172 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 16:23:42 +00:00
timeless%mac.com
59eac69dee Bug 155994 WARNING: the property generalNotCached already exists in pageInfo.properties
r=biesi sr=darin


git-svn-id: svn://10.0.0.236/trunk@127171 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 15:49:47 +00:00
mkaply%us.ibm.com
e7487e9c98 OS/2 bustage - needs to be in header too
git-svn-id: svn://10.0.0.236/trunk@127168 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 14:54:48 +00:00
cmanske%netscape.com
17a716305a Remove 'Save Image' menuitem from Composer context menu. b=156173, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127167 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 14:35:49 +00:00
cmanske%netscape.com
e7f27129b5 Support roman numerals in numbered list 'start' attribute. b=47686, most of fix by rcassin@supernova.org, finished by cmanske, r=cmanske,rcassin,neil@parkwaycc.co.uk, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@127166 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 14:30:57 +00:00
seawood%netscape.com
51b9dde07a Properly declare FreeCustomFlags as a callback function.
Fixing OS/2 tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@127165 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 14:25:41 +00:00
peterv%netscape.com
2f7532fe44 Fix warnings. r=Pike, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@127157 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 12:48:27 +00:00
peterv%netscape.com
d6550e87e2 Remove obsolete files. r=Pike.
git-svn-id: svn://10.0.0.236/trunk@127155 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 12:45:08 +00:00
peterv%netscape.com
7cca0f7076 Cleaning up after alecf.
git-svn-id: svn://10.0.0.236/trunk@127152 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 11:02:29 +00:00
peterv%netscape.com
1f7460d639 Remove obsolete file. r=Pike, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@127151 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 10:58:11 +00:00
glazman%netscape.com
fdbe66454f fixing bad regexp for rgv(r,g,b) parsing; b=161890, r=neil@parkwaycc.co.uk, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127150 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 10:11:30 +00:00
glazman%netscape.com
cfa669d292 ui.* prefs were not accepting #rrggbb colors; sr=161290, r=brade, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127149 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 10:07:16 +00:00
glazman%netscape.com
1bb26c5aaa fixing crash in Composer when head sub-elements are displayed; b=162062, r=brade, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127147 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 10:01:52 +00:00
cbiesinger%web.de
f3158a2dff bug 97123 part 2; patch by jrgm@netscape.com r=biesi sr=bzbarsky
fix regression - clicking on entries in autocomplete dropdown didn't work anymore


git-svn-id: svn://10.0.0.236/trunk@127146 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 09:58:47 +00:00
timeless%mac.com
7918198e43 Bug 161722 nsFilePicker.js has unreachable code (try block)
reverting errant reorder of typeof call
r=kaie sr=bz


git-svn-id: svn://10.0.0.236/trunk@127145 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 08:58:43 +00:00
blakeross%telocity.com
65c1bbb174 Decreasing timeout.
git-svn-id: svn://10.0.0.236/trunk@127144 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 08:43:45 +00:00
bbaetz%student.usyd.edu.au
330fb1a5ee Bug 24823 - show the last modified date at the top of show_bug
Patch by vkissoyan@yahoo.com (Vaskin Kissoyan)
r=bbaetz x2


git-svn-id: svn://10.0.0.236/trunk@127143 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 08:02:04 +00:00
bbaetz%student.usyd.edu.au
e78d2d8932 Bug 160710 - Taint checking causes problem with rename function
r=joel, preed


git-svn-id: svn://10.0.0.236/trunk@127142 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 06:57:03 +00:00
blakeross%telocity.com
1b136ac367 Making security dialogs default to off after one viewing *in Phoenix only*. Not part of normal build.
git-svn-id: svn://10.0.0.236/trunk@127140 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 05:25:34 +00:00
timeless%mac.com
7c2e477343 correcting interface name (fallout from bug 157624) used bug 158593
r=nick rs=mozbot pay attention to interface changes


git-svn-id: svn://10.0.0.236/trunk@127137 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 04:55:16 +00:00
blakeross%telocity.com
1bc63baab5 Fix back/fwd dropdowns.
git-svn-id: svn://10.0.0.236/trunk@127136 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 04:51:04 +00:00
timeless%mac.com
0097fe6c0b Bug 158593 [RFE] It should be posible to drag items from the media tab and the links tab in page info.
patch by nick@technisys.com.ar r=db48x sr=jst


git-svn-id: svn://10.0.0.236/trunk@127135 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 04:11:55 +00:00
pavlov%netscape.com
e9fae95520 fix for bug 117983. patch from Mark Wilkinson <mhw@kremvax.net>. r=pavlov sr=ben
git-svn-id: svn://10.0.0.236/trunk@127134 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 03:57:29 +00:00
blakeross%telocity.com
7dae83c475 More quicksearch work.
git-svn-id: svn://10.0.0.236/trunk@127133 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 03:51:34 +00:00
blakeross%telocity.com
b74ba86a42 Fixing QS.
git-svn-id: svn://10.0.0.236/trunk@127132 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 03:32:04 +00:00
blakeross%telocity.com
67e91fc1e8 Fix accesskey.
git-svn-id: svn://10.0.0.236/trunk@127131 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 03:29:33 +00:00
blakeross%telocity.com
123a6d2403 History quicksearch.
git-svn-id: svn://10.0.0.236/trunk@127130 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 03:25:13 +00:00
cltbld%netscape.com
9669923db1 Fixing startup test, url was hard-coded to mozilla way, pass in args now. -mcafee
git-svn-id: svn://10.0.0.236/trunk@127129 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 02:15:26 +00:00
cltbld%netscape.com
cd6117f7d0 Use startup test function instead of cut-paste now. -mcafee
git-svn-id: svn://10.0.0.236/trunk@127128 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 02:06:57 +00:00
bienvenu%netscape.com
8bd5af7904 fix case of include statement to fix build bustage
git-svn-id: svn://10.0.0.236/trunk@127127 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 02:02:02 +00:00
despotdaemon%netscape.com
cc3de312f8 Pseudo-automatic update of changes made by gilbert.fang@sun.com.
git-svn-id: svn://10.0.0.236/trunk@127126 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:50:21 +00:00
bienvenu%netscape.com
ba53b57418 add extensibility hooks for getting headers from msg parser, r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127125 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:44:26 +00:00
bienvenu%netscape.com
f046e1990b add extensibility hooks for running custom imap commands, custom keywords etc, r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127124 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:41:33 +00:00
bienvenu%netscape.com
44a321b6f4 add onEndMsgDownload notification, part of extensibility hooks r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127123 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:34:19 +00:00
bienvenu%netscape.com
ab93bb9740 add extensibility hooks for custom keywords in db view, r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127122 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:33:28 +00:00
bienvenu%netscape.com
81150cf8be add folder attribute to mailnews urls, part of extensibility hooks, r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127121 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:29:49 +00:00
bienvenu%netscape.com
663461bd69 add onEndMsgDownload notification, part of extensibility hooks r=cavin, sr=sspitzer 161226
git-svn-id: svn://10.0.0.236/trunk@127120 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:26:56 +00:00
blakeross%telocity.com
93e89d0310 #ifdef for phoenix, NPOB.
git-svn-id: svn://10.0.0.236/trunk@127119 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:21:48 +00:00
kaie%netscape.com
6c6468e474 b=154040 Deleting cert does nothing when key DB has no password
r=relyea sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127118 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:15:05 +00:00
darin%netscape.com
397cbbf55a fixes bug 161228 - socket transport DNS cache should map host:port -> ipaddress
instead of host -> ipaddress
r=mstoltz sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@127117 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 01:02:59 +00:00
blakeross%telocity.com
1386ad969e First cut at history quicksearch.
git-svn-id: svn://10.0.0.236/trunk@127116 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:58:35 +00:00
rbs%maths.uq.edu.au
8e78dce3cf bug 133761 - substitute leading _ with trailing _ for pure C/C++ compliance (uber-nit of brendan)
git-svn-id: svn://10.0.0.236/trunk@127115 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:52:38 +00:00
jst%netscape.com
ed117f9119 Fixing bug 156364. Laying the groundwork for associating more info with elements in the DOM, and moving event listener managers and range lists out of nsGenericElement slots. This change cuts down on the size of nsGenericElement. r=sicking@bigfoot.com, sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@127114 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:50:50 +00:00
relyea%netscape.com
abab6f2443 Mozilla bug 145228. Clear out buffer to protect agains lazy PKCS #11 modules.
git-svn-id: svn://10.0.0.236/trunk@127113 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:13:48 +00:00
despotdaemon%netscape.com
2e766a1bca Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127112 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:13:04 +00:00
alecf%netscape.com
9b6a558101 oops, fix triplicate registration on startup.. just removal of redundant lines of code
git-svn-id: svn://10.0.0.236/trunk@127111 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-13 00:01:46 +00:00
rbs%maths.uq.edu.au
10d3520e0c Improve the handling of the inter-space around invisible MathML characters, b=133761, r=roc+moz, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127110 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 23:30:35 +00:00
dougt%netscape.com
6afd367a8b moving NS_SoftwareUpdateRequestAutoReg to somewhere where it can do no harm.
git-svn-id: svn://10.0.0.236/trunk@127109 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 23:22:36 +00:00
dougt%netscape.com
45c723392e Fixes 550 errors cause ftp to spin. r=bbaetz, sr=darin, b=160714
git-svn-id: svn://10.0.0.236/trunk@127108 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 23:11:44 +00:00
dougt%netscape.com
7e85645323 fixing bustage
git-svn-id: svn://10.0.0.236/trunk@127107 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 22:47:10 +00:00
darin%netscape.com
a60133bb26 fixes bug 151867 - file channel should implement nsIUploadChannel
r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127106 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 22:44:04 +00:00
dougt%netscape.com
f54084ac39 removes StartupTasks from header
git-svn-id: svn://10.0.0.236/trunk@127102 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 22:10:04 +00:00
dougt%netscape.com
d1fc1c4b9d Fixes NS_InitEmbedding unconditionally calls AutoRegister. This also removes xpinstall from using component.reg which I believe is the last users of this file. r=chak,dveditz sr=bryner b=149208
git-svn-id: svn://10.0.0.236/trunk@127101 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 22:09:25 +00:00
akkana%netscape.com
8b3b7ee76b 160486: prevent double 'not found' dialog. Fix from Harry Lu (harry.lu@sun.com), r=me, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@127100 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:57:00 +00:00
ftang%netscape.com
bea6b1f22a fix bug 137695, add japanese ime reconversion to mac, r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@127099 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:56:36 +00:00
alecf%netscape.com
1e9863285e oops, remove references to now non-existant MANIFEST files (does not affect build, just cleans things up)
git-svn-id: svn://10.0.0.236/trunk@127098 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:47:31 +00:00
darin%netscape.com
bc9e5780e4 fixes bug 150604 - digest authentication problem: Mozilla ignores the stale
flag from WWW-Authenticate Response Header.
patch=pach@cs.cmu.edu r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@127097 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:38:59 +00:00
sgehani%netscape.com
b031266705 Fix ``Sidebar fails to select a panel when told to do so''.
b=158736; r=bryner; sr=blake


git-svn-id: svn://10.0.0.236/trunk@127096 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:20:02 +00:00
dcone%netscape.com
0b02748feb b=157160,157521 r=rods sr=kin. Fixes a GDI leak and will optimize all images when read in.. not at paint time.
git-svn-id: svn://10.0.0.236/trunk@127095 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 21:18:29 +00:00
morse%netscape.com
e7524693b2 bug 157038, dynamic updating of password manager dialog, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127093 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 20:51:27 +00:00
alecf%netscape.com
ce51ab0f81 oops, I handled a cvs merge poorly - remove redundant lines in Makefile.in to fix bustage
git-svn-id: svn://10.0.0.236/trunk@127092 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 20:38:40 +00:00
alecf%netscape.com
2e7595bdfd oh, wait....these aren't part of the build either!
git-svn-id: svn://10.0.0.236/trunk@127091 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:39:31 +00:00
alecf%netscape.com
f567bb223f removal of last of files which are no longer part of the build
git-svn-id: svn://10.0.0.236/trunk@127090 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:38:29 +00:00
nhotta%netscape.com
31c66036bd Added unescape function which takes a charset to uconv,
changed uriloader to use the uconv unescape to handle unescape non Ascii URI correctly.
bug 155569, r=ftang, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@127089 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:23:22 +00:00
alecf%netscape.com
f4d2bfb5bd remove these files which are also not part of the build
git-svn-id: svn://10.0.0.236/trunk@127088 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:21:15 +00:00
alecf%netscape.com
7e5cb14d77 remove these files that aren't part of the build
git-svn-id: svn://10.0.0.236/trunk@127087 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:20:14 +00:00
ducarroz%netscape.com
7c40533b39 Fix for bug 71301. Filtering out potential null characters in the stream. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127086 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:19:57 +00:00
alecf%netscape.com
444f4eaea3 fix for bug 157993 - combine all unicode converters into a single library, and share GetMaxLength() implementation between all converters that can support it.
r=ftang, sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@127085 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:16:16 +00:00
nhotta%netscape.com
e7fe936876 Changed mime_generate_attachment_headers to pass both attachment charset and main body's charset,
and use the main body's charset to encode attachment filename then fallback to system's default,
bug 160801, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@127084 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:13:54 +00:00
nhotta%netscape.com
73571c2eea When parsing HTML attachment, ignore UTF-16 charset label because the function is not supposed to parse it,
also avoid the parse when the attachment already has a charset assigned,
bug 160729, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@127083 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:10:18 +00:00
varada%netscape.com
e105e0d315 fix for 60917:Compose window title should update with pasted values in subjectline;117323:clicking on icon in addressing line should do a select;r=ducarroz;sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@127082 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:08:42 +00:00
pinkerton%netscape.com
778173a28e make all new tabs appear on the right. comes from usability tests (bug 154468)
git-svn-id: svn://10.0.0.236/trunk@127081 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 19:06:37 +00:00
cltbld%netscape.com
af763d56fb Move startup test into its own function so that it can be called from other builds like chimera. -mcafee
git-svn-id: svn://10.0.0.236/trunk@127078 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 15:51:00 +00:00
timeless%mac.com
254ce23d7b Bug 153324 user.js not loaded if prefs.js doesn't exist.
patch by tranquil@mail.dk r=bnesse sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127077 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 14:52:32 +00:00
seawood%netscape.com
3da59b3ddc Re-adding chrome target
git-svn-id: svn://10.0.0.236/trunk@127076 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 14:36:53 +00:00
darin%netscape.com
b608cb7f42 fixes bug 161417 - recent netwerk checkin upped warning count by 4
r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@127075 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 14:25:40 +00:00
seawood%netscape.com
823af36499 Removing unused defines:
_IMPL_NS_BASE (bug #162142)
_IMPL_NS_GFXONXP (bug #162145)
_IMPL_NS_UI (bug #162183)
B_ONE_M (bug #162196)
XP_NEW_SELECTION (bug #162230)
r=cls
Thanks to Stephen Walker <walk84@yahoo.com> for the patches.


git-svn-id: svn://10.0.0.236/trunk@127074 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 13:35:18 +00:00
bbaetz%student.usyd.edu.au
7a0d498295 Fixing up the changedate from my bug 43600 patch. Knew I must have
forgotten something....


git-svn-id: svn://10.0.0.236/trunk@127069 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 12:18:35 +00:00
pete.zha%sun.com
e80b018cfe [ps] Need better error handling when lp not defined
bug=102276 r=Roland.Mainz@informatik.med.uni-giessen.de sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127068 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 11:26:51 +00:00
peterv%netscape.com
6123527109 Fix for bug 155915 (txMozillaXMLOutput drops previous documentElement on creating transformiix wrapper). r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@127067 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 11:18:05 +00:00
cbiesinger%web.de
e2aa25460f bug 127332 r=db48x sr=bzbarsky Meta headers have a : at the end
git-svn-id: svn://10.0.0.236/trunk@127066 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 09:11:12 +00:00
morse%netscape.com
6849cd3443 bug 154485, p3p icon only takes effect on new windows, r=sgehani, sr=jag
git-svn-id: svn://10.0.0.236/trunk@127062 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 06:30:59 +00:00
morse%netscape.com
34b4db1026 bug 155114, stealing cookies, r=mstoltz, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@127061 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 06:23:00 +00:00
av%netscape.com
1d6843e86e Bug 157796 -- adding referrer URL when plugin requests the data object, r=serge, sr=darin
git-svn-id: svn://10.0.0.236/trunk@127060 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 06:18:52 +00:00
av%netscape.com
432a1c17c8 Bug 151920 -- converting nsPluginHostImpl::AddInstanceToActiveList from void to nsresult, r=serge, sr=darin
git-svn-id: svn://10.0.0.236/trunk@127059 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 06:12:29 +00:00
bbaetz%student.usyd.edu.au
1c2ecdc9c2 Bug 43600 - Convert products/components to use ids instead of names.
Initial attempt by jake@bugzilla.org, updated by me
r=joel, preed


git-svn-id: svn://10.0.0.236/trunk@127057 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 05:43:05 +00:00
bernd.mielke%snafu.de
18ce09091c improved lookup of cellmap for the repeated thead and tfoot sections during printing bug 159358 patch by karnaze r=bernd sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@127055 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 04:55:29 +00:00
asa%mozilla.org
a17fc63df5 adjust build instr and FAQ
git-svn-id: svn://10.0.0.236/trunk@127051 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 03:51:13 +00:00
despotdaemon%netscape.com
4fabe09fd2 Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127050 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 03:50:30 +00:00
bzbarsky%mit.edu
671e3615a3 Parse style attrs on elements not in the tree. Bug 60683, r=jkeiser, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@127049 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 03:16:36 +00:00
bolian.yin%sun.com
b5c880f515 Bug 120464 [PATCH] Netscape 6.21 Beta locked the CDE(dtlogin process). patch by joshua.xia@sun.com, r/sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@127048 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 03:14:21 +00:00
timeless%mac.com
cf74526db0 Bug 162236 nsFileSpec should be deprecAted not deprecIAted
r=bbaetz rs=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127047 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 03:13:57 +00:00
bbaetz%student.usyd.edu.au
a62aa74025 Bug 162050 - Gopher URLs processed noncompliantly
r=dmose, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127045 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-12 01:06:27 +00:00
despotdaemon%netscape.com
cb3ac3909e Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127044 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 23:06:04 +00:00
preed%sigkill.com
ac214da1a4 Bug 162217: fixed my bustage introduced in bug 160410; yes, I owe the whole Bugzilla team a good bottle of tequila now (ask Baloo for details)
git-svn-id: svn://10.0.0.236/trunk@127043 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 22:59:03 +00:00
blizzard%redhat.com
1b6df46864 Woops, forgot to add these files. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@127042 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 21:47:14 +00:00
despotdaemon%netscape.com
be5c1006f9 Pseudo-automatic update of changes made by asa@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@127041 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 21:09:37 +00:00
timeless%mac.com
b1660c9ad0 Bug 155373 no locales in BeOS - should be set to UTF-8
code by sergei_d@fi.tartu.ee
nsBeOSCharset.cpp r=timeless sr=blizzard (ports)
Makefile.in r=cls


git-svn-id: svn://10.0.0.236/trunk@127040 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 20:44:03 +00:00
cbiesinger%web.de
90e342c475 bug 87819 patch by paper@animecity.nu r=pavlov sr=tor Transparent GIFs with transparency on all four sides render non-transparent portions against the left and top sides
git-svn-id: svn://10.0.0.236/trunk@127039 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 18:20:02 +00:00
cbiesinger%web.de
b3db81876a bug 48436 r=caillon sr=blake Change "Document: Done" to "Done"
git-svn-id: svn://10.0.0.236/trunk@127038 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 18:04:50 +00:00
dbaron%fas.harvard.edu
1d5a2619c2 Remove unneeded checks due to unsigned parameters. b=156908 r=dougt sr=darin
git-svn-id: svn://10.0.0.236/trunk@127037 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 18:02:59 +00:00
dbaron%fas.harvard.edu
1894434edb Make BR-related parts of the quirky inline box model also quirky in almost-standards mode, to match the rest of the inline box model quirks. b=161691 sr=bzbarsky r=caillon
git-svn-id: svn://10.0.0.236/trunk@127036 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 18:00:07 +00:00
dbaron%fas.harvard.edu
1be537f3c0 Move FindNonTransparentBackground from nsStyleUtil to nsCSSRendering so that nsStyleUtil doesn't need to be in content/shared. b=71257 r=heikki sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@127035 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 17:56:15 +00:00
cbiesinger%web.de
ab3cdd6196 Bug 158976 r=timeless sr=blake
`Work Offline' menu item isn't checked like in most other browsers


git-svn-id: svn://10.0.0.236/trunk@127034 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 17:47:18 +00:00
preed%sigkill.com
bd4c7a8453 D'OH! Previous checkin for Bug 160410 broke the build due to "only seen once" errors (and some unitialized errors; but I couldn't repeat those with the testing suite once I used the var twice; I guess we'll see... :-/
git-svn-id: svn://10.0.0.236/trunk@127033 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 14:40:43 +00:00
preed%sigkill.com
82de6fde66 Bug 160410: defparams.pl support for single/multi pulldown menus; p=preed,r=joel,r2=bbaetz
git-svn-id: svn://10.0.0.236/trunk@127032 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 14:12:33 +00:00
cbiesinger%web.de
8e85137af6 bug 97123 r=brade sr=alecf modifier+Enter in address field and go button should behave like modifier+click on link
git-svn-id: svn://10.0.0.236/trunk@127031 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 12:16:39 +00:00
cbiesinger%web.de
bc9d2d503b bug 151899 r=db48x sr=alecf Show link target "Page Info"
git-svn-id: svn://10.0.0.236/trunk@127030 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 12:12:12 +00:00
cbiesinger%web.de
af3cc6bc6c bug 160309 r=timeless sr=blake
part 2: classic theme has invalid property values


git-svn-id: svn://10.0.0.236/trunk@127029 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 12:08:33 +00:00
cbiesinger%web.de
db9793a6e2 bug 160309 r=timeless sr=blake
part 1: classic theme has invalid property values


git-svn-id: svn://10.0.0.236/trunk@127028 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 12:06:15 +00:00
cbiesinger%web.de
a14ecdce6a bug 98092 r=db48x sr=bzbarsky [RFE] Show image file size in image property [properties] dialog
git-svn-id: svn://10.0.0.236/trunk@127027 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 12:01:18 +00:00
varga%netscape.com
3449277212 Fix for bug 120383 - make Category at the top of the prefs listing unclickable
r=sicking, sr=bz


git-svn-id: svn://10.0.0.236/trunk@127026 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 11:30:34 +00:00
bzbarsky%mit.edu
537a9f31ed Fix CSS errors. Bug 160704, patch by cahagn_o@epita.fr (Olivier
Cahagne), r=biesi, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127025 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 10:36:49 +00:00
bzbarsky%mit.edu
28e7ea9b1a Fix string warning. Bug 160389, patch by cahagn_o@epita.fr (Olivier
Cahagne), r=db48x, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@127024 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 10:27:36 +00:00
gerv%gerv.net
df9d97778a Bug 160557 - products that start with _ do not show up properly in query.cgi. Patch by pbaker@where2getit.com and gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@127022 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 07:50:59 +00:00
seawood%netscape.com
d7fa3c7775 Remove unused _IMPL_NS_GFXNONXP define.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #162117 r=cls


git-svn-id: svn://10.0.0.236/trunk@127021 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 05:46:21 +00:00
blakeross%telocity.com
d8daaad618 ...and now backing out.
git-svn-id: svn://10.0.0.236/trunk@127020 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 02:04:19 +00:00
blakeross%telocity.com
a0222435ca Testing.
git-svn-id: svn://10.0.0.236/trunk@127019 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 01:30:10 +00:00
blakeross%telocity.com
72064918f0 Add personal toolbar min-height.
git-svn-id: svn://10.0.0.236/trunk@127018 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 01:25:47 +00:00
blakeross%telocity.com
103a5f5e3b Add min-height to personal toolbar.
git-svn-id: svn://10.0.0.236/trunk@127017 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 01:25:32 +00:00
blakeross%telocity.com
e3475a1404 Fix progressmeter.
git-svn-id: svn://10.0.0.236/trunk@127016 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 01:12:58 +00:00
blakeross%telocity.com
52f3271f50 Fix progressmeter.
git-svn-id: svn://10.0.0.236/trunk@127015 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 01:12:43 +00:00
blakeross%telocity.com
d5428f42cb Use google for autocomplete search.
git-svn-id: svn://10.0.0.236/trunk@127014 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 00:45:41 +00:00
blakeross%telocity.com
a25d16246c Fix autocomplete search item.
git-svn-id: svn://10.0.0.236/trunk@127013 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 00:09:27 +00:00
blakeross%telocity.com
3e4b1c226e Fix autocomplete search.
git-svn-id: svn://10.0.0.236/trunk@127012 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-11 00:06:30 +00:00
blakeross%telocity.com
7386a4f127 Remove bad xul.css
git-svn-id: svn://10.0.0.236/trunk@127011 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 23:59:24 +00:00
blakeross%telocity.com
e09de236cc Fixing icons.
git-svn-id: svn://10.0.0.236/trunk@127010 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 23:45:36 +00:00
blakeross%telocity.com
6b4d08c7b7 Fixing icons.
git-svn-id: svn://10.0.0.236/trunk@127009 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 23:45:13 +00:00
blakeross%telocity.com
f8effc5b45 Collapsing more js into browser.js
git-svn-id: svn://10.0.0.236/trunk@127008 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 23:36:50 +00:00
depstein%netscape.com
d84d8b17a6 Enhanced nsIUriContentListener implementations. Replaced nsIRequest methods
with parameter handling in nsIStreamListener implementations (BrowserImpl.cpp).
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@127007 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 19:48:59 +00:00
bienvenu%netscape.com
eb883cc1f4 fix purging of news headers, based on initial patch by nandini.sakar@intel.com 145355, r=me, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@127006 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 19:47:33 +00:00
blizzard%redhat.com
f251f1d7cb Code cleanup. Make sure that static fucntions all use lower case style. Make sure that order in the implementation matches declaration in the header file. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@127005 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 18:21:22 +00:00
bienvenu%netscape.com
699ed7c4e6 fix for regression with cyrus imap servers introduced by 27002, modified version of patch proposed by henry jia r=me,sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@127004 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 18:15:09 +00:00
blizzard%redhat.com
24f2ca3c89 Bug #121258. Hook up icons for gtk2. Original patch by jeff.qiu@sun.com. Modified by me. Also, clean some header file ordering and push pref and default icon initialization into seperate functions. Check in placeholder icon as well. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@127003 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 18:07:20 +00:00
bienvenu%netscape.com
97c5edfb6d restore undo of move from local to imap for uidplus servers by backing out part of previous fix, 162008 r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@127002 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 17:33:50 +00:00
bienvenu%netscape.com
d09ab27ce9 fix save as in news while offline by using common save as listener r=navin, sr=sspitzer 159988
git-svn-id: svn://10.0.0.236/trunk@127001 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 17:13:44 +00:00
blizzard%redhat.com
6423f261eb Beautify nsWindow.h. Make sure that functions that are supposed to be private stay private. Not part of the default build
git-svn-id: svn://10.0.0.236/trunk@127000 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 17:07:40 +00:00
gerv%gerv.net
d982854690 Bug 126955 - Bugzilla should support translated/localized templates. This patch uses ACCEPT_LANGUAGE to determine which template to use. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@126999 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 16:58:59 +00:00
gerv%gerv.net
245b2bb1e3 Bug 53764 - change tests to remove NSCP Confidential notices (and <cr> characters.) Patch by moz@compsoc.man.ac.uk; r=gerv, auto-sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@126998 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 16:49:00 +00:00
blizzard%redhat.com
8e6d4fe3e1 Bug #121251. Drag and drop for gtk2. Direct port from the old gtk code, port done by Louie.Zhao@sun.com. r=blizzard Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@126997 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 16:18:44 +00:00
seawood%netscape.com
a6cdc940ec Use the win32 order file if it exists & MOZ_COVERAGE is set
git-svn-id: svn://10.0.0.236/trunk@126996 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 14:06:10 +00:00
seawood%netscape.com
b8c84d1c29 Disable parallel builds on win32 if MOZ_COVERAGE is set as it writes to .pdb files with each compile
git-svn-id: svn://10.0.0.236/trunk@126995 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 14:04:58 +00:00
seawood%netscape.com
28a70f6839 Fix build problem caused by having spaces in the username.
Bug #137059 r=dmose r=mcs


git-svn-id: svn://10.0.0.236/trunk@126994 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 10:37:25 +00:00
jerry.tan%sun.com
ceca13d9b6 bug 120226, can't show system hint when browser maximize
patch by jerry.tan@sun.com r=bryner, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@126992 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 10:16:39 +00:00
gerv%gerv.net
0d47ee3f81 Bug 155584 - Opening duplicates.cgi with no frequent bugs causes SQL syntax error. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@126991 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 09:53:32 +00:00
bzbarsky%mit.edu
c2b6df94e0 Remove stray printf. Bug 161984, patch by ajschult@eos.ncsu.edu (Andrew
Schultz), r=akkana, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@126990 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 09:32:08 +00:00
leaf%mozilla.org
6e58f190f8 Automated update
git-svn-id: svn://10.0.0.236/trunk@126988 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 09:10:06 +00:00
seawood%netscape.com
dff4ed02d3 Fix build problem caused by having spaces in the username.
Bug #137059 r=dmose r=mcs


git-svn-id: svn://10.0.0.236/trunk@126987 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 09:02:49 +00:00
hyatt%netscape.com
c24b9021bf Removing New Tab button.
git-svn-id: svn://10.0.0.236/trunk@126986 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:49:39 +00:00
gerv%gerv.net
5751d43faf Bug 154765 - Cleaning up Contributors references after relicensing. Patch by riceman+bmo@mail.rit.edu; r=gerv, auto-sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@126985 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:39:43 +00:00
caillon%returnzero.com
eaa3d3d707 Bug 158674 - nsDocumentFragment::DropChildReferences() causes leaks because it doesn't do what it says
Thanks to Harshal <keeda@hotpop.com> for the patch.
r=peterv
sr=jst


git-svn-id: svn://10.0.0.236/trunk@126984 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:31:15 +00:00
gerv%gerv.net
a512075c5d Fixing bustage - missing %].
git-svn-id: svn://10.0.0.236/trunk@126983 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:30:03 +00:00
aaronl%netscape.com
dd1d50f19e Bug 158754 - rest of checkin (correct code formatting this time)
git-svn-id: svn://10.0.0.236/trunk@126982 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:22:52 +00:00
bbaetz%student.usyd.edu.au
f805bd6518 Bug 159996 - bug vote instructions are misleading/confusing
r=gerv x2


git-svn-id: svn://10.0.0.236/trunk@126981 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:22:42 +00:00
aaronl%netscape.com
89d5e8b0f9 Bug 158754. Allow type ahead find to change selection color, and show caret with selection. r=akkana, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126980 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:15:30 +00:00
gerv%gerv.net
7fa480e533 Bug 109008 - Footer on create attachment page looks wrong. Patch by bbaetz; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@126979 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:10:22 +00:00
gerv%gerv.net
4ce72048de Bug 159901 - token.cgi: localize strings send to message.html.tmpl. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@126978 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:06:58 +00:00
aaronl%netscape.com
2f2ceac598 Bug 158756. Need nsIViewManager::IsRectVisible to become GetRectVisisiblity, and return a reason why the rect wasn't visible. r=akk,roc+moz. sr=jst
git-svn-id: svn://10.0.0.236/trunk@126977 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 08:03:53 +00:00
aaronl%netscape.com
54113de18f Bug 160793. Active Accessibility: support broken images. r=kyle, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@126976 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:59:44 +00:00
seawood%netscape.com
0b3ff474f3 Removing old nmake build makefiles. Bug #158528 r=pavlov
git-svn-id: svn://10.0.0.236/trunk@126975 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:55:43 +00:00
aaronl%netscape.com
0f15aa2e2e Bug 160792. Active Accessibility: If title different from name, put it in description. Put the title in the name if there is no name. r=kyle, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126974 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:46:31 +00:00
aaronl%netscape.com
53578444a5 Not part of build. Bug 30088 - type ahead find. Use nsPIDOMWindow::GetChromeEventHandler to get event target to listen for events. This is a good way to keep our listener on the window, even when the document changes.
git-svn-id: svn://10.0.0.236/trunk@126973 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:40:24 +00:00
bbaetz%student.usyd.edu.au
03cb072f4d Bug 161865 - GetFieldID shouldn't INSERT into the fielddefs table
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@126972 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:34:17 +00:00
gerv%gerv.net
ebbff899f1 Fix another un-globalised SqlQuote(). Oops.
git-svn-id: svn://10.0.0.236/trunk@126971 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 07:29:53 +00:00
hyatt%netscape.com
3f7272c996 Fix bookmark groups to replace.
git-svn-id: svn://10.0.0.236/trunk@126970 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 06:56:55 +00:00
hyatt%netscape.com
81689e0a95 Fork tabbrowser to make it back into what I want.
git-svn-id: svn://10.0.0.236/trunk@126969 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 06:53:22 +00:00
bryner%netscape.com
819100c2ff Adding gif files to fix the build bustage.
git-svn-id: svn://10.0.0.236/trunk@126968 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 06:36:42 +00:00
racham%netscape.com
7b0a2f0bc5 Fixing bug 102265. Polishing an entity in the mapi dtd file per UI guidelines. r=bhuvan
git-svn-id: svn://10.0.0.236/trunk@126967 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 06:13:44 +00:00
jkeiser%netscape.com
721bdcbff5 Add _charset_ support in form (bug 18643), r=ftang@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@126966 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 06:12:04 +00:00
blakeross%telocity.com
5b6bb1c72e adding history.
git-svn-id: svn://10.0.0.236/trunk@126964 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 05:23:37 +00:00
blakeross%telocity.com
1e4980302a Adding history.
git-svn-id: svn://10.0.0.236/trunk@126963 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 05:23:28 +00:00
blakeross%telocity.com
87e6b73a07 Fix menu arrow hover.
git-svn-id: svn://10.0.0.236/trunk@126962 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 05:12:15 +00:00
blakeross%telocity.com
b3f77bd460 Fixing submenu arrow.
git-svn-id: svn://10.0.0.236/trunk@126961 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 05:06:25 +00:00
blakeross%telocity.com
6e2ff8da98 Fixing submenu arrow.
git-svn-id: svn://10.0.0.236/trunk@126960 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 05:05:59 +00:00
seawood%netscape.com
73319c11ca Add compiler test for +Olit=all support for hpux cc.
Bug #146426 r=wtc


git-svn-id: svn://10.0.0.236/trunk@126959 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 04:32:49 +00:00
bzbarsky%mit.edu
512839f6bf Fix bustage; need to follow C++ portability guidelines. ;)
git-svn-id: svn://10.0.0.236/trunk@126958 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 04:20:53 +00:00
blakeross%telocity.com
13e0ec508c Add id back to statusbar.
git-svn-id: svn://10.0.0.236/trunk@126957 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 03:49:30 +00:00
blakeross%telocity.com
212671ea27 Fix wallet.
git-svn-id: svn://10.0.0.236/trunk@126956 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 03:14:29 +00:00
blakeross%telocity.com
bfd3b0eacf Add back "- Mozilla"
git-svn-id: svn://10.0.0.236/trunk@126955 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 03:08:14 +00:00
blakeross%telocity.com
f4a7e42f37 Remove Web Development submenu.
git-svn-id: svn://10.0.0.236/trunk@126954 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:58:38 +00:00
seawood%netscape.com
47ead8ea29 Re-adding files to avoid checkout warnings. The warnings are because the files are individually listed in the cvs module definition. Replaced standard targets with reference to win32 build page.
git-svn-id: svn://10.0.0.236/trunk@126953 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:45:57 +00:00
blakeross%telocity.com
e617bfe39a Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126952 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:45:06 +00:00
blakeross%telocity.com
06143b19e1 Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126951 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:45:02 +00:00
blakeross%telocity.com
2ee299c636 Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126950 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:42:10 +00:00
blakeross%telocity.com
84d0932a57 Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126949 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:40:54 +00:00
blakeross%telocity.com
98a7a085cd Ongoing pref work.
git-svn-id: svn://10.0.0.236/trunk@126948 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:40:38 +00:00
hyatt%netscape.com
814a339256 Sep support.
git-svn-id: svn://10.0.0.236/trunk@126947 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:33:01 +00:00
naving%netscape.com
1d99325fff 117032 r=bhuvan sr=bienvenu make "Delete messages on server.." label clearer
git-svn-id: svn://10.0.0.236/trunk@126946 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:25:49 +00:00
racham%netscape.com
2a9f8ef6d5 Fixing bug 150471. Fixing the cases where accountValues could be checked before we try to save the values on the page. This will help us to make sure accountmanager proceeds to store the values only on those pages where accountValues is filled in. In case of SMTP advanced panel, values are already saved and reflected. r=srilatha, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@126945 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:20:21 +00:00
bbaetz%student.usyd.edu.au
dcd492605b Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474)
r=justdave x2


git-svn-id: svn://10.0.0.236/trunk@126944 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:19:52 +00:00
hyatt%netscape.com
d251c5851f Separator support.
git-svn-id: svn://10.0.0.236/trunk@126943 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:17:32 +00:00
despotdaemon%netscape.com
a7a5d6b1be Pseudo-automatic update of changes made by jerry.tan@sun.com.
git-svn-id: svn://10.0.0.236/trunk@126942 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:10:52 +00:00
rbs%maths.uq.edu.au
d5c77885a5 Make CheckFontExistence('Symbol') to tell the truth, b=161048, r=ftang, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@126941 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:10:50 +00:00
hyatt%netscape.com
365c7f7012 Working on separator support.
git-svn-id: svn://10.0.0.236/trunk@126940 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:09:24 +00:00
bzbarsky%mit.edu
4c092a6836 Fix a bug nsBaseWidget::SetZIndex and make it faster. The changes to
SetZIndex are actually fixing the problems in question; the other
changes are a replacement of all the evil tabs with spaces.

Bug 117730, patch by Dainis_Jonitis@swh-t.lv (Dainis Jonitis), r=beard,
sr=attinasi (this has been languishing for a while, ok?).


git-svn-id: svn://10.0.0.236/trunk@126939 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 02:07:26 +00:00
hyatt%netscape.com
02c767912a Add separator support to toolbars.
git-svn-id: svn://10.0.0.236/trunk@126938 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:59:12 +00:00
bbaetz%student.usyd.edu.au
2030aceea7 Bug 161402 - Disable DBI taint mode in processmail
r=joel x2


git-svn-id: svn://10.0.0.236/trunk@126937 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:53:39 +00:00
blakeross%telocity.com
1d5f7074fe Don't heed startup prefs for phoenix.
git-svn-id: svn://10.0.0.236/trunk@126936 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:44:09 +00:00
blakeross%telocity.com
e34ec25ca2 Fix find dialog.
git-svn-id: svn://10.0.0.236/trunk@126935 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:42:05 +00:00
jruderman%hmc.edu
e559049c5d 123293, wyciwyg://0/* urls sent as referrers after document.write. r=bbaetz, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@126934 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:38:54 +00:00
dveditz%netscape.com
ae64c85209 make XPInstall confirm dialog default to cancel (bug 149478) r=syd,sr=mscott
git-svn-id: svn://10.0.0.236/trunk@126933 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:25:35 +00:00
dveditz%netscape.com
aacd4de893 activate button on keyup only if already depressed (bug 161721) r=saari,sr=blake
git-svn-id: svn://10.0.0.236/trunk@126932 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:23:01 +00:00
bbaetz%student.usyd.edu.au
0f949259bb Hopefully fix bustage from incomplete backout.
git-svn-id: svn://10.0.0.236/trunk@126931 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 01:12:01 +00:00
shrutiv%netscape.com
08cd2df6a3 Fix for bug 161729: Update Company Identifier description (r=smeredith)
git-svn-id: svn://10.0.0.236/trunk@126928 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:56:53 +00:00
blakeross%telocity.com
41f9c5b4cc Fix stop.
git-svn-id: svn://10.0.0.236/trunk@126927 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:55:06 +00:00
shrutiv%netscape.com
caaef5d45b Fix for bug 136763: Components are at incorrect location in "Select
Typical/Additional Components" screen (r=smeredith)


git-svn-id: svn://10.0.0.236/trunk@126926 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:50:03 +00:00
shrutiv%netscape.com
ca81057f70 Fix for bugscape 16908: Reorder additional components (r=mitchf)
git-svn-id: svn://10.0.0.236/trunk@126925 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:31:59 +00:00
blythe%netscape.com
6601e7a688 fix crash in bug 119034
r=timeless,sr=darin,a=asa
Simple NULL check, safe


git-svn-id: svn://10.0.0.236/trunk@126924 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:25:39 +00:00
loadrunner%betak.net
2207e19c06 local copy of make-jars.pl
git-svn-id: svn://10.0.0.236/trunk@126920 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:13:02 +00:00
loadrunner%betak.net
96d768f04d updating embed.jar translation guide to include make-jars.pl (not part of the build)
git-svn-id: svn://10.0.0.236/trunk@126919 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-10 00:11:42 +00:00
leaf%mozilla.org
e1e7037575 backout darin's checkin from around noon yesterday to remove the regression
in 161921


git-svn-id: svn://10.0.0.236/trunk@126917 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 23:46:19 +00:00
despotdaemon%netscape.com
a6a7dac6bc Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@126916 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 23:36:59 +00:00
blakeross%telocity.com
cb967957aa Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126914 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 23:21:19 +00:00
blakeross%telocity.com
d97c99843b Make ctrl++ to increase text size work again.
git-svn-id: svn://10.0.0.236/trunk@126912 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 23:08:12 +00:00
blakeross%telocity.com
adf13dc8ec More cleanup.
git-svn-id: svn://10.0.0.236/trunk@126911 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 23:03:32 +00:00
gerv%gerv.net
464845e44c Bug 158474 - Abstract out GenerateSQL into perl module. Patch by gerv; r=jouni.
git-svn-id: svn://10.0.0.236/trunk@126910 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 22:12:14 +00:00
nelsonb%netscape.com
0be0cc631e Test the TLS_RSA_WITH_NULL_SHA cipher suite. Bug 161529. Also, order
tests so all SSL3 tests are done before all TLS tests.


git-svn-id: svn://10.0.0.236/trunk@126909 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 22:09:18 +00:00
nelsonb%netscape.com
fbc715c31a Support the TLS_RSA_WITH_NULL_SHA cipher suite. Bug 161529. Fix Usage.
git-svn-id: svn://10.0.0.236/trunk@126908 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 22:06:12 +00:00
nelsonb%netscape.com
ff70ef4a64 Add support for SSL_RSA_WITH_NULL_SHA. Bug 161529. Fix usage message.
git-svn-id: svn://10.0.0.236/trunk@126907 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 21:58:28 +00:00
nelsonb%netscape.com
a621affedc Support the TLS_RSA_WITH_NULL_SHA cipher suite. Bug 161529.
git-svn-id: svn://10.0.0.236/trunk@126906 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 21:53:17 +00:00
zach%zachlipton.com
81521b0299 Add a test to check for speling errors. It only currently checks for two simple errors that used to be in checksetup.pl, more errors can and will be added in the future.
Bug 147151, no review needed for tests


git-svn-id: svn://10.0.0.236/trunk@126904 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 20:14:23 +00:00
gerv%gerv.net
9f61c2352d Bug 161450 - New search knob causes warnings. Patch by gerv; 2xr=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@126902 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 19:56:36 +00:00
relyea%netscape.com
4cfc101a4c Handle the switch from the static buffer to the realloc buffer.
git-svn-id: svn://10.0.0.236/trunk@126901 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 18:48:31 +00:00
relyea%netscape.com
895fa532b2 remove unreferenced Variable.
git-svn-id: svn://10.0.0.236/trunk@126900 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 18:05:24 +00:00
pinkerton%netscape.com
c7a38f4e44 use a new window subclass that lies about it being the key window so the
scrollbar of the autocomplete popup is always enabled. also fixes a
memory leak where we'd leak the autocomplete popup in every window (bug 157637)


git-svn-id: svn://10.0.0.236/trunk@126894 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 15:33:29 +00:00
timeless%mac.com
4193c60fb3 Bug 16925 [FEATURE] Want additional header options
patch by neil@parkwaycc.co.uk R=ducarroz sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@126892 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 13:00:24 +00:00
mikep%oeone.com
4ff254e384 Fixing bug 161724.
git-svn-id: svn://10.0.0.236/trunk@126891 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 12:37:45 +00:00
bernd.mielke%snafu.de
89d147429a bug 155652 build warning fix r=karnaze sr=bz
git-svn-id: svn://10.0.0.236/trunk@126890 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 09:30:41 +00:00
peterv%netscape.com
31de3f5600 Fix for bug 138295 (XML Loading on Mac fails on .childNodes of non-root nodes). r=mstoltz, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@126889 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 08:45:30 +00:00
hyatt%netscape.com
cf62d2cc9b Stop JS errors when there is no throbber.
git-svn-id: svn://10.0.0.236/trunk@126888 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:48:19 +00:00
hyatt%netscape.com
3e4c389cd1 Fix toolbar to remember icon/text mode in customize dialog.
git-svn-id: svn://10.0.0.236/trunk@126887 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:38:01 +00:00
hyatt%netscape.com
081c29242e Change default set.
git-svn-id: svn://10.0.0.236/trunk@126886 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:30:24 +00:00
blakeross%telocity.com
51bf5a717e Remove more stale prefs, twiddle a few defaults.
git-svn-id: svn://10.0.0.236/trunk@126885 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:19:00 +00:00
jpierre%netscape.com
d27b53f590 Add comment about partial CRLs
git-svn-id: svn://10.0.0.236/trunk@126884 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:09:25 +00:00
kerz%netscape.com
e85138695c new lock icons
git-svn-id: svn://10.0.0.236/trunk@126883 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:09:22 +00:00
kerz%netscape.com
c37c302945 more skin cleanup
git-svn-id: svn://10.0.0.236/trunk@126882 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 07:08:44 +00:00
blakeross%telocity.com
fae1f499b2 Remove more stale prefs.
git-svn-id: svn://10.0.0.236/trunk@126881 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 06:56:52 +00:00
rbs%maths.uq.edu.au
b8fdddbf90 Perl scripts to process the MathFont Properties Files - not part of build
git-svn-id: svn://10.0.0.236/trunk@126879 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 06:13:29 +00:00
rbs%maths.uq.edu.au
7ccfc1a984 remove perl scripts that are not used anymore - not part of build
git-svn-id: svn://10.0.0.236/trunk@126878 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 06:11:15 +00:00
blakeross%telocity.com
99ea207c22 Ongoing prefs work.
git-svn-id: svn://10.0.0.236/trunk@126877 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 05:51:06 +00:00
dougt%netscape.com
6f96a337a9 MRE based clients crash when the components dir not present, r=chak, sr=alec, b=160404
git-svn-id: svn://10.0.0.236/trunk@126874 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 04:31:58 +00:00
dougt%netscape.com
869e671bbe Attempting to fix the idle time topcrash. b=155447, r=pavlov, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@126873 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 04:03:45 +00:00
aaronl%netscape.com
be4085a0f1 Not part of build. Bug 30088 - typeaheadfind. Moved inititalization into Init(). Fixed up our code that attaches dom event listeners
git-svn-id: svn://10.0.0.236/trunk@126871 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 03:18:43 +00:00
depstein%netscape.com
ff6cb25087 1) Implemented nsIUriContentListener test methods.
2) Enhanced nsITooltip Listener methods.
3) Added pass/fail results dialog for webBrowser, webProg, and sHistory tests.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@126870 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 02:43:04 +00:00
sspitzer%netscape.com
e8f55b05b3 fix #120842. when viewing settings for an account, scroll to that account in the account manager tree. especially nice if you have lots of mail news accounts.
thanks to neil@parkwaycc.co.uk for the fix.  r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@126869 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 02:40:13 +00:00
cmanske%netscape.com
b94d414252 Add tooltip to explain why Advanced Edit button is disabled. b=161113. r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126868 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 02:03:53 +00:00
blakeross%telocity.com
773bbe5550 Remove old prefs.
git-svn-id: svn://10.0.0.236/trunk@126867 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:56:13 +00:00
cmanske%netscape.com
5f531f8cd0 Fixed disabling of 'Create Table' context menuitem. b=157095, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126866 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:55:26 +00:00
blakeross%telocity.com
42626dc442 Remove navigator.properties
git-svn-id: svn://10.0.0.236/trunk@126865 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:54:44 +00:00
blakeross%telocity.com
f6b92839ee Remove turboDialog.xul
git-svn-id: svn://10.0.0.236/trunk@126864 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:54:29 +00:00
blakeross%telocity.com
3ae5a24594 Remove pageInfo.xul/.js
git-svn-id: svn://10.0.0.236/trunk@126863 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:54:12 +00:00
blakeross%telocity.com
972ec5ca34 Remove urlbarBindings.xml
git-svn-id: svn://10.0.0.236/trunk@126862 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:53:28 +00:00
cmanske%netscape.com
0955f2e69e Fixed bad CSS rule in Composer toolbar button. b=160318, fix by cbiesinger@web.de, r=cmanske, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126861 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:50:43 +00:00
cmanske%netscape.com
f423d391ff Allow different prompt message when prompting to publish file. b=149741, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126859 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:44:23 +00:00
blakeross%telocity.com
f2a93269b0 Remove throbber from default set.
git-svn-id: svn://10.0.0.236/trunk@126858 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:42:57 +00:00
blakeross%telocity.com
dbde6d0457 More cleanup.
git-svn-id: svn://10.0.0.236/trunk@126857 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:41:39 +00:00
wtc%netscape.com
2232defa0d Bug 158396: added comments explaining the importance of keeping the buffer
size and the sscanf format strings in sync.


git-svn-id: svn://10.0.0.236/trunk@126856 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:41:02 +00:00
serge%netscape.com
adf3efde5d fix 146748 No Visual Progress When Downloading Large PDF Files, r=peterl, sr=darin
git-svn-id: svn://10.0.0.236/trunk@126855 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:36:39 +00:00
cmanske%netscape.com
6660997b59 Convert editor dialog utilities to not use editorShell. b=15881, r=brade, sr=alecf. Also removes methods no longer needed as part of fix for bug 144957, fix by neil@parkwaycc.co.uk, r=varga, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126854 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:29:26 +00:00
cmanske%netscape.com
8286cc4c76 Convert list in SaveAsCharset dialog to outliner, b=144957, fix by neil@parkwaycc.co.uk, r=varga, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126853 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:26:18 +00:00
jrgm%netscape.com
2cb9199f5e bug 158626, remove obsolete 'fastnav' experiment, r=bzbarsky, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@126852 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:25:48 +00:00
kerz%netscape.com
efcd2afe2c cleaning up fullscreen slightly
git-svn-id: svn://10.0.0.236/trunk@126851 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:21:46 +00:00
kerz%netscape.com
b63f27f485 fix dropdown markers
git-svn-id: svn://10.0.0.236/trunk@126850 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:19:14 +00:00
kerz%netscape.com
6a8effc740 fix dropdown markers
git-svn-id: svn://10.0.0.236/trunk@126848 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:16:27 +00:00
bryner%netscape.com
28c713fb92 Substitute in the correct program name for mozilla-bin, in case it's defined differently (bug 161803). r=cls.
git-svn-id: svn://10.0.0.236/trunk@126847 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:07:06 +00:00
kerz%netscape.com
93ecb76f4b fix dropdown markers
git-svn-id: svn://10.0.0.236/trunk@126846 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:05:48 +00:00
rbs%maths.uq.edu.au
cb4b00c1c8 Update the DOCTYPE in the examples - not part of build
git-svn-id: svn://10.0.0.236/trunk@126845 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 01:05:00 +00:00
timeless%mac.com
b500fa4023 sorting pure js engine includes alphabetically to match js engine prevailing style
rs=brendan


git-svn-id: svn://10.0.0.236/trunk@126840 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:49:44 +00:00
kerz%netscape.com
43c2aa3f7d fix borders
git-svn-id: svn://10.0.0.236/trunk@126839 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:45:44 +00:00
kerz%netscape.com
983d883c3d fix borders
git-svn-id: svn://10.0.0.236/trunk@126838 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:42:35 +00:00
sfraser%netscape.com
a343a62016 Fix warnings; some CHTooltip left.
git-svn-id: svn://10.0.0.236/trunk@126837 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:39:10 +00:00
kerz%netscape.com
8e9d39dcc8 fix padding
git-svn-id: svn://10.0.0.236/trunk@126836 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:38:20 +00:00
hyatt%netscape.com
b93c808b7a Icons only mode default.
git-svn-id: svn://10.0.0.236/trunk@126832 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:24:17 +00:00
blakeross%telocity.com
5014a5ed6d Do silly homepage tooltip text stuff in a callback.
git-svn-id: svn://10.0.0.236/trunk@126831 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:22:07 +00:00
smontagu%netscape.com
87e0459927 GetWidth optimizations for Unix. Bug 36146. Authors Tomi.Leppikangas@oulu.fi, Roland.Mainz@informatik.med.uni-giessen.de; r=shanjian,smontagu; sr=rbs, darin
git-svn-id: svn://10.0.0.236/trunk@126829 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:13:11 +00:00
kerz%netscape.com
e09be16515 cleaning up other toolbar modes
git-svn-id: svn://10.0.0.236/trunk@126826 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-09 00:10:24 +00:00
seawood%netscape.com
f2ca8401a2 Adding back the NO_X11 ifdef as the general test is wrapped in a SKIP_COMPILER_CHECKS ifdef.
git-svn-id: svn://10.0.0.236/trunk@126824 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 23:52:51 +00:00
wtc%netscape.com
91df525629 Bug 148220: removed the unused field 'isFIPS'.
git-svn-id: svn://10.0.0.236/trunk@126818 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:52:14 +00:00
timeless%mac.com
7dc3cde585 ### Building "Viper1-Disk:Source Tree:mozilla:js:macbuild:_JavaScript.mcp" (Thu Aug 8 15:19:17 2002)
Error   : function has no prototype
jslock.c line 854   js_FinishDtoa();
adding an include and hoping it works


git-svn-id: svn://10.0.0.236/trunk@126815 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:36:15 +00:00
bzbarsky%mit.edu
cda0ff8d55 Fix classic theme mail icons to be prettier. Bug 139029, icons by
yesperduval@hotmail.com (Yesper Duval), r=shliang, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@126813 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:35:03 +00:00
aaronl%netscape.com
759d1ef796 Not part of build. Bug 30088 - type ahead find, get rid of some testing code
git-svn-id: svn://10.0.0.236/trunk@126812 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:34:32 +00:00
aaronl%netscape.com
4234fa534a Not part of build. Bug 30088 - type ahead find, use nsIViewManager::GetRectVisibility() and fix onunload handling
git-svn-id: svn://10.0.0.236/trunk@126811 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:33:51 +00:00
bzbarsky%mit.edu
8d3edf56a0 Fix crash when clicking empty space in <select>. Bug 161499, r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126810 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 22:27:57 +00:00
brendan%mozilla.org
f5a692b62a Fix js_NewObject not to share proto's map if proto and obj don't have the same number of reserved slots (112974, r=rogerl, sr=jband).
git-svn-id: svn://10.0.0.236/trunk@126806 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:51:54 +00:00
bryner%netscape.com
9185d9dfe8 case for these files is fixed in cvs
git-svn-id: svn://10.0.0.236/trunk@126805 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:46:20 +00:00
seawood%netscape.com
af3c356a44 Misc build cleanup v1:
Cleanup win32 configure output.
Bug #161461 r=bryner


git-svn-id: svn://10.0.0.236/trunk@126804 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:45:20 +00:00
seawood%netscape.com
fb4b9df951 Misc build cleanup v1:
Cleanup win32 configure output
Bug #161461 r=bryner


git-svn-id: svn://10.0.0.236/trunk@126803 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:39:26 +00:00
seawood%netscape.com
8b20ac34ed Misc build cleanup v1:
Cleanup win32 configure output. Remove EMACS
Bug #161461 r=bryner


git-svn-id: svn://10.0.0.236/trunk@126802 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:35:45 +00:00
naving%netscape.com
f826eca573 123402 r=timeless sr=bienvenu fixing PRTime abuse in auto-compact code.
git-svn-id: svn://10.0.0.236/trunk@126799 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:26:04 +00:00
caillon%returnzero.com
9b397d492f Bug 161677. Making prefs work again: The OK button in prefs wasn't working from any panel other than the "Navigator" panel.
r=timeless sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126798 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 21:18:03 +00:00
timeless%mac.com
fdf3db08f6 Bug 148171 js_FinishDtoa() not called unless JS_THREADSAFE is set
patch by scole@planetweb.com r=khanson sr=shaver


git-svn-id: svn://10.0.0.236/trunk@126797 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:53:14 +00:00
dbaron%fas.harvard.edu
d986ae2083 Attempt to fix bustage from darin's checkin.
git-svn-id: svn://10.0.0.236/trunk@126796 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:47:03 +00:00
blakeross%telocity.com
f072e6171b Removing more unnecessary boxes and attributes...
git-svn-id: svn://10.0.0.236/trunk@126793 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:44:13 +00:00
jkeiser%netscape.com
3d64c27797 Make form controls in fieldsets work (bug 121127), r=rods@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@126792 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:38:40 +00:00
blakeross%telocity.com
790ad848df Remove the build ID from the titlebar. It's available in the about box and on the new bug form...
git-svn-id: svn://10.0.0.236/trunk@126791 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:38:04 +00:00
blakeross%telocity.com
7ef92d0a7b Un-monetizing :(
git-svn-id: svn://10.0.0.236/trunk@126790 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:21:16 +00:00
serge%netscape.com
a1df3fd3d5 fix 153454 Link to image/tiff file does not download correctly (with plug-in installed) r=av, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126789 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:14:57 +00:00
naving%netscape.com
fc25e6b20a 74937 r=cavin sr=bienvenu fixing no alert when d&d local folders to trash
git-svn-id: svn://10.0.0.236/trunk@126788 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 20:03:23 +00:00
pinkerton%netscape.com
21403d5b7f use a constant
git-svn-id: svn://10.0.0.236/trunk@126786 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 19:40:40 +00:00
pinkerton%netscape.com
c89d8e89d3 Adding tooltip support for TITLE in html (bug 149635)
git-svn-id: svn://10.0.0.236/trunk@126785 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 19:36:13 +00:00
darin%netscape.com
0a81150b46 changes to nsIIOService in preparation for freezing, b=157131
r=dougt sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126784 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 19:08:59 +00:00
hyatt%netscape.com
be0d579955 Fix 161730, locked in small icon mode!
git-svn-id: svn://10.0.0.236/trunk@126783 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 19:05:43 +00:00
alecf%netscape.com
45d6ed4c56 bug 161716 - stop exporting nsStr from xpcom.dll
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@126782 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:59:54 +00:00
leaf%mozilla.org
b12c2723ce Automated update
git-svn-id: svn://10.0.0.236/trunk@126781 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:56:40 +00:00
seawood%netscape.com
270e24a09a Use correct names for WIDGET_DLL & GFXWIN_DLL on win32.
Bug #160450 r=leaf


git-svn-id: svn://10.0.0.236/trunk@126780 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:54:09 +00:00
timeless%mac.com
0949f81ae4 Bug 161677 Preferences > Appearance > Colors horked, JS error
the ok and cancel handlers will now each get a chance to execute.
throwing an exception will not prevent the dialog from closing per the user's primary directive.
r=frodob sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126779 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:51:03 +00:00
timeless%mac.com
370d9d19a4 Bug 161722 nsFilePicker.js has unreachable code (try block)
r=db48x sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@126778 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:27:16 +00:00
relyea%netscape.com
314699e926 Bug 607834. save the correct name on so we can reset the database.
git-svn-id: svn://10.0.0.236/trunk@126774 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 18:02:34 +00:00
glazman%netscape.com
ba612e4c7f fixing regression in !important handling introduced by fix for bug 157913; b=161685, r=rods, r=timeless, sr=dbaron, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126772 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 17:40:20 +00:00
timeless%mac.com
49e84c6c47 Bug 134620 Can't add bookmark folder from personal toolbar
patch by chanial@noos.fr r=caillon sr=blake


git-svn-id: svn://10.0.0.236/trunk@126760 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 14:19:48 +00:00
kaie%netscape.com
b5ad89a0e3 b=161394 Fix crash in debug builds
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126759 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 14:10:42 +00:00
jdunn%netscape.com
db0547488a fixing AIX optimization issue with jsatom.c
# 161542
r=cls@seawood.org
submitted by pkw@austin.ibm.com, checking in for khanson@netscape.com


git-svn-id: svn://10.0.0.236/trunk@126754 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 13:22:51 +00:00
peterv%netscape.com
3b230194dd Warning fixes. r=Pike, rs=jst.
git-svn-id: svn://10.0.0.236/trunk@126753 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 12:30:02 +00:00
timeless%mac.com
d26f000c2c Bug 157348 no AltGr recognised
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard


git-svn-id: svn://10.0.0.236/trunk@126752 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 12:07:24 +00:00
bbaetz%student.usyd.edu.au
016a5d0281 Bug 160224 - remember query radio buttons don't have default
r=gerv x2


git-svn-id: svn://10.0.0.236/trunk@126748 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 11:03:39 +00:00
gerv%gerv.net
f931898d0f Bug 55753 - if order is the first param to buglist.cgi, can't resort. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@126747 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 10:42:34 +00:00
hyatt%netscape.com
3ee4cc4bc0 Mode toggler implemented.
git-svn-id: svn://10.0.0.236/trunk@126746 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 09:05:40 +00:00
hyatt%netscape.com
ae1b24324d Small/large toggler implemented.
git-svn-id: svn://10.0.0.236/trunk@126745 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 08:39:39 +00:00
hyatt%netscape.com
f2c63563bc Small/large toggler implemented.
git-svn-id: svn://10.0.0.236/trunk@126744 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 08:35:40 +00:00
caillon%returnzero.com
c69164d6eb Don't set the last page visited pref if unneeded (privacy).
Don't fetch a new prefservice every pageload.
Disable navigator pref buttons that do nothing.

Bug 114782
r=alecf sr=blake


git-svn-id: svn://10.0.0.236/trunk@126743 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 07:49:09 +00:00
mjudge%netscape.com
0661484e2b 127321. r=brade sr=sfrasier. bug that skips getting stuck on word jumping on macs. This feature now may want to be turned on in the windows and unix builds as well.
git-svn-id: svn://10.0.0.236/trunk@126742 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 06:37:01 +00:00
bzbarsky%mit.edu
bface35333 Fixing link to raptor image. Doc change only, not part of build.
git-svn-id: svn://10.0.0.236/trunk@126741 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 06:12:35 +00:00
hyatt%netscape.com
5046e8790b Enable favicon support.
git-svn-id: svn://10.0.0.236/trunk@126740 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 06:04:59 +00:00
blakeross%telocity.com
0de6985e32 Updates...
git-svn-id: svn://10.0.0.236/trunk@126739 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 06:00:28 +00:00
blakeross%telocity.com
03da350cba *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126738 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 05:16:31 +00:00
dougt%netscape.com
765b332ea1 Freeze nsIScriptableInputStream. r=rginda, sr=darin
git-svn-id: svn://10.0.0.236/trunk@126737 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 05:09:03 +00:00
dougt%netscape.com
4372e081d1 Fixes HP bustage in xpcom. patch by pkw@austin.ibm.com, r=dougt, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126736 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 04:58:54 +00:00
kerz%netscape.com
2a809bc263 new throbber stuff
git-svn-id: svn://10.0.0.236/trunk@126734 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 04:55:14 +00:00
ben%netscape.com
dea34d73e5 Update README to reflect reality.
git-svn-id: svn://10.0.0.236/trunk@126732 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 04:49:12 +00:00
kerz%netscape.com
2a75c00f33 fixing menubuttons
git-svn-id: svn://10.0.0.236/trunk@126731 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 04:08:22 +00:00
blakeross%telocity.com
b5f3e5f609 Unfork nsBrowserStatusHandler/nsBrowserContentListener for now.
git-svn-id: svn://10.0.0.236/trunk@126730 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 03:39:58 +00:00
blakeross%telocity.com
2db5a0aec9 Remove view zoom overlay.
git-svn-id: svn://10.0.0.236/trunk@126729 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 03:36:46 +00:00
cltbld%netscape.com
b9527ee92f LayoutTest is now a function in TinderUtils, so that build-chimera.pl can reuse the code. -mcafee
git-svn-id: svn://10.0.0.236/trunk@126728 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 02:44:54 +00:00
bzbarsky%mit.edu
ace59024db disable mouseup/mousedown/click events during "click-to-select" so that
links and such don't trigger.  Bug 116773, r=jkeiser, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@126726 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 02:11:39 +00:00
blakeross%telocity.com
d775c8cf99 Removing unnecessary attributes, collapsing full screen js into browser.js.
git-svn-id: svn://10.0.0.236/trunk@126725 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:55:38 +00:00
jpierre%netscape.com
3459b6c362 Stop referencing deleted quickder.h header
git-svn-id: svn://10.0.0.236/trunk@126724 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:55:34 +00:00
jpierre%netscape.com
e528c7739a Updates to quick DER decoder, bug # 161215
Fixes from Terry's review :
- remove quick allocator
- always allocate entry array even if there is 0 entry
- rename DecodeConstructed to DecodeExplicit and use a better test for that case
- other misc small fixes
Also move SEC_QuickDERDecodeItem to secasn1.h


git-svn-id: svn://10.0.0.236/trunk@126723 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:54:38 +00:00
rogerl%netscape.com
7616aa0897 DIKDIK build fixes.
git-svn-id: svn://10.0.0.236/trunk@126722 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:49:43 +00:00
blakeross%telocity.com
0bff93125e Remove an unnecessary focus event listener.
git-svn-id: svn://10.0.0.236/trunk@126721 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:45:31 +00:00
blakeross%telocity.com
e888d59c43 More view zoom work.
git-svn-id: svn://10.0.0.236/trunk@126720 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:36:18 +00:00
blakeross%telocity.com
1a142ab325 Remove the silly zoom menu, replace it with two simple menuitems (better wording pending).
git-svn-id: svn://10.0.0.236/trunk@126719 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:36:02 +00:00
sspitzer%netscape.com
d0bc3e4e62 clean up my fix for #124269, selecting a folder doesn't enable select all.
r=racham,sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@126717 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:29:34 +00:00
roc+%cs.cmu.edu
60be9caaa2 Bug 159587. Force view manager to invalidate necessary areas when clipping is changed. r=kmcclusk,sr=bz
git-svn-id: svn://10.0.0.236/trunk@126716 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 01:03:57 +00:00
blakeross%telocity.com
aeaebeba52 We don't need so many boxes wrapping the content area!?
git-svn-id: svn://10.0.0.236/trunk@126715 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:50:18 +00:00
blakeross%telocity.com
dc5373e67c Move chromeclass classes to <toolbaritem>s.
git-svn-id: svn://10.0.0.236/trunk@126714 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:45:17 +00:00
blakeross%telocity.com
6f74918699 No need for broadcasters for view/show hide items.
git-svn-id: svn://10.0.0.236/trunk@126712 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:40:47 +00:00
seawood%netscape.com
54399abb5f Removing unused SharedPrefix files.
Bug #160628 r=cls


git-svn-id: svn://10.0.0.236/trunk@126711 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:37:07 +00:00
seawood%netscape.com
ad53bb35ea Removing unused htmlparserSharedPrefix{,_debug}.h
Bug #125118 r=cls sr=bryner


git-svn-id: svn://10.0.0.236/trunk@126710 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:34:45 +00:00
brendan%mozilla.org
90087e2107 Fix a couple of jsemit.h glitches, and a benign but confusing hard case to do with extended switch jumps in jsemit.c's OptimizeSpanDeps (158382, r=khanson, sr=shaver).
git-svn-id: svn://10.0.0.236/trunk@126709 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:30:20 +00:00
blakeross%telocity.com
8f3ec4dd13 Removing unused file.
git-svn-id: svn://10.0.0.236/trunk@126707 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:05:49 +00:00
blakeross%telocity.com
9ce28ee2b2 Remove offline cruft.
git-svn-id: svn://10.0.0.236/trunk@126706 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-08 00:04:04 +00:00
leaf%mozilla.org
5dfb164d26 Automated update
git-svn-id: svn://10.0.0.236/trunk@126705 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:55:08 +00:00
ducarroz%netscape.com
96e15529ec Fix for bug 156146. Don't need to limite the number of messages forwarded as attachment (multi-selection case). R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@126704 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:54:45 +00:00
bzbarsky%mit.edu
5e12c05788 That last checkin was r=philipl@mail.utexas.edu,sr=blizzard
git-svn-id: svn://10.0.0.236/trunk@126703 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:54:11 +00:00
rginda%netscape.com
1df5868c78 - venkman only -
abbreviate tabs to 30 characters max


git-svn-id: svn://10.0.0.236/trunk@126701 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:53:46 +00:00
bzbarsky%mit.edu
c7b7bc03b9 Re-fix bug 139294 by backing out the fix for 152429, since bug 159268
fixed the crash that 152429 was on.


git-svn-id: svn://10.0.0.236/trunk@126699 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:52:26 +00:00
bienvenu%netscape.com
4c578db667 fix 129603 r=bhuvan, sr=sspitzer, ability to hide or grey out features not support by certain servers
git-svn-id: svn://10.0.0.236/trunk@126698 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:52:17 +00:00
dbradley%netscape.com
a4a892e817 Bug 153034 - FreeBSD 5.0-current's gcc uses thunks. r=jesup, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126697 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:50:46 +00:00
ducarroz%netscape.com
e73f6e492e FIx for bug 149072. the variable location already contains the value of the content-location header. Therefore it won't make sense to set base_ulr to the same value, that will cause MakeAbsoluteURL to return a null url and therefore make the feature that code was for to failed. R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@126696 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:48:21 +00:00
margaret.chan%sun.com
35f3687f8e Bug 149152 - Reduce exported functions to facilitate better runtime search. This is to address performance issue for Solaris. Check in once again for Nidheesh Dubey (nidheesh@eng.sun.com). Previous checkin has some editing problem. r=cls.
git-svn-id: svn://10.0.0.236/trunk@126695 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:46:20 +00:00
smontagu%netscape.com
115ac10ec9 Bug 161556: Arabic bitmap fonts are printed too small. Author=Roland.Mainz@informatik.med.uni-giessen.de, r=smontagu, sr=darin
git-svn-id: svn://10.0.0.236/trunk@126694 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:40:35 +00:00
dbradley%netscape.com
b526e4d0db Bug 159667 - xpconnect needs support for finding *real* wrapped native methods. r=dbradley, sr=jst patch=jband
git-svn-id: svn://10.0.0.236/trunk@126693 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:39:11 +00:00
wtc%netscape.com
344d25c972 Bug 148220: implements FIPS 198 conformance. r=relyea.
Modified Files: alghmac.c alghmac.h lowpbe.c pkcs11c.c


git-svn-id: svn://10.0.0.236/trunk@126692 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 23:27:58 +00:00
nicolson%netscape.com
c4f6221b64 Don't link to libhpi.so.
git-svn-id: svn://10.0.0.236/trunk@126687 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 22:53:01 +00:00
pinkerton%netscape.com
4bd4ffd203 When quitting, the d/l progress window and controller are shut down
before the d/l listener. add some code to separate the two and a
kung-fu death grip around the timer code to clean up this case (bug 161218)


git-svn-id: svn://10.0.0.236/trunk@126686 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 21:32:02 +00:00
smeredith%netscape.com
04ad40d2b9 Copy netscp.cfg to top level output dir. Bug 13187.
git-svn-id: svn://10.0.0.236/trunk@126684 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 21:07:39 +00:00
brendan%mozilla.org
9abeb299b8 Fix a macro name (LIMIT, not MAX -- fencepost, not maximum value; r=lumpy, sr=jack).
git-svn-id: svn://10.0.0.236/trunk@126682 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 20:22:38 +00:00
nelsonb%netscape.com
3b1e2d7136 Fix bug 160207 by changing the error alerts we send for failed decryption.
git-svn-id: svn://10.0.0.236/trunk@126681 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 20:01:51 +00:00
mjudge%netscape.com
f0f35586c2 backing out checked into closed tree
git-svn-id: svn://10.0.0.236/trunk@126680 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 19:52:18 +00:00
mjudge%netscape.com
bac2fdb53d fix for 127321. r=brade sr=smfr. Fix for word jumping getting stuck on punctuation.
git-svn-id: svn://10.0.0.236/trunk@126678 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 19:48:42 +00:00
mjudge%netscape.com
62be4351bb crasher fix: forgot {} around an indented block of code. this will fix 161444 and 161512. r=brade sr= smfr
git-svn-id: svn://10.0.0.236/trunk@126675 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 17:47:28 +00:00
mikep%oeone.com
6f630bf5ee Updating strings from Go menu.
git-svn-id: svn://10.0.0.236/trunk@126674 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 17:36:06 +00:00
brade%netscape.com
b812450ad0 call preventdefault for keypresses we insert (r=akkana, sr=sfraser) bug 158672 (and others)
git-svn-id: svn://10.0.0.236/trunk@126673 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:45:08 +00:00
mkaply%us.ibm.com
343b475e52 #161192
r=jeffreyj, sr=blizzard (platform specific code)
OS/2 only - use int not uint to avoid bad things when numbers go negative


git-svn-id: svn://10.0.0.236/trunk@126672 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:36:34 +00:00
bienvenu%netscape.com
c53e3bddc5 fix imap subscribe ui so that it lists children again when expanding containers r=cavin, sr=sspitzer, 160050
git-svn-id: svn://10.0.0.236/trunk@126671 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:30:46 +00:00
bienvenu%netscape.com
91392499da fix problems going on/offline w/o an unsent messages folder r=cavin, sr=sspitzer 158969
git-svn-id: svn://10.0.0.236/trunk@126670 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:27:10 +00:00
bienvenu%netscape.com
a90ba00394 fix mAcceptLanguage busteage in imap code so we'll send correct language to server, 16941, fix slowness appending msg to sent folder on non-uidplus imap servers 129495 r=naving, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@126669 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:25:33 +00:00
kaie%netscape.com
601ac40a0e b=161379 Fix JavaScript warnings in security code
r=ssaux sr=mscott


git-svn-id: svn://10.0.0.236/trunk@126668 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:24:04 +00:00
bienvenu%netscape.com
8994e72a2a add methods to get and set string properties and other hooks part of 161226 mail extensibility hooks r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@126667 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:17:27 +00:00
bienvenu%netscape.com
2c0b306c4c add methods to get and set string properties part of 161226 mail extensibility hooks r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@126666 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 14:16:35 +00:00
kaie%netscape.com
8e316b9469 b=123917 Remove non-NSS_3_4 codepaths
r=wtc sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126665 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 13:39:57 +00:00
seawood%netscape.com
fedc090ebc Removing nmake build support. use NMAKE_LAST_RITES tag to resurrect nmake build files.
Bug #158528


git-svn-id: svn://10.0.0.236/trunk@126664 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 13:10:15 +00:00
rods%netscape.com
61b7800795 Get title for document from properties so it says "Address Book"
Bug 156596 r=mscott sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@126663 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 12:49:15 +00:00
mikep%oeone.com
cc26ef064c Fixing bugs 156791 and 122646.
git-svn-id: svn://10.0.0.236/trunk@126662 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 12:03:23 +00:00
seawood%netscape.com
10b9b6376c Use the correct library name in the .def file.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #158763 r=cls


git-svn-id: svn://10.0.0.236/trunk@126661 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 11:55:24 +00:00
seawood%netscape.com
fdb04e5348 Allow mozilla to handle paths with spaces correctly. (Note: it still doesn't appear to work properly for gdb4. Reportedly works for gdb5 though)
Thanks to Andrew Schultz <ajschult@eos.ncsu.edu> for the patch.
Bug #157043 r=cls


git-svn-id: svn://10.0.0.236/trunk@126660 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 11:46:15 +00:00
seawood%netscape.com
8e768703b6 Remove explicitly linking against -lc on linux as it could break backwards binary compatibility. Linking using gcc/g++ should automatically link against libc.
Thanks to Franz.Sirl-kernel@lauterbach.com for the patch.
Bug #72766 r=wtc,cls


git-svn-id: svn://10.0.0.236/trunk@126659 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 11:34:44 +00:00
seawood%netscape.com
31dc7ebc00 Remove explicitly linking against -lc on linux as it could break backwards binary compatibility. Linking using gcc/g++ should automatically link against libc.
Thanks to Franz.Sirl-kernel@lauterbach.com for the patch.
Bug #72766 r=wtc,cls


git-svn-id: svn://10.0.0.236/trunk@126658 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 11:11:39 +00:00
mkaply%us.ibm.com
7311fa3f95 OS/2 bustage
git-svn-id: svn://10.0.0.236/trunk@126657 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 11:01:59 +00:00
dprice%netscape.com
9ea133b47a Fix scripts that build the installer. These are for developers to run
after a build is complete.  They are not part of the build system.


git-svn-id: svn://10.0.0.236/trunk@126655 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 09:37:44 +00:00
hyatt%netscape.com
cb8349b654 ifdefs for phoenix. 161448. not part of main mozilla build.
git-svn-id: svn://10.0.0.236/trunk@126654 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 09:26:30 +00:00
blakeross%telocity.com
704167f579 Fixing makefile.
git-svn-id: svn://10.0.0.236/trunk@126653 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 09:24:47 +00:00
caillon%returnzero.com
6b98629082 Bug 160806. Removing Netscape only prefs from Mozilla.
Patch from Stephen Walker <walk84@yahoo.com>
r=caillon sr=blake


git-svn-id: svn://10.0.0.236/trunk@126652 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 09:16:39 +00:00
blakeross%telocity.com
37f1dd5fcf Turn off the splash screen in phoenix (r=bryner sr=hyatt, npob).
git-svn-id: svn://10.0.0.236/trunk@126651 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 08:54:08 +00:00
timeless%mac.com
b64ecb5d25 Bug 135811 Crash after infinite recursion:
nsContentTreeOwner::FindItemWithName -> nsDocShell::FindItemWithName ->
nsDocShell::FindItemWithName (loop back to nsContentTreeOwner) - Trunk M1BR [@ ntdll.dll -
nsDocShell::FindItemWithName] [@ MSVCRT.DLL - nsWritingIterator<unsigned short>::write]
patch by adamlock r=mjudge sr=jst


git-svn-id: svn://10.0.0.236/trunk@126650 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 08:23:46 +00:00
blakeross%telocity.com
4551c04733 Add some safeguards in case you've removed certain buttons.
git-svn-id: svn://10.0.0.236/trunk@126649 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:48:17 +00:00
hyatt%netscape.com
6508271631 Put large icons back.
git-svn-id: svn://10.0.0.236/trunk@126648 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:45:35 +00:00
kerz%netscape.com
0f47b1ddc2 fixing size
git-svn-id: svn://10.0.0.236/trunk@126647 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:44:45 +00:00
blakeross%telocity.com
bb1c709404 Removing some unused prefs, turning on popup blocking by default.
git-svn-id: svn://10.0.0.236/trunk@126646 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:42:14 +00:00
kerz%netscape.com
e9b68090da new buttons
git-svn-id: svn://10.0.0.236/trunk@126645 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:39:50 +00:00
caillon%returnzero.com
d16eaa61f6 Bug 161184. Shrink nsIPresContexts by moving some default value settings out of it and into StyleStructs where they belong.
r=bzbarsky sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@126644 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:39:34 +00:00
blakeross%telocity.com
721b4f5689 Change chrome url to new package so we don't have to start with chrome parameter.
git-svn-id: svn://10.0.0.236/trunk@126643 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:38:43 +00:00
blakeross%telocity.com
e7e0ffadb0 Prevent dataloss when dragging a toolbar item and dropping it in the same spot.
git-svn-id: svn://10.0.0.236/trunk@126642 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:36:29 +00:00
sspitzer%netscape.com
a03a971fee starting m/m project.
git-svn-id: svn://10.0.0.236/trunk@126641 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:35:23 +00:00
hyatt%netscape.com
c7bda4d474 Sorta trying.
git-svn-id: svn://10.0.0.236/trunk@126640 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:28:24 +00:00
hyatt%netscape.com
6066b051d1 *(#&($#
git-svn-id: svn://10.0.0.236/trunk@126639 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:24:19 +00:00
sspitzer%netscape.com
6f5331ad97 fix for #161333. fix js warning when there are no selected messages.
r/sr=bienvenu.  leaving the (possible) perf improvements for ssu.


git-svn-id: svn://10.0.0.236/trunk@126638 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:10:31 +00:00
sspitzer%netscape.com
048eb834dd fix for #161371. js errors to the console when opening the edit menu when a server is selected in the folder pane. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@126637 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 07:01:25 +00:00
hyatt%netscape.com
6103299763 Sorta trying.
git-svn-id: svn://10.0.0.236/trunk@126636 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:58:21 +00:00
hyatt%netscape.com
a319db4f3d Sorta trying.
git-svn-id: svn://10.0.0.236/trunk@126635 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:53:57 +00:00
sspitzer%netscape.com
8777455d05 fix for #124269. fix the behaviour of select all (ctrl a) when the folder pane has focus. forward the command to the thread pane, and do a select all there.
then, set focus to the thread pane.  disable the command if there is no thread
view (gDBView), so that the command is disabled when we've got a server
selected in the folder pane and account central is showing.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@126634 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:50:13 +00:00
leaf%mozilla.org
a5098b4b88 Automated update
git-svn-id: svn://10.0.0.236/trunk@126633 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:40:08 +00:00
bryner%netscape.com
90f4d22118 Bug 161036 - provide mechanism to build experimental browser UI (bug 161036). r=cls.
git-svn-id: svn://10.0.0.236/trunk@126630 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:37:13 +00:00
ben%netscape.com
2b30a63ddf search invalid urls on google by default
git-svn-id: svn://10.0.0.236/trunk@126629 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:33:04 +00:00
blakeross%telocity.com
01fb4cf8f6 Turning on error pages instead of error dialogs.
git-svn-id: svn://10.0.0.236/trunk@126628 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:31:58 +00:00
hyatt%netscape.com
c4ef07fa0a Sorta trying.
git-svn-id: svn://10.0.0.236/trunk@126627 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:31:21 +00:00
blakeross%telocity.com
fa53ef0137 Adding new prefs file.
git-svn-id: svn://10.0.0.236/trunk@126626 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:30:50 +00:00
blakeross%telocity.com
cc5243dcc2 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126625 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:30:27 +00:00
hyatt%netscape.com
b5e90365c6 Repair some errors.
git-svn-id: svn://10.0.0.236/trunk@126624 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:29:52 +00:00
hyatt%netscape.com
97e36c63b4 Repair some errors.
git-svn-id: svn://10.0.0.236/trunk@126623 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:28:36 +00:00
ducarroz%netscape.com
0c4c15a657 Fix for bug 141730 (second try, with #ifdef this time). When forwarding inline or replying to an encrypted message, we need to decrypt the message body. R=kaie, SR=bienvenu,sspitzer
git-svn-id: svn://10.0.0.236/trunk@126622 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:27:43 +00:00
hyatt%netscape.com
366619041f Repair some errors.
git-svn-id: svn://10.0.0.236/trunk@126621 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:23:23 +00:00
hyatt%netscape.com
8d1c7aaf9b Sorta trying.
git-svn-id: svn://10.0.0.236/trunk@126620 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:21:06 +00:00
seawood%netscape.com
5cf2509541 Remove unused defines:
_IMPL_NS_HTML
_IMPL_NS_RDF
_IMPL_NS_WEB
USE_NSREG

Patches for removing above defines contributed by Stephen Walker <walk84@yahoo.com>.
Bug #125118 r=cls sr=bryner
Bug #160397 r=cls sr=bryner
Bug #160628 r=cls
Bug #160451 r=cls sr=bryner

_IMPL_NS_VIEW

Patches for removing above define contributed by Brian Ryner <bryner@netscape.com>
Bug #160416 r=cls


git-svn-id: svn://10.0.0.236/trunk@126619 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 06:08:00 +00:00
hyatt%netscape.com
af204f90dc Repair some errors.
git-svn-id: svn://10.0.0.236/trunk@126618 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:57:49 +00:00
blakeross%telocity.com
c43de4bdd4 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126617 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:57:15 +00:00
blakeross%telocity.com
362900366d Remove home from the default set of buttons.
git-svn-id: svn://10.0.0.236/trunk@126616 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:32:22 +00:00
blakeross%telocity.com
5d85741768 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126615 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:29:43 +00:00
blakeross%telocity.com
054bf83480 Comment and clean up the code. Readd flex/width when moving the item back to the palette to ensure proper spacing.
git-svn-id: svn://10.0.0.236/trunk@126612 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:27:24 +00:00
blakeross%telocity.com
8f1a1b9283 Comment and clean up the code. Readd flex/width when moving the item back to the palette to ensure proper spacing.
git-svn-id: svn://10.0.0.236/trunk@126611 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:27:00 +00:00
blakeross%telocity.com
feeb2dc9e2 Remove the trash images since we, er, trashed the trash bin.
git-svn-id: svn://10.0.0.236/trunk@126610 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:25:48 +00:00
blakeross%telocity.com
4a88c3735e Comment and clean up the code. Readd flex/width when moving the item back to the palette to ensure proper spacing.
git-svn-id: svn://10.0.0.236/trunk@126609 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:24:18 +00:00
caillon%returnzero.com
879ef396c7 Backing out fix for bug 141730 to fix bustage
git-svn-id: svn://10.0.0.236/trunk@126608 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 05:20:57 +00:00
kerz%netscape.com
153f8c5b06 adding images
git-svn-id: svn://10.0.0.236/trunk@126605 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 04:57:23 +00:00
blakeross%telocity.com
6143071119 Set up palette drop infrastructure for hyatt.
git-svn-id: svn://10.0.0.236/trunk@126604 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 04:54:36 +00:00
blakeross%telocity.com
9e6cedf61f Don't clone and them remove. Move!
git-svn-id: svn://10.0.0.236/trunk@126603 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 04:50:13 +00:00
caillon%returnzero.com
30f3d79580 Fixing naving's bustage
git-svn-id: svn://10.0.0.236/trunk@126602 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 04:19:58 +00:00
mkaply%us.ibm.com
7c3c72e2c2 Better fix for OS/2 bustage earlier
git-svn-id: svn://10.0.0.236/trunk@126601 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 04:06:57 +00:00
jpierre%netscape.com
e1c3c2a856 Fix for 157649 - allow crlutil to do partial decoding so it can be used as a test program
git-svn-id: svn://10.0.0.236/trunk@126600 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:53:07 +00:00
kerz%netscape.com
25788d3c9a not quite yet
git-svn-id: svn://10.0.0.236/trunk@126599 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:51:18 +00:00
jpierre%netscape.com
0d0058982f Additional error reporting
git-svn-id: svn://10.0.0.236/trunk@126598 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:47:23 +00:00
jpierre%netscape.com
08b5310223 Implement partial CRL decoding. Fix for 149816. r=wtc . Uses new quick DER decoder
git-svn-id: svn://10.0.0.236/trunk@126597 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:44:12 +00:00
jpierre%netscape.com
7f8d8bb692 Reorder functions to avoid forward declaration of DecodePointer
git-svn-id: svn://10.0.0.236/trunk@126596 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:40:47 +00:00
kerz%netscape.com
3f55ccf205 wrong file
git-svn-id: svn://10.0.0.236/trunk@126595 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:40:39 +00:00
jpierre%netscape.com
a150615a41 Be consistent in memory allocations - use QuickZAlloc
git-svn-id: svn://10.0.0.236/trunk@126594 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:36:46 +00:00
ducarroz%netscape.com
80b53bb5c5 Fix for bug 141730. When forwarding inline or replying to an encrypted message, we need to decrypt the message body. R=kaie, SR=bienvenu,sspitzer
git-svn-id: svn://10.0.0.236/trunk@126593 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:35:33 +00:00
kerz%netscape.com
02ea719bea adding files
git-svn-id: svn://10.0.0.236/trunk@126592 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:35:17 +00:00
blakeross%telocity.com
732cb0559a *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126591 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:34:02 +00:00
blakeross%telocity.com
9dede66183 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126590 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:33:05 +00:00
naving%netscape.com
1f6c9d0804 83251 r=bhuvan sr=bienvenu Implementing feature drag and drop message to standalone msg window should load it.
git-svn-id: svn://10.0.0.236/trunk@126589 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:32:38 +00:00
blakeross%telocity.com
62f9672437 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126588 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:29:50 +00:00
naving%netscape.com
807890fe3e 153251 r=cavin sr=bienvenu. Make sure that custom header entered by the user follow rfc2822 standards for
header field name. fixes error getting new msgs for imap.


git-svn-id: svn://10.0.0.236/trunk@126587 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:28:32 +00:00
jpierre%netscape.com
54ed62902c Add new quick DER decoder. r=wtc
git-svn-id: svn://10.0.0.236/trunk@126586 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:25:47 +00:00
naving%netscape.com
c1eed17b85 121359 r=cavin sr=bienvenu. when exiting out of quick search scroll to first new msg if nothing to select.
git-svn-id: svn://10.0.0.236/trunk@126585 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:22:08 +00:00
ducarroz%netscape.com
e23215e961 Fix for bug 154370. Correctly set the colwrap when emitting HTML. R=varada, SR=bievenu
git-svn-id: svn://10.0.0.236/trunk@126584 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:15:54 +00:00
av%netscape.com
a788958446 Bug 53895 -- stripping file suffixes in plugin mime description strings, r=peterl, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126583 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 03:10:33 +00:00
rginda%netscape.com
2143648d92 - venkman only -
bump version number again.
consider commands invoked via a hotkey as "interactive"


git-svn-id: svn://10.0.0.236/trunk@126582 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:47:26 +00:00
av%netscape.com
7e4a776640 Bug 159646 -- taking care of stale pointer in the plugin sample code, not part of the build
git-svn-id: svn://10.0.0.236/trunk@126581 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:46:43 +00:00
sfraser%netscape.com
c94631fb82 Fix for bug 102797: remove call to EventAvail, firstly because it is redundant (WaitNextEvent will return promptly if there is an event to handle), and because it nullifies the effects of an earlier WakeUpProcess call, which can kill performance in some areas. r=sdagley, sr=scc.
git-svn-id: svn://10.0.0.236/trunk@126579 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:23:00 +00:00
av%netscape.com
64553ea490 Bug 43543 -- removing redundant calls to nsPluginStreamInfo::SetURL, r=peterl, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126578 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:17:55 +00:00
darin%netscape.com
bf8d9a2755 fixing planetoid (mach-o) bustage... GCC 2.95.2 seems awfully picky!
git-svn-id: svn://10.0.0.236/trunk@126577 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:17:48 +00:00
rbs%maths.uq.edu.au
5010911a5d Cleanup CSS errors, b=157376, r=dbaron, sr=bzbarski
git-svn-id: svn://10.0.0.236/trunk@126576 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 02:15:28 +00:00
timeless%mac.com
d691a3978c Bug 29856 *nix only : Window Class the same for all mozilla windows
original patch from arik devens / rob ginda
r=akkana sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126575 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 01:59:22 +00:00
darin%netscape.com
48c821219a fixing stupid typo ... wish gcc had been less forgiving!
git-svn-id: svn://10.0.0.236/trunk@126574 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 01:55:33 +00:00
rginda%netscape.com
d849824e5e - venkman only -
changing version number. 0.9.33 was already released on hacksrus as something else.


git-svn-id: svn://10.0.0.236/trunk@126573 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 01:23:11 +00:00
darin%netscape.com
74768a125f fixes bug 105292 - Mozilla is sending an Accept-encoding for deflate and
compress but doesn't support it [make timesofindia.com load again!]
r=dougt sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@126570 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 01:16:49 +00:00
darin%netscape.com
7f9fc38dbd landing gordon's patch for bug 81724 - disk cache needs stream wrappers
(disk cache phase 3) patch=gordon r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@126569 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 01:13:29 +00:00
wtc%netscape.com
2c04bc3eb8 Bug 136344: added type casts to allow compilation with a C++ compiler.
The patch is contributed by Nick Blievers <nickb@adacel.com.au>.


git-svn-id: svn://10.0.0.236/trunk@126568 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:40:44 +00:00
bzbarsky%mit.edu
c3a70b358f back out accidental part of last checkin; fixing bustage
git-svn-id: svn://10.0.0.236/trunk@126567 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:37:04 +00:00
av%netscape.com
30bfa01706 Bug 83189 -- marking deprecated interfaces as such, r=peterl, sr=darin
git-svn-id: svn://10.0.0.236/trunk@126566 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:35:17 +00:00
blakeross%telocity.com
5e0c6a7ddc Ensure that the toolbar doesn't shrink down when you remove all the items.
git-svn-id: svn://10.0.0.236/trunk@126565 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:29:07 +00:00
rginda%netscape.com
f39c9df35b - venkman only -
bug 160917, land venkman 0.9.33
makes eval the default command, require / before all other commands.
add "evaluation object" to eval against objects in arbitrary windows without being stopped.
adds charset detection to the new source view.
add "msg.report.charset" to specify which charset localizd messages should be converted to before writing them into a profile report or generated help text.
move profile report templates into the locale directory so they can be properly localized.
change file->quit to file->exit on windows machines.
consider ";" to be a filename separator for getFileFromPath()
abbreviate long filenames when placing them in a source tab.
rename leftmost vertical container form "vleft" to "gutter" in the factory layout, so new views are displayed there by default.


git-svn-id: svn://10.0.0.236/trunk@126563 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:25:00 +00:00
wtc%netscape.com
440721fc59 Bug 149195: added IPv6 support for IRIX. The patch is contributed by
nickb@adacel.com.au (Nick Blievers).


git-svn-id: svn://10.0.0.236/trunk@126561 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:16:39 +00:00
wtc%netscape.com
6ec7cdf9ee Bug 158396: fixed an off-by-one error. Replaced -1 by the EOF macro.
git-svn-id: svn://10.0.0.236/trunk@126560 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:11:38 +00:00
naving%netscape.com
71c9e95e1d 159990 r=cavin sr=bienvenu make drag and drop of messages to newly created local folder work (when done twice
in a row)


git-svn-id: svn://10.0.0.236/trunk@126559 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:07:00 +00:00
akkana%netscape.com
b42d30d9d7 122992: remove a few more editorshell dependencies. r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@126558 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:06:41 +00:00
akkana%netscape.com
06192e5146 118883: Fix a leak of nsHTMLCSSUtils. r=glazman sr=kin
git-svn-id: svn://10.0.0.236/trunk@126557 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:02:10 +00:00
mjudge%netscape.com
a678fcf7ab 141888 sr=kin r=brade patch to fix too agressive caret disabling from readonly textareas/input areas.
git-svn-id: svn://10.0.0.236/trunk@126556 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-07 00:01:11 +00:00
naving%netscape.com
08318d0b1a 72617 r=racham sr=bienvenu Use separate flavor for message (text/x-moz-message) and separate flavor for folder (text/x-moz-folder), makes it easy to maintain
git-svn-id: svn://10.0.0.236/trunk@126555 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:58:53 +00:00
mjudge%netscape.com
7ce727c759 159207. HR is now selectable and navigatable. r=cmanske sr=kin
git-svn-id: svn://10.0.0.236/trunk@126554 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:56:50 +00:00
akkana%netscape.com
8ffd323745 Bug 137253: don't break long words (like urls) during rewrap. r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@126553 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:54:19 +00:00
bzbarsky%mit.edu
a7b6a5ad56 comment-only add-on to bug 161243 (which is what that previous checkin was)
git-svn-id: svn://10.0.0.236/trunk@126552 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:53:36 +00:00
akkana%netscape.com
a517eb157c 105895: shift-middleclick in content opens clipboard url in new tab or window. r=brade, sr=jag
git-svn-id: svn://10.0.0.236/trunk@126551 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:52:15 +00:00
bryner%netscape.com
b13f72cfda Backing out a workaround that actually breaks applesingle decoding. Only affects the Mach-O build.
git-svn-id: svn://10.0.0.236/trunk@126550 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:51:59 +00:00
alecf%netscape.com
feeeaa6162 fix for bug 12493 - layout should canonicalize urls before asking global history for visited status
r=radha, sr=darin


git-svn-id: svn://10.0.0.236/trunk@126549 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:51:42 +00:00
bzbarsky%mit.edu
281d89498a clean up some form control stuff (use common helpers and superclasses
for shared functionality where possible).  r=jkeiser, sr=jst


git-svn-id: svn://10.0.0.236/trunk@126548 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:50:08 +00:00
smontagu%netscape.com
eb56d4016c Bug 140609: navigating menu bar with arrows is reversed when UI aligned to the right. r=dean_tessman@hotmail.com, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@126546 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:47:01 +00:00
alecf%netscape.com
e8c2f0f72e bug 142310 - topcrash fix - make the member hashtable be stored as a member variable, no need to allocate it on demand
r=darin, sr=jag


git-svn-id: svn://10.0.0.236/trunk@126545 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:46:18 +00:00
shrutiv%netscape.com
488751f29d Fix for bug 18321: Japanese bookmarks and toolbar entrys missing (r=smeredith)
git-svn-id: svn://10.0.0.236/trunk@126543 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:35:26 +00:00
rogerl%netscape.com
3fd968f94e Inc.
git-svn-id: svn://10.0.0.236/trunk@126542 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:02:42 +00:00
shrutiv%netscape.com
e85655fa4f Backing out fix for bug 16908: Reorder additional components
git-svn-id: svn://10.0.0.236/trunk@126541 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 23:01:55 +00:00
sfraser%netscape.com
4a1b9b9184 Fix for bug 152975. Add a Show/Hide Sidebar menu item with key shortcut Command-/. Patch from Prachi Guariar.
git-svn-id: svn://10.0.0.236/trunk@126537 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 20:42:25 +00:00
sfraser%netscape.com
aca71b7548 Patch from Max Horn to optimize 'stringByTruncatingTo'.
git-svn-id: svn://10.0.0.236/trunk@126536 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 20:04:07 +00:00
loadrunner%betak.net
89ac6d9733 b101869, [ProfileCreation]CA region should not be the default setting in Preferred Content dropdown menu. r=tao, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126535 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 19:27:20 +00:00
pinkerton%netscape.com
8a6e1d3e35 Fix problem where hiding the status bar in a popup would cause the content
area to extend below the window and scrolling would be messed up and the
horizontal scrollbar would be hidden. (bug 153116).


git-svn-id: svn://10.0.0.236/trunk@126534 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 19:20:28 +00:00
cmanske%netscape.com
95ae7443e7 Moved text properties utility methods as part of image border bug 142093, r=brade, sr=dveditz. Editor.js also has fix for wrong 'Find' component causing missing menuitems, b=142093, r=akkana, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@126533 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 19:16:03 +00:00
cmanske%netscape.com
c94c2e3f71 Improved border attribute handling for images, b=142093, r=brade, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@126532 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 19:15:55 +00:00
wtc%netscape.com
d71a47786f Bug 161316: make pk11pqg.h C++ safe.
git-svn-id: svn://10.0.0.236/trunk@126530 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 18:31:35 +00:00
mitchf%netscape.com
39cfc3f80e allows default mail port number in empty check. fixes bug 18780
git-svn-id: svn://10.0.0.236/trunk@126529 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 18:11:37 +00:00
rogerl%netscape.com
4782daafdc Adding more static defn.
git-svn-id: svn://10.0.0.236/trunk@126527 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 17:34:32 +00:00
glen.beasley%sun.com
c078942dea commented debug statement
git-svn-id: svn://10.0.0.236/trunk@126525 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 16:41:43 +00:00
mkaply%us.ibm.com
60edb199c5 OS/2 bustage
git-svn-id: svn://10.0.0.236/trunk@126523 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 15:22:34 +00:00
timeless%mac.com
265f6e8970 Bug 101059 [FIX] Can't drag between folders on personal toolbar
patch by chanial@noos.fr r=timeless sr=blake


git-svn-id: svn://10.0.0.236/trunk@126522 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 15:16:40 +00:00
timeless%mac.com
8c236d9863 Bug 83298 Folder Properties window has the wrong text
patch by chanial@noos.fr r=timeless sr=blake


git-svn-id: svn://10.0.0.236/trunk@126521 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 15:13:43 +00:00
pinkerton%netscape.com
2ff223adf7 Always use setTitle to set the window title (bug 152626)
git-svn-id: svn://10.0.0.236/trunk@126520 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 15:00:30 +00:00
jaggernaut%netscape.com
d9bc67d966 BUg 144533: filter some of the browser's web progress notifications in C++ to avoid expensive c++ -> JS calls. Patch by darin, jag, r=caillon, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@126519 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 14:51:06 +00:00
glazman%netscape.com
fa21906e76 Introduce 2 CSS values for color property and 1 for text-decoration retrieving the pref for anchors' color, visited anchors' color, and underline or not the anchors; b=57757, r=brade, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126518 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 14:39:55 +00:00
dbaron%fas.harvard.edu
a0a7a5816a Mark freed memory with 0xdd in DEBUG builds so that we don't free things to the pres shell's arena and then continue using them. b=114219 r=hixie sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126517 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:57:16 +00:00
bzbarsky%mit.edu
0fccde2c29 respect content-style-type HTTP header and support the <meta> tag in
XML.  Bug 161268, r=peterv, sr=dbaron.


git-svn-id: svn://10.0.0.236/trunk@126516 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:51:48 +00:00
dbaron%fas.harvard.edu
07544907b6 Allocate PerFrameData and PerSpanData in pres shell's stack arena. b=154910 r=bzbarsky sr=waterson
git-svn-id: svn://10.0.0.236/trunk@126515 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:51:07 +00:00
dbaron%fas.harvard.edu
5603f12809 Add comments explaining lookups in nsCachedStyleData. b=156902 sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126513 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:46:35 +00:00
dbaron%fas.harvard.edu
ac193497c0 Propagate |aNotify| parameter through XBL to attribute changes of XBL-inherited attributes. b=156547 sr=hyatt r=bryner
git-svn-id: svn://10.0.0.236/trunk@126511 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:39:22 +00:00
kaie%netscape.com
3a44e6c92a b=148232 Support application/pkcs7-signature mime type on incoming S/Mime messages.
r=ducarroz sr=darin


git-svn-id: svn://10.0.0.236/trunk@126510 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:29:12 +00:00
kaie%netscape.com
9b3bd6cc32 b=124037 Decrease cert manager loading time.
r=rangansen/jkeiser sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126509 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:25:23 +00:00
kaie%netscape.com
4e5f3ebf4c b=136819 Returned value from getPSMContentType is compared to wrong enum
Patch from t8m@centrum.cz
r=kaie sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126508 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:21:32 +00:00
kaie%netscape.com
52b0540d8f b=144435 Allow to edit trust for other people's certificate
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126507 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:18:12 +00:00
kaie%netscape.com
cb90967539 b=74339 Support import of SSL, S/MIME, and CA certs
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126506 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:11:15 +00:00
kaie%netscape.com
1055374038 b=159053 Memory leak in nsSecureBrowserUIImpl
r=jkeiser sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126505 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:06:21 +00:00
mkaply%us.ibm.com
5b34c660d2 OS/2 bustage - I think our compiler has trouble because an nsCOMPtr to nsIWidget isn't a real nsIWidget pointer
git-svn-id: svn://10.0.0.236/trunk@126504 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 13:03:25 +00:00
dbaron%fas.harvard.edu
b8be429add Hacky fix to make HR's ALIGN attribute work again. b=158197 r=mjudge sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126503 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:59:48 +00:00
dbaron%fas.harvard.edu
75ddcfbe90 Make XBL report XML parse errors. b=156714 r=caillon sr=ben
git-svn-id: svn://10.0.0.236/trunk@126502 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:55:44 +00:00
dbaron%fas.harvard.edu
26e2cab608 Fix regression causing scrollbars not to be extended by absolutely positioned elements in some cases. Also removed unused |FixParentAndView|. b=154230 r=bzbarsky sr=jst
git-svn-id: svn://10.0.0.236/trunk@126501 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:54:52 +00:00
kaie%netscape.com
070833ec43 b=135546 Fix internal slot reference leak in cryptojs_generateOneKeyPair()
r=wtc sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126500 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:54:39 +00:00
kaie%netscape.com
08d30d4451 b=132589 Fix incorrect verification status when viewing email-signing-only certificates.
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126499 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:51:43 +00:00
dbaron%fas.harvard.edu
008bc23d0e Stop using |nsCOMPtr|s on nsIBox and nsIMenuParent, which are always implemented on frames, to prevent calling of |Release| after frame destruction and freeing to the pres shell arena. b=114235 r=bryner sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126498 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:48:28 +00:00
peterv%netscape.com
36cbbe53e1 Bustage fix for Transformiix standalone.
git-svn-id: svn://10.0.0.236/trunk@126497 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:29:49 +00:00
peterv%netscape.com
f21892e8db Landing TX_BRIDGE_1_1_BRANCH.
Rewrite pretty much all variable and parameter handling. Makes global and local variables be handled differently. Global variables are no longer part of the variables stack, and are lazily evaluated. Fixes bugs 117658, 92929 and some unfiled bugs and fixes remaining parts of bugs 83651 and 96802. Patch by sicking, r=Pike sr=bz.

Fix for bug 156464: fix rounding problems in module, allow patterns without any '0's in the integer part and fix problems with grouping for standalone. Patch by sicking, r=Pike sr=bz.

Fix for bug 157340 (Probable bugs in extensions/transformiix/source/base/txMozillaString.h). Patch by peterv, r=Pike, sr=bz.

Fix for bug 146967 (Clean up Transformiix strings). Patch by peterv, r=sicking, sr=jst.

Fix for bug 156464 (Remove static strings from Transformiix). Patch by peterv, r=Pike, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@126495 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:28:27 +00:00
mikep%oeone.com
7766aa4ede Fixing bug 161252.
git-svn-id: svn://10.0.0.236/trunk@126494 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 12:22:46 +00:00
bzbarsky%mit.edu
a3402cff74 part of patch for bug 127847. r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126492 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 09:53:58 +00:00
hyatt%netscape.com
29ebe6f856 Dialog looks much better now.
git-svn-id: svn://10.0.0.236/trunk@126491 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:52:54 +00:00
hyatt%netscape.com
f3fbd25b3b Dialog looks much better now.
git-svn-id: svn://10.0.0.236/trunk@126490 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:51:34 +00:00
hyatt%netscape.com
ffba775b8f Dialog looks much better now.
git-svn-id: svn://10.0.0.236/trunk@126489 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:42:24 +00:00
bzbarsky%mit.edu
0a9a59a326 ugh. I mismerged the patch for bug 150451. This is the right code
now.  Thanks to Sander for catching it.


git-svn-id: svn://10.0.0.236/trunk@126488 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:41:52 +00:00
kerz%netscape.com
ffb7ff22f9 adding images
git-svn-id: svn://10.0.0.236/trunk@126487 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:37:30 +00:00
kerz%netscape.com
38f2b3d993 more images
git-svn-id: svn://10.0.0.236/trunk@126486 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:36:28 +00:00
bzbarsky%mit.edu
cddc8ec348 <object> should be in form.elements. Bug 127847, r=jkeiser, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@126485 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:32:19 +00:00
hyatt%netscape.com
5c94106a0c Add help text above toolbar.
git-svn-id: svn://10.0.0.236/trunk@126484 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:29:38 +00:00
blakeross%telocity.com
eab376dfb5 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126483 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:29:06 +00:00
blakeross%telocity.com
aeafd26bfa *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126482 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:28:39 +00:00
blakeross%telocity.com
17130a5f55 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126481 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:22:57 +00:00
hyatt%netscape.com
dc11995d3e Fix url bar and throbber.
git-svn-id: svn://10.0.0.236/trunk@126480 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:22:45 +00:00
blakeross%telocity.com
bc96d48b7c Add title to the customize dialog.
git-svn-id: svn://10.0.0.236/trunk@126479 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:22:33 +00:00
blakeross%telocity.com
dad3021719 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126478 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:17:29 +00:00
hyatt%netscape.com
046a0e7f1c Make restoring the default set work.
git-svn-id: svn://10.0.0.236/trunk@126477 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:12:33 +00:00
blakeross%telocity.com
81b51e96f0 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126476 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:04:10 +00:00
hyatt%netscape.com
21e8df0bc3 Make restoring the default set work.
git-svn-id: svn://10.0.0.236/trunk@126475 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:03:33 +00:00
hyatt%netscape.com
bc46a259bb Make restoring the default set work.
git-svn-id: svn://10.0.0.236/trunk@126474 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 08:03:07 +00:00
blakeross%telocity.com
fe6b711cd1 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126473 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:53:38 +00:00
hyatt%netscape.com
adf2dbde40 New default toolbar config.
git-svn-id: svn://10.0.0.236/trunk@126472 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:44:55 +00:00
hyatt%netscape.com
ec470b689a Make removals save.
git-svn-id: svn://10.0.0.236/trunk@126471 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:40:19 +00:00
hyatt%netscape.com
6f8aaa0d8e Make removals save.
git-svn-id: svn://10.0.0.236/trunk@126470 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:39:25 +00:00
aaronl%netscape.com
e37ce3fcbf Bug 160334. Firing accessibilty API event too early when indicating doc ready for MSAA parsing. r=jgaunt, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@126469 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:37:49 +00:00
hyatt%netscape.com
1876c44714 Make url bar work again after toolbar rebuild.
git-svn-id: svn://10.0.0.236/trunk@126468 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:34:59 +00:00
blakeross%telocity.com
9b1d585878 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126467 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:33:41 +00:00
blakeross%telocity.com
22afa94545 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126466 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:30:16 +00:00
hyatt%netscape.com
446e854fee Make the opener update.
git-svn-id: svn://10.0.0.236/trunk@126465 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:22:38 +00:00
blakeross%telocity.com
50c35094be *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126464 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:16:23 +00:00
bzbarsky%mit.edu
566b389a02 fix bustage
git-svn-id: svn://10.0.0.236/trunk@126463 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:08:47 +00:00
hyatt%netscape.com
1cd3837b39 Toolbars update.
git-svn-id: svn://10.0.0.236/trunk@126462 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 07:03:36 +00:00
bzbarsky%mit.edu
8d8ee8c3b8 Fix bustage....
git-svn-id: svn://10.0.0.236/trunk@126461 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:48:31 +00:00
blakeross%telocity.com
c5c7d4690d *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126460 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:41:02 +00:00
blakeross%telocity.com
7995f6869a *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126459 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:33:06 +00:00
henry.jia%sun.com
3f9b0291d9 5th patch for bug 158080
Description: replace the hardcode of @mozilla.org/embedcomp/window-watcher;1 with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=anto, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126458 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:32:02 +00:00
blakeross%telocity.com
743f316f54 Add some comments to clarify what's happening.
git-svn-id: svn://10.0.0.236/trunk@126457 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:26:43 +00:00
henry.jia%sun.com
148ed167a2 5th patch for bug 158080
Description: replace the hardcode of @mozilla.org/embedcomp/window-watcher;1 with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=anto, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126456 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:20:45 +00:00
blakeross%telocity.com
c863768990 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126455 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:16:32 +00:00
blakeross%telocity.com
3cb2f68b39 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126454 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:09:04 +00:00
blakeross%telocity.com
16b5d1c84a *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126453 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:06:44 +00:00
blakeross%telocity.com
8814d78c8e *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126452 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:04:50 +00:00
kerz%netscape.com
0dbe756560 fixing images
git-svn-id: svn://10.0.0.236/trunk@126451 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:02:43 +00:00
blakeross%telocity.com
21cf57d68f *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126450 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 06:01:53 +00:00
henry.jia%sun.com
c294edc1e5 4th patch for bug 158080
Description: replace the hardcode of "@mozilla.org/embedcomp/window-watcher;1" with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=anto, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126449 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:56:22 +00:00
blakeross%telocity.com
879c4c95cd *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126448 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:45:55 +00:00
bzbarsky%mit.edu
133bb5d856 Fix serialization of clip in .cssText. Bug 104321, r=glazman, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@126447 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:42:44 +00:00
henry.jia%sun.com
50bd828777 3rd patch for bug 158080
Description: replace the hardcode of "@mozilla.org/embedcomp/window-watcher;1" with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=anto, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126446 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:37:58 +00:00
blakeross%telocity.com
0a75e63da3 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126445 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:37:40 +00:00
bzbarsky%mit.edu
a260f77062 Expose @charset rules in the CSSOM. Bug 160834. r=glazman, sr=dbaron.
git-svn-id: svn://10.0.0.236/trunk@126444 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:26:41 +00:00
bzbarsky%mit.edu
7290c55577 Fix JS object display in Inspector. Bug 160254, r=timeless, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@126443 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:20:29 +00:00
bzbarsky%mit.edu
31d3f74d14 Make .style and computed style format rgb() values the same way. Bug
160247, r=peterv, sr=jst


git-svn-id: svn://10.0.0.236/trunk@126442 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:18:21 +00:00
henry.jia%sun.com
4621f3c504 2nd patch for bug 158080
Description: replace the hardcode of "@mozilla.org/embedcomp/window-watcher;1" with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=anto, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@126441 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:11:23 +00:00
bzbarsky%mit.edu
c2ec1d4ec6 dynamically adding @import rules does not trigger all the updates it
should.  Bug 160065, r=peterv, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@126440 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:08:47 +00:00
bzbarsky%mit.edu
6ebdb1be58 linux filepicker should remember size when it's resized. Bug 159131,
r=caillon, sr=jag


git-svn-id: svn://10.0.0.236/trunk@126439 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 05:04:34 +00:00
jkeiser%netscape.com
5894ef9407 Get rid of dirt and sludge from the select interface, and add comments (bug 159242), r=rods@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@126438 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:59:15 +00:00
bzbarsky%mit.edu
46e1f06343 Remove mis-implementation of the "ua-dependent" min-width stuff from
CSS1/2.  Bug 159059, sr=dbaron, r=hyatt


git-svn-id: svn://10.0.0.236/trunk@126437 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:50:40 +00:00
kerz%netscape.com
9537e9c0e0 Adding large nav button images
git-svn-id: svn://10.0.0.236/trunk@126436 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:48:05 +00:00
kerz%netscape.com
4ca81c51a4 renaming files
git-svn-id: svn://10.0.0.236/trunk@126435 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:41:57 +00:00
kerz%netscape.com
2066a6c0fc Adding new buttons.
git-svn-id: svn://10.0.0.236/trunk@126434 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:38:14 +00:00
jkeiser%netscape.com
c00cbe901d Make form controls without names not be mutually exclusive (bug 92116), r=pete.zha@sun.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@126433 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:32:57 +00:00
bzbarsky%mit.edu
595530476a <font size="0"> should show as size="1", not size="3". Bug 160172,
r=caillon, sr=jst.


git-svn-id: svn://10.0.0.236/trunk@126432 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:32:39 +00:00
despotdaemon%netscape.com
0e2cc6c8d3 Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@126431 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:31:38 +00:00
jkeiser%netscape.com
80534a3082 Output a JS warning when a web developer does the wrong form sub attributes (bug 158927), r=rods, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@126430 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:26:35 +00:00
hyatt%netscape.com
eeadedbfe5 Tweak.
git-svn-id: svn://10.0.0.236/trunk@126429 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:20:11 +00:00
seawood%netscape.com
3a25446af2 Fix win32 gmake static builds.
Bug #160104 r=bryner


git-svn-id: svn://10.0.0.236/trunk@126428 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:17:50 +00:00
jkeiser%netscape.com
7bdfb971a7 Add generalized macro-based PLDHashTable C++ wrapper (bug 125849), r=alecf, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@126427 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:15:10 +00:00
bolian.yin%sun.com
ec62f26b3a Translate nsIAccessible states to ATK states. Bug 153841.
patch by john.sun@sun.com, r=aaronl, sr=jst.
Note: this is for the default build.


git-svn-id: svn://10.0.0.236/trunk@126426 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 04:02:13 +00:00
henry.jia%sun.com
11f2593449 Second patch for bug 27002
Cyrus IMAP: Send and Save as Draft/Template problems on Cyrus
Patch by Henry.Jia@sun.com
r=cavin, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@126425 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:47:06 +00:00
bzbarsky%mit.edu
99b0c67ba5 Fix crash in nsRenderingContextGTK::Init. Bug 156043, patch by
Roland.Mainz@informatik.med.uni-giessen.de (Roland Mainz), r=roc, sr=scc


git-svn-id: svn://10.0.0.236/trunk@126424 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:27:05 +00:00
hyatt%netscape.com
19490b868e Dialog looks real good now.
git-svn-id: svn://10.0.0.236/trunk@126423 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:23:59 +00:00
bzbarsky%mit.edu
edc3f37046 Bug 157913. Priority is "important", not "!important". r=glazman,
sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@126422 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:21:14 +00:00
blakeross%telocity.com
cc32f10978 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126421 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:19:05 +00:00
blakeross%telocity.com
b6dca47dac *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126420 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:17:24 +00:00
hyatt%netscape.com
62d6cda679 Stop mouseover on the palette items in the customize toolbar dialog.
git-svn-id: svn://10.0.0.236/trunk@126419 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:07:28 +00:00
hyatt%netscape.com
2da98d4e85 move more rules into the css sheet.
git-svn-id: svn://10.0.0.236/trunk@126418 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 03:01:38 +00:00
hyatt%netscape.com
8f57f70ee9 Dialog looks ok now.
git-svn-id: svn://10.0.0.236/trunk@126416 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 02:59:58 +00:00
pinkerton%netscape.com
a2fdeeb6dd adding max horn
git-svn-id: svn://10.0.0.236/trunk@126414 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 02:32:34 +00:00
pinkerton%netscape.com
69efdcbc53 Add tooltips to bookmark outliner. allow context-click to set the
selection, not rely on what's already selected (bug 150186)


git-svn-id: svn://10.0.0.236/trunk@126413 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 02:25:46 +00:00
aaronl%netscape.com
4ea74c2be9 Not part of build. Bug 30088 - type ahead find, fixes based on comments from r=Akkana
git-svn-id: svn://10.0.0.236/trunk@126411 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 02:06:19 +00:00
sfraser%netscape.com
9841a537e9 Fix for bug 156607 (performance slow with large numbers of tabs open). These changes make all the tabs the same width, and put a cap of 16 on the number of tabs per browser window. When at this limit, commands that would open a new tab (e.g. view source) now open a new window. 'New tab' menu items should disable appropriately.
git-svn-id: svn://10.0.0.236/trunk@126410 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:53:37 +00:00
hyatt%netscape.com
c02ef157db Updating customize dialog.
git-svn-id: svn://10.0.0.236/trunk@126409 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:52:24 +00:00
hyatt%netscape.com
53f81db92b Updating dialog.
git-svn-id: svn://10.0.0.236/trunk@126408 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:52:11 +00:00
bzbarsky%mit.edu
39fdecde54 Doh. There's more bustage in this file.
git-svn-id: svn://10.0.0.236/trunk@126407 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:47:23 +00:00
bzbarsky%mit.edu
aa8f078373 fix bustage
git-svn-id: svn://10.0.0.236/trunk@126405 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:32:51 +00:00
bzbarsky%mit.edu
bb6f8d7310 Bug 150451. Don't use ".html" as a filename. Patch by Sander
<mybugzilla@juima.org>, r=bzbarsky, sr=jag


git-svn-id: svn://10.0.0.236/trunk@126404 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:27:31 +00:00
bzbarsky%mit.edu
ef444a9b4f Bug 124870. PRBool -> PRPackedBool in lots of places. Patch by
dann@godzilla.ics.uci.edu, r=heikki, sr=jst


git-svn-id: svn://10.0.0.236/trunk@126401 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:22:59 +00:00
caillon%returnzero.com
a63e0296c6 Bug 160573. Fix a CSS parser warning. Patched by Olivier Cahagne <cahagn_o@epita.fr> r=caillon sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126400 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:22:43 +00:00
caillon%returnzero.com
4dae9474eb Bug 160391. Fix a CSS parser error. Patched by Olivier Cahagne <cahagn_o@epita.fr> r=caillon sr=blake
git-svn-id: svn://10.0.0.236/trunk@126399 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:21:03 +00:00
bzbarsky%mit.edu
94ee02ae90 Bug 117564. Make Inspector flash the right spot when things are
positioned.  r=caillon, sr=hewitt.


git-svn-id: svn://10.0.0.236/trunk@126398 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:20:08 +00:00
curt%netscape.com
bf1dc146ee Changed the logic that controls sequencing through dialogs for easier
maintenance.
  (Bug 23445, r=dprice, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@126397 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:19:51 +00:00
bzbarsky%mit.edu
e3a3413a42 Bug 76799. Unescape the filename if it comes from a URL. r=brade, sr=jag
git-svn-id: svn://10.0.0.236/trunk@126396 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:17:55 +00:00
caillon%returnzero.com
7e6ede3371 Bug 160239. Fixing a CSS parser warning. r=sicking sr=blake
git-svn-id: svn://10.0.0.236/trunk@126395 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:16:38 +00:00
bzbarsky%mit.edu
93eee84ef0 Save as on a page with no filename and title should not just die. Bug
158598, patch by sharparrow1@yahoo.com, r=timeless, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@126394 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:16:35 +00:00
bryner%netscape.com
17f78350b8 Fix a typo that was causing bug 153828, inability to navigate bookmarks and history in a maximized window. r=saari, sr=jag.
git-svn-id: svn://10.0.0.236/trunk@126393 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:12:33 +00:00
pinkerton%netscape.com
6c80e684ec Somehow we lost the connections on the ok/cancel buttons in the password
dialog. hook those up and finiah changing all setEnabled's to setTransparent's
(bug 160758)


git-svn-id: svn://10.0.0.236/trunk@126392 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:10:29 +00:00
bzbarsky%mit.edu
12bc360e79 Setting rows/cols on a frameset should try to reflow, not reframe. Bug
48422, r=jkeiser, sr=jst


git-svn-id: svn://10.0.0.236/trunk@126391 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:06:50 +00:00
smontagu%netscape.com
21539e9eaf Bug 140557: location bar history is offset when UI aligned to the right. r=dean_tessman@hotmail.com, sr=bz
git-svn-id: svn://10.0.0.236/trunk@126390 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 01:03:27 +00:00
alecf%netscape.com
573e11653f bug 157624 - prep for freezing nsISupports* primitives by renaming the string classes appropriately
nsISupportsString  -> nsISupportsCString
nsISupportsWString -> nsISupportsString
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@126389 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:53:19 +00:00
pinkerton%netscape.com
5ac3383c58 Turn off fade-in of splashscreen
git-svn-id: svn://10.0.0.236/trunk@126388 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:51:47 +00:00
mstoltz%netscape.com
ddbf2cb746 Bug 145031 - initialize CurItemMF to null to avoid uninitialized variable warning on tbox.
patch by Aleksey Nogin, r=mstoltz, sr=dveditz.


git-svn-id: svn://10.0.0.236/trunk@126387 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:51:46 +00:00
pinkerton%netscape.com
d607b89fec remove an unused outlet (location toolbar item))
git-svn-id: svn://10.0.0.236/trunk@126385 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:42:49 +00:00
aaronl%netscape.com
5ffba8805f Not part of build. Bug 30088 - type ahead find. Suggestions for changes from Akkana via r= process, plus whitespace fixes
git-svn-id: svn://10.0.0.236/trunk@126383 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:35:19 +00:00
pinkerton%netscape.com
cfe6b328f7 ignore some stuff
git-svn-id: svn://10.0.0.236/trunk@126382 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:27:19 +00:00
pinkerton%netscape.com
b5088aec6f make dealloc call super class'
git-svn-id: svn://10.0.0.236/trunk@126381 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:17:31 +00:00
pinkerton%netscape.com
0efec9f6cb Fix customize dialog with location bar NSTextView. Adds support for NSCoder
to support it and fixes some odd bugs we think might be in the OS. (bug 159781)


git-svn-id: svn://10.0.0.236/trunk@126380 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-06 00:13:04 +00:00
rogerl%netscape.com
94098a015a Constructing object literals.
git-svn-id: svn://10.0.0.236/trunk@126379 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 23:08:39 +00:00
pinkerton%netscape.com
8f365056b7 Call super dealloc all the time and make sure we only do it at the end of
dealloc (bug 160790)


git-svn-id: svn://10.0.0.236/trunk@126378 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 22:50:33 +00:00
mitchf%netscape.com
38f611741a Write LockPref in jsc file. fixes bug 18670
git-svn-id: svn://10.0.0.236/trunk@126377 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 22:43:02 +00:00
blakeross%telocity.com
f2cd7a4190 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126374 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 22:06:14 +00:00
blakeross%telocity.com
8a72f961ac *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126373 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:56:16 +00:00
despotdaemon%netscape.com
c905cf9dfd Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@126372 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:48:38 +00:00
blakeross%telocity.com
c1147624ec Combine clear global history and clear location bar history prefs.
git-svn-id: svn://10.0.0.236/trunk@126371 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:46:55 +00:00
blakeross%telocity.com
acde47a502 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126370 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:27:44 +00:00
despotdaemon%netscape.com
2cfb4eb006 Pseudo-automatic update of changes made by hyatt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@126369 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:24:00 +00:00
aaronl%netscape.com
cf9913883e Not part of build. Type ahead find, add ifdefs for selection color change back in so that it builds
git-svn-id: svn://10.0.0.236/trunk@126368 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 21:23:24 +00:00
rogerl%netscape.com
10388666c0 Fixed retval printing.
git-svn-id: svn://10.0.0.236/trunk@126364 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 19:59:24 +00:00
aaronl%netscape.com
b5355e005e Not part of build. Bug 30088 - typeaheadfind, add new pref accessibility.typeaheadfind.startlinksonly, which forces link mode matches to be at the beginning of the link
git-svn-id: svn://10.0.0.236/trunk@126363 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 19:42:43 +00:00
rogerl%netscape.com
db32c8bfe4 Inc.
git-svn-id: svn://10.0.0.236/trunk@126362 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 18:52:58 +00:00
karnaze%netscape.com
93d3211330 doc changes, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@126357 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 17:37:49 +00:00
hyatt%netscape.com
ce237015b1 Adding customize toolbar dialog stub.
git-svn-id: svn://10.0.0.236/trunk@126356 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 09:18:01 +00:00
hyatt%netscape.com
b59d15ff09 Fix redundant back/forward bug.
git-svn-id: svn://10.0.0.236/trunk@126355 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 08:50:45 +00:00
hyatt%netscape.com
f92d36402e Tweaks.
git-svn-id: svn://10.0.0.236/trunk@126354 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 07:37:56 +00:00
hyatt%netscape.com
a8799c12b7 Supporting the use of a palette.
git-svn-id: svn://10.0.0.236/trunk@126353 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 07:21:57 +00:00
blakeross%telocity.com
4097a73343 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126352 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 07:12:53 +00:00
blakeross%telocity.com
fb478bc251 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126351 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 07:12:36 +00:00
bryner%netscape.com
5cc2335afd resources directories are dead.
git-svn-id: svn://10.0.0.236/trunk@126350 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:54:11 +00:00
blakeross%telocity.com
5aa8021d86 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126349 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:38:04 +00:00
blakeross%telocity.com
369340871c *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126348 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:36:33 +00:00
hyatt%netscape.com
901dcb01dc Adjusting toolbar a bit to prepare for customization.
git-svn-id: svn://10.0.0.236/trunk@126347 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:36:06 +00:00
blakeross%telocity.com
49009a881f *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126346 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:30:59 +00:00
blakeross%telocity.com
7d1f92cb71 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126345 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:25:33 +00:00
blakeross%telocity.com
9e624e2740 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126344 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:19:04 +00:00
blakeross%telocity.com
cf49db0306 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126343 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 06:13:41 +00:00
blakeross%telocity.com
c86c678cc0 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126341 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:36:45 +00:00
bryner%netscape.com
24873b07f0 <blake> yes. resources directories are dead.
git-svn-id: svn://10.0.0.236/trunk@126340 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:30:20 +00:00
blakeross%telocity.com
bba7ee1d85 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126339 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:27:16 +00:00
blakeross%telocity.com
2e32a4346c *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126338 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:18:04 +00:00
blakeross%telocity.com
d6177635dc *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126337 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:12:18 +00:00
blakeross%telocity.com
80186644e0 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126336 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:12:14 +00:00
blakeross%telocity.com
3b902c17d2 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126335 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:09:06 +00:00
blakeross%telocity.com
c7974c89be *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126334 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 05:06:06 +00:00
blakeross%telocity.com
59b411cb6e *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126333 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 04:50:42 +00:00
blakeross%telocity.com
0daecf0598 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126332 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 04:31:21 +00:00
blakeross%telocity.com
cba516d7ef *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126331 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 04:19:42 +00:00
rogerl%netscape.com
ca173c3c32 Incrementals
git-svn-id: svn://10.0.0.236/trunk@126330 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 01:38:23 +00:00
karnaze%netscape.com
06a5b63da0 doc changes, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@126328 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-05 00:26:59 +00:00
bryner%netscape.com
bf00d05753 Removing makefiles that should not have been added.
git-svn-id: svn://10.0.0.236/trunk@126327 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 23:13:39 +00:00
bryner%netscape.com
110b20947e Removing Makefiles, there shouldn't have been added.
git-svn-id: svn://10.0.0.236/trunk@126326 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 23:12:14 +00:00
blakeross%telocity.com
d27c8d5730 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126323 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 21:30:24 +00:00
blakeross%telocity.com
e433d029da *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126321 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 21:15:31 +00:00
blakeross%telocity.com
9a2890f055 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126320 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 21:11:25 +00:00
karnaze%netscape.com
7fde3b0896 doc changes, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@126316 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 06:05:25 +00:00
bryner%netscape.com
ef8be1816a Fixing makefiles
git-svn-id: svn://10.0.0.236/trunk@126315 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 05:44:24 +00:00
sfraser%netscape.com
6beb9d9256 Committing simpler patch for bug 157123 (just a Mac-only timer interval change), after the more extensive patch was backed out due to bug 160824. a=asa
git-svn-id: svn://10.0.0.236/trunk@126314 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 05:09:36 +00:00
alexsavulov%netscape.com
cd9041800b Fix for bug 159786 - mailto form should accept more than just text/plain encoding
added URL-encoding support. r=jkeiser, sr=bzbarski, a=asa


git-svn-id: svn://10.0.0.236/trunk@126313 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 05:03:30 +00:00
blakeross%telocity.com
a0a3cf74f7 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126309 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:29:51 +00:00
blakeross%telocity.com
d7bf132505 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126308 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:27:11 +00:00
blakeross%telocity.com
6ad2c1f969 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126307 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:21:18 +00:00
blakeross%telocity.com
d39e438bb6 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126306 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:20:42 +00:00
blakeross%telocity.com
924194c40a *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126305 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:20:40 +00:00
blakeross%telocity.com
911d7de386 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126304 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:18:12 +00:00
blakeross%telocity.com
367bacce3c *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126303 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:17:29 +00:00
blakeross%telocity.com
865fcf0838 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126302 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:16:46 +00:00
blakeross%telocity.com
5746f29e3f *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126301 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 03:08:49 +00:00
blakeross%telocity.com
aab564eac6 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126300 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:55:51 +00:00
blakeross%telocity.com
34d6112951 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126299 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:53:09 +00:00
jpierre%netscape.com
241767d4a3 Fix for 158141 - add 5 minute slop time for OCSP
git-svn-id: svn://10.0.0.236/trunk@126295 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:50:40 +00:00
blakeross%telocity.com
1596618a27 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126294 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:45:58 +00:00
blakeross%telocity.com
5d95bdf2eb *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126293 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:40:20 +00:00
blakeross%telocity.com
b693692ffb *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126292 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:30:28 +00:00
blakeross%telocity.com
6455939b9b *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126291 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:22:30 +00:00
blakeross%telocity.com
e5ffd1a5b8 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126290 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:20:28 +00:00
blakeross%telocity.com
2997fa50c5 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126289 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:15:26 +00:00
blakeross%telocity.com
27f51c9cff *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126288 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 02:06:16 +00:00
blakeross%telocity.com
8e361e2dd9 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126287 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:55:43 +00:00
blakeross%telocity.com
6071b17eab *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126286 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:54:17 +00:00
blakeross%telocity.com
8bc821c77f *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126285 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:42:04 +00:00
karnaze%netscape.com
5f7848c86d new doc file, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@126284 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:37:25 +00:00
blakeross%telocity.com
847944fde9 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126283 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:36:56 +00:00
blakeross%telocity.com
b52e107712 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126282 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:23:54 +00:00
blakeross%telocity.com
376212945f *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126281 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:19:54 +00:00
blakeross%telocity.com
8ea9cf77e3 *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126280 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:15:37 +00:00
blakeross%telocity.com
e4adb32dce *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126279 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 01:04:19 +00:00
blakeross%telocity.com
011fcc2fcb It's baaaaaaaaaaaaaack
git-svn-id: svn://10.0.0.236/trunk@126278 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-04 00:54:38 +00:00
rogerl%netscape.com
4736214ba3 incremental
git-svn-id: svn://10.0.0.236/trunk@126277 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 23:25:14 +00:00
cbiesinger%web.de
a99f9fc6ea bug 160620 patch by chanial@noos.fr r=caillon sr=jag a=asa
drag and drop into menu regression for Windows


git-svn-id: svn://10.0.0.236/trunk@126275 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 20:22:48 +00:00
cbiesinger%web.de
da28782db4 backout bug 157123, it caused crasher bug 160824
a=asa


git-svn-id: svn://10.0.0.236/trunk@126273 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 19:51:51 +00:00
blakeross%telocity.com
31cced096d *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@126268 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 03:06:07 +00:00
sfraser%netscape.com
b91067a108 Fix for bug 160312: avoid crashes when dragging bookmark folders from the sidebar onto themselves in the bookmarks toolbar.
git-svn-id: svn://10.0.0.236/trunk@126267 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 02:18:33 +00:00
kyle.yuan%sun.com
74458f0dd1 Bug 137033 Chrome buttons remain highlighted after dropdown item selected
r=ben, sr=bryner, a=asa
Manually clear hover state when menupopup closes


git-svn-id: svn://10.0.0.236/trunk@126265 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 01:20:08 +00:00
sfraser%netscape.com
53ca00c096 Fix bug 160799: we don't need to have anything selected in the bookmarks before we drag.
git-svn-id: svn://10.0.0.236/trunk@126263 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 01:09:00 +00:00
tao%netscape.com
af8ca4c8ac README: add "need to update leverage.sh for different day's build"
leverage.sh: a more elegant shell script
make-l10n-jar.sh: invoke local leverage.sh.
lev_xlation.html: reference README for updated procedure.


git-svn-id: svn://10.0.0.236/trunk@126262 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-03 00:52:16 +00:00
ssu%netscape.com
7671c26898 fixing bug 154025 - context menu breaks threadpane navigation using next button or keyboard up down arrows. r=racham, sr=sspitzer, a=drivers
git-svn-id: svn://10.0.0.236/trunk@126259 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 23:47:16 +00:00
bryner%netscape.com
cff54912d9 Ensure that we don't try to set initial focus on Gecko too early -- wait for the page to load. Also fixed a few build warnings. Bug 151039, r=sfraser.
git-svn-id: svn://10.0.0.236/trunk@126258 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 23:45:24 +00:00
sfraser%netscape.com
432f71e6cf Fix bug 160168; option-click to save link broken. We were throwing an exception when calling fileSystemRepresentation on an empty string. Also change a bunch of places in the code to assume UTF-8, not ASCII, for url strings.
git-svn-id: svn://10.0.0.236/trunk@126257 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 23:40:29 +00:00
sfraser%netscape.com
b4f48cf589 Don't rebuild the entire history data source (and leak it) every time the sidebar is opened, which makes sidebar opening animate more smoothly. Also put in some #ifdefs to it's easier to play with the browser window positioning code on sidebar open.
git-svn-id: svn://10.0.0.236/trunk@126256 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 23:12:00 +00:00
rogerl%netscape.com
d6e64d22ee incrementals
git-svn-id: svn://10.0.0.236/trunk@126252 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 22:32:17 +00:00
sfraser%netscape.com
055ce043d7 Fix potential crash by calling [super dealloc] _after_ cleaning ourselves up. Found with MallocDebug.
git-svn-id: svn://10.0.0.236/trunk@126250 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 22:25:47 +00:00
sfraser%netscape.com
020c69621d Fix for bug 157123 -- fix laggy scrolling on Mac by backing off the timer interval from 10ms to 25ms. Also changed the timer to be a repeating timer, and removed some unused #defines. r=bness/pinkerton, sr=scc, a=scc
git-svn-id: svn://10.0.0.236/trunk@126248 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 22:15:27 +00:00
pschwartau%netscape.com
41421afde6 Correcting a mistake in the test.
git-svn-id: svn://10.0.0.236/trunk@126247 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 22:01:35 +00:00
relyea%netscape.com
8831e6b469 Turn on reset functionality for multiaccessdb clients.
git-svn-id: svn://10.0.0.236/trunk@126246 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 21:41:01 +00:00
pschwartau%netscape.com
99e13fce4b Initial add. Testing regexps containing octal escape sequences. See bug 141078.
git-svn-id: svn://10.0.0.236/trunk@126245 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 21:27:12 +00:00
sfraser%netscape.com
7f1ef3c57b Fix for bug 155920: added string truncation utility on our NSString category, and used it to truncat strings that are put into menu items in the UI and window titles.
git-svn-id: svn://10.0.0.236/trunk@126244 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 21:08:24 +00:00
mkaply%us.ibm.com
583c460358 #156953
r=peterl, sr=jst, a=asa
Handle plugins with no name or description


git-svn-id: svn://10.0.0.236/trunk@126243 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 21:03:16 +00:00
mikep%oeone.com
aa1e29e613 Fixing bug 155887 for Linux users.
git-svn-id: svn://10.0.0.236/trunk@126242 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 20:16:55 +00:00
mikep%oeone.com
eccd1ad5d9 Update to tasks menu.
git-svn-id: svn://10.0.0.236/trunk@126241 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 18:27:25 +00:00
dcone%netscape.com
8919c7ccdd Backing out changes for the background speedup.. it broke some hoovering code.. on a web page.
I want to investigate this before I leave the patch in.


git-svn-id: svn://10.0.0.236/trunk@126240 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 18:21:33 +00:00
relyea%netscape.com
d3854a3ac9 1) factor out fortezzav1 from the chain processing code to make the code easier
to read.
2) only extract keys if we are using fortezzav1 cert (should speed up cert verify
a bit).
3) Add function to verify a specific CA cert to verify a userCert Usage.


git-svn-id: svn://10.0.0.236/trunk@126239 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 17:51:20 +00:00
relyea%netscape.com
fdde256a14 Merge back 3.5 changes to the tip
git-svn-id: svn://10.0.0.236/trunk@126238 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 17:43:36 +00:00
mikep%oeone.com
ba02012bec Updating version.
git-svn-id: svn://10.0.0.236/trunk@126237 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:54:36 +00:00
mikep%oeone.com
b2c04b334b Changing to do from listbox to tree.
git-svn-id: svn://10.0.0.236/trunk@126236 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:54:26 +00:00
mikep%oeone.com
f6887cd255 Fixing problem with deleting todos.
git-svn-id: svn://10.0.0.236/trunk@126235 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:53:59 +00:00
ccarlen%netscape.com
86b83ddabc Bug 160212 - Embedding window creators need flag to distinguish unrequested popups from other windows. r=pink/sr=jst/a=rjesup
git-svn-id: svn://10.0.0.236/trunk@126234 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:51:24 +00:00
jdunn%netscape.com
ff2cf075ed removing "," from end of enum (this is a porting no-no)
to fix hp10.20 tbox.


git-svn-id: svn://10.0.0.236/trunk@126233 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:28:02 +00:00
mikep%oeone.com
8d0f86451c Fixing file from last commit.
git-svn-id: svn://10.0.0.236/trunk@126232 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 14:26:45 +00:00
mikep%oeone.com
25912ec472 Fixing bug 155887.
git-svn-id: svn://10.0.0.236/trunk@126231 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 13:19:45 +00:00
aaronl%netscape.com
0dd8595700 Not part of build. Bug 30088 - typeaheadfind. Fixes Jesse Ruderman's catches (should not activate when in select, backspace going back a page when 1 char in buffer)
git-svn-id: svn://10.0.0.236/trunk@126227 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 06:25:15 +00:00
bolian.yin%sun.com
1326e71356 [gtk2] Mail/News window shutdown when click "File" twice. Bug 140867.
patch by robin.lu@sun.com, r=blizzard.  Note: this is NOT for defautl build.


git-svn-id: svn://10.0.0.236/trunk@126226 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 06:08:29 +00:00
rbs%maths.uq.edu.au
442afe3ccf Missing const
git-svn-id: svn://10.0.0.236/trunk@126225 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 05:59:49 +00:00
kyle.yuan%sun.com
d7bff08c16 Bug 151837 Export Bookmarks in Bookmark Manager saves nothing
r=pierrechanial@netscape.net, sr=blake, a=asa
Must not delete/rename the temp file if tempFile == aBookmarksFile


git-svn-id: svn://10.0.0.236/trunk@126224 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 05:57:51 +00:00
rbs%maths.uq.edu.au
92156d3789 Hopefully this should now clear the Mac bustage
git-svn-id: svn://10.0.0.236/trunk@126223 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 05:35:12 +00:00
brendan%mozilla.org
ccb26eee1d Steven Don's patch for bug 160592, opt:noicf linker option required for release builds (not part of Mozilla build).
git-svn-id: svn://10.0.0.236/trunk@126222 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 05:35:09 +00:00
mcafee%netscape.com
19390565b9 Forgot to cleanup layout_time for 2nd run, this was causing the graph server to freak out.
git-svn-id: svn://10.0.0.236/trunk@126220 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 04:45:03 +00:00
rbs%maths.uq.edu.au
e8cbe70a47 Fix bustage - take 2
git-svn-id: svn://10.0.0.236/trunk@126219 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 04:43:30 +00:00
rbs%maths.uq.edu.au
2eed227cfa Fix bustage - take 2
git-svn-id: svn://10.0.0.236/trunk@126215 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 04:12:14 +00:00
law%netscape.com
0b6bd19827 Bug 155080; move SavePrefFile call ahead of call to ShutDownCurrentProfile; this does two things: (a) protects prefs.js with profile lock (b) prevents collision on prefs.js that causes prefs to be lost; r=ccarlen, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@126214 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 04:11:45 +00:00
rbs%maths.uq.edu.au
c3d7c55366 Attempt to fix bustage
git-svn-id: svn://10.0.0.236/trunk@126210 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 02:30:30 +00:00
loadrunner%betak.net
494850c6e9 b127156, polish, Show currently selected packs in language / content pack pref panel, r=tao, sr=dveditz, a=asa
git-svn-id: svn://10.0.0.236/trunk@126206 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 01:07:50 +00:00
loadrunner%betak.net
e49c8467e3 b144740, polish, javascript strict warnings in pref-contentpacks.xul, r=kairo, sr=blizzard, a=asa
git-svn-id: svn://10.0.0.236/trunk@126205 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 01:05:03 +00:00
rbs%maths.uq.edu.au
c09eb137c5 Make math fonts (ucvmath) to work on the Mac in parity with other plaforms, p=schofield@wolfram.com with my indications, r=rbs, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@126204 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:54:44 +00:00
loadrunner%betak.net
f88fa4ef1f b127156, polish, Show currently selected packs in language / content pack pref panel, r=tao, sr=dveditz, a=asa
git-svn-id: svn://10.0.0.236/trunk@126202 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:53:34 +00:00
jpierre%netscape.com
4e27b4f0f9 Fix compiler warnings on NT
git-svn-id: svn://10.0.0.236/trunk@126201 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:53:15 +00:00
sfraser%netscape.com
d8cb7209e9 Fix for bug 157837 -- fix a problem with click-hold scrolling in scrollbars that caused the slightest mouse move to stop the scrolling; patch fixes a coordinate issue that made us think we'd left the widget. r=pinkerton, sr=bryner, a=asa.
git-svn-id: svn://10.0.0.236/trunk@126200 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:51:08 +00:00
jpierre%netscape.com
31b81fddbf Fix incorrect macro usage
git-svn-id: svn://10.0.0.236/trunk@126199 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:28:23 +00:00
rbs%maths.uq.edu.au
838d3d7574 Add fontEncoding.properties to the Mac for fonts that need special treatment, b=159243, r=ftang, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@126198 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:27:50 +00:00
rbs%maths.uq.edu.au
e638d5aaea Get the Mac to compute x-height as the real x-height. This is needed for precise MathML placements because x-height is also a core unit, b=154007, r=ftang, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@126196 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:17:38 +00:00
pschwartau%netscape.com
f06074305e Adding a comment
git-svn-id: svn://10.0.0.236/trunk@126195 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-02 00:13:00 +00:00
bzbarsky%mit.edu
a34757fbf8 Add a nullcheck for the parentDocshell, since the parent window might
get closed out from under us.  Bug 160590, r=sicking, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@126194 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 23:44:40 +00:00
aaronl%netscape.com
0b7c95c9b7 Bug 160188. Accessibility: In Windows, use Control ID for a window to indicate whether the window is content or UI. r=saari,blythe, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@126193 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 23:12:38 +00:00
mcafee%netscape.com
c9cc14a38d Fix ftp url to not point at the flakey Welcome file that seems to disappear from _some_ of the mozilla.org ftp servers (160465). r=bbaetz, sr/a=rjesup
git-svn-id: svn://10.0.0.236/trunk@126192 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 22:59:04 +00:00
nelsonb%netscape.com
6c2348addf Correct the test of IP addresses in Subject Alternative Name extensions.
bug 103752.


git-svn-id: svn://10.0.0.236/trunk@126191 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 22:51:56 +00:00
cbiesinger%web.de
35e1bd68e0 bug 95348 patch by sergei_d@fi.tartu.ee r=timeless a=asa
[FIX]BEOS - nsListBox does not display scroll bars properly, and has a poor repaint


git-svn-id: svn://10.0.0.236/trunk@126188 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 22:31:42 +00:00
relyea%netscape.com
afcc0368e7 Don't crash if we try to read a nickname that has an invalid cert with it.
git-svn-id: svn://10.0.0.236/trunk@126187 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 22:28:11 +00:00
rogerl%netscape.com
dedce0157a Incremental update
git-svn-id: svn://10.0.0.236/trunk@126185 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 22:20:25 +00:00
aaronl%netscape.com
cdb5b19c00 Not part of build. Bug 30088 - typeahead find, include URL in status messages
git-svn-id: svn://10.0.0.236/trunk@126182 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 21:38:39 +00:00
aaronl%netscape.com
c15c36a673 Bug 160153. Accessibility: Report fully expanded URL's. r=jgaunt, sr=jst
git-svn-id: svn://10.0.0.236/trunk@126181 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 21:36:02 +00:00
rginda%netscape.com
2a279f7c36 bug 160462 land chatzilla 0.8.9 r=me, a=rjesup
bug 131498 Can't join a channel with Japanese name
bug 133472 slow switching between channels

patches from samuel@sieb.net and naitoh@be-in.org
samuel's changes switch from DOM manipulation to a <xul:deck>, to speed up the time it takes to switch tabs.
naitoh's changes make it possible to join channels with encoded names
change by me to load external scripts before processing startup urls, so that user-defiend networks function properly in irc: urls.


git-svn-id: svn://10.0.0.236/trunk@126179 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 21:08:59 +00:00
shrutiv%netscape.com
78dfcb09b1 Fix for bug 16908: Reorder additional components (r=smeredith)
git-svn-id: svn://10.0.0.236/trunk@126177 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 20:35:52 +00:00
aaronl%netscape.com
e2a61fbfa5 Not part of build. Bug 30088 - type ahead find. Make type ahead find work better with sloppy focus.
git-svn-id: svn://10.0.0.236/trunk@126175 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 19:15:06 +00:00
aaronl%netscape.com
7de2147661 Not part of build. Bug 30088 - type ahead find. Make type ahead find work better with sloppy focus. Get rid of compile warnings
git-svn-id: svn://10.0.0.236/trunk@126173 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 19:05:13 +00:00
jkeiser%netscape.com
5be4b0641d Make compose window not invoke double form submit protection (bug 136906), r=darin, sr=rpotts, a=rjesup
git-svn-id: svn://10.0.0.236/trunk@126170 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 18:17:48 +00:00
pinkerton%netscape.com
b686adf243 fix bustage
git-svn-id: svn://10.0.0.236/trunk@126169 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 18:09:53 +00:00
pinkerton%netscape.com
b3a561e527 Keep XPCOM from being shut down while this window is open (bug 160241)
git-svn-id: svn://10.0.0.236/trunk@126168 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 18:00:50 +00:00
pinkerton%netscape.com
0f28e76245 update tooltip code, but leave it off (bug 149653). i hate cocoa.
git-svn-id: svn://10.0.0.236/trunk@126167 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 18:00:02 +00:00
dougt%netscape.com
b17ce0e5ef Freezes nsAString, nsACString, nsAUTF8String. r=dougt, sr=alecf, a=brendan b=125389
git-svn-id: svn://10.0.0.236/trunk@126166 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 17:52:56 +00:00
pinkerton%netscape.com
5789c1c35a A little more hackery on the tooltip code (still commented out). Tips are
now correctly positioned, but they still block mousemove.


git-svn-id: svn://10.0.0.236/trunk@126165 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 17:25:48 +00:00
mikep%oeone.com
eb70b0c21a Fixing bug 157273.
git-svn-id: svn://10.0.0.236/trunk@126159 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 16:09:09 +00:00
ian.mcgreer%sun.com
4043f9706a this was obviously backwards
git-svn-id: svn://10.0.0.236/trunk@126157 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 14:23:49 +00:00
bbaetz%student.usyd.edu.au
101010e505 Bug 118442 - Bugzilla fails to notice if nothing has changed when editing
multiple bugs if no keywords have been defined
patch by jake@bugzilla.org, r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@126155 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 11:05:12 +00:00
jdunn%netscape.com
26fec565e8 removing antiquated aix/jdk1.1.6 hackery
sr=brendan@mozilla.org
r=rogerl@netscape.com
a=asa@mozilla.org
# 158115


git-svn-id: svn://10.0.0.236/trunk@126154 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 11:04:21 +00:00
dprice%netscape.com
d0b9dad365 159003 - r=ssu sr=dveditz a=asa
fix the tab orderings


git-svn-id: svn://10.0.0.236/trunk@126152 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 06:40:52 +00:00
wtc%netscape.com
a902a86724 Bug 157730: minor tweak suggested by brendan.
git-svn-id: svn://10.0.0.236/trunk@126150 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 05:17:49 +00:00
blakeross%telocity.com
efb97a9523 155712 - remove session history limit pref. r=jrgm sr=ben
git-svn-id: svn://10.0.0.236/trunk@126148 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 02:39:14 +00:00
despotdaemon%netscape.com
5706ba13ed Pseudo-automatic update of changes made by antonio.xu@sun.com.
git-svn-id: svn://10.0.0.236/trunk@126146 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 01:32:34 +00:00
relyea%netscape.com
71fa9fe43d 1) collections have size values that need to be updated.
2) handle the case where we can't get the encoding from the cert.
3) Check the cert validity when we first extract it.


git-svn-id: svn://10.0.0.236/trunk@126145 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 01:21:28 +00:00
ashishbhatt%netscape.com
11e308e7f0 Added makefile for gnu make
git-svn-id: svn://10.0.0.236/trunk@126139 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-01 00:20:35 +00:00
dveditz%netscape.com
b0f73d2866 Fix talkback download size to prevent bug 84492 install errors r=syd,sr=alecf,a=asa
git-svn-id: svn://10.0.0.236/trunk@126135 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 23:25:05 +00:00
nicolson%netscape.com
d1a22a7c27 Turn off the beta flag. Time for JSS 3.2 RTM!
git-svn-id: svn://10.0.0.236/trunk@126132 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 22:36:06 +00:00
brendan%mozilla.org
ee9c693dce khanson's patch with a comment elaboration for bug 157652 (r=rogerl, sr=me, a=rjesup).
git-svn-id: svn://10.0.0.236/trunk@126129 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 21:45:16 +00:00
bryner%netscape.com
4ed762fb7b Removing unused NS_DOM/_IMPL_NS_DOM and NS_INTL/_IMPL_NS_INTL defines (bugs 160248 and 160253). Patch for 160248 by walk84@yahoo.com, r=me&cls; patch for 160253 by me, r=cls.
git-svn-id: svn://10.0.0.236/trunk@126125 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 20:53:46 +00:00
relyea%netscape.com
bd00fa6c5f Arg.. version 1.63 was a misapplied patch, (supposed to be checked into the
3.5 branch). The result is 1.63 backs out 1.62, which is not the intent.
restore 1.62.


git-svn-id: svn://10.0.0.236/trunk@126122 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 18:55:59 +00:00
relyea%netscape.com
8d6234c7ca Bug 157730. Don't crash on bogus input from a PKCS #11 device.
review = be & wtc.
a = asa


git-svn-id: svn://10.0.0.236/trunk@126121 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 18:50:11 +00:00
despotdaemon%netscape.com
f6f6a5c4cf Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@126118 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 18:13:54 +00:00
aaronl%netscape.com
61fdb49c09 Not part of build. Bug 30088 - latest type ahead find changes (ifdef'd out). This is the code that will be used to change selection appearance during type ahead find
git-svn-id: svn://10.0.0.236/trunk@126116 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 17:19:34 +00:00
dcone%netscape.com
769ea6c8fa b=148598 r=peterl sr=kin a=asa. This speeds up scrolling with very large backgrounds.
git-svn-id: svn://10.0.0.236/trunk@126115 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 17:13:25 +00:00
mikep%oeone.com
afe2d1af3d Moving listbox to tree for todo items, bug 157273.
git-svn-id: svn://10.0.0.236/trunk@126113 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 15:02:35 +00:00
mikep%oeone.com
94ef0f70d0 Fixing regression bug 160151.
git-svn-id: svn://10.0.0.236/trunk@126111 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 14:57:57 +00:00
bbaetz%student.usyd.edu.au
23b18f81aa Bug 160227 - VERSION cookie not set correctly
r=myk


git-svn-id: svn://10.0.0.236/trunk@126109 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 12:46:02 +00:00
cbiesinger%web.de
c5e340b31e bug 111702 r=ssu sr=dveditz a=asa
`No' is not the opposite of `Accept'


git-svn-id: svn://10.0.0.236/trunk@126108 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 11:23:08 +00:00
bugreport%peshkin.net
bc98a9adfb Bug 113459 Bad regexp in emailregexp causes system lockout
git-svn-id: svn://10.0.0.236/trunk@126107 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 10:15:54 +00:00
bolian.yin%sun.com
72bb691c59 mozilla(gtk2) coredump on Solaris. Bug 140698, patch by jeff.qiu@sun.com, r=blizzard.
Note: This patch is for gtk2, not included in the default build.


git-svn-id: svn://10.0.0.236/trunk@126106 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 08:25:57 +00:00
sfraser%netscape.com
38513eecaa Fix for bug 159929 -- add CFBundleURLTypes entry so that we show up the list of browsers in the Internet Preferences pane. r=sdagley, jj. a=asa
git-svn-id: svn://10.0.0.236/trunk@126102 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 05:31:37 +00:00
sfraser%netscape.com
79f6a041e9 Fixing various drag and drop bugs: 160215 -- dragging link into bookmarks sidebar panel, and into the personal toolbar now works.
Bug 157520 -- dragging a bookmark into a tab no longer leaves things in a bad state. Bug 154906 -- dragging links onto tabs works now.
Changes include adding the bookmarks outline, and the boomarks toolbar as recipients of NSStringPboardType data, and replacing calls to [NSPasteboard propertyListForType], which tries to parse a url string into a property list, with [NSPasteboard stringForType].


git-svn-id: svn://10.0.0.236/trunk@126101 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 02:39:11 +00:00
relyea%netscape.com
089bdc9bb9 Protection against Token misbehaving tokens
git-svn-id: svn://10.0.0.236/trunk@126099 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 02:00:13 +00:00
wtc%netscape.com
ddb3ff7f6b Bug 148220: FIPS 198's key size requirement broke the NSS QA. Backing it
out.


git-svn-id: svn://10.0.0.236/trunk@126098 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-31 00:55:35 +00:00
wtc%netscape.com
3d78cd054b Bug 148220: the previous checkin missed the inclusion of secerr.h.
git-svn-id: svn://10.0.0.236/trunk@126092 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 23:19:44 +00:00
nelsonb%netscape.com
08c75734ef Fix code to work when subjectAltName extension not present in server cert.
Bug 103752.


git-svn-id: svn://10.0.0.236/trunk@126091 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 23:15:43 +00:00
mitchf%netscape.com
89e53db2ba Reworked mail/news scheme to use new pref approach to replace old RDF approach
Fixes bug 11271 and 13675


git-svn-id: svn://10.0.0.236/trunk@126089 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 23:02:39 +00:00
wtc%netscape.com
14cb1b3f8d Bug 148220: enforce FIPS 198's requirement on the secret key's length.
Added an assertion.  Set the error code on error return.


git-svn-id: svn://10.0.0.236/trunk@126088 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 22:59:13 +00:00
relyea%netscape.com
beeed46bb0 Fix pkcs12 memory leak.
git-svn-id: svn://10.0.0.236/trunk@126087 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 22:51:13 +00:00
bbaetz%student.usyd.edu.au
f15cbedbee Bug 160204 - search/knob.html.tmpl: script type missing, space missing
Patch by burnus@gmx.de (Tobias Burnus), r=bbaetz x2


git-svn-id: svn://10.0.0.236/trunk@126086 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 22:43:50 +00:00
cltbld%netscape.com
68aaf5de2d Moving run_all_tests to be closer to test definitions; cvs diff shows a wild diff here but it is really just moving a large function down in the file. -mcafee
git-svn-id: svn://10.0.0.236/trunk@126085 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 22:22:38 +00:00
ssu%netscape.com
a6606e6f4a checking patch in for neil@parkwaycc.co.uk. fixex bug 158028 - The Mail Start Page does not load. r=ssu, sr=sspitzer, a=drivers. For some reason only half of this patch got checked in initially. this time, the rest is being checked in. sorry about that.
git-svn-id: svn://10.0.0.236/trunk@126084 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 22:12:53 +00:00
cbiesinger%web.de
786a1e9623 bug 152623 patch by nick@technisys.com.ar r=matic,biesi,bz,fabian sr=jst a=asa
title property is shown with 100px fixed width in Element Properties


git-svn-id: svn://10.0.0.236/trunk@126083 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 21:51:50 +00:00
bryner%netscape.com
44791394dd Remove obsolete NS_BASE and _IMPL_NS_BASE, and unused/obsolete source files nsStdFileStream.* (bug 160052). r=cls, sr=alecf, a=asa.
git-svn-id: svn://10.0.0.236/trunk@126082 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 21:30:05 +00:00
sicking%bigfoot.com
9f524ba3a3 Use principals instead of URIs for same-origin checks.
b=159348, r=bz, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@126081 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 21:26:32 +00:00
bishakhabanerjee%netscape.com
cb1c633775 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126080 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 21:25:56 +00:00
sfraser%netscape.com
c7e0b00063 Fixing key shortcuts for Previous/Next tab, and reordering those menu items so that Previous comes before Next.
git-svn-id: svn://10.0.0.236/trunk@126079 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 21:06:49 +00:00
bishakhabanerjee%netscape.com
dbb33a4181 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126078 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 20:57:44 +00:00
bishakhabanerjee%netscape.com
6ad004135c Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126077 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 20:44:13 +00:00
bishakhabanerjee%netscape.com
60e8287bb3 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126076 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 20:36:29 +00:00
loadrunner%betak.net
daada61591 b127156, polish, Show currently selected packs in language / content pack pref panel, r=tao, sr=dveditz, a=asa
git-svn-id: svn://10.0.0.236/trunk@126072 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 19:50:12 +00:00
nelsonb%netscape.com
e62adbff54 Examine SubjectAltName extensions for SSL server name matching.
Bug 103752.


git-svn-id: svn://10.0.0.236/trunk@126071 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 19:32:33 +00:00
mkaply%us.ibm.com
38854e8744 #107484
r=pete, sr=bzbarsky, a=asa
Fix regression printing on OS/2 - don't do localfile stuff unless we are printing to file


git-svn-id: svn://10.0.0.236/trunk@126070 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 19:27:05 +00:00
mikep%oeone.com
2de15327f5 Adding in the patch from bug 157273.
git-svn-id: svn://10.0.0.236/trunk@126069 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 19:19:50 +00:00
bishakhabanerjee%netscape.com
38907d7b45 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126065 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 19:01:18 +00:00
bishakhabanerjee%netscape.com
ad64d0f773 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126064 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 18:49:46 +00:00
bishakhabanerjee%netscape.com
37906f8053 Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126063 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 18:44:36 +00:00
bishakhabanerjee%netscape.com
8cb3f3803b Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
git-svn-id: svn://10.0.0.236/trunk@126062 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 18:36:50 +00:00
sfraser%netscape.com
81f62f5862 Keep Navigator.scriptTerminology in sync with Navigator.scriptSuite.
git-svn-id: svn://10.0.0.236/trunk@126061 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 16:53:09 +00:00
pinkerton%netscape.com
fe2c57f90b Sherlock uses the spyglass suite (bug 160130).
git-svn-id: svn://10.0.0.236/trunk@126059 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 16:02:38 +00:00
pinkerton%netscape.com
2c6c0292ec Ensure gecko knows the drag left the window and shuts down the drag
session (bug 160041)


git-svn-id: svn://10.0.0.236/trunk@126058 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 15:20:28 +00:00
ccarlen%netscape.com
0a6725e635 Bug 156786 - referrer not set when opening links in new window. r=sdagley/sr=sfraser/a=asa
git-svn-id: svn://10.0.0.236/trunk@126057 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 14:13:05 +00:00
bbaetz%student.usyd.edu.au
b0a19ae687 Bug 158236 - Remove 'watchfordiffs' column from namedqueries table
r=preed, jouni


git-svn-id: svn://10.0.0.236/trunk@126056 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 14:05:20 +00:00
mkaply%us.ibm.com
88e7c96831 #160004
r=cavin, sr=bienvenu, a=asa
Fix for regression I caused deleting local folders. Thanks navin!


git-svn-id: svn://10.0.0.236/trunk@126055 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 13:39:10 +00:00
glazman%netscape.com
21e91dd261 Background color buttons were not working in Composer and mail compose due to a bad case in a JS call. b=15126, r=brade, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@126053 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 08:53:59 +00:00
glazman%netscape.com
4cc28a7da4 Changing a list's bullet was not applying to list items having a specific bullet assigned. b=158820, r=brade, sr=kin, a=asa
git-svn-id: svn://10.0.0.236/trunk@126052 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 08:19:08 +00:00
bzbarsky%mit.edu
949beea157 new regression test. not part of build.
git-svn-id: svn://10.0.0.236/trunk@126051 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 06:41:37 +00:00
ere%atp.fi
adc71d0979 Fix for bug 153083, mozilla (nearly) hangs on rendering. Change timer mode to idle timer.
r=biesi, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@126050 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 06:19:17 +00:00
despotdaemon%netscape.com
3943991ba1 Pseudo-automatic update of changes made by bolian.yin@sun.com.
git-svn-id: svn://10.0.0.236/trunk@126049 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 06:05:29 +00:00
bzbarsky%mit.edu
e1f21b9781 More documentation checkins. r=jkeiser/sicking, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@126048 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 05:34:55 +00:00
sfraser%netscape.com
885256c074 Adding a 'Search Page' item to the Go menu (bug 160056). Made it and the Home item always enabled.
git-svn-id: svn://10.0.0.236/trunk@126047 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 05:09:44 +00:00
sfraser%netscape.com
76fa2aaa8d Fix for bug 160037; remove the SearchPageDefault key so that we go to IC for the default search page.
git-svn-id: svn://10.0.0.236/trunk@126046 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 05:00:14 +00:00
bryner%netscape.com
d5427389a2 Missed this one -D_IMPL_NS_NET for bug 159887. r=cls.
git-svn-id: svn://10.0.0.236/trunk@126043 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 03:09:03 +00:00
timeless%mac.com
6e040059ce Bug 158364 clicking the url proxy widget opens an add bookmark dialog
r=hwaara sr=jag a=asa


git-svn-id: svn://10.0.0.236/trunk@126042 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 03:00:04 +00:00
racham%netscape.com
52decafa30 Fixing bug 138462. Patch in here fixes the crash and hang states reported when user clicked on mailto: link and then try to cancel out of the mailnews account wizard, with a new profile. Patch is contributed by Andrew Shultz (ajschultz@eos.nscu.edu). r=bhuvan, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@126041 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 02:57:19 +00:00
bzbarsky%mit.edu
7a8ba23608 Fix allocation of whitespace in table-layout:fixed to handle rounding
errors better.  Bug 157890, r=karnaze, sr=dbaron, a=asa


git-svn-id: svn://10.0.0.236/trunk@126040 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 02:29:03 +00:00
bryner%netscape.com
157f6e484f Remove obsolete _IMPL_NS_NET and NS_NET defines (bug 159887). r=cls, sr=bzbarsky, a=asa.
git-svn-id: svn://10.0.0.236/trunk@126038 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 02:25:08 +00:00
cmanske%netscape.com
6659aafe5f Reduce memory cost of using HTML Source multiple times. b=158860, r=brade, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@126036 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 01:08:02 +00:00
katakai%japan.sun.com
7d4e8bff59 bug 153562
crash trashes user directory, requires new profile
avoid BOM at iconv() for Solaris platform
patch from jk@tools.de
a=asa,r=Roland.Mainz@informatik.med.uni-giessen.de,sr=darin


git-svn-id: svn://10.0.0.236/trunk@126035 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 00:58:36 +00:00
peterlubczynski%netscape.com
13d1a60063 Fixing regression bug 155708, on Mac Classic, Acrobat stops painting PDFs because the timer stopped repeating r=bnesse sr=sfraser a=asa
git-svn-id: svn://10.0.0.236/trunk@126033 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 00:22:49 +00:00
cltbld%netscape.com
f73fdc44df Removing defunct mailnews test. Cleaned up layout test comment. -mcafee
git-svn-id: svn://10.0.0.236/trunk@126032 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 00:10:34 +00:00
shannond%netscape.com
ea36c72513 Bug 15074 - NIM pref "Launch automatically at system startup" turned on by default
r=smeredith


git-svn-id: svn://10.0.0.236/trunk@126031 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-30 00:04:49 +00:00
hwaara%chello.se
0defd3d409 #159065, comment-only change
r=jkeiser/sicking, sr=bz/jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@126030 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 23:44:18 +00:00
rginda%netscape.com
001dde457c - venkman only -
bug 160003, "land venkman 0.9.28", a=asa
Adds "scriptable breakpoints" and "meta comments", described in <news://news.mozilla.org:119/3D45310E.8080206@netscape.com>.
Also adds "run to cursor" and "find in file" functionaliy, and fixes bug 126779.


git-svn-id: svn://10.0.0.236/trunk@126029 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 23:31:19 +00:00
sfraser%netscape.com
36e641f69f Ensure that category methods do the right thing when called on NSMutableStrings by using 'self'.
git-svn-id: svn://10.0.0.236/trunk@126028 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 23:22:32 +00:00
ashishbhatt%netscape.com
3229467b6a updated the sequence of function calls
git-svn-id: svn://10.0.0.236/trunk@126026 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 23:12:52 +00:00
ccarlen%netscape.com
8854b4295f Bug 149785 - nsHashTable hides important functionality of PLHashTable. r=brendan@mozilla.org/sr=alecf/a=brendan
git-svn-id: svn://10.0.0.236/trunk@126022 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 22:48:15 +00:00
sfraser%netscape.com
b74b7dda53 Fix some build warnings that showed up after my string whackage.
git-svn-id: svn://10.0.0.236/trunk@126020 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 22:35:52 +00:00
wtc%netscape.com
4559b05ea5 Bug 159976: removed the incorrect linker options for building a bundle on
Mac OS X. The patch is contributed by Ben Hines <bhines@alumni.ucsd.edu>.


git-svn-id: svn://10.0.0.236/trunk@126017 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 21:48:39 +00:00
yokoyama%netscape.com
d79ab0419d Bug 9449
Fixing linker error on MOZ_UNICODE
/r=shanjian, /sr=kin, /a=asa


git-svn-id: svn://10.0.0.236/trunk@126015 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 21:44:53 +00:00
sfraser%netscape.com
d1763a3736 Whack string usage. Converted category on NSString to use references, added PRUnichar* method, and changed all uses to use these new methods.
git-svn-id: svn://10.0.0.236/trunk@126014 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 21:40:53 +00:00
nelsonb%netscape.com
04d0d3b0e6 Add missing const qualifiers to NSS's regular expression match functions.
git-svn-id: svn://10.0.0.236/trunk@126013 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 21:30:31 +00:00
dbradley%netscape.com
ecb84fbc69 Added makefile.in to prepare for nmake going away. This is built separately, not part of the mozilla build process.
git-svn-id: svn://10.0.0.236/trunk@126010 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 20:47:02 +00:00
seawood%netscape.com
69897f6ae9 Update standalone xpcom instructions to use proper configure option.
Documentation change.


git-svn-id: svn://10.0.0.236/trunk@126008 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 20:29:30 +00:00
cbiesinger%web.de
c1146da488 bug 50633 patch by riceman+bmo@mail.rit.edu r=jkeiser sr=kin a=asa
textarea always does a soft wrap, even with wrap="off" or white-space:nowrap or white-space:pre


git-svn-id: svn://10.0.0.236/trunk@126007 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 20:13:09 +00:00
sfraser%netscape.com
31902e22ef Fix to use new category on NSString for going to and from nsAStrings
git-svn-id: svn://10.0.0.236/trunk@126006 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 19:52:09 +00:00
sfraser%netscape.com
c13eca2aac Add category methods on NSString to assist with going back and forth between nsAStrings and NSStrings.
git-svn-id: svn://10.0.0.236/trunk@126005 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 19:47:00 +00:00
pinkerton%netscape.com
f4239a5880 Don't show about:blank to users.
git-svn-id: svn://10.0.0.236/trunk@126004 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 19:19:43 +00:00
pinkerton%netscape.com
d1c51bd95d Set the next key view when showing/hiding text fields (bug 159275)
git-svn-id: svn://10.0.0.236/trunk@126003 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 18:53:43 +00:00
shrutiv%netscape.com
4837f8e441 Fix for bug 15872: Remove Quick Launch window in Installer UI (r=smeredith)
git-svn-id: svn://10.0.0.236/trunk@126002 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 18:46:49 +00:00
alecf%netscape.com
da8e37d088 for bug 157993 - completed merge of uconv libraries on mac
not part of build


git-svn-id: svn://10.0.0.236/trunk@126000 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 18:41:52 +00:00
morse%netscape.com
7e3387213b bug 159484, password stealing, r=mstoltz, sr=dveditz, a=chofmann
git-svn-id: svn://10.0.0.236/trunk@125999 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 18:17:32 +00:00
pinkerton%netscape.com
56cbdc8bf0 Remember the window title even if we don't have a window controller. (bug 157283)
git-svn-id: svn://10.0.0.236/trunk@125998 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 18:16:07 +00:00
alecf%netscape.com
35bf61cb88 oops, according to yokoyama, ucvcn belongs in ucvasia not ucvwestern
for bug 157993, still not part of build


git-svn-id: svn://10.0.0.236/trunk@125997 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 17:57:46 +00:00
dcone%netscape.com
463438b1e1 Backing out changes. Something is interacting wrong with scroll bars.. so I will investigate.
git-svn-id: svn://10.0.0.236/trunk@125996 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 17:48:22 +00:00
despotdaemon%netscape.com
2f1171125a Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125992 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 16:19:09 +00:00
pinkerton%netscape.com
728d4d5674 Fix cases where the bookmarks info window would remember the last selection,
even after it had been deleted. Also changes focus when losing key status so
the field editor gets properly released. We seem to have lost the outlets
in the bm sidebar for the info and edit buttons, re-add and re-attach them
and ensure that they are disabled when there is no selection (bug 159655).


git-svn-id: svn://10.0.0.236/trunk@125990 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 15:13:49 +00:00
alecf%netscape.com
9315bd3e6e initial version of combined intl libraries on mac for bug 157993 - not part of build - don't even try these, they don't build yet!
git-svn-id: svn://10.0.0.236/trunk@125989 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 14:40:50 +00:00
ccarlen%netscape.com
496652acb1 Bug 159014 - In PPEmbed, autoscroll when selecting text does not work when cursor leaves view. r=pink/sr=sfraser/a=chofmann
git-svn-id: svn://10.0.0.236/trunk@125988 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 13:53:26 +00:00
dcone%netscape.com
c3907f8985 b=148598 Very Slow scrolling. r=rods sr=kin a=asa. Fixed the update area for the background images. Improves scrolling 100%
git-svn-id: svn://10.0.0.236/trunk@125987 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 13:28:32 +00:00
aaronl%netscape.com
fff598f649 Not part of build. Bug 30088 - type ahead find, fix support of nsITypeAheadFind. Fix for showing link URL in status line in this checkin, but ifdef'd out for now
git-svn-id: svn://10.0.0.236/trunk@125986 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 05:59:32 +00:00
kin%netscape.com
73a7e6dade Fix for bug 157055 (Text doesn't show up on Lycos mail front page (layout broken by focus))
Removed |!aReflowState.path->mReflowCommand| check from |if| condition for the first block that attempts to incrementally reflow the block's absolute children.

This was preventing us from properly reflowing an absolute positioned child or one its children when the current reflow path tree contained both a reflow command targeted at the block and one targeted at the aboslutely positioned child or one of its children. This check shouldn't be necessary since nsAbsoluteContainingBlock::IncrementalReflow() does the necessary checks to see if it really should reflow any of the absolute children.

r=karnaze@netscape.com,waterson@netscape.com  sr=dbaron@fas.harvard.edu   a=asa@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@125984 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 04:19:15 +00:00
mcafee%netscape.com
c0c5f77c5e don't need this comment here..
git-svn-id: svn://10.0.0.236/trunk@125983 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 04:18:15 +00:00
blizzard%redhat.com
bfb4ca528c Updating rpm build files. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@125982 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-29 03:22:52 +00:00
gerv%gerv.net
c99a02ceee Bug 159593 - usedependencies parameter must die. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@125974 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-28 23:15:53 +00:00
blakeross%telocity.com
9d32b6f822 159477 - arrow key selection in tree has absurd delay. r=brendan sr=hyatt a=blizzard
git-svn-id: svn://10.0.0.236/trunk@125973 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-28 21:45:06 +00:00
jkeiser%netscape.com
bdd456e930 Add comments (bug 159065), r=sicking, sr=jst/bz, a=asa
git-svn-id: svn://10.0.0.236/trunk@125967 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-28 01:47:59 +00:00
darin%netscape.com
f0cbbd351e fixes bug 94734 - crash on a bugzilla search
patch=ajschult@eos.ncsu.edu r/sr=darin,blizzard a=brendan


git-svn-id: svn://10.0.0.236/trunk@125956 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 22:59:44 +00:00
gerv%gerv.net
d6194bc5c2 Merging from 2.16 branch.
git-svn-id: svn://10.0.0.236/trunk@125949 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 22:03:53 +00:00
gerv%gerv.net
f88c3c8f3a Merging new docs from 2.16 branch.
git-svn-id: svn://10.0.0.236/trunk@125947 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 22:01:14 +00:00
jkeiser%netscape.com
ed6384eef4 Finish checkin of bug 141410 for blake.
git-svn-id: svn://10.0.0.236/trunk@125946 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 20:56:06 +00:00
gerv%gerv.net
04d49975ed Bug 159687 - attachment/*.tmpl should use <label>. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@125945 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 19:10:18 +00:00
gerv%gerv.net
b0abe9c44a Bug 159644 - bug/create/create.html.tmpl should use <label>. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@125943 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 19:02:23 +00:00
leaf%mozilla.org
4ca776d022 Automated update
git-svn-id: svn://10.0.0.236/trunk@125942 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 14:55:17 +00:00
seawood%netscape.com
2a2435aaa1 Backing out solaris mapfile changes from bug 149152
git-svn-id: svn://10.0.0.236/trunk@125941 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 14:40:23 +00:00
bryner%netscape.com
ca7e352068 correcting comment spelling so mcafee can test tinderbox updating.
git-svn-id: svn://10.0.0.236/trunk@125938 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 07:16:35 +00:00
mcafee%netscape.com
794ecf09ae Adding chimera module so tinderbox can track trunk:mozilla/chimera when it is being mixed with branch:SeaMonkeyAll.
git-svn-id: svn://10.0.0.236/trunk@125937 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 06:34:25 +00:00
leaf%mozilla.org
ec1faf1f0b Automated update
git-svn-id: svn://10.0.0.236/trunk@125936 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 06:10:15 +00:00
seawood%netscape.com
ae92950689 This should have been tested against a gcc build before it went it.
Fixing tinderbox bustage (bug 149152)


git-svn-id: svn://10.0.0.236/trunk@125935 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 06:05:52 +00:00
jkeiser%netscape.com
7fb12b3d6a Add documentation comments (bug 159065), r=sicking, sr=bz/jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125934 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 05:02:38 +00:00
leaf%mozilla.org
27d28eebe6 Automated update
git-svn-id: svn://10.0.0.236/trunk@125932 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 02:55:14 +00:00
joe.chou%sun.com
c93164dcdb Bug149152-Add mapfile to Solaris to improve browser performance. r=cls@seawood.org, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125930 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 02:45:51 +00:00
joe.chou%sun.com
3b6726e7b2 Bug 149152 - Add mapfile to solaris to improve browser performance. r=cls@seawood.org, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125929 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 02:43:27 +00:00
jkeiser%netscape.com
4f471ffd8f Add comments (bug 159065), r=sicking, sr=jst/bz, a=asa
git-svn-id: svn://10.0.0.236/trunk@125928 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 02:33:47 +00:00
jkeiser%netscape.com
2da66a0941 Comment nsIHTMLContent.h (bug 159605). r=sicking, sr=jst/bz, a=asa
git-svn-id: svn://10.0.0.236/trunk@125927 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 02:00:03 +00:00
blakeross%telocity.com
bd85f7210f Reverting some changes that were for a different bug.
git-svn-id: svn://10.0.0.236/trunk@125926 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:27:02 +00:00
sfraser%netscape.com
e8e1d41771 Fixing bug 156893: strip control characters out of strings which are to become bookmark titles, to avoid saving corrupt XML.
git-svn-id: svn://10.0.0.236/trunk@125925 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:24:42 +00:00
sfraser%netscape.com
23d8247539 Added NSString+Utils.mm/.h
git-svn-id: svn://10.0.0.236/trunk@125924 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:22:32 +00:00
sfraser%netscape.com
188ed0ac25 New files adding a category on NSString with some useful cleanup functions.
git-svn-id: svn://10.0.0.236/trunk@125923 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:21:59 +00:00
darin%netscape.com
32cf5a8655 fixes bug 146884 - Mozilla sometimes consumes 100% CPU when pipelining is enabled...
r=dougt sr=rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@125922 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:06:05 +00:00
sfraser%netscape.com
473553d46e Fix bug 158927 -- controls not drawing correctly in QuickTime plugin. The problem was that the thread scheduling Timer Task would call WakeUpProcess() every time when we are blocked and not servicing NSPR threads (for example when tracking plugin controls). A side effect of this is to prevent Mac OS X from flushing the window back buffers, hence the drawing issues. Fix is to only call WakeUpProcess() if we've been through the scheduler since the last time. r=sdaglye, wtc. a=asa.
git-svn-id: svn://10.0.0.236/trunk@125921 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 01:01:36 +00:00
blakeross%telocity.com
27d76b37fd 141410 - download manager doesn't highlight the active transfer by default. r=caillon sr=ben a=asa
git-svn-id: svn://10.0.0.236/trunk@125919 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 00:47:18 +00:00
darin%netscape.com
90e6d51bf6 fixes bug 159583 - simple string bundle optimization
r=yokoyama sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125918 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 00:46:21 +00:00
pete.zha%sun.com
9faa82fe3c Migrated UW IMAP UI: New Folder Dialog is not displaying completely for the FIRST time
bug=90734 r=naving sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@125917 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-27 00:33:12 +00:00
sfraser%netscape.com
6232c32224 Cleanup some NSLogs and comments from last checkin.
git-svn-id: svn://10.0.0.236/trunk@125913 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:37:11 +00:00
sfraser%netscape.com
28f7c3b49e Fix bug 159461: make the progress window remember its position, and (bug 159460) have it appear in the Windows menu, with a useful name.
git-svn-id: svn://10.0.0.236/trunk@125912 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:37:10 +00:00
serge%netscape.com
16b06ae69f fix 152429, flash in an iframe crashes with Gdk-ERROR **: BadDrawable; r=bzbarsky, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125911 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:30:27 +00:00
sfraser%netscape.com
86c9fa6d83 Fix assumptions all over the code about the main window being a browser window; it can be a progress window, or the About window (and others in future). Ensure that the menu items that are enabled when a non-browser window is frontmost work as expected (e.g. Mange Bookmarks, opening a bookmark).
git-svn-id: svn://10.0.0.236/trunk@125910 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:29:49 +00:00
dprice%netscape.com
ccea66e526 157522 sr=dveditz a=asa
don't delete installed-chome.txt


git-svn-id: svn://10.0.0.236/trunk@125909 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:28:49 +00:00
sfraser%netscape.com
401d1f274c Minor tidyup of saveFrameUsingName/setFrameUsingName.
git-svn-id: svn://10.0.0.236/trunk@125908 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:26:30 +00:00
bzbarsky%mit.edu
28b1505b87 Fix bug 159268 (hiding and reshowing an iframe regression). r=sicking,
sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125907 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:11:19 +00:00
jst%netscape.com
c99a7fc274 Fixing regression bug 159468. Hold a strong reference to the script context in nsCxPusher to make sure it stays alive as long as we need it. r=jkeiser@netscape.com, sr=rpotts@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125906 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:10:36 +00:00
rginda%netscape.com
42f6f7246b bug 155328, r=bz, sr=jst
fix uninitialized return value in nsViewManager::Init


git-svn-id: svn://10.0.0.236/trunk@125905 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:09:06 +00:00
ssu%netscape.com
d29aa08df3 fixing bug 158199 - Mailnews Prefs dialogs are missing mnemonics. r=varada, sr=mscott a=drivers
git-svn-id: svn://10.0.0.236/trunk@125904 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 23:06:32 +00:00
pete.zha%sun.com
bcb3567454 Printing / Page settings reset themselves after print (no landscape printing)
bug=147605 r=petez sr=jst a=asa patch=Roland.Mainz@informatik.med.uni-giessen.de
Thanks Roland for this patch!


git-svn-id: svn://10.0.0.236/trunk@125903 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:58:24 +00:00
jkeiser%netscape.com
1675ed197f Add comments (bug 159065), r=sicking, sr=bz/jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125900 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:33:43 +00:00
gerv%gerv.net
4e1dced5ac Bug 159582 - search/knob.html.tmpl should use <label> for the radiobuttons. Patch by burnus; r=gerv.
git-svn-id: svn://10.0.0.236/trunk@125899 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:29:24 +00:00
gerv%gerv.net
90e7132a5c Bug 159629 - make users login to add quips. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@125898 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:21:56 +00:00
yokoyama%netscape.com
cdebcf28d6 Bug 156979
XBL emulation of marquee
update the installed-chrome.txt for embedder
/r=adamlock, chak, /a=asa


git-svn-id: svn://10.0.0.236/trunk@125897 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:20:39 +00:00
cbiesinger%web.de
25cce6f6ab bug 155702 patch by sergei_d@fi.tartu.ee r=arougthopher@lizardland.net a=asa
nsWindowBeOS::QuitRequested always issues CLOSEWONDOW event


git-svn-id: svn://10.0.0.236/trunk@125895 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:09:54 +00:00
cbiesinger%web.de
4f69b52a8e bug 71343 patch by sergei_d@fi.tartu.ee r=arougthopher@lizardland.net a=asa
[BEOS] Windows are not brought to front when requested


git-svn-id: svn://10.0.0.236/trunk@125894 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 22:05:04 +00:00
ashishbhatt%netscape.com
e3b14c3f05 Updated to show profiles dialog at startup
git-svn-id: svn://10.0.0.236/trunk@125893 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 21:34:44 +00:00
jkeiser%netscape.com
325bff7164 Change ns(I)GfxTextControlFrame(2) -> ns(I)TextControlFrame (bug 129909), r=rods
@netscape.com, sr=bzbarsky@mit.edu, a=asa


git-svn-id: svn://10.0.0.236/trunk@125891 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:57:24 +00:00
gerv%gerv.net
f20e59a0fe Bug 158658 - relogin.cgi should use a template. This also adds the ability to localise messages. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@125888 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:49:04 +00:00
gerv%gerv.net
11e488111d Bug 150776 - Remembered query options need regrouping. Patch by gerv; r=jouni, burnus.
git-svn-id: svn://10.0.0.236/trunk@125887 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:44:46 +00:00
jkeiser%netscape.com
b23089d0ce Move nsIHTMLContent.h into content/html/content/public (bug 77069), r=heikki, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125886 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:44:02 +00:00
gerv%gerv.net
53af493081 Bug 106640 - allow translation of system messages. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@125883 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:39:17 +00:00
gerv%gerv.net
55840407d6 Bug 158497 - Templatise colchange.cgi. Patch by gerv; r=burnus.
git-svn-id: svn://10.0.0.236/trunk@125882 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:37:06 +00:00
pinkerton%netscape.com
88412f5cca Separating the personal toolbar from the sidebar selection. Bookmarks info
controller is now a singleton that lives forever. Personal toolbar context
menus do the right thing. (bug 148932).


git-svn-id: svn://10.0.0.236/trunk@125881 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 20:28:45 +00:00
leaf%mozilla.org
a305d85996 fix for bug 156577, r=chak. simple change to check for directory existence
before mkdir commands.


git-svn-id: svn://10.0.0.236/trunk@125879 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 19:31:06 +00:00
naving%netscape.com
781e9c65e2 42090 most of the work for this patch done by joshua.xia@sun.com r=naving sr=bienvenu a=asa Make cancel in
filterListDialog not remember changes.


git-svn-id: svn://10.0.0.236/trunk@125877 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 19:27:30 +00:00
mcafee%netscape.com
2169fd9093 fixing logic in pageload test for 2nd attempt case.
git-svn-id: svn://10.0.0.236/trunk@125875 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 19:10:58 +00:00
pinkerton%netscape.com
924efd456d Fixes crash when selecting text during URL load, adds undo/redo to url bar,
reduces the number of times we load about:blank to 1 per window, fixes
unicode characters in bookmarks. (bug 149198, 153263, 155710)


git-svn-id: svn://10.0.0.236/trunk@125873 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:50:01 +00:00
gerv%gerv.net
e18ec1cbb7 Bug 159565 - fix hash initialisation error caused by my duff patch for accesskeys. Patch by burnus; 2xr=gerv.
git-svn-id: svn://10.0.0.236/trunk@125870 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:22:18 +00:00
wtc%netscape.com
43d17bd1d6 Fixed the comment. The length of the secret may be larger than 64 bytes.
git-svn-id: svn://10.0.0.236/trunk@125869 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:20:59 +00:00
gerv%gerv.net
c2a07f8ca4 ... and = instead of =>.
git-svn-id: svn://10.0.0.236/trunk@125868 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:20:58 +00:00
gerv%gerv.net
1b57318c55 Fixing bustage caused by ; instead of , in burnus' patch.
git-svn-id: svn://10.0.0.236/trunk@125867 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:20:13 +00:00
gerv%gerv.net
e5f79c89d2 Bug 158651 - currenttime should use time2str. Patch by burnus@gmx.de; 2xr=gerv.
git-svn-id: svn://10.0.0.236/trunk@125865 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:16:39 +00:00
gerv%gerv.net
a8ca30121c Bug 123740 - Add <label> to email prefs. Patch by burnus@gmx.de; 2xr=gerv.
git-svn-id: svn://10.0.0.236/trunk@125864 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 18:11:45 +00:00
yokoyama%netscape.com
ff9f774c5b Bug 156979
XBL emulation of marquee.
/r=nhotta, timeless, /sr=jst, /a=asa


git-svn-id: svn://10.0.0.236/trunk@125863 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 17:47:16 +00:00
leaf%mozilla.org
f068dae85c adding new files from nsGfxTextControlFrame2.*; part of renaming in bug 129909
git-svn-id: svn://10.0.0.236/trunk@125861 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 17:17:00 +00:00
timeless%mac.com
03b6db2975 Bug 158790 - debug has printing prefs in a rendering group
patch by spiffonator@netscape.net r=timeless sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125860 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 16:55:45 +00:00
nhotta%netscape.com
c49fae7638 Adding null check for mDocument before getting a document charset,
bug 159434, r=caillon, sr=jst, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125859 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 16:45:45 +00:00
mikep%oeone.com
1456ece7b6 Fixes from OEoen calendar, removing duplicate and unused css attributes.
git-svn-id: svn://10.0.0.236/trunk@125858 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 15:19:22 +00:00
mikep%oeone.com
2651f6ccd4 Fixing so that outlook can import events mailed to other people.
Bug 159549.


git-svn-id: svn://10.0.0.236/trunk@125857 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 15:15:14 +00:00
ccarlen%netscape.com
a83072dd92 Bug 158126 - PPEmbed does not send activate events to Gecko. r=pink/sr=sfraser/a=asa.
git-svn-id: svn://10.0.0.236/trunk@125856 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 14:36:22 +00:00
mikep%oeone.com
fc977eaceb Fixing bug 159541.
git-svn-id: svn://10.0.0.236/trunk@125855 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 14:01:10 +00:00
mostafah%oeone.com
861d6bb2cb Checked in patch for bug 159458: [RFE] option to not save the Mozilla custom X- properties
git-svn-id: svn://10.0.0.236/trunk@125854 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 13:37:59 +00:00
cbiesinger%web.de
672499b3ae bug 155655 r=timeless sr=blake a=asa
Navigator preferences leave blank space where "make default browser" would be


git-svn-id: svn://10.0.0.236/trunk@125851 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 08:34:53 +00:00
peterlubczynski%netscape.com
725cbaf73e Fixing bug 152927: can't script any plugin in nested EMBED tag inside an OBJECT tag from onLoad handler -- CNET radio does not play with Real because SetSource is called from onLoad r=kmcclusk sr=dveditz a=asa
git-svn-id: svn://10.0.0.236/trunk@125845 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 03:48:24 +00:00
rginda%netscape.com
133a2f6ef8 bug 155328, "nsViewManager and nsPresShell are unaware of stacked event queues"
sr=jst, r=roc+mozilla@cs.cmu.edu, a=asa

make sure we always post new invalidate events to the topmost queue, and don't skip creating new reflow events just because we happen to have one an elder queue.


git-svn-id: svn://10.0.0.236/trunk@125843 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 03:31:56 +00:00
rginda%netscape.com
cd7bad237a bug 155328, "nsViewManager and nsPresShell are unaware of stacked event queues"
sr=rpotts, r=jst, a=asa

make sure we always post new reflow events to the topmost queue, and don't skip creating new reflow events just because we happen to have one an elder queue.


git-svn-id: svn://10.0.0.236/trunk@125842 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 03:29:07 +00:00
bzbarsky%mit.edu
59edb917bd Fix up the build stuff in there too. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@125839 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 01:35:34 +00:00
bzbarsky%mit.edu
39acdb7a27 Updating interfaces to reflect new edition of the spec. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@125838 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 01:30:33 +00:00
timeless%mac.com
518a0fb1b9 bug 157572 by alecf ports (os/2, xlib) bustage
git-svn-id: svn://10.0.0.236/trunk@125836 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 01:01:37 +00:00
bzbarsky%mit.edu
1ed31e83a7 Fix some build warnings. Bug 157378, patch by
Roland.Mainz@informatik.med.uni-giessen.de (Roland Mainz), r=bbaetz,
biesi, sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@125834 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 00:40:05 +00:00
bzbarsky%mit.edu
56707d69cd Backing out fix for bug 156072 due to regression bug 158792. r=caillon/sr=jst/a=asa
git-svn-id: svn://10.0.0.236/trunk@125833 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 00:35:15 +00:00
timeless%mac.com
cda8c2f36a bug 157572 by alecf busted bezilla
a=#bezilla,leaf for tinderbustage


git-svn-id: svn://10.0.0.236/trunk@125831 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-26 00:14:39 +00:00
cbiesinger%web.de
99426a9b40 bug 158789 patch by spiffonator@netscape.net r=blake sr=alecf a=asa
advanced has incomprehensible pref text


git-svn-id: svn://10.0.0.236/trunk@125822 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 22:03:13 +00:00
pinkerton%netscape.com
2a0f1b0336 Removing file, changed to .mm
git-svn-id: svn://10.0.0.236/trunk@125821 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:58:32 +00:00
pinkerton%netscape.com
910a803cc8 Move the pref controller to be a .mm file
git-svn-id: svn://10.0.0.236/trunk@125820 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:57:53 +00:00
pinkerton%netscape.com
8677e94998 Changing to be a .mm file so we can use c++ for writing out prefs
git-svn-id: svn://10.0.0.236/trunk@125819 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:56:33 +00:00
akkana%netscape.com
6a0a8efa86 142826: move to beginning of found pattern after a reverse find. Fix is from harry.lu@sun.com, r=me, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@125818 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:49:42 +00:00
shrutiv%netscape.com
a1f6af4667 updating show example images
git-svn-id: svn://10.0.0.236/trunk@125817 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:48:14 +00:00
bryner%netscape.com
0c0cf9ecf3 Fix focus crasher resulting from the window's firstResponder pointing to a deleted NSView. Bug 159291, r/sr=hyatt. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@125815 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:31:51 +00:00
bryner%netscape.com
71e5a0d9ce Factor the nsIPromptService implementation out of CocoaBrowserService, and move it to using a generic factory. Clean up some #includes. Change AppComponents.cpp to a .mm file since it needs to include some cocoa headers. r=pinkerton.
git-svn-id: svn://10.0.0.236/trunk@125813 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:28:23 +00:00
shrutiv%netscape.com
56e1a45320 updating show example images
git-svn-id: svn://10.0.0.236/trunk@125811 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:10:39 +00:00
mostafah%oeone.com
b4d992cb02 Fixed bug 158957: DTSTAMP must use UTC time
and a bunch of indenting


git-svn-id: svn://10.0.0.236/trunk@125808 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 21:08:02 +00:00
smontagu%netscape.com
f0c487bee0 Fix crasher bug 158796, r=jkeiser, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125804 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:40:51 +00:00
timeless%mac.com
02bd51dca0 Bug 159070 installer claimed my everything install did not include PSM
r=ssu sr=dveditz a=asa


git-svn-id: svn://10.0.0.236/trunk@125803 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:40:32 +00:00
cbiesinger%web.de
a118c8a10f bug 158922 patch by spiffonator@netscape.net r=biesi sr=alecf a=asa
remove unused strings


git-svn-id: svn://10.0.0.236/trunk@125802 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:36:09 +00:00
timeless%mac.com
eb760368df Bug 158606 crash with -moz-opacity
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard (ports code) a=asa


git-svn-id: svn://10.0.0.236/trunk@125801 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:26:33 +00:00
dougt%netscape.com
93a121bec1 ProxyObjectCallInfo class is exported by many dso. r=darin, sr=alec, a=asa, b=158932
git-svn-id: svn://10.0.0.236/trunk@125800 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:13:06 +00:00
dougt%netscape.com
7383c167c4 nsICollection's nsQueryElementAt class is exported. r=darin, sr=alec, a=asa, b=158931
git-svn-id: svn://10.0.0.236/trunk@125798 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:12:18 +00:00
alecf%netscape.com
3c86efbaa2 fix for bug 159220 - make nsWindowDataSource be 64-bit friendly so we don't crash on Tru64
r=timeless, sr=brendan, a=asa


git-svn-id: svn://10.0.0.236/trunk@125797 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 20:02:33 +00:00
timeless%mac.com
9ba7855de7 Bug 157348 no AltGr recognised
patch by sergei_d@fi.tartu.ee r=timeless sr=blizzard (ports code) a=asa


git-svn-id: svn://10.0.0.236/trunk@125796 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 19:59:54 +00:00
alecf%netscape.com
6d5d0fa10e fix bustage by #including nsCOMPtr.h
git-svn-id: svn://10.0.0.236/trunk@125795 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 19:44:15 +00:00
bryner%netscape.com
7bc238d7a1 Change ShortVersion to be just the version number, not including the product name.
git-svn-id: svn://10.0.0.236/trunk@125794 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 19:05:56 +00:00
leaf%mozilla.org
94a5d7de0c Automated update
git-svn-id: svn://10.0.0.236/trunk@125793 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 18:40:14 +00:00
margaret.chan%sun.com
8cd5650005 Bug 149151 - Use -lazyload to distribute cost of loading objects throughout their life cycle. This checkin also includes another linker option -zcombreloc which will combine relocatable objects in one section. Both options are added for performance reason, and they are only for Solaris. r=cls, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125792 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 18:37:34 +00:00
alecf%netscape.com
7e8aa74093 fix for bug 157572 - remove nsIAtom references from strings, and thus expicitly #include nsIAtom.h for consumers who are expecting it.
r=dmose, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@125791 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 18:31:10 +00:00
tao%netscape.com
8f333523c8 Update instructions in README and provide link to a new file,
leve-xlation.html which has more explanation.


git-svn-id: svn://10.0.0.236/trunk@125790 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 17:38:28 +00:00
cmanske%netscape.com
dd2de77d93 Fixed Tab code in Composer dialogs, b=157778, r=neil@parkwaycc.co.uk, sr=alecf, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@125789 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 17:32:12 +00:00
mikep%oeone.com
af4bc6cf21 Integrating license changes and other changes from OEone.
git-svn-id: svn://10.0.0.236/trunk@125787 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 17:05:46 +00:00
mikep%oeone.com
a728ae346c Patch 92744 from bug 156687.
git-svn-id: svn://10.0.0.236/trunk@125785 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 16:43:25 +00:00
mikep%oeone.com
369e8229d0 Fixing problem with long titles not wrapping in day view.
git-svn-id: svn://10.0.0.236/trunk@125784 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 14:28:21 +00:00
mikep%oeone.com
3692434a8e Fix from integrating changes for to items, bug 156687.
git-svn-id: svn://10.0.0.236/trunk@125783 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 14:26:22 +00:00
jdunn%netscape.com
28c54c8a52 moving extern statement out of function scope to fix bustage
r=dougt@netscape.com
sr=rpotts@netscape.com
a=asa@mozilla.org
# 141359


git-svn-id: svn://10.0.0.236/trunk@125782 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 14:21:00 +00:00
mikep%oeone.com
5a3999941d Adding in patch from bug 156687 from AJB.
git-svn-id: svn://10.0.0.236/trunk@125781 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 14:12:52 +00:00
mikep%oeone.com
cf8b475ee8 Adding tasks to button.
git-svn-id: svn://10.0.0.236/trunk@125780 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 14:11:33 +00:00
caillon%returnzero.com
97e3cd10d2 Bug 155752 - Use the XML parser for XHTML about: services
Patch contributed by Alexey Chernyak <alexey@ihug.com.au>
r=timeless, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125778 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 13:36:37 +00:00
caillon%returnzero.com
4767339f6c Bug 155752 - Use the XML parser for XHTML about: services
Patch contributed by Alexey Chernyak <alexey@ihug.com.au>
r=timeless, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125777 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 13:27:16 +00:00
mikep%oeone.com
dd6dc2263c Small fix for cutting events, bug 158604.
git-svn-id: svn://10.0.0.236/trunk@125776 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 12:32:36 +00:00
depstein%netscape.com
0d552e997c changed url
git-svn-id: svn://10.0.0.236/trunk@125775 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 08:19:35 +00:00
bzbarsky%mit.edu
e6f206c6ce Adding idl files needed for DOM3 Load/Save. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@125774 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 06:38:57 +00:00
sfraser%netscape.com
d4abf23b1b Changing the 'Wrap' checkbox keyboard shortcut from Command-W to Command-R, to avoid conflict with Command-W closing the window.
git-svn-id: svn://10.0.0.236/trunk@125773 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 05:59:33 +00:00
sfraser%netscape.com
e5a16281a8 Fix for bug 159296 -- put the build ID in the about window. Also tweaked the scrolling text timer to fire much less fequently (and scroll more each time, but still remain smooth). Added dist/include to the include paths in the project (for nsBuildID.h), and fixed some file access paths to stuff in widget/src/cocoa.
git-svn-id: svn://10.0.0.236/trunk@125771 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 05:47:16 +00:00
pete.zha%sun.com
23127b1a98 Fix the foolish comments in previou check in.
Change "we are them" to "we enable them"
Will not effect the build


git-svn-id: svn://10.0.0.236/trunk@125769 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 05:20:14 +00:00
pete.zha%sun.com
2a3bf650f0 unix: should remove the Reveal Location & Launch File buttons from download progress dialog
bug=90008 r=jkeiser sr=bzbarsky a=asa


git-svn-id: svn://10.0.0.236/trunk@125768 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 05:10:46 +00:00
wtc%netscape.com
22622bc346 Removed unused ASN.1 templates and unnecessary declarations.
Modified Files: lowcert.c pcertt.h


git-svn-id: svn://10.0.0.236/trunk@125767 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 03:59:38 +00:00
henry.jia%sun.com
b3bfda0fb7 Fix for bug 138191
Description: Changing field focus with javascript and backspacing breaks tabbing
patch by Gilbert.Fang@sun.com
r=jkeiser, sr=bryner, a=asa


git-svn-id: svn://10.0.0.236/trunk@125766 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 03:14:29 +00:00
kaie%netscape.com
9132da9e54 b=141268 OCSP error messages should say OCSP, not OSCP (typo)
r=hixie sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125764 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 02:48:33 +00:00
kaie%netscape.com
a9eeb6b688 b=145698 javascript strict warnings in msgCompSecurityInfo.js
r=javi sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125763 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 02:45:51 +00:00
kaie%netscape.com
69975a03b0 b=156748 Incorrect stylesheet rule in message compose S/Mime overlay
r=dbaron sr=mscott a=asa


git-svn-id: svn://10.0.0.236/trunk@125762 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 02:38:06 +00:00
kaie%netscape.com
3232c2fc50 b=113844 "Load PKCS#11 Device" dialog sized incorrectly
r=kaie/javi  sr=alecf  a=asa


git-svn-id: svn://10.0.0.236/trunk@125761 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 02:26:52 +00:00
sfraser%netscape.com
c3e845b32f Fix for bug 158378: fix the bookmark info panel to behave correctly, support Undo, and not crash. Patch from David Hass, hacked on by me.
git-svn-id: svn://10.0.0.236/trunk@125760 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 02:07:43 +00:00
rods%netscape.com
717b70cb65 Hide the Page Setup btn on Linux until Bug 119491 is fixed
Bug 158282 r=sgehani sr=bryner a=asa


git-svn-id: svn://10.0.0.236/trunk@125759 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 01:48:42 +00:00
justdave%syndicomm.com
74ea63b790 Fix for bug 154008: some basic (but incomplete) maintenance on bug_email.pl, also fixes a possible security hole with a misuse
of a system() call.
Patches by Erik Anderson <erikba@teamworkgroup.com> and Brad Baetz <bbaetz@student.usyd.edu.au>
r= myk, justdave


git-svn-id: svn://10.0.0.236/trunk@125758 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 01:47:50 +00:00
sfraser%netscape.com
2e65f57aea Fix for bug 154895: fix Next/Previous tab to just cycle round through all tabs if you hit the start or end. That way, they are always enabled (when tabs are visible).
git-svn-id: svn://10.0.0.236/trunk@125756 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 01:16:36 +00:00
bryner%netscape.com
410ad0fd16 Factor out security dialogs from CocoaBrowserService, and provide a mechanism for using generic factories for application-provided XPCOM components (bug 158801). r=pinkerton, sfraser.
git-svn-id: svn://10.0.0.236/trunk@125755 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:57:27 +00:00
sfraser%netscape.com
60422765b0 Fix bug 157950: make sure that Find Again is disabled if there is no search string stored. Also changed the Find dialog behaviour to stay up when you hit Find (as it should, since it's a panel), to default to 'wrap' and 'ignore case' being on, and added key shortcuts for the checkboxes.
git-svn-id: svn://10.0.0.236/trunk@125753 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:42:53 +00:00
jrgm%netscape.com
30e5e68735 bug 158072: 'remove dead function selectLocale from strres.js', r=timeless, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@125752 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:38:23 +00:00
bryner%netscape.com
2b1e437151 Make MachO mac build use Mac locale code (bug 158266). r=pinkerton, sr=sfraser, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125750 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:28:29 +00:00
bryner%netscape.com
db891f00b1 fixing css syntax error (bug 158981). r=jkeiser, sr=bzbarsky, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125749 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:12:04 +00:00
shrutiv%netscape.com
133bfab0b1 Including banner bmp for bookmarkscreen
git-svn-id: svn://10.0.0.236/trunk@125748 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:11:36 +00:00
sfraser%netscape.com
f83158bd8f Fix for bug 159170; when doing a Save, don't show the 'Leave open' button in the download progress window, and make sure that the window always closes at the end of the saving. r=pinkeron
Also fixed a refounting boo-boo with the downloader factor.


git-svn-id: svn://10.0.0.236/trunk@125747 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-25 00:00:51 +00:00
gerv%gerv.net
b25db35652 Bug 67950c - make quips.cgi compile without warnings, by use vars-ing $userid. Patch by gerv.
git-svn-id: svn://10.0.0.236/trunk@125745 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 23:38:50 +00:00
gerv%gerv.net
f0187522d7 Bug 67950b - quick fixes. Patch by gerv.
git-svn-id: svn://10.0.0.236/trunk@125744 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 23:32:41 +00:00
gerv%gerv.net
7998b638b7 Bug 67950 - Move the quip list into the database. Patch by davef@tetsubo.com; r=gerv, preed.
git-svn-id: svn://10.0.0.236/trunk@125742 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 23:23:00 +00:00
shrutiv%netscape.com
5089477442 Fix for bugscape bug 17314: remove bookmarks and sidebar from "Before
You Begin" (r=mitchf)


git-svn-id: svn://10.0.0.236/trunk@125741 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 23:21:40 +00:00
gerv%gerv.net
4d65990457 Bug 158660 - confirm_login in CGI.pl should use a template for the login dialog. Patch by gerv; 2xr=jouni.
git-svn-id: svn://10.0.0.236/trunk@125740 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 23:13:35 +00:00
pinkerton%netscape.com
fdea88a4db Changed "Save Link As..." in context menus to "Download Link Target..." (bug 159201)
git-svn-id: svn://10.0.0.236/trunk@125737 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 22:00:11 +00:00
pinkerton%netscape.com
6a614634bf localize d/l progress dialog and put strings in localizable.strings (bug 143093)
git-svn-id: svn://10.0.0.236/trunk@125736 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 21:48:08 +00:00
cltbld%netscape.com
1839a35cc1 Switching to pageload_server instead of hard-coded url for pageload test. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125735 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 21:32:49 +00:00
alecf%netscape.com
31d3d623b4 lay some groundwork for bug 158003 - make some static constructors for the base classes that all the encoders/decoders can share
not part of build


git-svn-id: svn://10.0.0.236/trunk@125734 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 21:27:57 +00:00
alecf%netscape.com
ed041269b4 work for bug 158003 and bug 157993 - tweak base support classes with a fake inner interface in debug builds, so we can use QI to determine if the class is based off any of these support classes.
no reviewer, not part of build


git-svn-id: svn://10.0.0.236/trunk@125733 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 21:20:18 +00:00
cbiesinger%web.de
98a1043bbe bug 158937 r=timeless sr=bz a=asa
comment wrong


git-svn-id: svn://10.0.0.236/trunk@125732 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:53:50 +00:00
bzbarsky%mit.edu
4200beed9b Fix silly logic error in lazy lists. Bug 158948, r=jkeiser, sr=jst, a=asa
git-svn-id: svn://10.0.0.236/trunk@125731 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:43:48 +00:00
dprice%netscape.com
f25e227f7b 141056 r=hawara sr=dveditz a=asa
add error checking to fix top crasher


git-svn-id: svn://10.0.0.236/trunk@125730 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:42:22 +00:00
pinkerton%netscape.com
cdeb82a090 fix phantom checkbox and password field in prompt dialog (bug 156561)
git-svn-id: svn://10.0.0.236/trunk@125729 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:41:30 +00:00
ssu%netscape.com
a8c53c87f7 checking in patch for neil@parkwaycc.co.uk. fixes bug 158028 - The Mail Start Page does not load. r=ssu sr=sspitzer a=asa
git-svn-id: svn://10.0.0.236/trunk@125728 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:39:00 +00:00
gerv%gerv.net
b858190117 bug 159200 - support accesskey in search page. Patch by gerv; 2xr=timeless.
git-svn-id: svn://10.0.0.236/trunk@125727 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:25:08 +00:00
despotdaemon%netscape.com
c86bb44258 Pseudo-automatic update of changes made by curt@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@125726 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 20:13:49 +00:00
locka%iol.ie
c35ec937f6 Fixup link tags as stylesheets or anchors according to the value in their "rel" attribute. b=148797 r=brade@netscape.com sr=kin@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125725 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 19:59:17 +00:00
gerv%gerv.net
54edcc88f8 Bug 102648 - a little more thought. We are changing Platform to Hardware (see the search page) for usability; if we do that, Product can be P and Hardware can be H. 2xr=timeless.
git-svn-id: svn://10.0.0.236/trunk@125724 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 19:53:00 +00:00
jkeiser%netscape.com
b6ca8fa2ed Add API Documentation comments (bug 159065), r=sicking, sr=jst/bzbarsky, a=asa
git-svn-id: svn://10.0.0.236/trunk@125722 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 19:40:03 +00:00
gerv%gerv.net
4626ac5418 Bug 102648 - Bugzilla should support accesskey. Patch by gerv; 2xr=timeless.
git-svn-id: svn://10.0.0.236/trunk@125721 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 19:14:07 +00:00
shrutiv%netscape.com
f9416d1e3b Fix for bug 158373: [REG] AOD is showing up on the end user's component
list (r=smeredith)


git-svn-id: svn://10.0.0.236/trunk@125720 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 18:31:38 +00:00
despotdaemon%netscape.com
a3c7a039f9 Pseudo-automatic update of changes made by leaf@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125719 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 18:28:07 +00:00
cltbld%netscape.com
cbac512367 Setting pageload_server to more-appropriate default, spider. External people, please ask mcafee or jrgm for external ip. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125718 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 18:08:15 +00:00
shrutiv%netscape.com
20283028ef Removing fix for bugscape bug 18020
git-svn-id: svn://10.0.0.236/trunk@125716 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 17:59:31 +00:00
pinkerton%netscape.com
5444122c25 Add aqua-like broken image icon
git-svn-id: svn://10.0.0.236/trunk@125715 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 17:48:48 +00:00
pinkerton%netscape.com
369b525690 aqua-looking broken image icon
git-svn-id: svn://10.0.0.236/trunk@125714 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 17:47:34 +00:00
shrutiv%netscape.com
ffb4b008bc Fix for bugscape bug 18020: Remove the CCKDocs folder from the installed
product (r=smeredith)


git-svn-id: svn://10.0.0.236/trunk@125713 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 17:41:29 +00:00
mcafee%netscape.com
ef253c4434 fixed slash problem
git-svn-id: svn://10.0.0.236/trunk@125711 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 16:04:03 +00:00
mikep%oeone.com
f44ecc8fb8 Fixing file type error.
git-svn-id: svn://10.0.0.236/trunk@125707 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 14:01:11 +00:00
mikep%oeone.com
c05391a935 Importing changes from OEone calendar, adding in UI for adding contacts to events.
git-svn-id: svn://10.0.0.236/trunk@125705 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 13:19:34 +00:00
mikep%oeone.com
6f5a20fe9d Start of adding in ability to link addresses to events.
git-svn-id: svn://10.0.0.236/trunk@125703 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 13:16:29 +00:00
mikep%oeone.com
e5c4c53135 Patch from ajbu@planet.nl for bug 159029.
git-svn-id: svn://10.0.0.236/trunk@125702 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 13:07:19 +00:00
bryner%netscape.com
9129fe1a67 Fixing static build bustage from sfraser's checkin for bug 145800:
- add all new source files to static build target
 - rename nsDownloader to CHDownloader to avoid symbol name conflicts with necko.


git-svn-id: svn://10.0.0.236/trunk@125690 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 08:23:52 +00:00
ssu%netscape.com
01886d9c66 fixing redness under Win32
git-svn-id: svn://10.0.0.236/trunk@125689 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 08:22:15 +00:00
gerv%gerv.net
2b84451550 bug 158498 - defparams.pl prints an error message in a check function instead of returning it. Patch by gerv; 2xr=zeroj.
git-svn-id: svn://10.0.0.236/trunk@125688 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 06:56:11 +00:00
ssu%netscape.com
6f65ef4a94 fixing bug 158187 - Support for Windows XP SP1 Integration (TRUNK merge). r=ssu,dprice,curt,law sr=jag,dveditz a=drivers
git-svn-id: svn://10.0.0.236/trunk@125687 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 06:43:19 +00:00
pete.zha%sun.com
c1bd7ab216 Translate nsIAccessible roles to ATK roles
bug=153816 r=aaronl sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@125685 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 06:33:39 +00:00
jst%netscape.com
37e6116529 Fixing regression caused by bug 156452. Make sure the correct JS context is pushed onto the JS context stack before handling focus and blur code internally. This is needed since lots of focus and blur code rely on DOM range code that now does security checking when called to prevent from unauthorized use of a DOM range object. r=sicking@bigfoot.com, sr=bzbarsky@mit.edu, a=chofmann@netscape.com
git-svn-id: svn://10.0.0.236/trunk@125684 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 06:13:18 +00:00
jst%netscape.com
7da03ea51c Landing branch fix for bug 90757 on he trunk. There's a better fix for this, but we want to bake this on the trunk for a while before we possibly take this on the branch, once it's baked on the trunk we can land the real fix on the trunk... r=mstoltz@netscape.com, sr=rpotts@netscape.com, a=chofmann@netscape.com
git-svn-id: svn://10.0.0.236/trunk@125683 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 06:02:05 +00:00
leaf%mozilla.org
2f1683a246 Automated update
git-svn-id: svn://10.0.0.236/trunk@125681 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 05:55:40 +00:00
sfraser%netscape.com
0e88d0860a Fix bug 145800 -- implement downlod progress UI in chimera. These changes allow us to reuse the nsDownloadListener and progress dialog for both Saving (with an nsIWebBrowserPersist) and downloading (where necko creates an nsIDownload, which we implement). They are also factored so that other cocoa apps could reuse the downloading backend with their own progress dialog. r=pinkerton/bryner/ccarlen.
git-svn-id: svn://10.0.0.236/trunk@125680 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 05:53:14 +00:00
bryner%netscape.com
ae3ab7d37a Changes to allow Mozilla to build with new gcc3 developer tools on OS X (bug 153525). Patch by dbaron, r=cls, sr=bryner, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125679 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 05:43:53 +00:00
sfraser%netscape.com
a962c21d41 Fixing the MachO (DARWIN) build, which broke when wtc checked in a patch in bug 153525. r=bryner.
git-svn-id: svn://10.0.0.236/trunk@125673 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 04:06:07 +00:00
cmanske%netscape.com
6a52761ff9 Disable 'Creat Link' when context menu launched on existing link, b=99541, r=brade, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@125672 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 03:58:41 +00:00
cmanske%netscape.com
7771c9d127 Superscript and Subscript text styles should be mutually exclusive, b=100825, r=jfrancis, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@125671 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 03:53:14 +00:00
cmanske%netscape.com
b1357f8a31 Part of fix to 'Fix right-click to edit link on an image', b=142042, r=neil@parkwaycc.co.uk, sr=alecf, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@125669 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 03:47:01 +00:00
cmanske%netscape.com
5282cedd05 Reduce memory cost of using HTML Source multiple times by reducing undo buffer usage. b=158860, r=brade, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@125667 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 03:35:40 +00:00
smeredith%netscape.com
02cadbb205 Fix for 18126 and 16956.
git-svn-id: svn://10.0.0.236/trunk@125666 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 03:04:12 +00:00
loadrunner%betak.net
0cec7b7c5a DNS: lookup regression, r=adamlock, sr=darin, a=asa, local fix for autodial by smeredith@netscape.com all credits to him
git-svn-id: svn://10.0.0.236/trunk@125665 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 02:43:22 +00:00
brendan%mozilla.org
3950b292ff Finally fix 137000, which requires working around an MSVC ISO-C violation ('identical COMDAT folding', 151066, r=brendan/jrgm, sr=bryner/shaver, a=asa).
git-svn-id: svn://10.0.0.236/trunk@125664 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 01:53:07 +00:00
naving%netscape.com
a8e7151bf4 158776 r=cavin sr=bienvenu a=asa fixing nsCRT::strtok uses in pop3 protocol code.
git-svn-id: svn://10.0.0.236/trunk@125663 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 01:50:57 +00:00
darin%netscape.com
bebde11822 fixes bug 157861 - have to hit Back twice to return to '300: multiple choices'
r=dougt sr=rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@125662 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 01:32:07 +00:00
bzbarsky%mit.edu
e62936a18e wallpaper for a bit of bug 120327; this should keep us from appending
".exe" all the time to things on Windows.  patch by me and
jruderman@hmc.edu, r=law, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@125660 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 00:42:12 +00:00
nhotta%netscape.com
d12a957e19 Adding uconv to REQUIRES.
git-svn-id: svn://10.0.0.236/trunk@125659 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 00:34:14 +00:00
timeless%mac.com
2b4bbf7237 Bug 158092 Mozilla for BeOS is unable to show in browser proper international file/folder names.
patch by sergei_d@fi.tartu.ee r=timeless sr=darin a=asa


git-svn-id: svn://10.0.0.236/trunk@125655 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-24 00:01:31 +00:00
wtc%netscape.com
b01502356c Bug 153525: fixed build problems under gcc3 on Mac OS X. r=bryner.
Modified Files: _pth.h darwin.c


git-svn-id: svn://10.0.0.236/trunk@125653 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:54:12 +00:00
alecf%netscape.com
c3866b3a50 fix nhotta's bustage by adding "uconv" to the REQUIRES list
git-svn-id: svn://10.0.0.236/trunk@125652 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:47:30 +00:00
alecf%netscape.com
7ce57677ba more prep for bug 119923 - use chrome registry ContractID rather than CID, so that we can drop in a new embedding-only chrome registry
r=bnesse, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@125651 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:30:04 +00:00
nhotta%netscape.com
7da2a94cbd Change nsJSProtocolHandler to listen to originCharset to apply conversion if necessary,
also changed the callers to set originCharset,
bug 137182, r=caillon, sr=jst, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125650 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:28:28 +00:00
caillon%returnzero.com
eaa75bb394 Bug 104470 - Popup blocking breaks window.open()s which are targetted to frames or existing named windows
r=sicking sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@125649 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:22:20 +00:00
bzbarsky%mit.edu
ff3b5f1bd2 Bug 158230. Clear out all the relevant style data when inline style
causes reframes.  r=dbaron, sr=hyatt, a=asa


git-svn-id: svn://10.0.0.236/trunk@125648 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 23:18:26 +00:00
depstein%netscape.com
97bfcc4686 Added web progress notification dialog; and additional flag to url dialog.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@125646 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:31:23 +00:00
alecf%netscape.com
78fed2e87d add ucvasia module, which is a combination of ucvja, ucvtw, ucvtw2, and ucvko
not part of build, for bug 157993


git-svn-id: svn://10.0.0.236/trunk@125645 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:29:22 +00:00
alecf%netscape.com
9afdcf6fb2 add ucvwestern module, which is a combination of ucvcn, ucvlatin, and ucvibm
not part of build, for bug 157993


git-svn-id: svn://10.0.0.236/trunk@125644 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:28:10 +00:00
alecf%netscape.com
7611651ee7 fix typo for case-sensitive filesystems, not part of build
git-svn-id: svn://10.0.0.236/trunk@125643 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:25:20 +00:00
sicking%bigfoot.com
fdf8ae5b5f Make sure it is possible to get URI of xul elements even if they share nodeinfo with their prototype and are removed from the document tree.
b=156452 r=bz sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@125642 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:16:45 +00:00
blakeross%telocity.com
ec222266a8 158419 - help back/fwd buttons broken. r=doron sr=ben a=brendan
git-svn-id: svn://10.0.0.236/trunk@125641 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:16:05 +00:00
alecf%netscape.com
f50250b92a add static utility library for bug 157993 - provides enhanced base classes for table-based converters
not part of build.. landing so I can test on multiple platforms.


git-svn-id: svn://10.0.0.236/trunk@125640 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 22:05:25 +00:00
rogerl%netscape.com
6042d2a155 Changed decimal escape handling to backward compatible rather than ECMA3
conforming. (Bug#158159)


git-svn-id: svn://10.0.0.236/trunk@125639 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 21:38:03 +00:00
shannond%netscape.com
9dc7d79806 Bugscape 17886 - Netscape.com recapture dialog should be unchecked by default
r=shrutiv@netscape.com


git-svn-id: svn://10.0.0.236/trunk@125637 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 20:53:38 +00:00
pinkerton%netscape.com
d21db24616 Change bookmark sidebar panel buttons to be "momentary change" to get
rid of icky border when depressed.


git-svn-id: svn://10.0.0.236/trunk@125636 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 20:42:39 +00:00
cbiesinger%web.de
8f356a3e7c bug 158245 patch by nick@technisys.com.ar r=db48x sr=bz a=scc
Page info should list the alt for images in the media-tab in the tree.


git-svn-id: svn://10.0.0.236/trunk@125635 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 20:40:17 +00:00
ftang%netscape.com
4298cf96c1 fix bug 156943. add cjk lang group check for mUnderlineSize computation
r=rbs sr=jst a=chofmann


git-svn-id: svn://10.0.0.236/trunk@125632 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 20:35:31 +00:00
mikep%oeone.com
ef9c61c74f Fixing bug 158885.
git-svn-id: svn://10.0.0.236/trunk@125629 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 19:23:20 +00:00
mitchf%netscape.com
29fd95aef2 Checking pref tree for remotely administered prefs now, and now auto-check
RemoteAdmin checkbox on following page if any are found.  Fixes bug 13657.


git-svn-id: svn://10.0.0.236/trunk@125628 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 17:26:22 +00:00
cbiesinger%web.de
9b368a5e1d address reviewer comments (whitespace)
git-svn-id: svn://10.0.0.236/trunk@125623 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 13:44:34 +00:00
cbiesinger%web.de
01e2d35c8b bug 145858 patch by sergei_d@fi.tartu.ee r=timeless a=asa
Imported NetPositive Bookmarks are not loaded properly anymore


git-svn-id: svn://10.0.0.236/trunk@125622 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 13:43:23 +00:00
cbiesinger%web.de
2ca860a6d3 fix typo (missing space)
git-svn-id: svn://10.0.0.236/trunk@125621 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 13:28:14 +00:00
cbiesinger%web.de
63f3c4f791 bug 129612 patch by neil@parkwaycc.co.uk r=doron sr=bz a=asa
add enable syntax highlighting checkbox to view source window


git-svn-id: svn://10.0.0.236/trunk@125620 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 13:22:28 +00:00
caillon%returnzero.com
ddfbc0ff4e Bug 152127 - Prevent tabs from getting renamed to "(Untitled)" at seemingly random times.
r=bzbarsky sr=jag a=asa

Also fixes bugs 101827, 101831, 102924, 108189, 108350, 108421, 111118, 124028, 134815, 141839, 144431, 144984, 150669, 158171


git-svn-id: svn://10.0.0.236/trunk@125619 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 10:24:14 +00:00
cltbld%netscape.com
14829a74ad Adding tests to chimera, I slammed this in here for now, need to rework build-seamonkey-utils.pl so tests can be called as functions. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125615 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 07:54:18 +00:00
cltbld%netscape.com
e1af56bf1e Renaming RunTest to RunMozillaTests. Leaving in checks for RunTest for now. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125614 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 07:52:30 +00:00
gerv%gerv.net
2d1c5ec9f0 Bug 96003 - buglist.cgi should not return all bugs if called without any parameters. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@125613 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 07:16:57 +00:00
kyle.yuan%sun.com
286ec8b7f4 Check in for bolian.yin@sun.com's fix
Bug 81473 The accesskey attribute does not work for the area element
r=dbaron, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125612 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 06:52:32 +00:00
kyle.yuan%sun.com
b5e7185c3c Bug 157183 Even though XUL Element Tree is focusable, Both the inspect tool and API return wrong value
r=jgaunt, sr=jag, a=asa


git-svn-id: svn://10.0.0.236/trunk@125609 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 05:32:39 +00:00
kyle.yuan%sun.com
e1f2c9c169 Bug 157485 Implement nsIAccessibleText for nsHTMLTextFieldAccessible
r=jgaunt, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125608 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 05:32:17 +00:00
kyle.yuan%sun.com
1a05f649c6 Bug 154521 In "Composer", all source I inputed will be removed by switching display mode between "<html>Source" and "Preview";
r=cmanske, sr=sfraser, a=asa
Harry Lu(harry.lu@sun.com)'s fix (part 2)


git-svn-id: svn://10.0.0.236/trunk@125607 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 05:31:42 +00:00
kyle.yuan%sun.com
00cb79e95a Bug 154521 In "Composer", all source I inputed will be removed by switching display mode between "<html>Source" and "Preview";
r=cmanske, sr=sfraser, a=asa
Harry Lu(harry.lu@sun.com)'s fix (part 1)


git-svn-id: svn://10.0.0.236/trunk@125606 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 05:30:16 +00:00
jkeiser%netscape.com
c728d3962c Fix uninitialized variable (bug 14445), r=timeless@mac.com, sr=jst@netscape.com, a=asa
git-svn-id: svn://10.0.0.236/trunk@125603 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 03:58:49 +00:00
bzbarsky%mit.edu
a844108e85 Fix tab switching in embedding apps. Bug 139294,
r=philipl@mail.utexas.edu, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125602 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 03:45:06 +00:00
stephend%netscape.com
a21496a361 Bug 158379. Align 'Filter Name' text with textfield in the Filter Rules dialog. r=naving@netscape.com/walk84@yahoo.com, sr=bryner@netscape.com, a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125601 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 03:25:34 +00:00
pavlov%netscape.com
b92f218827 bug 157989. patch from paper@animecity.nu. r=pavlov sr=tor@acm.org a=brendan/chofmann
git-svn-id: svn://10.0.0.236/trunk@125600 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 03:22:27 +00:00
henry.jia%sun.com
a880ad3702 First patch for bug 158080
Description: replace the hardcode of "@mozilla.org/embedcomp/window-watcher;1" with NS_WINDOWWATCHER_CONTRACTID
Patch by Henry.Jia@sun.com
r=blizzard, sr=alecf, a=asa(for trunk)


git-svn-id: svn://10.0.0.236/trunk@125597 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 02:27:19 +00:00
av%netscape.com
c2e34ab5d1 Fixing 157627 -- prevent unnecessary writing plugin info to registry which causes indefinite bloat, r=av, sr=dveditz, a=asa
git-svn-id: svn://10.0.0.236/trunk@125596 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 02:18:44 +00:00
kyle.yuan%sun.com
185d879123 Bug 157865 </HTML> at the beginning of the page followed by <HEAD> or <BODY> causes Mozilla to freeze
r=choess, sr=bzbarsky, a=asa
Check in for Jerry's fix.


git-svn-id: svn://10.0.0.236/trunk@125594 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 02:00:48 +00:00
relyea%netscape.com
5c374eed8b return certs in sorted order.
git-svn-id: svn://10.0.0.236/trunk@125590 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-23 00:34:20 +00:00
gerv%gerv.net
0130c12013 Bug 143650 - general template display system. Patch by gerv; 2xr=jouni.
git-svn-id: svn://10.0.0.236/trunk@125586 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 23:17:48 +00:00
cbiesinger%web.de
d2ccc8cf02 bug 155148 patch by calvin.liu@sun.com r=hwaara sr=bienvenu a=asa
Online/Offline indicator doesn't work in "Advanced Address Book  Search" dialog


git-svn-id: svn://10.0.0.236/trunk@125585 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 22:28:44 +00:00
cltbld%netscape.com
2fd95378c9 Renaming Settings::RunTest to Settings::RunMozillaTests to be more descriptive. Leaving in check for old RunTest variable for now, in case there are some clients relying on that. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125582 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 21:45:52 +00:00
joki%netscape.com
a588052207 Fix for bug 157845: mCurrentTarget pointer should not be set in the ESM without setting the NS_FRAME_EXTERNAL_REFERENCE bit. r:saari, sr:jst, a:chofmann
git-svn-id: svn://10.0.0.236/trunk@125581 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 21:36:36 +00:00
shrutiv%netscape.com
e649540c60 Fix for bugscape bug 17315: Help menu customizations aren't in MacOSX
(r=smeredith)


git-svn-id: svn://10.0.0.236/trunk@125580 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 21:34:32 +00:00
cbiesinger%web.de
eb1ac066c6 last checkin was for nick@technisys.com.ar who created that patch
git-svn-id: svn://10.0.0.236/trunk@125578 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 19:52:04 +00:00
cbiesinger%web.de
4fe07a1562 bug 158435 r=ksosez sr=bz a=jesup
Page Info's label-control association is broken (should be by id).


git-svn-id: svn://10.0.0.236/trunk@125577 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 19:51:16 +00:00
mikep%oeone.com
fbcfda6ec2 Fixing problem with attachments, from OEOne.
git-svn-id: svn://10.0.0.236/trunk@125575 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 18:54:15 +00:00
leaf%mozilla.org
3fa9d44ed2 add taskbar icons for applications, r=kerz,a=asa,b=158684
git-svn-id: svn://10.0.0.236/trunk@125574 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 18:01:41 +00:00
tao%netscape.com
0c28c38cf0 Initial checkin of the suit of scripts and files needed to leverage
translations from localized mozilla/netscape language packs into embed.jar.


git-svn-id: svn://10.0.0.236/trunk@125573 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 17:23:58 +00:00
kairo%kairo.at
cf73a02489 bug 158678 - adding missed help_help.html file, r=oeschger, dispensation of drviers per bug 122806
git-svn-id: svn://10.0.0.236/trunk@125572 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 17:10:21 +00:00
aaronl%netscape.com
11e8f2ad33 Not part of build. Bug 30088. Minor tweaks, getting ready for review
git-svn-id: svn://10.0.0.236/trunk@125571 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 14:55:02 +00:00
aaronl%netscape.com
71a8c22e47 Not part of build. Bug 30088. Minor tweaks, getting ready for review
git-svn-id: svn://10.0.0.236/trunk@125570 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 14:55:01 +00:00
rods%netscape.com
039c30685d fixing up test for more variants
git-svn-id: svn://10.0.0.236/trunk@125569 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 14:43:17 +00:00
rods%netscape.com
c4adb46d80 adding hidden iframe test
git-svn-id: svn://10.0.0.236/trunk@125568 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 14:02:27 +00:00
mikep%oeone.com
f04f61355f Patch from bug 123583.
git-svn-id: svn://10.0.0.236/trunk@125567 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 12:42:34 +00:00
jouni%heikniemi.net
f9bb67be21 Tree bustage fix of bug 157074: a filter had the wrong name in hidden-fields template.
git-svn-id: svn://10.0.0.236/trunk@125566 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 11:09:06 +00:00
rods%netscape.com
798b734575 Added additional tests cases for printing
git-svn-id: svn://10.0.0.236/trunk@125565 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 10:58:21 +00:00
rods%netscape.com
4d051a96ff When a FrameSet Frame's contains a FrameSet the mFrameType for the PrintObject
is always set to an eFrame. Which is fine when printing "AsIs"
but is incorrect when when printing "Each Frame Separately".
When printing "Each Frame Separately" the Frame really acts like a frameset.
So we need to set it to an eFrame
Bug 157918 r=dcone sr=kin a=scc


git-svn-id: svn://10.0.0.236/trunk@125564 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 10:55:07 +00:00
kyle.yuan%sun.com
8a0e6bc6e7 Not part of build.
Bug 157298 make install does not work in mozilla/widget/src/gtk2/mai
r=kyle
Thanks for mpeseng@tin.it's fix


git-svn-id: svn://10.0.0.236/trunk@125563 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 06:58:28 +00:00
kyle.yuan%sun.com
ba262e33d4 Not part of build.
Bug 153298 Translate nsIAccessible events to ATK events
r=kyle
Thanks for John Sun (john.sun@sun.com)'s fix


git-svn-id: svn://10.0.0.236/trunk@125562 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-22 06:57:08 +00:00
kerz%netscape.com
d651ed432f New desktop icons, r=cls, sr=bryner, a=asa, bug 73712
git-svn-id: svn://10.0.0.236/trunk@125558 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 23:15:55 +00:00
kerz%netscape.com
3636c59169 New desktop icons, r=cls, sr=bryner, a=asa
git-svn-id: svn://10.0.0.236/trunk@125557 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 23:04:48 +00:00
aaronl%netscape.com
c6f90015df Not part of build. Bug 30088 - type ahead find. Add support for nsITypeAheadFind.
git-svn-id: svn://10.0.0.236/trunk@125555 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 22:36:51 +00:00
gerv%gerv.net
d81b80bc41 Bug 95426 - remove $onebug cruft. Patch by gerv; 2xr=timeless.
git-svn-id: svn://10.0.0.236/trunk@125554 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 21:47:43 +00:00
hwaara%chello.se
38157b25b7 #125887, fix some cases where whitespace would make window.open() and openDialog() to not work.
r=jkeiser, sr=bzbarsky, a=brendan


git-svn-id: svn://10.0.0.236/trunk@125553 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 18:12:38 +00:00
gerv%gerv.net
f5446f3c7e Fixing trivial but obvious bug where "and QA contact" was not displaying correctly; noticed on b.m.o. No bug number.
git-svn-id: svn://10.0.0.236/trunk@125551 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 14:14:41 +00:00
pete.zha%sun.com
e7e1db9698 Forget one line in previou check in. Just add it now.
Sorry for this!


git-svn-id: svn://10.0.0.236/trunk@125550 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 11:19:39 +00:00
pete.zha%sun.com
5e7b11afb7 Summary: print to file overwrites file without asking
bug=107484 r=rods sr=bzbarsky a=scc


git-svn-id: svn://10.0.0.236/trunk@125549 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 10:59:57 +00:00
caillon%returnzero.com
035dbe91ce Bug 107147. "Using middle button to close a tab also pastes+opens url in another tab".
r=sicking
sr=jag
a=brendan


git-svn-id: svn://10.0.0.236/trunk@125546 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-21 01:48:34 +00:00
jkeiser%netscape.com
5d2a4473b9 Damn, missed this file. Part of bug 14445 update just now.
git-svn-id: svn://10.0.0.236/trunk@125545 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 23:44:21 +00:00
jkeiser%netscape.com
01341d9e3c Make radio buttons work without forms (bug 14445), r=rods@netscape.com, sr=jst@netscape.com, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125544 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 23:09:24 +00:00
morse%netscape.com
255ebc1837 bug 155114, back out all patches for fixing cookie-stealing bug, a=asa
git-svn-id: svn://10.0.0.236/trunk@125535 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 07:38:16 +00:00
cltbld%netscape.com
7bc97b064e fixing reset home dir logic, sorry. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125532 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 06:19:15 +00:00
shanjian%netscape.com
41e6689d50 #156943 CJK text underline is positioned too near the text
raise baseline for CJK language groups.
r=rbs, sr=waterson, a=adt


git-svn-id: svn://10.0.0.236/trunk@125531 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 05:21:25 +00:00
sfraser%netscape.com
5dfe57abb3 Fixing bug 155334 -- zombie progress dialog left after doing a File | Save As in plain text format. We were checking the STATE_IS_NETWORK flag to decide when the download has finished, but this flag is not included for plain text saves (nsWebBrowserPersist doesn't give it to us). So we look at the start flags, and make sure the end flag matches on this bit. Also detabbed the file.
git-svn-id: svn://10.0.0.236/trunk@125530 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 03:22:36 +00:00
sicking%bigfoot.com
96ef7647c7 Allow "chromenodes" to access all domains.
b=158167 r=bzbarsky sr=jst a=asa


git-svn-id: svn://10.0.0.236/trunk@125528 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 01:40:02 +00:00
hwaara%chello.se
79c60ad859 #62157, "Document content is rendered even though version value is not '1.0'." Make us care about what version is specified and bail out on anything but "1.0".
r=bzbarsky, sr=heikki, a=asa


git-svn-id: svn://10.0.0.236/trunk@125527 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 01:18:52 +00:00
shrutiv%netscape.com
8e7d878186 Fix for bugscape bug 16676: Customized Sidebar tab not working on MacOS
(r=shannond)


git-svn-id: svn://10.0.0.236/trunk@125526 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 00:58:58 +00:00
stephend%netscape.com
3b89268071 Bug 158264. Prefix showOpenURLDialog() with http://. r=caillon@netscape.com, sr=hewitt@netscape.com (also Module Owner), a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125525 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-20 00:40:49 +00:00
bzbarsky%mit.edu
544e250544 fix startup assertions, bug 154503, r=sicking, sr=dbaron, a=asa
git-svn-id: svn://10.0.0.236/trunk@125524 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 23:58:10 +00:00
bishakhabanerjee%netscape.com
8b20fbdd82 Setting number of tests to 252 to take out warnings on nightly QA reports -Bug 156959
git-svn-id: svn://10.0.0.236/trunk@125523 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 23:46:10 +00:00
pavlov%netscape.com
1da87a90e5 fixing bug 157202 r=dougt sr=tor@acm.org a=asa
git-svn-id: svn://10.0.0.236/trunk@125521 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 23:21:48 +00:00
leaf%mozilla.org
9f7cf37f8c updating to 1.1b
git-svn-id: svn://10.0.0.236/trunk@125520 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 23:08:41 +00:00
bzbarsky%mit.edu
993a541873 Tabbing to an <area> should scroll to it in addition to focusing it.
Bug 124769, r=sicking, sr=bryner, a=scc


git-svn-id: svn://10.0.0.236/trunk@125518 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 22:36:52 +00:00
varga%netscape.com
01fcfc5ac4 Fix for bug 128809 - Mail layout goes into infinite loop when "view headers all" is activated
r=kin, sr=bryner, a=scc


git-svn-id: svn://10.0.0.236/trunk@125517 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 22:36:46 +00:00
brendan%mozilla.org
615fd435f4 Don't return 1 cast to JSProperty* for a property found in a non-LiveConnect prototype object (155740, r=rogerl, sr=jband, a=chofmann/blizzard/scc).
git-svn-id: svn://10.0.0.236/trunk@125516 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 22:00:03 +00:00
leaf%mozilla.org
d71824c07d backout dataloss-causing fixes for 143862 and 156719, a=asa
git-svn-id: svn://10.0.0.236/trunk@125515 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 21:58:09 +00:00
shanjian%netscape.com
3816d9f036 #155175 Certain truetype fonts crash mozilla
correct a misuse of parenthesis.
p=Andrew Schultz  , r=bstell, sr=rbs, a=brendan


git-svn-id: svn://10.0.0.236/trunk@125513 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 21:21:23 +00:00
dougt%netscape.com
3560250015 compreg.tmp is written out on every startup. r=rjc, sr=alec, a=scc
git-svn-id: svn://10.0.0.236/trunk@125512 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 21:12:04 +00:00
sfraser%netscape.com
8bffb2130f Fix bug 155664 -- make URLs opened from the Services menu in another app behave like those opened via Apple Events etc, obeying the prefs to load in new tabs/windows, possibly in the background.
git-svn-id: svn://10.0.0.236/trunk@125511 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 21:08:25 +00:00
cltbld%netscape.com
87a19fce64 Adding ResetHomeDirForTests variable, some builds won't want to do this (chimera, etc.)
git-svn-id: svn://10.0.0.236/trunk@125510 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 21:03:01 +00:00
ducarroz%netscape.com
508651d4ca Fix for bug 158334. Fix memory corruption created by using PL_strcat on a buffer not wide enough. R=varada, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@125509 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 20:58:32 +00:00
nhotta%netscape.com
e98305c34a Changed nsPlainTextSerializer to try NCR if CER conversion fails,
bug 40350, r=akkana, sr=kin, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125508 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 20:50:14 +00:00
wtc%netscape.com
632cf0781e Bug 158339: we should not call secmod_freeParams if RNG_RNGInit fails.
git-svn-id: svn://10.0.0.236/trunk@125504 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 18:31:30 +00:00
despotdaemon%netscape.com
0ec1511934 Pseudo-automatic update of changes made by yxia@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@125503 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 18:26:38 +00:00
despotdaemon%netscape.com
d6e2febb61 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125502 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 17:59:28 +00:00
timeless%mac.com
16c47f8a29 Bug 158202 crash opening venkman and closing navigator [@nsXULElement::GetOwnerDocument]
patch by sicking@bigfoot.com r=bz sr=jst a=scc checkin authorized by scc


git-svn-id: svn://10.0.0.236/trunk@125500 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 17:03:03 +00:00
aaronl%netscape.com
8305292a8a Not part of build. Bug 30088: typeaheadfind - make sure we're not enabled in mailnews message pane, because we conflict with shortcuts link n for next unread message
git-svn-id: svn://10.0.0.236/trunk@125499 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 16:07:23 +00:00
mikep%oeone.com
f55f8c3805 Integrating changes from OEone calendar.
git-svn-id: svn://10.0.0.236/trunk@125498 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 15:56:53 +00:00
bbaetz%student.usyd.edu.au
0aee0fe7f3 Bug 157074 - verify-new-product doubles comment linefeeds on Win32
r=myk, jouni


git-svn-id: svn://10.0.0.236/trunk@125497 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 14:04:15 +00:00
timeless%mac.com
295afaadb1 Bug 151770 Can't associate Mozilla with .XBM images
patch by ask@swva.net r=law sr=alecf a=scc


git-svn-id: svn://10.0.0.236/trunk@125496 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 10:12:16 +00:00
samuel%sieb.net
21b6c7ef39 Bug 146509 - allow tab completion to work with non-alphanumeric characters
r=rginda
a=asa


git-svn-id: svn://10.0.0.236/trunk@125495 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 05:56:29 +00:00
samuel%sieb.net
f144c703ef Bug 135937 - clean up connection status (limit decimal points)
r=rginda
a=asa


git-svn-id: svn://10.0.0.236/trunk@125494 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 05:53:27 +00:00
samuel%sieb.net
8600889897 Bug 152182 - allow multiple channels for /join
r=rginda
a=asa


git-svn-id: svn://10.0.0.236/trunk@125493 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 05:51:00 +00:00
pete.zha%sun.com
5f76121e77 [ps] CSS sans-serif prints as serif
bug=148411 r=dcone sr=bzbarsky a=asa
Correct some font name in map


git-svn-id: svn://10.0.0.236/trunk@125490 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 02:41:41 +00:00
sfraser%netscape.com
6e833ccc5b Making the Colors and Links tab the default (bug 158152).
git-svn-id: svn://10.0.0.236/trunk@125489 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 02:26:53 +00:00
sfraser%netscape.com
5df7b90ed4 Fix for bug 155560 -- renaming bookmark does not update menu/toolbar. Also fixes crash when deleting a toolbar bookmark (bug 157229). Patch from David Hass.
git-svn-id: svn://10.0.0.236/trunk@125488 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 02:20:30 +00:00
sfraser%netscape.com
877fb645db Fix bug 154904-- fixing [BookmarkItem url] to return the url instead of the name.
git-svn-id: svn://10.0.0.236/trunk@125486 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 01:47:15 +00:00
jshin%mailaps.org
f7c6fa9d21 Add two new characters(Euro and Registered trade mark sign) to
KS X 1001 based converters (EUC-KR, UHC, JOHAB, ISO-2022-KR):
bug 134749: r=yokoyama, sr=alecf, a=asa


git-svn-id: svn://10.0.0.236/trunk@125485 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 01:42:16 +00:00
bzbarsky%mit.edu
dbb888b255 Fix GetQuotedAttributeValue's parsing. Bug 106163, r=sicking, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@125483 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 01:14:29 +00:00
jpierre%netscape.com
563706c60a Fix for 158221 - make crlutil save memory by using the new PK11_ImportCRL function with the CRL_DECODE_DONT_COPY_DER option
git-svn-id: svn://10.0.0.236/trunk@125482 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 01:07:27 +00:00
jpierre%netscape.com
a6c742786a 158005 - add new CRL decode and import functions . Benefits are :
- ability to import to any slot
- ability to specify decode options, such as "don't copy DER"
- ability to specify import options, such as "don't do CRL checks"
This patch also maps the existing functions SEC_NewCrl and CERT_ImportCRL
to this new function, eliminating the code duplication that existed


git-svn-id: svn://10.0.0.236/trunk@125481 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 00:59:34 +00:00
bryner%netscape.com
50f9170ec7 Enable full-screen mode for unix. Bug 126685, r=blizzard, sr=sfraser, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125480 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 00:43:00 +00:00
nicolson%netscape.com
3c4986240c Fix 157998: unable to importCertToPerm
git-svn-id: svn://10.0.0.236/trunk@125478 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 00:20:24 +00:00
jpierre%netscape.com
66501867de Fix for 156802 - remove improper check in CRL decoding
git-svn-id: svn://10.0.0.236/trunk@125477 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-19 00:12:13 +00:00
jpierre%netscape.com
7f01d87246 Remove unreferenced variables
git-svn-id: svn://10.0.0.236/trunk@125476 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 23:50:03 +00:00
rginda%netscape.com
19d0492d88 - venkman only -
bug 158181, "this.tabs has no properties error when script is unloaded"
r=caillon, a=asa
null check for content before we actually try to use it (in source2 view)
also fixes spelling error, strict warning, and margin-clicking in the source2 view


git-svn-id: svn://10.0.0.236/trunk@125475 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 23:27:49 +00:00
jpierre%netscape.com
e635a3cd71 Fix for 139292 - NSS_NoDBInit regression
git-svn-id: svn://10.0.0.236/trunk@125474 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 23:08:55 +00:00
pavlov%netscape.com
9d33b5519d fix for bug 157202. r=dougt sr=tor@acm.org a=chofmann
git-svn-id: svn://10.0.0.236/trunk@125472 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 22:18:11 +00:00
shannond%netscape.com
1aac970cf4 Backing out bug 147978 - the copy of an existing config should use its own Workspace
since it causes regression
bug 157807 - Creating a new configuration in CCK duplicates fields ...
approval for backout from ariana and shrutiv


git-svn-id: svn://10.0.0.236/trunk@125469 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 20:15:02 +00:00
shannond%netscape.com
67dde85655 Backing out bug 147978 - The copy of an existing config should use its own Workspace
since it causes regression
bug 157807 - Creating a new configuration in CCK duplicates fields ...
approval for backout from ariana and shrutiv


git-svn-id: svn://10.0.0.236/trunk@125468 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 20:07:28 +00:00
aaronl%netscape.com
14aeefa20e Not part of build. Bug 30088: type ahead find. Support Accel+Shift+G for find previous
git-svn-id: svn://10.0.0.236/trunk@125467 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 19:11:54 +00:00
smeredith%netscape.com
9d364937d7 Disable the homepage buttons if the homepage pref is locked.
git-svn-id: svn://10.0.0.236/trunk@125466 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 18:42:44 +00:00
pschwartau%netscape.com
d61df3aa38 Initial add. Regression test for bug 141078.
git-svn-id: svn://10.0.0.236/trunk@125465 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 18:36:44 +00:00
aaronl%netscape.com
10b640ad3a Not part of build. Bug 30088 - type ahead find. Ctrl+G now respects linksonly setting
git-svn-id: svn://10.0.0.236/trunk@125464 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 18:32:54 +00:00
bienvenu%netscape.com
603ae8ef36 fix undo of delete of top level msg in thread r=cavin, antonio.xu@sun, sr=sspitzer, a=asa 157503
git-svn-id: svn://10.0.0.236/trunk@125463 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 14:48:38 +00:00
bienvenu%netscape.com
c15a216b07 fix crash selecting bogus line in thread pane for imap folder, r=cavin, sr=sspitzer 157503
git-svn-id: svn://10.0.0.236/trunk@125462 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 14:45:08 +00:00
dougt%netscape.com
4cb4da3135 attempting to fix the AIX bustage
git-svn-id: svn://10.0.0.236/trunk@125461 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 14:38:07 +00:00
aaronl%netscape.com
77c6e7b67c Not part of build. Bug 30088 - type ahead find. Fixes problem with type ahead find locking up
git-svn-id: svn://10.0.0.236/trunk@125460 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 14:19:31 +00:00
arougthopher%lizardland.net
1b134606f6 Bug#155404
File names generated in File Save As menu are incorrect in BeOS.

r=arougthopher
a=scc


git-svn-id: svn://10.0.0.236/trunk@125459 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 12:09:09 +00:00
rods%netscape.com
7d81f1b38d need to check BUSY_FLAGS_PAGE_LOADING before printing
Bug 157632 r=dcone sr=jst a=scc


git-svn-id: svn://10.0.0.236/trunk@125458 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 09:09:54 +00:00
jaggernaut%netscape.com
55af1e7936 Bug 107848: Wrong tab is closed when last but one tab is closed. r=caillon, sr=ben, a=asa
git-svn-id: svn://10.0.0.236/trunk@125457 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 07:31:10 +00:00
dougt%netscape.com
f7575b0db1 backout out change
git-svn-id: svn://10.0.0.236/trunk@125456 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 07:19:45 +00:00
dougt%netscape.com
e9d9254cc7 backing out
git-svn-id: svn://10.0.0.236/trunk@125454 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 06:58:27 +00:00
dougt%netscape.com
78e286b83d Dynamic loading is failing on linux. disabling
git-svn-id: svn://10.0.0.236/trunk@125453 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 06:49:48 +00:00
dougt%netscape.com
c2c2197ef6 fixing bustage
git-svn-id: svn://10.0.0.236/trunk@125452 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 06:49:05 +00:00
dougt%netscape.com
9a11c0aedc backing out that last change
git-svn-id: svn://10.0.0.236/trunk@125450 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 06:34:18 +00:00
dougt%netscape.com
eb41b992e3 best guess at how to fix gtk orangeness
git-svn-id: svn://10.0.0.236/trunk@125449 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 06:29:21 +00:00
sicking%bigfoot.com
c52d22c28d Reenable same-origin checks. Patch by me and jst.
b=156452 r=peterv/sicking/jst sr=bz/jst a=chofmann


git-svn-id: svn://10.0.0.236/trunk@125447 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 05:53:28 +00:00
henry.jia%sun.com
55ec460407 Fix bug 27002:
Cyrus IMAP: Send and Save as Draft/Template problems on Cyrus

Patch description:
Add personal namespace support for specific folders' uri. This patch can also solve the blocker bug 90494 which is related the same problems of Courier IMAP server.

patch by Henry.Jia@sun.com
r=cavin@netscape.com, sr=bienvenu@netscape.com, a=chofmann@netscape.com


git-svn-id: svn://10.0.0.236/trunk@125446 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 05:41:42 +00:00
despotdaemon%netscape.com
697f1a9465 Pseudo-automatic update of changes made by t_mutreja@yahoo.com.
git-svn-id: svn://10.0.0.236/trunk@125445 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 05:23:23 +00:00
dougt%netscape.com
ecdd8ab65f Fixes the following:
154047
This change cleans up the category manager in hopes to freeze it for 1.1 final.  This change removes dead and unsupported methods from the interface as well as removes the C++ code from the interface.  This should land for 1.1b since users of the current category manager will have to update their components.

157597
Make embedding base and examples use XPCOM Glue
This change makes our embedding samples use the XPCOM glue.

157625
nsLocalFile::Remove's file pointer is sometimes null afte...
This fixes a crash when we dereference null.  It is a bandaide fix as the real problems involves retooling the directory enumerator.

157801
This fixes a terrible state which you can get into whereby XPCOM will fail to startup regardless of what you do.  The fix is to cause autoreg to happen if the component registry (compreg.dat) is not found.

r/sr=alecf@netscape.com, rpotts@netscape.com.  a=scc@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@125444 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 05:09:10 +00:00
jaggernaut%netscape.com
dfa9bd5ea2 Bug 140673: Some Arabic/Hebrew bitmap fonts printed way too small with Xprint. Patch by Roland.Mainz@informatik.med.uni-giessen.de, r=smontagu, sr=dveditz, a=scc
git-svn-id: svn://10.0.0.236/trunk@125443 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:26:35 +00:00
leaf%mozilla.org
d34eba106d Automated update
git-svn-id: svn://10.0.0.236/trunk@125442 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:25:47 +00:00
seawood%netscape.com
df86a25798 Remove DARWIN define from osx builds as it cripples the feature set provided by
OSX headers.
Bug #154232 r=wtc sr=scc a=scc


git-svn-id: svn://10.0.0.236/trunk@125441 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:11:48 +00:00
seawood%netscape.com
5a25868f3a Remove DARWIN define from osx builds as it cripples the feature set provided by OSX headers.
Bug #154232 r=wtc sr=scc a=scc


git-svn-id: svn://10.0.0.236/trunk@125440 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:09:30 +00:00
varga%netscape.com
8e87af728a Fix for bug 82840 - need treecolgroups to have fixed="true" be as wide as the column header
and bug 72513 - column header text not shown: Enabled (in fitler dialog) and Subscribed (in subscribe dialog)

r=bienvenu
sr=sspitzer
a=scc


git-svn-id: svn://10.0.0.236/trunk@125439 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:09:11 +00:00
jaggernaut%netscape.com
e7ec69df4b Bug 142623: No reload of Language strings due to XUL FastLoad. Patch by John Morrison <jrgm@netscape.com>, r=ben, sr=brendan, a=chofmann.
git-svn-id: svn://10.0.0.236/trunk@125437 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 04:00:31 +00:00
caillon%returnzero.com
208a6f8e3c Checkin for Mike Kowalski <mikejk@ameritech.net>
Bug 126600 - Reword the turbo preference.  r=caillon sr=bryner a=scc


git-svn-id: svn://10.0.0.236/trunk@125435 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 03:22:29 +00:00
pete.zha%sun.com
d2cab5173e Freeing mismatched memory in delete
bug=157184 r=naving sr=bienvenu a=scc patch=antonio.xu@sun.com


git-svn-id: svn://10.0.0.236/trunk@125433 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:48:52 +00:00
jshin%mailaps.org
195409b999 Combining EUC-KR and UHC decoders into one (bug 131388)
r=yokoyama, sr=alecf, a=scc


git-svn-id: svn://10.0.0.236/trunk@125432 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:40:19 +00:00
kyle.yuan%sun.com
73d1262924 Bug 131883 All filenames of attachment disappeared by resizing attachment area;
r=hewitt, sr=scc, a=scc
Force listitem's rect to be recalculated when its parent was going wider.


git-svn-id: svn://10.0.0.236/trunk@125430 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:19:12 +00:00
kyle.yuan%sun.com
1c01d792f8 Bug 134916 left arrow to select parent of currently selected row does not scroll to parent
r=varga, sr=bzbarsky, a=scc
Add ensureRowIsVisible in keypress handler when keycode="left"


git-svn-id: svn://10.0.0.236/trunk@125429 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:16:54 +00:00
kyle.yuan%sun.com
00aca9ccd9 Bug 140227 Strange shift+click and ctrl+click behaviour in single-selection listbox
r=neil@parkwaycc.co.uk, sr=bzbarsky, a=scc
Check "selType" in mouse click handler


git-svn-id: svn://10.0.0.236/trunk@125428 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:16:32 +00:00
hwaara%chello.se
cc965819e8 #156074, processing-instructions should be better denoted.
r=caillon, tim <riceman+bmo@mail.rit.edu>
sr=bzbarsky
a=scc

#156072, DOM inspector omits the #document node, and also doesn't show any sibling nodes to the root element (comments, text nodes, etc.)
r=caillon, tim <riceman+bmo@mail.rit.edu>
sr=bzbarsky
a=scc


git-svn-id: svn://10.0.0.236/trunk@125427 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 02:04:12 +00:00
bzbarsky%mit.edu
1365591a1e Make sure that painting is properly unsuppressed in XML docs. Bugs
156985, 81546, 157487, r=dbaron, sr=rbs, a=scc


git-svn-id: svn://10.0.0.236/trunk@125425 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 01:49:47 +00:00
naving%netscape.com
64e02d9ae6 157809 r=cavin sr=bienvenu a=scc fixing can't delete imap folders when using "mark as deleted" delete model
git-svn-id: svn://10.0.0.236/trunk@125422 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 01:18:14 +00:00
jkeiser%netscape.com
b5ecb6dda7 Make select clear when last option is removed from it (bug 154410), r=bzbarsky@mit.edu, sr=dbaron@fas.harvard.edu, a=asa
git-svn-id: svn://10.0.0.236/trunk@125421 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 00:58:31 +00:00
rginda%netscape.com
a0e80802d0 - venkman only -
bug 157638, "Land VENKMAN_FLOATS_MY_BOAT branch", a=scc
Landing the 3 month old branch, which fixes the following bugs...
121409, 103898, 116102, 116099, 127750, 127099, 121501, 127102, 127737, 127733, 150481, 156776, 156769, 153381, 153066, 152946, 127752, 116286, 143682, 130398, 129692, 156111, 127736, 130050, 139565, 128604, 127751, 127732, 127727, 103425, 85634, 139557, 125394


git-svn-id: svn://10.0.0.236/trunk@125420 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 00:54:32 +00:00
sfraser%netscape.com
0a23433cb9 Adding code to make stdout and stderr unbuffered, depending on the MOZ_UNBUFFERED_STDIO environment variable. This is needed for tests to run correctly.
git-svn-id: svn://10.0.0.236/trunk@125419 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 00:26:49 +00:00
jkeiser%netscape.com
77550ff3b4 Make form submission behave better in low-mem situations (bug 126941), r=sicking@bigfoot.com, sr=bzbarsky@mit.edu, a=asa
git-svn-id: svn://10.0.0.236/trunk@125418 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-18 00:23:09 +00:00
leaf%mozilla.org
080c774ee3 bug 154840, r=cls, sr=brendan, a=jesup update localeVersion strings
git-svn-id: svn://10.0.0.236/trunk@125417 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 23:51:49 +00:00
morse%netscape.com
b97395f839 bug 155114, stealing cookies based on path attribute, r=mstoltz, sr=jag, a=chofmann
git-svn-id: svn://10.0.0.236/trunk@125415 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 23:38:28 +00:00
nhotta%netscape.com
3773761d91 Restore my previous changes with mach-o build fix,
bug 108029, r=pinkerton, sr=sfraser, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125410 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 23:05:30 +00:00
alecf%netscape.com
6a0f892905 remove .cvsignore from this empty directory - not part of the build in any way!
git-svn-id: svn://10.0.0.236/trunk@125408 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 22:56:34 +00:00
jpierre%netscape.com
01d9d47333 Fix usage
git-svn-id: svn://10.0.0.236/trunk@125407 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 22:53:33 +00:00
jpierre%netscape.com
20b1f3fa86 Fix for 157996 - add support for SEC_NewCrl browser emulation mode in crlutil
git-svn-id: svn://10.0.0.236/trunk@125405 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 22:22:26 +00:00
brade%netscape.com
49ccc35a74 bug 157851, 157923, 157811, 157440, and probably some others; cleanup attribute adding for meta tags and fix table api
git-svn-id: svn://10.0.0.236/trunk@125401 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 21:32:20 +00:00
wtc%netscape.com
8fb7a6ccd5 Bug 157946: removed the unused -m option. Added the -v option to Usage().
git-svn-id: svn://10.0.0.236/trunk@125397 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 18:39:02 +00:00
gerv%gerv.net
02ee939574 Bug 151648 - QA Contact stuff displayed even if you aren't using QA Contacts. 2xr=jouni.
git-svn-id: svn://10.0.0.236/trunk@125394 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 18:28:37 +00:00
pschwartau%netscape.com
1c0c54a637 Skip testcase for bug 157652. Will not fix this in Rhino; the OOM error is reasonable.
git-svn-id: svn://10.0.0.236/trunk@125393 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 18:20:58 +00:00
sfraser%netscape.com
b5c586f6ef Adding the Appearance.prefPane to the static target build settings.
git-svn-id: svn://10.0.0.236/trunk@125389 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 17:37:44 +00:00
karnaze%netscape.com
79e5539aec new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@125388 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 16:51:52 +00:00
despotdaemon%netscape.com
a16e42c146 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125387 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 16:42:02 +00:00
rods%netscape.com
1e79bb6ab0 Add additional test to printing test files
git-svn-id: svn://10.0.0.236/trunk@125386 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 13:37:59 +00:00
timeless%mac.com
3f5cca095a Bug 140630 LDAP should be in capital letters
patch by neil@parkwaycc.co.uk r=dmose sr=bienvenu a=asa


git-svn-id: svn://10.0.0.236/trunk@125385 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 13:19:16 +00:00
timeless%mac.com
3e602a9f04 Bug 156368 quicksearch fails if focus was in threadpane before search box
patch by neil@parkwaycc.co.uk r=naving sr=bienvenu a=asa


git-svn-id: svn://10.0.0.236/trunk@125384 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 13:06:09 +00:00
bryner%netscape.com
ba5e37b831 We don't need pippki.xpt either.
git-svn-id: svn://10.0.0.236/trunk@125382 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 08:52:43 +00:00
rbs%maths.uq.edu.au
13627c98ae re-enabling MathML after peterv's fixup
git-svn-id: svn://10.0.0.236/trunk@125381 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 07:23:16 +00:00
peterv%netscape.com
58298ba6cd Fixing MathML packaging bustage on Mac.
git-svn-id: svn://10.0.0.236/trunk@125380 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 07:17:05 +00:00
axel%pike.org
d1e791d134 adding an id to the QA menupopup, so one can overlay that. bug 157382, r=neil@parkwaycc.co.uk, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@125379 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 07:04:30 +00:00
bryner%netscape.com
98bebf9f26 Remove libpippki. This is only needed for the XUL implementation of the security dialogs.
git-svn-id: svn://10.0.0.236/trunk@125378 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 06:22:42 +00:00
wtc%netscape.com
3c02768be9 Bug 141614: restored Matthew Zahorik's net_server nonblocking connect
logic, which accidentally got deleted when the BONE changes were checked
in. This patch was contributed by Arougthopher
<arougthopher@lizardland.net>.
Modified Files: bfile.c bmisc.c bnet.c


git-svn-id: svn://10.0.0.236/trunk@125377 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 06:04:42 +00:00
mkaply%us.ibm.com
d78fa03226 #157770
r=dougt, sr=blizzard, a=asa
OS/2 only - up the numbre of file handles when starting Moz, and handle specific error with DosCopy


git-svn-id: svn://10.0.0.236/trunk@125373 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 05:46:34 +00:00
mkaply%us.ibm.com
beb0c00835 #157758
r=pedemont, sr=blizzard, a=asa
OS/2 only - always use facename rather than familyname for DBCS fonts


git-svn-id: svn://10.0.0.236/trunk@125372 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 05:42:07 +00:00
mkaply%us.ibm.com
281419934a #157383
r=pedemont, sr=blizzard, a=asa
OS/2 only - truncate title bar text to 256 to workaround OS bug


git-svn-id: svn://10.0.0.236/trunk@125370 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 05:36:04 +00:00
despotdaemon%netscape.com
30cf0df97e Pseudo-automatic update of changes made by t_mutreja@yahoo.com.
git-svn-id: svn://10.0.0.236/trunk@125368 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 05:33:09 +00:00
bzbarsky%mit.edu
02fd13d54d Bug 114627 -- ESC should dismiss default plugin dialog. Patch by
Andre  Dahlqvist <anedah-9@student.luth.se>, r=serge, sr=blizzard, a=asa


git-svn-id: svn://10.0.0.236/trunk@125364 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 04:36:13 +00:00
leaf%mozilla.org
2b20d4bbf7 Automated update
git-svn-id: svn://10.0.0.236/trunk@125358 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 02:40:21 +00:00
leaf%mozilla.org
59f26094d7 bug 157558, r=cls. version string updates for upcoming 1.1b
git-svn-id: svn://10.0.0.236/trunk@125357 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 02:39:51 +00:00
pete.zha%sun.com
3d85f30820 Implementation the nsIAccessibleTable for XUL tree table
bug=155866, r=kyle, sr=jst, a=asa


git-svn-id: svn://10.0.0.236/trunk@125356 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 02:32:17 +00:00
karnaze%netscape.com
e1b0af4e1d bug 153785 - Added function to undo splitting floaters when the line they are on gets moved to the next page. Cached the break type of the last floater that gets split in the block reflow state so that the frame afterh the floater's continuation can combine that break type with its own. a=asa, sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@125355 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 01:48:56 +00:00
wtc%netscape.com
8db48c9761 Bug 157347: deleted the code that tried to escape the quotes around
command-line arguments. The patch was contributed by Michael Kaply
<mkaply@us.ibm.com>. r=wtc.


git-svn-id: svn://10.0.0.236/trunk@125353 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 01:45:57 +00:00
kyle.yuan%sun.com
54b0837973 Bug 154089 "My Sidebar" in Address Book can't show at the first time
r=morse, sr=alecf, a=asa
Thanks for Robin Lu (robin.lu@sun.com)'s fix


git-svn-id: svn://10.0.0.236/trunk@125351 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 01:36:37 +00:00
glen.beasley%sun.com
7f5a5a618a typecast for AIX build proper way
git-svn-id: svn://10.0.0.236/trunk@125349 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 01:14:58 +00:00
akkana%netscape.com
03e46541b4 Add a target to make the xpi. Not part of the normal build.
git-svn-id: svn://10.0.0.236/trunk@125348 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 01:04:10 +00:00
nhotta%netscape.com
fb56d1e2c0 Back out my last changes for the mach-o build problem.
git-svn-id: svn://10.0.0.236/trunk@125347 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 00:38:33 +00:00
rbs%maths.uq.edu.au
ea6e894339 Turn off the build of MathML to attempt to fix the bustage
git-svn-id: svn://10.0.0.236/trunk@125346 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 00:31:47 +00:00
jpierre%netscape.com
85c326e9c8 Fix for 153245
git-svn-id: svn://10.0.0.236/trunk@125345 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 00:21:09 +00:00
rbs%maths.uq.edu.au
21c0ccc330 Attempt to fix Mac bustage
git-svn-id: svn://10.0.0.236/trunk@125344 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-17 00:09:59 +00:00
glen.beasley%sun.com
24132ce4c9 typecast for AIX build
git-svn-id: svn://10.0.0.236/trunk@125343 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:52:45 +00:00
rbs%maths.uq.edu.au
b074819e6d Whitespace to add a=drivers, b=155703, r=peterv, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@125342 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:29:54 +00:00
rbs%maths.uq.edu.au
b0b7a20bdb Turn on MathML in the Mac build, b=155703, r=peterv, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@125340 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:25:55 +00:00
rbs%maths.uq.edu.au
178b6c2d5e Implement GetBoundingMetrics() on the Mac. p=schofield@wolfram.com, r=rbs, sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@125338 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:18:37 +00:00
curt%netscape.com
908b8255d4 Disabled functionality for refreshing icons because it was causing unacceptable
side effects.
  (Bug #154708, r=ssu, sr=dveditz, a=asa)


git-svn-id: svn://10.0.0.236/trunk@125336 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:07:24 +00:00
bryner%netscape.com
cab12511d4 Rework the x86 unix + gcc xptcall implementation to speed it up and allow it to work with gcc 3.1 (bug 140412). Patch by drepper@redhat.com, r=shaver, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@125335 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 23:05:11 +00:00
bryner%netscape.com
9a806c60fe Implement activate and deactivate events for chimera (bug 157648). r=sfraser.
git-svn-id: svn://10.0.0.236/trunk@125334 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:55:36 +00:00
bryner%netscape.com
e7c2ffe30a Fix cookie chrome registration for embedding (bug 153581). r=pinkerton, sr=bzbarsky, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125333 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:51:52 +00:00
bryner%netscape.com
6ada3edcd7 Implement nsIWidget::HideWindowChrome() for gtk (bug 157371). r=blizzard, sr=jag, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125332 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:49:33 +00:00
jkeiser%netscape.com
701be434fb Make save/restore work for all forms, not just the first (bug 138892), r=rods@netscape.com, sr=attinasi@netscape.com, a=asa
git-svn-id: svn://10.0.0.236/trunk@125331 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:38:51 +00:00
aaronl%netscape.com
d4699db840 Not part of build. Bug 30088 - type ahead find. Fixes it so that you must type backspace to remove a character from the buffer.
git-svn-id: svn://10.0.0.236/trunk@125330 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:30:10 +00:00
jfrancis%netscape.com
50be087f7b fix for Bug 154932: Mozilla will not start on MacOS 8.6 if filesharing is on. Corrected the construction of an FSSpec in nsDirectoryService.cpp
r=ccarlen
sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@125329 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:17:56 +00:00
aaronl%netscape.com
78ee60a834 Not part of build. Bug 30088 - type ahead find. Fixes it so that feature is not activated in isindex or input type=file. Typing / now indicates text only search, a quote now indicates link search. Fixes repeated character so it only cycles through links if the exact repeated characters cannot be found repeated like that in the text/links
git-svn-id: svn://10.0.0.236/trunk@125326 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 22:08:55 +00:00
pschwartau%netscape.com
bd64afa8ab Changing summary text.
git-svn-id: svn://10.0.0.236/trunk@125324 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:35:30 +00:00
nhotta%netscape.com
0c40fcbd93 For mailto URL, convert spec to UTF-8 (from origin charset) if necessary,
bug 141134, r=ducarroz, sr=bienvenu, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125323 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:34:25 +00:00
pschwartau%netscape.com
223e70cbbd Initial add. Regression test for bug 157652.
git-svn-id: svn://10.0.0.236/trunk@125322 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:23:58 +00:00
ducarroz%netscape.com
71d5be248f Fix for bug 143882 (remaining problem). We need to remove internal headers when sending message as attachment. R=varada, SR=bienvenu, A=asa
git-svn-id: svn://10.0.0.236/trunk@125321 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:18:46 +00:00
igor%mir2.org
64213cbcf3 Serialization fixes to correctly restore members and related fields in NativeJavaClass.
git-svn-id: svn://10.0.0.236/trunk@125320 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:17:09 +00:00
igor%mir2.org
8b45eec30f Fixing the bug 157196: custom serialization of ScriptableObject not to save deleted/empty slot.
git-svn-id: svn://10.0.0.236/trunk@125319 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:15:51 +00:00
wtc%netscape.com
76a809a67c Bug 157750: handle the possibility that some certs do not have a label.
git-svn-id: svn://10.0.0.236/trunk@125316 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 21:13:40 +00:00
nhotta%netscape.com
f5796b5f71 Changed charset conversions for clipboard, D&D,
* copy from Mozilla, added fallback to try non system default scripts
* copy to Mozilla, check 'styl' and if available use that script instead of
using the system's default
bug 108029, r=pinkerton, sr=sfraser, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125312 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 19:38:08 +00:00
despotdaemon%netscape.com
1b7caa10dc Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125308 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 18:45:22 +00:00
sfraser%netscape.com
111f6a2e8d Adding files for the Appearance prefs panel, and adding this panel to the static build target.
git-svn-id: svn://10.0.0.236/trunk@125305 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 17:47:23 +00:00
sfraser%netscape.com
01c46ae9cd Adding the Appearance prefs panel to the list of panels, fixing the prefs panel base class to use UTF-8 for prefs, and adding a changeFont handler on the window's controller that can forward changeFont() messages back to the current prefs pane (used by the Appearance pane).
git-svn-id: svn://10.0.0.236/trunk@125304 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 17:45:48 +00:00
sfraser%netscape.com
2a055af3f8 More changes for the fonts prefs panel.
git-svn-id: svn://10.0.0.236/trunk@125303 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 17:43:43 +00:00
igor%mir2.org
0b2c94950a Checking for 1.2 version in toString for objects and arrays is replaced by calling cx.hasFeature(Context.FEATURE_TO_STRING_AS_SOURCE) to allow to control toString from applications without switching on other JS 1.2 features.
git-svn-id: svn://10.0.0.236/trunk@125302 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 17:42:18 +00:00
igor%mir2.org
f3367c89e9 I removed startString/getString and their support code as TokenStream uses its own buffer and fixed the bug 151337 which was cause by incorrect getLine
git-svn-id: svn://10.0.0.236/trunk@125301 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 17:37:46 +00:00
relyea%netscape.com
48c6b9c1ce Automatically recover from database corruptions when importing new certs.
git-svn-id: svn://10.0.0.236/trunk@125299 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 16:44:22 +00:00
ian%hixie.ch
4dcb11a39f Some minor code fixups with no semantic change. Also, fixed the getArgumentsAsString method to not screw up the output when there are empty arrays in the arguments hash (as can happen when you call createArgument, which happens when getArgument is called and the argument is missing) and when the arguments hash contains scalars.
git-svn-id: svn://10.0.0.236/trunk@125298 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 15:50:14 +00:00
peterv%netscape.com
76b49d7465 Temporarily disable the code that caused the slowdown in Txul, Tp and Ts. Bug 156452.
git-svn-id: svn://10.0.0.236/trunk@125297 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 15:46:39 +00:00
ian%hixie.ch
690d2c0bef Add support for a command which does nothing but pass its argument to the output system. This is especially useful for templates that want to show other templates without actually doing anything else, and so the command is called 'showTemplate'.
git-svn-id: svn://10.0.0.236/trunk@125296 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 15:46:28 +00:00
dbaron%fas.harvard.edu
f9da4499fa Work around crashes at ChildIterator::get using bounds check on ChildIterator::seek. sr=waterson r=kin a=asa b=133219
git-svn-id: svn://10.0.0.236/trunk@125295 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 14:53:43 +00:00
sicking%bigfoot.com
7ef44d6e76 Add same-origin checks in a few DOM methods. Patch by me and jst.
b=156452, r=jst/me, sr=bz, a=pending


git-svn-id: svn://10.0.0.236/trunk@125294 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 13:09:15 +00:00
axel%pike.org
3495eca2d7 remove security checks from buster, it's chrome:// now. Not part of build
git-svn-id: svn://10.0.0.236/trunk@125293 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 11:58:26 +00:00
locka%iol.ie
4bd8981445 Move appstrings.properties into new docshell/resources dir. b=156988 r=brade@netscape.com sr=rpotts@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125292 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 11:54:44 +00:00
kairo%kairo.at
7d69abde8e reorder/split strings in language/content pref panel to better remind users of restarting, bug 137324, r=axel@pike.org, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@125291 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 09:38:42 +00:00
despotdaemon%netscape.com
4b278d819a Pseudo-automatic update of changes made by bugreport@peshkin.net.
git-svn-id: svn://10.0.0.236/trunk@125275 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 03:26:59 +00:00
dveditz%netscape.com
f2f1b42a6b Correct preference escaping for bug 143459, r=bnesse,mstoltz sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@125273 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 02:09:34 +00:00
kyle.yuan%sun.com
98c1392734 Sorry, my previous checkin is not the final one. Fixed!
git-svn-id: svn://10.0.0.236/trunk@125272 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 01:45:38 +00:00
jkeiser%netscape.com
d0f3fe54a4 Make form.submit() work in onSubmit in standards mode (bug 155453), r=bzbarsky@mit.edu, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@125270 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 01:43:21 +00:00
sdagley%netscape.com
23ed5d660d Fix #143543 - Work around Nav Services 1.0 flaw so Save File dialogs works on Mac OS 8.6. r/sr=sfraser, a=asa
git-svn-id: svn://10.0.0.236/trunk@125269 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 01:39:39 +00:00
kyle.yuan%sun.com
ac37835845 Bug 154929 Wrong behavior when dragging splitter in mail thread pane
r=varga, sr=bryner, a=asa
omitted hidden columns when dragging


git-svn-id: svn://10.0.0.236/trunk@125268 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 01:23:43 +00:00
jpierre%netscape.com
5a725d3799 Make certutil use the new CERT_VerifyCertificate function when verifying certs
git-svn-id: svn://10.0.0.236/trunk@125265 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 00:45:50 +00:00
despotdaemon%netscape.com
d3b242d8b6 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125261 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-16 00:03:14 +00:00
dougt%netscape.com
44e616bb84 Fixing bug 157192. r=me, sr=dbaron, a=asa.
git-svn-id: svn://10.0.0.236/trunk@125259 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:32:36 +00:00
despotdaemon%netscape.com
be927b60f1 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125258 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:31:05 +00:00
despotdaemon%netscape.com
b72e38951c Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125257 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:21:01 +00:00
pschwartau%netscape.com
be4875d3c7 Initial add. Regression test for bug 58274.
git-svn-id: svn://10.0.0.236/trunk@125256 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:20:15 +00:00
pschwartau%netscape.com
4c78026770 Initial add. Testing identifiers with double-byte names; see bug 58274.
git-svn-id: svn://10.0.0.236/trunk@125254 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:15:52 +00:00
nhotta%netscape.com
ead545266a Changed to return a result code for conversions so the caller can try fallback,
also changed convert from Unicode to try keyscript in addition to the system default,
bug 108029, r=pinkerton, sr=sfraser, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125253 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 23:01:17 +00:00
nhotta%netscape.com
29ca846b8b Adding new files for utitily functions to convert between native script and Unicode,
bug 108029, r=pinkerton, sr=sfraser, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125251 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 22:57:35 +00:00
nicolson%netscape.com
202ab4d6e1 fix 157622: cleanup javadoc warnings.
Have the build system automatically copy overview-summary.html over
index.html so we get a frame-free version.


git-svn-id: svn://10.0.0.236/trunk@125249 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 22:52:58 +00:00
jst%netscape.com
4a5f28b71e Checking in alexey@ihug.com.au's fix for bug 144040. Make sure the enabled column in about:plugins contains correct information. r=peterl@netscape.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@125248 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 22:50:49 +00:00
nicolson%netscape.com
8c3d311cb9 Fix 157622: cleanup javadoc warnings.
These changes should only affect documentation. There should be no
functional effect of the changes.


git-svn-id: svn://10.0.0.236/trunk@125247 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 22:48:06 +00:00
mjudge%netscape.com
2210006d15 r=akkana sr=sfrasier 125146 a=asa This patch will make the embedding API's a better friend to all. It eliminates the use of multibyte strings in command names and also allows for simple command to not require the nsICommandParams interface to be filled.
git-svn-id: svn://10.0.0.236/trunk@125242 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 22:04:13 +00:00
cltbld%netscape.com
c05cd73c0a updating for mozilla1.1b, kysmith checking in as cltbld, sr=leaf, bugzilla 157557
git-svn-id: svn://10.0.0.236/trunk@125241 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 21:40:28 +00:00
cltbld%netscape.com
1c29191311 updating for mozilla1.1b, sr=leaf, kysmith checking in as cltbld, bugzilla 157557
git-svn-id: svn://10.0.0.236/trunk@125238 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 21:13:59 +00:00
shrutiv%netscape.com
fe40cb95cb updating images
git-svn-id: svn://10.0.0.236/trunk@125237 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 21:00:59 +00:00
pavlov%netscape.com
6998788589 checking in fix for bug 155222 r=pavlov sr=tor@acm.org
git-svn-id: svn://10.0.0.236/trunk@125235 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 20:17:09 +00:00
axel%pike.org
b5574b2a89 chromeing XSLT QA app buster, not removing security checks yet, though. Plus, adding stats and test display by peterv. Not part of build.
git-svn-id: svn://10.0.0.236/trunk@125234 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 19:51:27 +00:00
sicking%bigfoot.com
f0e2529596 Add sameorigin checks to treewalker
b=156452, r=mstoltz, sr=jst, a=chofmann


git-svn-id: svn://10.0.0.236/trunk@125233 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 19:25:27 +00:00
sfraser%netscape.com
48ac123446 Add implementation of the Fonts pref panel, and add the contents of the .nib file
git-svn-id: svn://10.0.0.236/trunk@125232 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 19:14:08 +00:00
locka%iol.ie
1c9690aa38 Ensure load error pages don't end up in the session history. b=157004 r=radha sr=rpotts a=asa
git-svn-id: svn://10.0.0.236/trunk@125231 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 19:10:13 +00:00
igor%mir2.org
55ae98c99d I changed TokenStream to use internal buffer in place of LineBuffer#startString/getString to store currently read characters for identifiers, strings and numbers. For the price of yet another character coping it allows to simplify code logic especially regarding interaction with LineBuffer.
I also fixed http://bugzilla.mozilla.org/show_bug.cgi?id=157509


git-svn-id: svn://10.0.0.236/trunk@125229 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 18:49:42 +00:00
depstein%netscape.com
7d4747a04e new string handling for webProg notification flags.
a=asa for QA checkins that are not part of the default builds


git-svn-id: svn://10.0.0.236/trunk@125228 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 18:25:47 +00:00
mostafah%oeone.com
5a20737e37 Checking in patch for bug 132231 ( leaving out changes to description/categories/locations/url ): No support for International characters
git-svn-id: svn://10.0.0.236/trunk@125226 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 17:31:40 +00:00
pschwartau%netscape.com
d896129cde Correcting two sections of test.
git-svn-id: svn://10.0.0.236/trunk@125225 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 17:28:05 +00:00
pschwartau%netscape.com
5fb9b41f57 Expanding a comment for one section in greater detail.
git-svn-id: svn://10.0.0.236/trunk@125224 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 17:04:38 +00:00
mostafah%oeone.com
55dbf25c70 Checked in patch for bug 156495: VCALENDAR objects of TODO items don't have 'version' and 'prodid' properties.
git-svn-id: svn://10.0.0.236/trunk@125220 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 16:20:29 +00:00
pschwartau%netscape.com
4bb036ffe0 Initial add. Regression test for bug 157509.
git-svn-id: svn://10.0.0.236/trunk@125219 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 15:22:35 +00:00
karnaze%netscape.com
3ce2c0f149 new regression tests not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@125218 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 15:18:28 +00:00
pschwartau%netscape.com
e2aaf6643f Comment edit.
git-svn-id: svn://10.0.0.236/trunk@125217 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 15:07:33 +00:00
pschwartau%netscape.com
cd52e68590 Added revision date + comment clean-up.
git-svn-id: svn://10.0.0.236/trunk@125216 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 15:06:37 +00:00
karnaze%netscape.com
ed50f0e383 bug 154741 - use macros instead of NS_FRAME_COMPLETE, a=asa, sr=kin, r=alexsavulov.
git-svn-id: svn://10.0.0.236/trunk@125215 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 14:46:01 +00:00
kaie%netscape.com
a87d01f430 b=153232 Add better error message for -8182
r=javi sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125211 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 13:39:13 +00:00
kaie%netscape.com
55bf8b4f06 b=151250 False warning posting to https site from http site.
r=javi sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125210 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 13:37:22 +00:00
kaie%netscape.com
7c8854f3d0 b=114893 Can't send encrypted mail if encryption cert has not been imported. Smartcard issue.
r=javi sr=alecf a=asa


git-svn-id: svn://10.0.0.236/trunk@125209 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 13:35:30 +00:00
rods%netscape.com
09fb40aa17 Forgot to initialize the arg to false, and th js code needs to finsih PP in the catch if an error is passed back.
Bug 157129 r=carlen sr=waterson a=asa


git-svn-id: svn://10.0.0.236/trunk@125207 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 11:44:42 +00:00
pete.zha%sun.com
ea278357db Implementation of nsIAccessibleValue
bug=150606 r=kyle.yuan@sun.com sr=jag patch=gilbert.fang@sun.com


git-svn-id: svn://10.0.0.236/trunk@125194 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 02:23:23 +00:00
pschwartau%netscape.com
aa9222e54c Correcting an error in the test. See bug 155291.
git-svn-id: svn://10.0.0.236/trunk@125193 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 00:40:14 +00:00
pschwartau%netscape.com
2aa4367266 Correcting errors in test. See bug 155289.
git-svn-id: svn://10.0.0.236/trunk@125192 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 00:29:37 +00:00
pschwartau%netscape.com
05b930589a Correcting errors in the test. See bug 155289.
git-svn-id: svn://10.0.0.236/trunk@125191 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-15 00:04:22 +00:00
pschwartau%netscape.com
5a05ebc498 Correcting errors in the test. See bug 155289.
git-svn-id: svn://10.0.0.236/trunk@125190 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 23:57:03 +00:00
pschwartau%netscape.com
970893aaaf Correcting an error in one section of the test. See bug 155285.
git-svn-id: svn://10.0.0.236/trunk@125189 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 23:42:23 +00:00
pschwartau%netscape.com
e7e5a1677a Rhino has also decided to conform with SpiderMonkey on this test. Adding early return for Rhino as well.
git-svn-id: svn://10.0.0.236/trunk@125187 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 22:34:50 +00:00
pschwartau%netscape.com
3dd30e325a Rhino has also decided to conform with SpiderMonkey on this test. Removing early return for Rhino.
git-svn-id: svn://10.0.0.236/trunk@125186 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 22:23:52 +00:00
jshin%mailaps.org
a1c1e34624 bug 133216 - make multibyte decoder more robust for invalid octet sequence.
r=yokoyama, sr=alecf, a=asa


git-svn-id: svn://10.0.0.236/trunk@125182 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 10:45:54 +00:00
jshin%mailaps.org
a2468389cc bug 135850 - Make Korean JOHAB encoder (Compatibility Jamo part) aligned with
Adobe CMap and XFree86 font encoding file for JOHAB.
r=yokoyama,sr=alecf,a=asa


git-svn-id: svn://10.0.0.236/trunk@125181 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 10:28:48 +00:00
sfraser%netscape.com
eb22c6a272 Adding Appearance pref pane files to project.
git-svn-id: svn://10.0.0.236/trunk@125170 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 02:15:14 +00:00
sfraser%netscape.com
d37a90f0b3 Changing the Navigation prefs pane to use the common base class. Also changed the wording of the 'load tabs in background' checkbox to indicate that this pref affects new windows too.
git-svn-id: svn://10.0.0.236/trunk@125169 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 02:13:13 +00:00
sfraser%netscape.com
ff6fec4d67 New files for Appearance pref pane. The tiff is temporary.
git-svn-id: svn://10.0.0.236/trunk@125168 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 02:11:32 +00:00
sfraser%netscape.com
42dc561f4c New base class for Preference Pane implementations, provides methods for getting and setting mozilla prefs.
git-svn-id: svn://10.0.0.236/trunk@125167 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 02:10:30 +00:00
bryner%netscape.com
069dbfb68c Fix full-page plugins on static builds by registering the docloader factory via nsIComponentRegistrar::RegisterFactory, so we don't have to depend on there being a plugin shared library in the components directory. r=peterl, sr=shaver, a=chofmann.
git-svn-id: svn://10.0.0.236/trunk@125164 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-14 00:39:35 +00:00
bryner%netscape.com
0941d2ecdb On second thought, only allocate the extra space when determining the element size; still paint the indicator at its "real" size. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@125160 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 23:27:16 +00:00
bryner%netscape.com
92c533513a Put a hardcoded min size of 14px on checkbox and radio button indicators, since many themes have indicators that are larger than the default 10px indicator_size, but don't bother setting the property. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@125156 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 22:05:38 +00:00
locka%iol.ie
fc56222620 Support client specific manifests. b=154878 r=chak@netscape.com sr=rpotts@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125151 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 15:09:26 +00:00
locka%iol.ie
dd99f9e5bc Support client specific manifests. b=154878 r=chak@netscape.com sr=rpotts@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125150 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 14:41:45 +00:00
caillon%returnzero.com
bfa2307cf1 Bug 157083. Smart Browsing Advanced window is sized too small when no checkboxes checked.
r=bzbarsky sr=blake a=asa


git-svn-id: svn://10.0.0.236/trunk@125149 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 11:30:09 +00:00
mstoltz%netscape.com
436a8b02f7 bug 125725, part 2 - pass nsIURIs instead of char* URL specs into nsCookies.
That way, we won't try to get or set cookies on protocols that don't support host.
r=morse, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@125142 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 03:45:05 +00:00
relyea%netscape.com
9dc2692721 Fix solaris signed/unsigned warnings.
On updating nicknames, create a nickname record if one doesn't exist (that is
somehow the database got corrupted).


git-svn-id: svn://10.0.0.236/trunk@125140 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 02:45:04 +00:00
ccarlen%netscape.com
8fe2ca829c Fixing bustage on planetoid.
git-svn-id: svn://10.0.0.236/trunk@125139 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 01:07:57 +00:00
waldemar%netscape.com
b2fd32511a Obsolete
git-svn-id: svn://10.0.0.236/trunk@125137 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 00:52:10 +00:00
despotdaemon%netscape.com
f80ad3f50f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@125136 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 00:26:25 +00:00
ccarlen%netscape.com
96a6b4aa46 Bug 154883 - Use session printing APIs on Mac OSX. r=pinkerton/sr=sfraser/a=asa
git-svn-id: svn://10.0.0.236/trunk@125133 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 00:18:46 +00:00
ccarlen%netscape.com
71ffff784e Adding new files for bug 154883 - using session printing APIs on OSX. r=pinkerton/sr=sfraser/a=asa
git-svn-id: svn://10.0.0.236/trunk@125132 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-13 00:08:42 +00:00
shrutiv%netscape.com
7e2893cc71 Fix for bug 155468: Installation of c11n build crash due to incorrect
attributes for Viewpoint (r=smeredith)


git-svn-id: svn://10.0.0.236/trunk@125131 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 23:48:13 +00:00
cltbld%netscape.com
3f1b90e393 Adding default, blank string for BuildNameExtra. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125129 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 22:45:41 +00:00
brade%netscape.com
3b0fc8bc5c bug 156918; cleanup QI usage and fix some recent regressions (r=Neil, Akkana, sr=Simon)
git-svn-id: svn://10.0.0.236/trunk@125128 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 22:28:30 +00:00
brade%netscape.com
0dde44ee8b fix typo (r=akkana, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@125127 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 22:24:39 +00:00
leaf%mozilla.org
c8844accd0 Automated update
git-svn-id: svn://10.0.0.236/trunk@125126 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:40:22 +00:00
dmose%netscape.com
e8c3820f63 Add a configure option and hack for Linux x86 to make existing plugin binaries (eg flash, real, ...) work with gcc 3.1 builds (bug 154206). r=bryner@netscape.com, serge@netscape.com; sr=blizzard@mozilla.org; a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@125125 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:30:31 +00:00
rginda%netscape.com
175c89a2ea bug 155838, "Infinite loop caused by strange code", r=peterv, sr=brendan, a=roc+moz@cs.cmu.edu
don't leave gDeadScripts pointing at garbage.  May or may not fix the problem at hand, but is an improvement in either case.


git-svn-id: svn://10.0.0.236/trunk@125124 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:28:29 +00:00
shannond%netscape.com
a7311a64c7 Bug 147978 - The copy of an existing config should use its own Workspace
r=mitchf@netscape.com
This checkin to take into account if the administrator changed the path in the original configuration.


git-svn-id: svn://10.0.0.236/trunk@125123 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:27:34 +00:00
radha%netscape.com
8f44bb451e Fix for bug # 124245. javascript onload redirect breaks back button. r= rpotts sr=alecf, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@125122 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:15:51 +00:00
rbs%maths.uq.edu.au
7934fc0bf6 Align the bar of the radical on pixel boundaries to get a nicer & uniform spacing on stacked radicals, b=130282, r=roc+moz, sr=waterson, a=asa
git-svn-id: svn://10.0.0.236/trunk@125121 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:14:32 +00:00
nicolson%netscape.com
7a797251db put back the assertion check.
git-svn-id: svn://10.0.0.236/trunk@125119 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:12:22 +00:00
dougt%netscape.com
368181a95d nscore.h has unreachable MSVC #defines (mutually exclusive nested #if), r=dbaron sr=scc a=superfly asa
git-svn-id: svn://10.0.0.236/trunk@125118 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:08:56 +00:00
nicolson%netscape.com
0f1ab3ab0c Fix misspelled exception name.
git-svn-id: svn://10.0.0.236/trunk@125117 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:08:22 +00:00
nicolson%netscape.com
ad1a1e4c9c add default constructor
git-svn-id: svn://10.0.0.236/trunk@125116 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 21:07:40 +00:00
bzbarsky%mit.edu
050d8e8c55 Add some more Ethiopic list styles. Bug 154503, patch by yacob@geez.org
(Daniel Yacob), r=dbaron, rs=brendan, a=asa


git-svn-id: svn://10.0.0.236/trunk@125114 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 20:46:19 +00:00
nicolson%netscape.com
e8aaf9ad36 This test isn't working yet, but I may get it working at some point.
git-svn-id: svn://10.0.0.236/trunk@125113 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 20:33:39 +00:00
alecf%netscape.com
9abc7e5dc6 bug 156736 - reorganize basebrowser-* to make it easier for embeddors to pick & choose components
r=adamlock, sr=dveditz, a=asa


git-svn-id: svn://10.0.0.236/trunk@125112 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 20:33:12 +00:00
mkaply%us.ibm.com
1e8274b9b8 #67913
r=pedemont, sr=blizzard (platform specific code)
OS/2 only = 800x600 reports the workarea size incorrectly, so explictly use the height of warpcenter


git-svn-id: svn://10.0.0.236/trunk@125109 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 20:01:59 +00:00
igor%mir2.org
7368ef0536 Call to InterpretedFunction.construct is inlined to avoid argument array allocation.
git-svn-id: svn://10.0.0.236/trunk@125106 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:40:49 +00:00
igor%mir2.org
c95dcd43e0 Creation and initialization of new object in BaseFunction.construct is moved to a separated function createObject to simplify inlining of InterpretedFunction.construct in Interpreter
git-svn-id: svn://10.0.0.236/trunk@125105 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:39:57 +00:00
mikep%oeone.com
c9f6793cd8 Fixing bug 137513 for mouse wheel scrolling, and also fixing display time for alarms in alarm dialog (problme with repeating events.)
git-svn-id: svn://10.0.0.236/trunk@125104 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:39:37 +00:00
igor%mir2.org
63fd7c33bc Added ObjToIntMap.intern()
git-svn-id: svn://10.0.0.236/trunk@125103 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:37:20 +00:00
dmose%netscape.com
87d338aa27 Fix OSF/1 build bustage (bug 144280). Patch from shanmu@netscape.com; r=dmose@netscape.com, sr=bienvenu@netscape.com, a=roc+moz@cs.cmu.edu
git-svn-id: svn://10.0.0.236/trunk@125102 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:29:52 +00:00
alecf%netscape.com
2f59581288 bug 66759 - finally remove XPCOM_STANDALONE completely
r=dougt, rs=brendan, a=asa


git-svn-id: svn://10.0.0.236/trunk@125100 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 19:14:35 +00:00
dsirnapalli%netscape.com
5d8fa23aad Updated the test case.
git-svn-id: svn://10.0.0.236/trunk@125098 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 18:38:20 +00:00
mikep%oeone.com
38a5767562 Fixing bug 137513, problem with mouse scrolling after switching to week and day views.
git-svn-id: svn://10.0.0.236/trunk@125097 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 18:33:23 +00:00
naving%netscape.com
f44a2d8138 156368 patch by t.bugz@lament.cjb.net r=naving sr=bienvenu a=roc+moz fixing quicksearch fails if focus was in threadpane before search box
git-svn-id: svn://10.0.0.236/trunk@125093 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 17:57:02 +00:00
pinkerton%netscape.com
f1c996ad85 Replace the standard gecko 'image placeholder' with a more aqua-one from ugo
git-svn-id: svn://10.0.0.236/trunk@125092 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 15:22:28 +00:00
kaie%netscape.com
f8b44ebc4e b=135214 tentative fix for "signed icon in 3-pane isn't going away"
r=dbaron sr=mscott


git-svn-id: svn://10.0.0.236/trunk@125091 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 11:53:34 +00:00
rods%netscape.com
44a86dac88 changed all the DEVMODE allocating and freeing to native Windows calls HeapAlloc and HeapFree
nsPrintSettingsWin.cpp was creating and copying only the non-platform specific data by using the
"sizeof" of the DEVMODE struct, instead of checking the struct size with dmSize
and the size of the private (device-specific) data with dmDriverExtra. Now it
creates the correct size of memory and copies all the non-private data and private data.
Bug 156318 r=dcone sr=kin,waterson,rpotts a=asa


git-svn-id: svn://10.0.0.236/trunk@125089 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 11:48:38 +00:00
rods%netscape.com
e37e3dadbd Minor comment change
Bug 99619 r=kmcclusk sr=sspitzer a=jud adt=paw


git-svn-id: svn://10.0.0.236/trunk@125088 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 11:34:52 +00:00
aaronl%netscape.com
b992a26c12 Not part of build. Typeaheadfind: clean up emacsish/repeated character logic
git-svn-id: svn://10.0.0.236/trunk@125083 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 08:10:13 +00:00
aaronl%netscape.com
b8c854e6a8 Not part of build. Typeaheadfind (bug 30088): Prefer an exact match, if it exists, when the same character is repeated. Should make the emacs folks happy
git-svn-id: svn://10.0.0.236/trunk@125082 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 07:41:22 +00:00
aaronl%netscape.com
74eef6bba9 Not part of build. Fix for crash in typeaheadfind (bug 30088)
git-svn-id: svn://10.0.0.236/trunk@125081 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 07:23:09 +00:00
brendan%mozilla.org
90ad3b5df3 Emulate IE6 by making RegExp.prototype match the empty string (156355, r=rogerl, sr=shaver, a=dbaron).
git-svn-id: svn://10.0.0.236/trunk@125078 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:54:57 +00:00
bbaetz%student.usyd.edu.au
238bee30e8 Bug 155032 - Memory leak of 18 bytes from 1 block allocated in
nsSOCKSSocketInfo::GetProxyHost
r=smeredith, sr=alecf, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@125077 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:54:09 +00:00
bryner%netscape.com
5a608bcf5e Remove non-functional help menu item, add an Info menu item that goes to the download page.
git-svn-id: svn://10.0.0.236/trunk@125076 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:53:12 +00:00
pete.zha%sun.com
f8753fa9cf "Quote Message" menu item doesn't work on recently trunk. bug=156876 r=ducarroz sr=bienvenu a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@125071 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:33:16 +00:00
nicolson%netscape.com
40b78d68bf Fix 98613: using SSLSocket after close causes crash.
Now the SSLSocket and SSLServerSocket close() methods only call PR_Close()
on the underlying fd. Freeing data structures is postponed until the
Java object is finalized.


git-svn-id: svn://10.0.0.236/trunk@125070 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:26:56 +00:00
nicolson%netscape.com
34f86dd48b clarify error message.
git-svn-id: svn://10.0.0.236/trunk@125069 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 04:09:14 +00:00
cltbld%netscape.com
5e83c9f0ea 154815 fixed, removing hack. -mcafee
git-svn-id: svn://10.0.0.236/trunk@125068 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 03:50:49 +00:00
mozilla.BenB%bucksch.org
67e2928527 same as previous. patch by Tuukka Tolvanen <t.bugz@lament.cjb.net>
git-svn-id: svn://10.0.0.236/trunk@125067 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 03:39:14 +00:00
mozilla.BenB%bucksch.org
2c5eb70b01 156984: Typo (missing "P"). r=rods, sr=kin, a=roc
git-svn-id: svn://10.0.0.236/trunk@125066 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 03:34:17 +00:00
relyea%netscape.com
52ca8acde6 Update the CERTDB_USER bits when our key gets imported through pkcs #12.
git-svn-id: svn://10.0.0.236/trunk@125064 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 03:27:44 +00:00
pete.zha%sun.com
ef2e3f111b mozilla1.1a core dump at PR_AtomicDecrement()
bug=154730 r=bryner sr=jst a=asa patch=antonio.xu@sun.com


git-svn-id: svn://10.0.0.236/trunk@125061 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 02:56:18 +00:00
jpierre%netscape.com
7b06b4f219 Make CERT_VerifyCertificate actually work . Oops.
git-svn-id: svn://10.0.0.236/trunk@125060 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 02:37:49 +00:00
dbaron%fas.harvard.edu
f397c8ab4e Fix crash when we do a ReconstructDocElementHierarchy on a XUL document, which destroys the nsDocElementBoxFrame (which constructs the popupset) but not the nsRootBoxFrame. b=156719 r=waterson sr=ben a=asa
git-svn-id: svn://10.0.0.236/trunk@125058 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 01:46:20 +00:00
bienvenu%netscape.com
051c35befa fix crash shutting down while offline r=dougt, sr=dveditz a=chofmann 156851
git-svn-id: svn://10.0.0.236/trunk@125055 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 01:00:08 +00:00
seawood%netscape.com
39c72e94a1 Create a symlink named "bin" in the dist/mozilla directory and then run pkgcp.pl using dist/mozilla as the srcdir. This will let us avoid accidentally stripping the files in dist/bin.
Thanks to Brian Ryner <bryner@netscape.com> for the patch.
Bug #156983 r=sgehani sr=leaf


git-svn-id: svn://10.0.0.236/trunk@125053 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 00:37:46 +00:00
caillon%returnzero.com
459e27115c New icons for composer and addressbook. Icons by marlon@netscape.com.
Bug 156822. Also see bugscape #16402.
moa=jag, a=asa.


git-svn-id: svn://10.0.0.236/trunk@125051 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-12 00:19:08 +00:00
dsirnapalli%netscape.com
79ae232008 Test Cases to test XUL Elements for Accessibility.
git-svn-id: svn://10.0.0.236/trunk@125049 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 23:33:04 +00:00
jkeiser%netscape.com
8dddb7432c Make mailto form submit work (bug 61893), r=alexsavulov@netscape.com, sr=dveditz@netscape.com, a=asa
git-svn-id: svn://10.0.0.236/trunk@125048 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 23:32:13 +00:00
shrutiv%netscape.com
57bf7291a9 Fix for bugscape bug 17654: Blank OS and Language-Region dropdown menu
using previous existing config files (r=mitchf)


git-svn-id: svn://10.0.0.236/trunk@125047 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 23:23:53 +00:00
oeschger%netscape.com
479087e18e added help content for http networking, brought over from ns help, bug=143590
git-svn-id: svn://10.0.0.236/trunk@125046 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 22:58:43 +00:00
edburns%acm.org
9ad9ff18de debug_options
git-svn-id: svn://10.0.0.236/trunk@125045 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 22:19:59 +00:00
edburns%acm.org
d2d0482cb1 debug_options
git-svn-id: svn://10.0.0.236/trunk@125044 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 22:15:46 +00:00
edburns%acm.org
89ce8241d1 debug_options
git-svn-id: svn://10.0.0.236/trunk@125043 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 22:12:10 +00:00
morse%netscape.com
ae7548953e bug 152694, cookies with spaces in the value get mangled, r=law, sr=jag, a=asa
git-svn-id: svn://10.0.0.236/trunk@125042 18797224-902f-48f8-a5cc-f745e15eee43
2002-07-11 21:58:43 +00:00
57 changed files with 61 additions and 21010 deletions

View File

@@ -0,0 +1,61 @@
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Rhino code, released
* May 6, 1999.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1997-1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Norris Boyd
* Roger Lawrence
*
* Alternatively, the contents of this file may be used under the
* terms of the GNU Public License (the "GPL"), in which case the
* provisions of the GPL are applicable instead of those above.
* If you wish to allow use of your version of this file only
* under the terms of the GPL and not to allow others to use your
* version of this file under the NPL, indicate your decision by
* deleting the provisions above and replace them with the notice
* and other provisions required by the GPL. If you do not delete
* the provisions above, a recipient may use your version of this
* file under either the NPL or the GPL.
*/
package org.mozilla.javascript.optimizer;
import org.mozilla.javascript.*;
/**
* This class allows the creation of nodes, and follows the Factory pattern.
*
* @see IRFactory
* @author Norris Boyd
*/
class OptIRFactory extends IRFactory {
OptIRFactory(TokenStream ts, Scriptable scope, Codegen compiler) {
super(ts, scope);
this.compiler = compiler;
}
public Object createFunctionNode(String name, Object statements)
{
String className = compiler.getScriptClassName(name, false);
return new OptFunctionNode(name, (Node)statements, className);
}
private Codegen compiler;
}

View File

@@ -1,32 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src resources
include $(topsrcdir)/config/rules.mk

File diff suppressed because it is too large Load Diff

View File

@@ -1,26 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
/* Defining the following causes NS_APPSHELL to be defined as NS_EXPORT. */
#define _IMPL_NS_APPSHELL
#include "MacSharedPrefix.h"

View File

@@ -1,26 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
/* Defining the following causes NS_APPSHELL to be defined as NS_EXPORT. */
#define _IMPL_NS_APPSHELL
#include "MacSharedPrefix_debug.h"

View File

@@ -1,26 +0,0 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..\..
DIRS=public src resources
include <$(DEPTH)\config\rules.mak>

View File

@@ -1 +0,0 @@
nsIBookmarksService.idl

View File

@@ -1,35 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = appcomps
XPIDL_MODULE = bookmarks
XPIDLSRCS = nsIBookmarksService.idl
include $(topsrcdir)/config/rules.mk

View File

@@ -1,31 +0,0 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..\..\..
MODULE=bookmarks
XPIDLSRCS = \
.\nsIBookmarksService.idl \
$(NULL)
include <$(DEPTH)\config\rules.mak>

View File

@@ -1,95 +0,0 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/**
* The Browser Bookmarks service
*/
#include "nsISupports.idl"
interface nsIRDFResource;
[scriptable, uuid(a82e9300-e4af-11d2-8fdf-0008c70adc7b)]
interface nsIBookmarksService : nsISupports
{
const unsigned long BOOKMARK_DEFAULT_TYPE = 0;
const unsigned long BOOKMARK_SEARCH_TYPE = 1;
const unsigned long BOOKMARK_FIND_TYPE = 2;
boolean ReadBookmarks();
boolean IsBookmarked(in string aURI);
void addBookmarkImmediately(in string aURI, in wstring aTitle, in long bmType, in wstring docCharset);
nsIRDFResource createFolder(in wstring aName, in nsIRDFResource aParentFolder);
nsIRDFResource createFolderWithDetails(in wstring aName, in nsIRDFResource aParentFolder,
in long aIndex);
nsIRDFResource createGroup(in wstring aName, in nsIRDFResource aParentFolder);
nsIRDFResource createGroupWithDetails(in wstring aName, in nsIRDFResource aParentFolder,
in long aIndex);
nsIRDFResource createBookmark(in wstring aName, in string aURL, in nsIRDFResource aParentFolder);
nsIRDFResource createBookmarkWithDetails(in wstring aName, in string aURI, in wstring docCharSet,
in nsIRDFResource aFolder, in long aIndex);
void updateBookmarkIcon(in string aURL, in wstring iconURL);
void removeBookmarkIcon(in string aURL, in wstring iconURL);
void updateLastVisitedDate(in string aURL, in wstring docCharset);
string resolveKeyword(in wstring aName);
wstring getLastCharset(in string aURI);
void importSystemBookmarks(in nsIRDFResource aParentFolder);
};
%{C++
// {E638D760-8687-11d2-B530-000000000000}
#define NS_BOOKMARKS_SERVICE_CID \
{ 0xe638d760, 0x8687, 0x11d2, { 0xb5, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } }
#define NS_BOOKMARKS_SERVICE_CONTRACTID \
"@mozilla.org/browser/bookmarks-service;1"
#define NS_BOOKMARKS_DATASOURCE_CONTRACTID \
"@mozilla.org/rdf/datasource;1?name=bookmarks"
%}

View File

@@ -1,9 +0,0 @@
bm-find.js
bm-find.xul
bm-panel.js
bm-panel.xul
bm-props.js
bm-props.xul
bookmarks.js
bookmarksDD.js
bookmarks.xul

View File

@@ -1,30 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk

View File

@@ -1,348 +0,0 @@
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/**
* Add Bookmark Dialog.
* ====================
*
* This is a generic bookmark dialog that allows for bookmark addition
* and folder selection. It can be opened with various parameters that
* result in appearance/purpose differences and initial state.
*
* Use: Open with 'openDialog', with the flags
* 'centerscreen,chrome,dialog=no,resizable=yes'
*
* Parameters:
* Apart from the standard openDialog parameters, this dialog can
* be passed additional information, which gets mapped to the
* window.arguments array:
*
* window.arguments[0]: Bookmark Name. The value to be prefilled
* into the "Name: " field (if visible).
* window.arguments[1]: Bookmark URL: The location of the bookmark.
* The value to be filled in the "Location: "
* field (if visible).
* window.arguments[2]: Bookmark Folder. The RDF Resource URI of the
* folder that this bookmark should be created in.
* window.arguments[3]: Bookmark Charset. The charset that should be
* used when adding a bookmark to the specified
* URL. (Usually the charset of the current
* document when launching this window).
* window.arguments[4]: The mode of operation. See notes for details.
* window.arguments[5]: If the mode is "addGroup", this is an array
* of objects with name, URL and charset
* properties, one for each group member.
*
* Mode of Operation Notes:
* ------------------------
* This dialog can be opened in four different ways by using a parameter
* passed through the call to openDialog. The 'mode' of operation
* of the window is expressed in window.arguments[4]. The valid modes are:
*
* 1) <default> (no fifth open parameter).
* Opens this dialog with the bookmark Name, URL and folder selection
* components visible.
* 2) "newBookmark" (fifth open parameter = String("newBookmark"))
* Opens the dialog as in (1) above except the folder selection tree
* is hidden. This type of mode is useful when the creation folder
* is pre-determined.
* 3) "selectFolder" (fifth open parameter = String("selectFolder"))
* Opens the dialog as in (1) above except the Name/Location section
* is hidden, and the dialog takes on the utility of a Folder chooser.
* Used when the user must select a Folder for some purpose.
* 4) "addGroup" (fifth open parameter = String("addGroup"))
* Opens the dialog like <default>, with a checkbox to select between
* filing a single bookmark or a group. For the single bookmark the
* values are taken from the name, URL and charset arguments.
* For the group, the values are taken from the sixth argument.
* This parameter can also be String("addGroup,group") where "group"
* specifies that the dialog starts in filing as a group.
*/
var gFld_Name = null;
var gFld_URL = null;
var gFolderTree = null;
var gCB_AddGroup = null;
var gBookmarkCharset = null;
const kRDFSContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFSIID = Components.interfaces.nsIRDFService;
const kRDF = Components.classes[kRDFSContractID].getService(kRDFSIID);
var gSelectItemObserver = null;
var gCreateInFolder = "NC:NewBookmarkFolder";
function Startup()
{
gFld_Name = document.getElementById("name");
gFld_URL = document.getElementById("url");
gCB_AddGroup = document.getElementById("addgroup");
var bookmarkView = document.getElementById("bookmarks-view");
var shouldSetOKButton = true;
var dialogElement = document.documentElement;
if ("arguments" in window) {
var ind;
var folderItem = null;
var arg;
if (window.arguments.length < 5)
arg = null;
else
arg = window.arguments[4];
switch (arg) {
case "selectFolder":
// If we're being opened as a folder selection window
document.getElementById("bookmarknamegrid").setAttribute("hidden", "true");
document.getElementById("createinseparator").setAttribute("hidden", "true");
document.getElementById("nameseparator").setAttribute("hidden", "true");
sizeToContent();
dialogElement.setAttribute("title", dialogElement.getAttribute("title-selectFolder"));
shouldSetOKButton = false;
if (window.arguments[2])
folderItem = bookmarkView.rdf.GetResource(window.arguments[2]);
if (folderItem) {
ind = bookmarkView.treeBuilder.getIndexOfResource(folderItem);
bookmarkView.treeBoxObject.selection.select(ind);
}
break;
case "newBookmark":
setupFields();
if (window.arguments[2])
gCreateInFolder = window.arguments[2];
document.getElementById("folderbox").setAttribute("hidden", "true");
sizeToFit();
break;
case "addGroup":
document.getElementById("showaddgroup").setAttribute("hidden", "false");
setupFields();
sizeToFit();
break;
case "addGroup,group":
document.getElementById("showaddgroup").setAttribute("hidden", "false");
gCB_AddGroup.setAttribute("checked", "true");
setupFields();
toggleGroup();
sizeToFit();
break;
default:
// Regular Add Bookmark
setupFields();
if (window.arguments[2]) {
gCreateInFolder = window.arguments[2];
folderItem = bookmarkView.rdf.GetResource(gCreateInFolder);
if (folderItem) {
ind = bookmarkView.treeBuilder.getIndexOfResource(folderItem);
bookmarkView.treeBoxObject.selection.select(ind);
}
}
}
}
if (shouldSetOKButton)
onFieldInput();
if (document.getElementById("bookmarknamegrid").hasAttribute("hidden")) {
bookmarkView.tree.focus();
if (bookmarkView.currentIndex == -1)
bookmarkView.treeBoxObject.selection.select(0);
}
else {
gFld_Name.select();
gFld_Name.focus();
}
}
function sizeToFit()
{
var dialogElement = document.documentElement;
dialogElement.removeAttribute("persist");
dialogElement.removeAttribute("height");
dialogElement.removeAttribute("width");
dialogElement.setAttribute("style", dialogElement.getAttribute("style"));
sizeToContent();
}
function setupFields()
{
// New bookmark in predetermined folder.
gFld_Name.value = window.arguments[0] || "";
gFld_URL.value = window.arguments[1] || "";
onFieldInput();
gFld_Name.select();
gFld_Name.focus();
gBookmarkCharset = window.arguments[3] || null;
}
function onFieldInput()
{
const ok = document.documentElement.getButton("accept");
ok.disabled = gFld_URL.value == "" && !addingGroup() ||
gFld_Name.value == "";
}
function onOK()
{
if (!document.getElementById("folderbox").hasAttribute("hidden")) {
var bookmarkView = document.getElementById("bookmarks-view");
var currentIndex = bookmarkView.currentIndex;
if (currentIndex != -1)
gCreateInFolder = bookmarkView.treeBuilder.getResourceAtIndex(currentIndex).Value;
}
// In Select Folder Mode, do nothing but tell our caller what
// folder was selected.
if (window.arguments.length > 4 && window.arguments[4] == "selectFolder")
window.arguments[5].selectedFolder = gCreateInFolder;
else {
// Otherwise add a bookmark to the selected folder.
const kBMDS = kRDF.GetDataSource("rdf:bookmarks");
const kBMSContractID = "@mozilla.org/browser/bookmarks-service;1";
const kBMSIID = Components.interfaces.nsIBookmarksService;
const kBMS = Components.classes[kBMSContractID].getService(kBMSIID);
var rFolder = kRDF.GetResource(gCreateInFolder, true);
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFIID = Components.interfaces.nsIRDFContainer;
const kRDFC = Components.classes[kRDFCContractID].getService(kRDFIID);
try {
kRDFC.Init(kBMDS, rFolder);
}
catch (e) {
// No "NC:NewBookmarkFolder" exists, just append to the root.
rFolder = kRDF.GetResource("NC:BookmarksRoot", true);
kRDFC.Init(kBMDS, rFolder);
}
// if no URL was provided and we're not filing as a group, do nothing
if (!gFld_URL.value && !addingGroup())
return;
var url;
if (addingGroup()) {
const group = kBMS.createGroup(gFld_Name.value, rFolder);
const groups = window.arguments[5];
for (var i = 0; i < groups.length; ++i) {
url = getNormalizedURL(groups[i].url);
kBMS.createBookmarkWithDetails(groups[i].name, url,
groups[i].charset, group, -1);
}
} else {
url = getNormalizedURL(gFld_URL.value);
var newBookmark = kBMS.createBookmarkWithDetails(gFld_Name.value, url, gBookmarkCharset, rFolder, -1);
if (window.arguments.length > 4 && window.arguments[4] == "newBookmark") {
window.arguments[5].newBookmark = newBookmark;
}
}
}
}
function getNormalizedURL(url)
{
// Check to see if the item is a local directory path, and if so, convert
// to a file URL so that aggregation with rdf:files works
try {
const kLF = Components.classes["@mozilla.org/file/local;1"]
.createInstance(Components.interfaces.nsILocalFile);
kLF.initWithPath(url);
if (kLF.exists()) {
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.classes.nsIIOService);
url = ioService.getURLSpecFromFile(kLF);
}
}
catch (e) {
}
return url;
}
var gBookmarksShell = null;
function createNewFolder ()
{
var bookmarksView = document.getElementById("bookmarks-view");
bookmarksView.createNewFolder();
}
function useDefaultFolder ()
{
const kBMDS = kRDF.GetDataSource("rdf:bookmarks");
var bookmarkView = document.getElementById("bookmarks-view");
var sources = kBMDS.GetSources(bookmarkView.rdf.GetResource(NC_NS + "FolderType"), bookmarkView.rdf.GetResource("NC:NewBookmarkFolder"), true);
var folder = null;
if (sources.hasMoreElements()) {
folder = sources.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
}
var ind = bookmarkView.treeBuilder.getIndexOfResource(folder);
if (ind != -1) {
bookmarkView.tree.focus();
bookmarkView.treeBoxObject.selection.select(ind);
gCreateInFolder = folder.Value;
}
else {
bookmarkView.treeBoxObject.selection.clearSelection();
gCreateInFolder = "NC:BookmarksRoot";
}
}
var gOldNameValue = "";
var gOldURLValue = "";
function toggleGroup()
{
// swap between single bookmark and group name
var temp = gOldNameValue;
gOldNameValue = gFld_Name.value;
gFld_Name.value = temp;
// swap between single bookmark and group url
temp = gOldURLValue;
gOldURLValue = gFld_URL.value;
gFld_URL.value = temp;
gFld_URL.disabled = gCB_AddGroup.getAttribute("checked") == "true";
gFld_Name.select();
gFld_Name.focus();
onFieldInput();
}
function addingGroup()
{
const showAddGroup = document.getElementById("showaddgroup");
return showAddGroup.getAttribute("hidden") != "true" && gCB_AddGroup.getAttribute("checked") == "true";
}

View File

@@ -1,118 +0,0 @@
<?xml version="1.0"?>
<!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com> (Original Author)
-->
<?xml-stylesheet href="chrome://communicator/skin/"?>
<?xml-stylesheet href="chrome://communicator/skin/bookmarks/bookmarks.css"?>
<?xml-stylesheet href="chrome://communicator/content/bookmarks/bookmarks.css" type="text/css"?>
<!DOCTYPE window [
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
%brandDTD;
<!ENTITY % addBookmarkDTD SYSTEM "chrome://communicator/locale/bookmarks/addBookmark.dtd">
%addBookmarkDTD;
]>
<dialog id="newBookmarkDialog" style="width: 36em;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
ondialogaccept="return onOK(event)"
title="&newBookmark.title;" title-selectFolder="&selectFolder.label;"
onload="Startup();"
persist="screenX screenY width height"
screenX="24" screenY="24">
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksTree.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/addBookmark.js"/>
<stringbundle id="bookmarksbundle"
src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
<broadcaster id="showaddgroup" hidden="true"/>
<separator id="nameseparator" class="thin"/>
<grid id="bookmarknamegrid">
<columns>
<column/>
<column flex="5"/>
<column flex="1"/>
</columns>
<rows>
<row align="center">
<label value="&name.label;" accesskey="&name.accesskey;" control="name"/>
<textbox id="name" oninput="onFieldInput();"/>
<spacer/>
</row>
<row>
<separator class="thin"/>
<separator class="thin"/>
<spacer/>
</row>
<row align="center">
<label value="&url.label;" accesskey="&url.accesskey;" control="url"/>
<textbox id="url" oninput="onFieldInput();"/>
<spacer/>
</row>
<row observes="showaddgroup">
<separator class="thin"/>
<separator class="thin"/>
<spacer/>
</row>
<row observes="showaddgroup">
<spacer/>
<hbox pack="start">
<checkbox id="addgroup" label="&addGroup.label;"
accesskey="&addGroup.accesskey;" oncommand="toggleGroup();"/>
</hbox>
<spacer/>
</row>
</rows>
</grid>
<separator id="createinseparator"/>
<vbox id="folderbox" flex="1">
<separator/>
<hbox flex="1">
<label id="createinlabel" value="&createin.label;"/>
<hbox flex="1">
<bookmarks-tree id="bookmarks-view" flex="1" type="folders"/>
<vbox>
<button label="&button.newfolder.label;" accesskey="&button.newfolder.accesskey;"
oncommand="createNewFolder();"/>
<button label="&button.defaultfolder.label;"
accesskey="&button.defaultfolder.accesskey;"
oncommand="useDefaultFolder();"/>
</vbox>
</hbox>
</hbox>
</vbox>
<separator/>
</dialog>

View File

@@ -1,87 +0,0 @@
<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com> (Original Author, v2.0)
-->
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/skin/sidebar/sidebarListView.css" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/skin/bookmarks/bookmarksWindow.css" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/content/bookmarks/bookmarks.css" type="text/css"?>
<?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/bookmarks/bookmarksOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/tasksOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/communicatorOverlay.xul"?>
<!DOCTYPE window SYSTEM "chrome://communicator/locale/bookmarks/bookmarks.dtd">
<page id="bookmarksPanel"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="Startup();" elementtofocus="bookmarks-view">
<!-- XXX - would like to cut this dependency out -->
<script type="application/x-javascript" src="chrome://global/content/strres.js"/>
<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>
<!-- Bookmarks Shell -->
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksPanel.js"/>
<!-- Drag and Drop -->
<script type="application/x-javascript" src="chrome://global/content/nsDragAndDrop.js"/>
<script type="application/x-javascript" src="chrome://global/content/nsTransferable.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksDD.js"/>
<!-- context menu, tooltips, etc -->
<popupset id="bookmarksPopupset"/>
<!-- bookmarks string bundle -->
<stringbundleset id="stringbundleset"/>
<!-- bookmarks & edit commands -->
<commands id="commands">
<commandset id="CommandUpdate_Bookmarks"
commandupdater="true"
events="click,focus"
oncommandupdate="document.getElementById('bookmarks-view').onCommandUpdate();">
</commandset>
<commandset id="bookmarksItems"/>
</commands>
<hbox id="panel-bar" class="toolbar">
<toolbarbutton id="btnAddBookmark" label="&command.addBookmark.label;"
oncommand="addBookmark();"/>
<toolbarbutton id="btnManageBookmarks" label="&command.manageBookmarks.label;"
oncommand="manageBookmarks();"/>
<spacer flex="1"/>
<toolbarseparator/>
<toolbarbutton id="btnFindBookmarks" label="&command.findBookmarks.label;"
oncommand="document.getElementById('bookmarks-view').openFindDialog();"/>
</hbox>
<bookmarks-tree id="bookmarks-view" class="sidebar" type="single-column" flex="1"/>
</page>

View File

@@ -1,387 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
var NC_NAMESPACE_URI = "http://home.netscape.com/NC-rdf#";
// XXX MAKE SURE that the "url" field is LAST!
// This is important for what happens if/when the URL itself is changed.
// Ask rjc@netscape.com if you want to know why exactly this is.
// This is the set of fields that are visible in the window.
var gFields = ["name", "shortcut", "description", "url"];
// ...and this is a parallel array that contains the RDF properties
// that they are associated with.
var gProperties = [NC_NAMESPACE_URI + "Name",
NC_NAMESPACE_URI + "ShortcutURL",
NC_NAMESPACE_URI + "Description",
NC_NAMESPACE_URI + "URL"];
var RDF = Components.classes["@mozilla.org/rdf/rdf-service;1"]
.getService(Components.interfaces.nsIRDFService);
var RDFC = Components.classes["@mozilla.org/rdf/container-utils;1"]
.getService(Components.interfaces.nsIRDFContainerUtils);
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
var gBookmarkURL = "";
function Init()
{
var x;
gBookmarkURL = window.arguments[0];
// Initialize the properties panel by copying the values from the
// RDF graph into the fields on screen.
for (var i = 0; i < gFields.length; ++i) {
var field = document.getElementById(gFields[i]);
var value = Bookmarks.GetTarget(RDF.GetResource(gBookmarkURL),
RDF.GetResource(gProperties[i]),
true);
if (value)
value = value.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
if (value) //make sure were aren't stuffing null into any fields
field.value = value;
}
var propsWindow = document.getElementById("bmPropsWindow");
var nameNode = document.getElementById("name");
var title = propsWindow.getAttribute("title");
title = title.replace(/\*\*bm_title\*\*/gi, nameNode.value);
propsWindow.setAttribute("title", title);
// check bookmark schedule
value = Bookmarks.GetTarget(RDF.GetResource(gBookmarkURL),
RDF.GetResource("http://home.netscape.com/WEB-rdf#Schedule"),
true);
if (value) {
value = value.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
if (value) {
var values = value.split("|");
if (values.length == 4) {
// get day range
var days = values[0];
var dayNode = document.getElementById("dayRange");
var dayItems = dayNode.childNodes[0].childNodes;
for (x=0; x < dayItems.length; ++x) {
if (dayItems[x].getAttribute("value") == days) {
dayNode.selectedItem = dayItems[x];
break;
}
}
// get hour range
var hours = values[1].split("-");
var startHour = "";
var endHour = "";
if (hours.length == 2) {
startHour = hours[0];
endHour = hours[1];
}
// set start hour
var startHourNode = document.getElementById("startHourRange");
var startHourItems = startHourNode.childNodes[0].childNodes;
for (x=0; x < startHourItems.length; ++x) {
if (startHourItems[x].getAttribute("value") == startHour) {
startHourNode.selectedItem = startHourItems[x];
break;
}
}
// set end hour
var endHourNode = document.getElementById("endHourRange");
var endHourItems = endHourNode.childNodes[0].childNodes;
for (x=0; x < endHourItems.length; ++x) {
if (endHourItems[x].getAttribute("value") == endHour) {
endHourNode.selectedItem = endHourItems[x];
break;
}
}
// get duration
var duration = values[2];
var durationNode = document.getElementById("duration");
durationNode.value = duration;
// get notification method
var method = values[3];
if (method.indexOf("icon") >= 0)
document.getElementById("bookmarkIcon").checked = true;
if (method.indexOf("sound") >= 0)
document.getElementById("playSound").checked = true;
if (method.indexOf("alert") >= 0)
document.getElementById("showAlert").checked = true;
if (method.indexOf("open") >= 0)
document.getElementById("openWindow").checked = true;
}
}
}
// if its a container, disable some things
var isContainerFlag = RDFC.IsContainer(Bookmarks, RDF.GetResource(gBookmarkURL));
if (!isContainerFlag) {
// XXX To do: the "RDFC.IsContainer" call above only works for RDF sequences;
// if its not a RDF sequence, we should to more checking to see if
// the item in question is really a container of not. A good example
// of this is the "File System" container.
}
if (isContainerFlag) {
// If it is a folder, it has no URL or Keyword
document.getElementById("locationrow").setAttribute("hidden", "true");
document.getElementById("shortcutrow").setAttribute("hidden", "true");
}
if (gBookmarkURL.substr(0, 7).toLowerCase() != "http://" &&
gBookmarkURL.substr(0, 8).toLowerCase() != "https://") {
// only allow scheduling of http/https URLs
document.getElementById("ScheduleTab").setAttribute("hidden", "true");
document.getElementById("NotifyTab").setAttribute("hidden", "true");
}
sizeToContent();
// Set up the enabled of controls on the scheduling panels
dayRangeChange(document.getElementById("dayRange"));
// set initial focus
var name = document.getElementById("name");
name.focus();
name.select();
}
function Commit()
{
var changed = false;
// Grovel through the fields to see if any of the values have
// changed. If so, update the RDF graph and force them to be saved
// to disk.
for (var i = 0; i < gFields.length; ++i) {
var field = document.getElementById(gFields[i]);
if (field) {
// Get the new value as a literal, using 'null' if the value is empty.
var newvalue = field.value;
var oldvalue = Bookmarks.GetTarget(RDF.GetResource(gBookmarkURL),
RDF.GetResource(gProperties[i]),
true);
if (oldvalue)
oldvalue = oldvalue.QueryInterface(Components.interfaces.nsIRDFLiteral);
if (newvalue && gProperties[i] == (NC_NAMESPACE_URI + "ShortcutURL")) {
// shortcuts are always lowercased internally
newvalue = newvalue.toLowerCase();
}
else if (newvalue && gProperties[i] == (NC_NAMESPACE_URI + "URL")) {
// we're dealing with the URL attribute;
// if a scheme isn't specified, use "http://"
if (newvalue.indexOf(":") < 0)
newvalue = "http://" + newvalue;
}
if (newvalue)
newvalue = RDF.GetLiteral(newvalue);
if (updateAttribute(gProperties[i], oldvalue, newvalue)) {
// Update gBookmarkURL if the url changed
if (newvalue && gProperties[i] == NC_NAMESPACE_URI + "URL")
gBookmarkURL = newvalue.Value;
changed = true;
}
}
}
// Update bookmark schedule if necessary;
// if the tab was removed, just skip it
var scheduleTab = document.getElementById("ScheduleTab");
if (scheduleTab) {
var scheduleRes = "http://home.netscape.com/WEB-rdf#Schedule";
oldvalue = Bookmarks.GetTarget(RDF.GetResource(gBookmarkURL),
RDF.GetResource(scheduleRes), true);
newvalue = "";
var dayRangeNode = document.getElementById("dayRange");
var dayRange = dayRangeNode.selectedItem.getAttribute("value");
if (dayRange) {
var startHourRangeNode = document.getElementById("startHourRange");
var startHourRange = startHourRangeNode.selectedItem.getAttribute("value");
var endHourRangeNode = document.getElementById("endHourRange");
var endHourRange = endHourRangeNode.selectedItem.getAttribute("value");
if (parseInt(startHourRange) > parseInt(endHourRange)) {
var temp = startHourRange;
startHourRange = endHourRange;
endHourRange = temp;
}
var bookmarkBundle;
var duration = document.getElementById("duration").value;
if (!duration) {
bookmarkBundle = document.getElementById("bundle_bookmark");
alert (bookmarkBundle.getString("pleaseEnterADuration"));
return false;
}
var methods = [];
if (document.getElementById("bookmarkIcon").checked)
methods.push("icon");
if (document.getElementById("playSound").checked)
methods.push("sound");
if (document.getElementById("showAlert").checked)
methods.push("alert");
if (document.getElementById("openWindow").checked)
methods.push("open");
if (methods.length == 0) {
bookmarkBundle = document.getElementById("bundle_bookmark");
alert (bookmarkBundle.getString("pleaseSelectANotification"));
return false;
}
var method = methods.join(); // join string in array with ","
newvalue = dayRange + "|" + startHourRange + "-" + endHourRange + "|" + duration + "|" + method;
}
if (newvalue)
newvalue = RDF.GetLiteral(newvalue);
if (updateAttribute(scheduleRes, oldvalue, newvalue))
changed = true;
}
if (changed) {
var remote = Bookmarks.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
if (remote)
remote.Flush();
}
window.close();
return true;
}
function updateAttribute(prop, oldvalue, newvalue)
{
var changed = false;
if (prop && (oldvalue || newvalue) && oldvalue != newvalue) {
if (oldvalue && !newvalue) {
Bookmarks.Unassert(RDF.GetResource(gBookmarkURL),
RDF.GetResource(prop),
oldvalue);
}
else if (!oldvalue && newvalue) {
Bookmarks.Assert(RDF.GetResource(gBookmarkURL),
RDF.GetResource(prop),
newvalue,
true);
}
else /* if (oldvalue && newvalue) */ {
Bookmarks.Change(RDF.GetResource(gBookmarkURL),
RDF.GetResource(prop),
oldvalue,
newvalue);
}
changed = true;
}
return changed;
}
function setEndHourRange()
{
// Get the values of the start-time and end-time as ints
var startHourRangeNode = document.getElementById("startHourRange");
var startHourRange = startHourRangeNode.selectedItem.getAttribute("value");
var startHourRangeInt = parseInt(startHourRange);
var endHourRangeNode = document.getElementById("endHourRange");
var endHourRange = endHourRangeNode.selectedItem.getAttribute("value");
var endHourRangeInt = parseInt(endHourRange);
var endHourItemNode = endHourRangeNode.firstChild.firstChild;
var index = 0;
// disable all those end-times before the start-time
for (; index < startHourRangeInt; ++index) {
endHourItemNode.setAttribute("disabled", "true");
endHourItemNode = endHourItemNode.nextSibling;
}
// update the selected value if it's out of the allowed range
if (startHourRangeInt >= endHourRangeInt)
endHourRangeNode.selectedItem = endHourItemNode;
// make sure all the end-times after the start-time are enabled
for (; index < 24; ++index) {
endHourItemNode.removeAttribute("disabled");
endHourItemNode = endHourItemNode.nextSibling;
}
}
function dayRangeChange (aMenuList)
{
var controls = ["startHourRange", "endHourRange", "duration", "bookmarkIcon",
"showAlert", "openWindow", "playSound", "durationSubLabel",
"durationLabel", "startHourRangeLabel", "endHourRangeLabel"];
for (var i = 0; i < controls.length; ++i)
document.getElementById(controls[i]).disabled = !aMenuList.value;
}

View File

@@ -1,235 +0,0 @@
<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
-->
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/skin/bookmarks/bookmarks.css" type="text/css"?>
<!DOCTYPE window [
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
%brandDTD;
<!ENTITY % bmpropsDTD SYSTEM "chrome://communicator/locale/bookmarks/bm-props.dtd">
%bmpropsDTD;
]>
<dialog id="bmPropsWindow" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&bookmarks.windowtitle.label;"
onload="Init()" style="width: 30em;"
ondialogaccept="return Commit();">
<stringbundle id="bundle_bookmark" src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bm-props.js"/>
<keyset id="keyset"/>
<tabbox>
<tabs>
<tab label="&generalInfo.label;" accesskey="&generalInfo.accesskey;"/>
<tab id="ScheduleTab" label="&schedule.label;" accesskey="&schedule.accesskey;"/>
<tab id="NotifyTab" label="&notification.label;" accesskey="&notification.accesskey;"/>
</tabs>
<tabpanels>
<vbox>
<separator class="thin"/>
<hbox align="start">
<image class="message-icon"/>
<separator class="thin" orient="vertical"/>
<description flex="1">&generaldesc.label;</description>
</hbox>
<separator class="thin"/>
<vbox class="box-padded">
<grid>
<columns>
<column />
<column flex="1"/>
</columns>
<rows>
<row align="center">
<label value="&bookmarks.name.label;" control="name"/>
<textbox id="name"/>
</row>
<row id="locationrow" align="center">
<label value="&bookmarks.location.label;" control="url"/>
<textbox id="url" />
</row>
<row id="shortcutrow" align="center">
<label value="&bookmarks.shortcut.label;" control="shortcut"/>
<textbox id="shortcut" />
</row>
<row>
<label value="&bookmarks.description.label;" control="description"/>
<textbox multiline="true" wrap="virtual" id="description" flex="1"/>
</row>
</rows>
</grid>
<separator/>
</vbox>
</vbox>
<vbox>
<separator class="thin"/>
<hbox align="center">
<image id="schedule-icon"/>
<separator class="thin" orient="vertical"/>
<description flex="1">&schedule.description;</description>
</hbox>
<separator class="thin"/>
<hbox class="box-padded">
<spacer flex="1"/>
<groupbox>
<caption label="&checkforupdates.legend.label;"/>
<grid flex="1">
<columns>
<column/>
<column flex="1"/>
</columns>
<rows>
<row align="center">
<label value="&when.label;" control="dayRange"/>
<hbox>
<menulist id="dayRange" oncommand="dayRangeChange(this);">
<menupopup>
<menuitem value="" label="&checknever.label;"/>
<menuseparator />
<menuitem value="0123456" label="&checkeveryday.label;"/>
<menuitem value="12345" label="&checkweekdays.label;"/>
<menuitem value="06" label="&checkweekends.label;"/>
<menuitem value="1" label="&checkmondays.label;"/>
<menuitem value="2" label="&checktuesdays.label;"/>
<menuitem value="3" label="&checkwednesdays.label;"/>
<menuitem value="4" label="&checkthursdays.label;"/>
<menuitem value="5" label="&checkfridays.label;"/>
<menuitem value="6" label="&checksaturdays.label;"/>
<menuitem value="0" label="&checksundays.label;"/>
</menupopup>
</menulist>
</hbox>
</row>
<row align="center">
<label id="startHourRangeLabel"
value="&from.label;" control="startHourRange"/>
<hbox align="center">
<menulist id="startHourRange" oncommand="setEndHourRange()">
<menupopup>
<menuitem value="0" label="&midnight.label;"/>
<menuitem value="1" label="&AMone.label;"/>
<menuitem value="2" label="&AMtwo.label;"/>
<menuitem value="3" label="&AMthree.label;"/>
<menuitem value="4" label="&AMfour.label;"/>
<menuitem value="5" label="&AMfive.label;"/>
<menuitem value="6" label="&AMsix.label;"/>
<menuitem value="7" label="&AMseven.label;"/>
<menuitem value="8" label="&AMeight.label;"/>
<menuitem value="9" label="&AMnine.label;"/>
<menuitem value="10" label="&AMten.label;"/>
<menuitem value="11" label="&AMeleven.label;"/>
<menuitem value="12" label="&noon.label;"/>
<menuitem value="13" label="&PMone.label;"/>
<menuitem value="14" label="&PMtwo.label;"/>
<menuitem value="15" label="&PMthree.label;"/>
<menuitem value="16" label="&PMfour.label;"/>
<menuitem value="17" label="&PMfive.label;"/>
<menuitem value="18" label="&PMsix.label;"/>
<menuitem value="19" label="&PMseven.label;"/>
<menuitem value="20" label="&PMeight.label;"/>
<menuitem value="21" label="&PMnine.label;"/>
<menuitem value="22" label="&PMten.label;"/>
<menuitem value="23" label="&PMeleven.label;"/>
</menupopup>
</menulist>
<label id="endHourRangeLabel"
value="&to.label;" control="endHourRange"/>
<menulist id="endHourRange">
<menupopup onpopupshowing="setEndHourRange()">
<menuitem value="1" label="&AMone.label;"/>
<menuitem value="2" label="&AMtwo.label;"/>
<menuitem value="3" label="&AMthree.label;"/>
<menuitem value="4" label="&AMfour.label;"/>
<menuitem value="5" label="&AMfive.label;"/>
<menuitem value="6" label="&AMsix.label;"/>
<menuitem value="7" label="&AMseven.label;"/>
<menuitem value="8" label="&AMeight.label;"/>
<menuitem value="9" label="&AMnine.label;"/>
<menuitem value="10" label="&AMten.label;"/>
<menuitem value="11" label="&AMeleven.label;"/>
<menuitem value="12" label="&noon.label;"/>
<menuitem value="13" label="&PMone.label;"/>
<menuitem value="14" label="&PMtwo.label;"/>
<menuitem value="15" label="&PMthree.label;"/>
<menuitem value="16" label="&PMfour.label;"/>
<menuitem value="17" label="&PMfive.label;"/>
<menuitem value="18" label="&PMsix.label;"/>
<menuitem value="19" label="&PMseven.label;"/>
<menuitem value="20" label="&PMeight.label;"/>
<menuitem value="21" label="&PMnine.label;"/>
<menuitem value="22" label="&PMten.label;"/>
<menuitem value="23" label="&PMeleven.label;"/>
<menuitem value="24" label="&midnight.label;"/>
</menupopup>
</menulist>
</hbox>
</row>
<row align="center">
<label id="durationLabel"
value="&every.label;" control="duration"/>
<hbox align="center">
<textbox id="duration" size="4" value="60" />
<label id="durationSubLabel" value="&minutes.label;" />
</hbox>
</row>
</rows>
</grid>
<separator class="thin"/>
</groupbox>
<spacer flex="1"/>
</hbox>
</vbox>
<vbox>
<separator class="thin"/>
<hbox align="start">
<image id="notification-icon"/>
<separator class="thin" orient="vertical"/>
<description flex="1">&notification.description;</description>
</hbox>
<separator class="thin"/>
<hbox class="box-padded">
<spacer flex="1"/>
<groupbox>
<caption label="&notifications.legend.label;" />
<vbox align="start">
<checkbox id="bookmarkIcon" label="&notification.icon.label;" />
<checkbox id="showAlert" label="&notification.alert.label;" />
<checkbox id="openWindow" label="&notification.window.label;" />
<checkbox id="playSound" label="&notification.sound.label;" />
</vbox>
</groupbox>
<spacer flex="1"/>
</hbox>
</vbox>
</tabpanels>
</tabbox>
</dialog>

View File

@@ -1,854 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/*
This is the old bookmarks code, included here for the sake of the bookmarks sidebar panel,
which will be fixed to use my new code in .9. In the mean time, this file provides a
life line to various functionality.
*/
var NC_NS = "http://home.netscape.com/NC-rdf#";
var RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
function Init() {
var tree = document.getElementById("bookmarksTree");
tree.controllers.appendController(BookmarksController);
var children = document.getElementById('treechildren-bookmarks');
tree.selectItem(children.firstChild);
tree.focus();
RefreshSort();
}
var BookmarksController = {
supportsCommand: function(command)
{
switch(command)
{
case "cmd_undo":
case "cmd_redo":
return false;
case "cmd_cut":
case "cmd_copy":
case "cmd_paste":
case "cmd_delete":
case "cmd_selectAll":
return true;
default:
return false;
}
},
isCommandEnabled: function(command)
{
switch(command)
{
case "cmd_undo":
case "cmd_redo":
return false;
case "cmd_cut":
case "cmd_copy":
case "cmd_paste":
case "cmd_delete":
case "cmd_selectAll":
return true;
default:
return false;
}
},
doCommand: function(command)
{
switch(command)
{
case "cmd_undo":
case "cmd_redo":
break;
case "cmd_cut":
doCut();
break;
case "cmd_copy":
doCopy();
break;
case "cmd_paste":
doPaste();
break;
case "cmd_delete":
doDelete();
break;
case "cmd_selectAll":
doSelectAll();
break;
}
},
onEvent: function(event)
{
// On blur events set the menu item texts back to the normal values
/*if (event == 'blur' )
{
goSetMenuValue('cmd_undo', 'valueDefault');
goSetMenuValue('cmd_redo', 'valueDefault');
}*/
}
};
function CommandUpdate_Bookmarks()
{
//goUpdateCommand('button_delete');
// get selection info from dir pane
/*
var oneAddressBookSelected = false;
if ( dirTree && dirTree.selectedItems && (dirTree.selectedItems.length == 1) )
oneAddressBookSelected = true;
// get selection info from results pane
var selectedCards = GetSelectedAddresses();
var oneOrMoreCardsSelected = false;
if ( selectedCards )
oneOrMoreCardsSelected = true;
*/
// set commands to enabled / disabled
//goSetCommandEnabled('cmd_PrintCard', oneAddressBookSelected);
goSetCommandEnabled('bm_cmd_find', true/*oneAddressBookSelected*/);
}
function copySelectionToClipboard()
{
var treeNode = document.getElementById("bookmarksTree");
if (!treeNode) return false;
var select_list = treeNode.selectedItems;
if (!select_list) return false;
if (select_list.length < 1) return false;
var rdf_uri = "@mozilla.org/rdf/rdf-service;1"
var RDF = Components.classes[rdf_uri].getService();
RDF = RDF.QueryInterface(Components.interfaces.nsIRDFService);
if (!RDF) return false;
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
if (!Bookmarks) return false;
var nameRes = RDF.GetResource(NC_NS + "Name");
if (!nameRes) return false;
// Build a url that encodes all the select nodes
// as well as their parent nodes
var url = "";
var text = "";
var html = "";
for (var nodeIndex = 0; nodeIndex < select_list.length; nodeIndex++)
{
var node = select_list[nodeIndex];
if (!node) continue;
var ID = getAbsoluteID("bookmarksTree", node);
if (!ID) continue;
var IDRes = RDF.GetResource(ID);
if (!IDRes) continue;
var nameNode = Bookmarks.GetTarget(IDRes, nameRes, true);
var theName = "";
if (nameNode)
nameNode =
nameNode.QueryInterface(Components.interfaces.nsIRDFLiteral);
if (nameNode) theName = nameNode.Value;
url += "ID:{" + ID + "};";
url += "NAME:{" + theName + "};";
if (node.getAttribute("container") == "true")
{
var type = node.getAttribute("type");
if (type == NC_NS + "BookmarkSeparator")
{
// Note: can't encode separators in text, just html
html += "<hr><p>";
}
else
{
text += ID + "\r";
html += "<a href='" + ID + "'>";
if (theName != "")
{
html += theName;
}
html += "</a><p>";
}
}
}
if (url == "") return false;
// get some useful components
var trans_uri = "@mozilla.org/widget/transferable;1";
var trans = Components.classes[trans_uri].createInstance();
if (trans) trans = trans.QueryInterface(Components.interfaces.nsITransferable);
if (!trans) return false;
var clip_uri = "@mozilla.org/widget/clipboard;1";
var clip = Components.classes[clip_uri].getService();
if (clip) clip = clip.QueryInterface(Components.interfaces.nsIClipboard);
if (!clip) return false;
clip.emptyClipboard(Components.interfaces.nsIClipboard.kGlobalClipboard);
// save bookmark's ID
trans.addDataFlavor("moz/bookmarkclipboarditem");
var data_uri = "@mozilla.org/supports-wstring;1";
var data = Components.classes[data_uri].createInstance();
if (data) {
data = data.QueryInterface(Components.interfaces.nsISupportsWString);
}
if (!data) return false;
data.data = url;
// double byte data
trans.setTransferData("moz/bookmarkclipboarditem", data, url.length*2);
if (text != "")
{
trans.addDataFlavor("text/unicode");
var textData_uri = "@mozilla.org/supports-wstring;1";
var textData = Components.classes[textData_uri].createInstance();
if (textData) textData = textData.QueryInterface(Components.interfaces.nsISupportsWString);
if (!textData) return false;
textData.data = text;
// double byte data
trans.setTransferData("text/unicode", textData, text.length*2);
}
if (html != "")
{
trans.addDataFlavor("text/html");
var wstring_uri = "@mozilla.org/supports-wstring;1";
var htmlData = Components.classes[wstring_uri].createInstance();
if (htmlData) {
var wstring_interface = Components.interfaces.nsISupportsWString;
htmlData = htmlData.QueryInterface(wstring_interface);
}
if (!htmlData) return false;
htmlData.data = html;
// double byte data
trans.setTransferData("text/html", htmlData, html.length*2);
}
clip.setData(trans, null,
Components.interfaces.nsIClipboard.kGlobalClipboard);
return true;
}
function doCut()
{
if (copySelectionToClipboard() == true) {
doDelete(false);
}
return true;
}
function doCopy()
{
copySelectionToClipboard();
return true;
}
function doPaste()
{
var treeNode = document.getElementById("bookmarksTree");
if (!treeNode) return false;
var select_list = treeNode.selectedItems;
if (!select_list) return false;
if (select_list.length != 1) return false;
var pasteNodeID = select_list[0].getAttribute("id");
var isContainerFlag = (select_list[0].getAttribute("container") == "true");
var clip_uri = "@mozilla.org/widget/clipboard;1";
var clip = Components.classes[clip_uri].getService();
if (clip) clip = clip.QueryInterface(Components.interfaces.nsIClipboard);
if (!clip) return false;
var trans_uri = "@mozilla.org/widget/transferable;1";
var trans = Components.classes[trans_uri].createInstance();
if (trans) {
trans = trans.QueryInterface(Components.interfaces.nsITransferable);
}
if (!trans) return false;
trans.addDataFlavor("moz/bookmarkclipboarditem");
clip.getData(trans, Components.interfaces.nsIClipboard.kGlobalClipboard);
var data = new Object();
var dataLen = new Object();
trans.getTransferData("moz/bookmarkclipboarditem", data, dataLen);
if (data) {
var data_interface = Components.interfaces.nsISupportsWString
data = data.value.QueryInterface(data_interface);
}
var url = null;
// double byte data
if (data) url = data.data.substring(0, dataLen.value / 2);
if (!url) return false;
var strings = url.split(";");
if (!strings) return false;
var rdf_uri = "@mozilla.org/rdf/rdf-service;1";
var RDF = Components.classes[rdf_uri].getService();
RDF = RDF.QueryInterface(Components.interfaces.nsIRDFService);
if (!RDF) return false;
var rdfc_uri = "@mozilla.org/rdf/container;1";
var RDFC = Components.classes[rdfc_uri].getService();
RDFC = RDFC.QueryInterface(Components.interfaces.nsIRDFContainer);
if (!RDFC) return false;
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
if (!Bookmarks) return false;
var nameRes = RDF.GetResource(NC_NS + "Name");
if (!nameRes) return false;
pasteNodeRes = RDF.GetResource(pasteNodeID);
if (!pasteNodeRes) return false;
var pasteContainerRes = null;
var pasteNodeIndex = -1;
if (isContainerFlag == true)
{
pasteContainerRes = pasteNodeRes;
}
else
{
var parID = select_list[0].parentNode.parentNode.getAttribute("ref");
if (!parID) {
parID = select_list[0].parentNode.parentNode.getAttribute("id");
}
if (!parID) return false;
pasteContainerRes = RDF.GetResource(parID);
if (!pasteContainerRes) return false;
}
RDFC.Init(Bookmarks, pasteContainerRes);
if (isContainerFlag == false)
{
pasteNodeIndex = RDFC.IndexOf(pasteNodeRes);
if (pasteNodeIndex < 0) return false; // how did that happen?
}
var typeRes = RDF.GetResource(RDF_NS + "type");
if (!typeRes) return false;
var bmTypeRes = RDF.GetResource(NC_NS + "Bookmark");
if (!bmTypeRes) return false;
var dirty = false;
for (var x=0; x<strings.length; x=x+2)
{
var theID = strings[x];
var theName = strings[x+1];
if ((theID.indexOf("ID:{") == 0) && (theName.indexOf("NAME:{") == 0))
{
theID = theID.substr(4, theID.length-5);
theName = theName.substr(6, theName.length-7);
var IDRes = RDF.GetResource(theID);
if (!IDRes) continue;
if (RDFC.IndexOf(IDRes) > 0)
continue;
if (theName != "")
{
var NameLiteral = RDF.GetLiteral(theName);
if (NameLiteral)
{
Bookmarks.Assert(IDRes, nameRes, NameLiteral, true);
dirty = true;
}
}
if (isContainerFlag == true)
RDFC.AppendElement(IDRes);
else
RDFC.InsertElementAt(IDRes, pasteNodeIndex++, true);
dirty = true;
// make sure appropriate bookmark type is set
var bmTypeNode = Bookmarks.GetTarget( IDRes, typeRes, true );
if (!bmTypeNode)
{
// set default bookmark type
Bookmarks.Assert(IDRes, typeRes, bmTypeRes, true);
}
}
}
if (dirty == true)
{
var rdf_ds_interface = Components.interfaces.nsIRDFRemoteDataSource;
var remote = Bookmarks.QueryInterface(rdf_ds_interface);
if (remote)
remote.Flush();
}
return true;
}
function doDelete(promptFlag)
{
var treeNode = document.getElementById("bookmarksTree");
if (!treeNode) return false;
var select_list = treeNode.selectedItems;
if (!select_list) return false;
if (select_list.length < 1) return false;
if (promptFlag == true)
{
var deleteStr = '';
if (select_list.length == 1) {
deleteStr = get_localized_string("DeleteItem");
} else {
deleteStr = get_localized_string("DeleteItems");
}
var ok = confirm(deleteStr);
if (!ok) return false;
}
var RDF_uri = "@mozilla.org/rdf/rdf-service;1";
var RDF = Components.classes[RDF_uri].getService();
RDF = RDF.QueryInterface(Components.interfaces.nsIRDFService);
if (!RDF) return false;
var RDFC_uri = "@mozilla.org/rdf/container;1";
var RDFC = Components.classes[RDFC_uri].getService();
RDFC = RDFC.QueryInterface(Components.interfaces.nsIRDFContainer);
if (!RDFC) return false;
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
if (!Bookmarks) return false;
var dirty = false;
// note: backwards delete so that we handle odd deletion cases such as
// deleting a child of a folder as well as the folder itself
for (var nodeIndex=select_list.length-1; nodeIndex>=0; nodeIndex--)
{
var node = select_list[nodeIndex];
if (!node) continue;
var ID = node.getAttribute("id");
if (!ID) continue;
// don't allow deletion of various "special" folders
if ((ID == "NC:BookmarksRoot") || (ID == "NC:IEFavoritesRoot"))
{
continue;
}
var parentID = node.parentNode.parentNode.getAttribute("ref");
if (!parentID) parentID = node.parentNode.parentNode.getAttribute("id");
if (!parentID) continue;
var IDRes = RDF.GetResource(ID);
if (!IDRes) continue;
var parentIDRes = RDF.GetResource(parentID);
if (!parentIDRes) continue;
RDFC.Init(Bookmarks, parentIDRes);
RDFC.RemoveElement(IDRes, true);
dirty = true;
}
if (dirty == true)
{
var remote = Bookmarks.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
if (remote)
remote.Flush();
}
return true;
}
function doSelectAll()
{
var treeNode = document.getElementById("bookmarksTree");
if (!treeNode) return false;
treeNode.selectAll();
return true;
}
function doUnload()
{
// Get the current window position/size.
var x = window.screenX;
var y = window.screenY;
var h = window.outerHeight;
var w = window.outerWidth;
// Store these into the window attributes (for persistence).
var win = document.getElementById("bookmark-window");
win.setAttribute("x", x);
win.setAttribute("y", y);
win.setAttribute("height", h);
win.setAttribute("width", w);
}
function BookmarkProperties()
{
var treeNode = document.getElementById('bookmarksTree');
var select_list = treeNode.selectedItems;
if (select_list.length >= 1) {
// don't bother showing properties on bookmark separators
var type = select_list[0].getAttribute('type');
if (type != NC_NS + "BookmarkSeparator") {
window.openDialog("chrome://communicator/content/bookmarks/bm-props.xul",
"_blank", "centerscreen,chrome,menubar",
select_list[0].getAttribute("id"));
}
}
return true;
}
function OpenBookmarksFind()
{
window.openDialog("chrome://communicator/content/bookmarks/bm-find.xul",
"FindBookmarksWindow",
"dialog=no,close,chrome,resizable", "bookmarks");
return true;
}
function getAbsoluteID(root, node)
{
var url = node.getAttribute("ref");
if ((url == null) || (url == ""))
{
url = node.getAttribute("id");
}
try
{
var rootNode = document.getElementById(root);
var ds = null;
if (rootNode)
{
ds = rootNode.database;
}
// add support for anonymous resources such as Internet Search results,
// IE favorites under Win32, and NetPositive URLs under BeOS
var rdf_uri = "@mozilla.org/rdf/rdf-service;1";
var rdf = Components.classes[rdf_uri].getService();
if (rdf) rdf = rdf.QueryInterface(Components.interfaces.nsIRDFService);
if (rdf && ds)
{
var src = rdf.GetResource(url, true);
var prop = rdf.GetResource(NC_NS + "URL",
true);
var target = ds.GetTarget(src, prop, true);
if (target) target = target.QueryInterface(Components.interfaces.nsIRDFLiteral);
if (target) target = target.Value;
if (target) url = target;
}
}
catch(ex)
{
}
return url;
}
function OpenURL(event, node, root)
{
if ((event.button != 0) || (event.detail != 2)
|| (node.nodeName != "treeitem"))
return false;
if (node.getAttribute("container") == "true")
return false;
var url = getAbsoluteID(root, node);
// Ignore "NC:" urls.
if (url.substring(0, 3) == "NC:")
return false;
if (event.altKey)
{
BookmarkProperties();
}
else
{
// get right sized window
window.openDialog(getBrowserURL(), "_blank", "chrome,all,dialog=no", url);
}
return true;
}
const nsIFilePicker = Components.interfaces.nsIFilePicker;
function doContextCmd(cmdName)
{
// Do some prompting/confirmation for various bookmark
// commands that we know about.
// If we have values to pass it, they are added to the arguments array
var nameVal = "";
var urlVal = "";
var promptStr;
var picker_uri;
var filePicker;
if (cmdName == NC_NS + "command?cmd=newbookmark")
{
while (true)
{
promptStr = get_localized_string("NewBookmarkURLPrompt");
urlVal = prompt(promptStr, "");
if (!urlVal || urlVal=="") return false;
// ensure we get a fully qualified URL (protocol colon address)
var colonOffset = urlVal.indexOf(":");
if (colonOffset > 0) break;
alert(get_localized_string("NeedValidURL"));
}
promptStr = get_localized_string("NewBookmarkNamePrompt");
nameVal = prompt(promptStr, "");
if (!nameVal || nameVal=="") return false;
}
else if (cmdName == NC_NS + "command?cmd=newfolder")
{
promptStr = get_localized_string("NewFolderNamePrompt");
nameVal = prompt(promptStr, "");
if (!nameVal || nameVal=="") return false;
}
else if ((cmdName == NC_NS + "command?cmd=deletebookmark") ||
(cmdName == NC_NS + "command?cmd=deletebookmarkfolder") ||
(cmdName == NC_NS + "command?cmd=deletebookmarkseparator"))
{
return doDelete(true);
//var promptStr = get_localized_string("DeleteItems");
//if (!confirm(promptStr)) return false;
}
else if (cmdName == NC_NS + "command?cmd=import")
{
try
{
picker_uri = "@mozilla.org/filepicker;1";
filePicker = Components.classes[picker_uri].createInstance(nsIFilePicker);
if (!filePicker) return false;
promptStr = get_localized_string("SelectImport");
filePicker.init(window, promptStr, nsIFilePicker.modeOpen);
filePicker.appendFilters(nsIFilePicker.filterHTML | nsIFilePicker.filterAll);
if (filePicker.show() != nsIFilePicker.returnCancel)
var filename = filePicker.fileURL.spec;
if ((!filename) || (filename == "")) return false;
urlVal = filename;
}
catch(ex)
{
return false;
}
}
else if (cmdName == NC_NS + "command?cmd=export")
{
try
{
picker_uri = "@mozilla.org/filepicker;1";
filePicker = Components.classes[picker_uri].createInstance(nsIFilePicker);
if (!filePicker) return false;
promptStr = get_localized_string("EnterExport");
filePicker.init(window, promptStr, nsIFilePicker.modeSave);
filePicker.defaultString = "bookmarks.html";
filePicker.appendFilters(nsIFilePicker.filterHTML | nsIFilePicker.filterAll);
if (filePicker.show() != nsIFilePicker.returnCancel &&
filePicker.fileURL.spec &&
filePicker.fileURL.spec.length > 0) {
urlVal = filePicker.fileURL.spec;
} else {
return false;
}
}
catch(ex)
{
return false;
}
}
var treeNode = document.getElementById("bookmarksTree");
if (!treeNode) return false;
var db = treeNode.database;
if (!db) return false;
var compositeDB = db.QueryInterface(Components.interfaces.nsIRDFDataSource);
if (!compositeDB) return false;
var isupports_uri = "@mozilla.org/rdf/rdf-service;1";
var isupports = Components.classes[isupports_uri].getService();
if (!isupports) return false;
var rdf = isupports.QueryInterface(Components.interfaces.nsIRDFService);
if (!rdf) return false;
// need a resource for the command
var cmdResource = rdf.GetResource(cmdName);
if (!cmdResource) return false;
cmdResource = cmdResource.QueryInterface(Components.interfaces.nsIRDFResource);
if (!cmdResource) return false;
// set up selection nsISupportsArray
var selection_uri = "@mozilla.org/supports-array;1";
var selectionInstance = Components.classes[selection_uri].createInstance();
var selectionArray = selectionInstance.QueryInterface(Components.interfaces.nsISupportsArray);
// set up arguments nsISupportsArray
var arguments_uri = "@mozilla.org/supports-array;1";
var argumentsInstance = Components.classes[arguments_uri].createInstance();
var argumentsArray = argumentsInstance.QueryInterface(Components.interfaces.nsISupportsArray);
// get various arguments (parent, name)
var parentArc = rdf.GetResource(NC_NS + "parent");
if (!parentArc) return false;
var nameArc = rdf.GetResource(NC_NS + "Name");
if (!nameArc) return false;
var urlArc = rdf.GetResource(NC_NS + "URL");
if (!urlArc) return false;
var select_list = treeNode.selectedItems;
var uri;
var rdfNode;
if (select_list.length < 1)
{
// if nothing is selected, default to using the "ref"
// on the root of the tree
uri = treeNode.getAttribute("ref");
if (!uri || uri=="") return false;
rdfNode = rdf.GetResource(uri);
// add node into selection array
if (rdfNode)
{
selectionArray.AppendElement(rdfNode);
}
// add singular arguments into arguments array
if ((nameVal) && (nameVal != ""))
{
var nameLiteral = rdf.GetLiteral(nameVal);
if (!nameLiteral) return false;
argumentsArray.AppendElement(nameArc);
argumentsArray.AppendElement(nameLiteral);
}
if ((urlVal) && (urlVal != ""))
{
var urlLiteral = rdf.GetLiteral(urlVal);
if (!urlLiteral) return false;
argumentsArray.AppendElement(urlArc);
argumentsArray.AppendElement(urlLiteral);
}
}
else for (var nodeIndex=0; nodeIndex<select_list.length; nodeIndex++)
{
var node = select_list[nodeIndex];
if (!node) break;
uri = node.getAttribute("ref");
if ((uri) || (uri == ""))
{
uri = node.getAttribute("id");
}
if (!uri) return false;
rdfNode = rdf.GetResource(uri);
if (!rdfNode) break;
// add node into selection array
selectionArray.AppendElement(rdfNode);
// get the parent's URI
var parentURI = "";
var theParent = node.parentNode.parentNode;
parentURI = theParent.getAttribute("ref");
if ((!parentURI) || (parentURI == ""))
{
parentURI = theParent.getAttribute("id");
}
if (parentURI == "") return false;
var parentNode = rdf.GetResource(parentURI, true);
if (!parentNode) return false;
// add multiple arguments into arguments array
argumentsArray.AppendElement(parentArc);
argumentsArray.AppendElement(parentNode);
if ((nameVal) && (nameVal != ""))
{
var nameLiteral2 = rdf.GetLiteral(nameVal);
if (!nameLiteral2) return false;
argumentsArray.AppendElement(nameArc);
argumentsArray.AppendElement(nameLiteral2);
}
if ((urlVal) && (urlVal != ""))
{
var urlLiteral2 = rdf.GetLiteral(urlVal);
if (!urlLiteral2) return false;
argumentsArray.AppendElement(urlArc);
argumentsArray.AppendElement(urlLiteral2);
}
}
// do the command
compositeDB.DoCommand(selectionArray, cmdResource, argumentsArray);
return true;
}
function bookmarkSelect()
{
var tree = document.getElementById("bookmarksTree");
var status = document.getElementById("statusbar-text");
var val = "";
if (tree.selectedItems.length == 1)
{
val = getAbsoluteID("bookmarksTree", tree.selectedItems[0]);
// Ignore "NC:" urls.
if (val.substring(0, 3) == "NC:")
{
val = "";
}
}
status.label = val;
return true;
}

View File

@@ -1,14 +0,0 @@
bookmarks-tree, bookmarks-tree[type="multi-column"]
{
-moz-binding : url("chrome://communicator/content/bookmarks/bookmarks.xml#bookmarks-tree-full");
}
bookmarks-tree[type="single-column"]
{
-moz-binding : url("chrome://communicator/content/bookmarks/bookmarks.xml#bookmarks-tree-name");
}
bookmarks-tree[type="folders"]
{
-moz-binding : url("chrome://communicator/content/bookmarks/bookmarks.xml#bookmarks-tree-folders");
}

View File

@@ -1,219 +0,0 @@
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author, v3.0)
*/
////////////////////////////////////////////////////////////////////////////////
// Initialize the command controllers, set focus, tree root,
// window title state, etc.
function Startup()
{
const windowNode = document.getElementById("bookmark-window");
const bookmarksView = document.getElementById("bookmarks-view");
var titleString;
// If we've been opened with a parameter, root the tree on it.
if ("arguments" in window && window.arguments[0]) {
var title;
var uri = window.arguments[0];
bookmarksView.tree.setAttribute("ref", uri);
if (uri.substring(0,5) == "find:") {
title = bookmarksView._bundle.GetStringFromName("search_results_title");
// Update the windowtype so that future searches are directed
// there and the window is not re-used for bookmarks.
windowNode.setAttribute("windowtype", "bookmarks:searchresults");
}
else {
const krNameArc = bookmarksView.rdf.GetResource(NC_NS + "Name");
const krRoot = bookmarksView.rdf.GetResource(window.arguments[0]);
var rName = bookmarksView.db.GetTarget(krRoot, krNameArc, true);
title = rName.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
}
titleString = bookmarksView._bundle.GetStringFromName("window_title");
titleString = titleString.replace(/%folder_name%/gi, title);
windowNode.setAttribute("title", titleString);
}
else {
const kProfileContractID = "@mozilla.org/profile/manager;1";
const kProfileIID = Components.interfaces.nsIProfile;
const kProfile = Components.classes[kProfileContractID].getService(kProfileIID);
var length = {value:0};
var profileList = kProfile.getProfileList(length);
// unset the default BM title if the user has more than one profile
// or if he/she has changed the name of the default one.
// the profile "default" is not localizable.
if (length.value > 1 || kProfile.currentProfile.toLowerCase() != "default") {
titleString = bookmarksView._bundle.GetStringFromName("bookmarks_root");
titleString = titleString.replace(/%user_name%/, kProfile.currentProfile);
windowNode.setAttribute("title", titleString);
}
}
bookmarksView.treeBoxObject.selection.select(0);
bookmarksView.tree.focus();
}
function Shutdown ()
{
// Store current window position and size in window attributes (for persistence).
var win = document.getElementById("bookmark-window");
win.setAttribute("x", screenX);
win.setAttribute("y", screenY);
win.setAttribute("height", outerHeight);
win.setAttribute("width", outerWidth);
var bookmarksView = document.getElementById("bookmarks-view");
bookmarksView.flushBMDatasource();
}
var gConstructedViewMenuSortItems = false;
function fillViewMenu(aEvent)
{
var adjacentElement = document.getElementById("fill-before-this-node");
var popupElement = aEvent.target;
var bookmarksView = document.getElementById("bookmarks-view");
var columns = bookmarksView.columns;
if (!gConstructedViewMenuSortItems) {
for (var i = 0; i < columns.length; ++i) {
var name = columns[i].name;
var accesskey = columns[i].accesskey;
var menuitem = document.createElement("menuitem");
var nameTemplate = bookmarksView._bundle.GetStringFromName("SortMenuItem");
name = nameTemplate.replace(/%NAME%/g, columns[i].label);
menuitem.setAttribute("label", name);
menuitem.setAttribute("accesskey", columns[i].accesskey);
menuitem.setAttribute("resource", columns[i].resource);
menuitem.setAttribute("id", "sortMenuItem:" + columns[i].resource);
menuitem.setAttribute("checked", columns[i].sortActive);
menuitem.setAttribute("name", "sortSet");
menuitem.setAttribute("type", "radio");
popupElement.insertBefore(menuitem, adjacentElement);
}
gConstructedViewMenuSortItems = true;
}
const kPrefSvcContractID = "@mozilla.org/preferences;1";
const kPrefSvcIID = Components.interfaces.nsIPrefService;
var prefSvc = Components.classes[kPrefSvcContractID].getService(kPrefSvcIID);
var bookmarksSortPrefs = prefSvc.getBranch("browser.bookmarks.sort.");
if (gConstructedViewMenuSortItems) {
var resource = bookmarksSortPrefs.getCharPref("resource");
var element = document.getElementById("sortMenuItem:" + resource);
if (element)
element.setAttribute("checked", "true");
}
var sortAscendingMenu = document.getElementById("ascending");
var sortDescendingMenu = document.getElementById("descending");
var noSortMenu = document.getElementById("natural");
sortAscendingMenu.setAttribute("checked", "false");
sortDescendingMenu.setAttribute("checked", "false");
noSortMenu.setAttribute("checked", "false");
var direction = bookmarksSortPrefs.getCharPref("direction");
if (direction == "natural")
sortAscendingMenu.setAttribute("checked", "true");
else if (direction == "ascending")
sortDescendingMenu.setAttribute("checked", "true");
else
noSortMenu.setAttribute("checked", "true");
}
function onViewMenuSortItemSelected(aEvent)
{
var resource = aEvent.target.getAttribute("resource");
const kPrefSvcContractID = "@mozilla.org/preferences;1";
const kPrefSvcIID = Components.interfaces.nsIPrefService;
var prefSvc = Components.classes[kPrefSvcContractID].getService(kPrefSvcIID);
var bookmarksSortPrefs = prefSvc.getBranch("browser.bookmarks.sort.");
switch (resource) {
case "":
break;
case "direction":
var dirn = bookmarksSortPrefs.getCharPref("direction");
if (aEvent.target.id == "ascending")
bookmarksSortPrefs.setCharPref("direction", "natural");
else if (aEvent.target.id == "descending")
bookmarksSortPrefs.setCharPref("direction", "ascending");
else
bookmarksSortPrefs.setCharPref("direction", "descending");
break;
default:
bookmarksSortPrefs.setCharPref("resource", resource);
var direction = bookmarksSortPrefs.getCharPref("direction");
if (direction == "descending")
bookmarksSortPrefs.setCharPref("direction", "natural");
break;
}
aEvent.preventCapture();
}
var gConstructedColumnsMenuItems = false;
function fillColumnsMenu(aEvent)
{
var bookmarksView = document.getElementById("bookmarks-view");
var columns = bookmarksView.columns;
var i;
if (!gConstructedColumnsMenuItems) {
for (i = 0; i < columns.length; ++i) {
var menuitem = document.createElement("menuitem");
menuitem.setAttribute("label", columns[i].label);
menuitem.setAttribute("resource", columns[i].resource);
menuitem.setAttribute("id", "columnMenuItem:" + columns[i].resource);
menuitem.setAttribute("type", "checkbox");
menuitem.setAttribute("checked", columns[i].hidden != "true");
aEvent.target.appendChild(menuitem);
}
gConstructedColumnsMenuItems = true;
}
else {
for (i = 0; i < columns.length; ++i) {
var element = document.getElementById("columnMenuItem:" + columns[i].resource);
if (element && columns[i].hidden != "true")
element.setAttribute("checked", "true");
}
}
aEvent.preventBubble();
}
function onViewMenuColumnItemSelected(aEvent)
{
var resource = aEvent.target.getAttribute("resource");
if (resource != "") {
var bookmarksView = document.getElementById("bookmarks-view");
bookmarksView.toggleColumnVisibility(resource);
}
aEvent.preventBubble();
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,252 +0,0 @@
<?xml version="1.0"?>
<!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com>
Blake Ross <blakeross@telocity.com>
Dean Tessman <dean_tessman@hotmail.com>
-->
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/skin/bookmarks/bookmarksWindow.css" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/content/bookmarks/bookmarks.css" type="text/css"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/bookmarks/bookmarksOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/tasksOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/communicatorOverlay.xul"?>
<!DOCTYPE window [
<!ENTITY % utilDTD SYSTEM "chrome://communicator/locale/utilityOverlay.dtd" >
%utilDTD;
<!ENTITY % bmDTD SYSTEM "chrome://communicator/locale/bookmarks/bookmarks.dtd">
%bmDTD;
]>
<window id="bookmark-window" windowtype="bookmarks:manager"
title="&bookmarksWindowTitle.label;"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:web="http://home.netscape.com/WEB-rdf#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
width="630" height="400" screenX="20" screenY="20"
persist="width height screenX screenY sizemode"
onload="Startup();" onunload="Shutdown();">
<!-- The order of loading of these script files is IMPORTANT -->
<!-- Shared Libraries -->
<script type="application/x-javascript" src="chrome://global/content/strres.js"></script>
<!-- XXX - This should SO become an XBL widget -->
<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"></script>
<!-- Shared Bookmarks Utility Library -->
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
<!-- Tree-based Bookmarks UI Utility Library -->
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksTree.js"/>
<!-- Bookmarks Window -->
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarks.js"/>
<!-- Bookmarks Window Drag & Drop -->
<script type="application/x-javascript" src="chrome://global/content/nsDragAndDrop.js"/>
<script type="application/x-javascript" src="chrome://global/content/nsTransferable.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksDD.js"/>
<popupset id="bookmarksPopupset"/>
<commands id="commands">
<commandset id="CommandUpdate_Bookmarks"
commandupdater="true"
events="focus,tree-select"
oncommandupdate="document.getElementById('bookmarks-view').onCommandUpdate();">
</commandset>
<commandset id="tasksCommands"/>
<!-- File Menu -->
<command id="cmd_close" oncommand="close()"/>
<command id="cmd_quit"/>
<!-- Edit Menu -->
<command id="cmd_undo"/>
</commands>
<stringbundleset id="stringbundleset"/>
<keyset id="tasksKeys">
<!-- File Menu -->
<key id="key_close"/>
<key id="key_quit"/>
<!-- Edit Menu -->
<key id="key_undo"/>
<!-- These keybindings do not have a command specified in the overlay,
which is good, but we need to specify it ourselves here -->
<key id="key_cut" command="cmd_bm_cut"/>
<key id="key_copy" command="cmd_bm_copy"/>
<key id="key_paste" command="cmd_bm_paste"/>
<key id="key_selectAll" command="cmd_bm_selectAll"/>
<!-- We need to provide our own delete key binding because the key_delete
handler in platformGlobalOverlay.xul maps command to "cmd_delete" which
is NOT what we want! -->
<key id="key_bm_delete" keycode="VK_DELETE" command="cmd_bm_delete"/>
<key id="bm_key_find"
key="&edit.find.keybinding;"
command="cmd_bm_find" modifiers="accel"/>
<key id="bm_key_properties"
key="&edit.properties.keybinding;"
command="cmd_bm_properties" modifiers="accel"/>
</keyset>
<toolbox id="bookmarks-toolbox">
<menubar id="main-menubar" grippytooltiptext="&menuBar.tooltip;">
<menu id="menu_File">
<menupopup id="menu_FilePopup">
<menu id="menu_New">
<menupopup>
<menuitem label="&menuitem.newBookmark.label;"
accesskey="&command.newBookmark.accesskey;"
observes="cmd_bm_newbookmark"/>
<menuitem label="&menuitem.newFolder.label;"
accesskey="&command.newFolder.accesskey;"
observes="cmd_bm_newfolder"/>
<menuitem label="&menuitem.newSeparator.label;"
accesskey="&command.newSeparator.accesskey;"
observes="cmd_bm_newseparator"/>
</menupopup>
</menu>
<menuitem id="menu_close"/>
</menupopup>
</menu>
<menu id="menu_Edit">
<menupopup>
<menuitem id="menu_undo" disabled="true"/>
<menuseparator/>
<menuitem id="menu_bm_cut"
label="&cutCmd.label;" accesskey="&cutCmd.accesskey;"
key="key_cut" command="cmd_bm_cut"/>
<menuitem id="menu_bm_copy"
label="&copyCmd.label;" accesskey="&copyCmd.accesskey;"
key="key_copy" command="cmd_bm_copy"/>
<menuitem id="menu_bm_paste"
label="&pasteCmd.label;" accesskey="&pasteCmd.accesskey;"
key="key_paste" command="cmd_bm_paste"/>
<menuitem id="menu_bm_delete"
label="&deleteCmd.label;" accesskey="&deleteCmd.label;"
key="key_bm_delete" command="cmd_bm_delete"/>
<menuseparator/>
<menuitem id="menu_bm_selectAll"
label="&selectAllCmd.label;" accesskey="&selectAllCmd.accesskey;"
key="key_selectAll" command="cmd_bm_selectAll"/>
<menuseparator/>
<menuitem label="&command.fileBookmark.label;"
accesskey="&command.fileBookmark.accesskey;"
command="cmd_bm_fileBookmark"/>
<menuseparator/>
<menuitem observes="cmd_bm_properties" key="bm_key_properties"
label="&command.properties.label;"
accesskey="&command.properties.accesskey;" />
</menupopup>
</menu>
<menu id="menu_View">
<menupopup onpopupshowing="fillViewMenu(event)"
oncommand="onViewMenuSortItemSelected(event);">
<menuitem id="viewCommandToolbar" type="checkbox" class="menuitem-iconic"
label="&menuitem.view.command.toolbar.label;"
accesskey="&menuitem.view.command.toolbar.accesskey;"
oncommand="goToggleToolbar('command-toolbar', 'viewCommandToolbar'); event.preventBubble();"
persist="checked"/>
<menuseparator id="fill-after-this-node"/>
<menuitem id="natural" label="&menuitem.view.unsorted.label;"
accesskey="&menuitem.view.unsorted.accesskey;"
type="radio"
resource="direction" name="sortSet"/>
<menuseparator id="fill-before-this-node"/>
<menuitem id="ascending" label="&menuitem.view.ascending.label;"
accesskey="&menuitem.view.ascending.accesskey;"
type="radio"
resource="direction" name="sortDirectionSet"/>
<menuitem id="descending" label="&menuitem.view.descending.label;"
accesskey="&menuitem.view.descending.accesskey;"
type="radio"
resource="direction" name="sortDirectionSet"/>
<menuseparator/>
<menu id="descending" label="&menuitem.view.show_columns.label;"
accesskey="&menuitem.view.show_columns.accesskey;">
<menupopup id="columnsPopup" onpopupshowing="fillColumnsMenu(event);"
oncommand="onViewMenuColumnItemSelected(event);"/>
</menu>
<menuseparator/>
<menuitem label="&menuitem.newbookmarkfolder.label;"
command="cmd_bm_setnewbookmarkfolder"
accesskey="&menuitem.newbookmarkfolder.accesskey;"/>
<menuitem label="&menuitem.newinternetsearchfolder.label;"
command="cmd_bm_setnewsearchfolder"
accesskey="&menuitem.newinternetsearchfolder.accesskey;"/>
<menuitem label="&menuitem.personaltoolbarfolder.label;"
command="cmd_bm_setpersonaltoolbarfolder"
accesskey="&menuitem.personaltoolbarfolder.accesskey;"/>
</menupopup>
</menu>
<menu id="tasksMenu">
<menupopup id="taskPopup">
<menuitem command="cmd_bm_find" key="bm_key_find"
label="&menuitem.find.label;"
accesskey="&menuitem.find.accesskey;"/>
<menuitem label="&menuitem.import.label;"
accesskey="&menuitem.import.accesskey;"
observes="cmd_bm_import"/>
<menuitem label="&menuitem.export.label;"
accesskey="&menuitem.export.accesskey;"
observes="cmd_bm_export"/>
<menuseparator/>
</menupopup>
</menu>
<menu id="windowMenu"/>
<menu id="menu_Help"/>
</menubar>
<toolbar id="command-toolbar" tbalign="stretch" grippytooltiptext="&bookmarkToolbar.tooltip;">
<toolbarbutton id="newfolder" label="&button.newFolder.label;"
command="cmd_bm_newfolder"/>
<toolbarbutton id="newseparator" label="&button.newSeparator.label;"
command="cmd_bm_newseparator"/>
<toolbarseparator/>
<toolbarbutton id="fileBookmark" label="&command.fileBookmark.label;"
command="cmd_bm_fileBookmark"/>
<toolbarseparator/>
<toolbarbutton id="properties" label="&command.properties.label;"
command="cmd_bm_properties"/>
<toolbarbutton id="rename" label="&command.rename.label;"
command="cmd_bm_rename"/>
<toolbarbutton id="delete" label="&command.delete.label;"
command="cmd_bm_delete"/>
</toolbar>
</toolbox>
<bookmarks-tree id="bookmarks-view" flex="1"/>
</window>

View File

@@ -1,508 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/*
This is the old bookmarks code, included here for the sake of the bookmarks sidebar panel,
which will be fixed to use my new code in .9. In the mean time, this file provides a
life line to various functionality.
*/
var NC_NS = "http://home.netscape.com/NC-rdf#";
var RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
function TopLevelDrag ( event )
{
return(true);
}
function BeginDragTree ( event )
{
//XXX we rely on a capturer to already have determined which item the mouse was over
//XXX and have set an attribute.
// if the click is on the tree proper, ignore it. We only care about clicks on items.
var tree = document.getElementById("bookmarksTree");
if ( event.target == tree || event.target.localName == "treechildren" )
return(true); // continue propagating the event
var childWithDatabase = tree;
if ( ! childWithDatabase )
return(false);
var dragStarted = false;
var trans =
Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interfaces.nsITransferable);
if ( !trans ) return(false);
var genData =
Components.classes["@mozilla.org/supports-wstring;1"].createInstance(Components.interfaces.nsISupportsWString);
if (!genData) return(false);
var genDataURL =
Components.classes["@mozilla.org/supports-wstring;1"].createInstance(Components.interfaces.nsISupportsWString);
if (!genDataURL) return(false);
trans.addDataFlavor("text/unicode");
trans.addDataFlavor("moz/rdfitem");
// ref/id (url) is on the <treeitem> which is two levels above the <treecell> which is
// the target of the event.
var id = event.target.parentNode.parentNode.getAttribute("ref");
if (!id || id=="")
{
id = event.target.parentNode.parentNode.getAttribute("id");
}
var parentID = event.target.parentNode.parentNode.parentNode.parentNode.getAttribute("ref");
if (!parentID || parentID == "")
{
parentID = event.target.parentNode.parentNode.parentNode.parentNode.getAttribute("id");
}
var trueID = id;
if (parentID != null)
{
trueID += "\n" + parentID;
}
genData.data = trueID;
genDataURL.data = id;
var database = childWithDatabase.database;
var rdf =
Components.classes["@mozilla.org/rdf/rdf-service;1"].getService(Components.interfaces.nsIRDFService);
if ((!rdf) || (!database)) { dump("CAN'T GET DATABASE\n"); return(false); }
// make sure its a bookmark, bookmark separator, or bookmark folder
var src = rdf.GetResource(id, true);
var prop = rdf.GetResource(RDF_NS + "type", true);
var target = database.GetTarget(src, prop, true);
if (target) target = target.QueryInterface(Components.interfaces.nsIRDFResource);
if (target) target = target.Value;
if ((!target) || (target == "")) {dump("BAD\n"); return(false);}
if ((target != NC_NS + "BookmarkSeparator") &&
(target != NC_NS + "Bookmark") &&
(target != NC_NS + "Folder")) return(false);
trans.setTransferData ( "moz/rdfitem", genData, genData.data.length * 2); // double byte data
trans.setTransferData ( "text/unicode", genDataURL, genDataURL.data.length * 2); // double byte data
var transArray =
Components.classes["@mozilla.org/supports-array;1"].createInstance(Components.interfaces.nsISupportsArray);
if ( !transArray ) return(false);
// put it into the transferable as an |nsISupports|
var genTrans = trans.QueryInterface(Components.interfaces.nsISupports);
transArray.AppendElement(genTrans);
var dragService =
Components.classes["@mozilla.org/widget/dragservice;1"].getService(Components.interfaces.nsIDragService);
if ( !dragService ) return(false);
var nsIDragService = Components.interfaces.nsIDragService;
dragService.invokeDragSession ( event.target, transArray, null, nsIDragService.DRAGDROP_ACTION_COPY +
nsIDragService.DRAGDROP_ACTION_MOVE );
dragStarted = true;
return(!dragStarted);
}
function DragOverTree ( event )
{
var validFlavor = false;
var dragSession = null;
var retVal = true;
var dragService =
Components.classes["@mozilla.org/widget/dragservice;1"].getService(Components.interfaces.nsIDragService);
if ( !dragService ) return(false);
dragSession = dragService.getCurrentSession();
if ( !dragSession ) return(false);
if ( dragSession.isDataFlavorSupported("moz/rdfitem") ) validFlavor = true;
else if ( dragSession.isDataFlavorSupported("text/unicode") ) validFlavor = true;
//XXX other flavors here...
// touch the attribute on the rowgroup to trigger the repaint with the drop feedback.
if ( validFlavor )
{
var treeRoot = document.getElementById("bookmarksTree");
if (!treeRoot) return(false);
var treeDatabase = treeRoot.database;
if (!treeDatabase) return(false);
//XXX this is really slow and likes to refresh N times per second.
var rowGroup = event.target.parentNode.parentNode;
var sortActive = treeRoot.getAttribute("sortActive");
if (sortActive == "true")
rowGroup.setAttribute ( "dd-triggerrepaintsorted", 0 );
else
rowGroup.setAttribute ( "dd-triggerrepaint", 0 );
dragSession.canDrop = true;
// necessary??
retVal = false;
}
return(retVal);
}
function DropOnTree ( event )
{
var treeRoot = document.getElementById("bookmarksTree");
if (!treeRoot) return(false);
var treeDatabase = treeRoot.database;
if (!treeDatabase) return(false);
// for beta1, don't allow D&D if sorting is active
var sortActive = treeRoot.getAttribute("sortActive");
if (sortActive == "true")
{
dump("Sorry, drag&drop is currently disabled when sorting is active.\n");
return(false);
}
var RDF =
Components.classes["@mozilla.org/rdf/rdf-service;1"].getService(Components.interfaces.nsIRDFService);
if (!RDF) return(false);
var RDFC =
Components.classes["@mozilla.org/rdf/container;1"].getService(Components.interfaces.nsIRDFContainer);
if (!RDFC) return(false);
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
if (!Bookmarks) return(false);
// target is the <treecell>, and "ref/id" is on the <treeitem> two levels above
var treeItem = event.target.parentNode.parentNode;
if (!treeItem) return(false);
// get drop hint attributes
var dropBefore = treeItem.getAttribute("dd-droplocation");
var dropOn = treeItem.getAttribute("dd-dropon");
// calculate drop action
var dropAction;
if (dropBefore == "true") dropAction = "before";
else if (dropOn == "true") dropAction = "on";
else dropAction = "after";
// calculate parent container node
var containerItem = treeItem;
if (dropAction != "on")
{
containerItem = treeItem.parentNode.parentNode;
}
// magical fix for bug # 33546: handle dropping after open container
if (treeItem.getAttribute("container") == "true")
{
if (treeItem.getAttribute("open") == "true")
{
if (dropAction == "after")
{
dropAction = "before";
containerItem = treeItem;
// find <treechildren>, drop before first child
var treeChildren = treeItem;
treeItem = null;
for (var x = 0; x < treeChildren.childNodes.length; x++)
{
if (treeChildren.childNodes[x].tagName == "treechildren")
{
treeItem = treeChildren.childNodes[x].childNodes[0];
break;
}
}
if (!treeItem)
{
dropAction = "on";
containerItem = treeItem.parentNode.parentNode;
}
}
}
}
var targetID = getAbsoluteID("bookmarksTree", treeItem);
if (!targetID) return(false);
var targetNode = RDF.GetResource(targetID, true);
if (!targetNode) return(false);
var containerID = getAbsoluteID("bookmarksTree", containerItem);
if (!containerID) return(false);
var containerNode = RDF.GetResource(containerID);
if (!containerNode) return(false);
var dragService =
Components.classes["@mozilla.org/widget/dragservice;1"].getService(Components.interfaces.nsIDragService);
if ( !dragService ) return(false);
var dragSession = dragService.getCurrentSession();
if ( !dragSession ) return(false);
var trans =
Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interfaces.nsITransferable);
if ( !trans ) return(false);
trans.addDataFlavor("moz/rdfitem");
trans.addDataFlavor("text/x-moz-url");
trans.addDataFlavor("text/unicode");
var typeRes = RDF.GetResource(RDF_NS + "type");
if (!typeRes) return false;
var bmTypeRes = RDF.GetResource(NC_NS + "Bookmark");
if (!bmTypeRes) return false;
var dirty = false;
for ( var i = 0; i < dragSession.numDropItems; ++i )
{
dragSession.getData ( trans, i );
var dataObj = new Object();
var bestFlavor = new Object();
var len = new Object();
trans.getAnyTransferData ( bestFlavor, dataObj, len );
if ( dataObj ) dataObj = dataObj.value.QueryInterface(Components.interfaces.nsISupportsWString);
if ( !dataObj ) continue;
var sourceID = null;
var parentID = null;
var checkNameHack = false;
var name=null;
if (bestFlavor.value == "moz/rdfitem")
{
// pull the URL out of the data object
var data = dataObj.data.substring(0, len.value / 2);
// moz/rdfitem allows parent ID specified on next line; check for it
var cr = data.indexOf("\n");
if (cr >= 0)
{
sourceID = data.substr(0, cr);
parentID = data.substr(cr+1);
}
else
{
sourceID = data;
}
}
else if (bestFlavor.value == "text/x-moz-url")
{
// pull the URL out of the data object
data = dataObj.data.substring(0, len.value / 2);
sourceID = data;
// we may need to synthesize a name (just use the URL)
checkNameHack = true;
}
else if (bestFlavor.value == "text/unicode")
{
sourceID = dataObj.data;
// we may need to synthesize a name (just use the URL)
checkNameHack = true;
}
else
{
// unknown flavor, skip
continue;
}
// pull the (optional) name out of the URL
var separator = sourceID.indexOf("\n");
if (separator >= 0)
{
name = sourceID.substr(separator+1);
sourceID = sourceID.substr(0, separator);
}
var sourceNode = RDF.GetResource(sourceID, true);
if (!sourceNode) continue;
var parentNode = null;
if (parentID != null)
{
parentNode = RDF.GetResource(parentID, true);
}
// Prevent dropping of a node before, after, or on itself
if (sourceNode == targetNode) continue;
// Prevent dropping of a node onto its parent container
if ((dropAction == "on") && (containerID) && (containerID == parentID)) continue;
RDFC.Init(Bookmarks, containerNode);
// make sure appropriate bookmark type is set
var bmTypeNode = Bookmarks.GetTarget( sourceNode, typeRes, true );
if (!bmTypeNode)
{
// set default bookmark type
Bookmarks.Assert(sourceNode, typeRes, bmTypeRes, true);
}
if ((dropAction == "before") || (dropAction == "after"))
{
// drop before or after
var nodeIndex;
nodeIndex = RDFC.IndexOf(sourceNode);
if (nodeIndex >= 1)
{
// moving a node around inside of the container
// so remove, then re-add the node
RDFC.RemoveElementAt(nodeIndex, true, sourceNode);
}
nodeIndex = RDFC.IndexOf(targetNode);
if (nodeIndex < 1) return(false);
if (dropAction == "after") ++nodeIndex;
RDFC.InsertElementAt(sourceNode, nodeIndex, true);
// select the newly added node
if (parentID)
{
selectDroppedItems(treeRoot, containerID, sourceID);
}
dirty = true;
}
else
{
// drop on
RDFC.AppendElement(sourceNode);
// select the newly added node
if (parentID)
{
selectDroppedItems(treeRoot, containerID, sourceID);
}
dirty = true;
}
if ((checkNameHack == true) || (name != null))
{
var srcArc = RDF.GetResource(sourceID, true);
var propArc = RDF.GetResource(NC_NS + "Name", true);
if (srcArc && propArc && Bookmarks)
{
var targetArc = Bookmarks.GetTarget(srcArc, propArc, true);
if (!targetArc)
{
// if no name, fallback to using the URL as the name
var defaultNameArc = RDF.GetLiteral((name != null && name != "") ? name : sourceID);
if (defaultNameArc)
{
Bookmarks.Assert(srcArc, propArc, defaultNameArc, true);
}
}
}
}
}
// should we move the node? (i.e. take it out of the source container?)
if ((parentNode != null) && (containerNode != parentNode))
{
try
{
RDFC.Init(Bookmarks, parentNode);
nodeIndex = RDFC.IndexOf(sourceNode);
if (nodeIndex >= 1)
{
RDFC.RemoveElementAt(nodeIndex, true, sourceNode);
}
}
catch(ex)
{
}
}
if (dirty == true)
{
var remote = Bookmarks.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
if (remote)
{
remote.Flush();
}
}
return(false);
}
function selectDroppedItems(treeRoot, containerID, targetID)
{
var select_list = treeRoot.getElementsByAttribute("id", targetID);
for (var x=0; x<select_list.length; x++)
{
var node = select_list[x];
if (!node) continue;
var parent = node.parentNode.parentNode;
if (!parent) continue;
var id = parent.getAttribute("ref");
if (!id || id=="")
{
id = parent.getAttribute("id");
}
if (!id || id=="") continue;
if (id == containerID)
{
treeRoot.selectItem(node);
break;
}
}
}

View File

@@ -1,397 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author, v2.0)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
var NC_NS = "http://home.netscape.com/NC-rdf#";
var RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
var gSpringLoadTracker = {
timeout: 0,
element: null,
open: function (aRDFNode)
{
if (this.element)
this.element.setAttribute("open", "true");
clearTimeout(this.timeout);
}
};
var bookmarksDNDObserver = {
_RDF: null,
get RDF ()
{
if (!this._RDF) {
const kRDFContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFIID = Components.interfaces.nsIRDFService;
this._RDF = Components.classes[kRDFContractID].getService(kRDFIID);
}
return this._RDF;
},
// XXX I belong somewhere shared.
getResource: function(aString)
{
return this.RDF.GetResource(aString, true);
},
getTarget: function(aDS, aSourceID, aPropertyID)
{
var source = this.getResource(aSourceID);
var property = this.getResource(aPropertyID);
return aDS.GetTarget(source, property, true);
},
onDragStart: function (aEvent, aXferData, aDragAction)
{
var bookmarksTree = document.getElementById("bookmarksTree");
if (aEvent.target == bookmarksTree || aEvent.target.localName == "treechildren" ||
aEvent.target.localName == "splitter" || aEvent.target.localName == "menu")
throw Components.results.NS_OK; // not a draggable item.
if (aEvent.target.parentNode && aEvent.target.parentNode.parentNode &&
aEvent.target.parentNode.parentNode.localName == "treehead")
throw Components.results.NS_OK; // don't drag treehead cells.
if (bookmarksTree.getAttribute("sortActive") == "true")
throw Components.results.NS_OK;
var selItems = null;
if (bookmarksTree.selectedItems.length <= 0)
selItems = [aEvent.target.parentNode.parentNode];
else
selItems = bookmarksTree.selectedItems;
aXferData.data = new TransferDataSet();
for (var i = 0; i < selItems.length; ++i) {
var currItem = selItems[i];
var currURI = NODE_ID(currItem);
var parentItem = currItem.parentNode.parentNode;
var parentURI = NODE_ID(parentItem);
var type = this.getTarget(bookmarksTree.database, currURI, RDF_NS + "type");
type = type.QueryInterface(Components.interfaces.nsIRDFResource).Value;
if (!type || (type != (NC_NS + "BookmarkSeparator") &&
type != (NC_NS + "Bookmark") &&
type != (NC_NS + "Folder")))
throw Components.results.NS_OK;
var name = this.getTarget(bookmarksTree.database, currURI, NC_NS + "Name");
var data = new TransferData();
if (name) {
name = name.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
data.addDataForFlavour("text/x-moz-url", currURI + "\n" + name);
}
else {
data.addDataForFlavour("text/x-moz-url", currURI);
}
data.addDataForFlavour("moz/rdfitem", currURI + "\n" + parentURI);
data.addDataForFlavour("text/unicode", currURI);
aXferData.data.push(data);
}
if (aEvent.ctrlKey) {
const kDSIID = Components.interfaces.nsIDragService;
aDragAction.action = kDSIID.DRAGDROP_ACTION_COPY + kDSIID.DRAGDROP_ACTION_LINK;
}
},
onDragOver: function (aEvent, aFlavour, aDragSession)
{
var bookmarksTree = document.getElementById("bookmarksTree");
var rowGroup = aEvent.target.parentNode.parentNode;
if (rowGroup)
rowGroup.setAttribute("dd-triggerrepaint" +
(bookmarksTree.getAttribute("sortActive") == "true" ? "sorted" : ""), 0);
var rdfNode = gBookmarksShell.findRDFNode(aEvent.target, true);
var rdfParent = rdfNode.parentNode.parentNode;
var isContainer = false;
if (rdfParent && rdfParent.getAttribute("container") == "true") {
var rDragOverContainer = this.RDF.GetResource(NODE_ID(rdfParent));
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
const kRDFCUtilsContractID = "@mozilla.org/rdf/container-utils;1";
const kRDFCUtilsIID = Components.interfaces.nsIRDFContainerUtils;
const kRDFCUtils = Components.classes[kRDFCUtilsContractID].getService(kRDFCUtilsIID);
isContainer = kRDFCUtils.IsContainer(kBMDS, rDragOverContainer);
}
if (!isContainer || rowGroup.id == "headRow") {
// Not a container, or dropping onto something that isn't designed to take drops
// (e.g. the tree header)
aDragSession.canDrop = false;
return;
}
// Springloaded folders.
/* XXX - not yet.
if (rdfNode && rdfNode.getAttribute("container") == "true" &&
rdfNode.getAttribute("open") != "true") {
if (!gSpringLoadTracker.element || gSpringLoadTracker.element.id != rdfNode.id) {
// XXX - this is not good enough. We need to keep track of nesting and close up
// folders after the user has dragged out of them otherwise we end up with
// everything open and a big mess!
if (gSpringLoadTracker.timeout)
clearTimeout(gSpringLoadTracker.timeout);
gSpringLoadTracker.element = rdfNode;
gSpringLoadTracker.timeout = setTimeout("gSpringLoadTracker.open()", 100);
}
}
*/
},
_flavourSet: null,
getSupportedFlavours: function ()
{
if (!this._flavourSet) {
this._flavourSet = new FlavourSet();
this._flavourSet.appendFlavour("moz/rdfitem");
this._flavourSet.appendFlavour("text/x-moz-url");
this._flavourSet.appendFlavour("text/unicode");
}
return this._flavourSet;
},
canHandleMultipleItems: true,
onDrop: function (aEvent, aXferData, aDragSession)
{
var bookmarksTree = document.getElementById("bookmarksTree");
// XXX lame
if (bookmarksTree.getAttribute("sortActive") == "true") return;
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFIID = Components.interfaces.nsIRDFContainer;
var RDFC = Components.classes[kRDFCContractID].getService(kRDFIID);
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
var dropItem = aEvent.target.parentNode.parentNode;
if (aEvent.target.localName == "treechildren")
dropItem = aEvent.target.parentNode; // handle drop on blank space.
// In the default view, the root node is the NC root, and we don't want to append
// to that. Adjust accordingly...
if (NODE_ID(dropItem) == "NC:NavCenter")
dropItem = document.getElementById("treechildren-bookmarks").firstChild;
// Don't allow drops on the header row & prevent catastrophe
if (dropItem.id == "headRow" || !dropItem) return;
// XXX we could probably compute this ourselves, but let the tree do this
// automagically for now.
var dropBefore = dropItem.getAttribute("dd-droplocation");
var dropOn = dropItem.getAttribute("dd-dropon");
var dropAction = dropBefore == "true" ? "before" : dropOn == "true" ? "on" : "after";
if (aEvent.target.localName == "treechildren")
dropAction = "on"; // handle drop on blank space.
var containerItem = dropAction == "on" ? dropItem : dropItem.parentNode.parentNode;
// XXX magical fix for bug # 33546: handle dropping after open container
if (dropItem.getAttribute("container") && dropItem.getAttribute("open") &&
dropAction == "after") {
dropAction = "before";
containerItem = dropItem;
dropItem = null;
for (var i = 0; i < containerItem.childNodes.length; ++i) {
if (containerItem.childNodes[i].localName == "treechildren") {
dropItem = containerItem.childNodes[i].firstChild;
break;
}
}
if (!dropItem) {
dropAction = "on";
dropItem = containerItem.parentNode.parentNode;
}
}
var rTarget = this.getResource(NODE_ID(dropItem));
var rContainer = this.getResource(NODE_ID(containerItem));
const kRDFCUtilsContractID = "@mozilla.org/rdf/container-utils;1";
const kRDFCUtilsIID = Components.interfaces.nsIRDFContainerUtils;
const kRDFCUtils = Components.classes[kRDFCUtilsContractID].getService(kRDFCUtilsIID);
var isContainer = kRDFCUtils.IsContainer(kBMDS, rContainer);
// XXX
var rType = this.getResource(RDF_NS + "type");
var rBookmark = this.getResource(NC_NS + "Bookmark");
var dirty = false;
var additiveFlag = false;
var numObjects = aXferData.dataList.length;
/*
if (numObjects > 1) {
var bo = bookmarksTree.boxObject.QueryInterface(Components.interfaces.nsITreeBoxObject);
bo.beginBatch();
}
*/
var sourceID = [], parentID = [], nameRequired = [], name = [];
var flavourData;
for (i = 0; i < numObjects; ++i) {
flavourData = aXferData.dataList[i].first;
nameRequired[i] = false;
name[i] = null;
var data = flavourData.data;
switch (flavourData.flavour.contentType) {
case "moz/rdfitem":
var ix = data.indexOf("\n");
sourceID[i] = ix >= 0 ? (parentID[i] = data.substr(ix+1), data.substr(0, ix)) : data;
break;
case "text/x-moz-url":
ix = data.indexOf("\n");
sourceID[i] = ix >= 0 ? (name[i] = data.substr(ix+1), data.substr(0, ix)) : data;
break;
case "text/unicode":
sourceID[i] = data;
nameRequired[i] = true;
break;
default:
continue;
}
var rSource = this.getResource(sourceID[i]);
var rParent = parentID[i] ? this.getResource(parentID[i]) : null;
// Prevent dropping node on itself, before or after itself, on its parent
// container, or a weird situation when an open container is dropped into
// itself (which results in data loss!).
// Also prevent dropping into a folder that isn't actually a container
// (and is thus probably a pseudo-container from an aggregated datasource,
// see bug 68656 fir details).
if (rSource == rTarget || (dropAction == "on" && rContainer == rParent) ||
rContainer == rSource || !isContainer)
return;
// Prevent dropping node into one of its own subfolders
var dropItem2 = dropItem;
do {
var targetAncestor = NODE_ID(dropItem2);
dropItem2 = dropItem2.parentNode;
} while (targetAncestor != "NC:BookmarksRoot" && targetAncestor != sourceID[i]);
if (targetAncestor == sourceID[i]) {
return;
}
}
for (i = 0; i < numObjects; ++i) {
flavourData = aXferData.dataList[i].first;
rSource = this.getResource(sourceID[i]);
rParent = parentID[i] ? this.getResource(parentID[i]) : null;
// XXX if any of the following fails, the nodes are gone for good!
const kDSIID = Components.interfaces.nsIDragService;
const kCopyAction = kDSIID.DRAGDROP_ACTION_COPY + kDSIID.DRAGDROP_ACTION_LINK;
if (rParent) {
if (!(aDragSession.dragAction & kCopyAction)) {
try {
RDFC.Init(kBMDS, rParent);
ix = RDFC.IndexOf(rSource);
if (ix >= 1)
RDFC.RemoveElementAt(ix, true);
}
catch (ex) { }
}
}
RDFC.Init(kBMDS, rContainer);
// If this item already exists in this container, don't paste, as
// this will result in the creation of multiple copies in the datasource
// but will not result in an update of the UI. (In Short: we don't
// handle multiple bookmarks well)
ix = RDFC.IndexOf(rSource);
if (ix != -1)
continue;
var bmType = this.getTarget(bookmarksTree.database, sourceID[i], RDF_NS + "type");
if (!bmType)
kBMDS.Assert(rSource, rType, rBookmark, true);
if (bmType == NC_NS + "Folder") {
// If we're going to copy a folder type, we need to clone the folder
// rather than just asserting the new node as a child of the drop folder.
if (aDragSession.dragAction & kCopyAction)
rSource = BookmarksUtils.cloneFolder(rSource, rContainer, rTarget);
}
if (dropAction == "before" || dropAction == "after") {
var dropIx = RDFC.IndexOf(rTarget);
RDFC.InsertElementAt(rSource, dropAction == "after" ? ++dropIx : dropIx, true);
}
else
RDFC.AppendElement(rSource); // drop on
dirty = true;
if (rParent) {
gBookmarksShell.selectFolderItem(rContainer.Value, sourceID[i], additiveFlag);
if (!additiveFlag) additiveFlag = true;
}
// If a name is supplied, we want to assert this information into the
// graph. E.g. user drags an internet shortcut to the app, we want to
// preserve not only the URL but the name of the shortcut. The other case
// where we need to assert a name is when the node does not already exist
// in the graph, in this case we'll just use the URL as the name.
if (name[i] || nameRequired[i]) {
var currentName = this.getTarget(bookmarksTree.database, sourceID[i], NC_NS + "Name");
if (!currentName) {
var rDefaultName = this.RDF.GetLiteral(name[i] || sourceID[i]);
if (rDefaultName) {
var rName = this.RDF.GetResource(NC_NS + "Name");
kBMDS.Assert(rSource, rName, rDefaultName, true);
}
}
}
}
/*
if (numObjects > 1) {
var bo = bookmarksTree.boxObject.QueryInterface(Components.interfaces.nsITreeBoxObject);
bo.endBatch();
}
*/
if (dirty) {
var remoteDS = kBMDS.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
remoteDS.Flush();
}
}
}

View File

@@ -1,954 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
var NC_NS = "http://home.netscape.com/NC-rdf#";
var RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
const NC_NS_CMD = NC_NS + "command?cmd=";
/**
* XXX - 04/16/01
* ACK! massive command name collision problems are causing big issues
* in getting this stuff to work in the Navigator window. For sanity's
* sake, we need to rename all the commands to be of the form cmd_bm_*
* otherwise there'll continue to be problems. For now, we're just
* renaming those that affect the personal toolbar (edit operations,
* which were clashing with the textfield controller)
*
* There are also several places that need to be updated if you need
* to change a command name.
* 1) the controller in ALL clients (bookmarksTree.js, personalToolbar.js)
* 2) the command nodes in the overlay
* 3) the command human-readable name key in bookmark.properties
* 4) the function 'getAllCmds' in bookmarksOverlay.js
* 5) the function 'execCommand' in bookmarksOverlay.js
* Yes, this blows crusty dead goats through straws, and I should probably
* create some constants somewhere to bring this number down to 3.
* However, if you fail to do one of these, you WILL break something
* and I WILL come after you with a knife.
*/
function LITERAL (aDB, aElement, aPropertyID)
{
var RDF = BookmarksUIElement.prototype.RDF;
var rSource = RDF.GetResource(aElement.id);
var rProperty = RDF.GetResource(aPropertyID);
var node = aDB.GetTarget(rSource, rProperty, true);
return node ? node.QueryInterface(Components.interfaces.nsIRDFLiteral).Value : "";
}
function BookmarksUIElement () { }
BookmarksUIElement.prototype = {
_rdf: null,
get RDF ()
{
if (!this._rdf) {
const kRDFContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFIID = Components.interfaces.nsIRDFService;
this._rdf = Components.classes[kRDFContractID].getService(kRDFIID);
}
return this._rdf;
},
propertySet: function (sourceID, propertyID, newValue)
{
if (!newValue) return;
const kRDFContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFIID = Components.interfaces.nsIRDFService;
const kRDF = Components.classes[kRDFContractID].getService(kRDFIID);
// need to shuffle this into an API.
const kBMDS = kRDF.GetDataSource("rdf:bookmarks");
const krProperty = kRDF.GetResource(propertyID);
const krItem = kRDF.GetResource(sourceID);
var rCurrValue = kBMDS.GetTarget(krItem, krProperty, true);
const krNewValue = kRDF.GetLiteral(newValue);
if (!rCurrValue)
kBMDS.Assert(krItem, krProperty, krNewValue, true);
else {
rCurrValue = rCurrValue.QueryInterface(Components.interfaces.nsIRDFLiteral);
if (rCurrValue.Value != newValue)
kBMDS.Change(krItem, krProperty, rCurrValue, krNewValue);
}
},
/////////////////////////////////////////////////////////////////////////////
// Fill a context menu popup with menuitems that are appropriate for the current
// selection.
createContextMenu: function (aEvent)
{
var popup = aEvent.target;
// clear out the old context menu contents (if any)
while (popup.hasChildNodes())
popup.removeChild(popup.firstChild);
var popupNode = document.popupNode;
if (!("findRDFNode" in this))
throw "Clients must implement findRDFNode!";
var itemNode = this.findRDFNode(popupNode, true);
if (!itemNode || !itemNode.getAttributeNS(RDF_NS, "type") || itemNode.getAttribute("mode") == "edit") {
aEvent.preventDefault();
return;
}
if (!("getContextSelection" in this))
throw "Clients must implement getContextSelection!";
var selection = this.getContextSelection (itemNode);
var commonCommands = [];
for (var i = 0; i < selection.length; ++i) {
var commands = this.getAllCmds(selection[i].id);
if (!commands) {
aEvent.preventDefault();
return;
}
commands = this.flattenEnumerator(commands);
if (!commonCommands.length) commonCommands = commands;
commonCommands = this.findCommonNodes(commands, commonCommands);
}
if (!commonCommands.length) {
aEvent.preventDefault();
return;
}
// Now that we should have generated a list of commands that is valid
// for the entire selection, build a context menu.
for (i = 0; i < commonCommands.length; ++i) {
const kXULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var currCommand = commonCommands[i].QueryInterface(Components.interfaces.nsIRDFResource).Value;
var element = null;
if (currCommand != NC_NS_CMD + "bm_separator") {
var commandName = this.getCommandName(currCommand);
element = this.createMenuItem(commandName, currCommand, itemNode);
}
else if (i != 0 && i < commonCommands.length-1) {
// Never append a separator as the first or last element in a context
// menu.
element = document.createElementNS(kXULNS, "menuseparator");
}
if (element)
popup.appendChild(element);
}
return;
},
/////////////////////////////////////////////////////////////////////////////
// Given two unique arrays, return an array that contains only the elements
// common to both.
findCommonNodes: function (aNewArray, aOldArray)
{
var common = [];
for (var i = 0; i < aNewArray.length; ++i) {
for (var j = 0; j < aOldArray.length; ++j) {
if (common.length > 0 && common[common.length-1] == aNewArray[i])
continue;
if (aNewArray[i] == aOldArray[j])
common.push(aNewArray[i]);
}
}
return common;
},
flattenEnumerator: function (aEnumerator)
{
if ("_index" in aEnumerator)
return aEnumerator._inner;
var temp = [];
while (aEnumerator.hasMoreElements())
temp.push(aEnumerator.getNext());
return temp;
},
/////////////////////////////////////////////////////////////////////////////
// For a given URI (a unique identifier of a resource in the graph) return
// an enumeration of applicable commands for that URI.
getAllCmds: function (aNodeID)
{
var type = this.resolveType(aNodeID);
if (!type) {
if (aNodeID == "NC:PersonalToolbarFolder" || aNodeID == "NC:BookmarksRoot")
type = "http://home.netscape.com/NC-rdf#Folder";
else
return null;
}
var commands = [];
// menu order:
//
// bm_open
// bm_openfolder
// bm_openinnewwindow
// /* bm_openinnewtab not yet supported */
// ---------------------
// /* bm_find removed */
// bm_newfolder
// ---------------------
// bm_cut
// bm_copy
// bm_paste
// bm_fileBookmark
// ---------------------
// bm_delete
// bm_rename
// ---------------------
// bm_properties
switch (type) {
case "http://home.netscape.com/NC-rdf#BookmarkSeparator":
commands = ["bm_newfolder", "bm_separator",
"bm_cut", "bm_copy", "bm_paste", "bm_separator",
"bm_delete"];
break;
case "http://home.netscape.com/NC-rdf#Bookmark":
commands = ["bm_open", "bm_openinnewwindow", /* "bm_openinnewtab", */ "bm_separator",
"bm_newfolder", "bm_separator",
"bm_cut", "bm_copy", "bm_paste", "bm_fileBookmark", "bm_separator",
"bm_delete", "bm_rename", "bm_separator",
"bm_properties"];
break;
case "http://home.netscape.com/NC-rdf#Folder":
commands = ["bm_openfolder", "bm_openinnewwindow", "bm_separator",
"bm_newfolder", "bm_separator",
"bm_cut", "bm_copy", "bm_paste", "bm_fileBookmark", "bm_separator",
"bm_delete", "bm_rename", "bm_separator",
"bm_properties"];
break;
case "http://home.netscape.com/NC-rdf#IEFavoriteFolder":
commands = ["bm_openfolder", "bm_separator",
"bm_delete"];
break;
case "http://home.netscape.com/NC-rdf#IEFavorite":
commands = ["bm_open", "bm_openinnewwindow", /* "bm_openinnewtab", */ "bm_separator",
"bm_copy"];
break;
case "http://home.netscape.com/NC-rdf#FileSystemObject":
commands = ["bm_open", "bm_openinnewwindow", /* "bm_openinnewtab", */ "bm_separator",
"bm_copy"];
break;
default:
var source = this.RDF.GetResource(aNodeID);
return this.db.GetAllCmds(source);
}
return new CommandArrayEnumerator(commands);
},
/////////////////////////////////////////////////////////////////////////////
// Retrieve the human-readable name for a particular command. Used when
// manufacturing a UI to invoke commands.
getCommandName: function (aCommand)
{
var cmdName = aCommand.substring(NC_NS_CMD.length);
try {
// Note: this will succeed only if there's a string in the bookmarks
// string bundle for this command name. Otherwise, <xul:stringbundle/>
// will throw, we'll catch & stifle the error, and look up the command
// name in the datasource.
return this.getLocaleString ("cmd_" + cmdName);
}
catch (e) {
}
// XXX - WORK TO DO HERE! (rjc will cry if we don't fix this)
// need to ask the ds for the commands for this node, however we don't
// have the right params. This is kind of a problem.
dump("*** BAD! EVIL! WICKED! NO! ACK! ARGH! ORGH!\n");
const rName = this.RDF.GetResource(NC_NS + "Name");
const rSource = this.RDF.GetResource(aNodeID);
return this.db.GetTarget(rSource, rName, true).Value;
},
/////////////////////////////////////////////////////////////////////////////
// Perform a command based on a UI event. XXX - work to do here.
preExecCommand: function (aEvent)
{
var commandID = aEvent.target.getAttribute("cmd");
if (!commandID) return;
goDoCommand("cmd_" + commandID.substring(NC_NS_CMD.length));
},
execCommand: function (aCommandID)
{
var args = [];
var selection = this.getSelection ();
if (selection.length >= 1)
var selectedItem = selection[0];
switch (aCommandID) {
case "bm_open":
this.open(null, selectedItem, false);
break;
case "bm_openfolder":
this.commands.openFolder(selectedItem);
break;
case "bm_openinnewwindow":
if (this.resolveType(selectedItem.id) == NC_NS + "Folder")
this.openFolderInNewWindow(selectedItem);
else
this.open(null, selectedItem, true);
break;
case "bm_rename":
// XXX - this is SO going to break if we ever do column re-ordering.
this.commands.editCell(selectedItem, 0);
break;
case "bm_editurl":
this.commands.editCell(selectedItem, 1);
break;
case "bm_setnewbookmarkfolder":
case "bm_setpersonaltoolbarfolder":
case "bm_setnewsearchfolder":
BookmarksUtils.doBookmarksCommand(selectedItem.id, NC_NS_CMD + aCommandID, args);
// XXX - The containing node seems to be closed here and the
// focus/selection is destroyed.
this.selectElement(selectedItem);
break;
case "bm_properties":
this.showPropertiesForNode(selectedItem);
break;
case "bm_find":
this.findInBookmarks();
break;
case "bm_cut":
this.copySelection(selection);
this.deleteSelection(selection);
break;
case "bm_copy":
this.copySelection(selection);
break;
case "bm_paste":
this.paste(selection);
break;
case "bm_delete":
this.deleteSelection(selection);
break;
case "bm_fileBookmark":
var rv = { selectedFolder: null };
openDialog("chrome://communicator/content/bookmarks/addBookmark.xul", "",
"centerscreen,chrome,modal=yes,dialog=yes,resizable=yes", null, null, folder, null, "selectFolder", rv);
if (rv.selectedFolder) {
for (var k = 0; k < selection.length; ++k) {
if (selection[k].id == rv.selectedFolder)
return; // Selection contains the target folder. Just fail silently.
}
var additiveFlag = false;
var selectedItems = [].concat(this.getSelection())
for (var i = 0; i < selectedItems.length; ++i) {
var currItem = selectedItems[i];
var currURI = currItem.id;
var parent = gBookmarksShell.findRDFNode(currItem, false);
gBookmarksShell.moveBookmark(currURI, parent.id, rv.selectedFolder);
gBookmarksShell.selectFolderItem(rv.selectedFolder, currURI, additiveFlag);
if (!additiveFlag) additiveFlag = true;
}
gBookmarksShell.flushDataSource();
}
break;
case "bm_newfolder":
var nfseln = this.getBestItem();
this.commands.createBookmarkItem("folder", nfseln);
break;
case "bm_newbookmark":
var folder = this.getSelectedFolder();
openDialog("chrome://communicator/content/bookmarks/addBookmark.xul", "",
"centerscreen,chrome,modal=yes,dialog=yes,resizable=no", null, null, folder, null, "newBookmark");
break;
case "bm_newseparator":
nfseln = this.getBestItem();
var parentNode = this.findRDFNode(nfseln, false);
args = [{ property: NC_NS + "parent",
resource: parentNode.id }];
BookmarksUtils.doBookmarksCommand(nfseln.id, NC_NS_CMD + "newseparator", args);
break;
case "bm_import":
case "bm_export":
const isImport = aCommandID == "bm_import";
try {
const kFilePickerContractID = "@mozilla.org/filepicker;1";
const kFilePickerIID = Components.interfaces.nsIFilePicker;
const kFilePicker = Components.classes[kFilePickerContractID].createInstance(kFilePickerIID);
const kTitle = this.getLocaleString(isImport ? "SelectImport": "EnterExport");
kFilePicker.init(window, kTitle, kFilePickerIID[isImport ? "modeOpen" : "modeSave"]);
kFilePicker.appendFilters(kFilePickerIID.filterHTML | kFilePickerIID.filterAll);
if (!isImport) kFilePicker.defaultString = "bookmarks.html";
if (kFilePicker.show() != kFilePickerIID.returnCancel) {
var fileName = kFilePicker.fileURL.spec;
if (!fileName) break;
}
else break;
}
catch (e) {
break;
}
var seln = this.getBestItem();
args = [{ property: NC_NS + "URL", literal: fileName}];
BookmarksUtils.doBookmarksCommand(seln.id, NC_NS_CMD + aCommandID, args);
break;
}
},
openFolderInNewWindow: function (aSelectedItem)
{
openDialog("chrome://communicator/content/bookmarks/bookmarks.xul",
"", "chrome,all,dialog=no", aSelectedItem.id);
},
copySelection: function (aSelection)
{
const kSuppArrayContractID = "@mozilla.org/supports-array;1";
const kSuppArrayIID = Components.interfaces.nsISupportsArray;
var itemArray = Components.classes[kSuppArrayContractID].createInstance(kSuppArrayIID);
const kSuppWStringContractID = "@mozilla.org/supports-wstring;1";
const kSuppWStringIID = Components.interfaces.nsISupportsWString;
var bmstring = Components.classes[kSuppWStringContractID].createInstance(kSuppWStringIID);
var unicodestring = Components.classes[kSuppWStringContractID].createInstance(kSuppWStringIID);
var htmlstring = Components.classes[kSuppWStringContractID].createInstance(kSuppWStringIID);
var sBookmarkItem = ""; var sTextUnicode = ""; var sTextHTML = "";
for (var i = 0; i < aSelection.length; ++i) {
var url = LITERAL(this.db, aSelection[i], NC_NS + "URL");
var name = LITERAL(this.db, aSelection[i], NC_NS + "Name");
sBookmarkItem += aSelection[i].id + "\n";
sTextUnicode += url + "\n";
sTextHTML += "<A HREF=\"" + url + "\">" + name + "</A>";
}
const kXferableContractID = "@mozilla.org/widget/transferable;1";
const kXferableIID = Components.interfaces.nsITransferable;
var xferable = Components.classes[kXferableContractID].createInstance(kXferableIID);
xferable.addDataFlavor("moz/bookmarkclipboarditem");
bmstring.data = sBookmarkItem;
xferable.setTransferData("moz/bookmarkclipboarditem", bmstring, sBookmarkItem.length*2)
xferable.addDataFlavor("text/html");
htmlstring.data = sTextHTML;
xferable.setTransferData("text/html", htmlstring, sTextHTML.length*2)
xferable.addDataFlavor("text/unicode");
unicodestring.data = sTextUnicode;
xferable.setTransferData("text/unicode", unicodestring, sTextUnicode.length*2)
const kClipboardContractID = "@mozilla.org/widget/clipboard;1";
const kClipboardIID = Components.interfaces.nsIClipboard;
var clipboard = Components.classes[kClipboardContractID].getService(kClipboardIID);
clipboard.setData(xferable, null, kClipboardIID.kGlobalClipboard);
},
paste: function (aSelection)
{
const kXferableContractID = "@mozilla.org/widget/transferable;1";
const kXferableIID = Components.interfaces.nsITransferable;
var xferable = Components.classes[kXferableContractID].createInstance(kXferableIID);
xferable.addDataFlavor("moz/bookmarkclipboarditem");
xferable.addDataFlavor("text/x-moz-url");
xferable.addDataFlavor("text/unicode");
const kClipboardContractID = "@mozilla.org/widget/clipboard;1";
const kClipboardIID = Components.interfaces.nsIClipboard;
var clipboard = Components.classes[kClipboardContractID].getService(kClipboardIID);
clipboard.getData(xferable, kClipboardIID.kGlobalClipboard);
var flavour = { };
var data = { };
var length = { };
xferable.getAnyTransferData(flavour, data, length);
var nodes = []; var names = [];
data = data.value.QueryInterface(Components.interfaces.nsISupportsWString).data;
switch (flavour.value) {
case "moz/bookmarkclipboarditem":
nodes = data.split("\n");
break;
case "text/x-moz-url":
var ix = data.indexOf("\n");
nodes.push(data.substring(0, ix != -1 ? ix : data.length));
names.push(data.substring(ix));
break;
default:
return;
}
const lastSelected = aSelection[aSelection.length-1];
const kParentNode = this.resolvePasteFolder(aSelection);
const krParent = this.RDF.GetResource(kParentNode.id);
const krSource = this.RDF.GetResource(lastSelected.id);
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFCIID = Components.interfaces.nsIRDFContainer;
const ksRDFC = Components.classes[kRDFCContractID].getService(kRDFCIID);
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
var additiveFlag = false;
for (var i = 0; i < nodes.length; ++i) {
if (!nodes[i]) continue;
var rCurrent = this.RDF.GetResource(nodes[i]);
const krTypeProperty = this.RDF.GetResource(RDF_NS + "type");
var rType = this.db.GetTarget(rCurrent, krTypeProperty, true);
try {
rType = rType.QueryInterface(Components.interfaces.nsIRDFResource);
}
catch (e) {
try {
rType = rType.QueryInterface(Components.interfaces.nsIRDFLiteral);
}
catch (e) {
// OK, no type exists, so node does not exist in the graph.
// (e.g. user pastes url as text)
// Do some housekeeping.
const krName = this.RDF.GetResource(names[i]);
const krNameProperty = this.RDF.GetResource(NC_NS + "Name");
const krBookmark = this.RDF.GetResource(NC_NS + "Bookmark");
kBMDS.Assert(rCurrent, krNameProperty, krName, true);
kBMDS.Assert(rCurrent, krTypeProperty, krBookmark, true);
}
}
// If the node is a folder, then we need to create a new anonymous
// resource and copy all the arcs over.
if (rType && rType.Value == NC_NS + "Folder")
rCurrent = BookmarksUtils.cloneFolder(rCurrent, krParent, krSource);
// If this item already exists in this container, don't paste, as
// this will result in the creation of multiple copies in the datasource
// but will not result in an update of the UI. (In Short: we don't
// handle multiple bookmarks well)
ksRDFC.Init(kBMDS, krParent);
ix = ksRDFC.IndexOf(rCurrent);
if (ix != -1)
continue;
ix = ksRDFC.IndexOf(krSource);
if (ix != -1)
ksRDFC.InsertElementAt(rCurrent, ix+1, true);
else
ksRDFC.AppendElement(rCurrent);
this.selectFolderItem(krSource.Value, rCurrent.Value, additiveFlag);
if (!additiveFlag) additiveFlag = true;
var rds = kBMDS.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
rds.Flush();
}
},
/////////////////////////////////////////////////////////////////////////////
// For the given selection, determines the element that should form the
// container to paste items into.
resolvePasteFolder: function (aSelection)
{
const lastSelected = aSelection[aSelection.length-1];
if (lastSelected.getAttribute("container") == "true" &&
aSelection.length == 1)
return lastSelected;
return this.findRDFNode(lastSelected, false);
},
canPaste: function ()
{
const kClipboardContractID = "@mozilla.org/widget/clipboard;1";
const kClipboardIID = Components.interfaces.nsIClipboard;
var clipboard = Components.classes[kClipboardContractID].getService(kClipboardIID);
const kSuppArrayContractID = "@mozilla.org/supports-array;1";
const kSuppArrayIID = Components.interfaces.nsISupportsArray;
var flavourArray = Components.classes[kSuppArrayContractID].createInstance(kSuppArrayIID);
const kSuppStringContractID = "@mozilla.org/supports-string;1";
const kSuppStringIID = Components.interfaces.nsISupportsString;
var flavours = ["moz/bookmarkclipboarditem", "text/x-moz-url"];
for (var i = 0; i < flavours.length; ++i) {
const kSuppString = Components.classes[kSuppStringContractID].createInstance(kSuppStringIID);
kSuppString.data = flavours[i];
flavourArray.AppendElement(kSuppString);
}
var hasFlavours = clipboard.hasDataMatchingFlavors(flavourArray, kClipboardIID.kGlobalClipboard);
return hasFlavours;
},
/////////////////////////////////////////////////////////////////////////////
// aSelection is a mutable array, not a NodeList.
deleteSelection: function (aSelection)
{
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFCIID = Components.interfaces.nsIRDFContainer;
const ksRDFC = Components.classes[kRDFCContractID].getService(kRDFCIID);
var nextElement;
var count = 0;
var selectionLength = aSelection.length;
while (aSelection.length && aSelection[count]) {
const currParent = this.findRDFNode(aSelection[count], false);
const kSelectionURI = aSelection[count].id;
// Disallow the removal of certain 'special' nodes
if (kSelectionURI == "NC:BookmarksRoot") {
aSelection.splice(count++,1);
continue;
}
// If the current bookmark is the IE Favorites folder, we have a little
// extra work to do - set the pref |browser.bookmarks.import_system_favorites|
// to ensure that we don't re-import next time.
if (aSelection[count].getAttribute("type") == (NC_NS + "IEFavoriteFolder")) {
const kPrefSvcContractID = "@mozilla.org/preferences-service;1";
const kPrefSvcIID = Components.interfaces.nsIPrefBranch;
const kPrefSvc = Components.classes[kPrefSvcContractID].getService(kPrefSvcIID);
kPrefSvc.setBoolPref("browser.bookmarks.import_system_favorites", false);
}
const krParent = this.RDF.GetResource(currParent.id);
const krBookmark = this.RDF.GetResource(kSelectionURI);
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
ksRDFC.Init(kBMDS, krParent);
nextElement = this.getNextElement(aSelection[count]);
ksRDFC.RemoveElement(krBookmark, true);
try {
// XXX - UGH. Template builder is NOT removing the element from the
// tree, and so selection remains non-zero in length and we go into
// an infinite loop here. Tear the node out of the document.
var parent = aSelection[count].parentNode;
parent.removeChild(aSelection[count]);
}
catch (e) {
}
// Manipulate the selection array ourselves.
aSelection.splice(count,1);
}
this.selectElement(nextElement);
},
moveBookmark: function (aBookmarkURI, aFromFolderURI, aToFolderURI)
{
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFCIID = Components.interfaces.nsIRDFContainer;
const kRDFC = Components.classes[kRDFCContractID].getService(kRDFCIID);
const krSrc = this.RDF.GetResource(aBookmarkURI);
const krOldParent = this.RDF.GetResource(aFromFolderURI);
const krNewParent = this.RDF.GetResource(aToFolderURI);
kRDFC.Init(kBMDS, krNewParent);
kRDFC.AppendElement(krSrc);
kRDFC.Init(kBMDS, krOldParent);
kRDFC.RemoveElement(krSrc, true);
},
open: function (aEvent, aRDFNode, aInNewWindow)
{
var urlValue = LITERAL(this.db, aRDFNode, NC_NS + "URL");
// Ignore "NC:" and empty urls.
if (urlValue.substring(0,3) == "NC:" || !urlValue) return;
if (aEvent && aEvent.altKey)
this.showPropertiesForNode (aRDFNode);
else if (aInNewWindow)
openDialog (getBrowserURL(), "_blank", "chrome,all,dialog=no", urlValue);
else
openTopWin (urlValue);
if (aEvent)
aEvent.preventBubble();
},
showPropertiesForNode: function (aBookmarkItem)
{
if (aBookmarkItem.getAttribute("type") != NC_NS + "BookmarkSeparator")
openDialog("chrome://communicator/content/bookmarks/bm-props.xul",
"", "centerscreen,chrome,resizable=no", aBookmarkItem.id);
},
findInBookmarks: function ()
{
openDialog("chrome://communicator/content/bookmarks/findBookmark.xul",
"FindBookmarksWindow",
"centerscreen,resizable=no,chrome,dependent");
},
getLocaleString: function (aStringKey)
{
var bundle = document.getElementById("bookmarksbundle");
return bundle.getString (aStringKey);
},
flushDataSource: function ()
{
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
var remoteDS = kBMDS.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
remoteDS.Flush();
},
/////////////////////////////////////////////////////////////////////////////
// Determine the rdf:type property for the given resource.
resolveType: function (aID)
{
const krType = this.RDF.GetResource(RDF_NS + "type");
const krElement = this.RDF.GetResource(aID);
const type = gBookmarksShell.db.GetTarget(krElement, krType, true);
try {
return type.QueryInterface(Components.interfaces.nsIRDFResource).Value;
}
catch (e) {
try {
return type.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
}
catch (e) {
return null;
}
}
},
/////////////////////////////////////////////////////////////////////////////
// takes a node and adds the appropriate adornments for a bookmark container.
createBookmarkFolderDecorations: function (aNode)
{
aNode.setAttribute("type", "http://home.netscape.com/NC-rdf#Folder");
aNode.setAttribute("container", "true");
return aNode;
}
};
function CommandArrayEnumerator (aCommandArray)
{
this._inner = [];
const kRDFContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFIID = Components.interfaces.nsIRDFService;
const RDF = Components.classes[kRDFContractID].getService(kRDFIID);
for (var i = 0; i < aCommandArray.length; ++i)
this._inner.push(RDF.GetResource(NC_NS_CMD + aCommandArray[i]));
this._index = 0;
}
CommandArrayEnumerator.prototype = {
getNext: function ()
{
return this._inner[this._index];
},
hasMoreElements: function ()
{
return this._index < this._inner.length;
}
};
var BookmarksUtils = {
_rdf: null,
get RDF ()
{
if (!this._rdf) {
const kRDFContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFIID = Components.interfaces.nsIRDFService;
this._rdf = Components.classes[kRDFContractID].getService(kRDFIID);
}
return this._rdf;
},
///////////////////////////////////////////////////////////////////////////
// Execute a command with the given source and arguments
doBookmarksCommand: function (aSourceURI, aCommand, aArgumentsArray)
{
var rCommand = this.RDF.GetResource(aCommand);
var kSuppArrayContractID = "@mozilla.org/supports-array;1";
var kSuppArrayIID = Components.interfaces.nsISupportsArray;
var sourcesArray = Components.classes[kSuppArrayContractID].createInstance(kSuppArrayIID);
if (aSourceURI) {
var rSource = this.RDF.GetResource(aSourceURI);
sourcesArray.AppendElement (rSource);
}
var argsArray = Components.classes[kSuppArrayContractID].createInstance(kSuppArrayIID);
for (var i = 0; i < aArgumentsArray.length; ++i) {
var rArc = this.RDF.GetResource(aArgumentsArray[i].property);
argsArray.AppendElement(rArc);
var rValue = null;
if ("resource" in aArgumentsArray[i]) {
rValue = this.RDF.GetResource(aArgumentsArray[i].resource);
}
else
rValue = this.RDF.GetLiteral(aArgumentsArray[i].literal);
argsArray.AppendElement(rValue);
}
// Exec the command in the Bookmarks datasource.
const kBMDS = this.RDF.GetDataSource("rdf:bookmarks");
kBMDS.DoCommand(sourcesArray, rCommand, argsArray);
},
cloneFolder: function (aFolder, aParent, aRelativeItem)
{
var BMDS = this.RDF.GetDataSource("rdf:bookmarks");
var nameArc = this.RDF.GetResource(NC_NS + "Name");
var rName = BMDS.GetTarget(aFolder, nameArc, true);
rName = rName.QueryInterface(Components.interfaces.nsIRDFLiteral);
var newFolder = this.createFolderWithID(rName.Value, aRelativeItem, aParent);
// Now need to append kiddies.
try {
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFCIID = Components.interfaces.nsIRDFContainer;
var RDFC = Components.classes[kRDFCContractID].getService(kRDFCIID);
const kRDFCUContractID = "@mozilla.org/rdf/container-utils;1";
const kRDFCUIID = Components.interfaces.nsIRDFContainerUtils;
var RDFCU = Components.classes[kRDFCUContractID].getService(kRDFCUIID);
RDFC.Init(BMDS, aFolder);
var elts = RDFC.GetElements();
RDFC.Init(BMDS, newFolder);
while (elts.hasMoreElements()) {
var curr = elts.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
if (RDFCU.IsContainer(BMDS, curr))
BookmarksUtils.cloneFolder(curr, newFolder);
else
RDFC.AppendElement(curr);
}
}
catch (e) {
}
return newFolder;
},
createFolderWithID: function (aTitle, aRelativeItem, aParentFolder)
{
const kRDFCContractID = "@mozilla.org/rdf/container;1";
const kRDFCIID = Components.interfaces.nsIRDFContainer;
var RDFC = Components.classes[kRDFCContractID].createInstance(kRDFCIID);
var BMDS = this.RDF.GetDataSource("rdf:bookmarks");
try {
RDFC.Init(BMDS, aParentFolder);
}
catch (e) {
return null;
}
var ix = RDFC.IndexOf(aRelativeItem);
var BMSvc = BMDS.QueryInterface(Components.interfaces.nsIBookmarksService);
return BMSvc.createFolderWithDetails(aTitle, aParentFolder, ix);
},
addBookmarkForTabBrowser: function( aTabBrowser, aSelect )
{
var tabsInfo = [];
var currentTabInfo = { name: "", url: "", charset: null };
const activeBrowser = aTabBrowser.selectedBrowser;
const browsers = aTabBrowser.browsers;
for (var i = 0; i < browsers.length; ++i) {
var webNav = browsers[i].webNavigation;
var url = webNav.currentURI.spec;
var name = "";
var charset;
try {
var doc = webNav.document;
name = doc.title || url;
charset = doc.characterSet;
} catch (e) {
name = url;
}
tabsInfo[i] = { name: name, url: url, charset: charset };
if (browsers[i] == activeBrowser)
currentTabInfo = tabsInfo[i];
}
openDialog("chrome://communicator/content/bookmarks/addBookmark.xul", "",
"centerscreen,chrome,dialog=yes,resizable,dependent",
currentTabInfo.name, currentTabInfo.url, null,
currentTabInfo.charset, "addGroup" + (aSelect ? ",group" : ""), tabsInfo);
},
addBookmarkForBrowser: function (aDocShell, aShowDialog)
{
// Bug 52536: We obtain the URL and title from the nsIWebNavigation
// associated with a <browser/> rather than from a DOMWindow.
// This is because when a full page plugin is loaded, there is
// no DOMWindow (?) but information about the loaded document
// may still be obtained from the webNavigation.
var url = aDocShell.currentURI.spec;
var title, docCharset = null;
try {
title = aDocShell.document.title || url;
docCharset = aDocShell.document.characterSet;
}
catch (e) {
title = url;
}
this.addBookmark(url, title, docCharset, aShowDialog);
},
addBookmark: function (aURL, aTitle, aCharset, aShowDialog)
{
if (aCharset === undefined) {
var fw = document.commandDispatcher.focusedWindow;
aCharset = fw.document.characterSet;
}
if (aShowDialog)
openDialog("chrome://communicator/content/bookmarks/addBookmark.xul", "",
"centerscreen,chrome,dialog=yes,resizable,dependent", aTitle, aURL, null, aCharset);
else {
// User has elected to override the file dialog and always file bookmarks
// into the default bookmark folder.
const kBMSvcContractID = "@mozilla.org/browser/bookmarks-service;1";
const kBMSvcIID = Components.interfaces.nsIBookmarksService;
const kBMSvc = Components.classes[kBMSvcContractID].getService(kBMSvcIID);
kBMSvc.addBookmarkImmediately(aURL, aTitle, kBMSvcIID.BOOKMARK_DEFAULT_TYPE, aCharset);
}
}
};
var ContentUtils = {
childByLocalName: function (aSelectedItem, aLocalName)
{
var temp = aSelectedItem.firstChild;
while (temp) {
if (temp.localName == aLocalName)
return temp;
temp = temp.nextSibling;
}
return null;
}
};

View File

@@ -1,70 +0,0 @@
<?xml version="1.0"?>
<!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com> (Original Author)
-->
<!DOCTYPE window SYSTEM "chrome://communicator/locale/bookmarks/bookmarksOverlay.dtd">
<overlay id="bookmarksOverlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<stringbundleset id="stringbundleset">
<stringbundle id="bookmarksbundle"
src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
</stringbundleset>
<popupset id="bookmarksPopupset">
<popup id="bmContext"
onpopupshowing="gBookmarksShell.createContextMenu(event);"/>
</popupset>
<commands id="commands">
<commandset id="bookmarksItems">
<command id="cmd_bm_open" oncommand="goDoCommand('cmd_bm_open');"/>
<command id="cmd_bm_openfolder" oncommand="goDoCommand('cmd_bm_openfolder');"/>
<command id="cmd_bm_newfolder" oncommand="goDoCommand('cmd_bm_newfolder');"/>
<command id="cmd_bm_newbookmark" oncommand="goDoCommand('cmd_bm_newbookmark');"/>
<command id="cmd_bm_newseparator" oncommand="goDoCommand('cmd_bm_newseparator');"/>
<command id="cmd_bm_find" oncommand="goDoCommand('cmd_bm_find');"/>
<command id="cmd_bm_setnewbookmarkfolder" oncommand="goDoCommand('cmd_bm_setnewbookmarkfolder');"/>
<command id="cmd_bm_setpersonaltoolbarfolder" oncommand="goDoCommand('cmd_bm_setpersonaltoolbarfolder');"/>
<command id="cmd_bm_setnewsearchfolder" oncommand="goDoCommand('cmd_bm_setnewsearchfolder');"/>
<command id="cmd_bm_properties" oncommand="goDoCommand('cmd_bm_properties');"/>
<command id="cmd_bm_rename" oncommand="goDoCommand('cmd_bm_rename');"/>
<command id="cmd_bm_openinnewwindow" oncommand="goDoCommand('cmd_bm_openinnewwindow');"/>
<command id="cmd_bm_import" oncommand="goDoCommand('cmd_bm_import');"/>
<command id="cmd_bm_export" oncommand="goDoCommand('cmd_bm_export');"/>
<command id="cmd_bm_fileBookmark" oncommand="goDoCommand('cmd_bm_fileBookmark');"/>
<command id="cmd_bm_cut" oncommand="goDoCommand('cmd_bm_cut');"/>
<command id="cmd_bm_copy" oncommand="goDoCommand('cmd_bm_copy');"/>
<command id="cmd_bm_paste" oncommand="goDoCommand('cmd_bm_paste');"/>
<command id="cmd_bm_delete" oncommand="goDoCommand('cmd_bm_delete');"/>
<command id="cmd_bm_selectAll" oncommand="goDoCommand('cmd_bm_selectAll');"/>
</commandset>
<commandset id="selectEditMenuItems"/>
<commandset id="globalEditMenuItems"/>
</commands>
</overlay>

View File

@@ -1,64 +0,0 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
////////////////////////////////////////////////////////////////////////////////
// Get the two bookmarks utility libraries running, attach controllers, focus
// tree widget, etc.
function Startup()
{
var bookmarksView = document.getElementById("bookmarks-view");
bookmarksView.treeBoxObject.selection.select(0);
}
function manageBookmarks() {
openDialog("chrome://communicator/content/bookmarks/bookmarks.xul", "", "chrome,dialog=no,resizable=yes");
}
function addBookmark() {
var contentArea = top.document.getElementById('content');
if (contentArea) {
const browsers = contentArea.browsers;
if (browsers.length > 1)
BookmarksUtils.addBookmarkForTabBrowser(contentArea);
else
BookmarksUtils.addBookmarkForBrowser(contentArea.webNavigation, true);
}
else
BookmarksUtils.addBookmark(null, null, undefined, true);
}

View File

@@ -1,759 +0,0 @@
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
var gBookmarksShell = null;
///////////////////////////////////////////////////////////////////////////////
// Tracks the selected item, the cell last clicked on, and the number of clicks
// given to it. Used to activate inline edit mode.
var gSelectionTracker = { currentItem: null, currentCell: null, clickCount: 0 };
///////////////////////////////////////////////////////////////////////////////
// Class which defines methods for a bookmarks UI implementation based around
// a treeview. Subclasses BookmarksBase in bookmarksOverlay.js. Some methods
// are required by the base class, others are for event handling. Window specific
// glue code should go into the BookmarksWindow class in bookmarks.js
function BookmarksTree (aID)
{
this.id = aID;
}
BookmarksTree.prototype = {
__proto__: BookmarksUIElement.prototype,
// XXX - change this to .element and move into base.
get tree ()
{
return document.getElementById(this.id);
},
/////////////////////////////////////////////////////////////////////////////
// This method constructs a menuitem for a context menu for the given command.
// This is implemented by the client so that it can intercept menuitem naming
// as appropriate.
createMenuItem: function (aDisplayName, aCommandName, aItemNode)
{
const kXULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var xulElement = document.createElementNS(kXULNS, "menuitem");
xulElement.setAttribute("cmd", aCommandName);
xulElement.setAttribute("command", "cmd_" + aCommandName.substring(NC_NS_CMD.length));
switch (aCommandName) {
case NC_NS_CMD + "open":
xulElement.setAttribute("label", aDisplayName);
xulElement.setAttribute("default", "true");
break;
case NC_NS_CMD + "openfolder":
aDisplayName = aItemNode.getAttribute("open") == "true" ? this.getLocaleString("cmd_openfolder2") : aDisplayName;
xulElement.setAttribute("label", aDisplayName);
xulElement.setAttribute("default", "true");
break;
case NC_NS_CMD + "renamebookmark":
if (!document.popupNode.hasAttribute("type")) {
xulElement.setAttribute("label", this.getLocaleString("cmd_renamebookmark2"));
xulElement.setAttribute("cmd", (NC_NS_CMD + "editurl"));
}
else
xulElement.setAttribute("label", aDisplayName);
break;
default:
xulElement.setAttribute("label", aDisplayName);
break;
}
return xulElement;
},
// XXX - ideally this would be in the base. this.tree needs to change to
// this.element and then we can do just that.
setRoot: function (aRoot)
{
this.tree.setAttribute("ref", aRoot);
},
// Command implementation
commands: {
openFolder: function (aSelectedItem)
{
if (aSelectedItem.getAttribute("open") == "true")
aSelectedItem.removeAttribute("open");
else
aSelectedItem.setAttribute("open", "true");
},
// Things Needed to Satisfy Mac Weenies:
// 1) need to implement timed single click edit. This could be Hard.
// 2) need to implement some other method of key access apart from F2.
// mpt claims that 'Cmd+U' is the excel equivalent.
editCell: function (aSelectedItem, aCell)
{
// XXX throw up properties dialog with name selected so user can rename
// that way, until tree conversion allows us to use IL again.
goDoCommand("cmd_properties");
return; // Disable inline edit for now.
var editCell = aSelectedItem.firstChild.childNodes[aCell];
if (editCell.getAttribute("editable") != "true")
return;
// Cause the inline edit cell binding to be used.
editCell.setAttribute("class", "treecell-indent treecell-editable");
var editColGroup = document.getElementById("theColumns");
var count = 0;
var property = "";
for (var i = 0; i < editColGroup.childNodes.length; ++i) {
var currCol = editColGroup.childNodes[i];
if (currCol.getAttribute("hidden") == "true")
return;
if (count == aCell) {
property = currCol.getAttribute("resource");
break;
}
++count;
// Deal with interleaved column resizer splitters
if (currCol.nextSibling.localName == "splitter") ++i;
}
if (property) {
editCell.setMode("edit");
editCell.addObserver(this.postModifyCallback, "accept",
[editCell, aSelectedItem, property]);
}
},
///////////////////////////////////////////////////////////////////////////
// Called after an inline-edit cell has left inline-edit mode, and data
// needs to be modified in the datasource.
postModifyCallback: function (aParams)
{
var selItemURI = NODE_ID(aParams[1]);
gBookmarksShell.propertySet(selItemURI, aParams[2], aParams[3]);
gBookmarksShell.selectFolderItem(NODE_ID(gBookmarksShell.findRDFNode(aParams[1], false)),
selItemURI, false);
gBookmarksShell.tree.focus();
gSelectionTracker.clickCount = 0;
// Set the cell back to use the standard treecell binding.
var editCell = aParams[0];
editCell.setAttribute("class", "treecell-indent");
},
///////////////////////////////////////////////////////////////////////////
// New Folder Creation
// Strategy: create a dummy row with edit fields to harvest information
// from the user, then destroy these rows and create an item
// in its place.
///////////////////////////////////////////////////////////////////////////
// Edit folder name & update the datasource if name is valid
onEditFolderName: function (aParams, aTopic)
{
var name = aParams[3];
var shell = gBookmarksShell.commands; // suck
var dummyItem = aParams[2];
var relativeNode = aParams[1];
var parentNode = relativeNode ? gBookmarksShell.findRDFNode(relativeNode, false) : gBookmarksShell.tree;
dummyItem.parentNode.removeChild(dummyItem);
if (!shell.validateNameAndTopic(name, aTopic, relativeNode, dummyItem)) {
gBookmarksShell.tree.selectItem(relativeNode);
gBookmarksShell.tree.focus();
return;
}
if (relativeNode) {
// If we're attempting to create a folder as a subfolder of an open folder,
// we need to set the parentFolder to be relativeNode, which will be the
// parent of the new folder, rather than the parent of the relativeNode,
// which will result in the folder being created in an incorrect position
// (adjacent to the relativeNode).
var selKids = ContentUtils.childByLocalName(relativeNode, "treechildren");
if (selKids && selKids.hasChildNodes() && selKids.lastChild == dummyItem)
parentNode = relativeNode;
}
var args = [{ property: NC_NS + "parent",
resource: NODE_ID(parentNode) },
{ property: NC_NS + "Name",
literal: name }];
const kBMDS = gBookmarksShell.RDF.GetDataSource("rdf:bookmarks");
kBMDS.AddObserver(newFolderRDFObserver);
var relId = relativeNode ? NODE_ID(relativeNode) : "NC:BookmarksRoot";
BookmarksUtils.doBookmarksCommand(relId, NC_NS_CMD + "newfolder", args);
kBMDS.RemoveObserver(newFolderRDFObserver);
var newFolderItem = document.getElementById(newFolderRDFObserver._newFolderURI);
gBookmarksShell.tree.focus();
gBookmarksShell.tree.selectItem(newFolderItem);
// Can't use newFolderItem because it may not have been created yet. Hack, huh?
var index = gBookmarksShell.tree.getIndexOfItem(relativeNode);
gBookmarksShell.tree.ensureIndexIsVisible(index+1);
gSelectionTracker.clickCount = 0;
},
///////////////////////////////////////////////////////////////////////////
// Performs simple validation on what the user has entered:
// 1) prevents entering an empty string
// 2) in the case of a canceled operation, remove the dummy item and
// restore selection.
validateNameAndTopic: function (aName, aTopic, aOldSelectedItem, aDummyItem)
{
// Don't allow user to enter an empty string "";
if (!aName) return false;
// If the user hit escape, go no further.
if (aTopic == "reject") {
if (aOldSelectedItem)
gBookmarksShell.tree.selectItem(aOldSelectedItem);
return false;
}
return true;
},
///////////////////////////////////////////////////////////////////////////
// Creates a dummy item that can be placed in edit mode to retrieve data
// to create new bookmarks/folders.
createBookmarkItem: function (aMode, aSelectedItem)
{
/////////////////////////////////////////////////////////////////////////
// HACK HACK HACK HACK HACK
// Disable Inline-Edit for now and just use a dialog.
// XXX - most of this is just copy-pasted from the other two folder
// creation functions. Yes it's ugly, but it'll do the trick for
// now as this is in no way intended to be a long-term solution.
const kPromptSvcContractID = "@mozilla.org/embedcomp/prompt-service;1";
const kPromptSvcIID = Components.interfaces.nsIPromptService;
const kPromptSvc = Components.classes[kPromptSvcContractID].getService(kPromptSvcIID);
var defaultValue = gBookmarksShell.getLocaleString("ile_newfolder");
var dialogTitle = gBookmarksShell.getLocaleString("newfolder_dialog_title");
var dialogMsg = gBookmarksShell.getLocaleString("newfolder_dialog_msg");
var stringValue = { value: defaultValue };
if (kPromptSvc.prompt(window, dialogTitle, dialogMsg, stringValue, null, { value: 0 })) {
var relativeNode = gBookmarksShell.tree;
var parentNode;
if (aSelectedItem && aSelectedItem.localName != "tree") {
// By default, create adjacent to the selected item
relativeNode = aSelectedItem;
if (relativeNode.getAttribute("container") == "true" &&
relativeNode.getAttribute("open") == "true") {
// But if it's an open container, the relative node should be the last child.
var treechildren = ContentUtils.childByLocalName(relativeNode, "treechildren");
if (treechildren && treechildren.hasChildNodes())
relativeNode = treechildren.lastChild; // folder non-empty, set relativeNode
parentNode = aSelectedItem; // no matter what, folder is open, so make it parent
} else {
parentNode = relativeNode ? gBookmarksShell.findRDFNode(relativeNode, false) : gBookmarksShell.tree;
}
}
var args = [{ property: NC_NS + "parent",
resource: NODE_ID(parentNode) },
{ property: NC_NS + "Name",
literal: stringValue.value }];
const kBMDS = gBookmarksShell.RDF.GetDataSource("rdf:bookmarks");
kBMDS.AddObserver(newFolderRDFObserver);
var relId = relativeNode ? NODE_ID(relativeNode) : "NC:BookmarksRoot";
BookmarksUtils.doBookmarksCommand(relId, NC_NS_CMD + "newfolder", args);
kBMDS.RemoveObserver(newFolderRDFObserver);
var newFolderItem = document.getElementById(newFolderRDFObserver._newFolderURI);
gBookmarksShell.tree.focus();
gBookmarksShell.tree.selectItem(newFolderItem);
// Can't use newFolderItem because it may not have been created yet. Hack, huh?
var index = gBookmarksShell.tree.getIndexOfItem(relativeNode);
gBookmarksShell.tree.ensureIndexIsVisible(index+1);
}
return;
// HACK HACK HACK HACK HACK
/////////////////////////////////////////////////////////////////////////
/* Disable inline edit for now
const kXULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var dummyItem = document.createElementNS(kXULNS, "treeitem");
dummyItem = gBookmarksShell.createBookmarkFolderDecorations(dummyItem);
dummyItem.setAttribute("class", "bookmark-item");
var dummyRow = document.createElementNS(kXULNS, "treerow");
var dummyCell = document.createElementNS(kXULNS, "treecell");
var dummyCell2 = document.createElementNS(kXULNS, "treecell");
dummyCell.setAttribute("label", gBookmarksShell.getLocaleString("ile_newfolder") + " ");
dummyCell.setAttribute("type", NC_NS + "Folder");
dummyCell.setAttribute("editable", "true");
dummyCell.setAttribute("class", "treecell-indent treecell-editable");
dummyRow.appendChild(dummyCell);
dummyItem.appendChild(dummyRow);
var relativeNode = null;
// If there are selected items, try to create the dummy item relative to the
// best item, and position the bookmark there when created. Otherwise just
// append to the root.
if (aSelectedItem && aSelectedItem.localName != "tree") {
// By default, create adjacent to the selected item
relativeNode = aSelectedItem;
if (relativeNode.getAttribute("container") == "true" &&
relativeNode.getAttribute("open") == "true") {
// But if it's an open container, the relative node should be the last child.
var treechildren = ContentUtils.childByLocalName(relativeNode, "treechildren");
if (treechildren && treechildren.hasChildNodes())
relativeNode = treechildren.lastChild;
}
if (aSelectedItem.getAttribute("container") == "true") {
if (aSelectedItem.getAttribute("open") == "true") {
var treechildren = ContentUtils.childByLocalName(aSelectedItem, "treechildren");
if (!treechildren) {
treechildren = document.createElementNS(kXULNS, "treechildren");
aSelectedItem.appendChild(treechildren);
}
// Insert new item after last item.
treechildren.appendChild(dummyItem);
}
else {
if (aSelectedItem.nextSibling)
aSelectedItem.parentNode.insertBefore(dummyItem, aSelectedItem.nextSibling);
else
aSelectedItem.parentNode.appendChild(dummyItem);
}
var index = gBookmarksShell.tree.getIndexOfItem(dummyItem);
gBookmarksShell.tree.ensureIndexIsVisible(index);
}
else {
if (aSelectedItem.nextSibling)
aSelectedItem.parentNode.insertBefore(dummyItem, aSelectedItem.nextSibling);
else
aSelectedItem.parentNode.appendChild(dummyItem);
}
}
else {
// No items in the tree. Append to the root.
var rootKids = document.getElementById("treechildren-bookmarks");
rootKids.appendChild(dummyItem);
}
dummyCell.setMode("edit");
dummyCell.addObserver(this.onEditFolderName, "accept", [dummyCell, relativeNode, dummyItem]);
dummyCell.addObserver(this.onEditFolderName, "reject", [dummyCell, relativeNode, dummyItem]);
*/
}
},
/////////////////////////////////////////////////////////////////////////////
// Evaluates an event to determine whether or not it affords opening a tree
// item. Typically, this is when the left mouse button is used, and provided
// the click-rate matches that specified by our owning tree class. For example,
// some trees open an item when double clicked (bookmarks/history windows) and
// others on a single click (sidebar panels).
isValidOpenEvent: function (aEvent)
{
return !(aEvent.type == "click" &&
(aEvent.button != 0 || aEvent.detail != this.openClickCount))
},
/////////////////////////////////////////////////////////////////////////////
// For the given selection, selects the best adjacent element. This method is
// useful when an action such as a cut or a deletion is performed on a
// selection, and focus/selection needs to be restored after the operation
// is performed.
getNextElement: function (aElement)
{
if (aElement.nextSibling)
return aElement.nextSibling;
else if (aElement.previousSibling)
return aElement.previousSibling;
else
return aElement.parentNode.parentNode;
},
selectElement: function (aElement)
{
this.tree.selectItem(aElement);
},
//////////////////////////////////////////////////////////////////////////////
// Add the treeitem element specified by aURI to the tree's current selection.
addItemToSelection: function (aURI)
{
var item = document.getElementById(aURI) // XXX flawed for multiple ids
this.tree.addItemToSelection(item);
},
/////////////////////////////////////////////////////////////////////////////
// Return a set of DOM nodes that represent the selection in the tree widget.
// This method is takes a node parameter which is the popupNode for the
// document. If the popupNode is not contained by the selection, the
// popupNode is selected and the new selection returned.
getSelection: function ()
{
// Note that we don't just the selectedItems NodeList here because that
// is a reference to a LIVE DOM NODE LIST. We want to maintain control
// over what is in the selection array ourselves.
return [].concat(this.tree.selectedItems);
},
getBestItem: function ()
{
var seln = this.getSelection ();
if (seln.length < 1) {
var kids = ContentUtils.childByLocalName(this.tree, "treechildren");
return kids.lastChild || this.tree;
}
else
return seln[0];
return this.tree;
},
/////////////////////////////////////////////////////////////////////////////
// Return a set of DOM nodes that represent the selection in the tree widget.
// This method is takes a node parameter which is the popupNode for the
// document. If the popupNode is not contained by the selection, the
// popupNode is selected and the new selection returned.
getContextSelection: function (aItemNode)
{
// How a context-click works:
// if the popup node is contained by the selection, the context menu is
// built for that selection. However, if the popup node is invoked on a
// non-selected node, unless modifiers are pressed**, the previous
// selection is discarded and that node selected.
var selectedItems = this.tree.selectedItems;
for (var i = 0; i < selectedItems.length; ++i) {
if (selectedItems[i] == aItemNode)
return selectedItems;
}
if (aItemNode.localName == "treeitem")
this.tree.selectItem(aItemNode);
return this.tree.selectedItems.length ? this.tree.selectedItems : [this.tree];
},
getSelectedFolder: function ()
{
var selectedItem = this.getBestItem();
if (!selectedItem) return "NC:BookmarksRoot";
while (selectedItem && selectedItem.nodeType == Node.ELEMENT_NODE) {
if (selectedItem.getAttribute("container") == "true" &&
selectedItem.getAttribute("open") == "true")
return NODE_ID(selectedItem);
selectedItem = selectedItem.parentNode.parentNode;
}
return "NC:BookmarksRoot";
},
/////////////////////////////////////////////////////////////////////////////
// For a given start DOM element, find the enclosing DOM element that contains
// the template builder RDF resource decorations (id, ref, etc).
findRDFNode: function (aStartNode, aIncludeStartNodeFlag)
{
var temp = aIncludeStartNodeFlag ? aStartNode : aStartNode.parentNode;
while (temp && temp.localName != "treeitem")
temp = temp.parentNode;
return temp || this.tree;
},
/////////////////////////////////////////////////////////////////////////////
// Tree click events. This handles when to go into inline-edit mode for
// editable cells.
treeClicked: function (aEvent)
{
// We are disabling Inline Edit for now. It's too buggy in the old XUL tree widget.
// A more solid implementation will follow the conversion to tree
/*
if (this.tree.selectedItems.length > 1 || aEvent.detail > 1 || aEvent.button != 0) {
gSelectionTracker.clickCount = 0;
return;
}
if (gSelectionTracker.currentItem == this.tree.currentItem &&
gSelectionTracker.currentCell == aEvent.target)
++gSelectionTracker.clickCount;
else
gSelectionTracker.clickCount = 0;
if (!this.tree.currentItem)
return;
gSelectionTracker.currentItem = this.tree.currentItem;
gSelectionTracker.currentCell = aEvent.target;
if (gSelectionTracker.currentItem.getAttribute("type") != NC_NS + "Bookmark" &&
gSelectionTracker.currentItem.getAttribute("type") != NC_NS + "Folder")
return;
var row = gSelectionTracker.currentItem.firstChild;
if (row) {
for (var i = 0; i < row.childNodes.length; ++i) {
if (row.childNodes[i] == gSelectionTracker.currentCell) {
// Don't allow inline-edit of cells other than name for folders.
// XXX - so so skeezy. Change this to look for NC:Name or some such.
if (gSelectionTracker.currentItem.getAttribute("type") != NC_NS + "Bookmark" && i)
return;
// Don't allow editing of the root folder name
if (gSelectionTracker.currentItem.id == "NC:BookmarksRoot")
return;
if (gSelectionTracker.clickCount == 1 && this.openClickCount > 1)
gBookmarksShell.commands.editCell(this.tree.currentItem, i);
break;
}
}
}
*/
},
treeOpen: function (aEvent)
{
if (this.isValidOpenEvent(aEvent)) {
var rdfNode = this.findRDFNode(aEvent.target, true);
if (rdfNode.getAttribute("container") != "true")
this.open(aEvent, rdfNode);
}
},
/////////////////////////////////////////////////////////////////////////////
// Tree key events. This handles when to go into inline-edit mode for editable
// cells, when to load a URL, etc.
treeKeyPress: function (aEvent)
{
if (this.tree.selectedItems.length > 1) return;
/* Disabling Inline Edit
if (aEvent.keyCode == 113 && aEvent.shiftKey) {
const kNodeId = NODE_ID(this.tree.currentItem);
if (this.resolveType(kNodeId) == NC_NS + "Bookmark")
gBookmarksShell.commands.editCell (this.tree.currentItem, 1);
}
else */
if (aEvent.keyCode == 113)
goDoCommand("cmd_rename");
else if (aEvent.keyCode == 13) // && this.tree.currentItem.firstChild.getAttribute("inline-edit") != "true")
goDoCommand(aEvent.altKey ? "cmd_properties" : "cmd_open");
},
selectFolderItem: function (aFolderURI, aItemURI, aAdditiveFlag)
{
var folder = document.getElementById(aFolderURI);
var kids = ContentUtils.childByLocalName(folder, "treechildren");
if (!kids) return;
var item = kids.firstChild;
while (item) {
if (item.id == aItemURI) break;
item = item.nextSibling;
}
if (!item) return;
this.tree[aAdditiveFlag ? "addItemToSelection" : "selectItem"](item);
},
/////////////////////////////////////////////////////////////////////////////
// Command handling & Updating.
controller: {
supportsCommand: function (aCommand)
{
switch(aCommand) {
case "cmd_undo":
case "cmd_redo":
return false;
case "cmd_bm_cut":
case "cmd_bm_copy":
case "cmd_bm_paste":
case "cmd_bm_delete":
case "cmd_bm_selectAll":
return true;
case "cmd_open":
case "cmd_openfolder":
case "cmd_openfolderinnewwindow":
case "cmd_newbookmark":
case "cmd_newfolder":
case "cmd_newseparator":
case "cmd_find":
case "cmd_properties":
case "cmd_rename":
case "cmd_setnewbookmarkfolder":
case "cmd_setpersonaltoolbarfolder":
case "cmd_setnewsearchfolder":
case "cmd_import":
case "cmd_export":
case "cmd_bm_fileBookmark":
return true;
default:
return false;
}
},
isCommandEnabled: function (aCommand)
{
var numSelectedItems = gBookmarksShell.tree.selectedItems.length;
var seln, firstSelected, folderType, bItemCountCorrect;
switch(aCommand) {
case "cmd_undo":
case "cmd_redo":
return false;
case "cmd_bm_paste":
return gBookmarksShell.canPaste();
case "cmd_bm_cut":
case "cmd_bm_copy":
case "cmd_bm_delete":
return numSelectedItems >= 1;
case "cmd_bm_selectAll":
return true;
case "cmd_open":
seln = gBookmarksShell.tree.selectedItems;
return numSelectedItems == 1 && seln[0].getAttribute("type") == NC_NS + "Bookmark";
case "cmd_openfolder":
case "cmd_openfolderinnewwindow":
seln = gBookmarksShell.tree.selectedItems;
return numSelectedItems == 1 && seln[0].getAttribute("type") == NC_NS + "Folder";
case "cmd_find":
case "cmd_newbookmark":
case "cmd_newfolder":
case "cmd_newseparator":
case "cmd_import":
case "cmd_export":
return true;
case "cmd_properties":
case "cmd_rename":
seln = gBookmarksShell.tree.selectedItems;
return numSelectedItems == 1 && seln[0].getAttribute("type") != NC_NS + "BookmarkSeparator";
case "cmd_setnewbookmarkfolder":
seln = gBookmarksShell.tree.selectedItems;
firstSelected = seln.length ? seln[0] : gBookmarksShell.tree;
folderType = firstSelected.getAttribute("type") == (NC_NS + "Folder");
bItemCountCorrect = seln.length ? numSelectedItems == 1 : true;
return bItemCountCorrect && !(NODE_ID(firstSelected) == "NC:NewBookmarkFolder") && folderType;
case "cmd_setpersonaltoolbarfolder":
seln = gBookmarksShell.tree.selectedItems;
firstSelected = seln.length ? seln[0] : gBookmarksShell.tree;
folderType = firstSelected.getAttribute("type") == (NC_NS + "Folder");
bItemCountCorrect = seln.length ? numSelectedItems == 1 : true;
return bItemCountCorrect && !(NODE_ID(firstSelected) == "NC:PersonalToolbarFolder") && folderType;
case "cmd_setnewsearchfolder":
seln = gBookmarksShell.tree.selectedItems;
firstSelected = seln.length ? seln[0] : gBookmarksShell.tree;
folderType = firstSelected.getAttribute("type") == (NC_NS + "Folder");
bItemCountCorrect = seln.length ? numSelectedItems == 1 : true;
return bItemCountCorrect == 1 && !(NODE_ID(firstSelected) == "NC:NewSearchFolder") && folderType;
case "cmd_bm_fileBookmark":
seln = gBookmarksShell.tree.selectedItems;
return seln.length > 0;
default:
return false;
}
},
doCommand: function (aCommand)
{
switch(aCommand) {
case "cmd_undo":
case "cmd_redo":
break;
case "cmd_bm_paste":
case "cmd_bm_copy":
case "cmd_bm_cut":
case "cmd_bm_delete":
case "cmd_newbookmark":
case "cmd_newfolder":
case "cmd_newseparator":
case "cmd_properties":
case "cmd_rename":
case "cmd_open":
case "cmd_openfolder":
case "cmd_openfolderinnewwindow":
case "cmd_setnewbookmarkfolder":
case "cmd_setpersonaltoolbarfolder":
case "cmd_setnewsearchfolder":
case "cmd_find":
case "cmd_import":
case "cmd_export":
case "cmd_bm_fileBookmark":
gBookmarksShell.execCommand(aCommand.substring("cmd_".length));
break;
case "cmd_bm_selectAll":
gBookmarksShell.tree.selectAll();
break;
}
},
onEvent: function (aEvent)
{
switch (aEvent) {
case "tree-select":
this.onCommandUpdate();
break;
}
},
onCommandUpdate: function ()
{
var commands = ["cmd_properties", "cmd_rename", "cmd_bm_copy",
"cmd_bm_paste", "cmd_bm_cut", "cmd_bm_delete",
"cmd_setpersonaltoolbarfolder",
"cmd_setnewbookmarkfolder",
"cmd_setnewsearchfolder", "cmd_bm_fileBookmark",
"cmd_openfolderinnewwindow", "cmd_openfolder"];
for (var i = 0; i < commands.length; ++i)
goUpdateCommand(commands[i]);
}
}
};
var newFolderRDFObserver = {
_newFolderURI: null,
onAssert: function (aDS, aSource, aProperty, aValue)
{
try {
var value = aValue.QueryInterface(Components.interfaces.nsIRDFResource);
if (aDS.URI == "rdf:bookmarks" && aProperty.Value == RDF_NS + "type" &&
value.Value == NC_NS + "Folder")
this._newFolderURI = aSource.Value;
}
catch (e) {
// Failures are OK, the value could be a literal instead of a resource.
}
},
onUnassert: function (aDS, aSource, aProperty, aTarget) { },
onChange: function (aDS, aSource, aProperty, aOldTarget, aNewTarget) { },
onMove: function (aDS, aOldSource, aNewSource, aProperty, aTarget) { },
beginUpdateBatch: function (aDS) { },
endUpdateBatch: function (aDS) { }
};

View File

@@ -1,97 +0,0 @@
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Ben Goodger <ben@netscape.com> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
const BMARKS_CONTRACTID = "@mozilla.org/browser/bookmarks-service;1";
const nsIBookmarksService = Components.interfaces.nsIBookmarksService;
var gOKButton;
var gSearchField;
function Startup()
{
var bundle = document.getElementById("bookmarksBundle");
gOKButton = document.documentElement.getButton("accept");
gOKButton.label = bundle.getString("search_button_label");
gOKButton.disabled = true;
gSearchField = document.getElementById("searchField");
gSearchField.focus();
}
var gCreatingNewWindow = false;
function find()
{
// Build up a find URI from the search fields and open a new window
// rooted on the URI.
var match = document.getElementById("matchList");
var method = document.getElementById("methodList");
var searchURI = "find:datasource=rdf:bookmarks"
searchURI += "&match=" + match.selectedItem.value;
searchURI += "&method=" + method.selectedItem.value;
searchURI += "&text=" + escape(gSearchField.value);
var bmWindow = findMostRecentWindow("bookmarks:searchresults", "chrome://communicator/content/bookmarks/bookmarks.xul", searchURI);
// Update the root of the tree if we're using an existing search window.
if (!gCreatingNewWindow)
bmWindow.document.getElementById("bookmarks-view").tree.setAttribute("ref", searchURI);
bmWindow.focus();
if (document.getElementById("saveQuery").checked == true)
{
var bundle = document.getElementById("bookmarksBundle");
var findTitle = bundle.stringBundle.formatStringFromName(
"ShortFindTitle", [gSearchField.value], 1);
var bmks = Components.classes[BMARKS_CONTRACTID].getService(nsIBookmarksService);
bmks.addBookmarkImmediately(searchURI, findTitle, bmks.BOOKMARK_FIND_TYPE, null);
}
return true;
}
function findMostRecentWindow(aType, aURI, aParam)
{
var WM = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
WM = WM.QueryInterface(Components.interfaces.nsIWindowMediator);
var topWindow = WM.getMostRecentWindow(aType);
if (!topWindow) gCreatingNewWindow = true;
return topWindow || openDialog("chrome://communicator/content/bookmarks/bookmarks.xul",
"", "chrome,all,dialog=no", aParam);
}
function doEnabling()
{
gOKButton.disabled = !gSearchField.value;
}

View File

@@ -1,69 +0,0 @@
<?xml version="1.0"?>
<!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com> (Original Author)
-->
<!--
"Find Bookmarks" window
-->
<?xml-stylesheet href="chrome://communicator/skin/"?>
<!DOCTYPE window SYSTEM "chrome://communicator/locale/bookmarks/findBookmark.dtd">
<dialog id="findBookmarkWindow" style="width: 36em;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&findBookmark.title;"
onload="Startup();"
ondialogaccept="return find();">
<stringbundle id="bookmarksBundle" src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
<script type="application/x-javascript" src="chrome://communicator/content/bookmarks/findBookmark.js"/>
<label value="&search.for.label;"/>
<hbox align="center">
<menulist id="matchList" class="menulist-toolbar">
<menupopup>
<menuitem value="http://home.netscape.com/NC-rdf#Name" label="&search.name.label;"/>
<menuitem value="http://home.netscape.com/NC-rdf#URL" label="&search.url.label;"/>
<menuitem value="http://home.netscape.com/NC-rdf#Description" label="&search.description.label;"/>
<menuitem value="http://home.netscape.com/NC-rdf#ShortcutURL" label="&search.shortcut.label;"/>
</menupopup>
</menulist>
<menulist id="methodList" class="menulist-toolbar">
<menupopup>
<menuitem value="contains" label="&search.contains.label;"/>
<menuitem value="startswith" label="&search.startswith.label;"/>
<menuitem value="endswith" label="&search.endswith.label;"/>
<menuitem value="is" label="&search.is.label;"/>
<menuitem value="isnot" label="&search.isnot.label;"/>
<menuitem value="doesntcontain" label="&search.doesntcontain.label;"/>
</menupopup>
</menulist>
<textbox id="searchField" flex="1" oninput="doEnabling();"/>
</hbox>
<checkbox id="saveQuery" label="&save.query.label;" />
</dialog>

View File

@@ -1,47 +0,0 @@
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
comm.jar:
content/communicator/bookmarks/addBookmark.xul
content/communicator/bookmarks/addBookmark.js
content/communicator/bookmarks/bm-props.js
content/communicator/bookmarks/bm-props.xul
content/communicator/bookmarks/bookmarksDD.js
content/communicator/bookmarks/bookmarks.xul
content/communicator/bookmarks/bookmarks.js
content/communicator/bookmarks/bookmarks.css
content/communicator/bookmarks/bookmarks.xml
content/communicator/bookmarks/bookmarksTree.js
content/communicator/bookmarks/bookmarksOverlay.xul
content/communicator/bookmarks/bookmarksOverlay.js
content/communicator/bookmarks/bm-panel.xul
content/communicator/bookmarks/bookmarksPanel.js
content/communicator/bookmarks/findBookmark.js
content/communicator/bookmarks/findBookmark.xul
content/communicator/bookmarks/pref-bookmarks.xul
content/communicator/bookmarks/oTest.xul
en-US.jar:
locale/en-US/communicator/bookmarks/addBookmark.dtd (locale/en-US/addBookmark.dtd)
locale/en-US/communicator/bookmarks/bm-props.dtd (locale/en-US/bm-props.dtd)
locale/en-US/communicator/bookmarks/bookmarks.dtd (locale/en-US/bookmarks.dtd)
locale/en-US/communicator/bookmarks/bookmark.properties (locale/en-US/bookmark.properties)
locale/en-US/communicator/bookmarks/bookmarksOverlay.dtd (locale/en-US/bookmarksOverlay.dtd)
locale/en-US/communicator/bookmarks/findBookmark.dtd (locale/en-US/findBookmark.dtd)
locale/en-US/communicator/bookmarks/pref-bookmarks.dtd (locale/en-US/pref-bookmarks.dtd)

View File

@@ -1,4 +0,0 @@
en-US:bm-find.dtd
en-US:bm-props.dtd
en-US:bookmarks.dtd
en-US:bookmark.properties

View File

@@ -1,4 +0,0 @@
bm-find.dtd
bm-props.dtd
bookmark.properties
bookmarks.dtd

View File

@@ -1,46 +0,0 @@
<!--
- The contents of this file are subject to the Mozilla Public
- License Version 1.1 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of
- the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is Mozilla Communicator.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corp. Portions created by Netscape Communications
- Corp. are Copyright (C) 1999 Netscape Communications Corp. All
- Rights Reserved.
-
- Contributor(s):
- Ben Goodger <ben@netscape.com> (Original Author)
-->
<!ENTITY newBookmark.title "Add Bookmark">
<!ENTITY newbookmark.label "&brandShortName; will add a bookmark to this page.">
<!ENTITY name.label "Name:">
<!ENTITY name.accesskey "n">
<!ENTITY url.label "Location:">
<!ENTITY url.accesskey "l">
<!ENTITY button.createin.label "Create In &gt;&gt;">
<!ENTITY button.createin.accesskey "c">
<!ENTITY button.createin2.label "Create In &lt;&lt;">
<!ENTITY createin.label "Create in:">
<!ENTITY createin.accesskey "i">
<!ENTITY button.newfolder.label "New Folder...">
<!ENTITY button.newfolder.accesskey "w">
<!ENTITY alwayscreateinfolder.label "Don't show this dialog again">
<!ENTITY alwayscreateinfolder.accesskey "a">
<!ENTITY dontshowmessage.tooltip "When this option is selected, new Bookmarks will be added using the title provided by the page.">
<!ENTITY button.defaultfolder.label "Use Default">
<!ENTITY button.defaultfolder.accesskey "d">
<!ENTITY selectFolder.label "Choose Folder">
<!ENTITY addGroup.label "Bookmark this group of tabs">
<!ENTITY addGroup.accesskey "B">

View File

@@ -1,92 +0,0 @@
<!--
- The contents of this file are subject to the Mozilla Public
- License Version 1.1 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of
- the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is Mozilla Communicator.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corp. Portions created by Netscape Communications
- Corp. are Copyright (C) 1999 Netscape Communications Corp. All
- Rights Reserved.
-
- Contributor(s): Stephen Lamm <slamm@netscape.com>
- Robert John Churchill <rjc@netscape.com>
- Ben Goodger <ben@netscape.com>
-->
<!ENTITY bookmarks.windowtitle.label "Properties for &quot;**bm_title**&quot;">
<!ENTITY generalInfo.label "Info">
<!ENTITY generalInfo.accesskey "i">
<!ENTITY generaldesc.label "&brandShortName; can remember the locations of sites on the Internet for you. Enter the site's name and location in the fields below, then select the site from the Bookmarks menu or your Bookmarks Sidebar tab to visit the site.">
<!ENTITY schedule.label "Schedule">
<!ENTITY schedule.accesskey "s">
<!ENTITY schedule.description "&brandShortName; can check this site for updates and notify you when one occurs. Use these settings to customize the schedule for this Bookmark.">
<!ENTITY notification.label "Notify">
<!ENTITY notification.accesskey "n">
<!-- ICK. fix me -->
<!ENTITY notification.description "&brandShortName; will notify you when this site changes. Use these settings to customize notification.">
<!ENTITY bookmarks.information.label "Information:">
<!ENTITY bookmarks.name.label "Name:">
<!ENTITY bookmarks.location.label "Location:">
<!ENTITY bookmarks.shortcut.label "Keyword:">
<!ENTITY bookmarks.description.label "Description:">
<!ENTITY checkforupdates.legend.label "Check this location for updates:">
<!ENTITY when.label "When:">
<!ENTITY from.label "from:">
<!ENTITY to.label "to: ">
<!ENTITY every.label "every">
<!ENTITY minutes.label "minute(s)">
<!ENTITY notifications.legend.label "Notification:">
<!ENTITY checknever.label "Never">
<!ENTITY checkeveryday.label "Every day">
<!ENTITY checkweekdays.label "Weekdays">
<!ENTITY checkweekends.label "Weekends">
<!ENTITY checkmondays.label "Mondays">
<!ENTITY checktuesdays.label "Tuesdays">
<!ENTITY checkwednesdays.label "Wednesdays">
<!ENTITY checkthursdays.label "Thursdays">
<!ENTITY checkfridays.label "Fridays">
<!ENTITY checksaturdays.label "Saturdays">
<!ENTITY checksundays.label "Sundays">
<!ENTITY midnight.label "Midnight">
<!ENTITY AMone.label "1 AM">
<!ENTITY AMtwo.label "2 AM">
<!ENTITY AMthree.label "3 AM">
<!ENTITY AMfour.label "4 AM">
<!ENTITY AMfive.label "5 AM">
<!ENTITY AMsix.label "6 AM">
<!ENTITY AMseven.label "7 AM">
<!ENTITY AMeight.label "8 AM">
<!ENTITY AMnine.label "9 AM">
<!ENTITY AMten.label "10 AM">
<!ENTITY AMeleven.label "11 AM">
<!ENTITY noon.label "Noon">
<!ENTITY PMone.label "1 PM">
<!ENTITY PMtwo.label "2 PM">
<!ENTITY PMthree.label "3 PM">
<!ENTITY PMfour.label "4 PM">
<!ENTITY PMfive.label "5 PM">
<!ENTITY PMsix.label "6 PM">
<!ENTITY PMseven.label "7 PM">
<!ENTITY PMeight.label "8 PM">
<!ENTITY PMnine.label "9 PM">
<!ENTITY PMten.label "10 PM">
<!ENTITY PMeleven.label "11 PM">
<!ENTITY notification.icon.label "Change the bookmark's icon">
<!ENTITY notification.sound.label "Play a sound">
<!ENTITY notification.alert.label "Display an alert">
<!ENTITY notification.window.label "Open web page in a new window">

View File

@@ -1,80 +0,0 @@
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
cmd_bm_open = Open
cmd_bm_openfolder = Expand
cmd_bm_openfolder2 = Collapse
cmd_bm_find = Find a Bookmark...
cmd_bm_cut = Cut
cmd_bm_copy = Copy
cmd_bm_paste = Paste
cmd_bm_delete = Delete
cmd_bm_selectAll = Select All
cmd_bm_rename = Rename...
cmd_bm_renamebookmark2 = Change Location...
cmd_bm_properties = Properties
cmd_bm_fileBookmark = File Bookmark(s)...
cmd_bm_openinnewwindow = Open in New Window
cmd_bm_newfolder = New Folder...
cmd_bm_newbookmark = New Bookmark...
cmd_bm_newseparator = New Separator
cmd_bm_setnewbookmarkfolder = Set as New Bookmark folder
cmd_bm_setpersonaltoolbarfolder = Set as Personal Toolbar folder
cmd_bm_setnewsearchfolder = Set as Saved Search Results folder
ile_newfolder = New Folder
ile_newbookmark = New Bookmark
newfolder_dialog_title = Create New Folder
newfolder_dialog_msg = Create a New Folder named:
window_title = %folder_name% - Bookmarks
search_results_title = Search Results
file_in = File in "%folder_name%"
bookmarks_root = Bookmarks for %user_name%
status_foldercount = %num_items% object(s)
WebPageUpdated = The following web page has been updated:
WebPageTitle = Title:
WebPageURL = URL:
WebPageAskDisplay = Would you like to display it?
WebPageAskStopOption = Stop checking for updates on this web page
pleaseEnterALocation = Please enter a location
pleaseEnterADuration = Please enter a duration.
pleaseSelectANotification = Please enter at least one notification method.
SortMenuItem = Sorted by %NAME%
ShortFindTitle = Find: '%S'
FindTitle = Find: %S %S '%S' in %S
ImportedIEFavorites = Imported IE Favorites
ImportedIEStaticFavorites = Imported IE Favorites
ImportedNetPositiveBookmarks = Imported NetPositive Bookmarks
DefaultPersonalToolbarFolder = Personal Toolbar Folder
SelectImport = Import bookmark file:
EnterExport = Export bookmark file:
search_button_label = Find

View File

@@ -1,87 +0,0 @@
<!--
- The contents of this file are subject to the Mozilla Public
- License Version 1.1 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of
- the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is Mozilla Communicator.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corp. Portions created by Netscape Communications
- Corp. are Copyright (C) 1999 Netscape Communications Corp. All
- Rights Reserved.
-
- Contributor(s):
- Stephen Lamm <slamm@netscape.com>
- Blake Ross <blakeross@telocity.com>
-->
<!-- extracted from ./bookmarks.xul -->
<!ENTITY menuBar.tooltip "Menu Bar">
<!ENTITY bookmarkToolbar.tooltip "Bookmark Toolbar">
<!ENTITY menuitem.newBookmark.label "Bookmark">
<!ENTITY command.newBookmark.accesskey "B">
<!ENTITY menuitem.newFolder.label "Folder">
<!ENTITY button.newFolder.label "New Folder">
<!ENTITY command.newFolder.accesskey "F">
<!ENTITY menuitem.newSeparator.label "Separator">
<!ENTITY button.newSeparator.label "New Separator">
<!ENTITY command.newSeparator.accesskey "S">
<!ENTITY menuitem.import.label "Import...">
<!ENTITY menuitem.import.accesskey "i">
<!ENTITY menuitem.export.label "Export...">
<!ENTITY menuitem.export.accesskey "e">
<!ENTITY menuitem.find.label "Search Bookmarks...">
<!ENTITY command.findBookmarks.label "Search...">
<!ENTITY menuitem.find.accesskey "S">
<!ENTITY edit.find.keybinding "f">
<!ENTITY command.properties.label "Properties...">
<!ENTITY command.properties.accesskey "r">
<!ENTITY edit.properties.keybinding "i">
<!ENTITY command.rename.label "Rename...">
<!ENTITY command.delete.label "Delete">
<!ENTITY command.fileBookmark.label "File Bookmark(s)...">
<!ENTITY command.fileBookmark.accesskey "l">
<!ENTITY command.addBookmark.label "Add...">
<!ENTITY command.manageBookmarks.label "Manage">
<!ENTITY menuitem.view.command.toolbar.label "Toolbar">
<!ENTITY menuitem.view.command.toolbar.accesskey "t">
<!ENTITY menuitem.view.unsorted.label "Unsorted">
<!ENTITY menuitem.view.unsorted.accesskey "u">
<!ENTITY menuitem.view.ascending.label "A > Z Sort Order">
<!ENTITY menuitem.view.ascending.accesskey "a">
<!ENTITY menuitem.view.descending.label "Z > A Sort Order">
<!ENTITY menuitem.view.descending.accesskey "z">
<!ENTITY menuitem.view.show_columns.label "Show columns">
<!ENTITY menuitem.view.show_columns.accesskey "S">
<!ENTITY menuitem.newbookmarkfolder.label "Set as New Bookmark Folder">
<!ENTITY menuitem.newbookmarkfolder.accesskey "b">
<!ENTITY menuitem.newinternetsearchfolder.label "Set as New Internet Search Folder">
<!ENTITY menuitem.newinternetsearchfolder.accesskey "i">
<!ENTITY menuitem.personaltoolbarfolder.label "Set as Personal Toolbar Folder">
<!ENTITY menuitem.personaltoolbarfolder.accesskey "p">
<!ENTITY treecol.name.label "Name">
<!ENTITY treecol.name.accesskey "n">
<!ENTITY treecol.url.label "Location">
<!ENTITY treecol.url.accesskey "l">
<!ENTITY treecol.shortcut.label "Keyword">
<!ENTITY treecol.shortcut.accesskey "k">
<!ENTITY treecol.addedon.label "Added">
<!ENTITY treecol.addedon.accesskey "a">
<!ENTITY treecol.lastmod.label "Last Modified">
<!ENTITY treecol.lastmod.accesskey "m">
<!ENTITY treecol.lastvisit.label "Last Visited">
<!ENTITY treecol.lastvisit.accesskey "b">
<!ENTITY treecol.description.label "Description">
<!ENTITY treecol.description.accesskey "d">
<!ENTITY bookmarksWindowTitle.label "Bookmark Manager">

View File

@@ -1,22 +0,0 @@
<!ENTITY findABookmark.label "Find a Bookmark...">
<!ENTITY findABookmark.accesskey "f">
<!ENTITY newBookmark.label "New Bookmark...">
<!ENTITY newBookmark.accesskey "n">
<!ENTITY newFolder.label "New Folder...">
<!ENTITY newFolder.accesskey "e">
<!ENTITY newSeparator.label "New Separator">
<!ENTITY newSeparator.accesskey "s">
<!ENTITY setAsNewBookmarkFolder.label "Set as new Bookmark folder">
<!ENTITY setAsNewBookmarkFolder.accesskey "b">
<!ENTITY setAsNewSearchFolder.label "Set as new Search Results folder">
<!ENTITY setAsNewSearchFolder.accesskey "r">
<!ENTITY setAsNewToolbarFolder.label "Set as new Personal Toolbar folder">
<!ENTITY setAsNewToolbarFolder.accesskey "p">
<!ENTITY exportBookmarks.label "Export...">
<!ENTITY exportBookmarks.accesskey "x">
<!ENTITY importBookmarks.label "Import...">
<!ENTITY importBookmarks.accesskey "i">

View File

@@ -1,15 +0,0 @@
<!ENTITY search.name.label "name">
<!ENTITY search.url.label "location">
<!ENTITY search.shortcut.label "keyword">
<!ENTITY search.description.label "description">
<!ENTITY search.startswith.label "starts with">
<!ENTITY search.endswith.label "ends with">
<!ENTITY search.is.label "is">
<!ENTITY search.isnot.label "is not">
<!ENTITY search.contains.label "contains">
<!ENTITY search.doesntcontain.label "doesn't contain">
<!ENTITY save.query.label "Save query in bookmarks">
<!ENTITY search.for.label "Find Bookmarks whose">
<!ENTITY findBookmark.title "Find Bookmarks">

View File

@@ -1,24 +0,0 @@
#!nmake
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is Mozilla Communicator client code, released
# March 31, 1998.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1999 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ..\..\..\..\..\..
include <$(DEPTH)\config\rules.mak>

View File

@@ -1,13 +0,0 @@
<!ENTITY lHeader "Bookmarks">
<!ENTITY filingBookmarks.label "Adding Bookmarks">
<!ENTITY autoFile.label "&brandShortName; will ask you to choose a title and folder when adding a new Bookmark.">
<!ENTITY enableAutoFile.label "Automatically set title and destination">
<!ENTITY defaultFolder.label "By default, all new Bookmarks will be added into this folder:">
<!ENTITY chooseDefaultFolder.label "Choose Folder...">
<!ENTITY chooseDefaultFolder.accesskey "c">
<!ENTITY extendedDataViews.label "Extended Data Views">
<!ENTITY extendedDataExplanation.label "&brandShortName; can display some types of special data (e.g. local file folders and ftp directories) in the bookmarks window or menu as folders, rather than as normal links.">
<!ENTITY showExtendedData.label "Show Extended Data as folders in the Bookmarks window and menu">
<!ENTITY showExtendedData.accesskey "x">

View File

@@ -1,27 +0,0 @@
#!nmake
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is Mozilla Communicator client code, released
# March 31, 1998.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1999 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ..\..\..\..\..
DIRS = en-US
include <$(DEPTH)\config\rules.mak>

View File

@@ -1,27 +0,0 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..\..\..
DIRS= locale
include <$(DEPTH)\config\rules.mak>

View File

@@ -1,29 +0,0 @@
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
packages/core.jar:
communicator/content/bookmarks/bm-find.js
communicator/content/bookmarks/bm-find.xul
communicator/content/bookmarks/bm-panel.js
communicator/content/bookmarks/bm-panel.xul
communicator/content/bookmarks/bm-props.js
communicator/content/bookmarks/bm-props.xul
communicator/content/bookmarks/bookmarks.js
communicator/content/bookmarks/bookmarksDD.js
communicator/content/bookmarks/bookmarks.xul

View File

@@ -1,162 +0,0 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://communicator/skin/"?>
<?xml-stylesheet href="chrome://communicator/content/bookmarks/oTest.css"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<window id="bookmarksTreeTest" width="640" height="480"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
orient="vertical"
onload="Startup();">
<script>
<![CDATA[
var bookmarksBuilderObserver = {
onToggleOpenState: function (aIndex) {
dump("*** onToggleOpenState(" + aIndex + ");\n");
},
onCycleHeader: function (aColID, aDOMElement) {
dump("*** onCycleHeader(" + aColID + ", " + aDOMElement + ");\n");
},
onCycleCell: function (aIndex, aColID) {
dump("*** onCycleCell(" + aIndex + ", " + aColID + ");\n");
},
onSelectionChanged: function () {
dump("*** onSelectionChanged\n");
},
isEditable: function (aIndex, aColID) {
dump("*** isEditable(" + aIndex + ", " + aColID + ");\n");
return aColID == "NameColumn";
},
onSetCellText: function (aIndex, aColID, aValue) {
dump("*** onSetCellText(" + aIndex + ", " + aColID + ", " + aValue + ");\n");
},
onPerformAction: function (aAction) {
dump("*** onPerformAction(" + aAction + ");\n");
},
onPerformActionOnRow: function (aAction, aIndex) {
dump("*** onPerformActionOnRow(" + aAction + ", " + aIndex + ");\n");
},
onPerformActionOnCell: function (aAction, aIndex, aColID) {
dump("*** onPerformActionOnCell(" + aAction + ", " + aIndex + ", " + aColID + ");\n");
}
};
function Startup()
{
var tree = document.getElementById("tree");
var builder = tree.builder.QueryInterface(Components.interfaces.nsIXULTreeBuilder);
builder.addObserver(bookmarksBuilderObserver);
}
function getItemRect(aEvent)
{
var tree = document.getElementById("tree-proper");
var obo = tree.boxObject.QueryInterface(Components.interfaces.nsITreeBoxObject);
var row = { };
var col = { };
var elt = { };
obo.getCellAt(aEvent.clientX, aEvent.clientY, row, col, elt);
var x = { };
var y = { };
var w = { };
var h = { };
var crp = { };
obo.getCoordsForCellItem(row.value, col.value, elt.value, x, y, w, h, crp);
dump("*** (x,y) = (" + x.value + "," + y.value + "); (w,h) = (" + w.value + "," + h.value + ");\n");
}
const kRDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
function createContextMenu (aEvent)
{
var tree = document.getElementById("tree-proper");
var obo = tree.boxObject.QueryInterface(Components.interfaces.nsITreeBoxObject);
var row = { };
var col = { };
var elt = { };
obo.getCellAt(aEvent.clientX, aEvent.clientY, row, col, elt);
dump("*** row.value = " + row.value + "\n")
var treeBody = document.getElementById("tree");
var rowResource = treeBody.builder.getResourceAtIndex(row.value);
const kRDFSvcContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFSvcIID = Components.interfaces.nsIRDFService;
const kRDFSvc = Components.classes[kRDFSvcContractID].getService(kRDFSvcIID);
var database = treeBody.database;
const krType = kRDFSvc.GetResource(kRDF_NS + "type");
var typeNode = kDatabase.GetTarget(rowResource, krType, true);
typeNode = typeNode.QueryInterface(Components.interfaces.nsIRDFResource);
dump("*** typeNode = " + typeNode.Value + "\n");
aEvent.preventBubble();
}
]]>
</script>
<popupset id="contextSet">
<popup id="bookmarkContextMenu" onpopupshowing="createContextMenu(event);"/>
</popupset>
<toolbox>
<toolbar>
<button class="button-toolbar-2" label="Foopy Noopy" oncommand="alert('hi');"/>
</toolbar>
</toolbox>
<stack>
<button label="Foopy Noopy" flex="1"/>
<bulletinboard flex="1">
<textbox value="NerpNerp" left="10" top="50" onblur="this.setAttribute('hidden','true');"/>
</bulletinboard>
</stack>
<tree flex="1" flags="dont-test-empty" id="tree-proper">
<treecols>
<treecol id="NameColumn"
class="treecol-header treecol-inset-header sortDirectionIndicator"
flex="1"
sort="rdf:http://home.netscape.com/NC-rdf#Name"
sortActive="true"
label="Name"
persist="width hidden sortActive sortDirection"
primary="true" />
<splitter class="tree-splitter"/>
<treecol id="URLColumn"
class="treecol-header treecol-inset-header sortDirectionIndicator"
flex="1"
sort="rdf:http://home.netscape.com/NC-rdf#URL"
label="Location"
persist="width hidden sortActive sortDirection" />
</treecols>
<treebody id="tree" datasources="rdf:bookmarks rdf:internetsearch rdf:files" flex="1"
onclick="getItemRect(event);" ref="NC:BookmarksRoot">
<template>
<treerow uri="rdf:*" properties="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type rdf:http://home.netscape.com/NC-rdf#loading">
<treecell ref="NameColumn"
label="rdf:http://home.netscape.com/NC-rdf#Name" />
<treecell ref="URLColumn"
label="rdf:http://home.netscape.com/NC-rdf#URL" />
</treerow>
</template>
</treebody>
</tree>
</window>

View File

@@ -1,116 +0,0 @@
<?xml version="1.0"?>
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is Mozilla Communicator client code, released
March 31, 1998.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998-1999 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
-->
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<!DOCTYPE window [
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
%brandDTD;
<!ENTITY % prefBookmarkDTD SYSTEM "chrome://communicator/locale/bookmarks/pref-bookmarks.dtd">
%prefBookmarkDTD;
]>
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="parent.initPanel('chrome://communicator/content/bookmarks/pref-bookmarks.xul');"
headertitle="&lHeader;">
<script type="application/x-javascript">
<![CDATA[
var _elementIDs = ["enableAutoFile", "showExtendedData"];
var gCreateInFolder = "NC:NewBookmarkFolder";
function Startup ()
{
const kDisplay = document.getElementById("defaultFolder");
const kRDFSvcContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFSvcIID = Components.interfaces.nsIRDFService;
const kRDFSvc = Components.classes[kRDFSvcContractID].getService(kRDFSvcIID);
const kBMDS = kRDFSvc.GetDataSource("rdf:bookmarks");
const krDefaultFolder = kRDFSvc.GetResource("NC:NewBookmarkFolder");
const krType = kRDFSvc.GetResource("http://www.w3.org/1999/02/22-rdf-syntax-ns#type");
const krFolder = kRDFSvc.GetResource("http://home.netscape.com/NC-rdf#Folder");
const isFolder = kBMDS.HasAssertion(krDefaultFolder, krType, krFolder, true);
const krNameArc = kRDFSvc.GetResource("http://home.netscape.com/NC-rdf#Name");
if (!isFolder) {
const krRoot = kRDFSvc.GetResource("NC:BookmarksRoot");
gCreateInFolder = "NC:BookmarksRoot";
}
var rName = kBMDS.GetTarget(isFolder ? krDefaultFolder : krRoot, krNameArc, true);
rName = rName.QueryInterface(Components.interfaces.nsIRDFLiteral);
kDisplay.value = rName.Value;
}
function chooseDefaultFolder ()
{
var rv = { selectedFolder: null };
openDialog("chrome://communicator/content/bookmarks/addBookmark.xul", "",
"centerscreen,chrome,dialog=no,resizable=no",
null, null, gCreateInFolder, null, "selectFolder", rv);
if (rv && rv.selectedFolder) {
const kRDFSvcContractID = "@mozilla.org/rdf/rdf-service;1";
const kRDFSvcIID = Components.interfaces.nsIRDFService;
const kRDFSvc = Components.classes[kRDFSvcContractID].getService(kRDFSvcIID);
const kBMDS = kRDFSvc.GetDataSource("rdf:bookmarks");
const krDefaultFolder = kRDFSvc.GetResource(rv.selectedFolder);
const krNameArc = kRDFSvc.GetResource("http://home.netscape.com/NC-rdf#Name");
rName = kBMDS.GetTarget(krDefaultFolder, krNameArc, true);
rName = rName.QueryInterface(Components.interfaces.nsIRDFLiteral);
document.getElementById("defaultFolder").value = rName.Value;
}
}
]]>
</script>
<groupbox>
<caption label="&filingBookmarks.label;"/>
<description flex="1">&autoFile.label;</description>
<hbox align="center">
<checkbox id="enableAutoFile" label="&enableAutoFile.label;"
preftype="bool" prefstring="browser.bookmarks.add_without_dialog"
prefattribute="checked"/>
</hbox>
<separator/>
<description flex="1">&defaultFolder.label;</description>
<hbox align="center">
<textbox readonly="true" id="defaultFolder" crop="right" flex="1"/>
<button label="&chooseDefaultFolder.label;" accesskey="&chooseDefaultFolder.accesskey;"
oncommand="chooseDefaultFolder();"
id="browser.bookmarks.choosefolder" preftype="bool"
prefstring="pref.browser.homepage.disable_button.choose_folder" prefattribute="disabled"/>
</hbox>
</groupbox>
<groupbox>
<caption label="&extendedDataViews.label;"/>
<vbox align="start">
<description>&extendedDataExplanation.label;</description>
<checkbox id="showExtendedData" label="&showExtendedData.label;"
accesskey="&showExtendedData.accesskey;"
preftype="bool" prefstring="browser.bookmarks.show_extended_data"
prefattribute="checked"/>
</vbox>
</groupbox>
</page>

View File

@@ -1,54 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = appcomps
LIBRARY_NAME = bookmarks_s
REQUIRES = xpcom \
string \
rdf \
appshell \
widget \
necko \
nkcache \
uconv \
pref \
dom \
intl \
webshell \
windowwatcher \
unicharutil \
$(NULL)
CPPSRCS = nsBookmarksService.cpp
# we don't want the shared lib, but we want to force the creation of a
# static lib.
FORCE_STATIC_LIB = 1
include $(topsrcdir)/config/rules.mk

View File

@@ -1,58 +0,0 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..\..\..
MODULE=bookmarks
REQUIRES = xpcom \
string \
rdf \
appshell \
widget \
necko \
nkcache \
uconv \
pref \
dom \
intl \
webshell \
windowwatcher \
unicharutil \
$(NULL)
CPP_OBJS= \
.\$(OBJDIR)\nsBookmarksService.obj \
$(NULL)
LIBRARY_NAME=bookmarks_s
LCFLAGS = \
$(LCFLAGS) \
$(DEFINES) \
$(NULL)
include <$(DEPTH)\config\rules.mak>
libs:: $(LIBRARY)
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
clobber::
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib

File diff suppressed because it is too large Load Diff

View File

@@ -1,258 +0,0 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef bookmarksservice___h___
#define bookmarksservice___h___
#include "nsIRDFDataSource.h"
#include "nsIRDFRemoteDataSource.h"
#include "nsIStreamListener.h"
#include "nsIRDFObserver.h"
#include "nsISupportsArray.h"
#include "nsIStringBundle.h"
#include "nsITimer.h"
#include "nsIRDFNode.h"
#include "nsIBookmarksService.h"
#include "nsString.h"
#include "nsIFileSpec.h"
#include "nsIObserver.h"
#include "nsWeakReference.h"
#include "nsIIOService.h"
#include "nsICacheService.h"
#include "nsICacheSession.h"
#include "nsILocalFile.h"
#ifdef DEBUG
#ifdef XP_MAC
#include <Timer.h>
#endif
#endif
class nsBookmarksService : public nsIBookmarksService,
public nsIRDFDataSource,
public nsIRDFRemoteDataSource,
public nsIStreamListener,
public nsIRDFObserver,
public nsIObserver,
public nsSupportsWeakReference
{
protected:
nsIRDFDataSource* mInner;
nsCOMPtr<nsIRDFResource> busyResource;
nsCOMPtr<nsISupportsArray> mObservers;
nsCOMPtr<nsIStringBundle> mBundle;
nsCOMPtr<nsITimer> mTimer;
nsCOMPtr<nsIIOService> mNetService;
nsCOMPtr<nsICacheService> mCacheService;
nsCOMPtr<nsICacheSession> mCacheSession;
PRUint32 htmlSize;
PRInt32 mUpdateBatchNest;
nsString mPersonalToolbarName;
PRBool mBookmarksAvailable;
PRBool mDirty;
PRBool mBrowserIcons;
PRBool busySchedule;
// System Bookmark parsing
#ifdef XP_WIN
// @param aDirectory - Favorites Folder to import from.
// @param aParentResource - Folder into which to place imported
// Favorites.
nsresult ParseFavoritesFolder(nsIFile* aDirectory,
nsIRDFResource* aParentResource);
#elif XP_MAC
PRBool mIEFavoritesAvailable;
nsresult ReadFavorites();
#endif
#if defined(XP_WIN) || defined(XP_MAC)
void HandleSystemBookmarks(nsIRDFNode* aNode);
#endif
static void FireTimer(nsITimer* aTimer, void* aClosure);
nsresult ExamineBookmarkSchedule(nsIRDFResource *theBookmark, PRBool & examineFlag);
nsresult GetBookmarkToPing(nsIRDFResource **theBookmark);
nsresult GetBookmarksFile(nsFileSpec* aResult);
nsresult WriteBookmarks(nsFileSpec *bookmarksFile, nsIRDFDataSource *ds, nsIRDFResource *root);
nsresult WriteBookmarksContainer(nsIRDFDataSource *ds, nsOutputFileStream& strm, nsIRDFResource *container, PRInt32 level, nsISupportsArray *parentArray);
nsresult GetTextForNode(nsIRDFNode* aNode, nsString& aResult);
nsresult GetSynthesizedType(nsIRDFResource *aNode, nsIRDFNode **aType);
nsresult UpdateBookmarkLastModifiedDate(nsIRDFResource *aSource);
nsresult WriteBookmarkProperties(nsIRDFDataSource *ds, nsOutputFileStream& strm, nsIRDFResource *node,
nsIRDFResource *property, const char *htmlAttrib, PRBool isFirst);
PRBool CanAccept(nsIRDFResource* aSource, nsIRDFResource* aProperty, nsIRDFNode* aTarget);
nsresult getArgumentN(nsISupportsArray *arguments, nsIRDFResource *res, PRInt32 offset, nsIRDFNode **argValue);
nsresult insertBookmarkItem(nsIRDFResource *src, nsISupportsArray *aArguments, nsIRDFResource *objType);
nsresult deleteBookmarkItem(nsIRDFResource *src, nsISupportsArray *aArguments, PRInt32 parentArgIndex, nsIRDFResource *objType);
nsresult setFolderHint(nsIRDFResource *src, nsIRDFResource *objType);
nsresult getFolderViaHint(nsIRDFResource *src, PRBool fallbackFlag, nsIRDFResource **folder);
nsresult importBookmarks(nsISupportsArray *aArguments);
nsresult exportBookmarks(nsISupportsArray *aArguments);
nsresult ProcessCachedBookmarkIcon(nsIRDFResource* aSource, const PRUnichar *iconURL, nsIRDFNode** aTarget);
nsresult getResourceFromLiteralNode(nsIRDFNode *node, nsIRDFResource **res);
void AnnotateBookmarkSchedule(nsIRDFResource* aSource, PRBool scheduleFlag);
nsresult IsBookmarkedInternal(nsIRDFResource *bookmark, PRBool *isBookmarkedFlag);
nsresult ChangeURL(nsIRDFResource* aOldURL,
nsIRDFResource* aNewURL);
nsresult getLocaleString(const char *key, nsString &str);
nsresult CreateFolderWithDetails(const PRUnichar* aName,
nsIRDFResource* aParentFolder, PRInt32 aIndex,
nsIRDFResource** aResult, PRBool aIsGroup);
nsresult LoadBookmarks();
nsresult initDatasource();
// nsIStreamObserver methods:
NS_DECL_NSIREQUESTOBSERVER
// nsIStreamListener methods:
NS_DECL_NSISTREAMLISTENER
// nsIObserver methods:
NS_DECL_NSIOBSERVER
public:
nsBookmarksService();
virtual ~nsBookmarksService();
nsresult Init();
// nsISupports
NS_DECL_ISUPPORTS
// nsIBookmarksService
NS_DECL_NSIBOOKMARKSSERVICE
// nsIRDFDataSource
NS_IMETHOD GetURI(char* *uri);
NS_IMETHOD GetSource(nsIRDFResource* property,
nsIRDFNode* target,
PRBool tv,
nsIRDFResource** source) {
return mInner->GetSource(property, target, tv, source);
}
NS_IMETHOD GetSources(nsIRDFResource* property,
nsIRDFNode* target,
PRBool tv,
nsISimpleEnumerator** sources) {
return mInner->GetSources(property, target, tv, sources);
}
NS_IMETHOD GetTarget(nsIRDFResource* source,
nsIRDFResource* property,
PRBool tv,
nsIRDFNode** target);
NS_IMETHOD GetTargets(nsIRDFResource* source,
nsIRDFResource* property,
PRBool tv,
nsISimpleEnumerator** targets) {
return mInner->GetTargets(source, property, tv, targets);
}
NS_IMETHOD Assert(nsIRDFResource* aSource,
nsIRDFResource* aProperty,
nsIRDFNode* aTarget,
PRBool aTruthValue);
NS_IMETHOD Unassert(nsIRDFResource* aSource,
nsIRDFResource* aProperty,
nsIRDFNode* aTarget);
NS_IMETHOD Change(nsIRDFResource* aSource,
nsIRDFResource* aProperty,
nsIRDFNode* aOldTarget,
nsIRDFNode* aNewTarget);
NS_IMETHOD Move(nsIRDFResource* aOldSource,
nsIRDFResource* aNewSource,
nsIRDFResource* aProperty,
nsIRDFNode* aTarget);
NS_IMETHOD HasAssertion(nsIRDFResource* source,
nsIRDFResource* property,
nsIRDFNode* target,
PRBool tv,
PRBool* hasAssertion);
NS_IMETHOD AddObserver(nsIRDFObserver* aObserver);
NS_IMETHOD RemoveObserver(nsIRDFObserver* aObserver);
NS_IMETHOD HasArcIn(nsIRDFNode *aNode, nsIRDFResource *aArc, PRBool *_retval);
NS_IMETHOD HasArcOut(nsIRDFResource *aSource, nsIRDFResource *aArc, PRBool *_retval);
NS_IMETHOD ArcLabelsIn(nsIRDFNode* node,
nsISimpleEnumerator** labels) {
return mInner->ArcLabelsIn(node, labels);
}
NS_IMETHOD ArcLabelsOut(nsIRDFResource* source,
nsISimpleEnumerator** labels);
NS_IMETHOD GetAllResources(nsISimpleEnumerator** aResult);
NS_IMETHOD GetAllCommands(nsIRDFResource* source,
nsIEnumerator/*<nsIRDFResource>*/** commands);
NS_IMETHOD GetAllCmds(nsIRDFResource* source,
nsISimpleEnumerator/*<nsIRDFResource>*/** commands);
NS_IMETHOD IsCommandEnabled(nsISupportsArray/*<nsIRDFResource>*/* aSources,
nsIRDFResource* aCommand,
nsISupportsArray/*<nsIRDFResource>*/* aArguments,
PRBool* aResult);
NS_IMETHOD DoCommand(nsISupportsArray/*<nsIRDFResource>*/* aSources,
nsIRDFResource* aCommand,
nsISupportsArray/*<nsIRDFResource>*/* aArguments);
// nsIRDFRemoteDataSource
NS_DECL_NSIRDFREMOTEDATASOURCE
// nsIRDFObserver
NS_DECL_NSIRDFOBSERVER
};
#endif // bookmarksservice___h___

View File

@@ -1,121 +0,0 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = appcomps
LIBRARY_NAME = appcomps
EXPORT_LIBRARY = 1
IS_COMPONENT = 1
MODULE_NAME = application
REQUIRES = xpcom \
string \
content \
rdf \
necko \
necko2 \
nkcache \
intl \
locale \
mork \
widget \
dom \
downloadmanager \
alerts\
uriloader \
mimetype \
webbrowserpersist \
progressDlg \
pref \
docshell \
webshell \
appshell \
history \
$(NULL)
CPPSRCS = nsModule.cpp
ifdef MOZ_LDAP_XPCOM
REQUIRES += mozldap
DEFINES += -DMOZ_LDAP_XPCOM
endif
ifdef MOZ_PERF_METRICS
EXTRA_DSO_LIBS += mozutil_s
endif
SHARED_LIBRARY_LIBS = \
$(DIST)/lib/$(LIB_PREFIX)autocomplete_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)bookmarks_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)directory_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)downloadmanager_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)history_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)appcompintl_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)related_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)search_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)urlbarhistory_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)timebomb_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)windowds_s.$(LIB_SUFFIX) \
$(NULL)
LOCAL_INCLUDES = \
-I$(srcdir)/../autocomplete/src \
-I$(srcdir)/../bookmarks/src \
-I$(srcdir)/../directory \
-I$(srcdir)/../download-manager/src \
-I$(srcdir)/../history/src \
-I$(srcdir)/../related/src \
-I$(srcdir)/../search/src \
-I$(srcdir)/../timebomb \
-I$(srcdir)/../urlbarhistory/src \
-I$(srcdir)/../windowds \
$(NULL)
ifeq ($(OS_ARCH),WINNT)
DEFINES += -DWIN32_LEAN_AND_MEAN
SHARED_LIBRARY_LIBS += \
$(DIST)/lib/$(LIB_PREFIX)urlwidgt_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)winhooks_s.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)alerts_s.$(LIB_SUFFIX) \
$(NULL)
OS_LIBS += ole32.lib shell32.lib
LOCAL_INCLUDES += \
-I$(srcdir)/../urlwidget \
-I$(srcdir)/../winhooks \
-I$(srcdir)/../alerts/src \
$(NULL)
endif
EXTRA_DSO_LDOPTS = \
$(MOZ_COMPONENT_LIBS) \
$(EXTRA_DSO_LIBS) \
$(MOZ_UNICHARUTIL_LIBS) \
$(MOZ_JS_LIBS) \
$(NULL)
include $(topsrcdir)/config/rules.mk

View File

@@ -1,112 +0,0 @@
#!gmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..\..
MODULE=appcomps
LIBRARY_NAME=appcomps
MODULE_NAME=application
REQUIRES = xpcom \
string \
rdf \
necko \
necko2 \
nkcache \
intl \
locale \
mork \
widget \
dom \
pref \
docshell \
downloadmanager \
webshell \
timebomb \
bookmarks \
content \
history \
search \
alerts \
progressDlg \
related \
urlbarhistory \
uriloader \
mimetype \
mozldap \
webbrowserpersist \
appshell \
$(NULL)
LCFLAGS = -DWIN32_LEAN_AND_MEAN
!if !defined(DISABLE_LDAP)
LCFLAGS = $(LCFLAGS) -DMOZ_LDAP_XPCOM
!endif
CPP_OBJS= \
.\$(OBJDIR)\nsModule.obj \
$(NULL)
SUB_LIBRARIES= \
$(DIST)\lib\autocomplete_s.lib \
$(DIST)\lib\bookmarks_s.lib \
$(DIST)\lib\directory_s.lib \
$(DIST)\lib\downloadmanager_s.lib \
$(DIST)\lib\history_s.lib \
$(DIST)\lib\appcompintl_s.lib \
$(DIST)\lib\related_s.lib \
$(DIST)\lib\search_s.lib \
$(DIST)\lib\alerts_s.lib \
$(DIST)\lib\timebomb_s.lib \
$(DIST)\lib\urlbarhistory_s.lib \
$(DIST)\lib\urlwidgt_s.lib \
$(DIST)\lib\windowds_s.lib \
$(DIST)\lib\winhooks_s.lib \
$(NULL)
WIN_LIBS = \
ole32.lib \
shell32.lib \
$(NULL)
LLIBS= \
$(DIST)\lib\js3250.lib \
$(DIST)\lib\xpcom.lib \
$(DIST)\lib\unicharutil_s.lib \
$(LIBNSPR) \
$(NULL)
INCS = $(INCS) \
-I$(DEPTH)\xpfe\components\autocomplete\src \
-I$(DEPTH)\xpfe\components\bookmarks\src \
-I$(DEPTH)\xpfe\components\directory \
-I$(DEPTH)\xpfe\components\download-manager\src \
-I$(DEPTH)\xpfe\components\history\src \
-I$(DEPTH)\xpfe\components\related\src \
-I$(DEPTH)\xpfe\components\search\src \
-I$(DEPTH)\xpfe\components\timebomb \
-I$(DEPTH)\xpfe\components\urlbarhistory\src \
-I$(DEPTH)\xpfe\components\urlwidget \
-I$(DEPTH)\xpfe\components\windowds \
-I$(DEPTH)\xpfe\components\winhooks \
-I$(DEPTH)\xpfe\components\alerts\src \
$(NULL)
include <$(DEPTH)\config\rules.mak>

View File

@@ -1,207 +0,0 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "nsIGenericFactory.h"
#include "nsICategoryManager.h"
#include "nsAutoComplete.h"
#include "nsBookmarksService.h"
#include "nsDirectoryViewer.h"
#include "nsDownloadManager.h"
#include "nsDownloadProxy.h"
#include "nsGlobalHistory.h"
#include "rdf.h"
#include "nsTimeBomb.h"
#include "nsLocalSearchService.h"
#include "nsInternetSearchService.h"
#include "nsRelatedLinksHandlerImpl.h"
#include "nsUrlbarHistory.h"
#include "nsXPIDLString.h"
#include "nsCharsetMenu.h"
#include "nsFontPackageHandler.h"
#include "nsWindowDataSource.h"
#if defined(XP_WIN)
#include "nsAlertsService.h"
#include "nsUrlWidget.h"
#include "nsWindowsHooks.h"
#endif // Windows
#if defined(MOZ_LDAP_XPCOM)
#include "nsLDAPAutoCompleteSession.h"
#endif
// Factory constructors
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAutoCompleteItem)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAutoCompleteResults)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsBookmarksService, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHTTPIndex, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDirectoryViewerFactory)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsDownloadManager, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDownloadProxy)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsGlobalHistory, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(LocalSearchDataSource, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(InternetSearchDataSource, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(RelatedLinksHandlerImpl, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsTimeBomb)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsUrlbarHistory)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsFontPackageHandler)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsWindowDataSource, Init)
#if defined(XP_WIN)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAlertsService)
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsUrlWidget, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsWindowsHooks)
#endif // Windows
#if defined(MOZ_LDAP_XPCOM)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsLDAPAutoCompleteSession)
#endif
static NS_METHOD
RegisterProc(nsIComponentManager *aCompMgr,
nsIFile *aPath,
const char *registryLocation,
const char *componentType,
const nsModuleComponentInfo *info)
{
nsresult rv;
nsCOMPtr<nsICategoryManager> catman = do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
if (NS_FAILED(rv)) return rv;
// add the MIME types layotu can handle to the handlers category.
// this allows users of layout's viewers (the docshell for example)
// to query the types of viewers layout can create.
nsXPIDLCString previous;
rv = catman->AddCategoryEntry("Gecko-Content-Viewers", "application/http-index-format",
NS_DOCUMENT_LOADER_FACTORY_CONTRACTID_PREFIX "view;1?type=application/http-index-format",
PR_TRUE,
PR_TRUE,
getter_Copies(previous));
if (NS_FAILED(rv)) return rv;
rv = catman->AddCategoryEntry("Gecko-Content-Viewers", "application/http-index-format; x-view-type=view-source",
NS_DOCUMENT_LOADER_FACTORY_CONTRACTID_PREFIX "view;1?type=application/http-index-format; x-view-type=view-source",
PR_TRUE,
PR_TRUE,
getter_Copies(previous));
return rv;
}
static NS_METHOD
UnregisterProc(nsIComponentManager *aCompMgr,
nsIFile *aPath,
const char *registryLocation,
const nsModuleComponentInfo *info)
{
nsresult rv;
nsCOMPtr<nsICategoryManager> catman = do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
if (NS_FAILED(rv)) return rv;
rv = catman->DeleteCategoryEntry("Gecko-Content-Viewers",
"application/http-index-format", PR_TRUE);
if (NS_FAILED(rv)) return rv;
rv = catman->DeleteCategoryEntry("Gecko-Content-Viewers",
"application/http-index-format; x-view-type=view-source", PR_TRUE);
return rv;
}
static const nsModuleComponentInfo components[] = {
{ "AutoComplete Search Results", NS_AUTOCOMPLETERESULTS_CID, NS_AUTOCOMPLETERESULTS_CONTRACTID,
nsAutoCompleteResultsConstructor},
{ "AutoComplete Search Item", NS_AUTOCOMPLETEITEM_CID, NS_AUTOCOMPLETEITEM_CONTRACTID,
nsAutoCompleteItemConstructor},
{ "Bookmarks", NS_BOOKMARKS_SERVICE_CID, NS_BOOKMARKS_SERVICE_CONTRACTID,
nsBookmarksServiceConstructor },
{ "Bookmarks", NS_BOOKMARKS_SERVICE_CID, NS_BOOKMARKS_DATASOURCE_CONTRACTID,
nsBookmarksServiceConstructor },
{ "Directory Viewer", NS_DIRECTORYVIEWERFACTORY_CID,
NS_DOCUMENT_LOADER_FACTORY_CONTRACTID_PREFIX "view;1?type=application/http-index-format",
nsDirectoryViewerFactoryConstructor, RegisterProc, UnregisterProc },
{ "Directory Viewer", NS_DIRECTORYVIEWERFACTORY_CID,
NS_DOCUMENT_LOADER_FACTORY_CONTRACTID_PREFIX "view;1?type=application/http-index-format; x-view-type=view-source",
nsDirectoryViewerFactoryConstructor }, // Let the standard type do the registration
{ "Directory Viewer", NS_HTTPINDEX_SERVICE_CID, NS_HTTPINDEX_SERVICE_CONTRACTID,
nsHTTPIndexConstructor },
{ "Directory Viewer", NS_HTTPINDEX_SERVICE_CID, NS_HTTPINDEX_DATASOURCE_CONTRACTID,
nsHTTPIndexConstructor },
{ "Download Manager", NS_DOWNLOADMANAGER_CID, NS_DOWNLOADMANAGER_CONTRACTID,
nsDownloadManagerConstructor },
{ "Download", NS_DOWNLOAD_CID, NS_DOWNLOAD_CONTRACTID,
nsDownloadProxyConstructor },
{ "Global History", NS_GLOBALHISTORY_CID, NS_GLOBALHISTORY_CONTRACTID,
nsGlobalHistoryConstructor },
{ "Global History", NS_GLOBALHISTORY_CID, NS_GLOBALHISTORY_DATASOURCE_CONTRACTID,
nsGlobalHistoryConstructor },
{ "Global History", NS_GLOBALHISTORY_CID, NS_GLOBALHISTORY_AUTOCOMPLETE_CONTRACTID,
nsGlobalHistoryConstructor },
{ "Local Search", NS_RDFFINDDATASOURCE_CID,
NS_LOCALSEARCH_SERVICE_CONTRACTID, LocalSearchDataSourceConstructor },
{ "Local Search", NS_RDFFINDDATASOURCE_CID,
NS_LOCALSEARCH_DATASOURCE_CONTRACTID, LocalSearchDataSourceConstructor },
{ "Internet Search", NS_RDFSEARCHDATASOURCE_CID,
NS_INTERNETSEARCH_SERVICE_CONTRACTID, InternetSearchDataSourceConstructor },
{ "Internet Search", NS_RDFSEARCHDATASOURCE_CID,
NS_INTERNETSEARCH_DATASOURCE_CONTRACTID, InternetSearchDataSourceConstructor },
{ "Related Links Handler", NS_RELATEDLINKSHANDLER_CID, NS_RELATEDLINKSHANDLER_CONTRACTID,
RelatedLinksHandlerImplConstructor},
{ "Netscape TimeBomb", NS_TIMEBOMB_CID, NS_TIMEBOMB_CONTRACTID, nsTimeBombConstructor},
{ "nsUrlbarHistory", NS_URLBARHISTORY_CID,
NS_URLBARHISTORY_CONTRACTID, nsUrlbarHistoryConstructor },
{ "nsUrlbarHistory", NS_URLBARHISTORY_CID,
NS_URLBARAUTOCOMPLETE_CONTRACTID, nsUrlbarHistoryConstructor },
{ "nsCharsetMenu", NS_CHARSETMENU_CID,
NS_RDF_DATASOURCE_CONTRACTID_PREFIX NS_CHARSETMENU_PID,
NS_NewCharsetMenu },
{ "nsFontPackageHandler", NS_FONTPACKAGEHANDLER_CID,
"@mozilla.org/locale/default-font-package-handler;1",
nsFontPackageHandlerConstructor },
{ "nsWindowDataSource",
NS_WINDOWDATASOURCE_CID,
NS_RDF_DATASOURCE_CONTRACTID_PREFIX "window-mediator",
nsWindowDataSourceConstructor },
#if defined(XP_WIN)
{ NS_IURLWIDGET_CLASSNAME, NS_IURLWIDGET_CID, NS_IURLWIDGET_CONTRACTID,
nsUrlWidgetConstructor },
{ "nsAlertsService", NS_ALERTSSERVICE_CID, NS_ALERTSERVICE_CONTRACTID, nsAlertsServiceConstructor},
{ NS_IWINDOWSHOOKS_CLASSNAME, NS_IWINDOWSHOOKS_CID, NS_IWINDOWSHOOKS_CONTRACTID,
nsWindowsHooksConstructor },
#endif // Windows
#if defined(MOZ_LDAP_XPCOM)
{ "LDAP Autocomplete Session", NS_LDAPAUTOCOMPLETESESSION_CID,
"@mozilla.org/autocompleteSession;1?type=ldap",
nsLDAPAutoCompleteSessionConstructor },
#endif
};
NS_IMPL_NSGETMODULE(application, components)

View File

@@ -1,256 +0,0 @@
?StartAssignment@?$nsMdbPtr@VnsIMdbThumb@@@@QAEPAPAVnsIMdbThumb@@XZ ; 18413
??1?$nsMdbPtr@VnsIMdbRow@@@@QAE@XZ ; 18363
?assign_assuming_AddRef@nsCOMPtr_base@@IAEXPAVnsISupports@@@Z ; 12166
?ExamineBookmarkSchedule@nsBookmarksService@@IAEIPAVnsIRDFResource@@AAH@Z ; 10780
?HasAssertion@nsBookmarksService@@UAGIPAVnsIRDFResource@@0PAVnsIRDFNode@@HPAH@Z ; 10016
?HasAssertion@LocalSearchDataSource@@UAGIPAVnsIRDFResource@@0PAVnsIRDFNode@@HPAH@Z ; 9886
?OpenDB@nsGlobalHistory@@IAEIXZ ; 9142
?FindRow@nsGlobalHistory@@IAEIIPBDPAPAVnsIMdbRow@@@Z ; 9142
?IsVisited@nsGlobalHistory@@UAGIPBDPAH@Z ; 8972
?HasAssertion@InternetSearchDataSource@@UAGIPAVnsIRDFResource@@0PAVnsIRDFNode@@HPAH@Z ; 8845
?WriteBookmarkProperties@nsBookmarksService@@IAEIPAVnsIRDFDataSource@@AAVnsOutputFileStream@@PAVnsIRDFResource@@2PBDH@Z ; 2484
?HasAssertion@nsHTTPIndex@@UAGIPAVnsIRDFResource@@0PAVnsIRDFNode@@HPAH@Z ; 2326
?AddRef@nsBookmarksService@@UAGKXZ ; 1466
?Release@nsBookmarksService@@UAGKXZ ; 1459
?isSearchURI@InternetSearchDataSource@@IAEHPAVnsIRDFResource@@@Z ; 1154
?isSearchCategoryURI@InternetSearchDataSource@@IAEHPAVnsIRDFResource@@@Z ; 923
?isSearchCategoryEngineURI@InternetSearchDataSource@@IAEHPAVnsIRDFResource@@@Z ; 921
?OnAssert@nsBookmarksService@@UAGIPAVnsIRDFDataSource@@PAVnsIRDFResource@@1PAVnsIRDFNode@@@Z ; 911
?isEngineURI@InternetSearchDataSource@@IAEHPAVnsIRDFResource@@@Z ; 686
?GetTextForNode@nsBookmarksService@@IAEIPAVnsIRDFNode@@AAVnsString@@@Z ; 618
?GetData@InternetSearchDataSource@@IAEIPBGPBDI1AAVnsString@@@Z ; 589
?NotifyAssert@nsGlobalHistory@@IAEIPAVnsIRDFResource@@0PAVnsIRDFNode@@@Z ; 570
?updateAtom@BookmarkParser@@IAEIPAVnsIRDFDataSource@@PAVnsIRDFResource@@1PAVnsIRDFNode@@PAH@Z ; 536
?GetHostIndex@nsUrlbarHistory@@MAGIPBGPAH@Z ; 505
?GetTarget@InternetSearchDataSource@@UAGIPAVnsIRDFResource@@0HPAPAVnsIRDFNode@@@Z ; 437
?isSearchCommand@InternetSearchDataSource@@IAEHPAVnsIRDFResource@@@Z ; 437
?QueryInterface@nsBookmarksService@@UAGIABUnsID@@PAPAX@Z ; 371
?GetFindUriPrefix@nsGlobalHistory@@IAEXABUsearchQuery@@HAAVnsACString@@@Z ; 324
?GetSources@nsBookmarksService@@UAGIPAVnsIRDFResource@@PAVnsIRDFNode@@HPAPAVnsISimpleEnumerator@@@Z ; 291
?QueryInterface@InternetSearchDataSource@@UAGIABUnsID@@PAPAX@Z ; 262
?ParseDate@BookmarkParser@@KAIPAVnsIRDFResource@@AAVnsString@@PAPAVnsIRDFNode@@@Z ; 256
?AddRef@nsAutoCompleteResults@@UAGKXZ ; 249
?HasArcOut@InternetSearchDataSource@@UAGIPAVnsIRDFResource@@0PAH@Z ; 248
?FindData@InternetSearchDataSource@@IAEIPAVnsIRDFResource@@PAPAVnsIRDFLiteral@@@Z ; 247
?GetTargets@InternetSearchDataSource@@UAGIPAVnsIRDFResource@@0HPAPAVnsISimpleEnumerator@@@Z ; 237
?AddRef@InternetSearchDataSource@@UAGKXZ ; 234
?GetTargets@LocalSearchDataSource@@UAGIPAVnsIRDFResource@@0HPAPAVnsISimpleEnumerator@@@Z ; 230
?GetTargets@nsHTTPIndex@@UAGIPAVnsIRDFResource@@0HPAPAVnsISimpleEnumerator@@@Z ; 230
?GetTargets@nsBookmarksService@@UAGIPAVnsIRDFResource@@0HPAPAVnsISimpleEnumerator@@@Z ; 230
?Release@InternetSearchDataSource@@UAGKXZ ; 228
?Release@nsAutoCompleteItem@@UAGKXZ ; 225
?ArcLabelsIn@nsBookmarksService@@UAGIPAVnsIRDFNode@@PAPAVnsISimpleEnumerator@@@Z ; 181
?ParseLiteral@BookmarkParser@@KAIPAVnsIRDFResource@@AAVnsString@@PAPAVnsIRDFNode@@@Z ; 167
?GetTarget@nsHTTPIndex@@UAGIPAVnsIRDFResource@@0HPAPAVnsIRDFNode@@@Z ; 165
??1searchTerm@@QAE@XZ ; 162
??0searchTerm@@QAE@PBDI0I0I0I@Z ; 162
?GetNow@nsGlobalHistory@@IAE_JXZ ; 162
?getEOL@BookmarkParser@@IAEHPBDHH@Z ; 153
?isWellknownContainerURI@nsHTTPIndex@@IAEHPAVnsIRDFResource@@@Z ; 153
?GetDestination@nsHTTPIndex@@IAEPADPAVnsIRDFResource@@@Z ; 153
?ProcessLine@BookmarkParser@@QAEIPAVnsIRDFContainer@@PAVnsIRDFResource@@AAV?$nsCOMPtr@VnsIRDFResource@@@@ABVnsString@@AAV5@AAH5@Z ; 152
?DecodeBuffer@BookmarkParser@@QAEIAAVnsString@@PADI@Z ; 152
?AddRef@nsGlobalHistory@@UAGKXZ ; 132
?SetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IAB_J@Z ; 131
?Release@nsGlobalHistory@@UAGKXZ ; 128
?HasArcOut@nsBookmarksService@@UAGIPAVnsIRDFResource@@0PAH@Z ; 124
?HasArcOut@nsHTTPIndex@@UAGIPAVnsIRDFResource@@0PAH@Z ; 122
?HasArcOut@LocalSearchDataSource@@UAGIPAVnsIRDFResource@@0PAH@Z ; 122
?QueryInterface@nsAutoCompleteItem@@UAGIABUnsID@@PAPAX@Z ; 118
?OnUnassert@nsBookmarksService@@UAGIPAVnsIRDFDataSource@@PAVnsIRDFResource@@1PAVnsIRDFNode@@@Z ; 115
?ParseResource@BookmarkParser@@KAIPAVnsIRDFResource@@AAVnsString@@PAPAVnsIRDFNode@@@Z ; 114
?ParseBookmarkInfo@BookmarkParser@@IAEIPAUBookmarkField@1@HABVnsString@@ABV?$nsCOMPtr@VnsIRDFContainer@@@@PAVnsIRDFResource@@AAV?$nsCOMPtr@VnsIRDFResource@@@@@Z ; 114
?Unescape@RelatedLinksStreamListener@@QAEIAAVnsString@@@Z ; 114
?GetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IPA_J@Z ; 112
?FireTimer@nsBookmarksService@@KAXPAVnsITimer@@PAX@Z ; 110
?GetBookmarkToPing@nsBookmarksService@@IAEIPAPAVnsIRDFResource@@@Z ; 110
?QueryInterface@nsGlobalHistory@@UAGIABUnsID@@PAPAX@Z ; 105
?SetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IPBD@Z ; 100
?ParseHeaderEnd@BookmarkParser@@IAEIABVnsString@@@Z ; 96
?GetLastCharset@nsBookmarksService@@UAGIPBDPAPAG@Z ; 91
?SetPageTitle@nsGlobalHistory@@UAGIPBDPBG@Z ; 89
?GetItems@nsAutoCompleteResults@@UAGIPAPAVnsISupportsArray@@@Z ; 89
?GetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IAAVnsAString@@@Z ; 87
?SetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IPBG@Z ; 87
?NotifyChange@nsGlobalHistory@@IAEIPAVnsIRDFResource@@0PAVnsIRDFNode@@1@Z ; 84
?GetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IAAVnsACString@@@Z ; 82
?AddPage@nsGlobalHistory@@UAGIPBD@Z ; 81
?AddPageToDatabase@nsGlobalHistory@@IAEIPBD_J@Z ; 81
?SaveLastPageVisited@nsGlobalHistory@@IAEIPBD@Z ; 81
?do_GetService@@YA?BVnsGetServiceByCID@@ABUnsID@@PAI@Z ; 81
?NotifyFindAssertions@nsGlobalHistory@@IAEIPAVnsIRDFResource@@PAVnsIMdbRow@@@Z ; 81
?SetDirty@nsGlobalHistory@@IAEIXZ ; 81
?GetTarget@nsBookmarksService@@UAGIPAVnsIRDFResource@@0HPAPAVnsIRDFNode@@@Z ; 78
?QueryInterface@nsAutoCompleteResults@@UAGIABUnsID@@PAPAX@Z ; 76
?Release@InternetSearchContext@@UAGKXZ ; 62
?AddRef@InternetSearchContext@@UAGKXZ ; 62
?GetValue@nsAutoCompleteItem@@UAGIPAPAG@Z ; 58
?updateAtom@InternetSearchDataSource@@IAEIPAVnsIRDFDataSource@@PAVnsIRDFResource@@1PAVnsIRDFNode@@PAH@Z ; 58
?SetURLToHiddenControl@nsUrlWidget@@UAGIPBDPAVnsIDOMWindowInternal@@@Z ; 50
?FindInternetSearchResults@InternetSearchDataSource@@UAGIPBDPAH@Z ; 50
?UpdateBookmarkLastVisitedDate@nsBookmarksService@@UAGIPBDPBG@Z ; 50
?AddNewPageToDatabase@nsGlobalHistory@@IAEIPBD_JPAPAVnsIMdbRow@@@Z ; 50
?do_GetIOService@@YA?BVnsGetServiceByCID@@PAI@Z ; 48
?NS_NewURI@@YAIPAPAVnsIURI@@PBDPAV1@PAVnsIIOService@@@Z ; 48
?ArcLabelsOut@nsBookmarksService@@UAGIPAVnsIRDFResource@@PAPAVnsISimpleEnumerator@@@Z ; 45
?QueryInterface@InternetSearchContext@@UAGIABUnsID@@PAPAX@Z ; 44
?ArcLabelsOut@nsHTTPIndex@@UAGIPAVnsIRDFResource@@PAPAVnsISimpleEnumerator@@@Z ; 43
??_GnsArrayEnumerator@@UAEPAXI@Z ; 43
?ArcLabelsOut@InternetSearchDataSource@@UAGIPAVnsIRDFResource@@PAPAVnsISimpleEnumerator@@@Z ; 43
?ArcLabelsOut@LocalSearchDataSource@@UAGIPAVnsIRDFResource@@PAPAVnsISimpleEnumerator@@@Z ; 43
?isSearchResultFiltered@InternetSearchDataSource@@IAEHABVnsString@@@Z ; 42
?ConvertEntities@InternetSearchDataSource@@IAEIAAVnsString@@HHH@Z ; 42
?OnDataAvailable@InternetSearchDataSource@@UAGIPAVnsIRequest@@PAVnsISupports@@PAVnsIInputStream@@II@Z ; 38
?GetUnicodeDecoder@InternetSearchContext@@UAGIPAPAVnsIUnicodeDecoder@@@Z ; 38
?AppendUnicodeBytes@InternetSearchContext@@UAGIPBGH@Z ; 37
?GetDefaultItemIndex@nsAutoCompleteResults@@UAGIPAH@Z ; 36
?AddRef@nsUrlbarHistory@@UAGKXZ ; 32
?SetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IH@Z ; 31
?GetRowValue@nsGlobalHistory@@IAEIPAVnsIMdbRow@@IPAH@Z ; 31
?AddExistingPageToDatabase@nsGlobalHistory@@IAEIPAVnsIMdbRow@@_JPA_JPAH@Z ; 31
?WriteBookmarksContainer@nsBookmarksService@@IAEIPAVnsIRDFDataSource@@AAVnsOutputFileStream@@PAVnsIRDFResource@@HPAVnsISupportsArray@@@Z ; 30
?GetSearchEngineToPing@InternetSearchDataSource@@IAEIPAPAVnsIRDFResource@@AAVnsCString@@@Z ; 28
?FireTimer@InternetSearchDataSource@@KAXPAVnsITimer@@PAX@Z ; 28
?Flush@nsGlobalHistory@@UAGIXZ ; 26
?SetValue@nsAutoCompleteItem@@UAGIPBG@Z ; 26
?Commit@nsGlobalHistory@@IAEIW4eCommitType@1@@Z ; 26
?Sync@nsGlobalHistory@@IAEXXZ ; 25
?fireSyncTimer@nsGlobalHistory@@KAXPAVnsITimer@@PAX@Z ; 25
??1RegistryEntry@@QAE@XZ ; 24
??_EnsString@@UAEPAXI@Z ; 20
?SetDefaultItemIndex@nsAutoCompleteResults@@UAGIH@Z ; 17
?OnChange@nsBookmarksService@@UAGIPAVnsIRDFDataSource@@PAVnsIRDFResource@@1PAVnsIRDFNode@@2@Z ; 16
?Release@nsUrlbarHistory@@UAGKXZ ; 16
?Refresh@nsBookmarksService@@UAGIH@Z ; 16
?Parse@BookmarkParser@@QAEIPAVnsIRDFResource@@0@Z ; 15
??1nsAutoCompleteItem@@UAE@XZ ; 15
??_EnsAutoCompleteItem@@UAEPAXI@Z ; 15
??0nsAutoCompleteItem@@QAE@XZ ; 15
?currentSetting@RegistryEntry@@QBE?AVnsCString@@XZ ; 13
??BBoolRegistryEntry@@QAEPAXXZ ; 13
??0RegistryEntry@@QAE@PAUHKEY__@@PBD11@Z ; 13
?valueNameArg@RegistryEntry@@QBEPBDXZ ; 13
??0nsAutoCompleteResults@@QAE@XZ ; 12
??1nsAutoCompleteResults@@UAE@XZ ; 12
?AddRef@nsHTTPIndex@@UAGKXZ ; 12
?QueryInterface@nsUrlbarHistory@@UAGIABUnsID@@PAPAX@Z ; 12
??_EnsAutoCompleteResults@@UAEPAXI@Z ; 12
?GetTarget@LocalSearchDataSource@@UAGIPAVnsIRDFResource@@0HPAPAVnsIRDFNode@@@Z ; 12
??0ProtocolRegistryEntry@@QAE@PBD@Z ; 11
?Release@LocalSearchDataSource@@UAGKXZ ; 10
?Release@nsWindowsHooks@@UAGKXZ ; 10
?Release@nsUrlWidget@@UAGKXZ ; 10
?QueryInterface@nsUrlWidget@@UAGIABUnsID@@PAPAX@Z ; 10
?QueryInterface@nsWindowsHooks@@UAGIABUnsID@@PAPAX@Z ; 10
?CheckItemAvailability@nsUrlbarHistory@@MAGIPBGPAVnsIAutoCompleteResults@@PAH@Z ; 9
?AddObserver@InternetSearchDataSource@@UAGIPAVnsIRDFObserver@@@Z ; 8
?SetParam@nsAutoCompleteItem@@UAGIPAVnsISupports@@@Z ; 8
?Release@nsHTTPIndex@@UAGKXZ ; 8
?NS_GetSpecialDirectory@@YAIPBDPAPAVnsIFile@@@Z ; 8
?SaveEngineInfoIntoGraph@InternetSearchDataSource@@IAEIPAVnsIFile@@0PBG1H@Z ; 7
?GetContextType@InternetSearchContext@@UAGIPAI@Z ; 6
?MapEncoding@InternetSearchDataSource@@IAEIABVnsString@@AAV2@@Z ; 6
??0InternetSearchContext@@QAE@IPAVnsIRDFResource@@0PAVnsIUnicodeDecoder@@PBG@Z ; 6
??1InternetSearchContext@@UAE@XZ ; 6
?OnStopRequest@InternetSearchDataSource@@UAGIPAVnsIRequest@@PAVnsISupports@@IPBG@Z ; 6
?AddObserver@LocalSearchDataSource@@UAGIPAVnsIRDFObserver@@@Z ; 6
?AddObserver@nsBookmarksService@@UAGIPAVnsIRDFObserver@@@Z ; 6
?updateDataHintsInGraph@InternetSearchDataSource@@IAEIPAVnsIRDFResource@@PBG@Z ; 6
??_EInternetSearchContext@@UAEPAXI@Z ; 6
?ReadFileContents@InternetSearchDataSource@@IAEIABVnsFileSpec@@AAVnsString@@@Z ; 6
?NS_OpenURI@@YAIPAPAVnsIChannel@@PAVnsIURI@@PAVnsIIOService@@PAVnsILoadGroup@@PAVnsIInterfaceRequestor@@I@Z ; 6
??1FileTypeRegistryEntry@@QAE@XZ ; 6
?NS_NewInternetSearchContext@@YAIIPAVnsIRDFResource@@0PAVnsIUnicodeDecoder@@PBGPAPAVnsIInternetSearchContext@@@Z ; 6
?OnStartLookup@nsUrlbarHistory@@UAGIPBGPAVnsIAutoCompleteResults@@PAVnsIAutoCompleteListener@@@Z ; 5
?VerifyAndCreateEntry@nsUrlbarHistory@@MAGIPBGPAGPAVnsIAutoCompleteResults@@@Z ; 5
?GetBufferConst@InternetSearchContext@@UAGIPAPBG@Z ; 5
?SearchCache@nsUrlbarHistory@@MAGIPBGPAVnsIAutoCompleteResults@@@Z ; 5
?OnStartRequest@InternetSearchDataSource@@UAGIPAVnsIRequest@@PAVnsISupports@@@Z ; 4
?Truncate@InternetSearchContext@@UAGIXZ ; 4
?GetEngine@InternetSearchContext@@UAGIPAPAVnsIRDFResource@@@Z ; 4
?AddObserver@nsHTTPIndex@@UAGIPAVnsIRDFObserver@@@Z ; 4
?OnAutoComplete@nsUrlbarHistory@@UAGIPBGPAVnsIAutoCompleteResults@@PAVnsIAutoCompleteListener@@@Z ; 3
?Release@nsTimeBomb@@UAGKXZ ; 3
?DoSearch@InternetSearchDataSource@@IAEIPAVnsIRDFResource@@0ABVnsString@@1@Z ; 3
?QueryInterface@nsHTTPIndex@@UAGIABUnsID@@PAPAX@Z ; 3
?validateEngine@InternetSearchDataSource@@IAEIPAVnsIRDFResource@@@Z ; 3
?QueryInterface@LocalSearchDataSource@@UAGIABUnsID@@PAPAX@Z ; 3
?ParseHTML@InternetSearchDataSource@@IAEIPAVnsIURI@@PAVnsIRDFResource@@1PBG@Z ; 3
?Stop@InternetSearchDataSource@@UAGIXZ ; 3
?FindShortcut@nsBookmarksService@@UAGIPBGPAPAD@Z ; 3
?GetBookmarksFile@nsBookmarksService@@IAEIPAVnsFileSpec@@@Z ; 3
?GetSource@nsBookmarksService@@UAGIPAVnsIRDFResource@@PAVnsIRDFNode@@HPAPAV2@@Z ; 3
?GetParent@InternetSearchContext@@UAGIPAPAVnsIRDFResource@@@Z ; 3
?GetNumInterpretSections@InternetSearchDataSource@@IAEIPBGAAI@Z ; 3
?GetSearchFolder@InternetSearchDataSource@@IAEIPAPAVnsIFile@@@Z ; 3
?RememberLastSearchText@InternetSearchDataSource@@UAGIPBG@Z ; 3
?ClearResults@InternetSearchDataSource@@UAGIH@Z ; 3
?webSearchFinalize@InternetSearchDataSource@@IAEIPAVnsIChannel@@PAVnsIInternetSearchContext@@@Z ; 3
?GetInputs@InternetSearchDataSource@@IAEIPBGAAVnsString@@ABV2@1@Z ; 3
?Flush@nsBookmarksService@@UAGIXZ ; 2
?CheckSettings@nsWindowsHooks@@UAGIPAVnsIDOMWindowInternal@@@Z ; 2
?saveContents@InternetSearchDataSource@@IAEIPAVnsIChannel@@PAVnsIInternetSearchContext@@I@Z ; 2
?RemoveObserver@InternetSearchDataSource@@UAGIPAVnsIRDFObserver@@@Z ; 2
?NS_NewLoadGroup@@YAIPAPAVnsILoadGroup@@PAVnsIStreamObserver@@@Z ; 2
?WriteBookmarks@nsBookmarksService@@IAEIPAVnsFileSpec@@PAVnsIRDFDataSource@@PAVnsIRDFResource@@@Z ; 2
?getLocaleString@nsBookmarksService@@IAEIPBDAAVnsString@@@Z ; 2
?GetBufferLength@InternetSearchContext@@UAGIPAH@Z ; 2
??1nsWindowsHooksSettings@@UAE@XZ ; 1
??1nsUrlbarHistory@@MAE@XZ ; 1
??1nsUrlWidget@@UAE@XZ ; 1
?Init@nsTimeBomb@@UAGIXZ ; 1
?CreateAnonymousResource@BookmarkParser@@KAIPAV?$nsCOMPtr@VnsIRDFResource@@@@@Z ; 1
?GetURI@nsBookmarksService@@UAGIPAPAD@Z ; 1
?validateEngineNow@InternetSearchDataSource@@IAEIPAVnsIRDFResource@@@Z ; 1
?DeferredInit@InternetSearchDataSource@@QAGIXZ ; 1
??_EnsUrlbarHistory@@MAEPAXI@Z ; 1
??0nsGlobalHistory@@QAE@XZ ; 1
?GetURI@LocalSearchDataSource@@UAGIPAPAD@Z ; 1
??0InternetSearchDataSource@@QAE@XZ ; 1
?GetSettings@nsWindowsHooks@@MAGIPAPAVnsWindowsHooksSettings@@@Z ; 1
?Init@nsBookmarksService@@QAEIXZ ; 1
?Init@LocalSearchDataSource@@QAEIXZ ; 1
?GetSearchEngineList@InternetSearchDataSource@@IAEIPAVnsIFile@@H@Z ; 1
?Release@nsWindowsHooksSettings@@UAGKXZ ; 1
?CreateTokens@nsGlobalHistory@@IAEIXZ ; 1
??0nsUrlWidget@@QAE@XZ ; 1
?AppendBytes@InternetSearchContext@@UAGIPBDH@Z ; 1
?GetInt64ForPref@nsTimeBomb@@IAEIPBDPA_J@Z ; 1
?Init@nsGlobalHistory@@QAGIXZ ; 1
?Init@nsHTTPIndex@@QAEIXZ ; 1
?GetFirstLaunch@nsTimeBomb@@UAGIPA_J@Z ; 1
??0nsWindowsHooksSettings@@QAE@XZ ; 1
??0BookmarkParser@@QAE@XZ ; 1
??_EnsWindowsHooksSettings@@UAEPAXI@Z ; 1
?GetURI@nsHTTPIndex@@UAGIPAPAD@Z ; 1
??_GnsUrlWidget@@UAEPAXI@Z ; 1
??_EnsWindowsHooks@@UAEPAXI@Z ; 1
?CommonInit@nsHTTPIndex@@IAEIXZ ; 1
?GetURI@InternetSearchDataSource@@UAGIPAPAD@Z ; 1
??0nsUrlbarHistory@@QAE@XZ ; 1
??1BookmarkParser@@QAE@XZ ; 1
??1nsTimeBomb@@UAE@XZ ; 1
??0nsHTTPIndex@@QAE@XZ ; 1
?GetCategoryList@InternetSearchDataSource@@IAEIXZ ; 1
??_GnsTimeBomb@@UAEPAXI@Z ; 1
?GetCategoryDataSource@InternetSearchDataSource@@UAGIPAPAVnsIRDFDataSource@@@Z ; 1
?CheckHostnameEntries@nsGlobalHistory@@IAEIXZ ; 1
??0nsTimeBomb@@QAE@XZ ; 1
_NSGetModule ; 1
??0LocalSearchDataSource@@QAE@XZ ; 1
?Init@InternetSearchDataSource@@QAGIXZ ; 1
?ParseBookmarkSeparator@BookmarkParser@@IAEIABVnsString@@ABV?$nsCOMPtr@VnsIRDFContainer@@@@@Z ; 1
?setFolderHint@BookmarkParser@@IAEIPAVnsIRDFResource@@0@Z ; 1
?Init@BookmarkParser@@QAEIPAVnsFileSpec@@PAVnsIRDFDataSource@@ABVnsString@@@Z ; 1
??1nsWindowsHooks@@UAE@XZ ; 1
?GetEnabled@nsTimeBomb@@UAGIPAH@Z ; 1
?QueryInterface@nsTimeBomb@@UAGIABUnsID@@PAPAX@Z ; 1
?CheckWithUI@nsTimeBomb@@UAGIPAH@Z ; 1
?AddSearchEngine@InternetSearchDataSource@@UAGIPBD0PBG1@Z ; 1
?OpenExistingFile@nsGlobalHistory@@IAEIPAVnsIMdbFactory@@PBD@Z ; 1
??0nsWindowsHooks@@QAE@XZ ; 1
??0nsBookmarksService@@QAE@XZ ; 1
?ParseMetaTag@BookmarkParser@@IAEIABVnsString@@PAPAVnsIUnicodeDecoder@@@Z ; 1
?GetURI@nsGlobalHistory@@UAGIPAPAD@Z ; 1
?ReadBookmarks@nsBookmarksService@@UAGIXZ ; 1
?Init@nsUrlWidget@@QAEIXZ ; 1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff