(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 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 &
...
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 Schnheit<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