Compare commits

...

4003 Commits

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

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

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


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

instead of

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

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


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

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


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


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


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


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


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

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


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

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


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


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


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


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

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


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


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

r,a=justdave


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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

r=dave, a=dave


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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

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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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

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

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


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


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


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


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


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

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


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


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

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

sr=darin, a=asa


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

r=sgehani
rs=seth
a=dbaron


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


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


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


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

- Fixed 3 compiler warnings in DOMPointToOffset().

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

regression caused by the band-aid for #90337.

thanks to neil for this patch.

r/sr=sspitzer,a=blizzard


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

r=brade  sr=sfraser@netscape.com


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

actually supporting cid: is bug #61815.


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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

r=cavin, sr=bienvenu.


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

r/sr=bienvenu


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


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


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


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

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

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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

Changes to make it build on Solaris.


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

r=jfrancis,brade,cmanske   sr=kin


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


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


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

Remove traces of old imagelib as well as ifdefs for USE_IMG2


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


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


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

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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

r/sr=bienvenu


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

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

r/sr=bienvenu


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

This was fallout from the checkin for bugzilla bug 173046.


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


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


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


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


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


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


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


git-svn-id: svn://10.0.0.236/trunk@135125 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-11 14:05:41 +00:00
timeless%mozdev.org
70ffbc9c7f Bug 99328 can't copy entries in javascript console to X primary selection (copy to clipboard works)
patch by neil@parkwaycc.co.uk r=akkana sr=bz


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


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


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


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


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


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


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


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


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


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

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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

r= jkeiser sr= jst a= brendan


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


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


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


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


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


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


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


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


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


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


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

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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

this regression was exposed by the fix for #157210.

bug #183776 tracks the real issue.

r=bz, sr=bienvenu, a=asa


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


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


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


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


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


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


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


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


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


git-svn-id: svn://10.0.0.236/trunk@134785 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:26:02 +00:00
samuel%sieb.net
3c708fcb9b Bug 178206 - fix XML-RPC strings
r=heikki
sr=tor


git-svn-id: svn://10.0.0.236/trunk@134784 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:22:50 +00:00
timeless%mozdev.org
eed5883e04 reindent per heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134783 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 07:22:26 +00:00
bzbarsky%mit.edu
f40558f6ae Um.. spell PRUint16 right
git-svn-id: svn://10.0.0.236/trunk@134782 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:15:43 +00:00
bzbarsky%mit.edu
5c33473c49 Fix mac bustage
git-svn-id: svn://10.0.0.236/trunk@134781 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:13:56 +00:00
ccarlen%netscape.com
f6ddd4190b Bug 181641 - On Mach-0 build, cannot launch if theme was installed into profile with CFM build. Fixes this by fixing the general problem of failure due to missing theme jars. Patch to nsChromeRegistry.cpp by ccarlen, r=ben/sr=brendan. Patch to nsChromeProtocolHandler.cpp by brendan, r=ccarlen/sr=ben.
git-svn-id: svn://10.0.0.236/trunk@134780 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:08:57 +00:00
bzbarsky%mit.edu
c54400e68f UTFInputStream does not do very good error-recovery, so always
use nsConverterInputStream instead.  Bug 183165, r=timeless, sr=sspitzer,
general approval=dbaron


git-svn-id: svn://10.0.0.236/trunk@134779 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 06:07:50 +00:00
kyle.yuan%sun.com
0d4483fbf0 Bug 134823 Toolbars don't honour accesskeys
r=dean_tessman, sr=jaggernaut
support accesskey for toolbarbutton


git-svn-id: svn://10.0.0.236/trunk@134778 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:38:07 +00:00
caillon%returnzero.com
3519a9924e Bug 177328: Update compareTreePosition to compareDocumentPosition as per the latest DOM3 Core WD: http://www.w3.org/TR/2002/WD-DOM-Level-3-Core-20021022/core.html#Node3-compareDocumentPosition
r=bzbarsky sr=jst


git-svn-id: svn://10.0.0.236/trunk@134777 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:18:39 +00:00
jrgm%netscape.com
77d5383b12 Make use of the new ability to re-init a timer and hang on to the tooltip and autohide timers instead of destroying and creating new timers, bug 181961. Note: this bug depends on the other checkin to nsTimerImpl.(h|cpp) from bug 181961. r=bryner, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@134776 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 05:13:07 +00:00
sdagley%netscape.com
7df756341a Fix #175868 - Allow multiple instances of Mozilla to run. r=ccarlen,sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134775 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:51:54 +00:00
dbaron%fas.harvard.edu
2c9b578539 Go back to PR_strtod since strtod does different things in different locales. b=183211 sr=bzbarsky r=caillon
git-svn-id: svn://10.0.0.236/trunk@134774 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:43:30 +00:00
bstell%ix.netcom.com
5caa782b76 bug 180473 : make nsFreeType a xpcom service and move from shared lib to static lib
r=Louie.Zhao@sun.com, sr=alecf@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134773 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:42:40 +00:00
timeless%mozdev.org
d5cf0c0d7d Bug 172751 nsITheme support for Windows 9x/NT/2000
patch by tim@prismelite.com r=hyatt sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134772 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:41:35 +00:00
darin%netscape.com
76c7db53b0 fixes bug 173426 "prefetch service should set LOAD_ONLY_IF_MODIFIED flag"
r=gagan sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134770 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:21:10 +00:00
darin%netscape.com
d23b0dfd5f fixes bug 56629 "Proxy: Client->Proxy connection errors should show proxy,
not target hostname" r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@134769 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 04:18:08 +00:00
mstoltz%netscape.com
f06acb5816 Bug 91043: Make document.write(ln) same-origin-access only to prevent inserting content into a third-party page. r=pavlov, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134768 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:52:07 +00:00
bolian.yin%sun.com
a5d3bb5a0f Bug 183153, MaiTopLevel object should be destoryed in the XPCOM way
This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@134765 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:35:03 +00:00
bryner%netscape.com
db326187c8 fixing aix bustage
git-svn-id: svn://10.0.0.236/trunk@134764 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 03:26:46 +00:00
mstoltz%netscape.com
99349c69eb adding an include to fix bustage
git-svn-id: svn://10.0.0.236/trunk@134763 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:51:47 +00:00
gilbert.fang%sun.com
c7a20f1e54 Bug 129213 buttons in Manage Bookmarks need accesskeys
patch by jessie.li@sun.com, r=kyle.yuan, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134762 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:51:03 +00:00
gilbert.fang%sun.com
ede1b6606b Bug 183167: Buttons in JavaScript Console need accesskeys
Adding accesskey attributes in xul and key definition in corrosponding dtds.
patch=jessie.li, r=kyle.yuan, sr=jaggernaut.


git-svn-id: svn://10.0.0.236/trunk@134759 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:16:07 +00:00
caillon%returnzero.com
1918b4fe48 Bug 182953: Clean up IMAP prefs usage to use nsIPrefBranch and friends
r=timeless sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134758 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:09:11 +00:00
caillon%returnzero.com
f85ae2c8ba 182702: Convert printing code to use nsIPrefBranch and nsIPrefService
r=rods sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134753 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 02:03:17 +00:00
karnaze%netscape.com
fd35d34016 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@134749 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:58:59 +00:00
mstoltz%netscape.com
7ccfe07800 Bug 32571 - add disabling pref and JS console message to window.close security check. r=heikki, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134748 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:55:56 +00:00
yokoyama%netscape.com
7930cd7160 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window.
/r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134747 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:51:31 +00:00
bryner%netscape.com
33c99f67c5 Clean up nsNativeThemeGTK by separating all core drawing functionality into gtkdrawing.c and formalizing the API in gtkdrawing.h. Bug 174927, r=blizzard, rs=jag.
git-svn-id: svn://10.0.0.236/trunk@134746 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:50:38 +00:00
yokoyama%netscape.com
216733424f 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window. /r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134745 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:49:29 +00:00
miodrag%netscape.com
c4df1d005f Removed unnecessary code, updated javadoc
git-svn-id: svn://10.0.0.236/trunk@134744 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:35:57 +00:00
yokoyama%netscape.com
833eab6aa2 181559 MfcEmbed: Find in this page does not find Non-Ascii characters
Find string is correctly converted to unicode string.
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134743 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:19:56 +00:00
yokoyama%netscape.com
fd2d437d51 179822: Flash4 / Flash5 / Shockwave and other plugins crash.
Give an unicode option when SubClassing the widget window.
/r=peterl, /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134742 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:17:01 +00:00
miodrag%netscape.com
b0070e1509 Removed two trailing ^M
git-svn-id: svn://10.0.0.236/trunk@134741 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 01:04:19 +00:00
karnaze%netscape.com
15faa7640c bug 127286 (part II due to cvs problems) - Handle splitting of floaters when lines impacting them are outside the block containing the floaters. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@134740 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:58:52 +00:00
brendan%mozilla.org
ba130297b3 Implement support for re-initializing timers (even one-shots), and doc-comment
on how timers may be canceled, re-initialized, and canceled-then-re-initialized
in nsITimer.idl (181961, r=pavlov, sr=alecf).  This helps client code conserve
instances, saving on cycles and malloc/component-manager froth.


git-svn-id: svn://10.0.0.236/trunk@134739 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:57:20 +00:00
bienvenu%netscape.com
daa7c3bef3 fix compact folder performance regression, r=cavin, sr=sspitzer 182262
git-svn-id: svn://10.0.0.236/trunk@134738 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:40:19 +00:00
wtc%netscape.com
3fcc5b0e17 Fixed the build breakage of const unsigned char[] and unsigned char *
mismatch on the Mac (compiler warnings on other platforms) by adding
(unsigned char *) typecasts.  r=relyea.  (Bug 183350)


git-svn-id: svn://10.0.0.236/trunk@134737 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:28:56 +00:00
karnaze%netscape.com
0535fa6175 bug 127286 (part I due to cvs problems) - Handle splitting of floaters when lines impacting them are outside the block containing the floaters. sr=kin, r=alexsavulov
git-svn-id: svn://10.0.0.236/trunk@134736 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-04 00:25:43 +00:00
akkana%netscape.com
f2ac13c9a0 179784: go back to beep by default for typeahead find "not found",
since the nsSound solution doesn't work well on linux or mac.
  r=aaronl sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@134734 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:51:10 +00:00
dougt%netscape.com
8ee6126b8f Fixes loss of category information when using regxpcom, r=darin, sr=alec, b=182771
git-svn-id: svn://10.0.0.236/trunk@134732 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:17:03 +00:00
alexsavulov%netscape.com
a2d6b2fcc9 Fix for bug 147878 - defer submission until onSubmit returns so we can
chose to submit name/value or the triggering element if the return is true.
r= jkeiser sr= jst


git-svn-id: svn://10.0.0.236/trunk@134731 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:06:34 +00:00
dougt%netscape.com
2528bfde89 Fix for nsProxyObjectManager::GetProxy() memory corruption. Patch by wolruf@free.fr, r=dougt, sr=alecf, b=182572
git-svn-id: svn://10.0.0.236/trunk@134730 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 23:04:28 +00:00
harishd%netscape.com
34717d54ad ** NOT PART OF THE BUILD **
Adding testcases to parser regression test suite


git-svn-id: svn://10.0.0.236/trunk@134729 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:52:02 +00:00
harishd%netscape.com
852bb4c5cf Prevent content inside IFRAME from evaluating ( specifically SCRIPT ). b=149887, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134728 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:31:38 +00:00
darin%netscape.com
55762a8a68 additional comment tweaks for bug 157133 "freeze nsIHttpChannel,
nsIHttpHeaderVisitor" r/sr=nobody


git-svn-id: svn://10.0.0.236/trunk@134727 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 22:00:54 +00:00
anthonyd%netscape.com
6de131c404 *** NOT PART OF THE BUILD PROCESS
resources for the XPI Packager
bug # 163739


git-svn-id: svn://10.0.0.236/trunk@134726 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:55:02 +00:00
anthonyd%netscape.com
873dac92c4 *** NOT PART OF THE BUILD PROCESS
bug # 163739 - XPI Packager
adding the xpi packager to the mozilla tree.  this is a windows only app used to build the xpi packager
for building self installing xpi files.


git-svn-id: svn://10.0.0.236/trunk@134725 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:52:45 +00:00
ducarroz%netscape.com
23153ef597 Fix for bug 182321. Force to finish the autocomplete (which will remove any extra
"[nickname] >>") when the user either click in the input text or when the user
navigate with the left or right arrow key. R/SR=hewitt, spitzer


git-svn-id: svn://10.0.0.236/trunk@134723 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:41:04 +00:00
nhotta%netscape.com
033cfbefbd Adding UI to swap first and last name in address book,
the UI is disabled as a default, configuable by the entity "hideSwapFnLnUI",
bug 181883, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134722 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:36:06 +00:00
blizzard%redhat.com
47362626d5 Bug #165558. building with --disable-logging and GTK2 default widget fails to compile. Just remove the MOZ_LOGGING defines since we're using PR_FORCE_LOG anyway.
git-svn-id: svn://10.0.0.236/trunk@134721 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:29:35 +00:00
smontagu%netscape.com
b5630a5a43 Print and print preview must not animate images. Never. Not under any circumstances. Bug 182259, r=rods, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@134720 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:24:05 +00:00
locka%iol.ie
335b81ec98 Move IWebBrowser impl into a template class so it can be shared with plugin. Fixed postdata, headers and target args. b=100629 r=chak@netscape.com rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134719 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:20:57 +00:00
mostafah%oeone.com
9a7d7c51c3 Made possible build without need for configure
git-svn-id: svn://10.0.0.236/trunk@134718 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:12:30 +00:00
sdagley%netscape.com
a399aa4362 Fix #179592 - wrong IC constant mapping. r=ccarlen,rs=sfraser
git-svn-id: svn://10.0.0.236/trunk@134717 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 21:00:45 +00:00
pkw%us.ibm.com
1b5db86251 Bug #181334 - libgfxft2.so fails to link on AIX.
r=seawood@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134715 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:30:23 +00:00
ashishbhatt%netscape.com
3c925ceeaa updating javascript file paths
git-svn-id: svn://10.0.0.236/trunk@134714 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:27:28 +00:00
karnaze%netscape.com
971e0c5824 bug 183274 - bernd's patch to fix some typos and wrong max value. sr=bzbarsky, r=karnaze
git-svn-id: svn://10.0.0.236/trunk@134713 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:20:53 +00:00
bzbarsky%mit.edu
efa23d95ee Take out the hack added in bug 47846 to deal with the fact that Equals() did
not work on mailnews urls.  It works fine now (see bug 98626).

Bug 182248, r=bienvenu. sr=darin


git-svn-id: svn://10.0.0.236/trunk@134712 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:19:18 +00:00
bienvenu%netscape.com
45421c4a5e another fix for 179162 fix run junk mail controls on selected messate r/sr=sspitzer, typo in dump statement
git-svn-id: svn://10.0.0.236/trunk@134711 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 20:12:29 +00:00
harishd%netscape.com
003dea7bb8 Make sure to collect FORM attributes if the FORM was found along with misplaced content inside TABLE. b=142965, r=heikki, sr=jst. Added -/W3C/DTD HTML 4.0 Transitional/EN to the quirks list. b=146274, r=heikki, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134709 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:55:19 +00:00
ducarroz%netscape.com
2ed3358a13 Fix for bug 63639. Prevent adding duplicate address when pre-filling a message compose window. Patch submitted by Koike Kazuhiko <kazhik@mozilla.gr.jp>. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134708 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:53:53 +00:00
rginda%netscape.com
14d5c06f97 - venkman only -
fix array.sort fallout form bug 178722
show view names in floating window titles
don't spew to IS view when changing frames from the UI
bump version number


git-svn-id: svn://10.0.0.236/trunk@134707 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:50:26 +00:00
blizzard%redhat.com
65fd3ea826 Bug #181404. Crash when printing page with <select> dropdown menu [@ moz_drawingarea_set_visibility ]. Some of the printing and view code tries to set visiblity and sizes on widgets without creating them first. Woo.
git-svn-id: svn://10.0.0.236/trunk@134706 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:46:49 +00:00
locka%iol.ie
97c0b154e5 Comment out base elements during persistence rather than removing and reinserting them. b=179990 r=brade@netscape.com sr=heikki@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134705 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:31:18 +00:00
blythe%netscape.com
9dcd126468 Not part of build.
Remove the overall module size summary from the report, unless there is
nothing else to report.  As suggsted by alecf and mcafee.


git-svn-id: svn://10.0.0.236/trunk@134704 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 19:07:55 +00:00
karnaze%netscape.com
bf52326163 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@134698 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 16:35:23 +00:00
karnaze%netscape.com
ca5804764b bug 180805 - Added GetAdjustedParentFrame to handle fieldsets. Moved inner/outer table logic there. Added fieldset logic to IsValidSibling. sr=bzbarsky, r=jkeiser.
git-svn-id: svn://10.0.0.236/trunk@134696 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 16:02:42 +00:00
ccarlen%netscape.com
dc6239e350 Bug 173668 - InitWithNativePath crashes if given a URL which begins with a forward slash. It happens during URI fixup. r=sdagley/sr=jaggernaut
git-svn-id: svn://10.0.0.236/trunk@134695 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:51:25 +00:00
karnaze%netscape.com
205710a252 bug 161644 - don't allow a first letter to be a block unless it is floating. sr=bzbarsky, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@134694 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:48:26 +00:00
bienvenu%netscape.com
483ef9e6e0 fix build warnings, patch by Aleksey Nogin, r=ducarroz, sr=bienvenu 59673
git-svn-id: svn://10.0.0.236/trunk@134693 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:31:47 +00:00
mikep%oeone.com
e32f1b9f9d Finishing renaming the files, for Mac OS 9, as per bug 183106.
git-svn-id: svn://10.0.0.236/trunk@134692 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:30:03 +00:00
kaie%netscape.com
1e5d8406b1 b=182158 JavaScript error when pressing Ok in "Cert already exists" dialog - setWindowName is not defined
r=kaie sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134691 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:27:27 +00:00
bienvenu%netscape.com
571e30eb6b fix build warnings, patch by Aleksey Nogin, r=ducarroz, sr=bienvenu 59673
git-svn-id: svn://10.0.0.236/trunk@134690 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:23:42 +00:00
bzbarsky%mit.edu
5e5a29e7af Fixing compiler warning. r=timeless.
git-svn-id: svn://10.0.0.236/trunk@134689 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:14:00 +00:00
beard%netscape.com
08e65cf4cd Fix build bustage, need MsgUtil[Debug].lib now.
git-svn-id: svn://10.0.0.236/trunk@134688 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:05:40 +00:00
mikep%oeone.com
bccfcda4bb Renaming file to selectAddresses.dtd.
git-svn-id: svn://10.0.0.236/trunk@134687 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:03:25 +00:00
mikep%oeone.com
3c7b376a4b Renaming files for Mac OS 9, as per bug 183106
git-svn-id: svn://10.0.0.236/trunk@134686 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:02:22 +00:00
mikep%oeone.com
c59abec732 Renaming files for bug 183106
git-svn-id: svn://10.0.0.236/trunk@134685 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 15:01:38 +00:00
timeless%mozdev.org
4c0d2dcfbc Bug 175789 <dialog>s don't need dialogOverlay
r=cmanske sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134683 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:25:59 +00:00
bienvenu%netscape.com
d451a4da18 remove unused var to fix warning from last checkin
git-svn-id: svn://10.0.0.236/trunk@134682 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:18:40 +00:00
bienvenu%netscape.com
d2a9218479 179162 chain junk mail classification requests by using new msg service streamMessage method r=dmose, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134681 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 13:06:46 +00:00
igor%mir2.org
29280edd09 To allow straightforward detection of functions created via Function(...) constructor, I added the fromFunctionConstructor boolean flag to NativeFunction which allows to simplify code dealing with the EcmaScript requirement to return anonymous as a name for such functions.
git-svn-id: svn://10.0.0.236/trunk@134680 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:43:14 +00:00
igor%mir2.org
b53f78eef1 1. Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=182028
Now caching of the last access slot covers GetterSlot instances as well and getter is always called for such slots

2. Fixing a potential race condition in setBySetter when a setter slot becomes an ordinary slot in response to a setter returning a value.

During execution of setBySetter a different thread can see initial null value in slot.value instead of the result of setter call as it is possible that JVM will first update slot.flags and only then slot.value for that thread. The fix replaces the old getter slot  by an ordinary one under synchronized block for that I added new getSlotPosition method and updated the rest of code accordingly.


git-svn-id: svn://10.0.0.236/trunk@134679 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:38:55 +00:00
bbaetz%student.usyd.edu.au
04bd28684d Bug 182946 - fix additional typo noticed on irc by tm
git-svn-id: svn://10.0.0.236/trunk@134678 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 12:35:44 +00:00
bbaetz%student.usyd.edu.au
1ee4c74dd0 Bug 182946 - fix regressions from bug 171493
(Bug.pm/show_bug.cgi/bug_form.pl reorg)
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134677 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 09:44:42 +00:00
peterv%netscape.com
496da7acfd Fix for bug 165532 (Disable cross-site loading of XSLT stylesheets by default). r=sicking, sr=bz.
git-svn-id: svn://10.0.0.236/trunk@134676 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 09:20:43 +00:00
bzbarsky%mit.edu
e47b242a89 ugh. Forgot this one line...
git-svn-id: svn://10.0.0.236/trunk@134675 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 08:29:35 +00:00
bzbarsky%mit.edu
6ab8d32bdc get rid of build warning for unused var.
git-svn-id: svn://10.0.0.236/trunk@134674 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:53:22 +00:00
bzbarsky%mit.edu
fbeccbf189 Change nsICSSLoader to nsAString instead of nsString (build bustage).
git-svn-id: svn://10.0.0.236/trunk@134673 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:46:46 +00:00
bzbarsky%mit.edu
e6f2be4720 Fix windows bustage. Why can't this compiler get simple scoping right?
git-svn-id: svn://10.0.0.236/trunk@134672 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:39:59 +00:00
bzbarsky%mit.edu
e35cf70ed2 Fix Irix bustage. Stray CR chars are bad.
git-svn-id: svn://10.0.0.236/trunk@134669 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:13:38 +00:00
caillon%returnzero.com
d11a3d4a77 178291 - using window.fullScreen causes scripts to stop.
r=mstoltz sr=jst


git-svn-id: svn://10.0.0.236/trunk@134668 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 06:08:08 +00:00
bzbarsky%mit.edu
c3731640d3 Make the CSSLoader correctly order stylesheets as they are dynamically added
and removed via the DOM.  Clean up the nsIDocument stylesheet accessors.  Clean
up nsIDocumentObserver stylesheet stuff a bit.  Make style sheets visible in
the CSSOM (though not completely accessible) from the moment the load is kicked
off.  Make us have sheet objects that can be manipulated via CSSOM even for
failed loads. Bug 107567, bug 47734, bug 57225, bug 178407.
r=sicking,  sr=peterv.


git-svn-id: svn://10.0.0.236/trunk@134667 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 05:48:14 +00:00
bernd.mielke%snafu.de
41c72d5fee dont consider the outer table frame twice for a selection, bug 182449, r=karnaze sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134666 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 05:22:32 +00:00
mkaply%us.ibm.com
08320c37be #181678
r=me, sr=blizzard for platform specific code
OS/2 only - another regression from Webdings code


git-svn-id: svn://10.0.0.236/trunk@134665 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 04:49:10 +00:00
bienvenu%netscape.com
7a4356524a add string for auto unzip pref r=mstoltz, sr=sspitzer (not turned on yet) 180798
git-svn-id: svn://10.0.0.236/trunk@134664 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 04:35:05 +00:00
bienvenu%netscape.com
6f9dcc0a37 fix warning about unused variable fromr recent checkin, no bug, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134663 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:54:18 +00:00
bienvenu%netscape.com
ed468a3721 make sure we have a db in SyncFlags, bullet proofing for crash going offline r/sr=sspitzer 181372
git-svn-id: svn://10.0.0.236/trunk@134662 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:42:36 +00:00
bienvenu%netscape.com
4f21694b30 fix losing delete changes on server that says there are no permanent flags, r/sr=sspitzer 182641
git-svn-id: svn://10.0.0.236/trunk@134661 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 03:38:10 +00:00
alecf%netscape.com
506ef8ddc6 stupid mac / linux compilers were accepting "const const" - but the mac does not.
fixing bustage


git-svn-id: svn://10.0.0.236/trunk@134660 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 02:24:50 +00:00
miodrag%netscape.com
1e4d37b68e Removed in sdk 4.17
git-svn-id: svn://10.0.0.236/trunk@134658 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 01:19:09 +00:00
ashishbhatt%netscape.com
4aee9036fd updating test case
git-svn-id: svn://10.0.0.236/trunk@134657 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 01:12:10 +00:00
miodrag%netscape.com
9547a3050f Minor corrections
git-svn-id: svn://10.0.0.236/trunk@134656 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:43:13 +00:00
miodrag%netscape.com
f33ff5c692 Added JAVA_VERSION variable, .CHECK_VARS target, better support for different java versions
git-svn-id: svn://10.0.0.236/trunk@134655 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:42:35 +00:00
miodrag%netscape.com
fa2abcd100 Updtates for LDAPJDK 4.17
git-svn-id: svn://10.0.0.236/trunk@134654 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:38:20 +00:00
miodrag%netscape.com
a1ee7a06f7 A minor change for javadoc
git-svn-id: svn://10.0.0.236/trunk@134653 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:36:21 +00:00
miodrag%netscape.com
6d40d91740 Added jss32_stub.jar
git-svn-id: svn://10.0.0.236/trunk@134652 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:33:56 +00:00
miodrag%netscape.com
5413a51b98 A fix for jdk1.4 javadoc
git-svn-id: svn://10.0.0.236/trunk@134651 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-03 00:26:50 +00:00
alecf%netscape.com
8b24574acb ignore generated makefiles
git-svn-id: svn://10.0.0.236/trunk@134649 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:48:25 +00:00
blizzard%redhat.com
eefb68d410 Bug #182162. gtk2 embedded moz random crashing on toplevel focus in/out. Make sure to pass the right object as the callback argument. r=tor, sr=shaver
git-svn-id: svn://10.0.0.236/trunk@134648 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:47:28 +00:00
ducarroz%netscape.com
fb830b2e98 Fix for bug 180901. Instead of addressing the message to the sender when no recipient is disclosed, it's send now to an empty group named undisclosed-recipients (this is localizable). Also, this is done only if the pref "mail.compose.add_undisclosed_recipients" is set to true. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134645 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:43:26 +00:00
sicking%bigfoot.com
60b76c0448 Bug 169124: Make the XSLT contentsink create generic xml-elements for all elements to get around limitations with xhtml elements. Also do some cleaning in the XML contentsink.
r=harishd sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134640 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:24:57 +00:00
cmanske%netscape.com
5398e492ae Reduce bloat in composer dialog JS. b=183055, r=akkana, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@134638 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:05:27 +00:00
cmanske%netscape.com
53a7359942 Fixed conflicting insert HTML commands. b=180303, r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@134637 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 23:00:54 +00:00
wtc%netscape.com
d67bf81692 Bug 181913: disable the makefile rule for .s for OS/2 so that .asm files
are used when there are same-named .s files in the same directory.  The
patch is contributed by Javier Pedemonte <pedemont@us.ibm.com>.


git-svn-id: svn://10.0.0.236/trunk@134636 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:57:21 +00:00
syd%netscape.com
2c4aefc3a8 Change QuickTime --> Quicktime to avoid build failure if includes are located on
a UFS-formatted columne (Mach 0 builds only). r=seawood@netscape.com,
sr=sfraser@netscape.com. http://bugzilla.mozilla.org/show_bug.cgi?id=182425
Fixing this gets us a clean build, so I'm going to mark the bug fixed.


git-svn-id: svn://10.0.0.236/trunk@134633 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:34:03 +00:00
alecf%netscape.com
736bd2c76d oops, forgot to add that my last checkin was bug 177545
git-svn-id: svn://10.0.0.236/trunk@134632 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:32:04 +00:00
alecf%netscape.com
87822e9a61 switch nsBindingManager over to pldhash and nsDoubleHashtable - this greatly reduces the number of allocations from XBL, the single worst consumer of nsHashtable!
sr=brendan, r=hyatt


git-svn-id: svn://10.0.0.236/trunk@134631 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:30:26 +00:00
yokoyama%netscape.com
3e375c3472 Bug 171468
Widget Save As dlgbox needs to include
options.
Affects only in Windows platforms
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134630 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:29:20 +00:00
nhotta%netscape.com
fd1fc8129e Adding sort/search support for phonetic names,
bug 179823, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134629 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:27:38 +00:00
nhotta%netscape.com
77e66a53f3 Adding sort/search support for phonetic names,
bug 179823, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134628 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:21:08 +00:00
brade%netscape.com
8ad91047f9 remove dead code; cleanup command params for a few commands; standardize QI calls (bug 180745, r=cmanske, sr=smfr)
git-svn-id: svn://10.0.0.236/trunk@134627 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:20:12 +00:00
nhotta%netscape.com
8625dc26aa Adding an option to auto-detect common short date format,
bug 98144, r=ducarroz, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134626 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:19:24 +00:00
nhotta%netscape.com
55dac71019 Adding an option to auto-detect common short date format,
bug 98144, r=ducarroz, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@134625 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:13:18 +00:00
nhotta%netscape.com
9ca6b931cc Adding Finish method to nsIScriptableUConv,
check in for kazhik@mozilla.gr.jp,
r=nhotta, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@134624 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 22:11:11 +00:00
brade%netscape.com
9a84531cb2 documentation; not part of a build
git-svn-id: svn://10.0.0.236/trunk@134623 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 20:43:24 +00:00
cbiesinger%web.de
ab17d8f22f 152504 patch by david g king dgk@metrocast.net r=pch sr=ben
JavaScript error while leaving File Bookmark dialog (treecols has no properties)


git-svn-id: svn://10.0.0.236/trunk@134620 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 19:39:45 +00:00
mostafah%oeone.com
ae492c9252 Checked in patch for bug 182880: [patch] multi day, all day events are not saved into ical file.
git-svn-id: svn://10.0.0.236/trunk@134616 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 18:08:22 +00:00
syd%netscape.com
362f719af0 Fix case for Mach o UFS builds. http://bugzilla.mozilla.org/show_bug.cgi?id=182425, r=seawood, sr=fraser
git-svn-id: svn://10.0.0.236/trunk@134615 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 15:39:04 +00:00
syd%netscape.com
fe95ae3eaf Fix case on some files for mach o builds on UFS. r=seawood, sr=sfraser.
http://bugzilla.mozilla.org/show_bug.cgi?id=182425


git-svn-id: svn://10.0.0.236/trunk@134614 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 15:37:55 +00:00
cbiesinger%web.de
a065c99081 103859 patch by neil@parkwaycc.co.uk r=cmanske sr=alecf controller.QueryInterface(Components.interfaces.nsICommandController) should be in goUpdateComposerMenuItems instead of goUpdateCommandState
git-svn-id: svn://10.0.0.236/trunk@134613 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 14:22:43 +00:00
cbiesinger%web.de
fedacb772c 171721 patch by neil@parkwaycc.co.uk r=cmanske sr=alecf Mozilla add-ins can move the Composer taskbutton
git-svn-id: svn://10.0.0.236/trunk@134612 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 14:01:01 +00:00
cbiesinger%web.de
1ac1bdafae 160927 patch by james ross twpol@aol.com r=varga sr=jag
"Customize Tab" breaks with JavaScript error


git-svn-id: svn://10.0.0.236/trunk@134611 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:57:35 +00:00
cbiesinger%web.de
a651c016eb 160040 patch by james ross twpol@aol.com r=varga sr=alecf Download manager; column order not persisted
git-svn-id: svn://10.0.0.236/trunk@134610 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:55:53 +00:00
glazman%netscape.com
a422a6442b Table of Contents management in Composer (lives under Insert menu); b=170050, r=cmanske, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134609 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 13:54:41 +00:00
bratell%lysator.liu.se
7491cb486a Bug 165877 - ToFloat never reported when the string wasn't a legal float. Also switch to strtod for a small performance win. r=jaggernaut@netscape.com, sr=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134608 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 09:30:59 +00:00
mkaply%us.ibm.com
7ad05b4517 OS/2 only - type in install script
git-svn-id: svn://10.0.0.236/trunk@134607 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 06:27:07 +00:00
justdave%syndicomm.com
cdd8d6b924 Bug 177850: checksetup.pl was failing if the user didn't have read permissions to the entire Bugzilla path
Patch by Jussi Sirpoma <jussi@comlink.fi>
r=justdave, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134606 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-02 01:47:20 +00:00
axel%pike.org
a7451302b8 npob, docs, initial upload, work in progress
git-svn-id: svn://10.0.0.236/trunk@134605 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 20:47:38 +00:00
cbiesinger%web.de
f754767d3e bug 84756 patch by Harshal <keeda@hotpop.com> r=caillon sr=peterv
JS menu is destroyed during use


git-svn-id: svn://10.0.0.236/trunk@134604 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 13:54:39 +00:00
jake%bugzilla.org
a5c1bff965 Bug 178880 - Creation date is now displayed in the long list.
Patch by Frank Wein <mcsmurf@gmx.net>
r=jake
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134603 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 03:59:33 +00:00
caillon%returnzero.com
f62538ac65 181585 - Moving rdf/ over to the new pref APIs since nsIPref is deprecated.
r=rjc sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134602 18797224-902f-48f8-a5cc-f745e15eee43
2002-12-01 03:20:50 +00:00
cmanske%netscape.com
39d3f98587 Move caret to text position with rt click. b=181547, r=rods, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134597 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 18:59:34 +00:00
caillon%returnzero.com
1396a937d1 182725 - nsIPref is deprecated - use nsIPrefBranch and nsIPrefService
r=adamlock sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134596 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 15:22:31 +00:00
peterv%netscape.com
06bfcaa734 Fix OS/2 bustage.
git-svn-id: svn://10.0.0.236/trunk@134595 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 09:45:19 +00:00
peterv%netscape.com
d612da8f4c Fix static build bustage.
git-svn-id: svn://10.0.0.236/trunk@134594 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 09:43:13 +00:00
brendan%mozilla.org
3e21682c6e Optimize s.match(r) into r.test(s) if possible (no bug, r=shaver).
git-svn-id: svn://10.0.0.236/trunk@134593 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 06:51:27 +00:00
bugreport%peshkin.net
19d15cdfda Bug 182512 Charts over time broken
patch by joel
r=gerv
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134592 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 03:47:41 +00:00
bugreport%peshkin.net
1c221514d7 Bug 181951 Cannot delete groups
Patch by joel
r=burnus,bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134591 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 03:46:03 +00:00
peterv%netscape.com
4fe797e9a2 Fix warning.
git-svn-id: svn://10.0.0.236/trunk@134590 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 02:07:59 +00:00
peterv%netscape.com
7501d0a65d Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@134589 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 00:27:09 +00:00
alexsavulov%netscape.com
7c522c57b3 Fix for bug 138957 - Submission triggering element must submit nam/value pair
if the submission is performed from onlcick and the handler retunrs true.
Introduced submission deferal to wait for the handler's return value.
r= jkeiser sr=jst


git-svn-id: svn://10.0.0.236/trunk@134588 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-30 00:01:21 +00:00
peterv%netscape.com
d103a96ada Fix for bug 176610 (Make nsNameSpaceManager a service). r=caillon, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134587 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 23:44:07 +00:00
paper%animecity.nu
ce34f046a9 Bug 148637 Clean-up imgContainerGIF. r=biesi sr=tor
git-svn-id: svn://10.0.0.236/trunk@134586 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 22:45:04 +00:00
blakeross%telocity.com
9b36be5b84 And, of course, update the jar...
git-svn-id: svn://10.0.0.236/trunk@134583 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 04:54:59 +00:00
blakeross%telocity.com
19c2944b04 Cut more comm dependencies; remove some unused files.
git-svn-id: svn://10.0.0.236/trunk@134582 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-29 04:50:50 +00:00
dbaron%fas.harvard.edu
2644fbd1b6 Remove unneeded stubs for code to support Navigator 4.x-only suppress attribute. b=182554 r=biesi (who noticed the problem) sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134581 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 23:02:31 +00:00
depstein%netscape.com
a5f1824026 refactored code, changes to object error checking handling. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134580 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 22:39:58 +00:00
cbiesinger%web.de
537c0be9c1 removing unused function Area::ToHTML. r=peterv sr=dbaron. no bug.
git-svn-id: svn://10.0.0.236/trunk@134578 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 22:18:01 +00:00
dbaron%fas.harvard.edu
ec61a6b0ab Remove unused parser-related code. b=130439 r=harishd sr=jst
git-svn-id: svn://10.0.0.236/trunk@134577 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:43:51 +00:00
dbaron%fas.harvard.edu
d77395a3b9 Fix margin collapsing of margins other than the first child's top margin out of the top of a block. b=44242, 18206 r=roc (mostly)
git-svn-id: svn://10.0.0.236/trunk@134576 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:29:28 +00:00
dbaron%fas.harvard.edu
bbf1cff0b4 Back out previous checkin. b=180711
git-svn-id: svn://10.0.0.236/trunk@134575 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:15:27 +00:00
dbaron%fas.harvard.edu
782bef8d5f Don't use default parameters for NS_NewAreaFrame. Make relatively positioned frames not use NS_BLOCK_WRAP_SIZE and NS_BLOCK_SPACE_MGR. b=180711 r=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134574 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 19:12:16 +00:00
kaie%netscape.com
f65124c8f1 b=180806 IMAP backend should avoid unnecessary logout
r=bienvenu sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134573 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 18:36:36 +00:00
kaie%netscape.com
c95c71be0b b=115294 Support S/Mime signing only configuration / relax certificate configuration requirements
r=javi sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134572 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 18:31:03 +00:00
sspitzer%netscape.com
96f8e9be54 followup fix to bug #182386
now that there isn't an unknown state, fix the dialog text.

thanks to kairo@kairo.at for pointing this out.


git-svn-id: svn://10.0.0.236/trunk@134571 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 16:42:50 +00:00
mikep%oeone.com
abb3c9b39e Adding in side calendar to main window.
git-svn-id: svn://10.0.0.236/trunk@134568 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 14:20:09 +00:00
bbaetz%student.usyd.edu.au
4dd0d47760 Bug 171493 - make show_bug use Bug.pm and remove bug_form.pl
r=justdave, joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134567 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 10:49:58 +00:00
sspitzer%netscape.com
a8f1bc37f3 fix for bug #179989. make it so if you try to drop "illegal" urls (like mailto:)
or random, non-url text, we don't attach it.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134566 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 08:55:09 +00:00
sspitzer%netscape.com
bac2696b35 fix for #42105.
when creating a news account, don't set the username to be the username
part of the email address (from the wizard).

this fixes bug #154213, a problem with the account picker in the subscribe dialog
cause by the bogus username

also, some code cleanup

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134565 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 06:51:10 +00:00
paper%animecity.nu
2cf75c349c Bug 179546. Remove gs->transparent_pixel since it's not being used.
r=biesi sr=tor


git-svn-id: svn://10.0.0.236/trunk@134564 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 05:50:49 +00:00
sspitzer%netscape.com
2de2445f5d fix for bug #180019.
fix problems when choosing "Customize..." mail view, and then cancelling.
also fix problems when you choose the same view as previously chosen.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134562 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 04:31:58 +00:00
sspitzer%netscape.com
d4c9516bdd followup to bug #182386. no need to ship these unused icons to the user.
git-svn-id: svn://10.0.0.236/trunk@134561 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:50:39 +00:00
sspitzer%netscape.com
3d54bb27b0 fix for bug #182381. remove harded coded strings.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134560 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:48:20 +00:00
sspitzer%netscape.com
a4fe7475bb fix for bug #182386. "unknown" junk state should look like "not junk"
to avoid confusion.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134559 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:39:45 +00:00
jrgm%netscape.com
5114acec96 add back consts to fix bug 182184, 'throbber/back/forward stopped working', r=caillon, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134558 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:37:26 +00:00
bienvenu%netscape.com
8c091d4aad fix problem with folder permissions and imap acl r/sr=sspitzer 170597
git-svn-id: svn://10.0.0.236/trunk@134557 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:32:17 +00:00
depstein%netscape.com
dac59cd51d Add test cases for nsIChannel. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134556 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 03:31:43 +00:00
jst%netscape.com
49eed9d43a Renaming member variables in nsTimeoutImpl from 'foo' to 'mFoo'. rs=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134555 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:35:45 +00:00
jst%netscape.com
656e41ee04 Fixing bug 178810. Original idea for the fix proposed by keeda@hotpop.com, complete fix written by me. Fix reference counting goofup that is triggerd by timeouts that run while a timeout is executing (due to a bug that lets timeouts fire while modal windows are open). r=peterv@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@134553 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:04:18 +00:00
sspitzer%netscape.com
4c0abb0450 fix for #173915. add print preview sub menu to print button in mailnews.
fix title for print preview.  thanks to neil@parkwaycc.co.uk for the patch.
r/sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134551 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 01:00:32 +00:00
curt%netscape.com
be98122dd2 Merging in Sean's fix from bug #182195
(This script isn't part of the build yet.)


git-svn-id: svn://10.0.0.236/trunk@134548 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-28 00:28:36 +00:00
jkeiser%netscape.com
6ed54fa40a Make testcase reflect its comments (bug 130834), r=timeless, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134547 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:50:40 +00:00
sspitzer%netscape.com
23d598147d fix for bug #180477. fix crasher and other problems with toggling junk
state from the advanced search dialog.  and some code cleanup.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134546 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:36:38 +00:00
ssu%netscape.com
703255b7b5 fixing bug 182195 - XP Start Menu displays $ProductNameInternal$ instead of Mozilla for the default browser. r=dveditz sr=leaf
git-svn-id: svn://10.0.0.236/trunk@134545 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:25:02 +00:00
akkana%netscape.com
acbc41ecc3 169615: Get rid of MOZILLA_FIVE_HOME warning. r=dmose sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134542 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 23:02:17 +00:00
curt%netscape.com
1c4588e4f9 New installers build process which will not become part of the build
until Leaf flips the switch on the nightly automation process.


git-svn-id: svn://10.0.0.236/trunk@134541 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:50:46 +00:00
mkaply%us.ibm.com
45bdb3c528 #182014
r=me, sr=blizzard (platform specific code)
OS/2 only - regession caused by webdings code - forgot to set convertcodepage in unicode case


git-svn-id: svn://10.0.0.236/trunk@134540 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:33:37 +00:00
despotdaemon%netscape.com
f7464b5138 Pseudo-automatic update of changes made by amardare@qnx.com.
git-svn-id: svn://10.0.0.236/trunk@134538 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:14:11 +00:00
despotdaemon%netscape.com
b66e1c96ac Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134537 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 21:10:47 +00:00
darin%netscape.com
566b2efd7b attempted fix for compilation error w/ GCC 2.91.66
git-svn-id: svn://10.0.0.236/trunk@134536 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 20:21:12 +00:00
shanjian%netscape.com
f0b8eddb74 #168582 POST document is not displayed correctly in new window
carry over charset to new window.
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134535 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 19:53:56 +00:00
jake%bugzilla.org
62306f0779 Bug 67077 - We now include the timezone (as configured in editparams.cgi) on every time we display.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134534 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 16:00:44 +00:00
mikep%oeone.com
812a38cd77 Fixing up JS warnings, as per bug 162166.
git-svn-id: svn://10.0.0.236/trunk@134533 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 15:20:28 +00:00
mikep%oeone.com
913d8b05d8 Fixing bug 173028, allowing multiple selection of importing files.
git-svn-id: svn://10.0.0.236/trunk@134532 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 14:53:38 +00:00
bugreport%peshkin.net
cd1d896b54 Bug 173761 Need ability to always require login
patch by joel
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134531 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 14:46:06 +00:00
ere%atp.fi
e3097d519b Bug 24064: Need ability to specify Trash folder
r=Henry.Jia
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@134530 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 12:20:37 +00:00
henry.jia%sun.com
f17f4ad580 Bug 161085: get rid of m_onlineBaseFolderExists, it's not used
r=antonio.xu@sun.com, sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134529 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 04:02:00 +00:00
dbradley%netscape.com
fc95069bc7 Bug 180182 - crash[@ 0x10101010 - js_GetSlotThreadSafe - JS_GetPrivate]
This was caused by GC occuring within JS_CloneFunctionObject, and the jsval passed in wasn't protected. r=dbradley, sr=jst, patch=jband


git-svn-id: svn://10.0.0.236/trunk@134527 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:55:17 +00:00
bzbarsky%mit.edu
a7df7dd1ed Remove fishy logic with the advisory type. Bug 155421, r=sicking, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134526 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:42:37 +00:00
wtc%netscape.com
7a20504c45 Bug 162358: added NSPR file I/O functions that take UTF16 pathnames. The
patch is contributed by Roy Yokoyama <yokoyama@netscape.com>.
Modified Files: config/config.mk prio.h prtypes.h _win95.h primpl.h
                prdir.c prfile.c w95io.c ptio.c


git-svn-id: svn://10.0.0.236/trunk@134523 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:17:13 +00:00
blizzard%redhat.com
accc0f11f7 Oops, that debugging code shouldn't have been checked in.
git-svn-id: svn://10.0.0.236/trunk@134521 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 03:02:40 +00:00
blizzard%redhat.com
e2100603d6 Bug 177405. Scrollbars look funny of they have been resized to infinite. Fix the size at infinity to 1 so the bar fills up the entire length of the scrollbar.
git-svn-id: svn://10.0.0.236/trunk@134520 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:56:11 +00:00
dmose%netscape.com
c5da7cc880 Fix mailnews gcc warnings (bug 179775); thanks to Pratik <psolanki@netscape.net> for the patch. r=dmose, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134519 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:52:37 +00:00
blizzard%redhat.com
dfff886cca Bug #182130. Fix crashes with gtk2 and realvideo plugin. Check to make sure that the window in question is an Xt window before using it. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134518 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:46:39 +00:00
brendan%mozilla.org
6c127b41c8 Fix rt->checkObjectAccess call in fun_getProperty to avoid non-object-accessing calls (r=waterson).
git-svn-id: svn://10.0.0.236/trunk@134515 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:11:53 +00:00
blythe%netscape.com
69dbe67535 Not part of build.
Script to help determine where uuids are declared and who uses them.


git-svn-id: svn://10.0.0.236/trunk@134514 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 02:09:05 +00:00
depstein%netscape.com
628529582f cosmetic string change. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@134511 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:28:51 +00:00
wtc%netscape.com
22041a7a31 Bug 181878: fixed two more bugs in the new code to support multiple email
addresses per certificate.  r=nelsonb.


git-svn-id: svn://10.0.0.236/trunk@134510 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:28:03 +00:00
pschwartau%netscape.com
8b70df5c22 Removing an extraneous line.
git-svn-id: svn://10.0.0.236/trunk@134509 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:12:21 +00:00
pschwartau%netscape.com
b59d6629c8 Initial add. Regression test for bug 154693.
git-svn-id: svn://10.0.0.236/trunk@134508 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 01:00:29 +00:00
cmanske%netscape.com
a4776ceb5a Added command to notify when document url changes. b=181091, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134507 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-27 00:35:09 +00:00
jrgm%netscape.com
f2bba7188d 'Remove 'Done' in browser statusbar after first link hover' [bug 181689], (and remove some dead code), r=caillon, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134506 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:43:25 +00:00
ssu%netscape.com
39b9594222 checking in patches for bugzilla2@farside.demon.co.uk for bug 169159 - Inconsistency in the WinXP Start Menu item (version in one not in other). r=ssu, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134505 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:21:07 +00:00
wtc%netscape.com
a53eddc602 Bug 182086: on Mac OS X, ranlib needs to be rerun after static libraries
are moved.


git-svn-id: svn://10.0.0.236/trunk@134504 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:05:56 +00:00
akkana%netscape.com
b038a6f9c6 162083: fix ctrl-delete to delete by words, not to end of line. r=brade sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134503 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 23:01:12 +00:00
peterlubczynski%netscape.com
9cfbd11307 Fixing bug 137535, supporting BP_GetSupportedMIMETypes on Mach-O for MPEGS to work r=sdagley sr=beard
git-svn-id: svn://10.0.0.236/trunk@134501 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:28:39 +00:00
akkana%netscape.com
d8f411eac7 110378: Don't lose data when head is rewritten to HEAD. r=brade sr=kin
git-svn-id: svn://10.0.0.236/trunk@134497 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:15:30 +00:00
relyea%netscape.com
4a2048f209 More review changes,
Fix incorrect return in pcertdb.c


git-svn-id: svn://10.0.0.236/trunk@134496 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 22:14:56 +00:00
bienvenu%netscape.com
afe5fca8cf add msg window to spam classification calls for feedback, r=dmose, sr=sspitzer, 179162
git-svn-id: svn://10.0.0.236/trunk@134491 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:47:27 +00:00
bienvenu%netscape.com
0d7ff2e1a5 add msg window to spam classification calls for feedback, r=dmose, sr=sspitzer, 179162
git-svn-id: svn://10.0.0.236/trunk@134490 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:41:44 +00:00
caillon%returnzero.com
cf5e825d62 182084 - Use the preprocessor to turn off slider debugging rather than a run-time check.
r=cbiesinger, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134489 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:38:18 +00:00
neeti%netscape.com
f3e05e1045 fix for bug 163941-resolving shorcuts, r=rpotts,sr=darin
git-svn-id: svn://10.0.0.236/trunk@134488 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:37:58 +00:00
gerv%gerv.net
b3fbaa5983 Bug 114179 - Concentration, improvement, and templatisation of Bugzilla general user help system. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134483 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:11:23 +00:00
gerv%gerv.net
cf013779c4 Bug 181221 - CSV reports on 2-d tables have header messed up. Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134482 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:09:09 +00:00
relyea%netscape.com
cfd47f83ed Incorporate some of Nelson's review changes.
Collapse all the profile data into an array for easier processing when printing out.


git-svn-id: svn://10.0.0.236/trunk@134479 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:03:18 +00:00
relyea%netscape.com
07edc88c17 Move mac build changes from 3.6 branch back to the trunk
git-svn-id: svn://10.0.0.236/trunk@134478 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 21:00:31 +00:00
shanjian%netscape.com
4a17561eda #171813 Universal auto detector doesn't work well on sohu news page
adjust the detecting parameter.
r=ftang, sr=jst


git-svn-id: svn://10.0.0.236/trunk@134475 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 20:56:08 +00:00
shanjian%netscape.com
9a3aa1fa52 #180988 ¨¢¨¦¨ª¨®¨²¨¤¨¨¨¬¨°¨´¨¢¨¦¨ª¨®¨²¨¤¨¨¨¬¨°¨´ in text causes universal AD to display in Big5
count every char for total.
yokoyama: review+
bzbarsky: superreview+


git-svn-id: svn://10.0.0.236/trunk@134471 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 20:03:30 +00:00
pschwartau%netscape.com
ef2f1b0425 Rearranging section order for greater readability.
git-svn-id: svn://10.0.0.236/trunk@134470 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:55:34 +00:00
pschwartau%netscape.com
a11df2b282 Initial add. Regression test for bug 181834 by felix.meschberger@day.com.
git-svn-id: svn://10.0.0.236/trunk@134469 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:48:14 +00:00
wtc%netscape.com
b36655bf56 Bug 180228: moved CERT_CRLCacheRefreshIssuer from the NSS_3.6.1 section to
the NSS_3.7 section.


git-svn-id: svn://10.0.0.236/trunk@134467 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:21:55 +00:00
darin%netscape.com
3ffaddf49c cvs removing unused files, b=181699, r=gagan, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134465 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 19:11:33 +00:00
darin%netscape.com
74c316de9d fixes bug 181699 "remove unused nsProxyAutoConfigUtils and
nsIProxyAutoConfigUtils" r=gagan sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134463 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:58:27 +00:00
bzbarsky%mit.edu
b5fe6e003d Fix crash in ~nsCOMArrayEnumerator. Bug 181592, r=alecf, sr=scc
git-svn-id: svn://10.0.0.236/trunk@134462 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:57:56 +00:00
relyea%netscape.com
512e484870 Incorporate Terry's and Nelson's reviews.
git-svn-id: svn://10.0.0.236/trunk@134459 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 18:27:25 +00:00
blizzard%redhat.com
26e091b8d0 Oops, fix the crash I just introduced.
git-svn-id: svn://10.0.0.236/trunk@134457 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 16:01:26 +00:00
blizzard%redhat.com
325d2ae02c Bug #179740. [gtk2] problems with iframes - make sure that all the windows that are supposed to be listening for resize events actually are doing so. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134456 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 15:46:55 +00:00
ducarroz%netscape.com
d2555e408f Fix for 181155. As Mailing list cards don't have an email address, we should not request one to consider the card valid (this is a regression of my previous checkin). R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134455 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 15:23:47 +00:00
mhammond%skippinet.com.au
f4be74069c Get pyxpcom building and working again, at least on Windows. file test
fails, but we can live with that for now.  Not part of the build.


git-svn-id: svn://10.0.0.236/trunk@134454 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 11:39:07 +00:00
bratell%lysator.liu.se
6d8229ae4a Bug 181545 - removal of some dead code. Fixes a couple of compiler warnings. r=ducarroz, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134453 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:36:22 +00:00
cltbld%netscape.com
a1d9f77e5d up clamp to 20 hours
git-svn-id: svn://10.0.0.236/trunk@134452 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:20:40 +00:00
igor%mir2.org
4c4f27006b I moved decompilation code from NativeFunction to Parser so changes in compressed source structure will affect only one file.
git-svn-id: svn://10.0.0.236/trunk@134451 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 08:00:44 +00:00
cltbld%netscape.com
eaf04fadfc oops, wrong units for clamp rule
git-svn-id: svn://10.0.0.236/trunk@134449 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:42:40 +00:00
darin%netscape.com
9aa5bdc4c8 fixes bug 153888 "'Redirection limit' error dialog should implicate cookie blocking"
r=adamlock sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@134448 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:09:27 +00:00
nelsonb%netscape.com
78dee2f73b Back out my last change.
git-svn-id: svn://10.0.0.236/trunk@134447 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 07:07:20 +00:00
bugreport%peshkin.net
6a979fd72b Bug 181960 Reason for account being disabled is not shown
Patch by joel
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@134446 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 06:33:28 +00:00
nelsonb%netscape.com
ae3f5cf676 Eliminate bug due to uninitialized variable index. Eliminate leak.
Remove lots of warnings about signed/unsigned and assigning int to uchar.


git-svn-id: svn://10.0.0.236/trunk@134445 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 05:58:51 +00:00
edburns%acm.org
58477a5859 This file now builds an installable xpi for webclient!
git-svn-id: svn://10.0.0.236/trunk@134444 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 05:51:27 +00:00
varga%netscape.com
6f64b4fddb Fixing bookmarks quick search label and accesskey. Bug 162542
r=caillon,sr=mozbot


git-svn-id: svn://10.0.0.236/trunk@134443 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 04:45:40 +00:00
shanjian%netscape.com
7beea85904 #181117 Non-ASCII(plane 1 surrogate) link not correctly parsed in UTF-16
if the doc charset is utf-16 or utf-32,use utf8 for url encoding.
r=nhotta, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134442 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 04:42:30 +00:00
pschwartau%netscape.com
c4d51e9545 Trivial whitespace fix.
git-svn-id: svn://10.0.0.236/trunk@134440 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:55:54 +00:00
pschwartau%netscape.com
0b66433c29 Improvement by joerg.schaible@gmx.de: test not only that |err.toString()| contains |err.message|, but also that |err.message| contains the right value; i.e the value provided to the Error constructor. See bug 181909.
git-svn-id: svn://10.0.0.236/trunk@134439 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:53:39 +00:00
pschwartau%netscape.com
11412fd4ce Improvement by joerg.schaible@gmx.de: test not only that |err.toString()| contains |err.message|, but also that |err.message| contains the right value; i.e the value provided to the Error constructor.
git-svn-id: svn://10.0.0.236/trunk@134438 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 02:03:32 +00:00
pschwartau%netscape.com
dba533dff9 Fixing three typos.
git-svn-id: svn://10.0.0.236/trunk@134437 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:17:37 +00:00
pschwartau%netscape.com
6f3dbcafc4 Trivial whitespace fix.
git-svn-id: svn://10.0.0.236/trunk@134436 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:16:23 +00:00
bzbarsky%mit.edu
00957e589b Handle null namespaces in getElementsByTagNameNS. Bug 181791, r=sicking, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134435 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:13:27 +00:00
cltbld%netscape.com
2aa8fa3471 clamp y-axis at 8hrs
git-svn-id: svn://10.0.0.236/trunk@134434 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 01:02:59 +00:00
sfraser%netscape.com
6e93e54f2d Fix bug 181823: make CheckSameOrigin always return a value, rather than garbage. r=heikki, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134433 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:54:12 +00:00
bienvenu%netscape.com
e1d8800f06 fix topcrash in imap GetShowAttachmentsInline, r=ducarroz, sr=sspitzer 181858
git-svn-id: svn://10.0.0.236/trunk@134432 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:45:07 +00:00
nhotta%netscape.com
3a605e8f26 Moving displayName.lastnamefirst out to .property to make it localizable,
bug 160546, r=cavin, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@134431 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:40:50 +00:00
brendan%mozilla.org
52737cc6b9 Comment nit-picks (comment changes only).
git-svn-id: svn://10.0.0.236/trunk@134430 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:33:08 +00:00
brendan%mozilla.org
d6a719baa7 Relax comments restricting Operate calls from enumerator to allow lookups (no bug, comment change only).
git-svn-id: svn://10.0.0.236/trunk@134429 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:32:07 +00:00
darin%netscape.com
556ee1569a fixes bug 141605 "Need to work around non-standard Digest auth server
implementations [was: Digest Authorization do not quote certain values]"
patch=pach@cs.cmu.edu r=bbaetz sr=darin


git-svn-id: svn://10.0.0.236/trunk@134428 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:26:13 +00:00
relyea%netscape.com
bee24534b4 Bug 181878 allow multiple email addresses to point to a single subject record.
git-svn-id: svn://10.0.0.236/trunk@134427 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-26 00:13:54 +00:00
smontagu%netscape.com
7a3e55577b Bug 108136: Shift_JIS conversion problem on MacOS9, OS/2. Authors=shom@vinelinux.org, k-ichioka@msb.biglobe.ne.jp; r=ftang, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@134426 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:44:28 +00:00
bzbarsky%mit.edu
0258e6972f Fix crash if a site overrides one of our "magic" rules. Make some of the rules
!important, make nsViewportFrame a containing block no matter what the CSS
says. Bug 181692, r=karnaze, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134425 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:40:58 +00:00
bzbarsky%mit.edu
acc91df5aa Fix bug 181472 -- uri fixup should do the PossiblyHostPortUrl check before
calling NS_NewURI if the protocol handler is the external protocol handler.
r=adamlock, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134424 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:36:37 +00:00
caillon%returnzero.com
138f8ebfcf Bug 181602 - use the newer pref APIs.
r=aaronl sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134423 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:30:13 +00:00
caillon%returnzero.com
90a818bc51 Bug 181415 - Converting over to the new pref APIs
r=aaronl sr=bryner


git-svn-id: svn://10.0.0.236/trunk@134422 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:29:08 +00:00
bienvenu%netscape.com
9782a4920b cleanup dead/unused pop3/local code, r/sr=sspitzer 181805
git-svn-id: svn://10.0.0.236/trunk@134421 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:28:01 +00:00
locka%iol.ie
0b1adf6a45 NOT PART OF BUILD. Added a test to exercise postdata functionality of IWebBrowser2::Navigate2
git-svn-id: svn://10.0.0.236/trunk@134420 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:27:39 +00:00
caillon%returnzero.com
6bb41262ac Bug 181600, Updating for reviewer comments (removing an if). still r=sicking,sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134419 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:27:29 +00:00
caillon%returnzero.com
bd7eb45cc3 Bug 181600 - Use the new pref APIs. r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134418 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:26:06 +00:00
darin%netscape.com
8a27323c19 fixes bug 181732 "nordic mtv site produces 'is not a valid protocol'"
r=andreas.otte@debitel.net sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134417 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:25:09 +00:00
caillon%returnzero.com
be4452b730 180551 - Add color, thickness, and invert to the flasher interface. They should not be passed around so often to its methods since they rarely change and really
belong on the interface to begin with.
r=timeless,sr=peterv


git-svn-id: svn://10.0.0.236/trunk@134416 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:24:30 +00:00
caillon%returnzero.com
58385b1d1d 175197 - Caching the window's prefs so we don't need to constantly re-fetch the service, move the calls to use the new prefs API in the process.
r/sr=sicking,jst,alecf


git-svn-id: svn://10.0.0.236/trunk@134415 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 23:21:25 +00:00
igor%mir2.org
5794fd2948 Add args and argCount to InterpreterData to emphasize that InterpretedScript/InterpretedFunction are just runtime wrappers around InterpreterData
git-svn-id: svn://10.0.0.236/trunk@134412 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 21:33:56 +00:00
igor%mir2.org
5c23c40494 Wrap restoring of the original optimization level into finally block
git-svn-id: svn://10.0.0.236/trunk@134407 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 16:46:16 +00:00
igor%mir2.org
bcb7c1ff89 Fixing 181654: Error.prototype.toString is a generic function now
printing this.name + ": " + this.message for any this.


git-svn-id: svn://10.0.0.236/trunk@134406 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 16:44:30 +00:00
dbaron%fas.harvard.edu
8d1c43cdb5 Add newline to end of file to fix gcc 3.2 bustage.
git-svn-id: svn://10.0.0.236/trunk@134405 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 15:22:41 +00:00
glazman%netscape.com
3b885b7055 -- not part of the build --
-- CaScadeS only --

compatibility tables for CSS 1 and CSS 2


git-svn-id: svn://10.0.0.236/trunk@134402 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 14:02:51 +00:00
glazman%netscape.com
0102abbeab Coalesce similar inline nodes in Composer's CSS mode; b=179055, r=jfrancis, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134401 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 13:41:26 +00:00
sicking%bigfoot.com
441830f1fb Bug 8929: Kill NS_COMFALSE
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@134400 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 12:44:03 +00:00
sicking%bigfoot.com
6f8753e832 Bug 8929: Kill NS_COMFALSE
r=peterv sr=bz


git-svn-id: svn://10.0.0.236/trunk@134398 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 11:21:22 +00:00
sicking%bigfoot.com
2c2d9b13e5 Bug 181808: Implement and declare nsIDocumentObserver using macros
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134397 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 09:38:27 +00:00
sicking%bigfoot.com
de4e9a5e64 fix bustage
git-svn-id: svn://10.0.0.236/trunk@134396 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 09:33:11 +00:00
sicking%bigfoot.com
db4678c2f2 Bug 181808: Use macros to declare and implement nsIDocumentObserver
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134395 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 08:33:30 +00:00
bugreport%peshkin.net
b9d847372f Bug 180460 request.cgi doesn't filter list of products/components
patch by joel
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134393 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 05:38:09 +00:00
darin%netscape.com
122c621103 fixes bug 175641 "Inappropriate behavior on a 412 response"
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134390 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 05:07:10 +00:00
katakai%japan.sun.com
93fd9af3b9 bug 167866
code clean up
clean up comment line codes for nsPresShell.cpp
r=akkana,sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134389 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-25 04:58:40 +00:00
leaf%mozilla.org
7bf25afe7e adding a phoenix tinderbox module
git-svn-id: svn://10.0.0.236/trunk@134386 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 23:52:19 +00:00
justdave%syndicomm.com
5012191e1a Bug 181582 - reorders the table cells on the query page so that the list headers are grouped with the lists in Links and when
used with voice synthesis packages.
r= timeless, a= justdave


git-svn-id: svn://10.0.0.236/trunk@134385 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 22:08:42 +00:00
cbiesinger%web.de
df21192a04 181724 r=caillon sr=bzbarsky shift+enter in location bar no longer works
git-svn-id: svn://10.0.0.236/trunk@134384 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 22:00:54 +00:00
bugreport%peshkin.net
8bd91adeeb Bug 147275 Rearchitect product groups
Patch by joel
r=bbaetz,justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134383 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 19:56:34 +00:00
bienvenu%netscape.com
28df3b59ab fix 181639 strip out unused code, replace PR_FREEIF with PR_Free, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134382 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 17:14:25 +00:00
bienvenu%netscape.com
ca0da9fc76 fix problem with IMail imap server flag changes not persisting also fixed whitespace and replace PR_FREEIF with PR_Free r=cavin, sr=sspitzer 180001
git-svn-id: svn://10.0.0.236/trunk@134381 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 17:11:43 +00:00
bryner%netscape.com
58193dda87 add -register option for easier automated registration of components and chrome for static builds
git-svn-id: svn://10.0.0.236/trunk@134379 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 09:05:08 +00:00
bryner%netscape.com
b0b3597c6b Don't need to pass -Ldist/lib/components to linker on win32
git-svn-id: svn://10.0.0.236/trunk@134378 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 08:29:38 +00:00
bryner%netscape.com
4b3273bd44 Fixes for static build
git-svn-id: svn://10.0.0.236/trunk@134377 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 07:24:41 +00:00
bryner%netscape.com
048b334124 Define _BUILD_STATIC_BIN in static builds so that the static components are registered
git-svn-id: svn://10.0.0.236/trunk@134376 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 06:00:46 +00:00
bryner%netscape.com
c8a5eb0334 Add MODULE_NAME so that these modules get registered in static builds.
git-svn-id: svn://10.0.0.236/trunk@134375 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 05:59:39 +00:00
darin%netscape.com
ace744c088 cvs removing unused files (NOT PART OF THE BUILD)
git-svn-id: svn://10.0.0.236/trunk@134374 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 05:31:39 +00:00
darin%netscape.com
aa965dde12 fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@134373 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 04:37:56 +00:00
darin%netscape.com
ec022b4495 remove dead mime code, b=172963 r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134372 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 03:31:47 +00:00
pschwartau%netscape.com
8d297c8ea4 Initial add. Regression test for bug 181654 by joerg.schaible@gmx.de.
git-svn-id: svn://10.0.0.236/trunk@134371 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-24 00:14:18 +00:00
bzbarsky%mit.edu
221ba4ee50 Fix some obviously bogus comments. r=caillon, sr=clear copy/paste error.
git-svn-id: svn://10.0.0.236/trunk@134370 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 22:16:23 +00:00
bienvenu%netscape.com
cbf9b89773 make local msg body search not lock up ui, remove unused code, r=naving, sr=sspitzer 127398
git-svn-id: svn://10.0.0.236/trunk@134369 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:50:00 +00:00
bienvenu%netscape.com
3743887e26 fix duplicate folder name in filter log, r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134368 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:48:10 +00:00
ccarlen%netscape.com
6aebccbf0e Bug 175867 - CFM and Mach-0 profile locking mechanisms are different. r=bryner/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134367 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 18:11:38 +00:00
bernd.mielke%snafu.de
d89ffec36a Initialize text-indent at the table boundary, this cuts inheritance of text-indent inside tables. plus removal of a conflicting border specification bug 140682 r=hixie sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134366 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 17:56:44 +00:00
seawood%netscape.com
ae0f08c6b0 Fix egrep syntax.
git-svn-id: svn://10.0.0.236/trunk@134365 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 09:59:07 +00:00
seawood%netscape.com
139a26ec5d Fix egrep syntax.
git-svn-id: svn://10.0.0.236/trunk@134364 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 09:43:37 +00:00
bratell%lysator.liu.se
041254e0b4 Bug 181458 - Broken error checking in Internet Search caused by misplaced paranthesis. r=mozbot, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134363 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 08:34:28 +00:00
seawood%netscape.com
f7a5f8eec0 Properly detect OS_ARCH when building on Win32 ME.
Bug #180822 r=dmose,wtc


git-svn-id: svn://10.0.0.236/trunk@134362 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 06:06:12 +00:00
ducarroz%netscape.com
9a097a8886 Fix for bug 181576. Some how the line mNextStream = nsnull which was part of the patch for bug 110729 but was actually present it the tree get removed when I checked in the fix for bug 110729!
git-svn-id: svn://10.0.0.236/trunk@134361 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 06:01:41 +00:00
seawood%netscape.com
dd588cc9d5 Properly detect OS_ARCH when building on Win32 ME.
Bug #180822 r=dmose,wtc


git-svn-id: svn://10.0.0.236/trunk@134360 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:57:40 +00:00
jrgm%netscape.com
1851e5c13a null-check fix for bug 181463 'Clicking on slider with hidden thumb crashes browser' [plus a little bit of whitespace cleanup], r=varga, sr=brendan
git-svn-id: svn://10.0.0.236/trunk@134359 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:20:05 +00:00
bzbarsky%mit.edu
710d7daa68 need this error check... part of patch for bug 86486, r=adamlock, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134358 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:17:09 +00:00
jrgm%netscape.com
acfddf401e missing part of checkin for bug 176791, r=curt
git-svn-id: svn://10.0.0.236/trunk@134357 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 05:14:25 +00:00
curt%netscape.com
422ae45e7a Allow for multiple client installations.
(Bug #176791, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@134355 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 02:05:24 +00:00
yokoyama%netscape.com
0893365069 179151: Need to call FreeLibrary()
We call LoadLibrary(); but need to call
FreeLibrary() upon shutdown.
Impact only Windows platforms only
/r=shanjian; /sr=kin


git-svn-id: svn://10.0.0.236/trunk@134353 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:33:51 +00:00
darin%netscape.com
832cb48664 fixes bug 181440 "UBS E-Banking broken because of regression in http headers"
r=morse sr=bz


git-svn-id: svn://10.0.0.236/trunk@134352 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:30:26 +00:00
caillon%returnzero.com
9641b989dd Bug 181442 - Convert editor's pref usage to the new pref APIs.
r=brade sr=kin


git-svn-id: svn://10.0.0.236/trunk@134351 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:26:58 +00:00
blakeross%telocity.com
dd01853892 Port trunk fix, fix tbox.
git-svn-id: svn://10.0.0.236/trunk@134350 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:21:34 +00:00
blakeross%telocity.com
53a7c32f8c Change tabgroup homepage separator to |.
git-svn-id: svn://10.0.0.236/trunk@134349 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-23 01:18:18 +00:00
smontagu%netscape.com
12d319fb57 Make Bidi symmetric swapping handle characters outside BMP. Bug 122800, r=mkaply, sr=darin
git-svn-id: svn://10.0.0.236/trunk@134348 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:49:29 +00:00
smontagu%netscape.com
244ec01837 Remove unnecessary ToNewCString() allocation. Bug 181314, r=jaggernaut, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134347 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:44:42 +00:00
shanjian%netscape.com
5b08039113 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134346 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:23:25 +00:00
cltbld%netscape.com
ab93294271 aim string
git-svn-id: svn://10.0.0.236/trunk@134345 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:19:20 +00:00
dbradley%netscape.com
b32cfb75e5 Bug 173146 - This is the third patch in the series for IDispatch support. The bulk of the changes are comments and formatting, and some better error handling. r=adamlock, sr=jst and the code review group. NOTE: The bulk of this code is still not part of the build and the reviews reflect the XPConnect portions only.
git-svn-id: svn://10.0.0.236/trunk@134344 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 23:04:53 +00:00
rods%netscape.com
bde4c45748 more tests
git-svn-id: svn://10.0.0.236/trunk@134343 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:46:10 +00:00
rods%netscape.com
fb3365eacd more tests
git-svn-id: svn://10.0.0.236/trunk@134342 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:39:51 +00:00
shanjian%netscape.com
18f083d356 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134341 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:36:42 +00:00
brade%netscape.com
d4b0c0d2e3 checkin fix for bug 169589 (ctrl-tab navigation) for Neil; r=brade, sr=jag
git-svn-id: svn://10.0.0.236/trunk@134340 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:28:57 +00:00
blizzard%redhat.com
c91b921b44 Remove printf() that shouldn't have been checked in in the first place.
git-svn-id: svn://10.0.0.236/trunk@134339 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:17:47 +00:00
rjc%netscape.com
368d40a74d Fix bug # 167335: get cut/copy/paste of bookmarks working. r=chanial@noos.fr sr=ben
git-svn-id: svn://10.0.0.236/trunk@134338 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 22:06:21 +00:00
leaf%mozilla.org
845e912b8d TRUE -> PR_TRUE, build bustage fix
git-svn-id: svn://10.0.0.236/trunk@134335 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 16:46:32 +00:00
ducarroz%netscape.com
9ab2cdb3de Fix for bug 55657. Implement possibility to disable display attachment inline. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134334 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:47:04 +00:00
mikep%oeone.com
9e267f1a36 Adding in the ability to restrict the day view to certain hours.
git-svn-id: svn://10.0.0.236/trunk@134333 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:41:57 +00:00
ccarlen%netscape.com
51d4f92fe1 Bug 180718 - Use rsync instead of cp to populate Mach-0 bundle. r=seawood/sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134332 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:26:38 +00:00
ccarlen%netscape.com
c8789fae6c Bug 180951 - profile directory never changes on profile switch. r=kaie/sr=alecf
git-svn-id: svn://10.0.0.236/trunk@134331 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 15:11:31 +00:00
rods%netscape.com
337ea6f743 Instead of at the end of of the PO it needs to be in the middel of reflow
where we bail out earlier, basically same fix different location
Bug 149710 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134329 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 13:06:58 +00:00
rods%netscape.com
52fac3b22e The search for the selected frames was not looking in all the child lisst for each frame
Bug 181228 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134328 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 13:02:05 +00:00
glazman%netscape.com
5b8e44eab8 -- not part of the build --
CaScadeS only

Editorshell removal


git-svn-id: svn://10.0.0.236/trunk@134327 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 12:40:12 +00:00
bratell%lysator.liu.se
d8c86a7ceb Bug 165893 - use cached nsParserService pointer instead of looking up the service everywhere. r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134326 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 12:20:05 +00:00
caillon%returnzero.com
d4dd11d541 181420, Use nsIPrefBranch instead of nsIPref.
r=rbs sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134325 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 11:29:31 +00:00
robin.lu%sun.com
f85995dd93 For bug 180147 [gtk2] need to port over the null plugin
patched by blizzard, robin.lu r=blizzard, robin.lu sr=bryner
Not in default build


git-svn-id: svn://10.0.0.236/trunk@134324 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 10:23:51 +00:00
axel%pike.org
62fdd9f141 bug 151055, some result elements dont accept children, txMozillaXMLOutput crashes, r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@134323 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:52:18 +00:00
despotdaemon%netscape.com
3f10aba7d2 Pseudo-automatic update of changes made by louie.zhao@sun.com.
git-svn-id: svn://10.0.0.236/trunk@134322 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:51:29 +00:00
hewitt%netscape.com
6f45e4f890 updating editor binding url
git-svn-id: svn://10.0.0.236/trunk@134321 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 08:22:57 +00:00
rjc%netscape.com
9b6d0aa857 Fix bug # 180423: implement nsIRDFRemoteDataSource::FlushTo() which enables, among other things, serializing bookmarks as RDF. r=pavlov sr=ben
git-svn-id: svn://10.0.0.236/trunk@134320 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:55:59 +00:00
darin%netscape.com
b59017f198 fixes bug 157133 "HTTP Interfaces need to be frozen" r=dougt sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134319 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:40:16 +00:00
cltbld%netscape.com
f258f2e6e0 filter irc string
git-svn-id: svn://10.0.0.236/trunk@134318 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:06:10 +00:00
mkaply%us.ibm.com
5d66a43a8a #171166
r=pedemont, sr=blizzard (platform specific code)
OS/2 only - hack to support webdings


git-svn-id: svn://10.0.0.236/trunk@134317 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 07:03:56 +00:00
darin%netscape.com
8be1d31c3c fixing some WIN32 thread safety problems.
git-svn-id: svn://10.0.0.236/trunk@134316 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:58:47 +00:00
darin%netscape.com
3990c136b7 fixes some XP_WIN review comments from dougt. fixed some startup/shutdown
races, etc.


git-svn-id: svn://10.0.0.236/trunk@134315 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:46:24 +00:00
mkaply%us.ibm.com
f90cdf9b2a #179617
r=me, sr=blizzard (platform specific code)
OS/2 only - fix major regression caused by event checkin - don't reuse event structures


git-svn-id: svn://10.0.0.236/trunk@134314 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:37:53 +00:00
cltbld%netscape.com
7554e4a4ef more log trimming
git-svn-id: svn://10.0.0.236/trunk@134312 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 06:05:39 +00:00
jfrancis%netscape.com
1c37131272 pay no attention to the man behind the curtain.
git-svn-id: svn://10.0.0.236/trunk@134311 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 05:40:10 +00:00
jfrancis%netscape.com
2d5b4e2164 more work on build bustage.
git-svn-id: svn://10.0.0.236/trunk@134310 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:45:25 +00:00
jfrancis%netscape.com
6ee2992315 fixing build bustage
git-svn-id: svn://10.0.0.236/trunk@134309 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:29:15 +00:00
kyle.yuan%sun.com
72d19006f2 Bug 124556 Crashing on random pages in 8-bit StaticGray class X11 server [nsImageGTK::DrawCompositedGeneral]
r=pavlov, sr=tor
modified the loop limit from (ximage->width*ximage->height) to (width*height) to avoid invalid memory access and corrected some pointer calculation bug.


git-svn-id: svn://10.0.0.236/trunk@134307 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 04:24:53 +00:00
justdave%syndicomm.com
66f9f5c8f1 Adding blurb to release notes indicating development snapshot status
git-svn-id: svn://10.0.0.236/trunk@134305 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:43:46 +00:00
jfrancis%netscape.com
8247e85525 fix for 142855: cf_html paste functionality. r=brade,cmanske; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134304 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:30:59 +00:00
justdave%syndicomm.com
a676f63720 Correcting website URL in the README file.
git-svn-id: svn://10.0.0.236/trunk@134303 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:29:20 +00:00
dmose%netscape.com
e1f0d7bd80 Fix spelling error in junk mail dialog (bug 181193). Patch from timeless, r=stephend@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134302 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:28:10 +00:00
jfrancis%netscape.com
0d9a9af955 fix for 142855: cf_html paste functioanlity. r=brade, cmanske; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134301 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 03:24:29 +00:00
bugreport%peshkin.net
36958fba38 Bug 180980 Doing 2 email searches fails when searching for CC list members
Patch by bugreport@peshkin.net
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134300 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 02:38:18 +00:00
bbaetz%student.usyd.edu.au
1ec2e67c0a Bug 180966 - warnings in webserver error log (take 2)
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134299 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:47:38 +00:00
jst%netscape.com
0e103fad90 Fixing bug 181351. Making NS_NewTextNode() return an nsITextContent pointer in stead of reaturning an nsIContent pointer to avoid having to QI the new text node to set it's value. r=caillon@returnzero.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134298 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:11:33 +00:00
ashishbhatt%netscape.com
ef8b07a133 adding xpcom test cases
git-svn-id: svn://10.0.0.236/trunk@134297 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:04:01 +00:00
jfrancis%netscape.com
940908cb67 reland fix for 174017: Multiple enters after quoted text does not move cursor; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@134296 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:03:08 +00:00
ashishbhatt%netscape.com
f0f3982147 adding nsIDOMWindow test case
git-svn-id: svn://10.0.0.236/trunk@134295 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 01:01:21 +00:00
ashishbhatt%netscape.com
2baadee9bd ndding nsISelection test case
git-svn-id: svn://10.0.0.236/trunk@134294 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:58:43 +00:00
ashishbhatt%netscape.com
24b1d45372 nsIProfile Test case
git-svn-id: svn://10.0.0.236/trunk@134293 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:56:32 +00:00
ashishbhatt%netscape.com
0dc4213609 adding netwotking folder for necko test cases
git-svn-id: svn://10.0.0.236/trunk@134292 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:49:06 +00:00
akkana%netscape.com
7859f90a48 181330: fix assert bringing up the overwrite confirmation dialog. r=timeless sr=bz
git-svn-id: svn://10.0.0.236/trunk@134291 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:41:33 +00:00
bbaetz%student.usyd.edu.au
80a2f60d9e Bug 181613 - $::ENV not being cleared
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134290 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:36:13 +00:00
jst%netscape.com
510cbb827d Ok, I've seen this printf enough times now, commenting out.
git-svn-id: svn://10.0.0.236/trunk@134289 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:30:37 +00:00
gerv%gerv.net
648b09e5a1 Bug 181182 - Reporting fix pack 2. Fixes bug 179198 (Don't print labels for pie chart wedges when smaller than a certain size), bug 180255 (Tabular report CSV downloads should suggest csv filename), and bug 180967 (csv reports swap rows/columns). Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134288 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-22 00:07:22 +00:00
bbaetz%student.usyd.edu.au
430a10d012 Bug 181286 - Invalid html in banner.html.tmpl
patch by Tobias Burnus <burnus@gmx.de>
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134287 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:55:58 +00:00
cmanske%netscape.com
354babbc6d Fixed command disabling/focus setting when loading page into new editor. b=181002, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@134286 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:53:50 +00:00
jst%netscape.com
0fcfc0bc39 Fixing bug 181351. Making NS_NewTextNode() return an nsITextContent pointer in stead of reaturning an nsIContent pointer to avoid having to QI the new text node to set it's value. r=caillon@returnzero.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134285 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:53:06 +00:00
nelsonb%netscape.com
c7fa828cf4 Put the nss 3.7 section after the nss 3.6.1 section.
git-svn-id: svn://10.0.0.236/trunk@134283 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:22:52 +00:00
gerv%gerv.net
78cd84a92d Bug 179483 - Guided template displays wrong product name sometimes. Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134282 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 23:04:01 +00:00
ian.mcgreer%sun.com
4a6e624c98 bug 172247, don't allow import of duplicate issuer/serial certs
git-svn-id: svn://10.0.0.236/trunk@134280 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 20:43:15 +00:00
sfraser%netscape.com
201ee50cad Change TinderUtils::print_log "foo" to TinderUtils::print_log("foo") to keep perl 5.6.0 happy.
git-svn-id: svn://10.0.0.236/trunk@134279 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 20:32:28 +00:00
mikep%oeone.com
f13726275d Fixing deleting remote calendars that I just broke.
git-svn-id: svn://10.0.0.236/trunk@134276 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 19:18:36 +00:00
mikep%oeone.com
0515124166 Fixing bug 181305, problem with renaming calendars.
git-svn-id: svn://10.0.0.236/trunk@134274 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 19:14:50 +00:00
justdave%syndicomm.com
ada2fbdaae Backing out the checkin for bug 180966 (fix warnings in web server error log). This checkin caused commenting on bugs to fail
if timetracking is not enabled.


git-svn-id: svn://10.0.0.236/trunk@134273 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 18:46:21 +00:00
despotdaemon%netscape.com
59d00b7be9 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134271 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 17:59:19 +00:00
timeless%mozdev.org
c0793c0771 Bug 180127 Inspector destructors unconditionally delete objects
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@134270 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:55:08 +00:00
mkaply%us.ibm.com
9acd03e8b9 #164149
r=pedemont, sr=blizzard (platform specific code)
OS/2 only - convert old Unicode stuff to new APIs


git-svn-id: svn://10.0.0.236/trunk@134269 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:50:26 +00:00
mikep%oeone.com
c45e5c99e2 Adding in publishing prefs file, new build.
git-svn-id: svn://10.0.0.236/trunk@134268 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:29:42 +00:00
karnaze%netscape.com
1432927ab9 bug 91491 - Invalidate the correct area when there is a caption. Invalidate max of area before reflow and area after. sr=kin, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@134267 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:28:02 +00:00
mikep%oeone.com
76c02e1abe Adding in the ability to delete remote calendars.
git-svn-id: svn://10.0.0.236/trunk@134266 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:23:06 +00:00
dbaron%fas.harvard.edu
50c6bdf397 One more shutdown leak. b=179361 r=blizzard sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134265 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:22:49 +00:00
dbaron%fas.harvard.edu
10dd68c42b Correct my incorrect comments relating to combined area, and explain what combined area is for. Comment changes only. b=172896
git-svn-id: svn://10.0.0.236/trunk@134264 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:20:20 +00:00
kin%netscape.com
e3b69667f5 Fix for bug #176251 (Problems with nsContentIterator PRE traversal)
content/base/public/nsIContentIterator.h
  content/base/src/nsContentIterator.cpp
  content/base/src/nsGeneratedIterator.cpp
  content/build/nsContentCID.h
  content/build/nsContentModule.cpp
  embedding/components/find/src/nsFind.cpp
  layout/html/style/src/nsFrameContentIterator.cpp

  - Removed MakePre() and MakePost() from the nsIContentIterator interface.
  - Traversal must now be specified at time of creation.
  - Fixed nsContentIterator Init() methods so that they correctly calculate
    mFirst and mLast.
  - Modified PositionAt() to check if the node is in the traversal range.

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


git-svn-id: svn://10.0.0.236/trunk@134263 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:07:49 +00:00
mikep%oeone.com
351e68b25d Localizing prefs.
git-svn-id: svn://10.0.0.236/trunk@134262 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 15:00:43 +00:00
mikep%oeone.com
8e1c4fb620 Adding in the ability to remember publishing preferences.
git-svn-id: svn://10.0.0.236/trunk@134261 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:57:42 +00:00
mikep%oeone.com
1d58f12402 Fixing bug 181253, request by P. Lairo to change the to do header from Due Date to just "Due". I removed all the words "Date" from teh headers, to save space.
git-svn-id: svn://10.0.0.236/trunk@134260 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:13:56 +00:00
timeless%mozdev.org
70ff17de00 Bug 122224 Inspect a Window submenu needs access keys
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134259 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 14:04:10 +00:00
colin%theblakes.com
b5321ce17e Fix broken profile locking on OpenVMS. b=180738 r=ccarlen sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134258 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 13:34:25 +00:00
kairo%kairo.at
b47c92a2fd bug 174072, remove italic definition from modern plugins.css because italic system font comes up unreadable on old win32 systems, r=beppe, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134257 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 11:27:59 +00:00
timeless%mozdev.org
70cd87cd21 Bug 181125 remove nsIEnumerator imgIContainer::enumerate() method
r=biesi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134256 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 09:06:12 +00:00
paper%animecity.nu
95fb518a22 Bug 180963: remove duplicate file /gfx/src/nsRenderingContextImpl.cpp
r=brade sr=tor


git-svn-id: svn://10.0.0.236/trunk@134255 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 08:59:30 +00:00
darin%netscape.com
fbe32eea6c further revisions following review w/ dougt
git-svn-id: svn://10.0.0.236/trunk@134253 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 07:57:09 +00:00
bryner%netscape.com
753fe55c0a Use an explicit select line in installed-chrome.txt so that the default skin is classic, regardless of the order in which chrome is registered during the build. Fixes bug 180984. r=cls.
git-svn-id: svn://10.0.0.236/trunk@134249 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 07:10:01 +00:00
cltbld%netscape.com
7b4a636ccf filter out windows ^Ms
git-svn-id: svn://10.0.0.236/trunk@134248 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 06:23:39 +00:00
nelsonb%netscape.com
d9ba2b2dd3 Add tests for sha256, sha384, and sha512.
git-svn-id: svn://10.0.0.236/trunk@134247 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 05:44:41 +00:00
nelsonb%netscape.com
3eb7a816ce Add test modes for sha256, sha384 and sha512.
Fix the -c (restart) option for testing hashes.  It works with all hashes.
When the -d option is given along with the -i or -o filename option,
and the filename is not absolute, the filename is taken to be relative to
the the mode's test directory.


git-svn-id: svn://10.0.0.236/trunk@134246 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 05:44:03 +00:00
hewitt%netscape.com
4e016327a0 174403 - morkTable::RowToPos doesn't quite work, r=blake, sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134244 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 04:59:37 +00:00
timeless%mozdev.org
de37901bcc Bug 181134 change PrintImageDecoders from nsIEnumerator to nsISimpleEnumerator
r=biesi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134243 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 04:21:13 +00:00
bzbarsky%mit.edu
e8a01be9a8 fixing mac bustage
git-svn-id: svn://10.0.0.236/trunk@134242 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 03:50:46 +00:00
bzbarsky%mit.edu
6151b6c308 Clean up some mailnews array usage, fix some leaks. Bug 175540, r=dmose,
sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134241 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 03:49:11 +00:00
nelsonb%netscape.com
5d17d7f988 Use the 32-bit code on Solaris x86 platforms, too.
git-svn-id: svn://10.0.0.236/trunk@134240 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:54:04 +00:00
ducarroz%netscape.com
b5fcf8b72f Fix for bug 181127. Don't call nsMsgNewURL when the attachement is in fact a message. We need to use a different path to fetch it. R=caving, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134239 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:44:18 +00:00
dougt%netscape.com
c278ddc80d Autoreg is posting a failure for regxpcom of xpcom component. sr=alecf@netscape.com, r=dveditz@netscape.com, b=180821
git-svn-id: svn://10.0.0.236/trunk@134237 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:36:50 +00:00
cltbld%netscape.com
98a36d80e8 remove </a>
git-svn-id: svn://10.0.0.236/trunk@134236 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:34:44 +00:00
nelsonb%netscape.com
f058825676 Add test cases from FIPS 180-2.
git-svn-id: svn://10.0.0.236/trunk@134235 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 02:26:50 +00:00
cltbld%netscape.com
a5a50843d5 Further specify data file locations. Record current sheriff using crude scraping/reducing pattern stuff.
git-svn-id: svn://10.0.0.236/trunk@134232 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:45:04 +00:00
jaggernaut%netscape.com
0feba9f112 Bug 147457: mTabProgressListener shouldn't need |this| passed in. r=blake, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@134230 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:42:54 +00:00
bryner%netscape.com
f28891cc8f Fixing bug 180285 (hang in mail compose), regression from bug 124990. Don't throw an exception if dispatchEvent is called on an element that's not in a document. r=saari, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@134228 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 01:27:34 +00:00
cltbld%netscape.com
d59b666244 Fixing array error. minor ordering of test prefs. (mcafee)
git-svn-id: svn://10.0.0.236/trunk@134224 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 00:40:37 +00:00
darin%netscape.com
1dcb6a7fec revisions following review w/ dougt
git-svn-id: svn://10.0.0.236/trunk@134223 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-21 00:13:21 +00:00
smontagu%netscape.com
a17755ec09 Backing out shanjian's last checkin
git-svn-id: svn://10.0.0.236/trunk@134222 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:58:14 +00:00
locka%iol.ie
a37ceea7c5 Fix print cancel behaviour in control and add a couple of null pointer checks. b=179021 r=rods@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134221 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:38:26 +00:00
bryner%netscape.com
bfbda85da1 Removing an unused variable. r=mozbot.
git-svn-id: svn://10.0.0.236/trunk@134219 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:37:52 +00:00
jkeiser%netscape.com
61c84d1fa9 Make textareas and inputs restore again (bug 179330), r=bryner@netscape.com, sr=kin@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134217 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:19:45 +00:00
timeless%mozdev.org
a19acd6f24 Bug 171488 [classic] Remove old import rule in bookmarksWindow.css
patch by walk84@yahoo.com r=shuehan sr=bz


git-svn-id: svn://10.0.0.236/trunk@134216 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:15:18 +00:00
timeless%mozdev.org
08a2274829 Bug 171485 Remove duplicates in classic communicator.css
patch by walk84@yahoo.com r=shuehan sr=bz


git-svn-id: svn://10.0.0.236/trunk@134215 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:15:16 +00:00
heikki%netscape.com
ccf10c93b2 Bug 136717, enabled Save as Complete for XML and XHTML, r=jag, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@134214 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:14:11 +00:00
bzbarsky%mit.edu
b549c5800b Use calloc() instead of malloc() followed by memset to 0. Bug 124302, patch by
Aaron Lehmann <aaronl@vitelus.com>, r=timeless, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134212 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:13:09 +00:00
heikki%netscape.com
cdcb47665c Bug 146062 and bug 136718, pay attention to namespaces in XML documents, and fix the small but important logic/typo error in handling xml-stylesheet href pseudo-attribute. r=adamlock, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@134211 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:09:00 +00:00
jj%netscape.com
fbc6f0ced5 fix for #180374: replaced xpi download protocol for mac (now http). r=syd, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@134210 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 23:02:46 +00:00
bzbarsky%mit.edu
0a849856a4 Links with unknown protocol should report an error when clicked on. Bug 86486,
r=adamlock, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134209 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:58:57 +00:00
jst%netscape.com
b8dd45ae9c Checking in keeda@hotpop.com's fix for bug 179461. Partially implement IE's select.options.add() method. No support for the optional second argument yet. r=caillon@returnzero.com, sr=jst@netscape.com
git-svn-id: svn://10.0.0.236/trunk@134207 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:36:36 +00:00
jst%netscape.com
2911d76fc4 Fixing bug 180816. Avoid construction of an nsAutoString every time we open a container in the sink when the nsAutoString is only needed when dealing with textarea tags.
git-svn-id: svn://10.0.0.236/trunk@134206 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 22:30:53 +00:00
nhotta%netscape.com
87919cf96b Changed SetMailCharacterSet, moved us-ascii check from the callers to the function,
bug 178680, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@134204 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 21:44:31 +00:00
shanjian%netscape.com
280bef38e7 bug 176528, need a nsISemanticUnitScanner to support intl spam mail filter
Implement a new interface for this purpose.
win&linux, p=ftang, r=shanjian, sr=beard
mac build, p=nhotta, r=ftang, sr=beard


git-svn-id: svn://10.0.0.236/trunk@134203 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 21:13:52 +00:00
darin%netscape.com
41c55ec014 fixes bug 181046 "trim unnecessary bytes from standard request headers."
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134202 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 20:51:12 +00:00
blakeross%telocity.com
6415bd2a82 Port trunk fix.
git-svn-id: svn://10.0.0.236/trunk@134200 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 19:32:46 +00:00
mcafee%netscape.com
db11c66151 script to graph tree status over time
git-svn-id: svn://10.0.0.236/trunk@134199 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 19:31:44 +00:00
cbiesinger%web.de
d1bbc9e143 Bug #179296
[BMP] support images with negative height (stored top-to-bottom)
r=paper sr=tor


git-svn-id: svn://10.0.0.236/trunk@134198 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 17:46:41 +00:00
timeless%mozdev.org
3f671e446a Bug 122224 Inspect a Window submenu needs access keys
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134197 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 16:01:15 +00:00
bienvenu%netscape.com
64cf72a098 add default pref for auto unzipping attachments, r/sr=sspitzer, not used yet, 180798
git-svn-id: svn://10.0.0.236/trunk@134196 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:35:32 +00:00
bienvenu%netscape.com
fdd81a2bdf apply filter plugins to new messages in local mail folders, r=cavin, sr=sspitzer 180153
git-svn-id: svn://10.0.0.236/trunk@134195 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:21:01 +00:00
bienvenu%netscape.com
dc7966f26f fix disk thrashing when sending mail attachments by making internal nsIFileStream flushes not sync r=dougt, sr=sspitzer 180153
git-svn-id: svn://10.0.0.236/trunk@134194 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 15:18:04 +00:00
mkaply%us.ibm.com
e2d97e3db1 #177200
r=cls
OS/2 only - put call to grab nsinstall from toolsdir back
Happy Mr. Pedemonte?


git-svn-id: svn://10.0.0.236/trunk@134193 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 14:17:23 +00:00
brade%netscape.com
4a18d9ecae put delete of editor data earlier in deletion process (as approved in bug 180146); r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134192 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 14:03:01 +00:00
sspitzer%netscape.com
35d0c3fc67 fix for #180131. shift space should scroll upwards, and at the beginning,
go to the previous unread.  (space alone goes down, and at the end, to the next unread.)

thanks to neil@parkwaycc.co.uk for logging the RFE and providing the initial patch.

(I believe pine and Mail.app do this, much to the delight of their users)


git-svn-id: svn://10.0.0.236/trunk@134189 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:49:10 +00:00
cmanske%netscape.com
7831919700 Start controller IDs at 1 for InsertController. b=180814, r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134188 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:36:05 +00:00
caillon%returnzero.com
7ed5d3c58d Bug 113427 - Can't open subfolder of context-"Expand"-ed personal toolbar folder
Patch contributed by neil@parkwaycc.co.uk
r=bryner sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134187 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 11:28:40 +00:00
timeless%mozdev.org
e9c5d539b4 Bug 174603 Remove nsIEnumerator implementations: ConjoiningEnumerator, UnionEnumerator and IntersectionEnumerator
r=bbaetz sr=bz moa=alecf


git-svn-id: svn://10.0.0.236/trunk@134186 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 10:27:44 +00:00
timeless%mozdev.org
c184582c58 Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134179 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 08:10:37 +00:00
darin%netscape.com
21779967e2 fixes bug 179400 "URI fragment present in HTTP Referer" r=bbaetz sr=bz
git-svn-id: svn://10.0.0.236/trunk@134174 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:47:11 +00:00
caillon%returnzero.com
8030ffe804 Fixing an NS_PRECONDITION to reference the correct variable. Followup to last night's checkin for bug 147189. r/sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134173 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:35:33 +00:00
cmanske%netscape.com
0ff4c5f3cd Fixed nsDocShell leak and nsEditingSession init after forced reload of document. b=180146, r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134172 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:25:42 +00:00
cmanske%netscape.com
f3b0cea7ba Fixed nsDocShell leak and nsEditingSession init after forced reload of document. b=180146, r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134171 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:23:05 +00:00
timeless%mozdev.org
886c145069 Bug 180893 nsXULTemplateBuilder::Retract wastes cycles in an XXX writeme loop
r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@134170 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 06:15:54 +00:00
mcafee%netscape.com
fa58b7cebc Allow for value=0.
git-svn-id: svn://10.0.0.236/trunk@134169 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:30:47 +00:00
nelsonb%netscape.com
fedc8e686e Back out revision 1.2, which was a workaround for a c preprocessor bug
in a certain version of the c compiler for Dec/Compaq Alpha OSF1.
The file now requires one of these compilers on that platform:
Compaq C V6.3-132  or Compaq C V6.4-214 (dtk)


git-svn-id: svn://10.0.0.236/trunk@134168 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:25:58 +00:00
timeless%mozdev.org
31f62cf60f Bug 180789 nsPrefBranch::GetChildList can call PL_DHashTableEnumerate with an uninitialized gHashTable
r=dbradley sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@134167 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 05:17:18 +00:00
timeless%mozdev.org
ef759c9697 not part of the build. these directories are probably going to be removed shortly.
git-svn-id: svn://10.0.0.236/trunk@134166 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 04:06:57 +00:00
timeless%mozdev.org
0d784f61bd 180616 nsXKBModeSwitch::HandleMappingNotify should null check GDK_DISPLAY
r=bryner sr=bz


git-svn-id: svn://10.0.0.236/trunk@134165 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 04:01:46 +00:00
timeless%mozdev.org
85548945c5 Bug 180578 nsImageBoxFrame::UpdateLoadFlags doesn't null check loader
r=biesi sr=bz


git-svn-id: svn://10.0.0.236/trunk@134164 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:58:36 +00:00
pete.zha%sun.com
cd28082a88 quote message should be disabled when no message selected
b=144748 r=ducarroz@netscape.com sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134163 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:44:46 +00:00
edburns%acm.org
e1a030efa5 Generates the XPI.
git-svn-id: svn://10.0.0.236/trunk@134162 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:42:27 +00:00
waldemar%netscape.com
0b36d697b2 Added the setup phase, reorganized instance data structure, and wrote new code for processing function definitions and calls
git-svn-id: svn://10.0.0.236/trunk@134161 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:40:20 +00:00
waldemar%netscape.com
e2b7532726 Fixed try-catch variable initialization inference bug and added support for intersections of union types
git-svn-id: svn://10.0.0.236/trunk@134160 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:38:54 +00:00
blizzard%redhat.com
eb0ebd2b3c Bug #180721. floating point error when visiting web page. Paper over the fact that the style system is passing is a pixel size of 0. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134159 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:35:59 +00:00
danm%netscape.com
e781555233 prevent untrusted script from opening modal windows in general while still allowing alerts and the like. bug 180048 r=jst,mstoltz
git-svn-id: svn://10.0.0.236/trunk@134158 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:25:08 +00:00
jeff.hedlund%matrixsi.com
2bda9e1546 Bug 179582 - More informative and easier to read flag email template
r=myk
a=myk


git-svn-id: svn://10.0.0.236/trunk@134157 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 03:03:21 +00:00
despotdaemon%netscape.com
e3596c7da3 Pseudo-automatic update of changes made by myk@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@134156 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:40:04 +00:00
bbaetz%student.usyd.edu.au
a341897ec9 Bug 179293 - time tracking js should only appear if time tracking is
enabled
patch by Jeff Hedlund <jeff.hedlund@matrixsi.com>
r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134154 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:26:00 +00:00
dmose%netscape.com
b2b76461e4 Initial size of junk mail dialog is huge (bug 180215). Patch from neil@parkwaycc.co.uk; thanks Neil! r=dmose, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134153 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:09:34 +00:00
ducarroz%netscape.com
1c068cadcc Fix build bustage
git-svn-id: svn://10.0.0.236/trunk@134152 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 02:06:43 +00:00
rbs%maths.uq.edu.au
7b0bce519f .innerHTML wasn't recovering &nbsp; and this was causing consumers such as View Selection Source to lose it, b=165686, r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134151 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:47:06 +00:00
blakeross%telocity.com
e7bbaa4da9 Port over a trunk fix.
git-svn-id: svn://10.0.0.236/trunk@134150 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:38:08 +00:00
smontagu%netscape.com
ba8f43dc24 Bug 180339 Can't send message if receiver contain Chinese character. Author=joe@numa.com.tw, r=ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@134149 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:32:08 +00:00
brade%netscape.com
27cc5bdc58 bug 157111; handle new command (cmd_fontSize); r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134148 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:23:40 +00:00
brade%netscape.com
06be2f800f bug 157111; add some new commands, remove unneeded Init call for editSession; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134147 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:22:17 +00:00
brade%netscape.com
77eee3a445 bug 157111; register new commands; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134146 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:20:19 +00:00
alecf%netscape.com
d057a740e1 first part of fix for bug 180965 - if the GRE directory is the same as the normal components directory, then dont enumerate it twice.
r=dougt, sr=darin


git-svn-id: svn://10.0.0.236/trunk@134145 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:19:37 +00:00
brade%netscape.com
471812a403 bug 157111; add some new commands; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134144 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:18:48 +00:00
brade%netscape.com
7b474eeb9f bug 157111; add some new commands, cleanup do_QI assignments and some other cleanup; r=cmanske, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@134143 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:18:23 +00:00
blakeross%telocity.com
592be2ecd8 Fix extensions.
git-svn-id: svn://10.0.0.236/trunk@134141 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:11:09 +00:00
ducarroz%netscape.com
8f11bce6f4 Fix for bug 174396. Cannot use m_attachment_count because it's not reliable for determine if the top part is a multipart container. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134140 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 01:03:42 +00:00
bbaetz%student.usyd.edu.au
f411ff7fd1 Bug 181000 - Lock the keyworddefs table for READ when using a shadowdb, too
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@134139 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:59:58 +00:00
danm%netscape.com
f22034d975 persistent size now has a lower bound of 100x100. bug 167663 r=dveditz,sgehani
git-svn-id: svn://10.0.0.236/trunk@134137 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:54:46 +00:00
bbaetz%student.usyd.edu.au
d27ba17793 Bug 180966 - fix misc warnings
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@134136 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:53:14 +00:00
nelsonb%netscape.com
a4fade561c Optimization: change macros to do only 32-bit arithmetic on platforms
with only 32-bit registers.


git-svn-id: svn://10.0.0.236/trunk@134135 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:48:09 +00:00
blizzard%redhat.com
3e8c148058 No bug. Add some prlog-driven debugging so that it's easier to figure out what fonts are loaded and when. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@134134 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:44:53 +00:00
bzbarsky%mit.edu
f6b3b3afb9 Make nsILinkHandler take uris instead of strings. Bug 176904, r=darin, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134133 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-20 00:44:26 +00:00
bbaetz%student.usyd.edu.au
b6ab710264 Bug 180978 - Adding keyword from enter_bug doesn't update keyword cache
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134129 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 23:35:53 +00:00
pschwartau%netscape.com
288ab8eca8 Replace 'onload' with meaningless string. Alertboxes were popping up otherwise when the jsDriver.pl results file was opened!
git-svn-id: svn://10.0.0.236/trunk@134128 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 23:23:33 +00:00
pschwartau%netscape.com
9e49ca6f92 Correcting minor formatting mistake at Retest List header.
git-svn-id: svn://10.0.0.236/trunk@134126 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 22:00:38 +00:00
harishd%netscape.com
037680aa61 Temp. patch to fix DOM TO TEXT CONVERSION. r=jst
git-svn-id: svn://10.0.0.236/trunk@134125 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:47:13 +00:00
jpierre%netscape.com
1ed6e55689 Fix for bug 180894 - don't assert in ShutdownCRLCache()
git-svn-id: svn://10.0.0.236/trunk@134124 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:37:50 +00:00
darin%netscape.com
7ff0170e25 revised comments
git-svn-id: svn://10.0.0.236/trunk@134123 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 21:31:05 +00:00
pschwartau%netscape.com
ef5d33cd25 One-line fix for bug 62187, "JS shell producing too much console output on Mac" (r=waldemar, r=rginda). Without this fix, running the test driver is impossible on Mac 9. [NOT PART OF BROWSER BUILD].
git-svn-id: svn://10.0.0.236/trunk@134122 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:53:17 +00:00
pschwartau%netscape.com
b9e8ecb09c Bringing Windows makefile for JS shell in sync with recent changes made to the browser build and to the js.mak(VC++) build of the JS shell; see bug 160592. [DOES NOT AFFECT BROWSER BUILD].
git-svn-id: svn://10.0.0.236/trunk@134120 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:29:38 +00:00
blythe%netscape.com
2bbada9b17 Not part of the build.
Remove some unused cruft from the script.


git-svn-id: svn://10.0.0.236/trunk@134119 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 20:27:57 +00:00
darin%netscape.com
f24b3a154a fixing linux bustage: make |nsCParserNode::operator delete| protected
instead of private.  also fixes some warnings.


git-svn-id: svn://10.0.0.236/trunk@134118 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:42:46 +00:00
harishd%netscape.com
ea7a7325e9 Fixing warning
git-svn-id: svn://10.0.0.236/trunk@134117 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:25:47 +00:00
danm%netscape.com
1b8ea1ec1a set UserState to match when window is sized or moved. bug 167663 r=dveditz,pinkerton,sfraser
git-svn-id: svn://10.0.0.236/trunk@134116 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 19:17:53 +00:00
harishd%netscape.com
1eb8cce6ae Do not hold parser nodes, that do not contain residual style information, longer than necessary. By recycling the nodes earlier the number of malloc calls and the peak memory usage can be reduced. b=177994, r=heikki, sr=jst
git-svn-id: svn://10.0.0.236/trunk@134114 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 18:29:35 +00:00
timeless%mozdev.org
7cb9ffca42 Bug 180217 nsXULDocument::~nsXULDocument will crash if mDocumentURL is null
r=dbradley sr=brendan


git-svn-id: svn://10.0.0.236/trunk@134113 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 18:22:36 +00:00
dbaron%fas.harvard.edu
0f3daf8137 Fix bustage. b=179228
git-svn-id: svn://10.0.0.236/trunk@134110 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 16:00:01 +00:00
timeless%mozdev.org
cd6fa93874 Bug 147372 Use .hidden and .collapsed instead of [GS]etAttribute
patch by neil@parkwaycc.co.uk r=cmanske sr=alecf


git-svn-id: svn://10.0.0.236/trunk@134109 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:51:56 +00:00
timeless%mozdev.org
b404636630 Bug 178604 when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles
patch by neil@parkwaycc.co.uk r=varga sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@134108 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:48:24 +00:00
bernd.mielke%snafu.de
ee30bc57a4 limit the number of columns spanned, as a protection against suspicous html code, bug 86293, r=karnaze, sr=bzbarksy
git-svn-id: svn://10.0.0.236/trunk@134107 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:43:22 +00:00
ducarroz%netscape.com
c88c6e1545 Fix for bug 59148. Use the additional email address during autocompletion. R=cavin, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134106 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:35:06 +00:00
ducarroz%netscape.com
ed544e36f2 Fix for bug 110729. Prevent mail display pane to open a pluging in full page mode. Fix also an uninitialized pointer. Patch provided by av. R=ducarroz, SR=beard
git-svn-id: svn://10.0.0.236/trunk@134105 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:30:03 +00:00
dbaron%fas.harvard.edu
7bfdf9ceaf Remove static nsCOMPtr from nsTextControlFrame. b=179228 r=jkeiser sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134104 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:21:57 +00:00
ducarroz%netscape.com
40597ad7ed Fix for bug 178038. Add a preference to override FQDN for message-id generation. Patch provided by frank.schoenheit@gmx.de . R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134103 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:20:15 +00:00
dbaron%fas.harvard.edu
b6bbd0b471 Enable the page cycler if jprof is built. b=180585 r=alecf sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134102 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:19:32 +00:00
ducarroz%netscape.com
c172a4ab5a Fix for bug 25177. Date should be shown differently depending on the todays date. Patch provided by frank.schoenheit@gmx.de. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@134101 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:16:39 +00:00
glazman%netscape.com
6726bfd196 'larger' and 'smaller' CSS values for 'font-size' were not working outside of range xx-small to xx-large and that prevented users to use very big and very small fonts in both Composer and mail composition; b=63987, r=dbaron, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@134100 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:16:31 +00:00
bzbarsky%mit.edu
0c8594d486 Report the unknown namespace when we have an unknown namespace error.
Bug 180852, r=dbaron, rs=roc+moz


git-svn-id: svn://10.0.0.236/trunk@134098 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 15:12:02 +00:00
bratell%lysator.liu.se
d252fe621f Bug 165893 - avoid refetching the parser service all the time. r=jst@netscape.com, sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@134097 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 13:39:20 +00:00
mkaply%us.ibm.com
7052fc59c5 OS/2 bustage - need get()
git-svn-id: svn://10.0.0.236/trunk@134096 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 13:18:45 +00:00
bbaetz%student.usyd.edu.au
35ee05cac5 Bug 179811, used & instead of &amp;
Patch by Tobias Burnus <burnus@gmx.de>, r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134095 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 11:36:25 +00:00
bbaetz%student.usyd.edu.au
1ebaead6aa Typo fix from bug 124589. oops
r, a=myk


git-svn-id: svn://10.0.0.236/trunk@134094 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 09:20:59 +00:00
caillon%returnzero.com
8a84ae4c09 Attempt to fix nebiros bustage by moving style struct access into nsIInspectorCSSUtils
r/a=timeless,jkeiser,#mozilla
bug 147189


git-svn-id: svn://10.0.0.236/trunk@134093 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 07:41:07 +00:00
bbaetz%student.usyd.edu.au
b98bc5743f Bug 124589 - support database replication
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134091 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 07:19:34 +00:00
ian%hixie.ch
f17db356a9 Fix it so HEAD requests actually work rather than Apache aborting due to 'incomplete headers'.
git-svn-id: svn://10.0.0.236/trunk@134090 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 06:54:35 +00:00
cmanske%netscape.com
078e940273 Fixed rewrap command for messenger composer. b=76461, r=akkana, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@134087 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 06:04:33 +00:00
mkaply%us.ibm.com
f10d3d51c9 OS/2 only - need to change how we get version for packaging since it is no longer in configure.in
git-svn-id: svn://10.0.0.236/trunk@134086 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:28:19 +00:00
timeless%mozdev.org
4a699d73c1 Bug 180129 nsStreamProviderProxy::~nsStreamProviderProxy tries to NS_IF_RELEASE an uninitialized member mObserverProxy
r=darin sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134085 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:25:15 +00:00
caillon%returnzero.com
96706e273b Bug 147189. Part 2: Don't hide "significant" whitespace nodes.
r=bzbarsky sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@134084 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:20:45 +00:00
seawood%netscape.com
59b76c88ef Add native app support for OSX mach-o builds.
Fixes the 'Quit from dock not working' problem.
Allows certain files to be dragged to the dock icon.
Thanks to Mike Pinkerton <pinkerton@netscape.com> for the original patch.
Bug #111797 r=ccarlen sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@134083 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:16:50 +00:00
leaf%mozilla.org
858a4b56dd Automated update
git-svn-id: svn://10.0.0.236/trunk@134082 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:15:04 +00:00
seawood%netscape.com
0db44ecf82 Move gmodule checks to the bottom of configure.in after GLIB_CFLAGS is set for non-win32 platforms.
Fixing tinderbox bustage.


git-svn-id: svn://10.0.0.236/trunk@134080 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:09:08 +00:00
timeless%mozdev.org
d855a84260 Bug 52285 Kill compiler warnings in layout/xul
patch by mozilla-bugs@nogin.org r=timeless sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@134079 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:06:36 +00:00
timeless%mozdev.org
3f080b64a2 Bug 180783 nsDependentCString filename(PR_GetEnv("MOZILLA_JS_PROFILER_OUTPUT")) => ASSERTION: nsDependentCString must wrap a non-NULL buffer: 'aPtr'
r=dbradley sr=bz


git-svn-id: svn://10.0.0.236/trunk@134078 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 05:06:27 +00:00
myk%mozilla.org
95be7eab6e Fix for bug 179881: makes the "Requests" link in the footer be "My Requests" for logged in users.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134077 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:52:54 +00:00
mkaply%us.ibm.com
1c551bf9c3 #179508
r=cls, pedemont, sr=blizzard for platform specific code
Add shared unicode stuff between OS/2 widget and gfx into gkgfx


git-svn-id: svn://10.0.0.236/trunk@134076 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:12:58 +00:00
leaf%mozilla.org
84c33be027 Automated update
git-svn-id: svn://10.0.0.236/trunk@134075 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 04:00:12 +00:00
seawood%netscape.com
6ca08e8fd8 Check that glib has gmodule support when --enable-ctl is selected.
Bug #180611 r=roland.mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@134074 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:53:58 +00:00
bzbarsky%mit.edu
4f9de0338a Maybe build on PPC too.
git-svn-id: svn://10.0.0.236/trunk@134073 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:43:01 +00:00
bzbarsky%mit.edu
d4ea0fd2db <button> should be a containing block. Bug 180301, r=jkeiser, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134072 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:39:44 +00:00
bzbarsky%mit.edu
462e73c79e <button> should not have preformatted whitespace. Bug 55285, r=jkeiser, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@134071 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:34:49 +00:00
leaf%mozilla.org
c7cb8d4927 Automated update
git-svn-id: svn://10.0.0.236/trunk@134068 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:15:06 +00:00
blizzard%redhat.com
1fee22a160 Bug #180700. Only link with superwin with gtk 1.2. r=cls
git-svn-id: svn://10.0.0.236/trunk@134067 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:11:13 +00:00
pete.zha%sun.com
988e3cf33c line break needed after quote line ("... wrote:") when quoting original message using Options->Quote Message
b=158918 r=ducarroz@netscape.com sr=bienvenu@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134066 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:09:46 +00:00
seawood%netscape.com
ecd18bb74f Get MOZILLA_VERSION from central config/milestone.txt file
Bug #179565 r=asasaki


git-svn-id: svn://10.0.0.236/trunk@134065 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 03:06:29 +00:00
cltbld%netscape.com
2718c8af38 Don't print Zdiff when values reporting zero change.
git-svn-id: svn://10.0.0.236/trunk@134064 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 02:59:39 +00:00
bzbarsky%mit.edu
aa224c97ca Fix smoketest blocker 180452. If the buffer is not even-sized, we have
to carry a byte around with us.  Patch mostly by alecf, partly by me;
sr=me, r=dmose, a=dmose (sheriff hat).


git-svn-id: svn://10.0.0.236/trunk@134063 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 02:57:30 +00:00
myk%mozilla.org
3d5623ee1c Fix for bug 179876: Labels the "Requestee" field to reduce confusion about its purpose.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134062 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 01:15:01 +00:00
blakeross%telocity.com
41fab29b54 Fix cancel button.
git-svn-id: svn://10.0.0.236/trunk@134061 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:54:06 +00:00
nicolson%netscape.com
ed9112d872 Fix 180396: javax.crypto.Cipher wrapping does not work with RSA algorithm.
Support RSA as a wrapping/unwrapping algorithm.


git-svn-id: svn://10.0.0.236/trunk@134060 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:41:09 +00:00
nicolson%netscape.com
d05069bcc8 Throw InvalidKeyException instead of InvalidAlgorithmParameterException,
because the latter may get thrown away by our caller, but the former will
not be.


git-svn-id: svn://10.0.0.236/trunk@134059 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:39:43 +00:00
nicolson%netscape.com
03aa936d9f Change silly switch statement to an if statement.
git-svn-id: svn://10.0.0.236/trunk@134058 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:31:10 +00:00
nicolson%netscape.com
71f9aa609f Make NotExtractableException take a String argument to its constructor.
git-svn-id: svn://10.0.0.236/trunk@134057 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:30:43 +00:00
bbaetz%student.usyd.edu.au
0515a49e95 Bug 175579 - make templates html compliant
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134056 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-19 00:16:44 +00:00
bbaetz%student.usyd.edu.au
0c7c4a2d41 Bug 179206 - enter_bug isn't picking up version from URL
patch by GavinS <bugzilla@chimpychompy.org>, r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134055 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 23:49:18 +00:00
cltbld%netscape.com
b4231403a6 better comments for garrett codesize test. r=blythe, cathleen
git-svn-id: svn://10.0.0.236/trunk@134054 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 23:04:44 +00:00
seawood%netscape.com
d2bc340dd1 Missed a variable rename with the 161617 checkin.
Fixing phoenix nightly builds. r=bryner


git-svn-id: svn://10.0.0.236/trunk@134052 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 22:56:33 +00:00
seawood%netscape.com
ce08953322 Setting OBJS (from CSRCS/CPPSRCS) is not required when using SIMPLE_PROGRAMS so we need to check for SIMPLE_PROGRAMS as well to generate dependency subdirs.
Fixing mach-o nightly build bustage. r=bryner


git-svn-id: svn://10.0.0.236/trunk@134050 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 22:35:22 +00:00
blythe%netscape.com
b089d2d06e Not part of the build.
Alphabetically sort the symbols/names to make it a bit more readable.


git-svn-id: svn://10.0.0.236/trunk@134049 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 21:54:18 +00:00
karnaze%netscape.com
46b83bd196 bug 178855 - don't support fixed, absolute, floating tables that are the root content. sr=bzbarsky, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@134045 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 16:02:43 +00:00
kin%netscape.com
9b97540558 Fix for bug 173553: flawfinder warnings in editor/libeditor/html/nsHTMLEditorLog.cpp
Changed all occurrences of sprintf() to snprintf(). Removed format arg from WriteInt().

r=brade@netscape.com  sr=sfraser@netscape.com


git-svn-id: svn://10.0.0.236/trunk@134044 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:43:19 +00:00
dbaron%fas.harvard.edu
8fa2ad5646 Fix typos in my previous checkin noticed by bzbarsky. b=147887
git-svn-id: svn://10.0.0.236/trunk@134043 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:21:14 +00:00
bienvenu%netscape.com
e2aa7466cf stop playing back operations in a folder when playback fails (e.g., we're not connected to the server), r=cavin, sr=sspitzer 145048
git-svn-id: svn://10.0.0.236/trunk@134042 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 15:17:34 +00:00
rods%netscape.com
4215ce8014 Make it so SetDocument doesn't get set when returning from PP
Bug 176201 r=dcone sr=jst


git-svn-id: svn://10.0.0.236/trunk@134041 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 14:34:09 +00:00
timeless%mozdev.org
97bc540937 Bug 96229 keyboard (and right mouse in context menu) doesn't autocheck menuitem type="checkbox" and type="radio"
patch by neil@parkwaycc.co.uk r=aaronl sr=bz


git-svn-id: svn://10.0.0.236/trunk@134040 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 14:01:20 +00:00
timeless%mozdev.org
609fc3d185 Bug 116441 [clickSelectsAll] should not trigger if click is after end of URL
patch by neil@parkwaycc.co.uk r=jag sr=bz


git-svn-id: svn://10.0.0.236/trunk@134039 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 13:58:46 +00:00
kyle.yuan%sun.com
063c0f2291 Bug 147755 nsIAccessible's accName returns empty string instead of picking up label for XUL listbox node
r=aaronl, sr=bzbarsky
extract accName by calling GetXULAccName()


git-svn-id: svn://10.0.0.236/trunk@134038 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 10:14:04 +00:00
peterlubczynski%netscape.com
9979a08e6e Fixing bug 173938 with a hack for full-page plugins to be destroyed before the frame. r=av sr=jst
git-svn-id: svn://10.0.0.236/trunk@134037 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 07:48:10 +00:00
darin%netscape.com
e0fd9cca64 fixes bug 176626 "Mozilla sends text/css in Accept: header for non-style
pages" r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@134036 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 07:13:24 +00:00
timeless%mozdev.org
02804abe11 Bug 155192 crash [@nsRDFResource::~nsRDFResource] if gRDFService wasn't created
patch by tingley@sundell.net r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@134035 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 04:44:30 +00:00
jake%bugzilla.org
af6588dd2c Bug 180545 - It was possible to change the product/component of a bug without having the editbugs permission.
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@134034 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 04:27:34 +00:00
bbaetz%student.usyd.edu.au
d50d167b25 Bug 179960 - Qucksearch queries are slow and timeout
fixed by adding subselect emulation for product/component lookups
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@134029 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-18 02:03:31 +00:00
gerv%gerv.net
76046a2e78 Bug 180205 - General reporting fixes. Fixes bug 180151 (Grand total links are messed up when axis is restricted), bug 180105 (CSV reports occasionally break), bug 179671 (Boolean charts are broken on reporting pages), bug 179887 (report.cgi should |require Data::Dumper|, not |use|), and works around bug 179581 (Keyword combinations report not very useful). Patch by gerv; r=bbaetz, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@134028 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:56:32 +00:00
myk%mozilla.org
330f6c88a9 Fix for bug 180444: Correctly attributes request creation to person who submitted it.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134027 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:37:13 +00:00
myk%mozilla.org
195afd1ecd Fix for bug 180632: corrects reference flag->is_requesteeble to flag->type->is_requesteeble
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134026 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 23:33:54 +00:00
myk%mozilla.org
1c94919562 Last part of fix for bug 179494: adds "use Bugzilla::Util" and removes "&::" from before "trim" per bbaetz.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134021 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 22:50:59 +00:00
timeless%mozdev.org
b8cbc03db2 bug 180576 nsPluginHostImpl::RegisterPluginMimeTypesWithLayout doesn't null check loader
r=av sr=bz


git-svn-id: svn://10.0.0.236/trunk@134020 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 22:48:26 +00:00
timeless%mozdev.org
e37205ec16 180576 nsPluginHostImpl::RegisterPluginMimeTypesWithLayout doesn't null check loader
r=av sr=bz


git-svn-id: svn://10.0.0.236/trunk@134019 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 21:58:03 +00:00
timeless%mozdev.org
3773ada488 Bug 180583 nsTreeBodyFrame::GetImage doesn't null check loader
r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@134015 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 20:11:08 +00:00
dcone%netscape.com
de8eaf44a3 b=173234 r=rods sr=kin. Fixes crash with a drawingsurface.
git-svn-id: svn://10.0.0.236/trunk@134014 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 19:21:15 +00:00
blakeross%telocity.com
045a57dc7d Fixing download bug.
git-svn-id: svn://10.0.0.236/trunk@134013 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 18:06:57 +00:00
kirk.erickson%sun.com
7d8cb29268 Made 'solarispkg' copy pkg/solars to pkg/$(OBJDIR), and go there to
build packages.  This addresses the problems Sonja reported which
resulted from building in the same tree nfs'd from multiple platforms
simultaneously.  Also removed -$(MACH) and ROOT-$OBJDIR changes that
failed to address this problem.


git-svn-id: svn://10.0.0.236/trunk@134011 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 17:26:51 +00:00
bienvenu%netscape.com
bb0aebef57 fix unused variable warning in msgdb, patch by aleksey nogin, r/sr=bienvenu 129631
git-svn-id: svn://10.0.0.236/trunk@134008 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 17:02:19 +00:00
dbaron%fas.harvard.edu
a0f469c2b2 Remove nsLineBox::RemoveFloatersFromSpaceManager, and use nsSpaceManager::PushState and nsSpaceManager::PopState instead. b=177342 r=roc sr=kin
git-svn-id: svn://10.0.0.236/trunk@134007 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 15:51:25 +00:00
dbaron%fas.harvard.edu
307f43b5a1 Consolidate all CSS pseudos and split them into three atom lists to distinguish between pseudo-classes, pseudo-elements, and fake-pseudo-elements used for anonymous boxes. b=147887 r,sr=roc,bz
git-svn-id: svn://10.0.0.236/trunk@134006 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 15:37:56 +00:00
myk%mozilla.org
02ec7d08b8 Fix for bug 179494: prevents Bugzilla from thinking users have changed flags when they haven't.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134005 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 12:46:00 +00:00
myk%mozilla.org
f082b4f08c Fix for bug 180544: prevents display of requestee field for generally requestable fields.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@134004 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 12:40:41 +00:00
timeless%mozdev.org
e62aadc8a3 Bug 180204 imgContainerMNG::~imgContainerMNG / nsPPMDecoder::~nsPPMDecoder will release uninitialized objects
r=paper sr=bz


git-svn-id: svn://10.0.0.236/trunk@134001 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 09:23:30 +00:00
timeless%mozdev.org
99731b5e88 Bug 58221 don't use strlen to check if a string is of length 0
patch by aaronl@vitelus.com r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133999 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 05:16:49 +00:00
timeless%mozdev.org
6063118db9 Bug 180129 nsStreamProviderProxy::~nsStreamProviderProxy tries to NS_IF_RELEASE an uninitialized member mObserverProxy
trivial patch by darin r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133998 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 05:16:13 +00:00
blakeross%telocity.com
5c0613c3b1 Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133997 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:54:14 +00:00
blakeross%telocity.com
c737790f3b Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133996 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:53:38 +00:00
blakeross%telocity.com
bb893919ca Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133995 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:53:37 +00:00
blakeross%telocity.com
8c6e659419 Remove help button.
git-svn-id: svn://10.0.0.236/trunk@133994 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:52:30 +00:00
blakeross%telocity.com
7204e8351b Undo typo.
git-svn-id: svn://10.0.0.236/trunk@133993 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:38:22 +00:00
jfrancis%netscape.com
e5288c6ffc 152419: Pressing ENTER after adding styles to text does not move caret to next line.
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133992 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 03:11:45 +00:00
timeless%mozdev.org
3ab2090501 Bug 180286 cvs remove mozilla/htmlparser/tests/windows/Selftest.cpp
r=harishd, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@133990 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 02:22:49 +00:00
jfrancis%netscape.com
490f165cd9 fix for 172147: URL in composition "decoration" continues on next line
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133989 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:37:29 +00:00
jfrancis%netscape.com
c408834454 fix for 143338: Word wrap of double space incorrect in HTML mailcompose
r=glazman
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133988 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:25:30 +00:00
blakeross%telocity.com
4a734c638f Fix 171747.
git-svn-id: svn://10.0.0.236/trunk@133987 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:11:22 +00:00
jfrancis%netscape.com
84f64636c3 fix for 101544: Text color does not change if change is made and no text is typed then the color is changed again. Also fixes 163712: changing font takes no action.
r=brade
sr=kin


git-svn-id: svn://10.0.0.236/trunk@133986 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-17 01:03:20 +00:00
darin%netscape.com
cc5b7f14ac fixes bug 180494 "apparent code error in netwerk/dns/src/nsDnsService.cpp"
r=bbaetz sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133985 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 22:49:19 +00:00
bzbarsky%mit.edu
4ebebea365 Don't drop the principal, because we need it later on in destruction.
Let it die a peaceful death on its own.  Bug 180441, patch by
keeda@hotpop.com (Harshal), r=jst, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133984 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 22:49:14 +00:00
bbaetz%student.usyd.edu.au
a50c090080 Bug 179886 - request.cgi should not |use diagnostics|
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133983 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 21:28:08 +00:00
cbiesinger%web.de
2bde51296f patch by abecevello@sympatico.ca r=rangansen,me sr=roc+moz
fix some spelling errors


git-svn-id: svn://10.0.0.236/trunk@133982 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 20:44:32 +00:00
gerv%gerv.net
9e7acbf94c Bug 179264 - only quote non-numeric CSV values. Patch by gerv; r=joel, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133981 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 20:39:13 +00:00
bzbarsky%mit.edu
263a259da7 Fix regression in rendering buttons that people manually size to less
than desired size.  Bug 180085, r=jkeiser, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133980 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 19:32:49 +00:00
bienvenu%netscape.com
58f1385506 fix mark read filters unread count handling r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133979 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:38:35 +00:00
bienvenu%netscape.com
7d86526242 fix counts when adding msg to ignored thread r=cavin,sr=sspitzer 147110
git-svn-id: svn://10.0.0.236/trunk@133978 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:25:59 +00:00
blythe%netscape.com
8bf09774c8 Not part of build.
Make any errors regarding bad .MAP files go away.


git-svn-id: svn://10.0.0.236/trunk@133977 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:22:21 +00:00
bienvenu%netscape.com
ad98e52152 fix get all new messages if an account doesn't have remember password r=cavin,sr=sspitzer 180407
git-svn-id: svn://10.0.0.236/trunk@133976 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 18:21:36 +00:00
blakeross%telocity.com
2ad2cbadab Implement tabgroup homepages and fix a variety of bugs.
git-svn-id: svn://10.0.0.236/trunk@133975 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 17:14:12 +00:00
leaf%mozilla.org
86b45e1669 Automated update
git-svn-id: svn://10.0.0.236/trunk@133974 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 16:00:07 +00:00
blizzard%redhat.com
aa0c5927fd Bug #176341. configure should check for pango 1.1/1.2 when using gtk2 and xft. r=cls Patch from keitaro@attbi.com.
git-svn-id: svn://10.0.0.236/trunk@133973 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 15:56:09 +00:00
bzbarsky%mit.edu
2dfbc5fd7d Backing out alecf for now, since this change makes mailcompose crash
(and we don't want smoketest blockers, now do we?)


git-svn-id: svn://10.0.0.236/trunk@133971 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 12:07:13 +00:00
bryner%netscape.com
c823470147 profile directory fixup for os x
git-svn-id: svn://10.0.0.236/trunk@133970 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 11:16:58 +00:00
bernd.mielke%snafu.de
819231c5be enable static caption-side testcases for layout regression tests, not part of any build
git-svn-id: svn://10.0.0.236/trunk@133969 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 11:01:59 +00:00
bernd.mielke%snafu.de
4512df7522 fix spelling errors, bug 180287 patch by Martin Wulffeld
git-svn-id: svn://10.0.0.236/trunk@133968 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:46:53 +00:00
bernd.mielke%snafu.de
0a20459e7c Adding debug code to absolute containing blocks, the debug code will be invoked from the command line by
set GECKO_BLOCK_DEBUG_FLAGS=reflow bug 145592, r=bz, sr=waterson


git-svn-id: svn://10.0.0.236/trunk@133967 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:41:10 +00:00
gerv%gerv.net
c63a3ff456 Bug 100639 - make resolution more visible on mostfreq list. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133966 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 10:07:14 +00:00
bryner%netscape.com
4dd139fe8e add os/2 rc file (bug 177722), patch by mkaply.
git-svn-id: svn://10.0.0.236/trunk@133965 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 09:20:16 +00:00
bryner%netscape.com
647a0a9a0f Fixes for building XRE on BeOS (Bug 177610). patch by arougthopher@lizardland.net, r=me
git-svn-id: svn://10.0.0.236/trunk@133964 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 09:15:36 +00:00
seawood%netscape.com
f2257e2aef Removing unused JSDLL define
git-svn-id: svn://10.0.0.236/trunk@133963 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 08:39:50 +00:00
nelsonb%netscape.com
9d03ba6df4 Change all functions that create contexts for encryption to treat their
input buffers as const.  Warning reduction.


git-svn-id: svn://10.0.0.236/trunk@133961 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 06:09:58 +00:00
bzbarsky%mit.edu
e9b4c6da2c Need to sanity-check the index to avoid out-of-bounds array access. Bug
180043, r=jkeiser, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133960 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 06:08:37 +00:00
caillon%returnzero.com
7b9dc36cde 180377 - openNewTabWith was failing if called from a window which did not have a browser. This was because we were using the current window's document as opposed to the document of the browser (which
we obtained for loading a URL in).
r=bugs4hj@netscape.net, sr=jaggernaut@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133959 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:47:57 +00:00
bzbarsky%mit.edu
796da36786 Make Ctrl-Shift-Caps-key work. Bug 164140, patch by pkw@us.ibm.com
(Philip K. Warren), r=akkana, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133958 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:43:42 +00:00
caillon%returnzero.com
1e6f924459 Bug 163137. Make DOM inspector scroll to put an element in view upon selecting it in the DOM tree view. This was previously only working for HTML elements.
r=rbs, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133957 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:42:29 +00:00
alecf%netscape.com
7ecfcf2dd0 prep work for fixing bug 180379 - stop creating extra nsCSSSelectors - instead of creating them on the stack then copying them to the heap, start with them newly on the heap.
r=bzbarsky, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133956 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:37:24 +00:00
alecf%netscape.com
a1422857af fix warning - extra comma after enumerator
no reviewers, its a one-character change, pointed out by blizzard


git-svn-id: svn://10.0.0.236/trunk@133955 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:10:27 +00:00
jpierre%netscape.com
59aebc2144 Fix again?
git-svn-id: svn://10.0.0.236/trunk@133954 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 05:05:17 +00:00
jpierre%netscape.com
1a2fc25412 Fix build again !
git-svn-id: svn://10.0.0.236/trunk@133953 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 04:27:39 +00:00
cmanske%netscape.com
ce8ce03ed1 Missed file from checkin for bug 169029. r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133952 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 04:14:12 +00:00
av%netscape.com
7fa8d67a9e Bug 176782 -- hang with scriptable Flash plugin, patch by serge, r=av, sr=darin
git-svn-id: svn://10.0.0.236/trunk@133951 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:38:01 +00:00
nelsonb%netscape.com
c97983a27d Recognize new SHAxxx OIDs.
git-svn-id: svn://10.0.0.236/trunk@133950 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:34:53 +00:00
jpierre%netscape.com
65217a485f Fix build
git-svn-id: svn://10.0.0.236/trunk@133949 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:32:40 +00:00
nelsonb%netscape.com
b2932db701 Correct softoken routines to work with new larger SHAxxx hashes.
git-svn-id: svn://10.0.0.236/trunk@133948 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:32:39 +00:00
nelsonb%netscape.com
db40331209 Correct HMAC code to work with new larger SHAxxx hashes.
git-svn-id: svn://10.0.0.236/trunk@133947 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:30:37 +00:00
nelsonb%netscape.com
77afeeaeb6 Add new SHAxxx hash algorithms to tables of SECHashObjects.
git-svn-id: svn://10.0.0.236/trunk@133946 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:29:32 +00:00
nelsonb%netscape.com
c8de0109d7 Declare new vendor-defined mechanisms for SHA256, SHA384 and SHA512.
git-svn-id: svn://10.0.0.236/trunk@133945 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:25:01 +00:00
nelsonb%netscape.com
4d3de2d45e Now that we have hashes larger than SHA1,
#define HASH_LENGTH_MAX         SHA512_LENGTH


git-svn-id: svn://10.0.0.236/trunk@133944 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:21:53 +00:00
nelsonb%netscape.com
bca9f97d3a Don't reject a cert request with an empty list of CA cert names.
Don't crash with an empty CA name list.


git-svn-id: svn://10.0.0.236/trunk@133943 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:19:48 +00:00
aaronl%netscape.com
30bfa20ad7 Bug 180357. Move location bar accesskey into dtd file. r=timeless, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133942 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 03:05:00 +00:00
rjc%netscape.com
f10da55ff5 Fix bug # 175324: search hang. code from ajschult@eos.ncsu.edu r=rjc sr=jag
git-svn-id: svn://10.0.0.236/trunk@133941 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:42:53 +00:00
blizzard%redhat.com
294896865b Bug #121253. Port embedding widget to gtk2. r=pavlov, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133940 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:36:22 +00:00
bzbarsky%mit.edu
9a29d832d6 kill off some nsISupportsArray and fix a potential leak. Bug 177400,
r=dmose, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133939 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:35:20 +00:00
alecf%netscape.com
843a3d32f2 fix for bug 177318 - use pldhash for inner hashtable entries to dramatically reduce allocations
r=dougt/sr=brendan
I am watching to see how the performance number change and will back out if the results are nasty


git-svn-id: svn://10.0.0.236/trunk@133938 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 02:33:49 +00:00
blizzard%redhat.com
8b2346655f Bug #162507. Default icon should not be set for embedding applications. Not part of the default build.
git-svn-id: svn://10.0.0.236/trunk@133935 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 01:22:10 +00:00
nelsonb%netscape.com
59f951de44 Add "const" modifier to all fixed arrays used for keys or known text.
git-svn-id: svn://10.0.0.236/trunk@133934 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 01:00:44 +00:00
blythe%netscape.com
38e7ded2d6 Not part of the build.
Open flood gates on autosummary scripts, no exclusions anymore.
Make the help text a little more obvious on the purpose of the various scripts.


git-svn-id: svn://10.0.0.236/trunk@133931 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-16 00:51:56 +00:00
blythe%netscape.com
5c85c0b93d Not part of build.
Add scripts that can report on only files listed in mozilla/embedding/config manifests.


git-svn-id: svn://10.0.0.236/trunk@133929 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:48:39 +00:00
blizzard%redhat.com
5128d302b9 Smoketest blocker bug #180318. Make sure that we include libgfxft2.so in the packages file since - wait for it - libgfx_gtk.so is linked directly against it. This was causing registration for the gfx component to fail silently so mozilla wouldn't ever start up.
git-svn-id: svn://10.0.0.236/trunk@133928 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:44:17 +00:00
myk%mozilla.org
b143ebc2c0 Fix for bug 180232: removes unnecessary margins/borders around XUL duplicates report
git-svn-id: svn://10.0.0.236/trunk@133927 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 22:04:04 +00:00
mcs%netscape.com
6e31d32214 Fix bug # 177775 - libprldap: NSPR error is sometimes lost.
git-svn-id: svn://10.0.0.236/trunk@133925 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 21:03:19 +00:00
mcs%netscape.com
6107849741 Fix bug # 177778 - ldap_set_option( NULL, ... ) resets ldap_debug to zero.
git-svn-id: svn://10.0.0.236/trunk@133924 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 21:01:43 +00:00
mcs%netscape.com
62ecca7ba7 Use a name shorter than 32 chars. for the C LDAP API Internet Draft.
git-svn-id: svn://10.0.0.236/trunk@133923 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:58:29 +00:00
mikep%oeone.com
0db7fa87c7 Fixing tooltips, bug 180080.
git-svn-id: svn://10.0.0.236/trunk@133922 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:51:22 +00:00
mcs%netscape.com
2967118f83 Fix bug # 163534 - remove Netscape Confidential and Proprietary marker
from errormap.c.


git-svn-id: svn://10.0.0.236/trunk@133920 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:18:50 +00:00
mcs%netscape.com
4a841edc41 Fix bug # 38012 - 64bit issues within CRC-32 code.
Define 32-bit integral types in portable.h (nsldapi_int_32 and
	nsldapi_uint_32) and use them in the memcache crc32_convert()
	function.


git-svn-id: svn://10.0.0.236/trunk@133919 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 20:15:53 +00:00
cmanske%netscape.com
337eb43628 Final removal of 'editorShell'. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133913 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:52:47 +00:00
cmanske%netscape.com
59e6edaf4b Final removal of 'editorShell' from DOM inspector. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133912 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:45:48 +00:00
cmanske%netscape.com
68222e9779 Final removal of 'editorShell' and associated files. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133911 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:42:22 +00:00
cmanske%netscape.com
55f4416773 Final removal of 'editorShell' and associated files. b=169029, r=brade, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133910 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:36:44 +00:00
ccarlen%netscape.com
5660acb14f Bug 179932 - Need GetCFURL() on nsILocalFileMac. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133909 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:35:17 +00:00
timeless%mozdev.org
a66cb608c5 Bug 156633 replace PR_CurrentThread with PR_GetCurrentThread
patch by riceman+bmo@mail.rit.edu r=morse,dougt,dveditz,timeless sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@133907 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 15:24:56 +00:00
timeless%mozdev.org
ba2e5a2424 Bug 156454 DOM Mouse Scroll events should be handled by a <handler>
patch by neil@parkwaycc.co.uk r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@133906 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:53:33 +00:00
timeless%mozdev.org
8a6019a5e6 Bug 164664 JS console evaluation ignores leading whitespace
patch by neil@parkwaycc.co.uk r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133905 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:43:07 +00:00
timeless%mozdev.org
2fb52773f4 Bug 153869 Obsolete code in help.js
patch by neil@parkwaycc.co.uk r=varga sr=bz


git-svn-id: svn://10.0.0.236/trunk@133904 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:39:41 +00:00
timeless%mozdev.org
182fee8362 Bug 136130 JavaScript Console is missing the new Windows menu
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133903 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:36:21 +00:00
timeless%mozdev.org
3dd167036a Bug 125268 Edit/Pr_e_ferences, not Pre_f_erences
patch by neil@parkwaycc.co.uk r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133902 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 14:34:17 +00:00
dbradley%netscape.com
879f140cc4 Bug 180098 - "--enable-activex-scripting" option seems to break composition window. Error was in enumeration when IDispatch logic was turned on. r=adamlock, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133901 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 13:57:16 +00:00
timeless%mozdev.org
098d60ad27 not part of the build
Makefile.in changes should make this build on platforms (at least windows)
grabpage.cpp suffered from serious API rot.


git-svn-id: svn://10.0.0.236/trunk@133899 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 12:22:58 +00:00
seawood%netscape.com
065f2947ba Add bayesian filter & mailview to list of meta_mail sub-components.
Make meta component list more readable


git-svn-id: svn://10.0.0.236/trunk@133898 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 09:39:03 +00:00
gerv%gerv.net
3d0e1972b5 Bug 179462 - Clarify description for enablequips param. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133897 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:48:59 +00:00
pete.zha%sun.com
dde2f3e79f nsFT2FontCatalog compile error when build mozilla(gtk2) on solaris9
b=180052 r=cls sr=bzbarsky@mit.edu
patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@133896 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:26:58 +00:00
bratell%lysator.liu.se
d3e0252f6e Bug 93066 - Don't use FindCharInSet when searching for only one character. r=sspitzer, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133894 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:16:43 +00:00
darin%netscape.com
caf905a0ef 1) add clientUp and clientDown ipc module notifications
2) cleanup some comments in ipcModule.h


git-svn-id: svn://10.0.0.236/trunk@133893 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 08:01:55 +00:00
seawood%netscape.com
4bb4a830f1 Forte doesn't allow suffixes other than .o so change the naming scheme of host-compiled object files from .ho to host_%.o . Adds the unenforced rule that source files should not start with host_.
Bug #179895 Fixing tinderbox bustage


git-svn-id: svn://10.0.0.236/trunk@133891 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 07:24:44 +00:00
bolian.yin%sun.com
05d28cad33 Bug 175947, port 123389's fix from gtk1 to gtk2: copy&paste between mozilla&openoffice.
patch by louie.zhao@sun.com. r=blizzard. This is NOT for default build.


git-svn-id: svn://10.0.0.236/trunk@133890 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 07:01:23 +00:00
nelsonb%netscape.com
2b6e228061 Fix crash when formatting a cert with optional version not given.
git-svn-id: svn://10.0.0.236/trunk@133889 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 06:32:51 +00:00
seawood%netscape.com
f9a791c234 Disable dependency generation on OS/2 until bug 135795 is fixed.
git-svn-id: svn://10.0.0.236/trunk@133888 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 05:42:39 +00:00
jpierre%netscape.com
fcdf6d31a0 Patch for 180228 - export CRL cache flush API . r=wtc
git-svn-id: svn://10.0.0.236/trunk@133887 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 05:04:05 +00:00
pete.zha%sun.com
ce3bdb174d Font Catalog Service
b=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com


git-svn-id: svn://10.0.0.236/trunk@133886 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 04:59:17 +00:00
seawood%netscape.com
664815b624 Make mkdepend failures a fatal condition.
Treat nsinstall & mkdepend as HOST_PROGRAMs so that they don't call mkdepend to generate dependencies.
Bug #179895 r=bryner


git-svn-id: svn://10.0.0.236/trunk@133884 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:41:17 +00:00
sspitzer%netscape.com
e0f7c97db6 code cleanup.
don't do AppendInt(x, 10); as 10 is the default.
just do AppendInt(x);
rs=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133883 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:29:22 +00:00
caillon%returnzero.com
963e001daa 177153 - Cleanup of inspector toggling code
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133882 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:20:01 +00:00
caillon%returnzero.com
55ca195a57 Bug 180185, nsStyleText::WhiteSpaceIsSignificant() should take -moz-pre-wrap into account too
r=dbaron sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133881 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 03:14:56 +00:00
seawood%netscape.com
6e0a698b49 js/jsd/classes are not part of the java module
git-svn-id: svn://10.0.0.236/trunk@133879 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:42:23 +00:00
bryner%netscape.com
2d355ce509 port fix for bug 172022 to phoenix
git-svn-id: svn://10.0.0.236/trunk@133878 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:19:07 +00:00
bryner%netscape.com
2cdf37fba2 Get XRE building on OS X
git-svn-id: svn://10.0.0.236/trunk@133877 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 02:05:19 +00:00
seawood%netscape.com
a2bd2c5704 Update Info.plist to contain the proper doc type, use the proper version string, use the proper bundle name & allow for dropping of files onto the dock icon.
Thanks to Conrad Carlen <ccarlen@netscape.com> for the patch.
Bug #178742 r=pinkerton sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@133875 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:51:39 +00:00
blizzard%redhat.com
3f20d30c54 Backout checkin for bug #175320. It was causing cookie files to be saved without any entries but still with the standard "This is a generated file!" header. sr=bz
git-svn-id: svn://10.0.0.236/trunk@133874 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:47:59 +00:00
despotdaemon%netscape.com
9fc3c1636f Pseudo-automatic update of changes made by robin.lu@sun.com.
git-svn-id: svn://10.0.0.236/trunk@133872 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 01:00:27 +00:00
bryner%netscape.com
e42bf44e7d Fixing topcrash bug 179548 (crash when closing tab via mouse gesture) by null checking the event target frame before dispatching the event the second time, since the first dispatch can nuke the frame. r=dbaron, sr=bzbarsky.
git-svn-id: svn://10.0.0.236/trunk@133871 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:59:28 +00:00
rogerl%netscape.com
bead128de2 Fixed arrayliteral & for-init stack. Changed class names to uppercase.
git-svn-id: svn://10.0.0.236/trunk@133870 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:55:22 +00:00
timeless%mozdev.org
71c406762a Bug 180210 nsCookie::~nsCookie frees uninitialized values
r=morse sr=bz


git-svn-id: svn://10.0.0.236/trunk@133867 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:45:51 +00:00
nhotta%netscape.com
fc83dc80aa Changed to do UTF-8 conversion right after we get the body,
bug 120728, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133865 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-15 00:03:49 +00:00
nelsonb%netscape.com
80c4c4369b Make selfserv build for Darwin.
git-svn-id: svn://10.0.0.236/trunk@133861 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:33:24 +00:00
nhotta%netscape.com
127de84d36 Removing unnecessary CreateUtf7ConvertedString,
bug 180166, r=naving, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133860 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:33:02 +00:00
mcs%netscape.com
777286fdd1 Fix bug # 179951 - libprldap "cross thread" memory leak.
The prldap_tsd_destroy() function (which is called when a
	thread exits) was not freeing the information contained within
	the PRLDAP_ErrorInfo structure. Added prldap_free_errorinfo()
	and a way to determine if that thread-private data looks like
	error information (the plei_magic field). At the moment, only
	one kind of thread-private data is stored anyway (the error
	information).

	The prldap_allocate_map() function, which is called when a new
	LDAP session is created, was blindly setting the thread-private
	error information pointer to NULL. But if a different thread
	created or used an LDAP session than called ldap_unbind(), old
	error information may have been left in memory. Now the error
	info. pointer is reset and reused, which was the original goal.


git-svn-id: svn://10.0.0.236/trunk@133859 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 23:07:27 +00:00
bienvenu%netscape.com
037fa1337e remove unneeded call to CreateUtf7ConvertedString when refreshing folder acl r=nhotta, sr=sspitzer 180158
git-svn-id: svn://10.0.0.236/trunk@133853 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 22:01:58 +00:00
igor%mir2.org
ece1ec437f Replace getScriptable() by getFunctionName() in omj/debug/DebuggableScript.java as the debugger used DebuggableScript.getScriptable() only to query function names.
It allows to implement the DebuggableScript interface only  by omj/InterpreterData instead of 2 identical implementations by InterpretedFunction and InterpretedScript.


git-svn-id: svn://10.0.0.236/trunk@133851 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 21:12:36 +00:00
darin%netscape.com
abd2669870 fixes bug 173094 "Freeze nsIUploadChannel" r=dougt,timeless sr=rpotts
git-svn-id: svn://10.0.0.236/trunk@133847 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:36:20 +00:00
seawood%netscape.com
9ba28e1f7e Oops. I checked in v1.0 instead v1.1. Too many trees.
Fixing clobber bustage


git-svn-id: svn://10.0.0.236/trunk@133845 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:23:26 +00:00
bzbarsky%mit.edu
b2477e984f Fire onScroll after the scrolling has happened. Bug 179857, r=jkeiser, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133842 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 20:00:13 +00:00
mkaply%us.ibm.com
257efbef6c #176609
r=mkaply, sr=blizzard (platform specific code)
OS/2 only - use browser DPI for bitmap fonts as well


git-svn-id: svn://10.0.0.236/trunk@133841 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:53:20 +00:00
mkaply%us.ibm.com
08d338442b 150156 type fix for OS/2 - do a copy if move fails because file already exists
git-svn-id: svn://10.0.0.236/trunk@133840 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:41:18 +00:00
mkaply%us.ibm.com
ed799f6f10 #179508
r=cls, sr=alecf
Get OS/2 static build working again


git-svn-id: svn://10.0.0.236/trunk@133839 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:38:21 +00:00
darin%netscape.com
2e50b6f4f7 eliminate primary name from "client hello" (not needed, and added
problematic dependency on libpref).


git-svn-id: svn://10.0.0.236/trunk@133838 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:37:01 +00:00
seawood%netscape.com
6163c33b1c Drop unneeded java build rules & variables since blackwood now builds using ant.
Bug #161617 r=edburns sr=beard


git-svn-id: svn://10.0.0.236/trunk@133837 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:36:28 +00:00
blizzard%redhat.com
5f5287203d Bug #180123. Crashes when resizing mail window with gtk2 build. Make sure to always return something from nsRegionGTK::GetRects(), even if the list of rects is empty. r=tor
git-svn-id: svn://10.0.0.236/trunk@133836 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:29:10 +00:00
bryner%netscape.com
98e8e06585 OS/2 doesn't preserve the width and height of a window if one of them is set to zero, so start the customize toolbar dialog at a height of 50 (so that we don't lose the width). Bug 172903, patch by mkaply, r=me.
git-svn-id: svn://10.0.0.236/trunk@133835 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:25:33 +00:00
despotdaemon%netscape.com
ef49d95050 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133834 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:09:26 +00:00
mkaply%us.ibm.com
dca2e1ea1b #179508
r=cls, sr=alecf
Get OS/2 static build working again


git-svn-id: svn://10.0.0.236/trunk@133833 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 19:02:05 +00:00
alecf%netscape.com
e38457c675 take two at fixing bug 177401 - convert nsIBinaryStream over to using nsAString/nsACString for string values, to speed up fastload
sr=darin, r=dougt
(the previous checkin had a typo which disabled fastload entirely!)


git-svn-id: svn://10.0.0.236/trunk@133832 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 18:16:31 +00:00
despotdaemon%netscape.com
9f952626d5 Pseudo-automatic update of changes made by antitux@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@133831 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:56:00 +00:00
despotdaemon%netscape.com
ef5843ef9f Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133830 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:50:54 +00:00
ian.mcgreer%sun.com
b9da288235 bug 39494, handle non-standard AVAs properly
r=nelsonb


git-svn-id: svn://10.0.0.236/trunk@133828 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 17:04:43 +00:00
rods%netscape.com
137ad80cc3 Forgot to fix margin rect calculation
BUg 118954


git-svn-id: svn://10.0.0.236/trunk@133825 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:33:03 +00:00
rods%netscape.com
94b731f412 Nobody caught that the conversion from inches to mm was off by 10
changing 254 to 25.4
Bug 118954


git-svn-id: svn://10.0.0.236/trunk@133824 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:20:15 +00:00
timeless%mozdev.org
7e55103e88 Bug 172691 Prompt with checkbox and one, three or four buttons initally focuses wrong button
patch by neil@parkwaycc.co.uk r=dean_tessman@hotmail.com sr=bz


git-svn-id: svn://10.0.0.236/trunk@133823 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 15:08:32 +00:00
bbaetz%student.usyd.edu.au
d900d46789 Bug 179697 - OR terms need extra level of bracketing
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133822 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 11:11:18 +00:00
ssu%netscape.com
bdbc8d4f7c fixing bug 173195 - Changes in the Mozilla/Netscape Installer to run Palm Conduit Installer. r=curt, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@133821 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 09:04:16 +00:00
shanjian%netscape.com
f89a09f88f #94319 Symbolic fonts do not display properly, need generic solution rather than adding each new font to fontencoding.properties
using the flag set by CSS#94319 Symbolic fonts do not display properly, need generic solution rather than adding each new font to fontencoding.properties
using the flag set by CSS, we only decode symbol font using win-1252 for windows symbol font.
r=ftang, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@133811 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:58:54 +00:00
depstein%netscape.com
857ed7d1e4 Added 2nd param inputs for nsIDOMWindow in nsICmdParams. GRE 1.3a tag in winEmbedFileLocProvider.cpp. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133809 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:39:46 +00:00
bryner%netscape.com
e64c6379e3 nsTextServicesDocument should be #ifdef'd out when building the plaintext editor only. Fixing phoenix build bustage.
git-svn-id: svn://10.0.0.236/trunk@133808 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:23:08 +00:00
pschwartau%netscape.com
3193f8fabf Adding comments.
git-svn-id: svn://10.0.0.236/trunk@133807 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 02:12:15 +00:00
kaie%netscape.com
7f5f32734d b=175320 Support clean profile & NSS shutdown at any time + Mozilla needs to clean up on exit to allow for PSM failure detection
r=ccarlen sr=darin


git-svn-id: svn://10.0.0.236/trunk@133803 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:50:14 +00:00
dmose%netscape.com
a225ed107e Allow links in mailnews message pane to open in browser tabs (bug 148974). r=sspitzer; sr=jaggernaut
git-svn-id: svn://10.0.0.236/trunk@133802 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:40:38 +00:00
kaie%netscape.com
b384714f3a b=175888 Calling nsGlobalHistory::CloseDB() must be safe
r=timeless sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133800 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:13:37 +00:00
wtc%netscape.com
c224c7ae61 Bug 173827: deleted the l10n_debug cruft. Added the FLAG prefix to
the _LEFT, _SIGNED, _SPACED, _ZEROS, and _NEG macros.  This patch is
contributed by Brendan Eich.


git-svn-id: svn://10.0.0.236/trunk@133796 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 01:06:02 +00:00
kaie%netscape.com
5715a6d3b9 b=168450 Cleanup some PSM code and add JavaDoc documentation to all freeze candidates
r=javi sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133794 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:50:02 +00:00
harishd%netscape.com
2a2e596447 bug 167493 - Backing out the patch based on the bug report
git-svn-id: svn://10.0.0.236/trunk@133792 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:38:53 +00:00
bryner%netscape.com
0101a6ee53 Fix --enable-plaintext-editor-only build bustage by removing nsTextEditorReg.cpp (which was needless duplication and easy to forget to update) and just adding plaintext #ifdefs in nsEditorRegistration instead. Bug 177333, r=jfrancis, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@133790 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:29:33 +00:00
mkaply%us.ibm.com
0e2d17ba37 We need composer.xpt too
git-svn-id: svn://10.0.0.236/trunk@133789 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:11:48 +00:00
leaf%mozilla.org
f4bd93fc58 update mac installer version to 1.3a
git-svn-id: svn://10.0.0.236/trunk@133788 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-14 00:00:51 +00:00
cmanske%netscape.com
45d443c52e Final removal of editorshell from messagecomposer
git-svn-id: svn://10.0.0.236/trunk@133787 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 23:56:28 +00:00
brendan%mozilla.org
e0ef268766 Remove l10n_debug cruft, expand tabs, eliminate else-after-break, don't invade the standard C namespace with leading _ in identifiers, etc. (173827, r=scole@planetweb.com).
git-svn-id: svn://10.0.0.236/trunk@133784 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:59:15 +00:00
alecf%netscape.com
c952308730 oops, I checked in an earlier version of the patch for bug 173291 - here's the update that reflects the reviewer's comments.
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133783 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:58:56 +00:00
sspitzer%netscape.com
6463bfeb18 add comment about why we don't allow attach= on mailto: urls.
(see bug #99055).  no reviewer.


git-svn-id: svn://10.0.0.236/trunk@133782 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:55:42 +00:00
alecf%netscape.com
71b2ee7677 fix for bug 173291 - use nsISimpleEnumerator for nsHashtableEnumerator, rather than nsIEnumerator
r=dougt, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133780 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:40:10 +00:00
bzbarsky%mit.edu
b8bbf7470c Fix regression bug 179896; need to use the cached ascent in this case
too.  r=jkeiser, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133779 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:34:09 +00:00
caillon%returnzero.com
2555de7923 Bug 107812
Copying from inspector should also copy to primary on platforms that support it.
r=akkana sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133777 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 22:17:51 +00:00
heikki%netscape.com
2cf6ce6c2a Bug 176186, XMLHttpRequest does not set document URL. Patch from sicking, r=heikki, sr=peterv.
git-svn-id: svn://10.0.0.236/trunk@133775 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:58:12 +00:00
nhotta%netscape.com
9a22e917e7 Call nsIUnicharEncoder::Finish to ensure the converted string is terminated,
bug 179392, r=shanjian, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133774 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:56:01 +00:00
bzbarsky%mit.edu
02536b8319 DD should be allowed to contain DL. Bug 179071 and company, r=harishd, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@133773 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:55:36 +00:00
rogerl%netscape.com
f6b5386589 Added missing attributes. Fixed slotWrite stack bug.
git-svn-id: svn://10.0.0.236/trunk@133772 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:49:57 +00:00
caillon%returnzero.com
d426bb1897 Bug 112682
Some rules have no parentStyleSheet.  Add a null check.
r=cbiesinger sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133771 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:48:46 +00:00
smontagu%netscape.com
12a8c6e364 Change example of escaped Unicode character to use real character not \uXXXX. Bug 179010, r=nhotta, sr=dveditz.
git-svn-id: svn://10.0.0.236/trunk@133770 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:41:43 +00:00
bzbarsky%mit.edu
4785517d37 Clean up some array stuff in necko. Bug 175442, r=darin, sr=alecf.
git-svn-id: svn://10.0.0.236/trunk@133769 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:25:32 +00:00
dougt%netscape.com
f7f7a88a19 Crash OOM @ startup. r=darin, sr=alec, bug 175663
git-svn-id: svn://10.0.0.236/trunk@133768 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:23:58 +00:00
brade%netscape.com
e9a66badb0 Cut when no selection should just return NS_OK (not error which causes JS to throw an error); bug 178725, r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133767 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:21:28 +00:00
blizzard%redhat.com
b1ce6d46dc No bug number. Fix the name of the mailview shared lib on unix. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133766 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:21:09 +00:00
bzbarsky%mit.edu
a90238e37d Any disposition that's not "inline" should be treated as "attachment".
Bug 172003, r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@133765 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 21:17:40 +00:00
leaf%mozilla.org
73d20cd728 bug 176505, sr=sfraser, r=kin. fix packaging for new xpt file
git-svn-id: svn://10.0.0.236/trunk@133764 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 20:31:20 +00:00
mikep%oeone.com
d07a9b7d33 New build, fixing so that icon shows when refreshing remote calendar source.
git-svn-id: svn://10.0.0.236/trunk@133761 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 19:01:01 +00:00
mikep%oeone.com
ed9f6c9267 Fixing button.
git-svn-id: svn://10.0.0.236/trunk@133760 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:45:43 +00:00
mikep%oeone.com
065317adb3 Changing toolbar image from .png to .gif
git-svn-id: svn://10.0.0.236/trunk@133759 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:02:34 +00:00
mikep%oeone.com
d8955ffac2 Fixing bug 179516, changing images from .png to .gif
git-svn-id: svn://10.0.0.236/trunk@133758 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 18:01:57 +00:00
mikep%oeone.com
62ac45e52b Fixing up the wizard a bit more.
git-svn-id: svn://10.0.0.236/trunk@133757 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:25:26 +00:00
mikep%oeone.com
ea5b4efb02 Fixing selection problems, bug 179566
git-svn-id: svn://10.0.0.236/trunk@133756 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:25:11 +00:00
mikep%oeone.com
bc97a0e322 Fixing selection problems with add event, removing selection after edit event since the event was already selected.
git-svn-id: svn://10.0.0.236/trunk@133755 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:23:53 +00:00
mikep%oeone.com
bca2157227 Reformatting.
git-svn-id: svn://10.0.0.236/trunk@133754 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 16:21:41 +00:00
brade%netscape.com
b6b8f84407 fix compiler warning introduced by bug 170353
git-svn-id: svn://10.0.0.236/trunk@133753 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:45:34 +00:00
bernd.mielke%snafu.de
5c14c1baea change default height of empty table cells to 1px in quirks mode and 0px in standards mode + some CallQueryInterface cleanup, bug 16012 r=karnaze sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133752 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:38:48 +00:00
brade%netscape.com
9dbd0fc41a implement queryCommandEnabled (bug 179730, r=akkana, sr=peterv)
git-svn-id: svn://10.0.0.236/trunk@133750 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 15:23:03 +00:00
timeless%mozdev.org
5da8143548 Bug 178604 when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles
patch by neil@parkwaycc.co.uk r=varga sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133748 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 14:10:28 +00:00
neeti%netscape.com
1806c8fb3d fix for bug 150156 - nsIFile's moveTo method does not overwrite existing files,r=dougt@netscape.com, sr=brendan@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@133747 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 14:04:51 +00:00
dbradley%netscape.com
eec114f2dc bug 164385 - SetDiry() often uses uninitialized rv. r=dbradley, sr=alecf, patch=ajschult@eos.ncsu.edu
git-svn-id: svn://10.0.0.236/trunk@133746 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:29:00 +00:00
leaf%mozilla.org
d27b9f3d1a Automated update
git-svn-id: svn://10.0.0.236/trunk@133745 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:15:06 +00:00
locka%iol.ie
c4a843ac39 Add --enable-activex-scripting switch to configure.in and package changes to include npmozax.dll. b=133818 r/a=seawood@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133744 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 13:14:14 +00:00
axel%pike.org
c82618c0b3 bug 179537, fix baseURI and PR_LOG in xslt, r=peterv, sr=heikki
git-svn-id: svn://10.0.0.236/trunk@133743 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:59:31 +00:00
blizzard%redhat.com
679290a4f5 No bug. Put drawing onto its own logging facility.
git-svn-id: svn://10.0.0.236/trunk@133742 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:41:49 +00:00
rods%netscape.com
251c785a71 enable pagesetup to use mertic mm when using page sizes with mm/cm
Bug 118954 r=dcone sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133741 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 12:35:15 +00:00
igor%mir2.org
460d1f1c00 Fixing in Interpreter.dumpICode reading of index from a wrong offset
git-svn-id: svn://10.0.0.236/trunk@133740 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 10:22:46 +00:00
igor%mir2.org
3bc7187bf3 Fixing misspellings comments
git-svn-id: svn://10.0.0.236/trunk@133739 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 10:13:40 +00:00
gerv%gerv.net
781eadc86f Bug 178043 - Make it possible to have vertical x-axis labels. Patch by gerv; r=joel.
git-svn-id: svn://10.0.0.236/trunk@133738 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 08:29:18 +00:00
caillon%returnzero.com
71ed8bac88 Make sure we properly init the show whitespace nodes checkmark.
r=jkeiser sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133737 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:56:08 +00:00
bzbarsky%mit.edu
f76cceac51 Not sure why this didn't get properly checked in with the rest... Bug
167236, r=jkeiser, sr=roc+moz, moa=rods


git-svn-id: svn://10.0.0.236/trunk@133736 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:50:34 +00:00
bugreport%peshkin.net
98ee17fb1b Bug 179706 activity log needs to include full account names for requestees
r,a=myk


git-svn-id: svn://10.0.0.236/trunk@133735 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 07:05:41 +00:00
brendan%mozilla.org
e359510677 Fix up comments, overlong lines, NULL in C code, slight code simplification in log_filename (r/sr=blythe/dbaron).
git-svn-id: svn://10.0.0.236/trunk@133734 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:40:17 +00:00
brendan%mozilla.org
1a91c38fee Make enumeration const unless PL_DHASH_REMOVE is returned by the etor callback; improve several comments (174859, r=waterson, sr=beard).
git-svn-id: svn://10.0.0.236/trunk@133733 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:35:37 +00:00
timeless%mozdev.org
caa44bd630 Bug 177975 User-agents on Mac OSX should reflect CFM or Mach-O
patch by zach@zachlipton.com r=sdagley sr=darin


git-svn-id: svn://10.0.0.236/trunk@133732 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:29:47 +00:00
bzbarsky%mit.edu
91750a6526 Fix relative url handling in page info. Bug 153545, patch by
db48x@yahoo.com (Daniel Brooks), r=jag, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133731 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:28:24 +00:00
bzbarsky%mit.edu
d0d90b17a6 Fix bug 122125 (showing "real" dimensions of images) redux, and strict
JS warnings.  Patch by db48x@yahoo.com (Daniel Brooks), r=timeless,
sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133730 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 04:06:51 +00:00
timeless%mozdev.org
77c17c0cae Bug 179778 regExport accesses argv[1] before checking argc==1
r=dougt sr=bz


git-svn-id: svn://10.0.0.236/trunk@133728 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:58:38 +00:00
jay.yan%sun.com
89161a8141 bug 178404, --enable-ctl in configure will cause mozilla gtk2 build fail, r=seawood
git-svn-id: svn://10.0.0.236/trunk@133727 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:48:17 +00:00
dbaron%fas.harvard.edu
62e688645b Fix various shutdown leaks. b=179361 r=blizzard sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133725 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 03:01:08 +00:00
blakeross%telocity.com
c72f8b190f History cleanup, add open in tab to history.
git-svn-id: svn://10.0.0.236/trunk@133716 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:55:56 +00:00
ducarroz%netscape.com
e751ca1590 Fix for bug 112986. When parsing data for draft/template, if we are processing a flowed plain text line, we need to remove any stuffed space. R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133714 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:21:00 +00:00
pschwartau%netscape.com
bf1aaef14a Removing redundant variable declarations.
git-svn-id: svn://10.0.0.236/trunk@133713 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-13 00:19:57 +00:00
rogerl%netscape.com
e362fd61ad Comment.
git-svn-id: svn://10.0.0.236/trunk@133712 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:50:43 +00:00
mjudge%netscape.com
5816046858 need to adjust and add the domwindow to the parameters
git-svn-id: svn://10.0.0.236/trunk@133711 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:49:23 +00:00
cmanske%netscape.com
2a824039fa String change as part of dialog cleanup, b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133710 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:41:23 +00:00
cmanske%netscape.com
6d236babea Command Controller refactoring and cleanup, mostly by mjudge with help by cmanske, b=170353, r=brade, sr=sfraser. EditingSession cleanup and new commands in \editor, b=174439, r=mjudge, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133708 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:30:29 +00:00
caillon%returnzero.com
a073034c11 Allow the hiding of "empty" text nodes from DOM Inspector.
r=cbiesinger, sr=alecf, bug 147189


git-svn-id: svn://10.0.0.236/trunk@133707 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:16:42 +00:00
pschwartau%netscape.com
af53e8c6b9 Adding more sections to cover str.search(), str.replace().
git-svn-id: svn://10.0.0.236/trunk@133706 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:14:17 +00:00
sspitzer%netscape.com
815b397029 fix for static build bustage. thanks for the tip from cls.
git-svn-id: svn://10.0.0.236/trunk@133705 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:13:50 +00:00
cmanske%netscape.com
d6cc98279b Command Controller refactoring and cleanup, mostly by mjudge with help by cmanske, b=170353, r=brade, sr=sfraser. EditingSession cleanup and new commands in \editor, b=174439, r=mjudge, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133703 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 23:03:27 +00:00
bryner%netscape.com
12a72333d8 Fix context menus in thread pane on Linux by making sure not to re-use an event struct (and its changed event flags) after dispatching it. Bug 179172, r=varga, sr=blizzard.
git-svn-id: svn://10.0.0.236/trunk@133702 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:59:06 +00:00
cmanske%netscape.com
4c1c7e3809 Remove editorShell from message composer. b=174389, r=ducarroz, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133701 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:55:10 +00:00
cmanske%netscape.com
a64dcd2981 Remove editorShell from Composer app. b=169029, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133700 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:52:55 +00:00
yokoyama%netscape.com
d1bb1f0d65 Bug 172337
Attachment mechanism incompatible with Unicode
Impact only Windows.  file URL will be UTF-8
when we put the MOZ_UNICODE flang
(MOZ_UNICODE flag is module by module bases for now
 until other modules are ready. NSPR/XPCOM)
/r=nhotta; /sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133699 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:48:53 +00:00
bienvenu%netscape.com
1376e3c13d fix mdn receipts getting filtered to imap sent folder r=cavin, sr=sspitzer 178347
git-svn-id: svn://10.0.0.236/trunk@133698 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:46:58 +00:00
cmanske%netscape.com
335fb3a1bb Remove editorShell from editor dialogs. b=158881, r=brade, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133697 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:44:04 +00:00
cmanske%netscape.com
f42124e4bb New XBL for editor tag and editorshell removal. b=133598, r=akkana, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133696 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:41:16 +00:00
smontagu%netscape.com
ef0e83ae00 Bug 136322: Character coding menu doesn't work in Source window. Author=neil@parkwaycc.co.uk, r=shanjian, sr=bzbarsky@mit.edu.
git-svn-id: svn://10.0.0.236/trunk@133695 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:35:58 +00:00
bzbarsky%mit.edu
83f54c2bcb ok, that didn't make the AIX compiler happy enough, and I trust it over
all our other ones, so...


git-svn-id: svn://10.0.0.236/trunk@133694 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:23:11 +00:00
blakeross%telocity.com
9422a58994 Minor polish.
git-svn-id: svn://10.0.0.236/trunk@133693 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 22:11:19 +00:00
bzbarsky%mit.edu
b797fc1248 fix windows linker bustage
git-svn-id: svn://10.0.0.236/trunk@133690 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:35:59 +00:00
leaf%mozilla.org
9c093ba9d8 Automated update
git-svn-id: svn://10.0.0.236/trunk@133689 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:15:09 +00:00
seawood%netscape.com
ecfb0e8b98 PATH entries on win9x are all upper-case.
Bug #164646 Fixing win9x bustage.


git-svn-id: svn://10.0.0.236/trunk@133688 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:09:52 +00:00
nhotta%netscape.com
d768bbf1d9 Reset parser's charset to file system's default for file url,
bug 179146, r=yokoyama, sr=bzbarsky.


git-svn-id: svn://10.0.0.236/trunk@133687 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 20:06:16 +00:00
kaie%netscape.com
29bfe3470c b=161488 Forwarding encrypted mail as attachments should be first deciphered
Patch produced by ducarroz and kaie
r=ducarroz/kaie sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133686 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:51:54 +00:00
bzbarsky%mit.edu
04bc7e2dbf Clean up some array stuff in editor; switch to nsCOMArray in a bunch of
places.  Bug 175564, r=jfrancis, sr=kin


git-svn-id: svn://10.0.0.236/trunk@133685 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:40:11 +00:00
pkw%us.ibm.com
0a3cfbf6ce Fix xptcinvoke code on AIX when compiling in 64-bit mode. Specifically,
passing PRBools through xptcinvoke was broken.
Bug 178499: r=jdunn, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133684 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:38:15 +00:00
brendan%mozilla.org
41e9a80c9f Fix s.match('re', 'g') and similar cases to use the right local root (179524, r=rogerl).
git-svn-id: svn://10.0.0.236/trunk@133682 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:25:01 +00:00
blizzard%redhat.com
69f2708fed Bug #179773. mailViews.dat not installed during make install. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133681 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:24:38 +00:00
ducarroz%netscape.com
f2eeb216c2 Fix for bug 179082. We need to insert a decoder even when we edit an encrypted message. R=kaie, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133680 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:22:37 +00:00
bienvenu%netscape.com
9545296f16 ignore tabs in reference headers, fixes threading when folded headers have tabs, r/sr=sspitzer, 179736 thx to jmuto for diagnosing the problem, also, whitespace cleanup
git-svn-id: svn://10.0.0.236/trunk@133679 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:22:09 +00:00
nhotta%netscape.com
23802c12dc Adding phonetic name fields to addressbook (default to be disabled),
bug 178891, r=cavin, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133677 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:21:28 +00:00
ducarroz%netscape.com
2383d44d17 Fix for bug 167131. Not not display remote image in message compose when setting is on. R=morse, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133676 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:18:04 +00:00
bzbarsky%mit.edu
87e0051c3e Align text inputs, buttons, comboboxes to baseline with respect to the
text around them (bug 167236).  Fix width sizing issues for <input
type="button/reset/submit"> (bugs 79927, 36364).  Fix nonuniform heights
of form controls (bug 70251).  Patch is on bug 167236, r=jkeiser,
sr=roc+moz, moa=rods


git-svn-id: svn://10.0.0.236/trunk@133674 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:17:51 +00:00
nhotta%netscape.com
5e08a3cbc0 Chagned to make search date format localizable,
bug 98144, r=ducarroz, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133673 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:11:22 +00:00
blizzard%redhat.com
30c98e4851 Remove freetype, xft and expat locally since it's not needed anymore. r=cls
git-svn-id: svn://10.0.0.236/trunk@133672 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:11:14 +00:00
danm%netscape.com
104b450b14 always constrain new windows fully onscreen. bug 162029 and effectively part of bug 162090. r=hyatt,jag
git-svn-id: svn://10.0.0.236/trunk@133671 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:09:02 +00:00
nhotta%netscape.com
aa11d2f5db Separated the menu charset code from the charset initialization function,
to avoid the mail font code calling the init function and reset the menu charset,
bug 150530, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133670 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:08:23 +00:00
danm%netscape.com
3950784443 hook up _parent target in window.open. it wasn't. bug 168807 code=keeda@hotpop.com r=jkeiser,jst,me
git-svn-id: svn://10.0.0.236/trunk@133669 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:05:17 +00:00
nhotta%netscape.com
c748a19750 Adding pref for phonetic fields, search date format option,
bug 98144, r=ducarroz, sr=sspitzer
bug 178891, r=cavin, sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@133668 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:03:14 +00:00
pschwartau%netscape.com
c3ce684503 Comment fix.
git-svn-id: svn://10.0.0.236/trunk@133667 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 19:02:18 +00:00
pschwartau%netscape.com
43359f5192 str.match() CAN take a 2nd parameter, if the 1st one is a string instead of a RegExp object. Added cases to cover that.
git-svn-id: svn://10.0.0.236/trunk@133666 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 18:33:39 +00:00
rogerl%netscape.com
1f29c1fc2c Slot ops.
git-svn-id: svn://10.0.0.236/trunk@133660 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 17:52:42 +00:00
karnaze%netscape.com
40cb00ae72 bug 119786 - don't consider a caption and row group frame to be siblings (caption and row group content are siblings). sr=kin, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@133657 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 15:55:39 +00:00
dbaron%fas.harvard.edu
e8f31961d7 Subclass the nsCSS* structs as nsRuleData* so members can be added to the latter without bloating the former, and to allow the former to go away eventually. Propagate whether a font family name comes from HTML through the style system and use it to set a bit on nsFont indicating that quirky behavior of Symbol fonts is acceptable. b=175372 r=bzbarsky sr=kin
git-svn-id: svn://10.0.0.236/trunk@133655 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 15:17:07 +00:00
locka%iol.ie
195c881f0b NOT PART OF BUILD. Fire events to nsIScriptEventManager targets. Add some #ifdefs around some code to fix breakage in other configurations. Comment out a debug macro. b=174404 sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133654 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 13:15:05 +00:00
dbaron%fas.harvard.edu
71b85664e2 Move the body background repainting hack from the reflow case to the framechange case, since roc's style hint processing changes make it no longer needed in the reflow case, but it's always been needed for the framechange case. b=175131 r=roc sr=kin
git-svn-id: svn://10.0.0.236/trunk@133652 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 11:17:55 +00:00
dbradley%netscape.com
664e4a6037 NOT PART OF BUILD. Corrected scriptability tests.
git-svn-id: svn://10.0.0.236/trunk@133651 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 10:38:17 +00:00
igor%mir2.org
a9d29a14f5 Call NativeArray.getLength() instead of deprecated NativeArray.jsGet_length()
git-svn-id: svn://10.0.0.236/trunk@133645 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:41:09 +00:00
igor%mir2.org
7e3dfdd461 Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.
git-svn-id: svn://10.0.0.236/trunk@133644 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:37:43 +00:00
igor%mir2.org
971ac0bb35 1. Deprecation jsGet_length in favour of getLength
2. Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.


git-svn-id: svn://10.0.0.236/trunk@133643 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:36:40 +00:00
igor%mir2.org
d576005582 1. In js_concat determine the the size of the resulting string to avoid reallocations in StringBuffer .
2. Cosmetics: use consistent naming and layout for internal methods providing JS library implementation.


git-svn-id: svn://10.0.0.236/trunk@133641 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:33:48 +00:00
igor%mir2.org
e0d97e7664 Cosmetics: use consistent naming and layout for internal methods providing JS library implementation
git-svn-id: svn://10.0.0.236/trunk@133639 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:29:57 +00:00
igor%mir2.org
9f64b76c40 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=179068
Allow to use char sequences exceeding 64K when storing source for decompilation

The current 64K limit for string literals comes from omj/Parser.java where it constructs the internal script presentation for future decompilation. The patch extends this form to allow string sequences with more then 64K characters and modifes decompilation code in omj/NativeFunction.java accordingly.


git-svn-id: svn://10.0.0.236/trunk@133638 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:24:54 +00:00
igor%mir2.org
618232cc79 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=179366
Assume --> after a possible whitespace after line start means comments to end-of-line. The change follows the SpiderMonkey solution.


git-svn-id: svn://10.0.0.236/trunk@133637 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 09:20:09 +00:00
leaf%mozilla.org
503a262619 Automated update
git-svn-id: svn://10.0.0.236/trunk@133633 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:45:08 +00:00
seawood%netscape.com
9a9d72d603 Fix win32 checks for directories that are at the end of the patch.
Thanks to parish@ntlworld.com for the patch.
Bug #164646 r=cls


git-svn-id: svn://10.0.0.236/trunk@133632 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:41:08 +00:00
dbradley%netscape.com
8342029c26 Bug 173146 - Add support to XPConnect for IDispatch interface. Second round of changes. r=adamlock, sr=jst. Most changes are not part of build.
git-svn-id: svn://10.0.0.236/trunk@133631 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 08:22:35 +00:00
mkaply%us.ibm.com
0832ead0e1 #178280
r=mkaply, sr=blizzard (platform specific code)
OS/2 only - rework how we decide what font names to put in the font list


git-svn-id: svn://10.0.0.236/trunk@133624 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 05:53:16 +00:00
bzbarsky%mit.edu
f7082bb25b Make attribute value testing smarter (using regexps). Bug 177047,
patch by db48x@yahoo.com (Daniel Brooks), r=timeless, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133623 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 05:02:36 +00:00
bzbarsky%mit.edu
e98396416a Fix ScrollFrameIntoView if we have nested views with the child bigger
than the parent.  Bug 143815, r=roc+moz, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133622 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 04:38:28 +00:00
bzbarsky%mit.edu
dd6256cb73 ApplyRenderingChangeToTree should walk {ib} "special siblings". Bug
146409, r=dbaron, sr=roc+moz


git-svn-id: svn://10.0.0.236/trunk@133621 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 04:21:33 +00:00
bzbarsky%mit.edu
2e99df36cd Fix ReplaceChild() on positioned inlines to delegate to
nsAbsoluteContainingBlock.h.  Bug 176915, r=dbaron, sr=rbs


git-svn-id: svn://10.0.0.236/trunk@133620 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 03:30:13 +00:00
bienvenu%netscape.com
1f41cbc610 turn on fix for flush on unix as well, r=dmose, sr=sspitzer 142196
git-svn-id: svn://10.0.0.236/trunk@133619 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:55:08 +00:00
edburns%acm.org
134cf4805b Checkpoint. Copy binary artifacts in a cross platform manner.
git-svn-id: svn://10.0.0.236/trunk@133618 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:52:18 +00:00
blakeross%telocity.com
79d93d62cf Fix a typo.
git-svn-id: svn://10.0.0.236/trunk@133615 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:24:07 +00:00
blakeross%telocity.com
b907a8fb77 179316 - date literals aren't serialized properly. r=rjc sr=ben
git-svn-id: svn://10.0.0.236/trunk@133614 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:12:02 +00:00
bbaetz%student.usyd.edu.au
4b6686fd99 Bug 179302 - 'anyexact' isn't an option for boolean charts
r=joel, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133613 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 02:07:46 +00:00
bugreport%peshkin.net
2cb82e0c0e Bug 179491 Searchs of attachments containing a string do not enforce attchment privacy
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133612 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:58:02 +00:00
jrgm%netscape.com
e42052df34 Fix bug 158690, 'textbox .readonly property not implemented correctly'. Fix by djudd@seachange.com (David Judd), r=caillon, sr=blake.
git-svn-id: svn://10.0.0.236/trunk@133611 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:55:58 +00:00
pschwartau%netscape.com
e444ceb885 Initial add. Regression test for bug 179524.
git-svn-id: svn://10.0.0.236/trunk@133610 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:52:25 +00:00
dougt%netscape.com
cc0ab312d1 Moving nsIIOService to SDK. 179610. r=me
git-svn-id: svn://10.0.0.236/trunk@133609 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:42:33 +00:00
darin%netscape.com
477a1136d1 cleaning up ipcCommandModule
git-svn-id: svn://10.0.0.236/trunk@133608 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:13:51 +00:00
locka%iol.ie
eb9724030e NOT PART OF BUILD. Restore file that breaks LiveConnect build of plugin
git-svn-id: svn://10.0.0.236/trunk@133607 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:04:26 +00:00
bienvenu%netscape.com
e994c4429e fix copying multiple imap messages on servers with non-canonical hierarchy delimiter (e.g., cyrus servers), also whitespace cleanup, r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133606 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 01:00:17 +00:00
bienvenu%netscape.com
6f196c1018 fix problem with summary files on network drives getting out of date, r=cavin, sr=sspitzer, 142196 (make nsIOFileStream::flush really flush)
git-svn-id: svn://10.0.0.236/trunk@133605 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:59:10 +00:00
bienvenu%netscape.com
66fa9ce407 fix copying of messages to local folders leaving the db in an invalid state, r=naving, sr=sspitzer, 178641
git-svn-id: svn://10.0.0.236/trunk@133604 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:58:03 +00:00
blakeross%telocity.com
b3a7dfb34f Remove the unnecessary indentation on non-Windows platforms.
git-svn-id: svn://10.0.0.236/trunk@133601 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:49:00 +00:00
bugreport%peshkin.net
89c311fab6 Second installment of Bug 179260 Unknown table 'map_assigned_to' in order clause at globals.pl line 242
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133600 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:43:34 +00:00
blakeross%telocity.com
87df0e7135 Fix textbox.readonly.
git-svn-id: svn://10.0.0.236/trunk@133599 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-12 00:40:59 +00:00
mkaply%us.ibm.com
7f2cf5b82a Bustage fix - Windows only
git-svn-id: svn://10.0.0.236/trunk@133598 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 23:38:51 +00:00
mkaply%us.ibm.com
136089ba1e Two more REQUIRES needed
git-svn-id: svn://10.0.0.236/trunk@133596 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:35:49 +00:00
rogerl%netscape.com
93eee3bfd6 Proto instance dup. Type discovery in expression.
git-svn-id: svn://10.0.0.236/trunk@133595 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:19:59 +00:00
darin%netscape.com
706ecd43c8 1) introduce ipcIClientQueryHandler
2) ipcService impl cleanups


git-svn-id: svn://10.0.0.236/trunk@133593 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:07:26 +00:00
relyea%netscape.com
7beeccdceb Adjust the time values so we have correct and consistant displays.
git-svn-id: svn://10.0.0.236/trunk@133592 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:01:57 +00:00
relyea%netscape.com
7b98e5b2cd Multi-access database race condition patches. These changes are already checked
into NSS 3.6.1.


git-svn-id: svn://10.0.0.236/trunk@133591 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 22:00:03 +00:00
brade%netscape.com
84dd8719ac add requires (bug 157117)
git-svn-id: svn://10.0.0.236/trunk@133588 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 21:20:47 +00:00
kirk.erickson%sun.com
b15a84738b Made awk_pkginfo-$(MACH) machine dependent for Sonja's release build.
git-svn-id: svn://10.0.0.236/trunk@133586 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:44:55 +00:00
brade%netscape.com
8bff2e0558 check origin, disable paste and some other commands until security review, cmd mgr api changes, remove forced focus (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133584 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:19:37 +00:00
brade%netscape.com
723bbf60a6 api changes to command manager (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133581 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:51 +00:00
brade%netscape.com
e6a01a6ad6 add private methods for targetting of commands (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133580 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:44 +00:00
brade%netscape.com
db4d65de88 change api to allow for commands to be directed to a particular window, all non-targeted commands must come from chrome (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133579 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:40 +00:00
brade%netscape.com
3660cf6b8a change api to allow for commands to be directed to a particular window (bug 157117, r=mkaply, sr=sfraser)
git-svn-id: svn://10.0.0.236/trunk@133578 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:15:31 +00:00
darin%netscape.com
92d2e8dc68 1) XP_UNIX should use getenv("LOGNAME") instead of getpwuid(geteuid())
since the same UID may be shared by multiple logins (yes, really!).
2) fix bug in ipcmMessageClientInfo::NextTarget().


git-svn-id: svn://10.0.0.236/trunk@133577 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 20:11:05 +00:00
rogerl%netscape.com
0c618d88a5 signed/unsigned comparison.
git-svn-id: svn://10.0.0.236/trunk@133575 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:36:12 +00:00
relyea%netscape.com
b486fee8f0 Remove long dead code from util. triggered by bug 179038
git-svn-id: svn://10.0.0.236/trunk@133574 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:17:24 +00:00
myk%mozilla.org
8ce2b96942 Fix for bug 179360: puts the filters at the top of the request queue and eliminates that empty table that sometimes is at the top of the
queue.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@133573 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 18:02:03 +00:00
timeless%mozdev.org
7489cba074 Bug 173703 Closing a tab left to the active tab using middle-click displays a blank screen
patch by neil@parkwaycc.co.uk r=hj sr=jag


git-svn-id: svn://10.0.0.236/trunk@133571 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 15:53:57 +00:00
dbradley%netscape.com
cb70055f94 Bug 179026 - URL parameter containing non-ASCII characgter is not parsed correctly
r=dbradley, sr=dveditz, patch by darin


git-svn-id: svn://10.0.0.236/trunk@133570 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 14:16:34 +00:00
roc+%cs.cmu.edu
5a00c656b9 Backing out fix in bug 173072 (see bug 179459).
git-svn-id: svn://10.0.0.236/trunk@133565 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 13:59:48 +00:00
myk%mozilla.org
b0160244f2 Fix for bug 179334: updates the setter consistently. also fixes numerous other bugs in the RT code.
r=bbaetz
a=myk


git-svn-id: svn://10.0.0.236/trunk@133564 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 12:36:27 +00:00
bugreport%peshkin.net
e033f7ae5a Bug 179260 Unknown table 'map_assigned_to' in order clause at globals.pl line 242
r=bbatez
a=myk


git-svn-id: svn://10.0.0.236/trunk@133561 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 06:52:59 +00:00
darin%netscape.com
31ac92d024 initial version of CLIENT_INFO support
git-svn-id: svn://10.0.0.236/trunk@133559 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 06:32:27 +00:00
bryner%netscape.com
9f719b9d40 Fixing busted win32 nightly builds (bug 179435). r=cls.
git-svn-id: svn://10.0.0.236/trunk@133558 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 04:04:49 +00:00
blakeross%telocity.com
a1064d2f6b Fix the delay when arrow keying up and down in the themes/extensions listboxes (and other listboxes).
git-svn-id: svn://10.0.0.236/trunk@133557 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 02:25:46 +00:00
bbaetz%student.usyd.edu.au
25c631b65e Bug 179290 - login cookie email needs to be escaped
r=jake, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133556 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 02:23:26 +00:00
blakeross%telocity.com
0a56c58ae2 - Make arrow keys toggle focus between controls.
- Make quicksearch in history case insensitive.
- Port over some trunk fixes.


git-svn-id: svn://10.0.0.236/trunk@133555 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 01:51:50 +00:00
justdave%syndicomm.com
de6528c560 Fix for bug 179380: if "enablequips" is off, quips.cgi now presents a message that the quips are disabled instead of letting you view or add quips.
r=myk, a=me


git-svn-id: svn://10.0.0.236/trunk@133554 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-11 00:19:43 +00:00
rogerl%netscape.com
479fcdb866 Constuctor function support. Dump of classes.
git-svn-id: svn://10.0.0.236/trunk@133553 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 23:52:33 +00:00
zach%zachlipton.com
1effd6dc67 Fix for bug 179396 (add 007util.t in order to test Bugzilla::Util).
rx2=bbaetz, a=myk (on the condition that we check out the use of the
trilicense later)


git-svn-id: svn://10.0.0.236/trunk@133552 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 23:31:15 +00:00
myk%mozilla.org
1d66813b4a Fix for bug 178984: disables flag requestee field using JavaScript unless flag is set to "requested".
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133551 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:51:45 +00:00
gerv%gerv.net
e7b240ab5c Bug 170464 - OS/2 disappeared from 'Operating System' list. This allows selection of any OS, if the submitter is running it, on this form. Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133550 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:48:55 +00:00
darin%netscape.com
27beec2e42 make daemon PlatformSendMsg async on XP_WIN.
git-svn-id: svn://10.0.0.236/trunk@133549 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:34:47 +00:00
paper%animecity.nu
2fa97b3335 Bug 166007 - Fix GIF2.cpp formatting. r=biesi sr=tor
git-svn-id: svn://10.0.0.236/trunk@133548 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 22:29:15 +00:00
chanial%noos.fr
4b5fe29c82 bug 92380: focus the personal toolbar so that commands executed from the context menu are correctly targeted. r=caillon, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133547 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:58:31 +00:00
chanial%noos.fr
c2dec44586 bug 162333: remove several js warnings in the profile manager. r=timeless, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133546 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:54:21 +00:00
despotdaemon%netscape.com
a37cefff0a Pseudo-automatic update of changes made by paper@animecity.nu.
git-svn-id: svn://10.0.0.236/trunk@133545 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 21:47:56 +00:00
pschwartau%netscape.com
7e4e0fd61d Initial add. Regression test by igor@icesoft.no for bug 31255, bug 179366.
git-svn-id: svn://10.0.0.236/trunk@133544 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 20:56:42 +00:00
pschwartau%netscape.com
ce621ae6cc Initial add. Regression test for bug 179068.
git-svn-id: svn://10.0.0.236/trunk@133543 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 20:31:36 +00:00
timeless%mozdev.org
6cdb67b898 Bug 178178 Sidebar name should not be hardcoded to "Bugzilla"
r=bbaetz a=justdave


git-svn-id: svn://10.0.0.236/trunk@133542 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 19:26:22 +00:00
roc+%cs.cmu.edu
631a6c40fc Bug 170011. Revert behavior of 'overflow:hidden' to only affect children for the current element is a containing block ancestor. r=dbaron,sr=kin
git-svn-id: svn://10.0.0.236/trunk@133541 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:24:31 +00:00
roc+%cs.cmu.edu
a5a565fd75 Bug 173072. Fix XUL scrollbar regression by forcing a view update after reflow. r=bzbarsky,sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133540 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:21:05 +00:00
sspitzer%netscape.com
bc3890c1d7 fix my comment. thanks to greg onufer for catching my mistake.
git-svn-id: svn://10.0.0.236/trunk@133539 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 18:12:01 +00:00
ian%hixie.ch
96e303587d Move FileStrings and GenericOutputs to below the MySQL string datasource.
git-svn-id: svn://10.0.0.236/trunk@133538 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 17:00:44 +00:00
ian%hixie.ch
410ecd247a Stop requiring that PLIF applications know about every last PLIF service in order to use PLIF. This will require a one-time change to every PLIF app's registerServices method, but will make future changes a lot easier.
git-svn-id: svn://10.0.0.236/trunk@133537 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 16:39:09 +00:00
jfrancis%netscape.com
dd06260172 fix for 178264: nsRangeUpdater bugs and enhancements. precursor to 143338 landing. r=brade; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133536 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 15:11:08 +00:00
darin%netscape.com
64d542a2d7 adding win32 note
git-svn-id: svn://10.0.0.236/trunk@133535 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 10:06:53 +00:00
darin%netscape.com
cb53eeea4c ipcIService should be completely scriptable
git-svn-id: svn://10.0.0.236/trunk@133534 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 09:57:05 +00:00
gerv%gerv.net
7489ee473f Bug 173689 - Default comments search box type to "contains string". Patch by gerv; r,a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133533 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 09:01:08 +00:00
bbaetz%student.usyd.edu.au
1ad96216f8 Bug 179321 - cannot clear status whiteboard entirely
r=joel x2
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133532 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 08:33:45 +00:00
bugreport%peshkin.net
fa55f7fe9e Bug 179264 csv output for the buglist (see url inside) is invalid (too many "s)
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@133531 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 06:40:05 +00:00
darin%netscape.com
27020b681d IPC module methods should not depend on ipcMessage class.
git-svn-id: svn://10.0.0.236/trunk@133530 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 06:21:24 +00:00
myk%mozilla.org
b47d09134e Fix for bug 179329: filters HTML out of quips on "show all quips" page
git-svn-id: svn://10.0.0.236/trunk@133529 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 05:13:28 +00:00
blakeross%telocity.com
0d1e224350 Move where we record the download start time.
git-svn-id: svn://10.0.0.236/trunk@133528 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:59:09 +00:00
blakeross%telocity.com
4d72fb518c add source and target to download properties dialog.
git-svn-id: svn://10.0.0.236/trunk@133527 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:55:06 +00:00
blakeross%telocity.com
0bf2506b97 Remove unused mTimer.
git-svn-id: svn://10.0.0.236/trunk@133526 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:09:41 +00:00
blakeross%telocity.com
6c172d45d9 Fix 172811 - current downloads not updated when path contains non-ASCII character.
git-svn-id: svn://10.0.0.236/trunk@133525 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 04:06:45 +00:00
zach%zachlipton.com
fa3d7f820c And turn this into a stub for runtests.pl.
No review needed on tests (but review will be needed for all test changes
after this one)


git-svn-id: svn://10.0.0.236/trunk@133524 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:50:31 +00:00
zach%zachlipton.com
db72451923 Adding runtests.pl for bug 143155. runtests.sh will remain for a little
while in order to allow tinderboxen to transition and any documents to be
updated.

Patch by Norton <norton@w5ac.tamu.edu>, r1=jouni, r2=gerv


git-svn-id: svn://10.0.0.236/trunk@133523 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:31:05 +00:00
bbaetz%student.usyd.edu.au
9d2eab8756 Bug 179238 - searching by commenter is ignored if you do 'exact' or
'contains'
r, a=myk


git-svn-id: svn://10.0.0.236/trunk@133522 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 03:05:23 +00:00
blakeross%telocity.com
1a1e6bf016 Remove some unused prefs.
git-svn-id: svn://10.0.0.236/trunk@133521 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:52:52 +00:00
bbaetz%student.usyd.edu.au
18684acf40 Bug 176599, Improve performance of duplicates.cgi
original patch iteration by gerv, change to use Bugzilla:Search by me
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133520 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:50:39 +00:00
asa%mozilla.org
263c16f4e7 new bookmarks defaults
git-svn-id: svn://10.0.0.236/trunk@133519 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 02:39:19 +00:00
blakeross%telocity.com
93a8bfa77d fix typo.
git-svn-id: svn://10.0.0.236/trunk@133517 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 01:31:30 +00:00
blakeross%telocity.com
8083f459a2 Add the beginnings of a download properties dialog.
git-svn-id: svn://10.0.0.236/trunk@133516 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 01:21:33 +00:00
mkaply%us.ibm.com
2a315191f0 Use XP_WIN here - XP_PC means win and Os/2, so this is unclear. Note we prefer XP_PC is not used at all
git-svn-id: svn://10.0.0.236/trunk@133515 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 00:48:10 +00:00
jake%bugzilla.org
f882285e40 Bug 179242 Part 2 - Handle both conditions for the if block
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@133514 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:37:07 +00:00
rogerl%netscape.com
d134850835 Added class dumper.
git-svn-id: svn://10.0.0.236/trunk@133513 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:26:06 +00:00
bbaetz%student.usyd.edu.au
6e3588938e Bug 178383 - product/component query conditions appear twice
r=myk, justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133512 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:17:15 +00:00
cbiesinger%web.de
aac3a6ac3a 108271 r=paper sr=tor
support all bitfields in the bmp decoder


git-svn-id: svn://10.0.0.236/trunk@133511 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:06:25 +00:00
edburns%acm.org
4bd8bf317a Checkpoint. Generates Webclient jar.
git-svn-id: svn://10.0.0.236/trunk@133510 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:03:06 +00:00
bbaetz%student.usyd.edu.au
134d1a6ccc Bug 179193 - anyexact should use IN, not OR
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133509 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 23:02:25 +00:00
rogerl%netscape.com
4c49733aff Fixed missing pop after var initialization. Added instruction trace.
git-svn-id: svn://10.0.0.236/trunk@133508 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:53:51 +00:00
bbaetz%student.usyd.edu.au
27f04d79cc Bug 179184 - regetlastlist returns all bugs
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133507 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:18:47 +00:00
bbaetz%student.usyd.edu.au
6b66251bf4 Bug 179203 - "Preset Queries" text does not appear in footer if last named query is not in footer
r=gerv, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133506 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:11:30 +00:00
ccarlen%netscape.com
55388286d8 Fixing tinderbox orangeness, OS2 bustage
git-svn-id: svn://10.0.0.236/trunk@133505 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 22:05:09 +00:00
edburns%acm.org
c5cf4d6a65 Make it work on win32.
git-svn-id: svn://10.0.0.236/trunk@133504 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 21:10:09 +00:00
ccarlen%netscape.com
bac3fcaf96 Bug 177321 - factor nsIDirectoryServiceProvider impl out of nsProfile.cpp. Now built as a static lib with which apps can link if they only use a single profile r=dougt/sr=darin
git-svn-id: svn://10.0.0.236/trunk@133503 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:38:43 +00:00
aaronl%netscape.com
583879228f This is the sound for bug 176602, readding as binary file.
git-svn-id: svn://10.0.0.236/trunk@133502 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:25:59 +00:00
aaronl%netscape.com
3b499af38b Removing sound so I can re add it with -kb as binary file -- oops
git-svn-id: svn://10.0.0.236/trunk@133501 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:25:22 +00:00
aaronl%netscape.com
59604b559d Bug 176602. Make typeaheadfind beep less annoying, and implement boolean pref accessibility.typeaheadfind.enablesound. Pref is turned off by default in Linux for now, sound needs testing and work there (see bug 179138 and bug 110385). r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133500 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:21:20 +00:00
jake%bugzilla.org
7bb5a14045 Bug 179188 - The new flag system wasn't indicating which attachment a flag was changed on. This patch inserts the attachment ID any time it exists in the activity log (to match what show_activity does).
r=myk
a=myk


git-svn-id: svn://10.0.0.236/trunk@133499 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:21:03 +00:00
caillon%returnzero.com
52b8972406 Update "how to add a style property" to reflect reality: fix the CSS_PROP macro description, add info on nsIDOMCSS2Properties.idl, linkify the bullets in "Implementation" to jump to
anchors within the page.
This is a doc only change and not part of any build.


git-svn-id: svn://10.0.0.236/trunk@133498 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 19:08:23 +00:00
bzbarsky%mit.edu
54f34022d8 Allow list labels to be negative. Bug 56088, r=caillon, smontagu, sr=roc+moz
git-svn-id: svn://10.0.0.236/trunk@133497 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:33:37 +00:00
bugreport%peshkin.net
c9fcb6f045 Bug 179225 Missing space. "Reassign bug to ownerand QA contact of selected component "
2xr=jake
a=myk


git-svn-id: svn://10.0.0.236/trunk@133496 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:31:27 +00:00
caillon%returnzero.com
69643e085d ** Venkman only **
Bug 154132, Allow copy from call stack.
r=rginda


git-svn-id: svn://10.0.0.236/trunk@133495 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:20:56 +00:00
bugreport%peshkin.net
c43188ce95 Bug 179242 Searching for comment contains string + email gives "Not unique table/alias: 'longdescs_' at globals.pl line 242"
r=jake
a=myk


git-svn-id: svn://10.0.0.236/trunk@133494 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:09:25 +00:00
mkaply%us.ibm.com
25693d4f7f Forgot header
git-svn-id: svn://10.0.0.236/trunk@133493 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 18:03:17 +00:00
bzbarsky%mit.edu
517741de81 Fix assertion from out-of-bounds array access. Bug 175440, r=timeless, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133492 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 17:43:33 +00:00
bugreport%peshkin.net
0e1c93c220 Bug 179207 Blessing doesn't work right
r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@133491 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 17:23:55 +00:00
sspitzer%netscape.com
1ba50cdc45 fix some string code, per jag. some minor code cleanup.
git-svn-id: svn://10.0.0.236/trunk@133490 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 16:54:52 +00:00
blythe%netscape.com
fa184dd69a Not part of build.
Fix compile time error.


git-svn-id: svn://10.0.0.236/trunk@133489 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 16:42:50 +00:00
mkaply%us.ibm.com
c6f1fd14b8 #178309
r=jkobal, sr=blizzard
Os/2 only - don't allow recursive calls to WinSetFocus - bad things happen.


git-svn-id: svn://10.0.0.236/trunk@133488 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:31:23 +00:00
mkaply%us.ibm.com
d72e4387ba #178961
r=me, sr=jag
Due to a bug in OS/2 compiler handling of temporaries in a conditional, we need to split this out.
Need this ASAP, Os/2 mail is DOA
Incidentally, I'll point out that this code is wrong anyway because different countries write kb in different ways (kb, KB, Kb)


git-svn-id: svn://10.0.0.236/trunk@133487 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:28:46 +00:00
ian%hixie.ch
bf08137422 More debugging information, to make it easier to debug multiple PLIF-based projects that are outputting to the same error log.
git-svn-id: svn://10.0.0.236/trunk@133486 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:26:41 +00:00
mkaply%us.ibm.com
ae1e0683c1 #178961
r=r=naving, sr=jag
Need a cast here - no telling what the compiler will due to the -1 on the compare


git-svn-id: svn://10.0.0.236/trunk@133485 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:26:04 +00:00
mkaply%us.ibm.com
9db8dc5517 Proper fix for 104371 - just comment out the space case, don't remove it
git-svn-id: svn://10.0.0.236/trunk@133484 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:22:29 +00:00
blakeross%telocity.com
cfd2cbf39b Fix bug that finished downloads disappear after restarting.
git-svn-id: svn://10.0.0.236/trunk@133483 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:07:26 +00:00
blakeross%telocity.com
1d981b0d4a remove unused member.
git-svn-id: svn://10.0.0.236/trunk@133482 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:05:27 +00:00
blakeross%telocity.com
d53c871101 Remove an unused function.
git-svn-id: svn://10.0.0.236/trunk@133481 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 15:04:41 +00:00
blakeross%telocity.com
9af4a753e3 Download fixes.
git-svn-id: svn://10.0.0.236/trunk@133480 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 14:56:32 +00:00
blakeross%telocity.com
823b97ea4c Fix some bugs where the downloads panel displays -1.
git-svn-id: svn://10.0.0.236/trunk@133479 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 14:04:37 +00:00
myk%mozilla.org
988c51f59c Fix for bug 179205: Makes flag options be correct in all situations.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133478 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:57:28 +00:00
blakeross%telocity.com
64e3e33d6b Download dir pref.
git-svn-id: svn://10.0.0.236/trunk@133477 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:53:22 +00:00
myk%mozilla.org
2f28ece750 Fix for bug 179177: avoid database errors when inserting bug by locking all tables i need to access
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133476 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:50:08 +00:00
blakeross%telocity.com
76910c8a28 Comment out something for now.
git-svn-id: svn://10.0.0.236/trunk@133475 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:17:27 +00:00
blakeross%telocity.com
4f5e0f1ea3 Fix crash trying to save without a default download dir
git-svn-id: svn://10.0.0.236/trunk@133474 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:17:10 +00:00
blakeross%telocity.com
421b8a6221 Fix broken save page as... complete.
git-svn-id: svn://10.0.0.236/trunk@133473 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 13:15:26 +00:00
bbaetz%student.usyd.edu.au
7cf477c81a Bug 178189 - when filing a new bug, the generated bugmail doesn't include
product/component
r=justdave, myk
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133472 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 12:20:18 +00:00
bbaetz%student.usyd.edu.au
f4e0651a0c Bug 179174 - renable $| = 1
r=justdave x2
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133471 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 11:55:27 +00:00
seawood%netscape.com
bec7157f3e Remove $(CONFIG) from real_install target. It was a typo anyway.
git-svn-id: svn://10.0.0.236/trunk@133467 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 09:23:31 +00:00
sspitzer%netscape.com
ffc0ed36c6 add todo comment for bienvenu.
git-svn-id: svn://10.0.0.236/trunk@133466 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:58:55 +00:00
sspitzer%netscape.com
8b0171b4b0 fix my comments.
git-svn-id: svn://10.0.0.236/trunk@133465 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:55:03 +00:00
sspitzer%netscape.com
63a1061bb2 fix the behaviour and enabling of the "Get Msgs" button.
1) make it always enabled (bug #89404, bug #111102)
2) if news server selected, it updates the unread counts on that server
3) if "Local Folders" selected, it does "get msgs" for default account

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133464 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:52:22 +00:00
leaf%mozilla.org
1d4e7c9315 Automated update
git-svn-id: svn://10.0.0.236/trunk@133463 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:39:06 +00:00
seawood%netscape.com
e23d846c0c Define MKCSHLIB properly for win32
git-svn-id: svn://10.0.0.236/trunk@133462 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:38:44 +00:00
seawood%netscape.com
c3d4380b65 JS is a C only library and should be linked as such.
git-svn-id: svn://10.0.0.236/trunk@133461 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 08:18:25 +00:00
sspitzer%netscape.com
f071444508 fix js warning.
git-svn-id: svn://10.0.0.236/trunk@133460 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 06:49:34 +00:00
curt%netscape.com
93c86741e3 Changing version string.
(Bug #178716, r=chak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133459 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 05:16:52 +00:00
jkeiser%netscape.com
87616393a6 Fix virtual destructor warning, bug 165647, r=dmose, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133458 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 05:11:26 +00:00
jkeiser%netscape.com
57420fbfec Fix Mac build bustage.
git-svn-id: svn://10.0.0.236/trunk@133456 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 03:42:42 +00:00
leaf%mozilla.org
400772a526 Automated update
git-svn-id: svn://10.0.0.236/trunk@133455 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:24:11 +00:00
seawood%netscape.com
9f85f1518f Tighten (add?) tool version checks for win32 builds.
Allow MIDL to be specified from mozconfig or env since various MS SDKs contain an unsupported version of midl and they insist upon adding their SDK dirs to the beginning of the PATH (bug #178392)
Bug #164646 r=bryner


git-svn-id: svn://10.0.0.236/trunk@133454 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:16:55 +00:00
myk%mozilla.org
2ffb066148 Fixing syntax error build bustage.
git-svn-id: svn://10.0.0.236/trunk@133453 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 02:05:22 +00:00
justdave%syndicomm.com
bde78c6a04 Bumping version number for development snapshot tarball
git-svn-id: svn://10.0.0.236/trunk@133452 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:59:22 +00:00
myk%mozilla.org
af7b895494 Fix for bug 171505: shows disabled flags in the UI
r=bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133451 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:58:51 +00:00
bbaetz%student.usyd.edu.au
0945eecdec Bug 114696 - permission checking in queries not optimal
Patch by joel, dkl + me
r=myk, a=justdave


git-svn-id: svn://10.0.0.236/trunk@133450 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:58:07 +00:00
jpierre%netscape.com
31c66bd1dc Assert if the QuickDER decoder does not consume all the input
git-svn-id: svn://10.0.0.236/trunk@133449 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:56:01 +00:00
bryner%netscape.com
bf0cf5ce00 Fixing mac build bustage.
git-svn-id: svn://10.0.0.236/trunk@133448 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:49:31 +00:00
alecf%netscape.com
1c16ef7f73 argh, back out my last checkin because Ts went UP not down!
git-svn-id: svn://10.0.0.236/trunk@133447 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:31:32 +00:00
leaf%mozilla.org
90655a8454 update version strings for bug 178863
git-svn-id: svn://10.0.0.236/trunk@133446 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:31:16 +00:00
myk%mozilla.org
e458425ecb Fix for bug 178841: removes full paths from filenames in attachments table and prevents them from appearing again
r=gerv,bbaetz
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133445 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:23:07 +00:00
blakeross%telocity.com
b11bfece87 Removing unnecessary checks.
git-svn-id: svn://10.0.0.236/trunk@133444 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:21:19 +00:00
jkeiser%netscape.com
4f05bade61 Fix copyright date. Bug 133354.
git-svn-id: svn://10.0.0.236/trunk@133443 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 01:03:36 +00:00
morse%netscape.com
8ea9b5f5e6 bug 174189, fix flawfinder warning, r=harishd, sr=dveditz
git-svn-id: svn://10.0.0.236/trunk@133440 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:45:53 +00:00
bryner%netscape.com
b345c67a0c Add a second pass of event processing for system events, using DOM3 event group functionality. Bug 124990. Patch by joki, r=saari and bryner, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@133439 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:25:25 +00:00
akkana%netscape.com
d44d25f41e 76461: Enable rewrap in html mail compose. r=ducarroz sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133438 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:22:32 +00:00
rpotts%netscape.com
3d0c95b224 bug #174404 (sr=jst). forgot to check this file in with the rest of the patch...
git-svn-id: svn://10.0.0.236/trunk@133437 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:15:42 +00:00
gerv%gerv.net
3beb5eaa5a Bug 92253 - Boolean chart makes very wide web pages from query.cgi. Patch by slee@wilcoxassoc.com; r=gerv, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133436 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-09 00:05:50 +00:00
nhotta%netscape.com
a6be66a96b Moved FN/LN definitions to .dtd to allow localizer to change the order.
bug 160544, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@133435 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:47:38 +00:00
rogerl%netscape.com
08b7b73d98 nuttin honey.
git-svn-id: svn://10.0.0.236/trunk@133434 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:46:32 +00:00
rdayal%netscape.com
461f986b4e Bug #178989 sometimes records are not added to Palm AB during Palm Sync
r=ssu, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133433 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:45:00 +00:00
darin%netscape.com
e4463d2578 fix memory leaks
git-svn-id: svn://10.0.0.236/trunk@133431 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:44:31 +00:00
bienvenu%netscape.com
f05f25584d fix crash undoing imap delete r=cavin, sr=sspitzer, 177835
git-svn-id: svn://10.0.0.236/trunk@133430 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:32:40 +00:00
alecf%netscape.com
aac40e7aa5 fix for bug 177401 - use nsAString& classes instead of wstring in nsIBinaryInputStream, to speed up fastload startup
sr=darin, r=dougt


git-svn-id: svn://10.0.0.236/trunk@133429 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:30:53 +00:00
gerv%gerv.net
4108c79fd9 Bug 164003 - Button "Add another boolean chart" appears twice after clicking "And". Patch by gerv; r=myk, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@133428 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:15:14 +00:00
asasaki%netscape.com
ee9eece3a5 bugscape 17934, which has code for unhardcoding versions in both trees
(bugzilla reference 169074).  r=cls, no sr= needed for build changes.


git-svn-id: svn://10.0.0.236/trunk@133427 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:04:01 +00:00
cltbld%netscape.com
4f1981086b Updated user agent string to 1.3a for trunk. Bugzilla 178860 r=lpham/sr=granrose. ycalonje checking in as cltbld
git-svn-id: svn://10.0.0.236/trunk@133426 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 23:00:40 +00:00
cltbld%netscape.com
a453f0b97c Updated mac getinfo strings to 1.3a for trunk. Bugzilla 178862, r=lpham, sr=kysmith. ycalonje checking in as cltbld.
git-svn-id: svn://10.0.0.236/trunk@133425 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:51:41 +00:00
yokoyama%netscape.com
926b7e0959 Bug 104934 Convert Mozilla to Unicode app
Turning MOZ_UNICODE flag by default.
Impact only in Windows platforms.
r=kmcclusk@netscape.com
sr=kin@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133424 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:47:01 +00:00
cltbld%netscape.com
55bf20206e updated mac getinfo strings to 1.3a for the trunk. bugzilla 178862 r=lpham, sr=kysmith. ycalonje checking in as cltbld.
git-svn-id: svn://10.0.0.236/trunk@133423 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:42:29 +00:00
pschwartau%netscape.com
c7d97152de A more accurate inRhino() function. The previous one failed to distinguish Rhino from LiveConnect.
git-svn-id: svn://10.0.0.236/trunk@133422 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:42:25 +00:00
varga%netscape.com
df0813091b Fix for bug 145969. Can't persist open state of content view trees
r=varga, sr=jag, patch by Neil


git-svn-id: svn://10.0.0.236/trunk@133421 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:34:42 +00:00
rjc%netscape.com
05cc7a666e Fix bug # 178368: reduce search graph footprint re: HTML chunks. r=sgehani sr=jag
git-svn-id: svn://10.0.0.236/trunk@133420 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 22:34:02 +00:00
pschwartau%netscape.com
b7ba32bae5 New engine command for JS2: was dikdik, now epimetheus.
git-svn-id: svn://10.0.0.236/trunk@133417 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:56:41 +00:00
cbiesinger%web.de
bb8a256059 missed a file. still r=pavlov sr=tor
git-svn-id: svn://10.0.0.236/trunk@133416 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:54:43 +00:00
cbiesinger%web.de
8a2b7c78b0 removing antiquated gif decoder code and similar stuff. r=pavlov sr=tor, and this is not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133415 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 21:53:18 +00:00
despotdaemon%netscape.com
fd9af5c81e Pseudo-automatic update of changes made by paper@animecity.nu.
git-svn-id: svn://10.0.0.236/trunk@133413 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:54:51 +00:00
sspitzer%netscape.com
8438092bad moving to 8.3. it's too easy to goof this up otherwise.
git-svn-id: svn://10.0.0.236/trunk@133412 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:42:21 +00:00
sspitzer%netscape.com
481208b451 moving to 8.3. it's too easy to goof this up otherwise.
git-svn-id: svn://10.0.0.236/trunk@133411 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 20:41:45 +00:00
rogerl%netscape.com
c07193ba31 Added '-t' option for controlling parse tree dump.
git-svn-id: svn://10.0.0.236/trunk@133409 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 19:50:16 +00:00
relyea%netscape.com
9ea8d9acc0 Bug 176667: kaie authored the patch, ian/relyea reviewed it.
git-svn-id: svn://10.0.0.236/trunk@133408 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 19:10:54 +00:00
despotdaemon%netscape.com
97ca37e5b4 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133406 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 18:26:00 +00:00
mkaply%us.ibm.com
39717148b9 Os/2 needs 8.3 names
git-svn-id: svn://10.0.0.236/trunk@133403 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 15:24:29 +00:00
ccarlen%netscape.com
152baeb1b3 Bug 177059 Mach-0 nsLocalFile::GetFileSize sometimes fails for directories. Patch by sfraser. r=ccarlen/sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133401 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 15:03:06 +00:00
ccarlen%netscape.com
3bc51b679e Bug 170611 - AlertCheck dialog has a cancel button and it shouldn't. r=pink/rs=sfraser.
git-svn-id: svn://10.0.0.236/trunk@133400 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 14:52:52 +00:00
axel%pike.org
1070a8d232 Not part of build. Make buster load html if unknown decoder likes it. Save numbers with results. Disable most stuff for loading reference thru docshell.
git-svn-id: svn://10.0.0.236/trunk@133398 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 13:40:07 +00:00
locka%iol.ie
c56031a91f Removing unused file
git-svn-id: svn://10.0.0.236/trunk@133397 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 13:20:49 +00:00
igor%mir2.org
00ce524c60 Cosmetics: refactor decompile without changing its functionality so a possible future patch to allow literal strings greater then 64K would be less intrusive.
git-svn-id: svn://10.0.0.236/trunk@133396 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 12:08:52 +00:00
timeless%mozdev.org
cb71555d70 fixing comment about PRUnichar* ToNewUnicode
rs=brendan


git-svn-id: svn://10.0.0.236/trunk@133395 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 11:43:58 +00:00
bzbarsky%mit.edu
f2f1c77c6f Show the "real" dimensions of images too. Bug 122125, patch by
db48x@yahoo.com (Daniel Brooks), r=jag, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133394 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:55:41 +00:00
bzbarsky%mit.edu
750265183b fix leak of charset string. bug 176989, patch by keeda@hotpop.com,
r=peterv, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133393 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:52:06 +00:00
bernd.mielke%snafu.de
015107030e fix OS2 bustage sorry
git-svn-id: svn://10.0.0.236/trunk@133392 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 10:42:48 +00:00
glazman%netscape.com
49cd5a1fff show tooltip for href (links), src (images) and name (named anchors) in Composer; b=47519, fix by glazman@netscape.com and neil@parkwaycc.co.uk, r=brade, r=glazman for kin's changes, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133391 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 09:14:00 +00:00
sspitzer%netscape.com
bdedf90d5d implement the | operator for mail 3 pane quick search.
bug #177034
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133390 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 09:09:27 +00:00
glazman%netscape.com
aafb9a3250 inline styles were not merged after a SetInlineProperty() call; b=178667, r=jfrancis, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133389 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:54:42 +00:00
axel%pike.org
ea0d3163b2 bug 178461, XSLTProcessor.reset(), r=sicking, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@133388 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:50:34 +00:00
gerv%gerv.net
154ad8416c Bug 71794 - processmail shouldn't bother checking dependencies unless state changes. Patch by gerv; r=myk.
git-svn-id: svn://10.0.0.236/trunk@133387 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 08:04:58 +00:00
darin%netscape.com
3ef1d1664e 1) make logging compilation controlled by IPC_LOGGING #define
2) make testmodule work when compiling optimized
3) stop loading ipc service at XPCOM startup


git-svn-id: svn://10.0.0.236/trunk@133386 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 07:17:50 +00:00
bryner%netscape.com
9a8c4c8428 Stop building and packaging XBL form controls, since they aren't being actively worked on and aren't slated to be turned on anytime soon (bug 172288). r=jkeiser, sr=blake.
git-svn-id: svn://10.0.0.236/trunk@133385 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 06:09:17 +00:00
bernd.mielke%snafu.de
63c27e6db9 Implement for table captions caption-side: left and right, also <caption align="left"> and right, further vertical-align:top, middle and bottom for table captions bug 3166 r=karnaze sr=kin
git-svn-id: svn://10.0.0.236/trunk@133384 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:29:34 +00:00
blakeross%telocity.com
807a6c355e Default to disablehistory.
git-svn-id: svn://10.0.0.236/trunk@133383 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:10:08 +00:00
mkaply%us.ibm.com
36a02da65f OS/2 bustage
1. PR_CALLBACK
2. PLEASE don't create more implementations using min() and max()
name them something different.


git-svn-id: svn://10.0.0.236/trunk@133382 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:05:28 +00:00
blakeross%telocity.com
99d0b051a8 Oops.
git-svn-id: svn://10.0.0.236/trunk@133381 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 05:01:03 +00:00
blakeross%telocity.com
6ada4c020c One more small perf opt.
git-svn-id: svn://10.0.0.236/trunk@133380 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:58:40 +00:00
blakeross%telocity.com
2a7b20c4e9 same thing.
git-svn-id: svn://10.0.0.236/trunk@133379 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:56:15 +00:00
blakeross%telocity.com
9311f9a9a0 same thing.
git-svn-id: svn://10.0.0.236/trunk@133378 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:52:37 +00:00
blakeross%telocity.com
844e7d5920 same thing.
git-svn-id: svn://10.0.0.236/trunk@133377 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:51:05 +00:00
blakeross%telocity.com
b1314f687a Try to speed up new window and startup performance for people who have blank homepages.
git-svn-id: svn://10.0.0.236/trunk@133376 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:50:05 +00:00
darin%netscape.com
de9e45259f make daemon automatically shutdown.
git-svn-id: svn://10.0.0.236/trunk@133375 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:48:09 +00:00
dougt%netscape.com
68814c1e49 175932. UMR: PostTimerEvent() does not check return value from GetPRThread(). Thanks to Andrew Schultz for pointing this out. r=pavlov, sr=darin. Also includes 175440 - using nsCOMArray in nsThreadPool, patch by bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@133374 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:46:58 +00:00
dougt%netscape.com
25075002e6 102812. enable file html directory listing mode r=bbaetz sr=darin.
git-svn-id: svn://10.0.0.236/trunk@133373 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:46:44 +00:00
timeless%mozdev.org
e239196b46 Bug 178972 trivial code changes to nsXULElement.cpp
r=brendan sr=kin


git-svn-id: svn://10.0.0.236/trunk@133372 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:28:04 +00:00
myk%mozilla.org
9208a1748c Fix for bug 171480: make output for non requestee-specific requests look better in the request queue.
r=joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133371 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:21:10 +00:00
mkaply%us.ibm.com
556fd86cd7 OS/2 DLL names need to be 8.3
git-svn-id: svn://10.0.0.236/trunk@133369 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 04:08:31 +00:00
dmose%netscape.com
7585e3bfb6 packager changes for junkmail filtering code; part of bug 169638. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133368 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:38:37 +00:00
sspitzer%netscape.com
606136433d the right fix for the .so and .dll is to staticly link them in.
but that's another issue.  r=dmose


git-svn-id: svn://10.0.0.236/trunk@133367 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:36:58 +00:00
mkaply%us.ibm.com
8a6b21249e Need to change true/false to PR_TRUE/PR_FALSE as well
git-svn-id: svn://10.0.0.236/trunk@133366 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:27:12 +00:00
dmose%netscape.com
6c9f28fd1f Fix OS/2 tinderbox build bustage by changing instances of bool to PRBool
git-svn-id: svn://10.0.0.236/trunk@133365 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 03:13:07 +00:00
nicolson%netscape.com
24f684096b default doesProduceOutput to true for compatibility.
git-svn-id: svn://10.0.0.236/trunk@133364 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:24:20 +00:00
bolian.yin%sun.com
c358d1affb Bug 156424, PgUp and PgDn in numeric keyboard don't work.
r=Roland.Mainz@informatik.med.uni-giessen.de, sr=bryner.


git-svn-id: svn://10.0.0.236/trunk@133363 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:23:23 +00:00
bryner%netscape.com
11f63cc6f7 Fixing comet orange; need to null check style->engine or we will crash if no theme engine is being used.
git-svn-id: svn://10.0.0.236/trunk@133362 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:21:49 +00:00
bryner%netscape.com
f5752168f3 oops! fixing my last checkin to actually set the widget types as disabled
git-svn-id: svn://10.0.0.236/trunk@133360 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:06:38 +00:00
myk%mozilla.org
3b7adf5ab7 Fix for bug 178776: Eliminates warning in duplicates.cgi.
git-svn-id: svn://10.0.0.236/trunk@133359 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:05:20 +00:00
sspitzer%netscape.com
f969cc0d99 fix my comments. we don't need to hash the file name, it's already been hashed
before we get here.  r/sr=no one


git-svn-id: svn://10.0.0.236/trunk@133358 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 02:02:56 +00:00
blakeross%telocity.com
22492a9d1d Update UA.
git-svn-id: svn://10.0.0.236/trunk@133357 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:46:33 +00:00
blakeross%telocity.com
fcc5c1a3ad Remove duplicate pref.
git-svn-id: svn://10.0.0.236/trunk@133356 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:45:04 +00:00
blakeross%telocity.com
defa36cafd Remove old pref.
git-svn-id: svn://10.0.0.236/trunk@133355 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:43:03 +00:00
bryner%netscape.com
c46a5dba0c Disable GTK native theme support if we're using a theme engine that's known to crash, such as the Xenophilia engine (bug 175306). r=blizzard, sr=brendan.
git-svn-id: svn://10.0.0.236/trunk@133354 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:41:42 +00:00
myk%mozilla.org
dae89726c5 Fix for bug 172518: makes the request tracker use the generic user matching code
r=not_erik,joel
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133353 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:35:46 +00:00
blakeross%telocity.com
84631ac395 Fix a similar bug whereby bookmark keywords that become full urls get added to urlbar history as keywords.
git-svn-id: svn://10.0.0.236/trunk@133352 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:24:37 +00:00
blakeross%telocity.com
5524e69ed1 Fix bug that hitting ctrl+enter/shift+enter/ctrl+shift+enter to prepend/append to the urlbar url doesn't add that new url to the urlbar history.
git-svn-id: svn://10.0.0.236/trunk@133351 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:18:39 +00:00
blakeross%telocity.com
46dd489b6b Minor tweak.
git-svn-id: svn://10.0.0.236/trunk@133349 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:09:32 +00:00
blakeross%telocity.com
8c82701b3d Remove downloads prompt pref.
git-svn-id: svn://10.0.0.236/trunk@133348 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 01:01:07 +00:00
nicolson%netscape.com
abe829a4ba Add isExtensionPresent and getExtension.
git-svn-id: svn://10.0.0.236/trunk@133347 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:40:26 +00:00
blakeross%telocity.com
e5d91e4a28 Second attempt at black menu submenu arrow.
git-svn-id: svn://10.0.0.236/trunk@133346 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:39:40 +00:00
bzbarsky%mit.edu
d96d71689f Remove more dead code. bug 102437, r=heikki, sr=rbs
git-svn-id: svn://10.0.0.236/trunk@133345 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:28:24 +00:00
bugreport%peshkin.net
711d966f8e Bug 178772 doeditparams.cgi failed with malformed headers
r= justdave
a= justdave


git-svn-id: svn://10.0.0.236/trunk@133343 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-08 00:08:08 +00:00
darin%netscape.com
08ef942334 fixup unix security checks
git-svn-id: svn://10.0.0.236/trunk@133341 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:47:33 +00:00
rogerl%netscape.com
8318629a33 Fixed bad delete of string ptrs in libraries.
git-svn-id: svn://10.0.0.236/trunk@133340 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:46:02 +00:00
myk%mozilla.org
43076e4c08 Fix for bug 178800: fixes taint failure in graphical charts with Perl 5.6.0
r=gerv
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133339 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:28:40 +00:00
locka%iol.ie
0302fed96a Rewrite PropertyList to remove STL, fix various issues in ControlSite and add control download & install. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133337 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:06:08 +00:00
locka%iol.ie
411a1934b2 Remove WMP test harness. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133336 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:04:27 +00:00
locka%iol.ie
eb1cf14324 Update to plugin to support DOM callbacks, control download & install, remove WMP test harness. b=178542 r=peterl@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133335 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:03:52 +00:00
mkaply%us.ibm.com
150ae82091 Need PR_FALSE here - OS/2 bustage
git-svn-id: svn://10.0.0.236/trunk@133334 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:03:05 +00:00
pschwartau%netscape.com
ac243ee0ec Tweaking sort function.
git-svn-id: svn://10.0.0.236/trunk@133333 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 23:02:06 +00:00
pschwartau%netscape.com
f901a44784 Reinstituting check on |arr instanceof Array && arr.length === 0| from version 1.1 of test; this is necessary.
git-svn-id: svn://10.0.0.236/trunk@133332 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:57:40 +00:00
glen.beasley%sun.com
0cbae08b88 removes sun provider and set passwords
git-svn-id: svn://10.0.0.236/trunk@133331 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:49:26 +00:00
timeless%mozdev.org
4c2f725ef8 Bug 177772 crash [@JS_GetPrivate] serializing script with syntax error
r=brendan sr=ben


git-svn-id: svn://10.0.0.236/trunk@133330 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:46:38 +00:00
pschwartau%netscape.com
bab0976795 Adding comments -
git-svn-id: svn://10.0.0.236/trunk@133329 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:43:52 +00:00
peterv%netscape.com
fe2743814b Turn on basic junk-mail detection functionality in mail on Mac. r=dmose.
git-svn-id: svn://10.0.0.236/trunk@133327 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:30:16 +00:00
bienvenu%netscape.com
cff6bd9b40 fix mark thread watched/ignored news filter actions r=cavin, sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133326 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 22:16:25 +00:00
sspitzer%netscape.com
49952737df packaging changes for mailviews
git-svn-id: svn://10.0.0.236/trunk@133324 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:48:35 +00:00
tara%tequilarista.org
e54bab738b Fix for bug 44644
git-svn-id: svn://10.0.0.236/trunk@133323 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:39:57 +00:00
rogerl%netscape.com
7d2e0cc973 Fixed instance member resolution & superclass slot layout.
git-svn-id: svn://10.0.0.236/trunk@133322 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:29:41 +00:00
dmose%netscape.com
aa2af82d45 Removing old, unused files (not part of build)
git-svn-id: svn://10.0.0.236/trunk@133321 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:29:26 +00:00
sspitzer%netscape.com
408037bc2d fix for #178934. junk classification of local mail (and incoming pop mail)
was getting marked as read.  r=dmose, sr=bienvenu.  thanks to granrose for finding the bug.


git-svn-id: svn://10.0.0.236/trunk@133320 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:26:38 +00:00
bienvenu%netscape.com
03a512dbff right align folder size, r/sr=sspitzer 178817
git-svn-id: svn://10.0.0.236/trunk@133319 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:24:03 +00:00
alecf%netscape.com
b548b7bdf9 prep for fixing bug 176559 - use getService rather than createInstance so we stop creating element factories
sr=peterv/jst, r=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133318 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:23:09 +00:00
dmose%netscape.com
3db27f265c Fix incorrect filename used by spam-detection code (bug 169638); thanks to Pratik <psolanki@netscape.com> for catching this. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133316 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:06:13 +00:00
blakeross%telocity.com
9cb69281c6 Keep up with the trunk.
git-svn-id: svn://10.0.0.236/trunk@133315 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 21:05:16 +00:00
tara%tequilarista.org
f2fb69bde3 Fix for bug 45579, making it so the editparams.cgi page is more secure
git-svn-id: svn://10.0.0.236/trunk@133314 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:46:22 +00:00
dmose%netscape.com
0d6c826fa2 Turn on basic junk-mail detection functionality in mail. Parts (such as moving to other folders) are still disabled as there is work to do there yet. Bug 169638; r=bienvenu; sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133313 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:37:55 +00:00
rjesup%wgate.com
47169439c2 Bug 149764: changes to quit-application observer topic. r=danm, sr=jst
git-svn-id: svn://10.0.0.236/trunk@133312 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:25:45 +00:00
sfraser%netscape.com
ee87fd1e16 Fix debug target to output shared lib, not static lib; fixes autoreg crash in debug builds. r=brade/sspitzer.
git-svn-id: svn://10.0.0.236/trunk@133311 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 20:02:59 +00:00
blizzard%redhat.com
6b928a4268 Bug #176299. Add gtk2-specific libraries to the package manifest. r=leaf
git-svn-id: svn://10.0.0.236/trunk@133310 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:45:34 +00:00
pschwartau%netscape.com
c66c983e30 Adding cases with non-default sorting.
git-svn-id: svn://10.0.0.236/trunk@133309 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:40:26 +00:00
pschwartau%netscape.com
9d85f91395 Improving readability.
git-svn-id: svn://10.0.0.236/trunk@133308 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:25:42 +00:00
pschwartau%netscape.com
4506bad90c Improving test: arr, arr.sort() must be more than just two arrays of the same length, they must be equal as objects.
git-svn-id: svn://10.0.0.236/trunk@133307 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:15:28 +00:00
pschwartau%netscape.com
5d25a5041f Improving readability.
git-svn-id: svn://10.0.0.236/trunk@133306 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 19:05:57 +00:00
rogerl%netscape.com
79e1ebc317 signed/unsigned issue on NotALabel.
git-svn-id: svn://10.0.0.236/trunk@133305 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 18:41:17 +00:00
pete.zha%sun.com
8564de7c4b back out for bug 144664
a=cls


git-svn-id: svn://10.0.0.236/trunk@133304 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 17:18:21 +00:00
sspitzer%netscape.com
751e9aee54 commenting some todo items. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@133303 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 16:03:10 +00:00
sspitzer%netscape.com
16090b5590 fix for #142408. Selecting "Search Messages..." folder context menu marks selected message unread. thanks to tobias.weibel@gmx.net for the fix. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133302 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:49:18 +00:00
brade%netscape.com
205b1f301d extend the api for Midas functionality (bug 177700, r=akkana, sr=jst)
git-svn-id: svn://10.0.0.236/trunk@133301 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:38:35 +00:00
brade%netscape.com
79ef0005b1 add Midas functionality (bug 177700, r=akkana, sr=jst)
git-svn-id: svn://10.0.0.236/trunk@133300 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:36:25 +00:00
bzbarsky%mit.edu
cd2b67ecb7 This addref needs removing too. Part of bug 177543, r=rjesup, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133299 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 15:21:08 +00:00
mostafah%oeone.com
3ab6a9dd6c Added file created from libical patch for bug 146310
git-svn-id: svn://10.0.0.236/trunk@133298 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:50:46 +00:00
mostafah%oeone.com
7ee5faf803 Backing out invalid part of libical patch for bug 146310
git-svn-id: svn://10.0.0.236/trunk@133297 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:33:28 +00:00
jdunn%netscape.com
03715b66dd set initial w/h of Image() as "pixel" units
r=peterv@netscape.com
sr=jst@netscape.com


git-svn-id: svn://10.0.0.236/trunk@133296 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 14:02:21 +00:00
bzbarsky%mit.edu
9d0e916e54 Make the nsCOMArray destructor release all the objects. Bug 178813,
r=bbaetz, sr=rpotts


git-svn-id: svn://10.0.0.236/trunk@133295 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:34:18 +00:00
bzbarsky%mit.edu
2ca1fd4009 <form> with no action should submit to document uri, not base uri. Bug
171924, r=jkeiser, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@133294 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:29:34 +00:00
jfrancis%netscape.com
41221abe84 64647: implement "Paste without Formatting"; r=akkana; sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133293 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:04:37 +00:00
glazman%netscape.com
a42d9d93a2 fixing OS2VACPP bustage
git-svn-id: svn://10.0.0.236/trunk@133292 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 13:03:52 +00:00
jfrancis%netscape.com
9be3545656 175943: port layout-debug plugin+component to mac. This build option is not on by default.
git-svn-id: svn://10.0.0.236/trunk@133291 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 12:06:49 +00:00
jfrancis%netscape.com
b3dd2a097b fix for 174017: Multiple enters after quoted text does not move cursor; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133290 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:38:08 +00:00
jfrancis%netscape.com
408cabdd19 fix for 169586: Plaintext is always pasted in default font not the one in context. r=brade; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133289 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:29:37 +00:00
jfrancis%netscape.com
303874b31f fix for 164060: Drop link into list item makes cursor jump to next item; r=fm; sr=kin
git-svn-id: svn://10.0.0.236/trunk@133288 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 11:26:26 +00:00
glazman%netscape.com
074bb889eb fixing rpotts's seamonkey-ports bustage
git-svn-id: svn://10.0.0.236/trunk@133287 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:56:40 +00:00
brendan%mozilla.org
3ebbe7b166 Check in rogerl's patch for bug 178722, r=me.
git-svn-id: svn://10.0.0.236/trunk@133286 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:51:23 +00:00
kyle.yuan%sun.com
f90ff1380c Bug 177965 Wrong option selected in select field when pressing first key
r=jkeiser, sr=bzbarsky
Use a static member function ComboboxFocusSet() to clear the gLastKeyTime, and have gLastKeyTime be a static member


git-svn-id: svn://10.0.0.236/trunk@133285 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 10:25:03 +00:00
glazman%netscape.com
3b746bae03 -- NOT PART OF THE BUILD --
CaScadeS only

1. adds support for -moz-opacity
2. fixes support for line-height; b=169362
3. SerializeExternalSheet was using unefficient code; b=168755
4. prepares @page support, related to implem did by rods and myself in bug 115199
5. fixed border support
6. added support for !important declarations (but please see bug 178668)
7. fixed volume support; b=169363
8. prepares support for CSS level and browsers compatiblity
   (be able to say e.g. I want styles CSS 2 accepted by both NS4 and Opera5)
9. adds support for moving rules inside and between stylesheets,
    and support for stylesheet reordering
10. removed JS warnings
11. faster and more efficient code in stylesheets tree refresh


git-svn-id: svn://10.0.0.236/trunk@133284 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 09:24:36 +00:00
pete.zha%sun.com
d709d1959d fix the bustage (lose to checkin this file in the previous checkin) r=jkeiser a=#mozilla
git-svn-id: svn://10.0.0.236/trunk@133283 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:48:27 +00:00
darin%netscape.com
e8142930c5 launch IPC service on XPCOM startup.
git-svn-id: svn://10.0.0.236/trunk@133282 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:13:34 +00:00
bzbarsky%mit.edu
0748e6efda that addref should not have landed... thanks to rpotts for catching it
git-svn-id: svn://10.0.0.236/trunk@133281 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 08:04:04 +00:00
pete.zha%sun.com
9f55f14161 fix bustage for bug 144664 r=bryner a=#mozilla
git-svn-id: svn://10.0.0.236/trunk@133280 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:55:59 +00:00
darin%netscape.com
6935c92435 fix XP_UNIX build bustage
git-svn-id: svn://10.0.0.236/trunk@133279 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:37:24 +00:00
darin%netscape.com
f00dea6d77 1) cleanup ipcService/ipcTransport platform factoring
2) add ipc-startup-category
3) add ipc-startup and ipc-shutdown observer topics


git-svn-id: svn://10.0.0.236/trunk@133278 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 07:34:54 +00:00
bzbarsky%mit.edu
76387571ce er, and make it link too.
git-svn-id: svn://10.0.0.236/trunk@133276 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:47:45 +00:00
bzbarsky%mit.edu
9eaa56b652 fix build bustage on Linux
git-svn-id: svn://10.0.0.236/trunk@133275 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:39:39 +00:00
pete.zha%sun.com
b98d6e9fa3 Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com patch=louie.zhao@sun.com
This patch fixed the build bustage on windows&HP-UX platform which r=bryner@netscape.com sr=bzbarsky@mit.edu


git-svn-id: svn://10.0.0.236/trunk@133274 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:32:29 +00:00
myk%mozilla.org
88aa2f69c1 Fix for bug 178801: Missing &:: caused function call to fail, resulting in server error.
r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@133272 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:31:51 +00:00
darin%netscape.com
1232c163ef fix windows bustage
git-svn-id: svn://10.0.0.236/trunk@133271 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:25:58 +00:00
rpotts%netscape.com
4b947830a3 fix build bustage... i'm a doofus
git-svn-id: svn://10.0.0.236/trunk@133270 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:03:50 +00:00
darin%netscape.com
547b4d53a1 add ipcModuleMethods::init
git-svn-id: svn://10.0.0.236/trunk@133269 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 06:00:10 +00:00
darin%netscape.com
2acc29c026 added ipcModuleUtil.h to simplify using the new plug-in API
git-svn-id: svn://10.0.0.236/trunk@133267 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:54:56 +00:00
myk%mozilla.org
c680f43b1c Fix for bug 178801: missing &:: caused function not to be found, resulting in server error
r=justdave


git-svn-id: svn://10.0.0.236/trunk@133265 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:33:51 +00:00
rpotts%netscape.com
dad38a973d bug #174404 (r=adam, sr=jst) Support the optional FOR and EVENT attributes on the SCRIPT tag
git-svn-id: svn://10.0.0.236/trunk@133264 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 05:17:21 +00:00
sspitzer%netscape.com
8b87dad367 fix for #178793. news filter logs are per group.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133262 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:58:04 +00:00
mkaply%us.ibm.com
67d00b329e #164122
r=cls
OS/2 only - build new viewer app stuff


git-svn-id: svn://10.0.0.236/trunk@133261 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:56:23 +00:00
darin%netscape.com
56efc822ef major overhaul of daemon plug-in module story. modules now talk to the
daemon through a table of function pointers.  this greatly simplifies the
linker magic required to allow the modules to talk with the daemon.


git-svn-id: svn://10.0.0.236/trunk@133260 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:56:06 +00:00
bugreport%peshkin.net
09af7653b1 Bug 178794 Request Queue has Internal Server Error if accessed when not logged in
2xr=justdave
a=justdave (for commit during freeze)


git-svn-id: svn://10.0.0.236/trunk@133259 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:49:19 +00:00
mkaply%us.ibm.com
51791385f5 #177543
r=me, sr=bz
OS/2 build bustage - add explicit casts


git-svn-id: svn://10.0.0.236/trunk@133258 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:48:56 +00:00
sspitzer%netscape.com
152a304176 fix bad comment. r/sr=no one
git-svn-id: svn://10.0.0.236/trunk@133256 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:29:34 +00:00
pschwartau%netscape.com
5a95a22f7b Initial add. Regression test for bug 178722.
git-svn-id: svn://10.0.0.236/trunk@133254 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 04:20:27 +00:00
bryner%netscape.com
da718f1470 Bug 104371 - shiftKey not set correctly for keypress events, breaking shift+space binding. r=brade, bzbarsky, sr=hyatt.
git-svn-id: svn://10.0.0.236/trunk@133250 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 03:34:13 +00:00
glen.beasley%sun.com
aca505f03a move removeSunProvider after JSS JCE provider is loaded
git-svn-id: svn://10.0.0.236/trunk@133249 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 03:33:04 +00:00
jerry.tan%sun.com
0acc19c43b bug 156731, force image with unlimited css width to reflow,
patch by jerry.tan@sun.com r=karnaze, sr=bz


git-svn-id: svn://10.0.0.236/trunk@133248 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:50:39 +00:00
myk%mozilla.org
76a4a5010b Fix for bug 174731: no longer represents spurious flags as being set by default.
r=joel


git-svn-id: svn://10.0.0.236/trunk@133247 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:45:47 +00:00
bzbarsky%mit.edu
5cce5589b3 clean up some array stuff in nsDocument. Bug 177543, r=peterv, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133245 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:36:24 +00:00
blakeross%telocity.com
a95844993c small perf opt.
git-svn-id: svn://10.0.0.236/trunk@133244 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 02:25:18 +00:00
depstein%netscape.com
058bfbb7b5 Changed order of interface tests run in OnInterfacesRunalltestcases(). Commented out nsIWebNav tests until at some point they can be automated. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133242 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:54:21 +00:00
bzbarsky%mit.edu
bb8abbf51f remove old cruft; view-source has not been XML in two years. Bug
102437, r=bbaetz, sr=heikki


git-svn-id: svn://10.0.0.236/trunk@133240 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:50:35 +00:00
ducarroz%netscape.com
e35b7f611d Fix for bug 16499. If no recipient is disclosed, we address the message to the sender to prevent problems with some mail server.R=cavin, SR=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133239 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:21:52 +00:00
timeless%mozdev.org
2edeb19c7e Bug 156814 If bookmark file is symlink, mozilla overwrites symlink with a file
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133238 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:19:25 +00:00
timeless%mozdev.org
eadce824e3 Bug 172377 Moz doesn't properly handle cookies.txt / cookperm.txt symlinks
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133237 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 01:19:24 +00:00
bzbarsky%mit.edu
f63931169a Fix crash closing prefs. Bug 150769, r=alexsavulov, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133236 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:59:25 +00:00
sfraser%netscape.com
ca2567f0d9 Fixing .headers output file name to fix IDL dependencies, which should fix the flames. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133235 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:57:23 +00:00
darin%netscape.com
b267b07ef5 better security check for mach-o builds
git-svn-id: svn://10.0.0.236/trunk@133233 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:31:40 +00:00
jpierre%netscape.com
941f0104bd Fix for 177798 . Improve handling of initialization / shutdown of the CRL cache using a static status variable
git-svn-id: svn://10.0.0.236/trunk@133228 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-07 00:02:31 +00:00
timeless%mozdev.org
a560eb1207 fix off-by-one error in parsing out extension
change by bz


git-svn-id: svn://10.0.0.236/trunk@133227 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:59:36 +00:00
blizzard%redhat.com
f1735775a3 Bug #174283. Xft font prefs should list fontconfig generic families. patch from dbaron@fas.harvard.edu, r=blizzard
git-svn-id: svn://10.0.0.236/trunk@133226 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:49:26 +00:00
rogerl%netscape.com
82611fb130 DumpByteCode implemented/
git-svn-id: svn://10.0.0.236/trunk@133215 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:15:02 +00:00
darin%netscape.com
a873535ff1 fixup security check to work on OSX
git-svn-id: svn://10.0.0.236/trunk@133214 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 23:14:10 +00:00
nhotta%netscape.com
cc8a5e0a31 Fixed the comparison code for the sort direction in SortBy(),
bug 177177, r=cavin, sr=sspitzer.


git-svn-id: svn://10.0.0.236/trunk@133206 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:37:05 +00:00
bzbarsky%mit.edu
8fd8d79350 Prioritize data-sniffing over extension-sniffing for ftp and http. Bug
177026, r=rpotts, sr=darin


git-svn-id: svn://10.0.0.236/trunk@133205 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:29:17 +00:00
sspitzer%netscape.com
88aa548b67 mac build change for mailViews. bug #176850.
sr=sfraser.


git-svn-id: svn://10.0.0.236/trunk@133204 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:27:17 +00:00
sspitzer%netscape.com
8e431a24d0 packaging files for mailViews.dat files. (moved from the ns tree)
bug #176850.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133203 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:26:16 +00:00
darin%netscape.com
4e1324cb9d added startup synchronization for XP_WIN
git-svn-id: svn://10.0.0.236/trunk@133202 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:22:50 +00:00
smontagu%netscape.com
5bf837c7e7 Bug 178623: run-mozilla.sh should popuplate ${XPSERVERLIST} if it was not set yet. Author=Roland.Mainz@informatik.med.uni-giessen.de, r=pete.zha@sun.com, sr=roc+moz, moa=cls
git-svn-id: svn://10.0.0.236/trunk@133201 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:22:32 +00:00
rogerl%netscape.com
7a6f51197d Fixed DikDik remnants.
git-svn-id: svn://10.0.0.236/trunk@133200 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 22:19:55 +00:00
blakeross%telocity.com
cfabb18b1a Removing an #ifdef MOZ_PHOENIX.
git-svn-id: svn://10.0.0.236/trunk@133199 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:56:02 +00:00
sfraser%netscape.com
c1ae53e29b Fixing up project files for sspitzer. r=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133198 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:51:59 +00:00
mikep%oeone.com
73804f09b6 Checking in patch from bug 146310 for libxpical and RDF fixes. This should fix those two things for Mac OS 9.
git-svn-id: svn://10.0.0.236/trunk@133197 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:51:47 +00:00
bzbarsky%mit.edu
24e5e9dd08 disabled selects should still take the colors the page sets. Bug
177569, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133196 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:35:36 +00:00
mostafah%oeone.com
41c91200b1 Checking in libical patch to bug 146310 :Make Calendar client available for Macintosh platform
git-svn-id: svn://10.0.0.236/trunk@133195 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:22:46 +00:00
sspitzer%netscape.com
74ffe25e72 ignore generated Makefiles.
git-svn-id: svn://10.0.0.236/trunk@133194 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:21:05 +00:00
seawood%netscape.com
a12196ab17 Fix image dragging corruption on BeOS and remove redundant code.
Thanks to Stuart Parmenter <pavlov@netscape.com> for the patch.
Bug #178614 r=cls sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133193 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:14:59 +00:00
jaggernaut%netscape.com
45feb50d64 Bug 178701: make source in FindInReadable be const. r=alecf, sr=scc
git-svn-id: svn://10.0.0.236/trunk@133192 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:11:24 +00:00
seawood%netscape.com
bc91143746 Fix pointer casting for AIX 64-bit builds.
Thanks to Philip K. Warren <pkw@us.ibm.com> for the patch.
Bug #177906 r=cls sr=scc


git-svn-id: svn://10.0.0.236/trunk@133191 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:07:23 +00:00
nhotta%netscape.com
c2829bafba Changed emitter to use tranlated strings for headers if not quoting,
bug 157979, r=ducarroz, sr=bienvenu.


git-svn-id: svn://10.0.0.236/trunk@133190 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 21:04:33 +00:00
blakeross%telocity.com
689934f013 170705 - accessing "navigator.cookieEnabled" produces "uncaught exception." r=hyatt sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133189 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:53:52 +00:00
tor%cs.brown.edu
94b36cacfc Bug 148634 - combine imgContainerGIF::ZeroMaskArea & OneMaskArea.
Patch by paper@animecity.nu, r=biese, sr=tor.


git-svn-id: svn://10.0.0.236/trunk@133188 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:52:07 +00:00
blakeross%telocity.com
644a5209d4 Port over a trunk fix.
git-svn-id: svn://10.0.0.236/trunk@133187 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:50:52 +00:00
tor%cs.brown.edu
d83795c6ed Bug 37589 - strange dots next to slashdot news headers (gif decoder).
Patch by paper@animecity.nu, r=biesi, sr=tor.


git-svn-id: svn://10.0.0.236/trunk@133186 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:49:09 +00:00
caillon%returnzero.com
4169dc34bc 177526 - Don't block calls to window.open() that don't actually pop open new windows.
r=jkeiser sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133185 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:48:58 +00:00
tor%cs.brown.edu
ffb291f8fb Bug 155939 - frames not replaced correctly on bordered animated gif.
Patch by paper@animecity.nu, r=bzbarsky, sr=tor


git-svn-id: svn://10.0.0.236/trunk@133184 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:44:51 +00:00
sspitzer%netscape.com
e280bdba6f mailviews for the mac. not part of the build.
git-svn-id: svn://10.0.0.236/trunk@133183 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:40:17 +00:00
timeless%mozdev.org
4d83b479b8 Bug 178350 urichecker crashes things
r=cmanske sr=bz


git-svn-id: svn://10.0.0.236/trunk@133182 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:38:52 +00:00
darin%netscape.com
e04a41018c add empty constructor to ipcStringNode to make GCC 3.2 happy
git-svn-id: svn://10.0.0.236/trunk@133181 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:26:53 +00:00
darin%netscape.com
88b577605e fix compilation error
git-svn-id: svn://10.0.0.236/trunk@133180 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 20:07:33 +00:00
darin%netscape.com
3e356dfc27 added inline utility version of IPC_SendMsg that takes a client ID instead
of an ipcClient pointer.


git-svn-id: svn://10.0.0.236/trunk@133179 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:56:30 +00:00
darin%netscape.com
785aeaf731 rename IPC_GetClientName to IPC_GetPrimaryClientName
implement all of IPC_API


git-svn-id: svn://10.0.0.236/trunk@133178 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:52:39 +00:00
darin%netscape.com
e756c53239 XP_WIN: purge stale clients as each new client comes online.
git-svn-id: svn://10.0.0.236/trunk@133177 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:48:54 +00:00
blakeross%telocity.com
7831057ceb .
git-svn-id: svn://10.0.0.236/trunk@133176 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:27:16 +00:00
sspitzer%netscape.com
08bed16ff6 build work for mailviews, for mac.
not part of the build.


git-svn-id: svn://10.0.0.236/trunk@133174 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 19:10:33 +00:00
ian.mcgreer%sun.com
ac48db6445 bug 177366, clean up refcounting
r=relyea


git-svn-id: svn://10.0.0.236/trunk@133173 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:53:55 +00:00
mbarnson%sisna.com
5c41365089 Added spaces. I promise next time I'll get a review :)
git-svn-id: svn://10.0.0.236/trunk@133172 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:50:26 +00:00
ashishbhatt%netscape.com
59dca1fa78 Updating resource
git-svn-id: svn://10.0.0.236/trunk@133171 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:40:11 +00:00
ashishbhatt%netscape.com
9c0a9b033b Updatind nsIDomWindow testcase
git-svn-id: svn://10.0.0.236/trunk@133170 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:39:36 +00:00
rogerl%netscape.com
39a8464463 Further attempt to purge js32.lib remnant.
git-svn-id: svn://10.0.0.236/trunk@133169 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 18:35:33 +00:00
blythe%netscape.com
9c0821b470 Not part of the build.
Work in progress on heap fragmentation reporting tool.


git-svn-id: svn://10.0.0.236/trunk@133165 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 17:10:29 +00:00
timeless%mozdev.org
3f964f3276 backing out.
git-svn-id: svn://10.0.0.236/trunk@133164 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 16:49:13 +00:00
timeless%mozdev.org
b0778013dc Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133163 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 16:10:46 +00:00
mkaply%us.ibm.com
33c56790e3 #164122
r=mkaply, s=blizzard
OS/2 only - add missing style


git-svn-id: svn://10.0.0.236/trunk@133162 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:58:05 +00:00
mkaply%us.ibm.com
eaf8e4f780 #175106
r=av, s=blizzard
OS/2 only - add native plugin window support


git-svn-id: svn://10.0.0.236/trunk@133161 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:52:36 +00:00
ccarlen%netscape.com
e862798727 Bug 178440 - Mach-0 build ignores startup prefs. r=sdagley/sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@133159 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:35:57 +00:00
timeless%mozdev.org
c1e79f47c2 Bug 174583 Remove nsIRDFDataSource { nsIEnumerator GetAllCommands(in nsIRDFResource aSource); }
r=rjc,bienvenu sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133158 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:31:02 +00:00
timeless%mozdev.org
9bf5aa6cfc Bug 175096 Improve doc comment for NS_SoftwareUpdateRequestAutoReg()
r=dougt sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@133157 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:15:38 +00:00
timeless%mozdev.org
91366332ff Bug 153821 crash while inspecting an error window [@inLayoutUtils::GetPresShellFor]
r=caillon sr=bz


git-svn-id: svn://10.0.0.236/trunk@133156 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 15:01:56 +00:00
timeless%mozdev.org
1a0485e477 Bug 174004 nsTextFormatter.cpp comment stolen from prprf.c should be removed
comment only change


git-svn-id: svn://10.0.0.236/trunk@133155 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 14:57:41 +00:00
dbaron%fas.harvard.edu
2df075502a Make NS_INIT_ISUPPORTS empty by moving NS_INIT_OWNINGTHREAD into the constructor of a new class, |nsAutoOwningThread|. Deprecate NS_INIT_ISUPPORTS. b=174225 r=dougt sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133154 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:09:20 +00:00
dbaron%fas.harvard.edu
1b05d0ac34 Remove blue coloring on buttons in personal toolbar. b=174242 r=jag sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133153 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:04:35 +00:00
dbaron%fas.harvard.edu
6fc372f1e2 Fix shutdown leak of IO service and protocol proxy service by breaking cycle in XPCOM shutdown observer. Slight performance improvement to nsIOService::GetCachedProtocolHandler. b=174134 r=bbaetz sr=darin
git-svn-id: svn://10.0.0.236/trunk@133152 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:03:49 +00:00
dbaron%fas.harvard.edu
1c288bd1c6 Fix shutdown leak of |nsHttpHandler| and |nsHttpConnection|s by moving calls to |DropConnections| from the |nsHttpHandler| destructor to the XPCOM shutdown observer. Fix error in |PurgeDeadConnections|. b=174131 r=bbaetz sr=darin
git-svn-id: svn://10.0.0.236/trunk@133151 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 13:01:42 +00:00
dbaron%fas.harvard.edu
acb32e9f60 Fix leaks of references to jsdService. r=rginda sr=alecf b=170194
git-svn-id: svn://10.0.0.236/trunk@133150 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:59:21 +00:00
dbaron%fas.harvard.edu
7c66f307dd Miscellaneous performance improvements, mostly related to image loads. Cache a copy of the IO service on the Pres Context for use in starting image loads. b=170116 r=darin sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133149 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:58:05 +00:00
dbaron%fas.harvard.edu
27cc9308d2 Fix shutdown leaks of observer service via cycles through JS caused by closures and global variables. b=170022 r=morse sr=jag
git-svn-id: svn://10.0.0.236/trunk@133148 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:55:00 +00:00
dbaron%fas.harvard.edu
0ee9a89ba0 Improve error handling for calls to XGetFontProperty in system fonts code. b=104345 r=bryner sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133147 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:53:16 +00:00
varga%netscape.com
c28a6c24e7 Fix for bug 135272. columns content doesn't flip when setting the UI aligned to the right
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133146 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:20:50 +00:00
locka%iol.ie
fdb5a68e3a Disable XUL progress dialog and fix print progress listener. b=168510 r=rods@netscape.com sr=rpotts@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133145 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:14:59 +00:00
varga%netscape.com
e15e269f7d Fix for bug 162542. Quick Search bar for Bookmarks Manager
r=timeless, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133144 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 12:07:38 +00:00
cbiesinger%web.de
5d604b16f1 bug 177875 r=smontagu sr=roc+moz fontDownloadURL not ideal
git-svn-id: svn://10.0.0.236/trunk@133143 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 11:34:16 +00:00
bryner%netscape.com
4a48c34b4e Fix fullscreen mode on Linux to use the fullscreen hint, rather than manually sizing the window (bug 176640). Move the existing implementation of fullscreen mode from nsGlobalWindow to nsBaseWidget, so that it can be overridden in the gtk widget implementation. r=blizzard, sr=hewitt.
git-svn-id: svn://10.0.0.236/trunk@133142 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 09:35:13 +00:00
darin%netscape.com
a107150193 fixes some XP_WIN ipcd bugs
git-svn-id: svn://10.0.0.236/trunk@133141 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:47:31 +00:00
dmose%netscape.com
cf43c1a311 Placeholder junkmail icons for classic; part of ongoing spam front end work (bug 169638); r/sr=sspitzer@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133140 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:41:03 +00:00
glazman%netscape.com
ba5cb51bf5 CSS properties set to system colors were returning inconsistent values; b=172199, r=caillon, sr=peterv
git-svn-id: svn://10.0.0.236/trunk@133139 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:31:19 +00:00
timeless%mozdev.org
0eaf84927e <glazou> nom de zeus !!!!!
glazou didn't mean to put files into the top level.
i'm removing them.


git-svn-id: svn://10.0.0.236/trunk@133138 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 08:16:01 +00:00
darin%netscape.com
6704473f36 implemented first working prototype of WM_COPYDATA based IPC transport for XP_WIN.
still rough around the edges ;-)


git-svn-id: svn://10.0.0.236/trunk@133137 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:55:05 +00:00
sspitzer%netscape.com
209e527acf fix for #178604. when I add new columns to a tree in foo.xul, they appear to the far left (instead of the far right) for existing profiles. (works fine for new profiles).
this blocks the bayesian filter stuff, as we are adding a new column for junk status.

r=varga, sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133136 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:48:19 +00:00
varga%netscape.com
1be3ec1c4d Fix fo bug 177969. Remove unused nsITreeColFrame interface.
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133135 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:36:21 +00:00
timeless%mozdev.org
d9140404fc Bug 133708 Simplify nsStyleList::CalcDifference
r=dbaron sr=brendan


git-svn-id: svn://10.0.0.236/trunk@133134 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:31:27 +00:00
edburns%acm.org
1a84f84b00 Make it build on win32.
git-svn-id: svn://10.0.0.236/trunk@133133 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:08:30 +00:00
dmose%netscape.com
7d7529ef89 Temporarily disable front-end code for turning on spam filtering for news, since more work still needs to be done; part of ongoing spam front end work (bug 169638); r/sr=sspitzer@netscape.com
git-svn-id: svn://10.0.0.236/trunk@133132 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 07:00:52 +00:00
sspitzer%netscape.com
1fcbfe5e94 fall out from news filter landing / multiple filter action landing.
handle the new news filter actions (ignore / watch), and make sure that
when editing a filter, we scroll the listbox to the first checked action.
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133131 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:53:55 +00:00
varga%netscape.com
a8c8204bf0 Fix for bug 177753. Tree painting methods don't have to be virtual
r=bryner, sr=jag


git-svn-id: svn://10.0.0.236/trunk@133130 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:38:14 +00:00
rogerl%netscape.com
e5cc55d9bc (trying to) clean up workspace check-in.
git-svn-id: svn://10.0.0.236/trunk@133129 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:22:33 +00:00
sspitzer%netscape.com
5eeee1a963 fall out from news filter landing / naving multiple filter action landing.
for new mail filters, action is move, for new news filters, action is delete
r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133128 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:21:44 +00:00
caillon%returnzero.com
996f96a111 167867. Convert the unicodeToEntity functions to use regexps.
r=timeless sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133127 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:07:38 +00:00
rogerl%netscape.com
e05ccc61dd More DikDik clean-up.
git-svn-id: svn://10.0.0.236/trunk@133126 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 06:00:12 +00:00
sspitzer%netscape.com
6d72d727ec implement news filters. bug #17483.
implement an ID column in the thread pane, but commented out.
Mail.app has it, but we haven't decided to include it yet or not.
but it is useful for debugging.

code cleanup.

r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133125 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:59:19 +00:00
leaf%mozilla.org
e45e465787 Automated update
git-svn-id: svn://10.0.0.236/trunk@133123 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:39:37 +00:00
timeless%mozdev.org
9cdf00e28d Bug 154801 ###!!! ASSERTION: null ptr: 'aURL != nsnull', file f:\build\mozilla\rdf\base\src\nsRDFContentSink.cpp, line 696
r=tingley sr=jst


git-svn-id: svn://10.0.0.236/trunk@133120 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:35:14 +00:00
seawood%netscape.com
58a4cc4c0c Remove bogus debugging warning
git-svn-id: svn://10.0.0.236/trunk@133119 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:26:02 +00:00
sspitzer%netscape.com
b611bad118 turn on mscott's mail views. (only linux and windows, working on mac build changes).
bug #176850.  r/sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133118 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:22:25 +00:00
dveditz%netscape.com
0f0277ea5c fix crash in ShellExecute() on some versions of windows (bug 161357) r=mstoltz,sr=darin
git-svn-id: svn://10.0.0.236/trunk@133117 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:20:40 +00:00
sspitzer%netscape.com
ca0dcb17df fix for #123767. freeing bogus pointer. thanks to mhammond@skippinet.com.au for the initial patch. r/sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@133116 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:20:21 +00:00
seawood%netscape.com
4ee80820c1 Add CFM, CFBundle and mach-o library loading support to OSX NSPR. Support is only available if the carbon toolkit is detected at build time.
Original patch by Patrick Beard <beard@netscape.com> with modifications by Wan-Teh Chang <wtc@netscape.com>.
Bug #131306 r=cls


git-svn-id: svn://10.0.0.236/trunk@133114 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:10:22 +00:00
naving%netscape.com
2f5a5394df 178580 r=bienvenu fixing regression - mail slow on startup. thanks to bienvenu for catching my mistake
git-svn-id: svn://10.0.0.236/trunk@133113 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 05:09:20 +00:00
timeless%mozdev.org
d59e88f9dd using http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=MozillaTinderboxAll&branch=HEAD&branchtype=match&dir=&file=&filetype=match&who=pete.zha&whotype=regexp&sortby=Date&hours=2&date=explicit&mindate=1036540000&maxdate=1036553759&cvsroot=%2Fcvsroot&generateBackoutCVSCommands=1
to back out
Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com

this broken windows and other platforms.
approved by cls and #mozilla


git-svn-id: svn://10.0.0.236/trunk@133112 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 04:05:21 +00:00
bzbarsky%mit.edu
3f80eb2fd8 The "value" attribute should not be mapped into style. Bug 157210,
aptch by sicking, r=jst, sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@133111 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:47:55 +00:00
curt%netscape.com
a94c0f7571 Not part of the build. This file is only used by installer developers.
git-svn-id: svn://10.0.0.236/trunk@133110 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:41:30 +00:00
curt%netscape.com
c8167ae104 Install the installer.
(Bug 169579, r=jbetak, sr=sveditz)


git-svn-id: svn://10.0.0.236/trunk@133109 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:31:11 +00:00
blizzard%redhat.com
f74745c459 Re-work focus handling so that it's more reliable and works with embedding (code to be checked in some time soon.) Also, add new debugging options for IM and focus handling.
git-svn-id: svn://10.0.0.236/trunk@133108 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:29:02 +00:00
blizzard%redhat.com
e8c94d7d78 Bug #176514. Problems with XIM and hot keys. Disable XIM for the moment until we figure out the next step.
git-svn-id: svn://10.0.0.236/trunk@133107 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:27:55 +00:00
nicolson%netscape.com
b94775cb10 Add license header to new file.
git-svn-id: svn://10.0.0.236/trunk@133105 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:24:39 +00:00
nicolson%netscape.com
16eb4e02e6 Add TestSDR, to test the new SecretDecoderRing.
In all.pl, always set the CLASSPATH to be the signed JSS JAR file, so
that we can use the JCE (javax.crypto.*) interface.


git-svn-id: svn://10.0.0.236/trunk@133104 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:22:10 +00:00
pete.zha%sun.com
e91a9ebd3c Font Catalog Service
bug=144664 r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com
Check in step 2(modify files)


git-svn-id: svn://10.0.0.236/trunk@133103 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:21:58 +00:00
nicolson%netscape.com
af2568778b Correctly detect a missing key.
git-svn-id: svn://10.0.0.236/trunk@133102 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:20:53 +00:00
bzbarsky%mit.edu
c992ed7c8d Use the right contractid for the pref service. Bug 178062, r=brendan,
sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133101 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:14:47 +00:00
aaronl%netscape.com
b6b951aa4a Make sure order of member variable initialization in the constructor is correct after all of the typeaheadfind checkins that just occurred, to avoid gcc warnings
git-svn-id: svn://10.0.0.236/trunk@133099 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:07:16 +00:00
pete.zha%sun.com
6348fda195 Font Catalog Service
bug=144664
r=bstell@ix.netcom.com sr=bryner@netscape.com
patch=louie.zhao@sun.com
Check in step 1 (Add new files, will not break build)


git-svn-id: svn://10.0.0.236/trunk@133098 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:06:00 +00:00
aaronl%netscape.com
a51ab05a14 Bug 175834. Extra MSAA focus events on checkboxes and radios when traversing pref category pane. r=sgehani, sr=bryner
git-svn-id: svn://10.0.0.236/trunk@133097 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 03:03:52 +00:00
aaronl%netscape.com
67faf008e6 Bug 175046, bug 172991, bug 166471. Make sure typeaheadfind and regular find don't find comment nodes, display:none, visibility:hidden or visibility:collapsed nodes. r=akkana, sr=kin
git-svn-id: svn://10.0.0.236/trunk@133095 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:59:38 +00:00
cavin%netscape.com
188a570716 Fix for multiple bugs. Bug 82748: need to convert account name and organization name to unicode; bug 132671: need to create a content type header if its missing or the content type is multipart/alternative; bug 163597: use NS_ConvertUCS2toUTF8() instead of AssignWithConversion() call; bug 174402: need to convert message header and attachment names to unicode and retrieve long filename from MAPI for the attachments. r=nhotta/ducarroz, sr=sspitzer.
git-svn-id: svn://10.0.0.236/trunk@133094 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:58:05 +00:00
aaronl%netscape.com
0fb5e07d97 Bug 177005. Protection against accidentally going back in history when using backspace too many times with typeaheadfind. r=caillon, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133093 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:54:55 +00:00
aaronl%netscape.com
7da077568c Bug 174145. Typeaheadfind leaking because of timers. r=kyle, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133092 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:50:39 +00:00
aaronl%netscape.com
7f9d8015f9 Bug 174145. Typeaheadfind leaking because of timers. r=kyle, sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@133091 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:49:32 +00:00
aaronl%netscape.com
07b36620ee Bug 175548. Reasonable status bar messages for repeated and backward find modes. r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133090 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:46:33 +00:00
aaronl%netscape.com
a318d12ebd Bug 176037. Typeaheadfind status message skips second letter when match not found. r=akkana, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133089 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:43:10 +00:00
aaronl%netscape.com
7c52ec3c01 Bug 178305. Typeaheadfind autowrap broken. r=kyle, sr=bz
git-svn-id: svn://10.0.0.236/trunk@133088 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:40:38 +00:00
aaronl%netscape.com
f2ed0bd317 Bug 84308. Navigate XUL buttons with arrow keys. r=samir, sr=alecf. Also fixes bug 161410, should be able to use button accesskeys without modifier when button is focused.
git-svn-id: svn://10.0.0.236/trunk@133087 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:37:18 +00:00
aaronl%netscape.com
3b5afc2259 Bug 173350. nsIDOMTreeWalker crashes with XUL documents -- this implements some of the unimplemented methods in nsXULDocument. r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@133086 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:30:38 +00:00
bienvenu%netscape.com
5e54024853 fix news msg useage of memory cache so we don't try to use mem cache entries for messages that haven't finished downloading, r=cavin, sr=sspitzer 178332
git-svn-id: svn://10.0.0.236/trunk@133085 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:28:08 +00:00
aaronl%netscape.com
c70e51198a Bug 66834. Autocomplete swallowing clicks. Fixing for Windows and leaving bug open. r=pinkerton, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@133084 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:27:57 +00:00
bzbarsky%mit.edu
75e86ee39c ReframeContainingBlock needs to work on <body> and such too. Bug 74951,
r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133083 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:26:52 +00:00
ducarroz%netscape.com
e3304b6ead Fix for bug 162842.
When we parse a message, we emitt the main message headers as well the headers
of embedded messages. We must call nsIMsgMailNewsUrl::SetMimeHeaders only for
the main headers.
R=sspitzer, SR=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133082 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:25:00 +00:00
dmose%netscape.com
81c9be9b06 Remove unused junk icons; part of ongoing junk mail filtering front-end work for bug 169638; not yet exposed in the default builds. r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133081 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:23:04 +00:00
curt%netscape.com
8aaeaf2d32 Mainenance cleanup
(Bugs #177163, #127420, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133080 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:21:00 +00:00
naving%netscape.com
0ec49449ab 174441 r=cavin sr=bienvenu Implementing multiple filter actions, so you can do things like move the message
and label as "to-do" etc..
168553 r=cavin sr=bienvenu Forking rules.dat so that we can handle new filter types. msgFilterRules.dat is
where your filters are going to be persisted. Also added support to handle future filters by not parsing
them, will prevent us from forking in future.


git-svn-id: svn://10.0.0.236/trunk@133079 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:13:37 +00:00
bzbarsky%mit.edu
1e7cef8072 line-height settings should not affect internal layout of form
controls.  Bug 82265, r=jkeiser, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133078 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:12:18 +00:00
curt%netscape.com
7c3b74f57a Add Force Install command-line option.
(Bug #73336, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133077 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:08:33 +00:00
darin%netscape.com
d067f6f0d2 make windows build compile.
git-svn-id: svn://10.0.0.236/trunk@133076 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:08:22 +00:00
bzbarsky%mit.edu
036dcaa1ec fix regression in setting important property values in inline style via
DOM.  Bug 173767, r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133073 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:07:17 +00:00
curt%netscape.com
2226c4b416 Add Force Install command-line optionl
(Bug #173336, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133072 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:05:38 +00:00
bzbarsky%mit.edu
23118ef7a0 Reorder some members in nsLineLayout to make them pack better. Bug
176749, patch by dann@godzilla.ics.uci.edu (Dan), r=bzbarsky, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133071 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:03:43 +00:00
darin%netscape.com
40a201cb2b more factoring of ipcTransport
git-svn-id: svn://10.0.0.236/trunk@133070 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:01:00 +00:00
nicolson%netscape.com
04974987a2 Improve InvalidBERException.
Add feature of SEQUENCE.OF_Template whereby elements need not produce
any output. This is for dealing with very large SEQUENCEs, such as
large CRLs, where the list should be processed in some way, but not made
into an ASN1 object hierarchy.


git-svn-id: svn://10.0.0.236/trunk@133069 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:00:55 +00:00
bzbarsky%mit.edu
6f34f01f3d nsCOMArray_base copy constructor should not assert. Bug 178534,
r=dougt, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@133068 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 02:00:50 +00:00
bzbarsky%mit.edu
ed88abf015 Use the list-style-type if our list-style-image does not load. Bug
178371, r=caillon, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@133067 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:58:22 +00:00
bzbarsky%mit.edu
cb39275066 Look at $TMP and $TEMP, not just $TEMPDIR. Bug 176887, r=timeless, sr=alecf
git-svn-id: svn://10.0.0.236/trunk@133066 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:56:00 +00:00
curt%netscape.com
8eeaf5c960 Let the uninstaller know about the .autoreg file.
(Bug #169371, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133065 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:54:05 +00:00
bzbarsky%mit.edu
a027b6f54b Disabled form controls should not be in the tab order. Bug 177620,
r=akkana,timeless, sr=bryner


git-svn-id: svn://10.0.0.236/trunk@133064 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:54:04 +00:00
bzbarsky%mit.edu
d4406da2ab ctrl-middleclick should not send a referrer. Bug 175092, r=timeless, sr=jag
git-svn-id: svn://10.0.0.236/trunk@133063 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:51:02 +00:00
darin%netscape.com
811b906dfb factor out socket transport specific ipcTransport implementation.
git-svn-id: svn://10.0.0.236/trunk@133062 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:47:07 +00:00
curt%netscape.com
386a683618 Look up the existence of a file to confirm product installation.
(Bug #166666, r=jbetak, sr=dveditz)


git-svn-id: svn://10.0.0.236/trunk@133061 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:46:45 +00:00
bzbarsky%mit.edu
22537f1fd2 Notify properly when calling AppendChild on a documentfragment. Bug
175843, r=sicking, sr=peterv


git-svn-id: svn://10.0.0.236/trunk@133060 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:46:03 +00:00
kyle.yuan%sun.com
330334d705 Bug 174888 Active Accessibility: unable to get keyboard shortcut for textbox node
r=aaronl, sr=bzbarsky
inherit accesskey from textbox


git-svn-id: svn://10.0.0.236/trunk@133059 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:32:36 +00:00
naving%netscape.com
684c365224 117835 r=cavin sr=bienvenu fixing invalid folder name containing japanese characters when you restart after creating new local folders. Also cleaning up local folders code that deals with checking for duplicate
folder names, renaming/deleting local folders


git-svn-id: svn://10.0.0.236/trunk@133057 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:30:31 +00:00
kyle.yuan%sun.com
42a06500ad Bug 177451 [Active Accessibility] implement support for <toolbar>
r=aaronl, sr=jst
Bug 177453 [Active Accessibility] implement support for <hr>
r=aaronl, sr=jst
Bug 177646 [Active Accessibility] implement support for <tooltip>
r=aaronl, sr=jst


git-svn-id: svn://10.0.0.236/trunk@133056 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:29:58 +00:00
darin%netscape.com
7e466903ec initial version of windows WM_COPYDATA impl.
git-svn-id: svn://10.0.0.236/trunk@133055 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:27:04 +00:00
seawood%netscape.com
8ae058aa20 Add support for loading cfm plugins in OSX mach-o builds.
Changes backported from the CHIMERA_M1_0_1_BRANCH branch.
Bug #155256 r=peterl sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@133054 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:24:57 +00:00
chak%netscape.com
a4274ab9cb Fix for #178555 - Update Mozilla milestone in MfcEmbed on the trunk..
r=Ashish, sr=Darin Fisher


git-svn-id: svn://10.0.0.236/trunk@133053 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:16:01 +00:00
darin%netscape.com
9a910de9fc factored out unix (file descriptor based) implementation to make way for
a windows WM_COPYDATA based implementation.


git-svn-id: svn://10.0.0.236/trunk@133052 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 01:11:07 +00:00
naving%netscape.com
35ef117280 176380 r=cavin sr=bienvenu set the sent and trash folder flags on aol folders if redirector="aol"
git-svn-id: svn://10.0.0.236/trunk@133050 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:47:46 +00:00
bienvenu%netscape.com
4b4e4024cb add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133049 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:34:13 +00:00
bienvenu%netscape.com
4ae8388faf add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133048 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:27:13 +00:00
bienvenu%netscape.com
db9a89d797 fix updating of msg counts in standalone msg window, r=cavin, sr=sspitzer 20119
git-svn-id: svn://10.0.0.236/trunk@133046 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:26:06 +00:00
dmose%netscape.com
0a5b9e8208 Updated junk mail icons (part of ongoing junk mail front end work in bug 169638). r/sr=sspitzer
git-svn-id: svn://10.0.0.236/trunk@133045 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:25:06 +00:00
bienvenu%netscape.com
af89badceb fix new msg showing up with collapsed twisty in threads with unread view, r=cavin, sr=sspitzer 158217
git-svn-id: svn://10.0.0.236/trunk@133044 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:21:46 +00:00
ducarroz%netscape.com
6eceaa4adf Fix for bug 99217. Need to save the identity key when saving a draft/template. Patch submitted by Frank Schšnheit<frank.schoenheit@gmx.de>. R=ducarroz, SR=bienvenu
git-svn-id: svn://10.0.0.236/trunk@133043 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:21:15 +00:00
bienvenu%netscape.com
8672bbe6a9 add folder size to folder pane, r=cavin, sr=sspitzer, 173825 fix imap use of mem cache not to mark entries valid until finished loading, r=cavin, sr=sspitzer 114965
git-svn-id: svn://10.0.0.236/trunk@133042 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:18:25 +00:00
bryner%netscape.com
a9e7ff243d fix orange
git-svn-id: svn://10.0.0.236/trunk@133041 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:13:49 +00:00
bienvenu%netscape.com
02a7640a70 add folder size to folder pane, r=cavin, sr=sspitzer, 173825
git-svn-id: svn://10.0.0.236/trunk@133040 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:13:19 +00:00
ducarroz%netscape.com
ded810011e Fix for bug 174804.
I fix 2 problems:
a) we need to accept to resolve a CID when it's in a link (<A...>) even if the
part cannot be displayed inline

2) related Part that are not linked to the message body should appears as
attachment, the current algorithm wasn't working when multipart/related is
embedded in multipart/alternative.
R=cavin, SR=bienvenu


git-svn-id: svn://10.0.0.236/trunk@133039 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-06 00:00:45 +00:00
rogerl%netscape.com
aaef5aa057 Fixed Readme for Linux. Beginning bytecode dumper.
git-svn-id: svn://10.0.0.236/trunk@133038 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 23:53:10 +00:00
myk%mozilla.org
2cffc51e14 Fix for bug 171475: make new flags include all categories (product/component combinations) by default.
r=joel


git-svn-id: svn://10.0.0.236/trunk@133037 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 23:45:56 +00:00
rogerl%netscape.com
5a0f930416 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@133033 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 22:16:16 +00:00
bryner%netscape.com
d8705a94b5 Fixing OS/2 phoenix bustage (bug 177977). Patch from mkaply.
git-svn-id: svn://10.0.0.236/trunk@133032 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 22:00:46 +00:00
tara%tequilarista.org
c2cdb832cf Original Blue Martini implementation of cvs-mirroring functionality, not yet genericized for public consumption
git-svn-id: svn://10.0.0.236/trunk@133031 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 21:16:04 +00:00
darin%netscape.com
e6c65b642b cleanup
git-svn-id: svn://10.0.0.236/trunk@133025 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:49:24 +00:00
darin%netscape.com
cf4102aedd major unix cleanup:
1) introduce /tmp/.mozilla-ipc-$USER/ directory for socket and lock file
2) cleaned up daemon startup and shutdown sequences


git-svn-id: svn://10.0.0.236/trunk@133024 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:42:22 +00:00
darin%netscape.com
0b5a1690a7 fixing crash
git-svn-id: svn://10.0.0.236/trunk@133023 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:30:26 +00:00
despotdaemon%netscape.com
de6a8de080 Pseudo-automatic update of changes made by kysmith@netscape.com.
git-svn-id: svn://10.0.0.236/trunk@133022 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:21:23 +00:00
despotdaemon%netscape.com
aca0be6051 Pseudo-automatic update of changes made by leaf@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@133021 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 19:14:17 +00:00
mikep%oeone.com
beda801f44 Fixing slowness of trees. We now don't sort on get cell text, we only sort before adding the view, and after they click on the tree to sort.
git-svn-id: svn://10.0.0.236/trunk@133020 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 18:44:27 +00:00
kaie%netscape.com
499d158fb3 b=166655 ERROR -12227 / Extend the list of TLS intolerance error codes
r=javi sr=jag a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133012 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 14:49:52 +00:00
timeless%mozdev.org
a9f49f6514 Bug 106708 DnD Data Object format incorrect
patch by adrian.buckley@ntlworld.com r=pinkerton sr=roc+moz a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133010 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 12:51:39 +00:00
varga%netscape.com
74eee3ee1d Fix for bug 170249. tree autoscroll triggers incorrectly and crashes
r=mcsmurf, sr=peterv, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133009 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 08:17:24 +00:00
sspitzer%netscape.com
ce433df8fb fix for bug #178061. use better icon for IM button in addressbook.
thanks to gail for the icons.  r/sr=bienvenu, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133008 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:59:51 +00:00
alecf%netscape.com
12f6f515bc oops, fix warning caused by last checkin, by just reordering the initializers
git-svn-id: svn://10.0.0.236/trunk@133007 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:03:47 +00:00
alecf%netscape.com
9f1a89f2ed fix for bug 177990, r=tao, sr=sfraser, a=blizzard
fix string override enumeration, so that embeddors can override strings which are accessed via getSimpleEnumerator()


git-svn-id: svn://10.0.0.236/trunk@133006 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 07:02:07 +00:00
bzbarsky%mit.edu
ceddbaaa1a Long strings should not make the panel overflow. Bug 138680, patch by
parish@ntlworld.com, r=jag, sr=bzbarsky, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133004 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:33:51 +00:00
timeless%mozdev.org
7658d69f30 Bug 177658 Clipboard copy in Page Info is broken
patch by thieleke@yahoo.com r=db48x@yahoo.com sr=bzbarsky a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133003 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:27:48 +00:00
timeless%mozdev.org
6b4d8c8853 Bug 102905 Site navigation (links) toolbar doesn't update when tabs are switched
patch by neil@parkwaycc.co.uk r=sballard@netreach.net sr=bzbarsky a=blizzard


git-svn-id: svn://10.0.0.236/trunk@133002 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 05:26:02 +00:00
mkaply%us.ibm.com
7baf8840b6 #174022
r=peterl, a=asa
Get tester plugin building on OS/2


git-svn-id: svn://10.0.0.236/trunk@133000 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:24:26 +00:00
depstein%netscape.com
1f3cfe4213 Some additional error checking for observer service. Direct rv results to screen dialog for nsIEditingSession tests. Not part of the build.
git-svn-id: svn://10.0.0.236/trunk@132999 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:19:33 +00:00
mbarnson%sisna.com
b1fcb0abc8 Added information about versioncache back in.
See bug 140332


git-svn-id: svn://10.0.0.236/trunk@132998 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 04:07:18 +00:00
mbarnson%sisna.com
1fdcaf00d8 Added blurb about movebugs. At this point, only bmo uses it, so I'm
calling it an "undocumented feature".
See bug 127818


git-svn-id: svn://10.0.0.236/trunk@132997 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:54:27 +00:00
mbarnson%sisna.com
962ceec475 Oops, tabs.
Fixed.


git-svn-id: svn://10.0.0.236/trunk@132996 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:48:59 +00:00
bzbarsky%mit.edu
47c119bdef CheckLoadURI should use document uri, not base uri. Bug 177237,
r=mstoltz, sr=jst, a=blizzard


git-svn-id: svn://10.0.0.236/trunk@132995 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:45:28 +00:00
mbarnson%sisna.com
eada2fc965 Modified text for cookiepath line for clarity.
See bug 162359


git-svn-id: svn://10.0.0.236/trunk@132994 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:37:22 +00:00
mbarnson%sisna.com
96e7f94d14 Included note regarding the origin of "bonsaitools", per
bug 174922.


git-svn-id: svn://10.0.0.236/trunk@132993 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:24:52 +00:00
mbarnson%sisna.com
509c18826d Added section for Bugzilla and mod_perl (future expansion).
Right now, it just says "Bugzilla doesn't work under mod_perl".
See bug 149883


git-svn-id: svn://10.0.0.236/trunk@132992 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:19:40 +00:00
blizzard%redhat.com
87cedcda8b Bug #172576. Broken links in help. Checking in for stevechapel@earthlink.net. r=oeschger@netscape.com a=tor
git-svn-id: svn://10.0.0.236/trunk@132991 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:12:58 +00:00
mbarnson%sisna.com
56b4287d55 Removed binmode references on Win32 documentation.
See bug 155743.


git-svn-id: svn://10.0.0.236/trunk@132990 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:11:25 +00:00
mbarnson%sisna.com
746c96cc02 A rather controversial new entry to the FAQ. See bug 107917. I
decided one way for the Guide, based upon the code I see currently
checked in.  If I'm wrong, feel free to correct it!


git-svn-id: svn://10.0.0.236/trunk@132989 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 03:09:15 +00:00
mbarnson%sisna.com
c05bb2bd12 Fix for Apache configuration directives from bug 174255 and
de-stupidifying of emacs destruction of <programlisting> tags.


git-svn-id: svn://10.0.0.236/trunk@132988 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:52:09 +00:00
mbarnson%sisna.com
9d42f4a8c3 Since I nuked this section out of the SGML, we won't be needing
the HTML generated file anymore.


git-svn-id: svn://10.0.0.236/trunk@132986 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:45:55 +00:00
mbarnson%sisna.com
7976ccbf05 Removed links to dbschema.jpg image. See bug 173484, it was really outdated
and redundant anyway.


git-svn-id: svn://10.0.0.236/trunk@132985 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:44:57 +00:00
mbarnson%sisna.com
3ba2b27a26 Removing these images, since they are too outdated to be useful, and
they are basically redundant anyway.  See bug 173484


git-svn-id: svn://10.0.0.236/trunk@132984 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:44:26 +00:00
mbarnson%sisna.com
14034a426f Added notes on using OpenLDAP;
We should probably look at code changes to make Net::LDAP our permanent
LDAP plugin rather than Mozilla::LDAP...
See bug 167379.


git-svn-id: svn://10.0.0.236/trunk@132983 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:39:52 +00:00
mbarnson%sisna.com
a5f5beb963 Added chunk about setting up DirectoryIndex to use index.cgi as the
Bugzilla index page.


git-svn-id: svn://10.0.0.236/trunk@132982 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:15:02 +00:00
dveditz%netscape.com
efb761db7c Useful documentation of the PKZIP archive format that we've relied on. Should have checked this in years ago.
git-svn-id: svn://10.0.0.236/trunk@132981 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:14:10 +00:00
mbarnson%sisna.com
3901fa6103 Added dependency on File::Template. Not really fond of
doing requirements-of-requirements type stuff, but did it
anyway for clarity.


git-svn-id: svn://10.0.0.236/trunk@132980 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 02:07:32 +00:00
mbarnson%sisna.com
3dd15bc2be Patched lines per bug 177993.
Customization of "mid-air collision" template file.


git-svn-id: svn://10.0.0.236/trunk@132979 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:59:20 +00:00
myk%mozilla.org
1e4cfb771d Fix for bug 156548: XUL implementation of duplicates report.
git-svn-id: svn://10.0.0.236/trunk@132978 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:54:15 +00:00
nelsonb%netscape.com
d60753042b Workaround a c preprocessor bug on a certain 64-bit platform. Bug 178314.
git-svn-id: svn://10.0.0.236/trunk@132977 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:52:49 +00:00
ashishbhatt%netscape.com
255ee22c8d Adding menu for run all test cases
git-svn-id: svn://10.0.0.236/trunk@132976 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:29:46 +00:00
ashishbhatt%netscape.com
00674c5ad6 Adding functionality for running test cases in automation
git-svn-id: svn://10.0.0.236/trunk@132975 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 01:29:02 +00:00
despotdaemon%netscape.com
c928146d87 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132974 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:51:12 +00:00
despotdaemon%netscape.com
54c47d9399 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132973 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:49:39 +00:00
blakeross%telocity.com
015b43ef21 Fix some bugs, hook up cross-session sidebar persistence.
git-svn-id: svn://10.0.0.236/trunk@132969 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:29:14 +00:00
nelsonb%netscape.com
827c334f1c Fix missing strings that cause crash in SSL_SecurityStatus(). Bug 178342.
git-svn-id: svn://10.0.0.236/trunk@132968 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:25:20 +00:00
seawood%netscape.com
10b1f042f1 Treat cygwin perl as a win32 platform indicator.
Default to unix if platform is neither win32 nor mac.
Bug #166105 r=gerv a=asa


git-svn-id: svn://10.0.0.236/trunk@132967 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:21:38 +00:00
seawood%netscape.com
4095bb8201 Fixing vc7 bustage caused by original checkin for bug 176302.
Bug #176302 r=bryner


git-svn-id: svn://10.0.0.236/trunk@132966 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-05 00:16:23 +00:00
blakeross%telocity.com
13f7eb78bd More trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132961 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:53:49 +00:00
blakeross%telocity.com
1317f58ec7 Bring over more trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132960 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:50:50 +00:00
blakeross%telocity.com
c70067cdfa Port fixes over from trunk.
git-svn-id: svn://10.0.0.236/trunk@132959 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:46:43 +00:00
blakeross%telocity.com
ac36e4a63f Change search bar focusing shortkey to Ctrl+K.
git-svn-id: svn://10.0.0.236/trunk@132958 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:38:25 +00:00
blakeross%telocity.com
cc2e379eda Port over more trunk fixes.
git-svn-id: svn://10.0.0.236/trunk@132957 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:36:46 +00:00
blakeross%telocity.com
27bdcca7e3 Port fixes from the trunk.
git-svn-id: svn://10.0.0.236/trunk@132956 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:32:03 +00:00
blakeross%telocity.com
900a7034fd Port over fixes from the trunk.
git-svn-id: svn://10.0.0.236/trunk@132955 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:29:34 +00:00
blakeross%telocity.com
fa99ab7eb3 Port over some fixes from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132954 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:24:29 +00:00
blakeross%telocity.com
d11c3f74d7 Port over a fix from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132953 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:21:20 +00:00
blakeross%telocity.com
6d1945d4a9 Fix accesskey conflict.
git-svn-id: svn://10.0.0.236/trunk@132952 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:16:51 +00:00
blakeross%telocity.com
fccd58c512 SupportsWString -> SupportsString
git-svn-id: svn://10.0.0.236/trunk@132950 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:12:08 +00:00
rogerl%netscape.com
2d72e5fdd5 Fixed gc-ing in frames.
git-svn-id: svn://10.0.0.236/trunk@132948 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 23:03:58 +00:00
gerv%gerv.net
00b7c7843e Bug 173571 - Turn "all selected" into "none selected" for efficiency. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132945 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 22:43:28 +00:00
darin%netscape.com
9b8ee9f869 make ipcTransport::Init output app-name.
git-svn-id: svn://10.0.0.236/trunk@132944 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 22:29:17 +00:00
bugreport%peshkin.net
69c64a53bd Bug 177436 User matching shouldn't be case-sensitive
patch by not_erik
2xr=justdave
a=justdave for 2.17.1


git-svn-id: svn://10.0.0.236/trunk@132942 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:55:10 +00:00
blizzard%redhat.com
4a7d574838 Bug #178067. gtk2 FE requires xft enabled to compile. Patch from cbiesinger@web.de. r=blizzard, sr=bzbarsky, a=jesup
git-svn-id: svn://10.0.0.236/trunk@132940 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:51:09 +00:00
blizzard%redhat.com
3c52aa93f6 Bug #178045. floating point error when using gtk2 on startup. Make sure to check if the gtk dpi is greater than zero. r=owen sr=scc a=jesup
git-svn-id: svn://10.0.0.236/trunk@132939 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 21:32:36 +00:00
relyea%netscape.com
db6a20b385 !@#!$@! signtool thinks it knows how to verify if the certdb's are there and
OK or not. Of course it doesn't.

bob


git-svn-id: svn://10.0.0.236/trunk@132938 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 20:37:08 +00:00
darin%netscape.com
7fb645426a give modules the ability to iterate over the registered names and targets
for a particular client.


git-svn-id: svn://10.0.0.236/trunk@132937 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 20:30:54 +00:00
darin%netscape.com
131f215319 implemented ADD_TARGET/DEL_TARGET messages.
added ipcIDList


git-svn-id: svn://10.0.0.236/trunk@132936 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:46:34 +00:00
anthonyd%netscape.com
efab84e88a *** NOT PART OF THE BUILD !!!***
Fix for 176229
Sample plugins are not properly destroyed in NS_DestroyPluginInstance


git-svn-id: svn://10.0.0.236/trunk@132935 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:39:59 +00:00
relyea%netscape.com
d4e4d8b22a db8 code part 1:
1) Create new dbs with 32 k buffers.
   2) New dbs never store a single entry greater than 30 k (those are stored
using the blob code).
   3) NSS can run with either new or old dbs read only.
   4) If possible a new db is upgraded from and old db.


git-svn-id: svn://10.0.0.236/trunk@132934 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 19:31:59 +00:00
despotdaemon%netscape.com
c8f3e82cf5 Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132933 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 18:04:41 +00:00
despotdaemon%netscape.com
531552b93d Pseudo-automatic update of changes made by knous@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132930 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 17:23:59 +00:00
mikep%oeone.com
5ddb4d02a5 Fixing function name in "CUT", to make cutting events work again, bug 162866
git-svn-id: svn://10.0.0.236/trunk@132929 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 14:33:27 +00:00
darin%netscape.com
773ce670f1 implement ADD_NAME and DEL_NAME messages.
implement part of ADD_TARGET and DEL_TARGET messages.


git-svn-id: svn://10.0.0.236/trunk@132926 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 06:35:32 +00:00
rogerl%netscape.com
a366002374 Moved '#pragma warning' disable list to single file.
git-svn-id: svn://10.0.0.236/trunk@132925 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 04:54:23 +00:00
rogerl%netscape.com
55e47e37a1 Moved strings to bytecodecontainer instead of pointers. Fixed construction
of non-functions.


git-svn-id: svn://10.0.0.236/trunk@132924 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 04:53:17 +00:00
kiko%async.com.br
615c041c85 Fix for bug 62729, "Add real name capability to bug_list.cgi". Patch by
Toms Baugis, r=kiko, 2xr=joel.


git-svn-id: svn://10.0.0.236/trunk@132923 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-04 00:57:56 +00:00
mkaply%us.ibm.com
2ff0da9f87 When 104371 was backed out, the OS/2 change wasn't
git-svn-id: svn://10.0.0.236/trunk@132922 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 22:37:31 +00:00
blakeross%telocity.com
06479fcf88 Also tack on http:// for key modifiers.
git-svn-id: svn://10.0.0.236/trunk@132921 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 15:23:42 +00:00
blakeross%telocity.com
14ba7c7fce Restore Ctrl+0 for resetting text size.
git-svn-id: svn://10.0.0.236/trunk@132920 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 14:51:29 +00:00
darin%netscape.com
108238b121 forwarding messages now works
git-svn-id: svn://10.0.0.236/trunk@132919 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:54:46 +00:00
igor%mir2.org
ea39f0bd0b I made FunctionNode to inherit from Node instead of Node.StringNode as FunctionNode is never used as a string source.
git-svn-id: svn://10.0.0.236/trunk@132918 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:26:29 +00:00
sspitzer%netscape.com
7ea0a5772a fix for crasher bug #176056. crash when setting up default smtp servers. r/sr=bienvenu, a=asa.
git-svn-id: svn://10.0.0.236/trunk@132917 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-03 01:09:31 +00:00
gerv%gerv.net
aad1f35122 Bug 178019 - reports.cgi should use the shadowdb. Patch by gerv; r=bbaetz.
git-svn-id: svn://10.0.0.236/trunk@132916 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:59:10 +00:00
blakeross%telocity.com
d88b3de258 back out arrow color change.
git-svn-id: svn://10.0.0.236/trunk@132915 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:27:08 +00:00
blakeross%telocity.com
41a898f138 Fix pref name.
git-svn-id: svn://10.0.0.236/trunk@132914 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:09:49 +00:00
igor%mir2.org
6d57a6e4be I removed method duplication in Node where getNext() was duplicated as getNextSibling() and code was using both of them and similarly for getFirstChild()/getFirst().
git-svn-id: svn://10.0.0.236/trunk@132913 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 22:08:00 +00:00
blakeross%telocity.com
e1a38da944 Fix some buglets; remove more comm dependencies.
git-svn-id: svn://10.0.0.236/trunk@132912 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 21:14:22 +00:00
darin%netscape.com
34effd1235 implement QueryClientByName
git-svn-id: svn://10.0.0.236/trunk@132911 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 18:57:15 +00:00
igor%mir2.org
10e43018b5 Allow for TokenStream.COMMA node in the parsed tree to contain more then 2 children to avoid too-deep recursion during code generation for long array and object initialization lists.
git-svn-id: svn://10.0.0.236/trunk@132910 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 18:01:26 +00:00
ian%hixie.ch
124d766c7e Adding more debug code to make my life easier.
git-svn-id: svn://10.0.0.236/trunk@132909 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 17:56:51 +00:00
igor%mir2.org
cf34b6d673 Cosmetics: use uniform indentation in switch statements
git-svn-id: svn://10.0.0.236/trunk@132908 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 14:54:35 +00:00
igor%mir2.org
cc5b13cdcc Avoid potentially expensive calls to Node.addChildBefore which may need to traverse a long child list to find the previous child when a reference to the previous child is available from context.
git-svn-id: svn://10.0.0.236/trunk@132907 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:52:11 +00:00
igor%mir2.org
b81b0ee917 Clear reference to sourceBuffer array as soon as it is no longer needed to allow its earlier GC.
git-svn-id: svn://10.0.0.236/trunk@132906 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:46:28 +00:00
locka%iol.ie
34093ecbed Fix about:plugins support in embedding. b=176191 r=chak@netscape.com sr=rpotts@netscape.com a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132905 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:29:38 +00:00
locka%iol.ie
9e986539e5 Add WS_CLIPCHILDREN to fix a painting problem. b=177637 r=jeff@tcbmi.com sr=blizzard@mozilla.org a=asa@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@132904 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:27:52 +00:00
blakeross%telocity.com
80ed34137f add missing files.
git-svn-id: svn://10.0.0.236/trunk@132903 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 12:13:58 +00:00
samuel%sieb.net
b89daf19db Bug 113227 - make /list not cause chatzilla to time out or freeze mozilla
(also bump version)
chatzilla only
r=rginda
a=asa


git-svn-id: svn://10.0.0.236/trunk@132900 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 06:16:14 +00:00
samuel%sieb.net
f50fc71286 Bug 166187 - fix /hide regression caused by conversion to deck
chatzilla only
r=rginda
a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132899 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 06:10:17 +00:00
darin%netscape.com
a6cb024de2 next round of revisions
1) added ipcQueue<>
2) added ipcLog
3) closer to having a working QueryClientByName
4) build fix


git-svn-id: svn://10.0.0.236/trunk@132898 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:45:24 +00:00
mcs%netscape.com
5d58acb600 Fix bug # 175727 - strict aliasing bugs in LDAP C SDK.
Avoid casts like (void**)&pRes; use temporary local variables
	instead.


git-svn-id: svn://10.0.0.236/trunk@132897 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:29:37 +00:00
blakeross%telocity.com
92fa889b01 Add default prompt pref.
git-svn-id: svn://10.0.0.236/trunk@132896 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:23:17 +00:00
despotdaemon%netscape.com
28dd40f5d3 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132895 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:23:14 +00:00
despotdaemon%netscape.com
67ad8f791c Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132894 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:21:39 +00:00
despotdaemon%netscape.com
03d1555923 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132893 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:21:09 +00:00
despotdaemon%netscape.com
07a934fce1 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132892 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:19:38 +00:00
despotdaemon%netscape.com
239a179cf9 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132891 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:17:12 +00:00
despotdaemon%netscape.com
5181ed8bf7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132890 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:13:33 +00:00
despotdaemon%netscape.com
9166d6317f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132889 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:12:53 +00:00
arougthopher%lizardland.net
fa2cdaed7d Bug#92793
BeOS classes are not threadsafe

In BeOS, each window runs in its own thread.  Because of this,
we have a proxy layer between the mozilla UI thread, and calls made
within the window's thread via CallMethod().  However, since the windows
are still running in their own thread, and reference counting takes place within
that thread, we need to reference and de-reference outselves atomically.

r=rpotts
sr=blizzard
a=asa


git-svn-id: svn://10.0.0.236/trunk@132888 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 02:12:00 +00:00
despotdaemon%netscape.com
02d10f6da2 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132887 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:54:54 +00:00
despotdaemon%netscape.com
1eb25ec6db Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132886 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:53:43 +00:00
nelsonb%netscape.com
bbd94d3c96 Add some processor and compiler dependent optimizations to SHA1.
git-svn-id: svn://10.0.0.236/trunk@132885 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:53:01 +00:00
nelsonb%netscape.com
66baae99bd Add SHA256 SHA512 and SHA384 hashes to freebl.
git-svn-id: svn://10.0.0.236/trunk@132884 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:51:44 +00:00
despotdaemon%netscape.com
2e34f2aa86 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132883 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:49:08 +00:00
despotdaemon%netscape.com
0795aaf6da Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132882 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:48:15 +00:00
despotdaemon%netscape.com
a960aeae64 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132881 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:43:53 +00:00
despotdaemon%netscape.com
83584b45e7 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132880 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:39:24 +00:00
despotdaemon%netscape.com
5280f6681c Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132879 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:34:33 +00:00
despotdaemon%netscape.com
79678f92e5 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132878 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:33:51 +00:00
despotdaemon%netscape.com
ec163641f0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132877 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:32:19 +00:00
despotdaemon%netscape.com
73c0e76290 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132876 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:31:04 +00:00
despotdaemon%netscape.com
f8add7b8f6 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132875 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:29:11 +00:00
despotdaemon%netscape.com
9fe0a5a604 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132874 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:27:52 +00:00
despotdaemon%netscape.com
51c63b89d1 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132873 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:26:20 +00:00
pschwartau%netscape.com
1ab9c767b9 New version of the test, by igor@icesoft.no; uses less memory.
git-svn-id: svn://10.0.0.236/trunk@132872 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:26:08 +00:00
despotdaemon%netscape.com
2cff0ee835 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132871 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:25:47 +00:00
despotdaemon%netscape.com
ed7b8b3df0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132870 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:24:46 +00:00
despotdaemon%netscape.com
bf1d9246f5 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132869 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:24:04 +00:00
despotdaemon%netscape.com
313ab78e5a Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132868 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:20:59 +00:00
blakeross%telocity.com
2b732283c3 Remove dl-start obs on shutdown.
git-svn-id: svn://10.0.0.236/trunk@132867 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:17:36 +00:00
despotdaemon%netscape.com
029ab565ef Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132866 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:15:08 +00:00
despotdaemon%netscape.com
cda87186c0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132865 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:14:34 +00:00
despotdaemon%netscape.com
91daec9e5f Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132864 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:14:04 +00:00
despotdaemon%netscape.com
c2374bff47 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132863 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:13:27 +00:00
despotdaemon%netscape.com
c88974a0c0 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132862 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:10:34 +00:00
despotdaemon%netscape.com
6bff483ad6 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132861 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:08:23 +00:00
sspitzer%netscape.com
c728dcb6d3 landing mscott's mail views work from the ns tree. see #176850
NOT PART OF THE BUILD YET.


git-svn-id: svn://10.0.0.236/trunk@132860 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:53 +00:00
despotdaemon%netscape.com
eac5e63d31 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132859 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:33 +00:00
despotdaemon%netscape.com
09aa224473 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132858 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 01:07:02 +00:00
blakeross%telocity.com
4c3a4fe822 Port over a regression fix from Mozilla.
git-svn-id: svn://10.0.0.236/trunk@132856 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:36:06 +00:00
blakeross%telocity.com
068952981b Some bulletproofing.
git-svn-id: svn://10.0.0.236/trunk@132855 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:32:53 +00:00
blakeross%telocity.com
0eb1b588aa - Fixing a bug that caused the menubar to remain disabled after customizing the toolbars.
- First cut at pref for a default download directory, and options to open the download sidebar when starting a download and whether to prompt for a filename.  Under construction!


git-svn-id: svn://10.0.0.236/trunk@132854 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:28:30 +00:00
jpierre%netscape.com
43710b3f3b Fix for bug 177798 - NULL pointers in ShutdownCRLCache to allow shutdown/restart
of NSS.


git-svn-id: svn://10.0.0.236/trunk@132852 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-02 00:07:48 +00:00
bzbarsky%mit.edu
cbd9c2d9ba Fix some js errors. Bug 163884, patch by wesha@mail.ru (Wesha), r=jag,
sr=bzbarsky, a=asa


git-svn-id: svn://10.0.0.236/trunk@132849 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:55:53 +00:00
aaronl%netscape.com
22501b45fa Bug 175321. Proper fix for typeaheadfind crashes using findnext. r=caillon, sr=brendan, a=asa.
git-svn-id: svn://10.0.0.236/trunk@132848 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:29:14 +00:00
aaronl%netscape.com
e72c199b3e Bug 171260. Typeaheadfind in page with frames wrecks normal find. r=akkana, sr=sfraser. a=asa
git-svn-id: svn://10.0.0.236/trunk@132847 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:24:33 +00:00
despotdaemon%netscape.com
0e6a1a486b Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132846 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:16:18 +00:00
despotdaemon%netscape.com
dae3194ef9 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132845 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:11:35 +00:00
despotdaemon%netscape.com
78d128d111 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132844 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 23:00:24 +00:00
despotdaemon%netscape.com
61e66e6e90 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132843 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:56:00 +00:00
despotdaemon%netscape.com
feded2b6cd Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132842 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:31:59 +00:00
cmanske%netscape.com
4710078ce9 Fixed busted 'deleteTable' feature - silly spelling error, b=174558, r=brade, sr=kin, a=asa/drivers
git-svn-id: svn://10.0.0.236/trunk@132841 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:20:37 +00:00
blizzard%redhat.com
e1d71da814 Bug #176842. gtk2 UI fonts are wonky. Use the proper default font for gtk2. Make sure to use the gtk2 dpi and xft dpi when they are available and fall back to the physical dpi if they aren't set for xft and gtk2 builds only. r=bryner,sr=shaver,a=asa
git-svn-id: svn://10.0.0.236/trunk@132840 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 22:06:30 +00:00
cbiesinger%web.de
641a02d414 bug 177661 patch by paper@animecity.nu r=biesi sr=tor a=roc+moz
2 frame GIFs do not animate


git-svn-id: svn://10.0.0.236/trunk@132839 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:46:35 +00:00
rdayal%netscape.com
68af570021 Bug #177382 Changes to comply with configure.in changes for WIN32_LEAN_AND_MEAN
r=leaf, sr=bienvenu, a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132838 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:35:08 +00:00
nelsonb%netscape.com
4eb322a2ce Fix several problems related to error messages, including an attempt to
print a null string pointer.


git-svn-id: svn://10.0.0.236/trunk@132837 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:04:33 +00:00
despotdaemon%netscape.com
9d77529f34 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132836 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:03:29 +00:00
nelsonb%netscape.com
6a4a0128ec Reformat text. Fix syntax error in first examples.
git-svn-id: svn://10.0.0.236/trunk@132835 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 21:03:24 +00:00
despotdaemon%netscape.com
08baf82472 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132834 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:57:45 +00:00
despotdaemon%netscape.com
62b6f1ae96 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132833 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:55:45 +00:00
rogerl%netscape.com
b79c80a6dd Whole slew of Linux build warning fixes. Fixed over-pop from default
constructor.


git-svn-id: svn://10.0.0.236/trunk@132832 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:55:10 +00:00
despotdaemon%netscape.com
e0dbf35e61 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132831 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:54:44 +00:00
despotdaemon%netscape.com
9a6ef6ac2b Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132830 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:51:53 +00:00
seawood%netscape.com
547c4b6421 Install mozilla-config.h during 'make install'.
Bug #177504 r=pavlov a=asa


git-svn-id: svn://10.0.0.236/trunk@132829 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:47:34 +00:00
mikep%oeone.com
90a3c35555 Fixing the ability to import events, when using the wizard.
git-svn-id: svn://10.0.0.236/trunk@132828 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:46:46 +00:00
despotdaemon%netscape.com
4d29544046 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132826 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:35:53 +00:00
despotdaemon%netscape.com
bd9669e729 Pseudo-automatic update of changes made by endico@mozilla.org.
git-svn-id: svn://10.0.0.236/trunk@132825 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 20:10:00 +00:00
mcs%netscape.com
17b2cd625b Fix bug # 169975 - LDAP memory cache accesses response
list w/o locking mutex.


git-svn-id: svn://10.0.0.236/trunk@132824 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 19:57:09 +00:00
mikep%oeone.com
cd73dcd4a6 Removing dependency on xmlextras.
git-svn-id: svn://10.0.0.236/trunk@132822 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 17:59:57 +00:00
justdave%syndicomm.com
a8db7cd397 Fix for bug 176509: "(this bug is not in your list)" no longer appears in the navigation bar when you aren't viewing a bug.
Patch by Jody McIntyre <jodym@oeone.com>
r=justdave


git-svn-id: svn://10.0.0.236/trunk@132821 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 16:40:33 +00:00
ccarlen%netscape.com
80957cfc91 Bug 173311 - RealPlayer One 9.0b2 plugin causes crash at startup for Mach-0 build because of symlink (alias) handling problems. r=bnesse/sr=sfraser/a=dbaron
git-svn-id: svn://10.0.0.236/trunk@132820 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:45:38 +00:00
mcs%netscape.com
21a4001728 Fix bug # 166189 - Segmentation fault on invalid filter string.
Check that a sequence of set has been created before using
	it inside ber_put_seqorset().


git-svn-id: svn://10.0.0.236/trunk@132819 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:23:29 +00:00
bugreport%peshkin.net
b7c02ddc43 Bug 127200 Query for CC/longdesc/OR takes long time
r=gerv


git-svn-id: svn://10.0.0.236/trunk@132818 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 15:22:01 +00:00
igor%mir2.org
ab50c0aa1c Fixing 159334: store bytecode indexes as uint16 to extend limit on maximum number of different strings to 64K
git-svn-id: svn://10.0.0.236/trunk@132817 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 14:43:34 +00:00
darin%netscape.com
40b33e4bfa 1) updated IPCM protocol
2) added ipcMessage primitives to simplify IPCM protocol implementation
3) added ipcMessageCast to simplify casting raw messages to specific types
4) added function table in ipcCommandModule


git-svn-id: svn://10.0.0.236/trunk@132815 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 09:08:25 +00:00
dveditz%netscape.com
58daabcffe Don't fire popup blocked event if we decide to open the content in an existing named window (bug 174765 refinement)
r=danm, sr=jag, a=roc


git-svn-id: svn://10.0.0.236/trunk@132813 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 05:20:07 +00:00
chanial%noos.fr
3d95832efc remove read/change/write cookies items in the Script & Windows preference panel
git-svn-id: svn://10.0.0.236/trunk@132812 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 04:38:21 +00:00
chanial%noos.fr
3224abe735 bug 177837: remove help menu in bookmark manager and view source window
git-svn-id: svn://10.0.0.236/trunk@132811 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 04:28:57 +00:00
chanial%noos.fr
11b6b8e87b clicking again on a bookmark in the sidebar does not reload it.
git-svn-id: svn://10.0.0.236/trunk@132810 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:47:10 +00:00
timeless%mozdev.org
11d2657adf Bug 176733 Saving of images from "Page Info" does not work
patch by grigorig@web.de r=db48x sr=bz a=asa


git-svn-id: svn://10.0.0.236/trunk@132808 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:12:10 +00:00
pschwartau%netscape.com
c053b91ca6 Initial add. Regression test for bug 159334.
git-svn-id: svn://10.0.0.236/trunk@132807 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 02:00:08 +00:00
darin%netscape.com
c7531e775e fixes bug 177326 "Mozilla rapidly repeats requests multiple times"
r=dougt sr=rpotts a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132806 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 01:11:32 +00:00
blythe%netscape.com
4e49ee6eb7 Not part of any build.
Work in progress on heap fragmentation report tool.


git-svn-id: svn://10.0.0.236/trunk@132805 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-01 00:34:13 +00:00
gerv%gerv.net
7e7244d7d9 Bug 177430 - buglist.cgi needs a CSV output format. Patch by gerv; r=justdave.
git-svn-id: svn://10.0.0.236/trunk@132803 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 23:06:54 +00:00
bugreport%peshkin.net
15e2597f1b Bug 177435 exact match on assignee fails with user matching
patch by not_erik
r=myk,joel


git-svn-id: svn://10.0.0.236/trunk@132800 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:34:42 +00:00
rogerl%netscape.com
1a44acb461 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132799 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:32:08 +00:00
bugreport%peshkin.net
716a660540 Bug 177624 Wildcard rejects --do_not_change-- in mass-change
Patch by not_erik
r=joel


git-svn-id: svn://10.0.0.236/trunk@132798 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:20:26 +00:00
jpierre%netscape.com
50b85efb10 Remove call to PL_ArenaFinish . This effectively shut down NSPR arenas and created problems when restarting NSS . r=relyea
git-svn-id: svn://10.0.0.236/trunk@132797 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 22:02:10 +00:00
rogerl%netscape.com
7a9dfbb50f Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132796 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:39:47 +00:00
rogerl%netscape.com
c83f345422 Linux build fixes.
git-svn-id: svn://10.0.0.236/trunk@132795 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:25:35 +00:00
leaf%mozilla.org
fca2ef2c1e Automated update
git-svn-id: svn://10.0.0.236/trunk@132794 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:24:53 +00:00
pschwartau%netscape.com
3653104675 Improving comments.
git-svn-id: svn://10.0.0.236/trunk@132793 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:24:25 +00:00
rogerl%netscape.com
ae8854330d Fixing Linux build.
git-svn-id: svn://10.0.0.236/trunk@132792 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:12:59 +00:00
rogerl%netscape.com
f958ea2305 Fixing Linux build.
git-svn-id: svn://10.0.0.236/trunk@132791 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 21:08:13 +00:00
mikep%oeone.com
5bfe5d3e64 Fixing some small bugs with event selection thanks to the latest fixes.
git-svn-id: svn://10.0.0.236/trunk@132790 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 20:14:12 +00:00
mikep%oeone.com
5e9dccdf1d Fixing search bug so that when you change filter, the search doesn't flash any longer.
git-svn-id: svn://10.0.0.236/trunk@132786 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:12:52 +00:00
blakeross%telocity.com
efeddf44a9 Remove delay in moving finished download to finished download area.
git-svn-id: svn://10.0.0.236/trunk@132785 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:12:39 +00:00
rogerl%netscape.com
00e4cf8333 Removing DikDik files.
git-svn-id: svn://10.0.0.236/trunk@132784 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:06:24 +00:00
blakeross%telocity.com
0d9f1084ac Themes -> Themes and Extensions.
git-svn-id: svn://10.0.0.236/trunk@132783 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 19:05:58 +00:00
mikep%oeone.com
4d8b211fe3 Code cleanup, fixing bug when user has a search, changing event filter uses the event table with the search results, not all the events.
git-svn-id: svn://10.0.0.236/trunk@132782 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 18:18:31 +00:00
darin%netscape.com
220a0dfe35 eliminate ipcIService::forwardMessage
git-svn-id: svn://10.0.0.236/trunk@132779 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 17:55:19 +00:00
mikep%oeone.com
2339486901 Fixing publishing to FTP URL, bug 177589
git-svn-id: svn://10.0.0.236/trunk@132776 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:41:13 +00:00
caillon%returnzero.com
d5a98a44f6 Bug 177179
slightly optimize inDOMView::GetNodeTypeKey
r=timeless/jkeiser sr=bzbarsky a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@132775 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:25:52 +00:00
ccarlen%netscape.com
301a1d42d9 Bug 143086 - Unicode input handler eats Cmd keys. r=brade/sr=sfraser/a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132774 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 15:09:17 +00:00
mikep%oeone.com
40a2649814 Fixing copy function.
git-svn-id: svn://10.0.0.236/trunk@132772 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:52:32 +00:00
bugreport%peshkin.net
6fcd6b129c Bug 95430 Reopening en masse fails.
Patch by jeff.hedlund
r=justdave, joel


git-svn-id: svn://10.0.0.236/trunk@132771 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:45:19 +00:00
mikep%oeone.com
44986cf788 Fixing problems with upgrading old calendar data.
git-svn-id: svn://10.0.0.236/trunk@132770 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 14:26:05 +00:00
darin%netscape.com
ad8a995e9f make modules work again under linux
git-svn-id: svn://10.0.0.236/trunk@132769 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 09:21:42 +00:00
darin%netscape.com
977714663d fix compilation problems under linux
git-svn-id: svn://10.0.0.236/trunk@132768 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 08:57:31 +00:00
darin%netscape.com
0236fb0bbe adding IPC framework -- NOT PART OF THE BUILD
git-svn-id: svn://10.0.0.236/trunk@132767 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 08:19:27 +00:00
dveditz%netscape.com
bc174c9e1c bug 157646 corrupt zip archive filesize can lead to heap overrun r=mstoltz, sr=daring, a=roc (plus tab removals)
git-svn-id: svn://10.0.0.236/trunk@132765 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 06:27:20 +00:00
dveditz%netscape.com
691db65f10 bug 164695 prevent heap overrun if jar manifest file has size -1 (corrupt/malicious archive). Also fixes unrelated potential memory leak. r=mstoltz, sr=darin, a=roc
git-svn-id: svn://10.0.0.236/trunk@132764 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 06:23:52 +00:00
justdave%syndicomm.com
adb1d2261d Fix for bug 177099: stored queries ordering and editing were broken after moving to CGI.pm. They work again now.
r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@132762 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 05:30:49 +00:00
wtc%netscape.com
a06389d13d Bug 176543: handle the case of invoking a program wit no arguments. The
command line should be an empty string in that case.  Initialize newEnvp.
The patch is contributed by Michael Kaply <mkaply@us.ibm.com>.


git-svn-id: svn://10.0.0.236/trunk@132760 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 05:00:01 +00:00
morse%netscape.com
87e52d629f bug 174104, secure cookies not recognized as secure, r=mstoltz, sr=dveditz, a=chofmann
git-svn-id: svn://10.0.0.236/trunk@132755 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 03:07:29 +00:00
heikki%netscape.com
f1a1bb1003 Bug 152701, XMLExtras properties should not be available in mailnews. r=harishd, sr=dveditz, aroc+moz.
git-svn-id: svn://10.0.0.236/trunk@132754 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:59:12 +00:00
bugreport%peshkin.net
ad78b41096 Bug 175838 Reopening a bug does not clear resolution, nor does selecting 'clear resolution'
patch by jeff.hedlund@matrixsi.com
2xr=gerv


git-svn-id: svn://10.0.0.236/trunk@132753 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:44:05 +00:00
aaronl%netscape.com
a39d16fcfc Bug 175242. Typeaheadfind shouldn't be active in print preview. r=kyle, sr=alecf, a=roc+moz
git-svn-id: svn://10.0.0.236/trunk@132752 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:38:40 +00:00
aaronl%netscape.com
3d3df84eaf Bug 177083. Mozilla won't start on win95. r=kyle, sr=alecf, a=asa
git-svn-id: svn://10.0.0.236/trunk@132749 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 02:15:11 +00:00
jpierre%netscape.com
10b1e97dd0 Fix for 177208 - unmark arena when DER decoding is successful
git-svn-id: svn://10.0.0.236/trunk@132748 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:54:13 +00:00
chanial%noos.fr
d24a94210b fix various DND/copy bookmark/folder issues
git-svn-id: svn://10.0.0.236/trunk@132747 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:30:43 +00:00
igor%mir2.org
5c6f1453af Fixing regression introduced by 1.93: during generation of code for NEW and CALL do not assume that function name index would be the index of the last string in the string table as due to name sharing it can be any index. Instead NEW and CALL generator uses lastStringIndex which is updated in addString and holds the last used string index.
git-svn-id: svn://10.0.0.236/trunk@132746 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:19:53 +00:00
pschwartau%netscape.com
4f11157aa4 Don't ever run shell.js files as tests; they are only utility files.
git-svn-id: svn://10.0.0.236/trunk@132745 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-31 01:01:20 +00:00
jpierre%netscape.com
f40d5c295c Fix for bug 175115 . Remove incorrect check for CA cert expiration. Also fix CRL signature verification and clean up internal functions . r=mcgreer,relyea,nelsonb,wtc
git-svn-id: svn://10.0.0.236/trunk@132742 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 23:31:38 +00:00
mikep%oeone.com
e4f69e946d New build, adding in ability to import outlook data (via csv files)
git-svn-id: svn://10.0.0.236/trunk@132741 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 21:50:00 +00:00
mikep%oeone.com
cbfa934ee9 Fixing function name for pressing delete key.
git-svn-id: svn://10.0.0.236/trunk@132740 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 21:45:50 +00:00
pschwartau%netscape.com
b831a9b871 Initial add. Regression test for bug 177314.
git-svn-id: svn://10.0.0.236/trunk@132739 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 20:34:13 +00:00
rogerl%netscape.com
7f7c6b4ffe Fixed finally invocation.
git-svn-id: svn://10.0.0.236/trunk@132737 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 19:10:38 +00:00
relyea%netscape.com
9071d0302f Fix build breakage. Some platforms do not like to assign unsigned char * to
char * without a cast.


git-svn-id: svn://10.0.0.236/trunk@132736 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 19:01:21 +00:00
mikep%oeone.com
e80c5e1cb1 Removing files.
git-svn-id: svn://10.0.0.236/trunk@132735 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:44:58 +00:00
mikep%oeone.com
0970fd5fdd Fixing bug 177299, don't change view if multiple day event is visible.
git-svn-id: svn://10.0.0.236/trunk@132734 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:41:36 +00:00
mikep%oeone.com
edea2c4a83 Fixing bug 177298, problem with event length after dragging and dropping.
git-svn-id: svn://10.0.0.236/trunk@132733 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:34:54 +00:00
mikep%oeone.com
734e881cc5 Changing wording for more accurate descriptions.
git-svn-id: svn://10.0.0.236/trunk@132732 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:23:59 +00:00
mikep%oeone.com
2e39f71443 Removing unused code, still no images working for priority and completed.
git-svn-id: svn://10.0.0.236/trunk@132731 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:23:30 +00:00
mikep%oeone.com
66a723ae96 Changing email so that you can now email more than one event, bug 177344.
git-svn-id: svn://10.0.0.236/trunk@132730 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:15:02 +00:00
mikep%oeone.com
c214f0e8cc Fixing bug 177431
git-svn-id: svn://10.0.0.236/trunk@132729 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 18:03:30 +00:00
blythe%netscape.com
f431452c8e Not part of any build.
Temporary directories are to be unique.


git-svn-id: svn://10.0.0.236/trunk@132728 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:46:03 +00:00
relyea%netscape.com
bd5463e3f1 The Serial number needs to be the DEREncoded serial number, not the decoded
Serial number.


git-svn-id: svn://10.0.0.236/trunk@132727 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:22:06 +00:00
relyea%netscape.com
56e7c1f580 Check in new certdata file generated from certdata.txt
git-svn-id: svn://10.0.0.236/trunk@132726 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:20:59 +00:00
mikep%oeone.com
324238bf69 Fixing tooltip name.
git-svn-id: svn://10.0.0.236/trunk@132724 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:19:42 +00:00
mikep%oeone.com
16c5ecb786 Chaning tooltip name.
git-svn-id: svn://10.0.0.236/trunk@132723 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:59 +00:00
mikep%oeone.com
f6c8116624 Fixing a spelling mistake, adding in changing the cursor back to normal after dialog has opened.
git-svn-id: svn://10.0.0.236/trunk@132722 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:31 +00:00
relyea%netscape.com
e1172d0384 Allow the builtin's to accept old style serial numbers as well the the correct
PKCS #11 serial numbers.


git-svn-id: svn://10.0.0.236/trunk@132721 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:18:14 +00:00
mikep%oeone.com
c83052c29a Changing tree to be built from JS function, instead of by hand. This allows sorting on the tasks tree, bug 155888
git-svn-id: svn://10.0.0.236/trunk@132719 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:16:52 +00:00
mikep%oeone.com
e10296682e Moving functions to calendar.js.
git-svn-id: svn://10.0.0.236/trunk@132718 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:14:40 +00:00
mikep%oeone.com
0b5814fc7e Some function renaming.
git-svn-id: svn://10.0.0.236/trunk@132717 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:13:57 +00:00
mikep%oeone.com
949a7968b2 New build.
git-svn-id: svn://10.0.0.236/trunk@132716 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:12:28 +00:00
rogerl%netscape.com
90bc2a1002 Throw across activations.
git-svn-id: svn://10.0.0.236/trunk@132715 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:12:06 +00:00
relyea%netscape.com
8766ccdf71 Make the Serial Numbers DER Wrapped rather than raw serial numbers.
This is required by PKCS #11 and was causing some bugs in NSS 3.6.


git-svn-id: svn://10.0.0.236/trunk@132714 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 17:09:28 +00:00
mostafah%oeone.com
4b6838ffd3 Fixed some problems with multi-day event displaydates
git-svn-id: svn://10.0.0.236/trunk@132713 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:55:02 +00:00
mkaply%us.ibm.com
09b63cb877 Let's try this again
git-svn-id: svn://10.0.0.236/trunk@132712 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:53:40 +00:00
wtc%netscape.com
b3ac7bbc90 Bug 174143: Removed the obsolete platform.mk file. Do not allow overriding
of PLATFORM by the environment because PLATFORM is a common environment
variable.


git-svn-id: svn://10.0.0.236/trunk@132711 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:50:59 +00:00
karnaze%netscape.com
3d58e9c1e1 bug 176030 - Make Destroy fix up prev/next-in-flow pointers. a=roc, sr=bzbarsky, r=bernd.
git-svn-id: svn://10.0.0.236/trunk@132710 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:33:36 +00:00
seawood%netscape.com
2172faecd7 Fixing OS/2 tinderbox bustage.
Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Bug #177200


git-svn-id: svn://10.0.0.236/trunk@132709 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 15:00:32 +00:00
rods%netscape.com
ebe3789dd8 1) Adds two bools to the PrintSettings and then when the PS gets
initialized from Prefs or from the Printer they get set. They get unset when
the printer name changes.

This is all necessary because the Page Setup Dialog calls
initPrintSettingsFromPrinter each time it is shown. So if you have set values
they will get "written" over the next time the dialog is shown.

2) Removes a lot of platform specific initialization from nsPrintOptionsImpl
and it now uses just the the "generic" XP routines and is now consistent with
the other platforms for initializing the PS.
Bug 167894 r=dcone sr=kin a=roc


git-svn-id: svn://10.0.0.236/trunk@132708 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:35:22 +00:00
dbaron%fas.harvard.edu
eb403a9137 Back out patch for bug 161109 that implemented a pref for disabling marquee. b=161109 r=hixie a=asa
git-svn-id: svn://10.0.0.236/trunk@132707 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:31:32 +00:00
mikep%oeone.com
fff5970f08 Skin cleanup, also fixes bug 162631 (resizing list cells causes Mozilla to hang.);
git-svn-id: svn://10.0.0.236/trunk@132706 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:14:46 +00:00
dougt%netscape.com
26edb1d662 177063. Linux segmentation fault at startup using xpcom glue. r=alecf, sr=jag, a=roc+moz@cs.cmu.edu
git-svn-id: svn://10.0.0.236/trunk@132705 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:13:00 +00:00
dougt%netscape.com
8ad50dc8b8 177173 - Exports required string headers to SDK, r=jag, sr=alecf, a=robert@ocallahan.org
git-svn-id: svn://10.0.0.236/trunk@132704 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 14:11:03 +00:00
rods%netscape.com
cad8f62db6 1) Adds two bools to the PrintSettings and then when the PS gets
initialized from Prefs or from the Printer they get set. They get unset when
the printer name changes.

This is all necessary because the Page Setup Dialog calls
initPrintSettingsFromPrinter each time it is shown. So if you have set values
they will get "written" over the next time the dialog is shown.

2) Removes a lot of platform specific initialization from nsPrintOptionsImpl
and it now uses just the the "generic" XP routines and is now consistent with
the other platforms for initializing the PS.
Bug 167894 r=dcone sr=kin a=roc


git-svn-id: svn://10.0.0.236/trunk@132703 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:38:13 +00:00
rods%netscape.com
c31cff0e8e Put in a lot of safety checks and changed where SetPrintSettingsFromDevMode was
called and set into the psWin, now we only Lock the global devmode once.
Bug 169689 r=dcone sr=alecf a=roc


git-svn-id: svn://10.0.0.236/trunk@132702 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:31:58 +00:00
mkaply%us.ibm.com
fe83288963 Backing out this part of change so Os/2 goes green until we find out why this worked on Javier's machine but not the TB
git-svn-id: svn://10.0.0.236/trunk@132701 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:21:32 +00:00
blythe%netscape.com
f51b5571ec Not part of any build.
Work in progress on heap fragmentation tool.


git-svn-id: svn://10.0.0.236/trunk@132700 18797224-902f-48f8-a5cc-f745e15eee43
2002-10-30 13:17:15 +00:00
43266 changed files with 7 additions and 10174490 deletions

View File

@@ -1 +0,0 @@
CVSROOT/history

View File

@@ -1,4 +0,0 @@
If you change the modules file, you *MUST* run:
check-modules.pl modules
*before* cvs committing the new modules file.

View File

@@ -1,257 +0,0 @@
#!/usr/bin/env perl
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is this file as it was released upon February 25, 1999.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1999 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
# check-modules.pl - Check cvs modules file for duplicates and syntax errors.
#
# TODO:
# - Parse output of 'cvs co -c' command in addition to the raw file.
#
# Send comments, improvements, bugs to Steve Lamm (slamm@netscape.com).
# $Id: check-modules.pl,v 1.1 2000-06-01 11:03:22 leaf%mozilla.org Exp $
require 5.004;
use Getopt::Std;
sub usage
{
my ($progname) = $0 =~ /([^\/]+)$/;
die "Usage: $progname [options] [<module_file>]
Reads from stdin if no file is given.
Options:
-v Verbose. Print the modules and what they include.
-h Print this usage message.
";
}
&usage if !getopts('hv');
&usage if defined($opt_h);
######################################################################
# begin main
# The subroutine &parse_input creates the globals @module_names,
# %module_tree, and %line_number (described below).
&parse_input;
foreach $module (@module_names)
{
&check_module($module);
}
# end main
######################################################################
# begin subroutines
sub parse_input
{
# Globals created:
# @module_names - List of module names in the order they are seen.
# %module_tree - Hash table of lists. Keys are module names.
# Values are lists of module names and diretories.
# %line_number - Hash indexed by module name and module item.
# Values are line numbers.
@module_names = ();
%module_tree = ();
%line_number = ();
while (<>)
{
next if /^\#/ || /^\s*$/;
# Check for a module definition
if (/^([_a-zA-Z0-9]+)\s+(?:-l\s+)?-a\s*(.*)$/)
{
my ($module_name) = $1;
my (@sub_items) = ();
my ($line) = $2;
push @module_names, $module_name;
# Read line continuations (i.e. lines with '\' on the end).
while ($line =~ /\\$/)
{
chomp $line;
$line =~ s/^\s*(.*?)\s*\\$/$1/;
if (length($line) > 0)
{
my (@line_items) = split(/\s+/, $line);
push @sub_items, @line_items;
&save_line_numbers($module_name, $., @line_items);
}
$line = <>;
}
chomp $line;
$line =~ s/^\s*(.*?)\s*$/$1/;
my (@line_items) = split(/\s+/, $line);
push @sub_items, @line_items;
&save_line_numbers($module_name, $., @line_items);
$module_tree{$module_name} = \@sub_items;
}
else
{
die "Unexpected input: line $.: $_\n";
}
}
}
sub check_module
{
my ($module) = $_[0];
my ($sub_module, $sub_dir, $prev_module);
# Globals created:
# %have_checked - List of modules already checked.
# %full_list - All the directories for a module.
# Indexed by module and sub directory.
# Values are the module that added the directory.
return if defined($have_checked{$module});
$full_list{$module} = {};
foreach $sub_module ( &get_modules($module) )
{
&check_module($sub_module);
# Add the directories of the sub_module to this module
while (($sub_dir, $prev_module) = each %{$full_list{$sub_module}})
{
$full_list{$module}{$sub_dir} = $prev_module;
}
}
foreach $sub_dir ( &get_directories($module) )
{
if (defined($full_list{$module}{$sub_dir}))
{
my ($previous_module) = $full_list{$module}{$sub_dir};
&warn_multiple($sub_dir, $module, $previous_module);
}
else
{
$full_list{$module}{$sub_dir} = $module;
# Check if parent or child of directory was previously added
#
&check_inclusion($sub_dir, $module);
}
}
if (defined($opt_v))
{
print "$module\n";
while (($sub_dir, $prev_module) = each %{$full_list{$module}})
{
print " $sub_dir, $prev_module\n";
}
}
$have_checked{$module} = 1;
}
sub get_modules
{
my ($module) = $_[0];
my (@output) = ();
my ($sub_item);
foreach $sub_item ( @{ $module_tree{$module} } )
{
push @output, $sub_item if defined($module_tree{$sub_item});
}
return @output;
}
sub get_directories
{
my ($module) = $_[0];
my (@output) = ();
my ($sub_item);
foreach $sub_item ( @{ $module_tree{$module} } )
{
push @output, $sub_item unless defined($module_tree{$sub_item});
}
return @output;
}
sub save_line_numbers
{
my ($module, $line_num, @sub_items) = @_;
my ($sub_item);
foreach $sub_item (@sub_items)
{
if (defined($line_number{$module}{$sub_item}))
{
$line_number{$module}{$sub_item} =
"$line_number{$module}{$sub_item}, $line_num";
}
else
{
$line_number{$module}{$sub_item} = $line_num;
}
}
}
sub warn_multiple
{
my ($sub_item, $module, $previous_module) = @_;
my ($line_txt) = '';
my (@lines) = split(', ', $line_number{$module}{$sub_item});
push(@lines, split(', ', $line_number{$previous_module}{$sub_item}))
unless $previous_module eq $module;
$line_txt = "lines ".join(', ', sort { $a <=> $b } @lines);
warn "Error: Multiple listing: $line_txt: $sub_item.\n";
}
sub check_inclusion
{
my ($sub_dir, $module) = @_;
my ($dir);
foreach $dir (keys %{$full_list{$module}})
{
next if $dir eq $sub_dir;
if (length($dir) < length($sub_dir))
{
my ($temp) = $sub_dir;
$sub_dir = $dir;
$dir = $temp;
}
if ($dir =~ /^$sub_dir\//)
{
warn "Warning: $dir (line "
.$line_number{$full_list{$module}{$dir}}{$dir}
.") pulled by $sub_dir (line "
.$line_number{$full_list{$module}{$sub_dir}}{$sub_dir}
.")\n";
}
}
}

View File

@@ -1,20 +0,0 @@
# The "checkoutlist" file is used to support additional version controlled
# administrative files in $CVSROOT/CVSROOT, such as template files.
#
# The first entry on a line is a filename which will be checked out from
# the corresponding RCS file in the $CVSROOT/CVSROOT directory.
# The remainder of the line is an error message to use if the file cannot
# be checked out.
#
# File format:
#
# [<whitespace>]<filename><whitespace><error message><end-of-line>
#
# comment lines begin with '#'
passwd
readers
commitcheck.pl
dolog.pl
FilesToNotExport
cvsmailfilter.pl
sendnotification.pl

View File

@@ -1,527 +0,0 @@
#!/tools/ns/bin/perl5.004 --
# DO NOT EDIT THIS FILE! You must instead go to http://despot.mozilla.org/, and
# tweak things from there.
$mode{'95'} = 'Open';
$branch{'95'} = 'HEAD';
$fullname{'95'} = '2-D Graphics';
$mode{'52'} = 'Open';
$branch{'52'} = 'HEAD';
$fullname{'52'} = 'Aurora/RDF BE';
$mode{'53'} = 'Open';
$branch{'53'} = 'HEAD';
$fullname{'53'} = 'Berkeley DB';
$mode{'166'} = 'Restricted';
$branch{'166'} = 'HEAD';
$fullname{'166'} = 'Browser';
$blessed{'166'} = ['pinkerton%netscape.com','kerz%netscape.com','ian%hixie.ch','bryner%netscape.com','brendan%mozilla.org','ben%netscape.com','asa%mozilla.org',];
$super{'166'} = ['hewitt%netscape.com','chanial%noos.fr','blakeross%telocity.com','hyatt%netscape.com',];
$mode{'55'} = 'Open';
$branch{'55'} = 'HEAD';
$fullname{'55'} = 'Build Config';
$mode{'164'} = 'Restricted';
$branch{'164'} = 'HEAD';
$fullname{'164'} = 'chimera';
$blessed{'164'} = ['saari%netscape.com','bryner%netscape.com','brendan%mozilla.org',];
$super{'164'} = ['hyatt%netscape.com','sfraser%netscape.com','hewitt%netscape.com','ben%netscape.com','beard%netscape.com','pinkerton%netscape.com',];
$mode{'146'} = 'Restricted';
$branch{'146'} = 'NSPRPUB_PRE_4_2_CLIENT_BRANCH';
$fullname{'146'} = 'Client NSPR';
$blessed{'146'} = ['sfraser%netscape.com','sdagley%netscape.com','gordon%netscape.com','beard%netscape.com',];
$super{'146'} = ['wtc%netscape.com','seawood%netscape.com','leaf%mozilla.org',];
$mode{'96'} = 'Open';
$branch{'96'} = 'HEAD';
$fullname{'96'} = 'Clipping and Compositing';
$mode{'56'} = 'Open';
$branch{'56'} = 'HEAD';
$fullname{'56'} = 'Composer';
$mode{'4'} = 'Open';
$branch{'4'} = 'HEAD';
$fullname{'4'} = 'default';
$defaultid = '4';
$mode{'3'} = 'Closed';
$branch{'3'} = 'HEAD';
$fullname{'3'} = 'despotaccess';
$blessed{'3'} = [];
$super{'3'} = ['despotdaemon%netscape.com',];
$mode{'59'} = 'Restricted';
$branch{'59'} = 'HEAD';
$fullname{'59'} = 'Directory SDK';
$blessed{'59'} = ['seawood%netscape.com','djani%netscape.com','richm%netscape.com',];
$super{'59'} = ['leif%ogre.com','dmose%netscape.com','mhein%sun.com','mcs%netscape.com',];
$mode{'103'} = 'Open';
$branch{'103'} = 'HEAD';
$fullname{'103'} = 'Document Object Model';
$mode{'46'} = 'Open';
$branch{'46'} = 'HEAD';
$fullname{'46'} = 'ef';
$mode{'101'} = 'Open';
$branch{'101'} = 'HEAD';
$fullname{'101'} = 'Embeddable Web Browser';
$mode{'167'} = 'Open';
$branch{'167'} = 'HEAD';
$fullname{'167'} = 'frontpages';
$mode{'49'} = 'Open';
$branch{'49'} = 'HEAD';
$fullname{'49'} = 'GTK';
$mode{'144'} = 'Open';
$branch{'144'} = 'HEAD';
$fullname{'144'} = 'GTK Embedding Widget';
$mode{'62'} = 'Open';
$branch{'62'} = 'HEAD';
$fullname{'62'} = 'HTML to Text/PostScript Translation';
$mode{'67'} = 'Open';
$branch{'67'} = 'HEAD';
$fullname{'67'} = 'I18N Library';
$mode{'64'} = 'Open';
$branch{'64'} = 'HEAD';
$fullname{'64'} = 'Image Handling: JPEG';
$mode{'155'} = 'Open';
$branch{'155'} = 'HEAD';
$fullname{'155'} = 'Image Handling: MNG';
$mode{'65'} = 'Open';
$branch{'65'} = 'HEAD';
$fullname{'65'} = 'Image Handling: PNG';
$mode{'63'} = 'Open';
$branch{'63'} = 'HEAD';
$fullname{'63'} = 'ImageLib';
$mode{'69'} = 'Open';
$branch{'69'} = 'HEAD';
$fullname{'69'} = 'Java and JS Capability-Based Security';
$mode{'130'} = 'Open';
$branch{'130'} = 'HEAD';
$fullname{'130'} = 'Java APIs for DOM';
$mode{'127'} = 'Open';
$branch{'127'} = 'HEAD';
$fullname{'127'} = 'Java APIs to WebShell';
$mode{'68'} = 'Open';
$branch{'68'} = 'HEAD';
$fullname{'68'} = 'Java Stubs';
$mode{'128'} = 'Open';
$branch{'128'} = 'HEAD';
$fullname{'128'} = 'Java to XPCOM Bridge';
$mode{'133'} = 'Open';
$branch{'133'} = 'HEAD';
$fullname{'133'} = 'Java Utility Classes';
$mode{'129'} = 'Open';
$branch{'129'} = 'HEAD';
$fullname{'129'} = 'Java-Implemented Plugins';
$mode{'70'} = 'Restricted';
$branch{'70'} = 'HEAD';
$fullname{'70'} = 'JavaScript';
$blessed{'70'} = ['timeless%mozdev.org','mike+mozilla%meer.net','cls%seawood.org','bratell%lysator.liu.se',];
$super{'70'} = ['shaver%mozilla.org','rogerl%netscape.com','khanson%netscape.com','jband%netscape.com','brendan%mozilla.org',];
$mode{'71'} = 'Open';
$branch{'71'} = 'HEAD';
$fullname{'71'} = 'JavaScript Debugger';
$mode{'114'} = 'Open';
$branch{'114'} = 'HEAD';
$fullname{'114'} = 'js-tests';
$mode{'72'} = 'Open';
$branch{'72'} = 'HEAD';
$fullname{'72'} = 'LiveConnect';
$mode{'136'} = 'Closed';
$branch{'136'} = 'HEAD';
$fullname{'136'} = 'Locked-Content';
$blessed{'136'} = [];
$super{'136'} = ['hyatt%netscape.com',];
$mode{'123'} = 'Open';
$branch{'123'} = 'HEAD';
$fullname{'123'} = 'Mail/News';
$mode{'165'} = 'Open';
$branch{'165'} = 'HEAD';
$fullname{'165'} = 'MathML';
$mode{'124'} = 'Open';
$branch{'124'} = 'HEAD';
$fullname{'124'} = 'MIME';
$mode{'157'} = 'Open';
$branch{'157'} = 'HEAD';
$fullname{'157'} = 'Movemail';
$mode{'112'} = 'Open';
$branch{'112'} = 'HEAD';
$fullname{'112'} = 'Mozilla Tools';
$mode{'19'} = 'Open';
$branch{'19'} = 'HEAD';
$fullname{'19'} = 'mozilla-toplevel';
$mode{'147'} = 'Open';
$branch{'147'} = 'HEAD';
$fullname{'147'} = 'Mstone';
$mode{'77'} = 'Open';
$branch{'77'} = 'HEAD';
$fullname{'77'} = 'NetLib';
$mode{'102'} = 'Open';
$branch{'102'} = 'HEAD';
$fullname{'102'} = 'New HTML Parser';
$mode{'100'} = 'Open';
$branch{'100'} = 'HEAD';
$fullname{'100'} = 'New HTML Style System';
$mode{'98'} = 'Open';
$branch{'98'} = 'HEAD';
$fullname{'98'} = 'New Layout Engine';
$mode{'122'} = 'Open';
$branch{'122'} = 'HEAD';
$fullname{'122'} = 'News';
$mode{'78'} = 'Restricted';
$branch{'78'} = 'HEAD';
$fullname{'78'} = 'NSPR';
$blessed{'78'} = ['sfraser%netscape.com','sdagley%netscape.com','gordon%netscape.com','beard%netscape.com',];
$super{'78'} = ['srinivas%netscape.com','seawood%netscape.com','wtc%netscape.com',];
$mode{'163'} = 'Restricted';
$branch{'163'} = 'NSS_3_3_BRANCH';
$fullname{'163'} = 'NSS Stable Release Branch';
$blessed{'163'} = [];
$super{'163'} = ['tfox%netscape.com','sonja.mirtitsch%sun.com','nicolson%netscape.com','nelsonb%netscape.com','kirk.erickson%sun.com','jpierre%netscape.com','javi%netscape.com','ian.mcgreer%sun.com','glen.beasley%sun.com','ddrinan%netscape.com','bishakhabanerjee%netscape.com','wtc%netscape.com','relyea%netscape.com',];
$mode{'159'} = 'Open';
$branch{'159'} = 'HEAD';
$fullname{'159'} = 'NSS Trunk';
$mode{'162'} = 'Open';
$branch{'162'} = 'HEAD';
$fullname{'162'} = 'P3P';
$mode{'111'} = 'Open';
$branch{'111'} = 'HEAD';
$fullname{'111'} = 'PerlConnect';
$mode{'113'} = 'Open';
$branch{'113'} = 'HEAD';
$fullname{'113'} = 'Photon';
$mode{'81'} = 'Open';
$branch{'81'} = 'HEAD';
$fullname{'81'} = 'Plugins';
$mode{'82'} = 'Open';
$branch{'82'} = 'HEAD';
$fullname{'82'} = 'Preferences';
$mode{'120'} = 'Open';
$branch{'120'} = 'HEAD';
$fullname{'120'} = 'Profile Manager';
$mode{'83'} = 'Open';
$branch{'83'} = 'HEAD';
$fullname{'83'} = 'Progress Window';
$mode{'161'} = 'Open';
$branch{'161'} = 'HEAD';
$fullname{'161'} = 'Qt-based gfx and widget';
$mode{'84'} = 'Open';
$branch{'84'} = 'HEAD';
$fullname{'84'} = 'Registry';
$mode{'143'} = 'Open';
$branch{'143'} = 'HEAD';
$fullname{'143'} = 'Remote XPCOM';
$mode{'138'} = 'Open';
$branch{'138'} = 'HEAD';
$fullname{'138'} = 'Rhino';
$mode{'145'} = 'Restricted';
$branch{'145'} = 'HEAD';
$fullname{'145'} = 'security';
$blessed{'145'} = ['jgmyers%netscape.com','jaggernaut%netscape.com','cotter%netscape.com','cls%seawood.org','bryner%netscape.com','scc%mozilla.org','alecf%netscape.com',];
$super{'145'} = ['wtc%netscape.com','tfox%netscape.com','sonja.mirtitsch%sun.com','rangansen%netscape.com','nicolson%netscape.com','nelsonb%netscape.com','kirk.erickson%sun.com','kaie%netscape.com','jpierre%netscape.com','javi%netscape.com','ian.mcgreer%sun.com','glen.beasley%sun.com','chrisk%netscape.com','bishakhabanerjee%netscape.com','thayes%netscape.com','relyea%netscape.com','ddrinan%netscape.com',];
$mode{'151'} = 'Open';
$branch{'151'} = 'HEAD';
$fullname{'151'} = 'Security - Mozilla PSM Glue';
$mode{'86'} = 'Open';
$branch{'86'} = 'HEAD';
$fullname{'86'} = 'Security Stubs';
$mode{'110'} = 'Open';
$branch{'110'} = 'HEAD';
$fullname{'110'} = 'Silent Download';
$mode{'115'} = 'Open';
$branch{'115'} = 'HEAD';
$fullname{'115'} = 'small-devices';
$mode{'87'} = 'Open';
$branch{'87'} = 'HEAD';
$fullname{'87'} = 'SmartUpdate';
$mode{'160'} = 'Open';
$branch{'160'} = 'HEAD';
$fullname{'160'} = 'String';
$mode{'169'} = 'Open';
$branch{'169'} = 'HEAD';
$fullname{'169'} = 'toolkit';
$mode{'154'} = 'Open';
$branch{'154'} = 'HEAD';
$fullname{'154'} = 'tools';
$mode{'158'} = 'Open';
$branch{'158'} = 'HEAD';
$fullname{'158'} = 'URI Loader';
$mode{'156'} = 'Open';
$branch{'156'} = 'HEAD';
$fullname{'156'} = 'ViXEn';
$mode{'134'} = 'Open';
$branch{'134'} = 'HEAD';
$fullname{'134'} = 'Widgets';
$mode{'121'} = 'Open';
$branch{'121'} = 'HEAD';
$fullname{'121'} = 'Xlib-based gfx + widget';
$mode{'88'} = 'Open';
$branch{'88'} = 'HEAD';
$fullname{'88'} = 'XML';
$mode{'141'} = 'Open';
$branch{'141'} = 'HEAD';
$fullname{'141'} = 'xmlterm';
$mode{'90'} = 'Open';
$branch{'90'} = 'HEAD';
$fullname{'90'} = 'XP File Handling';
$mode{'137'} = 'Open';
$branch{'137'} = 'HEAD';
$fullname{'137'} = 'XPApps';
$mode{'89'} = 'Open';
$branch{'89'} = 'HEAD';
$fullname{'89'} = 'XPCOM';
$mode{'118'} = 'Open';
$branch{'118'} = 'HEAD';
$fullname{'118'} = 'XPConnect';
$mode{'117'} = 'Open';
$branch{'117'} = 'HEAD';
$fullname{'117'} = 'XPIDL';
$mode{'150'} = 'Open';
$branch{'150'} = 'HEAD';
$fullname{'150'} = 'XPInstall';
$mode{'106'} = 'Open';
$branch{'106'} = 'HEAD';
$fullname{'106'} = 'XPToolkit';
$mode{'140'} = 'Open';
$branch{'140'} = 'HEAD';
$fullname{'140'} = 'XSLT Processor';
$mode{'135'} = 'Open';
$branch{'135'} = 'HEAD';
$fullname{'135'} = 'xul.css';
$mode{'93'} = 'Open';
$branch{'93'} = 'HEAD';
$fullname{'93'} = 'Zlib';
sub GetT {
($b,$_) = (@_);
if ($b eq 'HEAD') {
if (m:^CVSROOT/commitcheck\.pl$:) {return '3';}
if (m:^CVSROOT/passwd$:) {return '3';}
if (m:^mozilla/security/coreconf/.*$:) {return '145';}
if (m:^mozilla/security/jss/.*$:) {return '145';}
if (m:^mozilla/security/nss/.*$:) {return '145';}
if (m:^mozilla/[^/]*$:) {return '19';}
if (m:^mozilla/gfx/src/xlib/.*$:) {return '121';}
if (m:^mozilla/widget/src/xlib/.*$:) {return '121';}
if (m:^mozilla/ef/.*$:) {return '46';}
if (m:^mozilla/gfx/src/gtk/.*$:) {return '49';}
if (m:^mozilla/widget/src/gtk/.*$:) {return '49';}
if (m:^mozilla/widget/timer/src/unix/gtk$:) {return '49';}
if (m:^mozilla/rdf/.*$:) {return '52';}
if (m:^mozilla/dbm/.*$:) {return '53';}
if (m:^mozilla/build/.*$:) {return '55';}
if (m:^mozilla/config/.*$:) {return '55';}
if (m:^mozilla/l10n/.*$:) {return '55';}
if (m:^mozilla/editor$:) {return '56';}
if (m:^mozilla/directory/buildsdk\.txt$:) {return '59';}
if (m:^mozilla/directory/c-sdk/.*$:) {return '59';}
if (m:^mozilla/directory/ldapsdk\.mak$:) {return '59';}
if (m:^mozilla/directory/ldapsdk\.mk$:) {return '59';}
if (m:^mozilla/directory/Makefile$:) {return '59';}
if (m:^gfx/src/ps/.*$:) {return '62';}
if (m:^mozilla/modules/libpr0n/.*$:) {return '63';}
if (m:^mozilla/jpeg$:) {return '64';}
if (m:^mozilla/modules/libimg/png/.*$:) {return '65';}
if (m:^mozilla/intl/.*$:) {return '67';}
if (m:^mozilla/modules/oji/.*$:) {return '68';}
if (m:^mozilla/nav-java/.*$:) {return '68';}
if (m:^mozilla/sun-java/.*$:) {return '68';}
if (m:^mozilla/caps/.*$:) {return '69';}
if (m:^js/src/*\.c$:) {return '70';}
if (m:^js/src/*\.def$:) {return '70';}
if (m:^js/src/*\.h$:) {return '70';}
if (m:^js/src/*\.m*k$:) {return '70';}
if (m:^js/src/*\.tbl$:) {return '70';}
if (m:^js/src/*akefile.*$:) {return '70';}
if (m:^mozilla/extensions/jsd/.*$:) {return '71';}
if (m:^mozilla/js/jsd/.*$:) {return '71';}
if (m:^js/src/liveconnect/.*$:) {return '72';}
if (m:^mozilla/netwerk/.*$:) {return '77';}
if (m:^mozilla/nsprpub/.*$:) {return '78';}
if (m:^mozilla/modules/plugin/.*$:) {return '81';}
if (m:^mozilla/modules/libpref/.*$:) {return '82';}
if (m:^mozilla/modules/progress/.*$:) {return '83';}
if (m:^mozilla/modules/libreg/.*$:) {return '84';}
if (m:^mozilla/modules/security/.*$:) {return '86';}
if (m:^mozilla/modules/softupdt/.*$:) {return '87';}
if (m:^mozilla/content/xml/.*$:) {return '88';}
if (m:^mozilla/expat/.*$:) {return '88';}
if (m:^mozilla/extensions/xmlextras/.*$:) {return '88';}
if (m:^mozilla/xpcom/.*$:) {return '89';}
if (m:^xpcom/io$:) {return '90';}
if (m:^mozilla/modules/zlib/.*$:) {return '93';}
if (m:^mozilla/gfx/public/.*$:) {return '95';}
if (m:^mozilla/gfx/src/windows/.*$:) {return '95';}
if (m:^mozilla/view/.*$:) {return '96';}
if (m:^mozilla/layout/base/.*$:) {return '98';}
if (m:^mozilla/layout/build/.*$:) {return '98';}
if (m:^mozilla/layout/html/.*$:) {return '98';}
if (m:^mozilla/layout/macbuild/.*$:) {return '98';}
if (m:^mozilla/layout/tools/.*$:) {return '98';}
if (m:^modules/libpr0n/decoders/mng/.*$:) {return '155';}
if (m:^mozilla/modules/libimg/mng/.*$:) {return '155';}
if (m:^mozilla/content/html/style/.*$:) {return '100';}
if (m:^mozilla/content/shared/.*$:) {return '100';}
if (m:^mozilla/embedding/.*$:) {return '101';}
if (m:^mozilla/webshell/.*$:) {return '101';}
if (m:^mozilla/htmlparser/.*$:) {return '102';}
if (m:^mozilla/content/base/.*$:) {return '103';}
if (m:^mozilla/content/events/.*$:) {return '103';}
if (m:^mozilla/content/html/content/.*$:) {return '103';}
if (m:^mozilla/content/html/document/.*$:) {return '103';}
if (m:^mozilla/dom/.*$:) {return '103';}
if (m:^mozilla/js/rhino/.*$:) {return '138';}
if (m:^mozilla/xpfe$:) {return '137';}
if (m:^mozilla/js/tests$:) {return '114';}
if (m:^js/src/perlconnect$:) {return '111';}
if (m:^mozilla/silentdl/.*$:) {return '110';}
if (m:^mozilla/extensions/transformiix/.*$:) {return '140';}
if (m:^base/src/photon/.*$:) {return '113';}
if (m:^gfx/src/photon/.*$:) {return '113';}
if (m:^widget/src/photon/.*$:) {return '113';}
if (m:^mozilla/content/xul/.*$:) {return '106';}
if (m:^mozilla/layout/xul/.*$:) {return '106';}
if (m:^mozilla/widget/public/.*$:) {return '134';}
if (m:^mozilla/profile$:) {return '120';}
if (m:^mozilla/tools/.*$:) {return '112';}
if (m:^xpcom/typelib$:) {return '117';}
if (m:^js/src/xpconnect$:) {return '118';}
if (m:^xpcom/reflect/xptcall$:) {return '118';}
if (m:^xpcom/reflect/xptinfo$:) {return '118';}
if (m:^mozilla/mailnews/news/.*$:) {return '122';}
if (m:^mozilla/mailnews/[^/]*$:) {return '123';}
if (m:^mozilla/mailnews/mime/[^/]*$:) {return '124';}
if (m:^mozilla/java/xpcom/.*$:) {return '128';}
if (m:^mozilla/java/plugins/.*$:) {return '129';}
if (m:^mozilla/java/webclient/.*$:) {return '127';}
if (m:^mozilla/java/dom/.*$:) {return '130';}
if (m:^mozilla/java/util/.*$:) {return '133';}
if (m:^mozilla/extensions/xmlterm/.*$:) {return '141';}
if (m:^xpcom/remote$:) {return '143';}
if (m:^embedding/browser/gtk$:) {return '144';}
if (m:^mozilla/mstone/.*$:) {return '147';}
if (m:^mozilla/xpinstall/.*$:) {return '150';}
if (m:^mozilla/security/manager/.*$:) {return '151';}
if (m:^mozilla/extensions/vixen/.*$:) {return '156';}
if (m:^mozilla/mailnews/movemail$:) {return '157';}
if (m:^mozilla/uriloader/.*$:) {return '158';}
if (m:^mozilla/string/.*$:) {return '160';}
if (m:^mozilla/gfx/src/qt/.*$:) {return '161';}
if (m:^mozilla/widget/src/qt/.*$:) {return '161';}
if (m:^mozilla/extensions/p3p/.*$:) {return '162';}
if (m:^mozilla/chimera/.*$:) {return '164';}
if (m:^mozilla/layout/mathml/.*$:) {return '165';}
if (m:^mozilla/browser/.*$:) {return '166';}
if (m:^mozilla/toolkit/.*$:) {return '166';}
}
if ($b eq 'NSPRPUB_PRE_4_2_CLIENT_BRANCH') {
if (m:^mozilla/nsprpub/.*$:) {return '146';}
}
if ($b eq 'NSS_3_3_BRANCH') {
if (m:^mozilla/security/coreconf/.*$:) {return '163';}
if (m:^mozilla/security/nss/.*$:) {return '163';}
}
return '';
}
$debug = 0;
$origrepository = shift(@ARGV);
@files = @ARGV;
$envcvsroot = $ENV{'CVSROOT'};
open( REP, "<CVS/Repository");
$repository = <REP>;
chop($repository);
close(REP);
$repository =~ s:^$envcvsroot/::;
$doit = 0;
$| = 1;
if( $debug){
print STDERR "----------------------------------------------\n";
print STDERR "files: @files\n";
print STDERR "origrepository: $origrepository\n";
print STDERR " repository: $repository\n";
print STDERR "----------------------------------------------\n";
}
open(ENT, "<CVS/Entries" );
while( <ENT> ){
chop;
($d,$fn,$rev,$mod_time,$sticky,$tag) = split(/\//);
if ($tag =~ /^T(.*)$/) {
$fbranch{$fn} = $1;
}
}
close ENT;
foreach $f (@files) {
$b = "";
if (defined $fbranch{$f}) {$b = $fbranch{$f};}
if ($b eq "") {$b = "HEAD";}
$t = GetT($b, "$repository/$f");
if ($debug) {
print STDERR "GetT returned '$t' for '$repository/$f' branch '$b'\n";
}
if ($t eq "") {
$t = $defaultid;
}
if (!defined $mode{$t} || $mode{$t} eq "Open") {
next;
}
if ($debug) {
print STDERR "Checking twig $t\n";
}
# OK, we have a match. See if we're allowed to checkin here.
if ($username eq "") {
$username = $ENV{"CVS_USER"} || getlogin || (getpwuid($<))[0] || "nobody";
if ($debug) {
print STDERR "Username is $username\n";
print STDERR "getlogin returns " . getlogin . "\n";
print STDERR '(getpwuid($<))[0] returns ' . (getpwuid($<))[0] . "\n";
print STDERR "Environment:\n";
foreach $key (sort(keys %ENV)) {
print STDERR $key, '=', $ENV{$key}, "\n";
}
}
}
$ok = 0;
$s = $super{$t};
foreach $u (@$s) {
if ($debug) {
print STDERR "Checking against super $u\n";
}
if ($u eq $username) {
$ok = 1;
break;
}
}
if ($mode{$t} eq "Restricted") {
my $b = $blessed{$t};
foreach $u (@$b) {
if ($debug) {
print STDERR "Checking against blessed $u\n";
}
if ($u eq $username) {
$ok = 1;
break;
}
}
}
if (!$ok) {
print STDERR "You may not check into partition $fullname{$t}\n";
print STDERR "the file $repository/$f on branch $b\n";
print STDERR "If you think you should be allowed to, send mail to\n";
print STDERR "one of the below people:\n";
$s = $super{$t};
foreach $u (@$s) {
$u =~ s/%/@/;
print STDERR " $u\n";
}
exit 1;
}
}
exit 0;

View File

@@ -1,16 +0,0 @@
# The "commitinfo" file is used to control pre-commit checks.
# The filter on the right is invoked with the repository and a list
# of files to check. A non-zero exit of the filter program will
# cause the commit to be aborted.
#
# The first entry on a line is a regular expression which is tested
# against the directory that the change is being committed to, relative
# to the $CVSROOT. For the first match that is found, then the remainder
# of the line is the name of the filter to run.
#
# If the repository name does not match any of the regular expressions in this
# file, the "DEFAULT" line is used, if it is specified.
#
# If the name "ALL" appears as a regular expression it is always used
# in addition to the first matching regex or "DEFAULT".
ALL $CVSROOT/CVSROOT/commitcheck.pl

View File

@@ -1,6 +0,0 @@
# Set this to "no" if pserver shouldn't check system users/passwords
#SystemAuth=no
# Set `PreservePermissions' to `yes' to save file status information
# in the repository.
#PreservePermissions=no

View File

@@ -1,36 +0,0 @@
.gdbinit
.HSancillary
.Makedepend
.makedepend
.MCC_Cache_FAT
.MCC_Global_History
.md
.pure
made
make.log
make.dep
nuke
_jmc
*.class
.depends
.deps
.d
*.dylib
__.SYMDEF*
manifest.mnw
_gen
_stubs
*_DBG.OBJ
*_DBG_EDT.OBJ
*_OPT.OBJ
*_OPT_EDT.OBJ
*_DBG.OBJD
so_locations
*.flc
*.map
depend.mk
_xpidlgen
ti_files
*.rpo
.*.timestamp

View File

@@ -1,24 +0,0 @@
#!/bin/sh
PATH=/bin:/usr/bin:/sbin:/usr/sbin;export PATH
(
URL="subdir=`dirname $1`&files=`basename $1`"
echo "Subject: $1"
echo 'Content-Type: text/html; charset=us-ascii'
echo 'Content-Transfer-Encoding: 7bit'
echo 'Content-Disposition: inline'
TMP=/tmp/cvsmf.$$
trap "rm -f $TMP" 0 1 2 15
cat > $TMP
BRANCH=`sed -n 's@^Revision/Branch: \(.*\)@\1@p' $TMP`
if test -n "$BRANCH"; then
URL="$URL&branch=$BRANCH"
fi
echo '<A HREF="http://warp.netscape.com/webtools/bonsai/cvsview2.cgi?'$URL'&command=DIRECTORY">View differences</A><BR>\n'
) | mail $2

View File

@@ -1,163 +0,0 @@
#! /tools/ns/bin/perl5.004
# -*- Mode: perl; indent-tabs-mode: nil -*-
# Arguments:
#
# -a Only send checkin messages which contain added files. All other checkin
# messages will be ignored.
# -u <url> Base URL for the Bonsai directory; "/cvsview2.cgi" will get
# appended to this with appropriate args.
# -h <hostname> Host whose SMTP server we will contact to send mail.
# -s <string> String specifying dir and filenames. As generated by "%s"
# in a CVSROOT/loginfo file
# -f <file> A regexp. If present, then only checkins to files whose
# name (without the directory) matches the regexp will generate mail.
#
# The remaining args are email addresses of people who should get notified.
use Socket;
sub get_response_code {
my ($expecting) = @_;
# if ($flag_debug) {
# print STDERR "SMTP: Waiting for code $expecting\n";
# }
while (1) {
my $line = <S>;
# if ($flag_debug) {
# print STDERR "SMTP: $line";
# }
if ($line =~ /^[0-9]*-/) {
next;
}
if ($line =~ /(^[0-9]*) /) {
my $code = $1;
if ($code == $expecting) {
# if ($flag_debug) {
# print STDERR "SMTP: got it.\n";
# }
return;
}
die "Bad response from SMTP -- $line";
}
}
}
my $debug = 0;
my $addsonly = 0;
my $mailhost = "127.0.0.1";
my $urlbase = "";
my $cvsargs = "";
my $cvsroot = "";
my @mailto;
my $fileregexp = "";
while (@ARGV) {
my $arg = shift @ARGV;
if ($arg eq '-d') {
$debug = 1;
print STDERR "Debug turned on...\n";
} elsif ($arg eq '-r') {
$cvsroot = shift @ARGV;
} elsif ($arg eq '-h') {
$mailhost = shift @ARGV;
} elsif ($arg eq '-u') {
$urlbase = shift @ARGV;
} elsif ($arg eq '-s') {
$cvsargs = shift @ARGV;
} elsif ($arg eq '-f') {
$fileregexp = shift @ARGV;
} elsif ($arg eq '-a') {
$addsonly = 1;
} else {
push(@mailto, $arg);
}
}
my $url = "";
if ($urlbase ne "" && $cvsargs ne "") {
my @list = split(/ /, $cvsargs);
my $dir = shift @list;
if ($fileregexp ne "") {
if (grep(m/$fileregexp/, @list) <= 0) {
exit;
}
}
$url = $urlbase . "/cvsview2.cgi?command=DIRECTORY&subdir=$dir&files=" .
join('%2B', @list);
}
my $message = "";
my $filesadded = 0;
while (<>) {
my $line = $_;
if ($line =~ m@^Revision/Branch: (.*)$@) {
if ($url ne "") {
$url .= "&branch=$1";
}
}
# if we see that files have been added on this checkin, remember that fact
#
if ($line =~ m@^Added Files:@) {
$filesadded = 1;
}
$message .= $line;
}
# bail out if this is an adds-only run and no files have been added
#
if ($addsonly == 1 && $filesadded == 0 ) {
exit 0;
}
if ($url ne "") {
if ($cvsroot ne "") {
$url .= "&root=$cvsroot";
}
$message = "Diffs: $url\n\n" . $message;
}
chop(my $hostname = `/bin/hostname`);
my ($remote,$port, $iaddr, $paddr, $proto, $line);
$remote = $mailhost;
$port = 25;
if ($port =~ /\D/) { $port = getservbyname($port, 'tcp') }
die "No port" unless $port;
$iaddr = inet_aton($remote) || die "no host: $remote";
$paddr = sockaddr_in($port, $iaddr);
$proto = getprotobyname('tcp');
socket(S, PF_INET, SOCK_STREAM, $proto) || die "socket: $!";
connect(S, $paddr) || die "connect: $!";
select(S); $| = 1; select(STDOUT);
get_response_code(220);
print S "EHLO $hostname\n";
get_response_code(250);
print S "MAIL FROM: cvsmailfilter\@$hostname\n";
get_response_code(250);
foreach $i (@mailto) {
print S "RCPT TO: $i\n";
get_response_code(250);
}
print S "DATA\n";
get_response_code(354);
print S "Subject: $cvsargs\n";
print S "\n";
print S $message . "\n";
print S ".\n";
get_response_code(250);
print S "QUIT\n";
close(S);

View File

@@ -1,23 +0,0 @@
# This file affects handling of files based on their names.
#
# The -t/-f options allow one to treat directories of files
# as a single file, or to transform a file in other ways on
# its way in and out of CVS.
#
# The -m option specifies whether CVS attempts to merge files.
#
# The -k option specifies keyword expansion (e.g. -kb for binary).
#
# Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers)
#
# wildcard [option value][option value]...
#
# where option is one of
# -f from cvs filter value: path to filter
# -t to cvs filter value: path to filter
# -m update methodology value: MERGE or COPY
# -k expansion mode value: b, o, kkv, &c
#
# and value is a single-quote delimited value.
# For example:
#*.gif -k 'b'

View File

@@ -1,270 +0,0 @@
#! /tools/ns/bin/perl5
use Socket;
$username = $ENV{"CVS_USER"} || getlogin || (getpwuid($<))[0] || "nobody";
$envcvsroot = $ENV{'CVSROOT'};
$cvsroot = $envcvsroot;
$flag_debug = 0;
$flag_tagcmd = 0;
$repository = '';
$repository_tag = '';
$mailhost = 'localhost';
@mailto=();
@changed_files = ();
@added_files = ();
@removed_files = ();
@log_lines = ();
@outlist = ();
$STATE_NONE = 0;
$STATE_CHANGED = 1;
$STATE_ADDED = 2;
$STATE_REMOVED = 3;
$STATE_LOG = 4;
&process_args;
if ($flag_debug ){
print STDERR "----------------------------------------------\n";
print STDERR "LOGINFO:\n";
print STDERR " pwd:" . `pwd` . "\n";
print STDERR " Args @ARGV\n";
print STDERR " CVSROOT: $cvsroot\n";
print STDERR " who: $username\n";
print STDERR " Repository: $repository\n";
print STDERR " mailto: @mailto\n";
print STDERR "----------------------------------------------\n";
}
if ($flag_tagcmd) {
&process_tag_command;
} else {
&get_loginfo;
&process_cvs_info;
}
if( $flag_debug){
print STDERR "----------------------------------------------\n";
print STDERR @outlist;
print STDERR "----------------------------------------------\n";
}
&mail_notification;
0;
sub process_args {
while (@ARGV) {
$arg = shift @ARGV;
if ($arg eq '-d') {
$flag_debug = 1;
print STDERR "Debug turned on...\n";
} elsif ($arg eq '-r') {
$cvsroot = shift @ARGV;
} elsif ($arg eq '-t') {
$flag_tagcmd = 1;
last; # Keep the rest in ARGV; they're handled later.
} elsif ($arg eq '-h') {
$mailhost = shift @ARGV;
} else {
push(@mailto, $arg);
}
}
if( $repository eq '' ){
open( REP, "<CVS/Repository");
$repository = <REP>;
chop($repository);
close(REP);
}
$repository =~ s:^$cvsroot/::;
$repository =~ s:^$envcvsroot/::;
if (!$flag_tagcmd) {
if( open( REP, "<CVS/Tag") ) {
$repository_tag = <REP>;
chop($repository_tag);
close(REP);
}
}
}
sub get_loginfo {
if( $flag_debug){
print STDERR "----------------------------------------------\n";
}
# Iterate over the body of the message collecting information.
#
while (<STDIN>) {
chop; # Drop the newline
if( $flag_debug){
print STDERR "$_\n";
}
if (/^In directory/) {
next;
}
if (/^Modified Files/) { $state = $STATE_CHANGED; next; }
if (/^Added Files/) { $state = $STATE_ADDED; next; }
if (/^Removed Files/) { $state = $STATE_REMOVED; next; }
if (/^Log Message/) { $state = $STATE_LOG; next; }
s/^[ \t\n]+//; # delete leading whitespace
s/[ \t\n]+$//; # delete trailing whitespace
if ($state == $STATE_CHANGED) { push(@changed_files, split); }
if ($state == $STATE_ADDED) { push(@added_files, split); }
if ($state == $STATE_REMOVED) { push(@removed_files, split); }
if ($state == $STATE_LOG) { push(@log_lines, $_); }
}
if( $flag_debug){
print STDERR "----------------------------------------------\n"
. "changed files: @changed_files\n"
. "added files: @added_files\n"
. "removed files: @removed_files\n";
print STDERR "----------------------------------------------\n";
}
}
sub process_cvs_info {
local($d,$fn,$rev,$mod_time,$sticky,$tag,$stat,@d,$l,$rcsfile);
if (!open(ENT, "<CVS/Entries.Log" )) {
open(ENT, "<CVS/Entries");
}
$time = time;
while( <ENT> ){
chop;
($d,$fn,$rev,$mod_time,$sticky,$tag) = split(/\//);
$stat = 'C';
for $i (@changed_files, "BEATME.NOW", @added_files ) {
if( $i eq "BEATME.NOW" ){ $stat = 'A'; }
if($i eq $fn ){
$rcsfile = "$envcvsroot/$repository/$fn,v";
if( ! -r $rcsfile ){
$rcsfile = "$envcvsroot/$repository/Attic/$fn,v";
}
open(LOG, "/tools/ns/bin/rlog -N -r$rev $rcsfile |")
|| print STDERR "dolog.pl: Couldn't run rlog\n";
while(<LOG>){
if (/^date:.* author: ([^;]*);.*/) {
$username = $1;
if (/lines: \+([0-9]*) -([0-9]*)/) {
$lines_added = $1;
$lines_removed = $2;
}
}
}
close( LOG );
push(@outlist, ("$stat|$time|$username|$cvsroot|$repository|$fn|$rev|$sticky|$tag|$lines_added|$lines_removed\n"));
}
}
}
close(ENT);
for $i (@removed_files) {
push( @outlist, ("R|$time|$username|$cvsroot|$repository|$i|||$repository_tag\n"));
}
push (@outlist, "LOGCOMMENT\n");
push (@outlist, join("\n",@log_lines));
push (@outlist, "\n:ENDLOGCOMMENT\n");
}
sub process_tag_command {
local($str,$part,$time);
$time = time;
$str = "Tag|$cvsroot|$time";
while (@ARGV) {
$part = shift @ARGV;
$str .= "|" . $part;
}
push (@outlist, ("$str\n"));
}
sub do_commitinfo {
}
sub get_response_code {
my ($expecting) = @_;
# if ($flag_debug) {
# print STDERR "SMTP: Waiting for code $expecting\n";
# }
while (1) {
my $line = <S>;
# if ($flag_debug) {
# print STDERR "SMTP: $line";
# }
if ($line =~ /^[0-9]*-/) {
next;
}
if ($line =~ /(^[0-9]*) /) {
my $code = $1;
if ($code == $expecting) {
# if ($flag_debug) {
# print STDERR "SMTP: got it.\n";
# }
return;
}
die "Bad response from SMTP -- $line";
}
}
}
sub mail_notification {
chop(my $hostname = `/bin/hostname`);
my ($remote,$port, $iaddr, $paddr, $proto, $line);
$remote = $mailhost;
$port = 25;
if ($port =~ /\D/) { $port = getservbyname($port, 'tcp') }
die "No port" unless $port;
$iaddr = inet_aton($remote) || die "no host: $remote";
$paddr = sockaddr_in($port, $iaddr);
$proto = getprotobyname('tcp');
socket(S, PF_INET, SOCK_STREAM, $proto) || die "socket: $!";
connect(S, $paddr) || die "connect: $!";
select(S); $| = 1; select(STDOUT);
get_response_code(220);
print S "EHLO $hostname\n";
get_response_code(250);
print S "MAIL FROM: bonsai-daemon\@$hostname\n";
get_response_code(250);
foreach $i (@mailto) {
print S "RCPT TO: $i\n";
get_response_code(250);
}
print S "DATA\n";
get_response_code(354);
# Get one line starting with "354 ".
if ($flag_tagcmd) {
print S "Subject: cvs tag in $repository\n";
} else {
print S "Subject: cvs commit to $repository\n";
}
print S "\n";
print S @outlist, "\n";
print S ".\n";
get_response_code(250);
print S "QUIT\n";
close(S);
}

View File

@@ -1,21 +0,0 @@
# The "editinfo" file is used to allow verification of logging
# information. It works best when a template (as specified in the
# rcsinfo file) is provided for the logging procedure. Given a
# template with locations for, a bug-id number, a list of people who
# reviewed the code before it can be checked in, and an external
# process to catalog the differences that were code reviewed, the
# following test can be applied to the code:
#
# Making sure that the entered bug-id number is correct.
# Validating that the code that was reviewed is indeed the code being
# checked in (using the bug-id number or a seperate review
# number to identify this particular code set.).
#
# If any of the above test failed, then the commit would be aborted.
#
# Actions such as mailing a copy of the report to each reviewer are
# better handled by an entry in the loginfo file.
#
# One thing that should be noted is the the ALL keyword is not
# supported. There can be only one entry that matches a given
# repository.

View File

@@ -1,32 +0,0 @@
# The "loginfo" file controls where "cvs commit" log information
# is sent. The first entry on a line is a regular expression which must match
# the directory that the change is being made to, relative to the
# $CVSROOT. If a match is found, then the remainder of the line is a filter
# program that should expect log information on its standard input.
#
# If the repository name does not match any of the regular expressions in this
# file, the "DEFAULT" line is used, if it is specified.
#
# If the name ALL appears as a regular expression it is always used
# in addition to the first matching regex or DEFAULT.
#
# You may specify a format string as part of the
# filter. The string is composed of a `%' followed
# by a single format character, or followed by a set of format
# characters surrounded by `{' and `}' as separators. The format
# characters are:
#
# s = file name
# V = old version number (pre-checkin)
# v = new version number (post-checkin)
#
ALL $CVSROOT/CVSROOT/dolog.pl -h 127.0.0.1 -r /cvsroot bonsai-new-checkin-daemon@lounge.mozilla.org
ALL $CVSROOT/CVSROOT/cvsmailfilter.pl -a -u http://bonsai.mozilla.org -r /cvsroot -s %s cvs-adds@mozilla.org
mozilla/security $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/extensions/psm-glue $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/netwerk/security $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/netwerk/protocol/http/src $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/netwerk/socket/ssl $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/netwerk/socket/tests $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s mozilla-crypto-checkins@mozilla.org
mozilla/webtools $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s webtools-changed@warp.mcom.com
CVSROOT $CVSROOT/CVSROOT/cvsmailfilter.pl -u http://bonsai.mozilla.org -r /cvsroot -s %s -f modules cyeh@netscape.com leaf@netscape.com

View File

@@ -1,779 +0,0 @@
# Three different line formats are valid:
# key -a aliases...
# key [options] directory
# key [options] directory files...
#
# Where "options" are composed of:
# -i prog Run "prog" on "cvs commit" from top-level of module.
# -o prog Run "prog" on "cvs checkout" of module.
# -e prog Run "prog" on "cvs export" of module.
# -t prog Run "prog" on "cvs rtag" of module.
# -u prog Run "prog" on "cvs update" of module.
# -d dir Place module in directory "dir" instead of module name.
# -l Top-level directory only -- do not recurse.
#
# NOTE: If you change any of the "Run" options above, you'll have to
# release and re-checkout any working directories of these modules.
#
# And "directory" is a path to a directory relative to $CVSROOT.
#
# The "-a" option specifies an alias. An alias is interpreted as if
# everything on the right of the "-a" had been typed on the command line.
#
# You can encode a module within a module by using the special '&'
# character to interpose another module into the current module. This
# can be useful for creating a module that consists of many directories
# spread out over the entire source repository.
######################################################################
#
# Module that contains the LEGAL and the LICENSE file. This should be
# a part of every logical source pull for a component. Care should
# be given so that this module is not specified twice for a given
# source pull.
#
MozillaLicense -a \
mozilla/LEGAL \
mozilla/LICENSE
Grendel -a \
MozillaLicense \
mozilla/grendel
######################################################################
#
# Modules for the MozillaClassic Browser, based on the original
# layout engine. If you wish to develop on the Mozilla Classic
# codebase, pull using these modules and using the branch tag
# MozillaSourceClassic_19981026_BRANCH.
# These modules should be considered obsolete.
#
MozillaSource -a \
MozillaSourceWin \
MozillaSourceMac \
MozillaSourceUnix
MozillaSourceWin -a \
MozillaSourceCommon \
MozillaSourceWinOnly
MozillaSourceMac -a \
MozillaSourceCommon \
MozillaSourceMacOnly
MozillaSourceUnix -a \
MozillaSourceCommon \
MozillaSourceUnixOnly \
mozilla/cmd/xfe \
mozilla/cmd/gnomefe \
mozilla/cmd/qtfe \
mozilla/cmd/ybfe
MozillaSourceMotif -a \
MozillaSourceCommon \
mozilla/cmd/xfe \
MozillaSourceUnixOnly
MozillaSourceQtfe -a \
MozillaSourceCommon \
mozilla/cmd/qtfe \
MozillaSourceUnixOnly
MozillaSourceGnomefe -a \
MozillaSourceCommon \
mozilla/cmd/gnomefe \
MozillaSourceUnixOnly
MozillaSourceYbfe -a \
MozillaSourceCommon \
mozilla/cmd/ybfe \
MozillaSourceUnixOnly
MozillaSourceCommon -a \
mozilla/LEGAL \
mozilla/LICENSE \
mozilla/base \
mozilla/build \
!mozilla/build/mac/client.mac \
mozilla/include \
mozilla/caps \
mozilla/jpeg \
mozilla/js \
mozilla/lib/htmldlgs \
mozilla/lib/layout \
mozilla/lib/libcnv \
mozilla/lib/libdom \
mozilla/lib/libi18n \
mozilla/lib/liblayer \
mozilla/lib/libmisc \
mozilla/lib/libmime \
mozilla/lib/libmocha \
mozilla/lib/libnet \
mozilla/lib/libparse \
mozilla/lib/libpics \
mozilla/lib/libpwcac \
mozilla/lib/libstyle \
mozilla/lib/mailto \
mozilla/lib/plugin \
mozilla/lib/xlate \
mozilla/lib/xp \
mozilla/modules/calendar \
mozilla/modules/edtplug/classes \
mozilla/modules/edtplug/src \
mozilla/modules/edtplug/include \
mozilla/modules/libfont/classes \
mozilla/modules/libfont/public \
mozilla/modules/libfont/src \
mozilla/modules/libhook \
mozilla/modules/libimg \
mozilla/modules/libnls \
mozilla/modules/libpref \
mozilla/modules/libreg \
mozilla/modules/libutil \
mozilla/modules/oji \
mozilla/modules/plugin \
mozilla/modules/progress/src \
mozilla/modules/rdf \
mozilla/modules/schedulr \
mozilla/modules/security/freenav \
mozilla/modules/softupdt/classes \
mozilla/modules/softupdt/include \
mozilla/modules/softupdt/src \
mozilla/modules/xml \
mozilla/modules/zlib/src \
mozilla/nav-java/stubs \
mozilla/network \
mozilla/nsprpub \
mozilla/privacy \
mozilla/xpcom \
mozilla/l10n \
mozilla/dbm \
mozilla/README
MozillaSourceWinOnly -a \
mozilla/client.mak \
mozilla/cmd/makefile.win \
mozilla/cmd/wincom \
mozilla/cmd/winfe \
mozilla/config \
mozilla/lib/makefile.win \
mozilla/modules/coreincl \
mozilla/modules/edtplug/makefile.win \
mozilla/makefile.win \
mozilla/modules/libfont/jmcgen \
mozilla/modules/libfont/makefile.win \
mozilla/modules/libfont/producers/makefile.win \
mozilla/modules/libfont/producers/win \
mozilla/modules/libfont/producers/win/classes \
mozilla/modules/libfont/producers/win/classes/netscape \
mozilla/modules/libfont/producers/win/classes/netscape/fonts \
mozilla/modules/libfont/producers/win/src \
mozilla/modules/makefile.win \
mozilla/modules/progress/makefile.win \
mozilla/modules/progress/public \
mozilla/modules/security/makefile.win \
mozilla/modules/softupdt/makefile.win \
mozilla/modules/zlib/makefile.win \
mozilla/nav-java/makefile.win \
JavaStubWin
MozillaSourceUnixOnly -a \
mozilla/.cvsignore \
mozilla/Makefile \
mozilla/Makefile.in \
mozilla/configure \
mozilla/configure.in \
mozilla/allmakefiles.sh \
mozilla/cmd/Makefile \
mozilla/cmd/Makefile.in \
mozilla/cmd/stubfe \
mozilla/cmd/unixfe \
mozilla/config/.cvsignore \
mozilla/config/AIX.mk \
mozilla/config/BSD_OS.mk \
mozilla/config/DGUX.mk \
mozilla/config/FreeBSD.mk \
mozilla/config/HP-UX.mk \
mozilla/config/IRIX.mk \
mozilla/config/Linux.mk \
mozilla/config/NCR.mk \
mozilla/config/NEC.mk \
mozilla/config/NEWS-OS.mk \
mozilla/config/NEXTSTEP.mk \
mozilla/config/NetBSD.mk \
mozilla/config/OSF1.mk \
mozilla/config/OpenBSD.mk \
mozilla/config/QNX.mk \
mozilla/config/Rhapsody.mk \
mozilla/config/SCOOS.mk \
mozilla/config/SINIX.mk \
mozilla/config/SunOS.mk \
mozilla/config/SunOS4.mk \
mozilla/config/SunOS5.mk \
mozilla/config/UNIXWARE.mk \
mozilla/config/common.mk \
mozilla/config/config.mk \
mozilla/config/coreconf.mk \
mozilla/config/rules.mk \
mozilla/config/Makefile \
mozilla/config/Makefile.in \
mozilla/config/autoconf.mk.in \
mozilla/config/bdate.c \
mozilla/config/bdate.pl \
mozilla/config/aboutime.pl \
mozilla/config/bsdecho.c \
mozilla/config/clobber_miss.pl \
mozilla/config/config.guess \
mozilla/config/cvsco.pl \
mozilla/config/fastcwd.pl \
mozilla/config/gtscc.c \
mozilla/config/makecopy.c \
mozilla/config/mangle.c \
mozilla/config/mantomak.c \
mozilla/config/mkdepend \
mozilla/config/mkdetect \
mozilla/config/nfspwd.pl \
mozilla/config/nodl.pl \
mozilla/config/nsinstall.c \
mozilla/config/outofdate.pl \
mozilla/config/pathsub.c \
mozilla/config/pathsub.h \
mozilla/config/pkg2dpth.pl \
mozilla/config/ports \
mozilla/config/revdepth.pl \
mozilla/config/set-timebomb.pl \
mozilla/config/sj.pl \
mozilla/lib/Makefile \
mozilla/lib/Makefile.in \
mozilla/modules/edtplug/Makefile \
mozilla/modules/edtplug/Makefile.in \
mozilla/modules/libfont/jmcgen \
mozilla/modules/libfont/Makefile \
mozilla/modules/libfont/Makefile.in \
mozilla/modules/libfont/producers/Makefile \
mozilla/modules/libfont/producers/Makefile.in \
mozilla/modules/Makefile \
mozilla/modules/Makefile.in \
mozilla/modules/progress/Makefile \
mozilla/modules/progress/Makefile.in \
mozilla/modules/progress/public \
mozilla/modules/security/Makefile \
mozilla/modules/security/Makefile.in \
mozilla/modules/softupdt/Makefile \
mozilla/modules/softupdt/Makefile.in \
mozilla/modules/zlib/Makefile \
mozilla/modules/zlib/Makefile.in \
mozilla/nav-java/Makefile \
mozilla/nav-java/Makefile.in \
mozilla/lib/mariner \
JavaStubUnix
MozillaSourceMacOnly -a \
mozilla/config/mac \
mozilla/config/bdate.pl \
mozilla/config/aboutime.pl \
mozilla/config/mac-set-timebomb.pl \
mozilla/cmd/macfe \
mozilla/lib/mac/AutoAdmin \
mozilla/lib/mac/Includes \
mozilla/lib/mac/MacMemoryAllocator \
mozilla/lib/mac/Misc \
mozilla/lib/mac/MoreFiles \
mozilla/lib/mac/NSRuntime \
mozilla/lib/mac/NSStdLib \
mozilla/lib/mac/patches \
mozilla/lib/mac/PowerPlant \
mozilla/lib/mac/UserInterface \
mozilla/modules/coreincl \
mozilla/modules/edtplug/macbuild \
mozilla/modules/libfont \
mozilla/modules/progress/macbuild \
mozilla/modules/progress/public \
mozilla/modules/softupdt/macbuild \
mozilla/modules/zlib/macbuild \
mozilla/lib/mariner \
JavaStubMac
JavaStubAll -a \
JavaStubWin \
JavaStubMac \
JavaStubUnix
JavaStubCore -a \
mozilla/sun-java/stubs/include \
mozilla/sun-java/stubs/src
JavaStubMac -a \
JavaStubCore \
mozilla/sun-java/stubs/macbuild \
mozilla/sun-java/stubs/macjri
JavaStubUnix -a \
JavaStubCore \
mozilla/sun-java/Makefile \
mozilla/sun-java/Makefile.in \
mozilla/sun-java/stubs/jri \
mozilla/sun-java/stubs/Makefile \
mozilla/sun-java/stubs/Makefile.in
JavaStubWin -a \
JavaStubCore \
mozilla/sun-java/makefile.win \
mozilla/sun-java/stubs/jri \
mozilla/sun-java/stubs/makefile.win
######################################################################
#
# Modules for the raptor layout effort. Note that raptor dist is temporary
# until raptor is integrated into the mainline build.
#
RaptorDoc -a \
mozilla/LICENSE \
mozilla/LEGAL \
mozilla/README/nglayout
RaptorDist -a \
mozilla/configure.in \
mozilla/allmakefiles.sh \
mozilla/Makefile.in \
mozilla/makefile.win \
mozilla/build \
!mozilla/build/mac/client.mac \
mozilla/caps \
mozilla/config \
mozilla/dbm \
mozilla/editor \
mozilla/include \
mozilla/intl \
mozilla/jpeg \
JSClient \
mozilla/lib/liblayer \
mozilla/lib/libpwcac \
mozilla/lib/xp \
mozilla/modules/libimg \
mozilla/modules/libjar \
mozilla/modules/libpref \
mozilla/modules/libreg \
mozilla/modules/libutil \
mozilla/modules/oji \
mozilla/modules/plugin \
mozilla/modules/security/freenav \
mozilla/modules/zlib \
mozilla/nav-java \
mozilla/network \
mozilla/nsprpub \
mozilla/rdf \
mozilla/silentdl \
mozilla/sun-java \
mozilla/xpcom
RaptorLayout -a \
mozilla/base \
mozilla/dom \
mozilla/gfx \
mozilla/expat \
mozilla/htmlparser \
mozilla/layout \
mozilla/view \
mozilla/webshell \
mozilla/widget
Raptor -a \
RaptorDoc \
RaptorDist \
RaptorLayout
RaptorWin -a \
Raptor
RaptorUnix -a \
Raptor \
mozilla/aclocal.m4 \
mozilla/nglayout.mk
RaptorMac -a \
Raptor \
mozilla/build/mac \
mozilla/cmd/macfe/applevnt \
mozilla/cmd/macfe/central \
mozilla/cmd/macfe/gui \
mozilla/cmd/macfe/include \
mozilla/cmd/macfe/pch \
mozilla/cmd/macfe/projects \
mozilla/cmd/macfe/utility \
mozilla/lib/mac/MacMemoryAllocator \
mozilla/lib/mac/Misc \
mozilla/lib/mac/MoreFiles \
mozilla/lib/mac/NSRuntime \
mozilla/lib/mac/NSStdLib \
mozilla/lib/mac/PowerPlant
#####################
# An all inclusive modules for tinderbox to use
#####################
RaptorAll -a \
RaptorWin \
RaptorUnix \
RaptorMac
#####################
# Transformiix module (xslt processor)
#####################
TransformiixStandalone -a \
mozilla/config \
mozilla/expat \
mozilla/extensions/transformiix
#######################################################################
# Modules for the Directory SDK. There are two users of the libldap
# Mozilla and the DirectorySDK. Maintained by Chuck Boatwright
# cboatwri@netscape.com
#
DirectorySDKSource -a \
DirectorySDKSourceCommon \
DirectorySDKSourceBuild
DirectorySDKSourceC -a \
mozilla/directory/ldapsdk.mak \
mozilla/directory/ldapsdk.mk \
mozilla/directory/buildsdk.txt \
mozilla/directory/Makefile \
mozilla/directory/c-sdk
DirectorySDKSourceJava -a \
mozilla/directory/buildjsdk.txt \
mozilla/directory/java-sdk
DirectorySDKSourceCommon -a \
DirectorySDKSourceC \
DirectorySDKSourceJava
DirectorySDKSourceBuild -a \
mozilla/config \
mozilla/nsprpub
PerLDAP -a \
mozilla/directory/perldap
#######################################################################
# Modules for the Messenging Server SDK. Code maintained by Prasad Yendluri
# (prasad@netscape.com)
#
MessagingSDK -a \
mozilla/msgsdk
#######################################################################
# Modules for Calendar client.
# (spider@netscape.com)
#
CalendarClient -a \
mozilla/calendar \
mozilla/modules/calendar \
mozilla/htmlparser \
mozilla/gconfig \
mozilla/gfx \
mozilla/widget \
mozilla/xpfc \
mozilla/view
#######################################################################
# Modules for the JavaScript
# (fur@netscape.com)
#
JSRef -a \
mozilla/js/src
#
# Can't pull all of js/src, because the server-style config filenames
# are illegal on some operating systems.
#
JSClient -a \
mozilla/js/Makefile.in \
mozilla/js/makefile.win \
mozilla/js/macbuild \
mozilla/js/src \
mozilla/js/.cvsignore \
!mozilla/js/src/config \
!mozilla/js/src/editline \
!mozilla/js/src/liveconnect/config \
!mozilla/js/src/mininspr \
!mozilla/js/src/os \
!mozilla/js/src/perlconnect \
!mozilla/js/src/sh \
!mozilla/js/src/xpcom
#######################################################################
# Modules for SeaMonkey
# (5.0 Browser and 5.0 Mail/News based on nglayout)
#
# Initial wild ass guess: cyeh@netscape.com
# Second guess: mcafee@netscape.com
#
# We might want to do the platform-specific stuff like:
# SeaMonkeyCoreFoo = SeaMonkeyCore + <stuff for platform Foo>
# and so on, for each module.
#
NSPR -a \
mozilla/nsprpub
SeaMonkeyCore -a \
mozilla/.cvsignore \
mozilla/README \
mozilla/README.txt \
mozilla/client.mk \
mozilla/client.mak \
mozilla/configure \
mozilla/configure.in \
mozilla/allmakefiles.sh \
mozilla/Makefile.in \
mozilla/makefile.win \
mozilla/aclocal.m4 \
mozilla/build \
!mozilla/build/mac/client.mac \
mozilla/caps \
mozilla/config \
mozilla/dbm \
mozilla/db/.cvsignore \
mozilla/db/Makefile.in \
mozilla/db/makefile.win \
mozilla/db/mork \
mozilla/db/mdb \
mozilla/docshell \
mozilla/embedding \
mozilla/gc/boehm \
mozilla/include \
mozilla/intl \
mozilla/jpeg \
mozilla/js/jsd \
!mozilla/js/jsd/jsdb \
!mozilla/js/jsd/classes \
!mozilla/js/jsd/corba \
!mozilla/js/jsd/java \
!mozilla/js/jsd/javawrap \
JSClient \
mozilla/lib/mac/MacMemoryAllocator \
mozilla/lib/mac/Misc \
mozilla/lib/mac/MoreFiles \
mozilla/lib/mac/NSRuntime \
mozilla/lib/mac/NSStdLib \
mozilla/lib/mac/NSStartup \
mozilla/lib/mac/PowerPlant \
mozilla/lib/mac/InterfaceLib \
mozilla/lib/mac/embedding \
mozilla/modules/appfilelocprovider \
mozilla/modules/libimg \
mozilla/modules/libjar \
mozilla/modules/libpref \
mozilla/modules/libreg \
mozilla/modules/libutil \
mozilla/modules/mpfilelocprovider \
mozilla/modules/oji \
mozilla/modules/plugin \
mozilla/modules/security/freenav \
mozilla/modules/staticmod \
mozilla/modules/zlib \
mozilla/nav-java \
mozilla/network \
mozilla/netwerk \
mozilla/nglayout.mk \
mozilla/plugin/oji \
mozilla/profile \
mozilla/rdf \
mozilla/string \
mozilla/sun-java \
mozilla/tools/leaky \
mozilla/tools/preloader \
mozilla/tools/elf-dynstr-gc \
mozilla/uriloader \
mozilla/xpcom \
mozilla/xpinstall \
MozillaLicense
SeaMonkeyLayout -a \
SeaMonkeyCore \
mozilla/content \
mozilla/dom \
mozilla/gfx \
mozilla/htmlparser \
mozilla/layout \
mozilla/view \
mozilla/webshell \
mozilla/widget \
mozilla/expat
SeaMonkeyXPToolKit -a \
SeaMonkeyLayout \
mozilla/themes \
mozilla/xpfe
SeaMonkeyBrowser -a \
mozilla/directory/xpcom \
mozilla/editor/Makefile.in \
mozilla/editor/public \
mozilla/extensions \
SeaMonkeyXPToolKit
# This needs work!
SeaMonkeyMailNews -a \
SeaMonkeyLayout \
mozilla/mailnews \
!mozilla/mailnews/db/mdb \
!mozilla/mailnews/db/mork \
SeaMonkeyEditor -a \
SeaMonkeyBrowser \
mozilla/editor \
mozilla/mailnews
SeaMonkeyL10n -a \
mozilla/l10n/makefile.win \
mozilla/l10n/makefiles.all \
mozilla/l10n/Makefile.in \
mozilla/l10n/langpacks/makefile.win \
mozilla/l10n/langpacks/Makefile.in \
mozilla/l10n/langpacks/en-DE \
mozilla/l10n/langpacks/en-GB
#############################################################
# This module is the whole banana, and this
# is the module that tinderbox and bonsai should
# track.
#
# Right now Editor pulls Browser which pulls XPToolKit
# which pulls Layout which pulls Core. But eventually,
# there will be more differentiation and uniqueness so
# All will need to contain more than Editor. Perhaps it
# will contain SeaMonkeyUnix, SeaMonkeyMac, SeaMonkeyWin
# et cetera, et cetera, et cetera. But that is in the
# future. --sarah
#
SeaMonkeyAll -a \
SeaMonkeyEditor \
SeaMonkeyL10n
Blackwood -a \
mozilla/java
SeaMonkeyBlackwood -a \
SeaMonkeyAll \
Blackwood
#############################################################
#
# Alexander Larsson's GTK+ widget for embedding mozilla into
# gtk applications.
#
#############################################################
GtkMozilla -a \
mozilla/webshell/embed/gtk
############################################################
#
# Module for Chimera, the embedded MacOSX browser.
# Because this project is mixing a branched SeaMonkeyAll
# with a trunk mozilla/chimera, we need a small module here
# for tinderbox to track mozilla/chimera. This module
# should be temporary until mozilla/chimera joins another
# major module. -mcafee
#
#############################################################
Chimera -a \
mozilla/chimera \
SeaMonkeyAll
#############################################################
#
# Modules For Webtools
#
#############################################################
Bugzilla -a \
mozilla/webtools/bugzilla
Bonsai -a \
mozilla/webtools/bonsai
LXR -a \
mozilla/webtools/lxr
Tinderbox -a \
mozilla/webtools/tinderbox
Webtools -a \
Bugzilla \
Bonsai \
LXR \
Tinderbox
#############################################################
#
# Module for the java webclient (edburns)
#
#############################################################
Webclient -a \
mozilla/java/Makefile.in \
mozilla/java/Makefile.win \
mozilla/java/README \
mozilla/java/README.commercial \
mozilla/java/build \
mozilla/java/config \
mozilla/java/dom \
mozilla/java/external \
mozilla/java/makefiles \
mozilla/java/util \
mozilla/java/webclient
#############################################################
#
# Module for iPlanet Network Security Services
#
#############################################################
NSS -a \
mozilla/security/nss \
mozilla/security/coreconf
#############################################################
#
# Module for Mozilla Tinderbox
#
#############################################################
MozillaTinderboxAll -a \
SeaMonkeyAll \
mozilla/security/psm \
mozilla/accessible \
mozilla/gfx2 \
mozilla/security/manager \
mozilla/tools/trace-malloc \
mozilla/modules/libpr0n
# mozilla uses mozilla/security/manager from
# the tip, not the nss branch
#
# commenting out NSS because the client uses a static tag so watching
# checkins as they happen is of no use to us
# NSS \
# commenting out NSPR because tinderbox is broken in such a way that
# checkins to the branch (which we care about) do not show up but
# checkins do the tip (which we don't care about) do. Getting rid of
# this so its not 100% false positives.
# NSPR \
# same with ldap
# mozilla/directory/c-sdk
# This module will let us track branches where all the subcomponents
# are on the same tag
MozillaBranchTinderboxAll -a \
SeaMonkeyAll \
NSS \
NSPR \
mozilla/directory/c-sdk

View File

@@ -1,14 +0,0 @@
# The "notify" file controls where notifications from watches set by
# "cvs watch add" or "cvs edit" are sent. The first entry on a line is
# a regular expression which is tested against the directory that the
# change is being made to, relative to the $CVSROOT. If it matches,
# then the remainder of the line is a filter program that should contain
# one occurrence of %s for the user to notify, and information on its
# standard input.
#
# "ALL" or "DEFAULT" can be used in place of the regular expression.
#
# For example:
#ALL mail %s -s "CVS notification"
ALL $CVSROOT/CVSROOT/sendnotification.pl %s

View File

@@ -1,369 +0,0 @@
# DO NOT EDIT THIS FILE! You must instead go to http://warp/mozilla.org, and
# tweak things from there.
aaronl%netscape.com:S0MUPohMWfaMo:cvsuser
adu%sparc.spb.su:WLKx.LAESUUi.:cvsuser
agulbra%troll.no:lETTiVluCyWos:cvsuser
akhil.arora%sun.com:tG7tQfICukUNg:cvsuser
akkana%netscape.com:/6KEK8AoMvE26:cvsuser
alecf%netscape.com:xY/EzwiSEg43U:cvsuser
alex.fritze%crocodile-clips.com:.qnz.iJA.rUaQ:cvsuser
alexsavulov%netscape.com:NL.2.L.pOoEE.:cvsuser
alla%lysator.liu.se:PfaCJJD7S/Vyc:cvsuser
amardare%qnx.com:p3TTBfjz3CQ1A:cvsuser
anatoliya%netscape.com:gzzdCC45etLpk:cvsuser
andreas.otte%debitel.net:kydQ2aAIGwhkA:cvsuser
andrew%redhat.com:Q5vhhvO.ksq/E:cvsuser
andreww%netscape.com:VDb/gyVOKB8gg:cvsuser
angelon%netscape.com:xLYuHRKI0gIh6:cvsuser
ann.adamcik%sun.com:McRIlR2v7WMXQ:cvsuser
ann.sunhachawee%eng.sun.com:acFpiClWrngnU:cvsuser
anthonyd%netscape.com:3cZ8Ug3ggdAfE:cvsuser
antonio.xu%sun.com:xb9jwUyu9kmog:cvsuser
arielb%rice.edu:18fBUQf4tjW/Y:cvsuser
arougthopher%lizardland.net:A/x64t5yyAkWE:cvsuser
asa%mozilla.org:KwQFH5YHrDGVw:cvsuser
asasaki%netscape.com:eW4lJwcDcifpA:cvsuser
ashishbhatt%netscape.com:hAtS/UPSRHvCg:cvsuser
ashuk%eng.sun.com:QrgopBbFpT10Y:cvsuser
attinasi-moz%attinasi.org:KQdxTI4aFdReA:cvsuser
av%netscape.com:GZ3mu2MifoZiU:cvsuser
axel%pike.org:mbSWqS64YZTQw:cvsuser
badami%netscape.com:EHJb/laen2MnI:cvsuser
bae%sparc.spb.su:Q2qzYOL6zE5.I:cvsuser
bbaetz%student.usyd.edu.au:JhmLaLDTsT/h2:cvsuser
beard%netscape.com:2Eed7KIBNPtL6:cvsuser
ben%netscape.com:7l9euazKDQhxk:cvsuser
bernd.mielke%snafu.de:diOpGSeH3syIs:cvsuser
bhart00%yahoo.com:AnZyRL6ytm1.Q:cvsuser
bienvenu%netscape.com:dzcEj09V1HQLg:cvsuser
bishakhabanerjee%netscape.com:bLgNOlaDbR.lc:cvsuser
blakeross%telocity.com:iecsxCayirMQw:cvsuser
blizzard%redhat.com:W86ZbnavsJzxk:cvsuser
blythe%netscape.com:UXnssIXpwUtBU:cvsuser
bmartin%netscape.com:VDvmT5ew0s2Uk:cvsuser
bnesse%netscape.com:.a3I0OvXR0BaQ:cvsuser
bolian.yin%sun.com:SXDI.XmKRDr7s:cvsuser
braddr%puremagic.com:Tzs8cIqrzzC/I:cvsuser
brade%netscape.com:ouetdVzWLzsWs:cvsuser
bratell%lysator.liu.se:GLG2cm83vaqBk:cvsuser
brendan%mozilla.org:q5aR3MqARGBMA:cvsuser
briane%qnx.com:pKLtqULcssSZo:cvsuser
bruce%cubik.org:.VcS8pxE3d5rQ:cvsuser
bryner%netscape.com:gy5stVpStoVNw:cvsuser
bsharma%netscape.com:vjlb1xJC7MsAk:cvsuser
bstell%ix.netcom.com:/ZdK7gz9SA/RU:cvsuser
bugreport%peshkin.net:PgnY246SzUcHk:cvsuser
bzbarsky%mit.edu:YySJ0ECW0UqcM:cvsuser
caillon%returnzero.com:crXJoEJGqOt1c:cvsuser
carl.wong%intel.com:60H5NoMHeEpvI:cvsuser
cathleen%netscape.com:g4oBIcfbxZzt.:cvsuser
cavin%netscape.com:Wd/zikwQdE62c:cvsuser
cbiesinger%web.de:SmMxtOg6tGNJg:cvsuser
ccarlen%netscape.com:KYg00rzfYX4vs:cvsuser
chak%netscape.com:muP/8gmdIYQgM:cvsuser
chanial%noos.fr:9sotrJUSTkw2o:cvsuser
chofmann%netscape.com:7KDChg0pZV2C6:cvsuser
Chris.Yeh%nokia.com:98WX9EeAZIt/6:cvsadm
chrisk%netscape.com:iAECHtKFagLSw:cvsuser
claudius%netscape.com:gJezy23y0r4wI:cvsuser
cls%seawood.org:YLAr7ajnaXezg:cvsuser
cltbld%netscape.com:mla4CZgCloBSU:cvsuser
cmanske%netscape.com:wZ2fFz6Y4JIkk:cvsuser
colin%theblakes.com:1fbT0DKTKXTsk:cvsuser
colinp%oeone.com:o4A5a8g5U/tO2:cvsuser
cotter%netscape.com:JZ1rqINZKa.Ig:cvsuser
curt%netscape.com:/rx/ZFSvRo2cI:cvsuser
dac%x.cx:xZwzT4et.TSYY:cvsuser
Dale.Stansberry%Nexwarecorp.com:iFmg8YUyFSpA.:cvsuser
danm%netscape.com:3h6FdkzmMqnyA:cvsuser
darin%netscape.com:BFlqb/kSuCdKo:cvsuser
dbaron%fas.harvard.edu:z3R2dyupEH6yk:cvsuser
dbradley%netscape.com:EOOl4wp9MNcU6:cvsuser
dbragg%netscape.com:k34vc.FRrLRYI:cvsuser
dcone%netscape.com:dWcV1sBlGlAHU:cvsuser
ddkilzer%theracingworld.com:srB5Z/2wN1VDw:cvsuser
ddrinan%netscape.com:4vs6JokcLeYkQ:cvsuser
dean.jackson%cmis.csiro.au:CP7hJzztTs3Es:cvsuser
dean_tessman%hotmail.com:AM2BZ7M0nDhlM:cvsuser
depstein%netscape.com:nMGeNsPMko07s:cvsuser
despotdaemon%netscape.com:zJJgZOGMRo/FE:cvsadm
dinglis%qnx.com:ox85zqaZiiSk6:cvsuser
djani%netscape.com:jnrv0Mv0Kb77.:cvsuser
dkl%redhat.com:Jb37f1UZbg4g2:cvsuser
dmose%mozilla.org:sTIo1zYddteQc:cvsadm
dmose%netscape.com:kskyAAnpkNv6c:cvsadm
donley%tekka.wwa.com:ZdWwac/UPNyG.:cvsuser
donm%bluemartini.com:bKHsN8gBK/fp2:cvsuser
dougt%netscape.com:6Dpld8jLb0Mcg:cvsuser
dprice%netscape.com:rGU08EfoiqRFk:cvsuser
dpsuresh%netscape.net:jt.S0eDMnQVDo:cvsuser
dr%sleepy.at:vG1uOW9SKYi0o:cvsuser
drepper%redhat.com:p/CH9PcK4BRCs:cvsuser
driehuis%playbeing.org:BbR6IahGk6yGc:cvsuser
dsirnapalli%netscape.com:hbQy6f/ZU4m7o:cvsuser
ducarroz%netscape.com:B9ih04P7FDhrg:cvsuser
dveditz%netscape.com:S1X7iuOVZr0tI:cvsuser
dwhoward%earthling.net:Fll3t.CIpLlCU:cvsuser
edburns%acm.org:z7zqfOtPH9oic:cvsuser
edwin%woudt.nl:8dZB6Qv1GFw4E:cvsuser
endico%mozilla.org:yXO.M/SUdhzAc:cvsadm
ere%atp.fi:HlHx6Z2VwOLeg:cvsuser
eric%droidlogic.com:G0SdDP5pMwVew:cvsuser
ericb%neoplanet.com:D63L651L6w.a2:cvsuser
exv%randomc.com:TuqUP2cz/Q0gU:cvsuser
eyork%netscape.com:VrUopS3iDoSJc:cvsuser
friedman%splode.com:mZ5UQ4/qb5h3E:cvsadm
ftang%netscape.com:cjA4Oe7qangyQ:cvsuser
gagan%netscape.com:aJDYc91m7tmpI:cvsuser
gerv%gerv.net:/3awrKKpfLPvQ:cvsuser
gilbert.fang%sun.com:DJJSeZLDeXl0Y:cvsuser
girish.manwani%eng.sun.com:0Nm63TloVl5Rw:cvsuser
glazman%netscape.com:voZRrCYpgF9AU:cvsuser
glen.beasley%sun.com:Bg3n.ccr13OvI:cvsuser
gordon%netscape.com:MCComT.xg8/GM:cvsuser
grail%cafebabe.org:KsBL5nzVbWFC6:cvsuser
granrose%netscape.com:xndKEgLhYUUUY:cvsuser
guru%startrek.com:FeXuLzEvXT132:cvsuser
harishd%netscape.com:A0zdbDQ36sqs.:cvsuser
heikki%netscape.com:52AbDkgxmkRfY:cvsuser
henry.jia%sun.com:u9SJe2/103fMo:cvsuser
hewitt%netscape.com:pE1RTplEofSd2:cvsuser
hidday%geocities.com:A1nFYdvMQRKDI:cvsuser
hong.lu%eng.sun.com:ub28mE.N622oQ:cvsuser
hwaara%chello.se:74eCB7AZi/Bm2:cvsuser
hyatt%netscape.com:/Sepj5wnpvupA:cvsuser
ian.mcgreer%sun.com:86YhVbbpm8aZ2:cvsuser
ian%hixie.ch:nibu2mA5/kgco:cvsuser
idk%eng.sun.com:hGFoMfxrF7eCM:cvsuser
igor%mir2.org:MM9XCaPQ9hSyA:cvsuser
inaky.gonzalez%intel.com:S7JSies.2wToc:cvsuser
inn%sparc.spb.su:YAofF66Hjffik:cvsuser
jab%atdot.org:EQ0cIL6giNkWw:cvsuser
jaggernaut%netscape.com:JfxrrkZerNZv.:cvsuser
jake%bugzilla.org:mjldF4ES.KxbI:cvsuser
janc%netscape.com:Cv4z.zALqxr1M:cvsuser
jat%princeton.edu:0P0EK1s5q3OCk:cvsuser
javi%netscape.com:WkJc6UpXUyLVw:cvsuser
jay.yan%sun.com:lgDae/1lMfLrk:cvsuser
jayashri.visvanathan%sun.com:7fdqZHWKclkck:cvsuser
jband%netscape.com:jc1KB4qvBDWxE:cvsuser
jcgriggs%sympatico.ca:hQ/ITeFfitEvw:cvsuser
jdunn%netscape.com:nwle/bqcCtTMA:cvsuser
jeff.dyer%compilercompany.com:O.dwVxqCyvmqQ:cvsuser
jefft%netscape.com:uEhLAvoBHSlBc:cvsuser
jelwell%netscape.com:phAeFbVmVsIFg:cvsuser
Jerry.Kirk%Nexwarecorp.com:iSvw9A.T6nH6w:cvsuser
jerry.tan%sun.com:3vzkwo3LNd8Mk:cvsuser
jfrancis%netscape.com:n8gH7es/9NB6U:cvsuser
jg%meer.net:gimPrIwXcAep2:cvsuser
jgaunt%netscape.com:bwZbPN1gYEnPo:cvsuser
jglick%netscape.com:MW7f8SLLptnEw:cvsuser
jgmyers%netscape.com:tj/q7ALULIlLM:cvsuser
jhuntley%julian.uwo.ca:0Kp/QUcK6Vb26:cvsuser
jimmylee%netscape.com:QRGr4KRc3Bjvc:cvsuser
jim_nance%yahoo.com:MW2pItooimXQc:cvsuser
jj%netscape.com:Slemj8mwbIPao:cvsadm
jkeiser%netscape.com:7BrSo3.f8G5Gw:cvsuser
jmas%softcatala.org:PmaWVAdMzkM7A:cvsuser
joe.chou%sun.com:peT1nWrch0xGo:cvsuser
john.marmion%ireland.sun.com:c6A3GBlY0bSbU:cvsuser
John.Wilson%Nexwarecorp.com:hfzTdvMI7KleY:cvsuser
joki%netscape.com:MnZq0Nx3SCImc:cvsuser
jonas.utterstrom%vittran.norrnod.se:Yq1pP.nR9EEcY:cvsuser
jouni%heikniemi.net:ykttS9UKWXc9E:cvsuser
jpierre%netscape.com:2ebjC0cACURyU:cvsuser
jrgm%netscape.com:3ix9Y5PU9Qruw:cvsuser
jruderman%hmc.edu:X40q5fD7Yno4s:cvsuser
jshin%mailaps.org:j6/TcPcy/KYgg:cvsuser
jst%netscape.com:ry1WSdsxrYVhg:cvsuser
jsun%netscape.com:coq.3Xx7ARTjs:cvsuser
justdave%syndicomm.com:gH/q.1W.wLBGQ:cvsuser
jwz%mozilla.org:OdVBvbcKAZC5c:cvsuser
kaie%netscape.com:.hgVIsvtes.Fw:cvsuser
kairo%kairo.at:P3GfvvKlerCks:cvsuser
karnaze%netscape.com:C.H2iRqFy7CnY:cvsuser
katakai%japan.sun.com:qJPfrx26UNm2.:cvsuser
kbaker%eb.com:jQBbk4NHGcX0I:cvsuser
keith%kvisco.com:7u.twuUBsFGJA:cvsuser
kerz%netscape.com:c3yxcpnGeYqRU:cvsuser
kestes%walrus.com:5Ld0f8MhzQggw:cvsuser
kevin%perldap.org:OR9AnICPijq1g:cvsuser
khanson%netscape.com:TFWnuwfuYSFnI:cvsuser
kiko%async.com.br:Uz8pBMTzv6gpo:cvsuser
kin%netscape.com:RexUJ7MbhHOeE:cvsuser
kirk.erickson%sun.com:2ju/p7xptfkFQ:cvsuser
kmcclusk%netscape.com:KiXYwpHlCP1nE:cvsuser
koehler%mythrium.com:0vfTLcKn6XhV6:cvsuser
kyle.yuan%sun.com:4pSzbqjeADpcc:cvsuser
laa%sparc.spb.su:xaXKTqerGGoxE:cvsuser
law%netscape.com:QQU7Gc4FME9Ek:cvsuser
leaf%mozilla.org:u8bmgbEVjQQ6k:cvsadm
leif%ogre.com:T8QO0FEdoLHd2:cvsuser
leila.garin%eng.sun.com:Cz4LcsTHYzTwk:cvsuser
loadrunner%betak.net:IUk5X6IaJ5fTM:cvsuser
locka%iol.ie:Odt22ztoqh7Pc:cvsuser
lordpixel%mac.com:5d2.szagWZ00M:cvsuser
louis.martin%eng.sun.com:QsJ91Lm0/Y/0Y:cvsuser
lpham%netscape.com:E06CUoNSPOyqg:cvsuser
lsv%sparc.spb.su:owGMQKmCe2l1M:cvsuser
malini%eng.sun.com:V9F6kZpJe8HNc:cvsuser
mang%subcarrier.org:VuSc/CvF/y94A:cvsuser
manpreet.singh%sun.com:BWz7bfdfwrbEI:cvsuser
maolson%earthlink.net:k1eI.1dDx/fkI:cvsuser
margaret.chan%sun.com:W3v8XaNRwpmZY:cvsuser
martinl%netscape.com:tBTLPNQZ7oRdM:cvsuser
matthias%sorted.org:OzME313V9XMNo:cvsuser
matty%chariot.net.au:c/z7/vNQ/Vv1I:cvsuser
mbarnson%sisna.com:hRMbA3bW5q6Ak:cvsuser
mcafee%netscape.com:Y/0zK7Dff2W8.:cvsadm
mcs%netscape.com:1K9aYq1ivwd6s:cvsuser
mhammond%skippinet.com.au:T1kpFNZuhvQ0I:cvsuser
mhein%sun.com:zDB.Gdg/nMOq6:cvsuser
Michael.Kedl%Nexwarecorp.com:/vumJNxEIWQnk:cvsuser
michael.lowe%bigfoot.com:SUFJXqQg3gpwo:cvsuser
michaelp%meer.net:jB2yR8pV9vSN2:cvsuser
mike+mozilla%meer.net:3rKv1ZMBpeR36:cvsuser
mike%neoplanet.com:BXgJNsh4IWFgQ:cvsuser
mike%wynholds.com:P8iDbiX0p6xzQ:cvsuser
mikep%oeone.com:fxxKFOIsaxlQs:cvsuser
miodrag%netscape.com:6t6mBrr0.woK6:cvsuser
mitchf%netscape.com:SpJhZNzzTZL5E:cvsuser
mj%digicool.com:.QcUkkqXQe9kE:cvsuser
mjudge%netscape.com:wyp/yIxuSIV4w:cvsuser
mkaply%us.ibm.com:7AlaMZqXustsg:cvsuser
momoi%netscape.com:cTHpmapFPYprI:cvsuser
morse%netscape.com:1f8Ob4wB7JJ5I:cvsuser
mostafah%oeone.com:DaYs.xDcUaa72:cvsuser
mozilla.BenB%bucksch.org:7/oOTh8e41HmY:cvsuser
mscott%netscape.com:dHLGTClZyMWG6:cvsuser
mstoltz%netscape.com:4Ddf36CZMroWw:cvsuser
msw%gimp.org:KB4CGqyGWzK5w:cvsuser
mwyner%ogre.com:YTb.PSMPtP7Sw:cvsuser
myk%mozilla.org:18.V6xy5IQ3Fc:cvsadm
m_kato%ga2.so-net.ne.jp:FoloD5kECUuTo:cvsuser
namachi%netscape.com:qxsU3ci9Y1Y4k:cvsuser
naving%netscape.com:TqK9Ipga8KNA6:cvsuser
nboyd%atg.com:hbKSEw6zIzn8A:cvsuser
neeti%netscape.com:q2ekT3ZhwHrKg:cvsuser
nelsonb%netscape.com:AVyk3HXWf.ujs:cvsuser
newt%pobox.com:OZl987F6kbJt2:cvsuser
nhotta%netscape.com:7PCA6ZeTK24HQ:cvsuser
nicolson%netscape.com:NbXo/Njwl3DYE:cvsuser
nis%sparc.spb.su:qaN5w8ws/GMOI:cvsuser
nisheeth%netscape.com:e69IbM7hbpN1c:cvsuser
oeschger%netscape.com:VbgM7ZeTrBdQc:cvsuser
pavel%gingerall.cz:m.6fruuSee/fA:cvsuser
pavlov%netscape.com:Wm/3gCaQhXNLo:cvsuser
paw%netscape.com:ICTEEvGvrow86:cvsuser
pete.zha%sun.com:AutLMEkk8092Y:cvsuser
pete%alphanumerica.com:8I2QCUKNKooqA:cvsuser
peterb%oeone.com:TxT4Q17V0YIp6:cvsuser
peterlubczynski%netscape.com:kSPTyFx/Yg.0M:cvsuser
peterv%netscape.com:tknmYRfnctNHY:cvsuser
pinkerton%netscape.com:SXjRJmDJDtb1U:cvsuser
pkw%us.ibm.com:8b/bmWBPVi2ug:cvsuser
pp%ludusdesign.com:G0MYIuYvwPznk:cvsuser
prass%netscape.com:FR60OL5/QxDWQ:cvsuser
preed%sigkill.com:BvqmKaKN1qcNE:cvsuser
pschwartau%netscape.com:MEim3s/EIZWs6:cvsuser
putterman%netscape.com:CRfRGZi9Nrtg6:cvsuser
quy%igelaus.com.au:x9H1aMz3jpYUA:cvsuser
racham%netscape.com:G3oNVDE5uCV0o:cvsuser
radha%netscape.com:E8m/i8B0sIO5k:cvsuser
ramiro%eazel.com:04T/4Hcs1Yr/c:cvsadm
rangansen%netscape.com:cLfMytTA8Q.aY:cvsuser
rayw%netscape.com:tnMNnv234muWY:cvsuser
rbs%maths.uq.edu.au:2urVlBcTziPaA:cvsuser
rcassin%supernova.org:xbcASQsSB3GNo:cvsuser
rchen%netscape.com:aur8LEiFViHB2:cvsuser
rdayal%netscape.com:wS397S9STmKn6:cvsuser
realpeterv%mac.com:03s6xSCMxEKx.:cvsuser
relyea%netscape.com:SnAaVLpexLWKw:cvsuser
rginda%netscape.com:TRTBrAIOV/zck:cvsuser
rhess%engr.sgi.com:ARe9YxMtWywa2:cvsuser
richm%netscape.com:yFyxcWf6.RJnc:cvsuser
rjc%netscape.com:RVRRe0F5Be03c:cvsuser
rjesup%wgate.com:5Ccmc2hO67zAk:cvsuser
rko%netscape.com:erIlm8Cr.fpeM:cvsadm
robinf%netscape.com:qsizhSBd/KLxw:cvsuser
roc+%cs.cmu.edu:7yP.3Z8FERo/.:cvsuser
rods%netscape.com:0IcCge9UaI6V6:cvsuser
rogc%netscape.com:ggq89u2RGdGyc:cvsuser
rogerl%netscape.com:EOrmrYUfmdcOk:cvsuser
rpotts%netscape.com:S0L.1Z15bd0qA:cvsuser
rth%cygnus.com:PgrJbhkbkSaXM:cvsuser
ruslan%netscape.com:D.VKkgUzl9qmo:cvsuser
rusty.lynch%intel.com:DhYR6Z5RXyqSk:cvsuser
rweltman%netscape.com:sXP4ymRl/iKBg:cvsuser
saari%netscape.com:8QO4pF72fYVFo:cvsuser
saileshd%netscape.com:lUoVAFVqyyuXg:cvsuser
samuel%sieb.net:UyA4IG.2.LceA:cvsuser
scc%mozilla.org:rSANuSFML82vc:cvsuser
scosta%julian.uwo.ca:S.NZiK1hVwS.Q:cvsuser
sdagley%netscape.com:PvYFZiRMRKuG.:cvsuser
sdv%sparc.spb.su:o7qyUidRy0Ixw:cvsuser
sean%beatnik.com:PUH1uLgUkOHK6:cvsuser
seawood%netscape.com:NoNERGlI7IujM:cvsuser
selmer%netscape.com:0a0Zn2Mtb9RMM:cvsuser
sep%sparc.spb.su:VkGBO1LZNqmcE:cvsuser
serge%netscape.com:.fjhetVN42Gtc:cvsuser
seth%cs.brandeis.edu:NZh2SXUWQwca2:cvsuser
sford3%swbell.net:qiBgt92c4q9VE:cvsuser
sfraser%netscape.com:2mFWUaEqjN7lE:cvsuser
sgehani%netscape.com:6GHPo3hAIJqxg:cvsuser
shanjian%netscape.com:QB8g/ScTxKRkI:cvsuser
shannond%netscape.com:oMNCZEJ1DPSKc:cvsuser
shaver%mozilla.org:I4.grysVnENVM:cvsadm
shawnp%earthling.net:Nkv1/z1WuxbSc:cvsuser
sherry.shen%sun.com:NsxfPnTNAkIiA:cvsuser
shliang%netscape.com:KO.gzVLb9PrLU:cvsuser
shrutiv%netscape.com:3Ve5mvMx.Ze1M:cvsuser
sicking%bigfoot.com:HmAX9bYyCA47k:cvsuser
sman%netscape.com:gHR2VdSKyaV0Q:cvsuser
smeredith%netscape.com:y4A/cyjrQKlq6:cvsuser
smontagu%netscape.com:GR7KUGsPjdY/6:cvsuser
sonja.mirtitsch%sun.com:wchMbWjVfFXxM:cvsuser
srilatha%netscape.com:vn.P0HO0ippg2:cvsuser
srinivas%netscape.com:S7u05VkFOtTeQ:cvsuser
ssaux%netscape.com:tpL9Gf.XBvolU:cvsuser
sspitzer%netscape.com:JlQHq8F/C8kV6:cvsuser
ssu%netscape.com:cfNlpxCKVXQtQ:cvsuser
stephend%netscape.com:MPo74xU9kvo/M:cvsuser
subbarao%computer.org:7JjQ.DwpYmX5U:cvsuser
suresh%netscape.com:XUIUMLGJA3RZ2:cvsuser
svn%xmlterm.org:jJ1wJYK5mkg5M:cvsuser
syd%netscape.com:CUkm3PbBnrIsk:cvsuser
taek%netscape.com:7oZpC0ix52epo:cvsuser
tajima%eng.sun.com:/sI8qG0LRP1mk:cvsuser
taka%netscape.com:jPPzAmrbNd1wg:cvsuser
talisman%anamorphic.com:KB7aseh1Ssuyg:cvsuser
tao%netscape.com:gM5BUf7j12EIc:cvsuser
tara%tequilarista.org:tVcSLekcNJsk2:cvsuser
terry%mozilla.org:sYyehWIbexkrI:cvsadm
tfox%netscape.com:tQPZKESPZltZ2:cvsuser
tgl%sss.pgh.pa.us:rr7pe1GPkjIw6:cvsuser
thayes%netscape.com:CLgsFPZnRpuhM:cvsuser
thesteve%netscape.com:35.Khy1IDl2VE:cvsuser
timeless%mozdev.org:oJ1sqLvoXLp7I:cvsuser
tingley%sundell.net:dJuhpDRtS9J..:cvsuser
tonyr%fbdesigns.com:B1mFZmEmKdg4E:cvsuser
tor%cs.brown.edu:.GLVprG/lOpjM:cvsuser
toshok%hungry.com:45BYKXpLObZ..:cvsuser
trudelle%netscape.com:kguEx2XoA/qOQ:cvsuser
t_mutreja%yahoo.com:r.isAol8Qh60w:cvsuser
val4%cornell.edu:.MA49sSDjYK66:cvsuser
valeski%netscape.com:UQIy1R23X0tnc:cvsuser
varada%netscape.com:/PHzlvLt1d/Pk:cvsuser
varga%netscape.com:itS5ZJXFiEJC2:cvsuser
vidur%netscape.com:QSvSExpE4HwEE:cvsuser
waldemar%netscape.com:hrfmZUyM.cQqw:cvsuser
warren%zodiacnetworks.com:b0lSiwRxkyoKE:cvsuser
waterson%netscape.com:UMOoIwsZgkNEM:cvsuser
wtc%netscape.com:qv4XOpmSQjJG2:cvsuser
Xiaobin.Lu%eng.Sun.com:MrrYDdtVNWvV6:cvsuser
yixiong.zou%intel.com:O30ptkPuaOOrY:cvsuser
yokoyama%netscape.com:zC32qkz2JNuTc:cvsuser
yueheng.xu%intel.com:oRvjQhWXcyCIU:cvsuser
yxia%netscape.com:ilKZVJUeHDLj6:cvsuser
zach%zachlipton.com:GLozolSujiqSo:cvsuser
zuperdee%yahoo.com:ltcWrFvUEUYTY:cvsuser

View File

@@ -1,13 +0,0 @@
# The "rcsinfo" file is used to control templates with which the editor
# is invoked on commit and import.
#
# The first entry on a line is a regular expression which is tested
# against the directory that the change is being made to, relative to the
# $CVSROOT. For the first match that is found, then the remainder of the
# line is the name of the file that contains the template.
#
# If the repository name does not match any of the regular expressions in this
# file, the "DEFAULT" line is used, if it is specified.
#
# If the name "ALL" appears as a regular expression it is always used
# in addition to the first matching regex or "DEFAULT".

View File

View File

@@ -1,78 +0,0 @@
#! /tools/ns/bin/perl5
use Socket;
sub get_response_code {
my ($expecting) = @_;
# if ($flag_debug) {
# print STDERR "SMTP: Waiting for code $expecting\n";
# }
while (1) {
my $line = <S>;
# if ($flag_debug) {
# print STDERR "SMTP: $line";
# }
if ($line =~ /^[0-9]*-/) {
next;
}
if ($line =~ /(^[0-9]*) /) {
my $code = $1;
if ($code == $expecting) {
# if ($flag_debug) {
# print STDERR "SMTP: got it.\n";
# }
return;
}
die "Bad response from SMTP -- $line";
}
}
}
my @mailto;
my $i;
foreach $i (@ARGV) {
# Deal with our "%" encoding of email addresses.
if ($i !~ /\@/) {
$i =~ s/%/\@/;
}
push(@mailto, $i);
}
chop(my $hostname = `/bin/hostname`);
my ($remote,$port, $iaddr, $paddr, $proto, $line);
$remote = $mailhost;
$port = 25;
if ($port =~ /\D/) { $port = getservbyname($port, 'tcp') }
die "No port" unless $port;
$iaddr = inet_aton($remote) || die "no host: $remote";
$paddr = sockaddr_in($port, $iaddr);
$proto = getprotobyname('tcp');
socket(S, PF_INET, SOCK_STREAM, $proto) || die "socket: $!";
connect(S, $paddr) || die "connect: $!";
select(S); $| = 1; select(STDOUT);
get_response_code(220);
print S "EHLO $hostname\n";
get_response_code(250);
print S "MAIL FROM: cvs-notify-daemon\@$hostname\n";
get_response_code(250);
foreach $i (@mailto) {
print S "RCPT TO: $i\n";
get_response_code(250);
}
print S "DATA\n";
get_response_code(354);
# Get one line starting with "354 ".
print S "Subject: CVS notification\n";
print S "To: " . join(',', @mailto) . "\n";
print S "\n";
while (<STDIN>) {
print S $_;
}
print S ".\n";
get_response_code(250);
print S "QUIT\n";
close(S);

View File

@@ -1,20 +0,0 @@
# The "taginfo" file is used to control pre-tag checks.
# The filter on the right is invoked with the following arguments:
#
# $1 -- tagname
# $2 -- operation "add" for tag, "mov" for tag -F, and "del" for tag -d
# $3 -- repository
# $4-> file revision [file revision ...]
#
# A non-zero exit of the filter program will cause the tag to be aborted.
#
# The first entry on a line is a regular expression which is tested
# against the directory that the change is being committed to, relative
# to the $CVSROOT. For the first match that is found, then the remainder
# of the line is the name of the filter to run.
#
# If the repository name does not match any of the regular expressions in this
# file, the "DEFAULT" line is used, if it is specified.
#
# If the name "ALL" appears as a regular expression it is always used
# in addition to the first matching regex or "DEFAULT".

View File

@@ -1,21 +0,0 @@
# The "verifymsg" file is used to allow verification of logging
# information. It works best when a template (as specified in the
# rcsinfo file) is provided for the logging procedure. Given a
# template with locations for, a bug-id number, a list of people who
# reviewed the code before it can be checked in, and an external
# process to catalog the differences that were code reviewed, the
# following test can be applied to the code:
#
# Making sure that the entered bug-id number is correct.
# Validating that the code that was reviewed is indeed the code being
# checked in (using the bug-id number or a seperate review
# number to identify this particular code set.).
#
# If any of the above test failed, then the commit would be aborted.
#
# Actions such as mailing a copy of the report to each reviewer are
# better handled by an entry in the loginfo file.
#
# One thing that should be noted is the the ALL keyword is not
# supported. There can be only one entry that matches a given
# repository.

View File

@@ -1,47 +0,0 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is CaScadeS, a stylesheet editor for Composer.
#
# The Initial Developer of the Original Code is
# Daniel Glazman <daniel@glazman.org>.
# Portions created by the Initial Developer are Copyright (C) 2002
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Daniel Glazman <daniel@glazman.org>, original author
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the LGPL or the GPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
DEPTH=../../..
topsrcdir=@top_srcdir@
srcdir=@srcdir@
VPATH=@srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk

View File

@@ -1,744 +0,0 @@
/*
* The nsinstall command for OS/2
*
* Our gmake makefiles use the nsinstall command to create the
* object directories or installing headers and libs to ns/dist.
* The shmsdos shell has nsinstall as a built-in command. However,
* if we use another shell like MKS toolkit's sh, we need to have
* the nsinstall command separately.
*
* This file was generated by modifying the Windows nsinstall.c.
*
* To build, say
* icc nsinstall.c
*/
#include <direct.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#define INCL_DOSFILEMGR
#define INCL_DOSERRORS
#define INCL_WINERRORS
#include <os2.h>
#pragma hdrstop
/*
* sh_FileFcn --
*
* A function that operates on a file. The pathname is either
* absolute or relative to the current directory, and contains
* no wildcard characters such as * and ?. Additional arguments
* can be passed to the function via the arg pointer.
*/
typedef BOOL (*sh_FileFcn)(
char *pathName,
FILEFINDBUF3 *fileData,
void *arg);
static int shellCp (char **pArgv);
static int shellNsinstall (char **pArgv);
static int shellMkdir (char **pArgv);
static BOOL sh_EnumerateFiles(const char *pattern, const char *where,
sh_FileFcn fileFcn, void *arg, int *nFiles);
static const char *sh_GetLastErrorMessage(void);
static BOOL sh_DoCopy(char *srcFileName, ULONG srcFileAttributes,
char *dstFileName, ULONG dstFileAttributes,
int force, int recursive);
static ULONG GetFileAttributes(PSZ pszFileName);
static APIRET SetFileAttributes(PSZ pszFileName, ULONG ulFileAttributes);
/* changes all forward slashes in token to back slashes */
void changeForwardSlashesTpBackSlashes ( char *arg )
{
if ( arg == NULL )
return;
while ( *arg ) {
if ( *arg == '/' )
*arg = '\\';
arg++;
}
}
int main(int argc, char *argv[ ])
{
return shellNsinstall ( argv + 1 );
}
static int
shellNsinstall (char **pArgv)
{
int retVal = 0; /* exit status */
int dirOnly = 0; /* 1 if and only if -D is specified */
char **pSrc;
char **pDst;
int len;
/*
* Process the command-line options. We ignore the
* options except for -D. Some options, such as -m,
* are followed by an argument. We need to skip the
* argument too.
*/
while ( *pArgv && **pArgv == '-' ) {
char c = (*pArgv)[1]; /* The char after '-' */
if ( c == 'D' ) {
dirOnly = 1;
} else if ( c == 'm' ) {
pArgv++; /* skip the next argument */
}
pArgv++;
}
if ( !dirOnly ) {
/* There are files to install. Get source files */
if ( *pArgv ) {
pSrc = pArgv++;
} else {
fprintf( stderr, "nsinstall: not enough arguments\n");
return 3;
}
}
/* Get to last token to find destination directory */
if ( *pArgv ) {
pDst = pArgv++;
if ( dirOnly && *pArgv ) {
fprintf( stderr, "nsinstall: too many arguments with -D\n");
return 3;
}
} else {
fprintf( stderr, "nsinstall: not enough arguments\n");
return 3;
}
while ( *pArgv )
pDst = pArgv++;
/* remove trailing slash from desination directory */
len = strlen( *pDst );
if ( pDst[0][len-1] == '/' )
pDst[0][len-1] = '\0';
retVal = shellMkdir ( pDst );
if ( retVal )
return retVal;
if ( !dirOnly )
retVal = shellCp ( pSrc );
return retVal;
}
static int
shellMkdir (char **pArgv)
{
int retVal = 0; /* assume valid return */
char *arg;
char *pArg;
char path[CCHMAXPATH];
char tmpPath[CCHMAXPATH];
char *pTmpPath = tmpPath;
/* All the options are simply ignored in this implementation */
while ( *pArgv && **pArgv == '-' ) {
if ( (*pArgv)[1] == 'm' ) {
pArgv++; /* skip the next argument (mode) */
}
pArgv++;
}
while ( *pArgv ) {
arg = *pArgv;
changeForwardSlashesTpBackSlashes ( arg );
pArg = arg;
pTmpPath = tmpPath;
while ( 1 ) {
/* create part of path */
while ( *pArg ) {
*pTmpPath++ = *pArg++;
if ( *pArg == '\\' )
break;
}
*pTmpPath = '\0';
/* check if directory alreay exists */
_getcwd ( path, sizeof (path) );
if (( _chdir ( tmpPath ) != -1 ) || ((tmpPath[1] == ':') && (tmpPath[2] == '\0'))) {
_chdir ( path );
} else {
if ( _mkdir ( tmpPath ) == -1 ) {
// while ( waitForDebug );
printf ( "%s: ", tmpPath );
perror ( "Could not create the directory" );
retVal = 3;
break;
}
}
if ( *pArg == '\0' ) /* complete path? */
break;
/* loop for next directory */
}
pArgv++;
}
return retVal;
}
static const char *
sh_GetLastErrorMessage()
{
static char buf[128];
ERRORID error = WinGetLastError(0);
switch (ERRORIDSEV(error))
{
case SEVERITY_ERROR:
{
sprintf( buf, "error %d", ERRORIDERROR(error));
break;
}
case SEVERITY_SEVERE:
{
sprintf( buf, "severe error %d", ERRORIDERROR(error));
break;
}
case SEVERITY_UNRECOVERABLE:
{
sprintf( buf, "unrecoverable error %d", ERRORIDERROR(error));
break;
}
}
return buf;
}
/*
* struct sh_FileData --
*
* A pointer to the sh_FileData structure is passed into sh_RecordFileData,
* which will fill in the fields.
*/
struct sh_FileData {
char pathName[CCHMAXPATH];
ULONG attrFile;
};
/*
* sh_RecordFileData --
*
* Record the pathname and attributes of the file in
* the sh_FileData structure pointed to by arg.
*
* Always return TRUE (successful completion).
*
* This function is intended to be passed into sh_EnumerateFiles
* to see if a certain pattern expands to exactly one file/directory,
* and if so, record its pathname and attributes.
*/
static BOOL
sh_RecordFileData(char *pathName, FILEFINDBUF3 *findData, void *arg)
{
struct sh_FileData *fData = (struct sh_FileData *) arg;
strcpy(fData->pathName, pathName);
fData->attrFile = findData->attrFile;
return TRUE;
}
static BOOL
sh_DoCopy(char *srcFileName,
ULONG srcFileAttributes,
char *dstFileName,
ULONG dstFileAttributes,
int force,
int recursive
)
{
if (dstFileAttributes != 0xFFFFFFFF) {
if ((dstFileAttributes & FILE_READONLY) && force) {
dstFileAttributes &= ~FILE_READONLY;
SetFileAttributes(dstFileName, dstFileAttributes);
}
}
if (srcFileAttributes & FILE_DIRECTORY) {
fprintf(stderr, "nsinstall: %s is a directory\n",
srcFileName);
return FALSE;
} else {
if (DosCopy(srcFileName, dstFileName, DCPY_EXISTING) != NO_ERROR) {
fprintf(stderr, "nsinstall: cannot copy %s to %s: %s\n",
srcFileName, dstFileName, sh_GetLastErrorMessage());
return FALSE;
}
}
return TRUE;
}
/*
* struct sh_CpCmdArg --
*
* A pointer to the sh_CpCmdArg structure is passed into sh_CpFileCmd.
* The sh_CpCmdArg contains information about the cp command, and
* provide a buffer for constructing the destination file name.
*/
struct sh_CpCmdArg {
int force; /* -f option, ok to overwrite an existing
* read-only destination file */
int recursive; /* -r or -R option, recursively copy
* directories. Note: this field is not used
* by nsinstall and should always be 0. */
char *dstFileName; /* a buffer for constructing the destination
* file name */
char *dstFileNameMarker; /* points to where in the dstFileName buffer
* we should write the file component of the
* destination file */
};
/*
* sh_CpFileCmd --
*
* Copy a file to the destination directory
*
* This function is intended to be passed into sh_EnumerateFiles to
* copy all the files specified by the pattern to the destination
* directory.
*
* Return TRUE if the file is successfully copied, and FALSE otherwise.
*/
static BOOL
sh_CpFileCmd(char *pathName, FILEFINDBUF3 *findData, void *cpArg)
{
BOOL retVal = TRUE;
struct sh_CpCmdArg *arg = (struct sh_CpCmdArg *) cpArg;
strcpy(arg->dstFileNameMarker, findData->achName);
return sh_DoCopy(pathName, findData->attrFile,
arg->dstFileName, GetFileAttributes(arg->dstFileName),
arg->force, arg->recursive);
}
static int
shellCp (char **pArgv)
{
int retVal = 0;
char **pSrc;
char **pDst;
struct sh_CpCmdArg arg;
struct sh_FileData dstData;
int dstIsDir = 0;
int n;
arg.force = 0;
arg.recursive = 0;
arg.dstFileName = dstData.pathName;
arg.dstFileNameMarker = 0;
while (*pArgv && **pArgv == '-') {
char *p = *pArgv;
while (*(++p)) {
if (*p == 'f') {
arg.force = 1;
}
}
pArgv++;
}
/* the first source file */
if (*pArgv) {
pSrc = pArgv++;
} else {
fprintf(stderr, "nsinstall: not enough arguments\n");
return 3;
}
/* get to the last token to find destination */
if (*pArgv) {
pDst = pArgv++;
} else {
fprintf(stderr, "nsinstall: not enough arguments\n");
return 3;
}
while (*pArgv) {
pDst = pArgv++;
}
/*
* The destination pattern must unambiguously expand to exactly
* one file or directory.
*/
changeForwardSlashesTpBackSlashes(*pDst);
sh_EnumerateFiles(*pDst, *pDst, sh_RecordFileData, &dstData, &n);
assert(n >= 0);
if (n == 1) {
/*
* Is the destination a file or directory?
*/
if (dstData.attrFile & FILE_DIRECTORY) {
dstIsDir = 1;
}
} else if (n > 1) {
fprintf(stderr, "nsinstall: %s: ambiguous destination file "
"or directory\n", *pDst);
return 3;
} else {
/*
* n == 0, meaning that destination file or directory does
* not exist. In this case the destination file directory
* name must be fully specified.
*/
char *p;
for (p = *pDst; *p; p++) {
if (*p == '*' || *p == '?') {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pDst);
return 3;
}
}
/*
* Do not include the trailing \, if any, unless it is a root
* directory (\ or X:\).
*/
if (p > *pDst && p[-1] == '\\' && p != *pDst + 1 && p[-2] != ':') {
p[-1] = '\0';
}
strcpy(dstData.pathName, *pDst);
dstData.attrFile = 0xFFFFFFFF;
}
/*
* If there are two or more source files, the destination has
* to be a directory.
*/
if (pDst - pSrc > 1 && !dstIsDir) {
fprintf(stderr, "nsinstall: cannot copy more than"
" one file to the same destination file\n");
return 3;
}
if (dstIsDir) {
arg.dstFileNameMarker = arg.dstFileName + strlen(arg.dstFileName);
/*
* Now arg.dstFileNameMarker is pointing to the null byte at the
* end of string. We want to make sure that there is a \ at the
* end of string, and arg.dstFileNameMarker should point right
* after that \.
*/
if (arg.dstFileNameMarker[-1] != '\\') {
*(arg.dstFileNameMarker++) = '\\';
}
}
if (!dstIsDir) {
struct sh_FileData srcData;
assert(pDst - pSrc == 1);
changeForwardSlashesTpBackSlashes(*pSrc);
sh_EnumerateFiles(*pSrc, *pSrc, sh_RecordFileData, &srcData, &n);
if (n == 0) {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pSrc);
retVal = 3;
} else if (n > 1) {
fprintf(stderr, "nsinstall: cannot copy more than one file or "
"directory to the same destination\n");
retVal = 3;
} else {
assert(n == 1);
if (sh_DoCopy(srcData.pathName, srcData.attrFile,
dstData.pathName, dstData.attrFile,
arg.force, arg.recursive) == FALSE) {
retVal = 3;
}
}
return retVal;
}
for ( ; *pSrc != *pDst; pSrc++) {
BOOL rv;
changeForwardSlashesTpBackSlashes(*pSrc);
rv = sh_EnumerateFiles(*pSrc, *pSrc, sh_CpFileCmd, &arg, &n);
if (rv == FALSE) {
retVal = 3;
} else {
if (n == 0) {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pSrc);
retVal = 3;
}
}
}
return retVal;
}
/*
* sh_EnumerateFiles --
*
* Enumerate all the files in the specified pattern, which is a pathname
* containing possibly wildcard characters such as * and ?. fileFcn
* is called on each file, passing the expanded file name, a pointer
* to the file's FILEFINDBUF3, and the arg pointer.
*
* It is assumed that there are no wildcard characters before the
* character pointed to by 'where'.
*
* On return, *nFiles stores the number of files enumerated. *nFiles is
* set to this number whether sh_EnumerateFiles or 'fileFcn' succeeds
* or not.
*
* Return TRUE if the files are successfully enumerated and all
* 'fileFcn' invocations succeeded. Return FALSE if something went
* wrong.
*/
static BOOL sh_EnumerateFiles(
const char *pattern,
const char *where,
sh_FileFcn fileFcn,
void *arg,
int *nFiles
)
{
FILEFINDBUF3 fileData = {0};
HDIR hSearch;
APIRET ulrc;
ULONG ulFindCount = 1;
const char *src;
char *dst;
char fileName[CCHMAXPATH];
char *fileNameMarker = fileName;
char *oldFileNameMarker;
BOOL hasWildcard = FALSE;
BOOL retVal = TRUE;
BOOL patternEndsInDotStar = FALSE;
BOOL patternEndsInDot = FALSE; /* a special case of
* patternEndsInDotStar */
int numDotsInPattern;
int len;
/*
* Windows expands patterns ending in ".", ".*", ".**", etc.
* differently from the glob expansion on Unix. For example,
* both "foo." and "foo.*" match "foo", and "*.*" matches
* everything, including filenames with no dots. So we need
* to throw away extra files returned by the FindNextFile()
* function. We require that a matched filename have at least
* the number of dots in the pattern.
*/
len = strlen(pattern);
if (len >= 2) {
/* Start from the end of pattern and go backward */
const char *p = &pattern[len - 1];
/* We can have zero or more *'s */
while (p >= pattern && *p == '*') {
p--;
}
if (p >= pattern && *p == '.') {
patternEndsInDotStar = TRUE;
if (p == &pattern[len - 1]) {
patternEndsInDot = TRUE;
}
p--;
numDotsInPattern = 1;
while (p >= pattern && *p != '\\') {
if (*p == '.') {
numDotsInPattern++;
}
p--;
}
}
}
*nFiles = 0;
/*
* Copy pattern to fileName, but only up to and not including
* the first \ after the first wildcard letter.
*
* Make fileNameMarker point to one of the following:
* - the start of fileName, if fileName does not contain any \.
* - right after the \ before the first wildcard letter, if there is
* a wildcard character.
* - right after the last \, if there is no wildcard character.
*/
dst = fileName;
src = pattern;
while (src < where) {
if (*src == '\\') {
oldFileNameMarker = fileNameMarker;
fileNameMarker = dst + 1;
}
*(dst++) = *(src++);
}
while (*src && *src != '*' && *src != '?') {
if (*src == '\\') {
oldFileNameMarker = fileNameMarker;
fileNameMarker = dst + 1;
}
*(dst++) = *(src++);
}
if (*src) {
/*
* Must have seen the first wildcard letter
*/
hasWildcard = TRUE;
while (*src && *src != '\\') {
*(dst++) = *(src++);
}
}
/* Now src points to either null or \ */
assert(*src == '\0' || *src == '\\');
assert(hasWildcard || *src == '\0');
*dst = '\0';
/*
* If the pattern does not contain any wildcard characters, then
* we don't need to go the FindFirstFile route.
*/
if (!hasWildcard) {
/*
* See if it is the root directory, \, or X:\.
*/
assert(!strcmp(fileName, pattern));
assert(strlen(fileName) >= 1);
if (dst[-1] == '\\' && (dst == fileName + 1 || dst[-2] == ':')) {
fileData.achName[0] = '\0';
} else {
/*
* Do not include the trailing \, if any
*/
if (dst[-1] == '\\') {
assert(*fileNameMarker == '\0');
dst[-1] = '\0';
fileNameMarker = oldFileNameMarker;
}
strcpy(fileData.achName, fileNameMarker);
}
fileData.attrFile = GetFileAttributes(fileName);
if (fileData.attrFile == 0xFFFFFFFF) {
return TRUE;
}
*nFiles = 1;
return (*fileFcn)(fileName, &fileData, arg);
}
hSearch = HDIR_CREATE;
ulrc = DosFindFirst(fileName, &hSearch, FILE_NORMAL, &fileData, sizeof(fileData),
&ulFindCount, FIL_STANDARD);
if (ulrc == ERROR_INVALID_HANDLE) {
return retVal;
}
do {
if (!strcmp(fileData.achName, ".")
|| !strcmp(fileData.achName, "..")) {
/*
* Skip over . and ..
*/
continue;
}
if (patternEndsInDotStar) {
int nDots = 0;
char *p = fileData.achName;
while (*p) {
if (*p == '.') {
nDots++;
}
p++;
}
/* Now p points to the null byte at the end of file name */
if (patternEndsInDot && (p == fileData.achName
|| p[-1] != '.')) {
/*
* File name does not end in dot. Skip this file.
* Note: windows file name probably cannot end in dot,
* but we do this check anyway.
*/
continue;
}
if (nDots < numDotsInPattern) {
/*
* Not enough dots in file name. Must be an extra
* file in matching .* pattern. Skip this file.
*/
continue;
}
}
strcpy(fileNameMarker, fileData.achName);
if (*src && *(src + 1)) {
/*
* More to go. Recurse.
*/
int n;
assert(*src == '\\');
where = fileName + strlen(fileName);
strcat(fileName, src);
sh_EnumerateFiles(fileName, where, fileFcn, arg, &n);
*nFiles += n;
} else {
assert(strchr(fileName, '*') == NULL);
assert(strchr(fileName, '?') == NULL);
(*nFiles)++;
if ((*fileFcn)(fileName, &fileData, arg) == FALSE) {
retVal = FALSE;
}
}
} while (DosFindNext(hSearch, &fileData, sizeof(fileData), &ulFindCount) == NO_ERROR);
DosFindClose(hSearch);
return retVal;
}
static ULONG GetFileAttributes(PSZ pszFileName)
{
FILESTATUS3 fsts3;
APIRET rc;
rc = DosQueryPathInfo(pszFileName,
FIL_STANDARD,
&fsts3,
sizeof(FILESTATUS3));
if (rc != NO_ERROR) {
return -1;
} /* endif */
return fsts3.attrFile;
}
static APIRET SetFileAttributes(PSZ pszFileName, ULONG ulFileAttributes)
{
return NULL;
}

View File

@@ -1,107 +0,0 @@
/* GLIB - Library of useful routines for C programming
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/* acconfig.h
This file is in the public domain.
Descriptive text for the C preprocessor macros that
the distributed Autoconf macros can define.
No software package will use all of them; autoheader copies the ones
your configure.in uses into your configuration header file templates.
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). Although this order
can split up related entries, it makes it easier to check whether
a given entry is in the file.
Leave the following blank line there!! Autoheader needs it. */
/* Other stuff */
#undef ENABLE_MEM_CHECK
#undef ENABLE_MEM_PROFILE
#undef G_COMPILED_WITH_DEBUGGING
#undef G_THREADS_ENABLED
#undef GLIB_SIZEOF_GMUTEX
#undef GLIB_BYTE_CONTENTS_GMUTEX
#undef HAVE_BROKEN_WCTYPE
#undef HAVE_DOPRNT
#undef HAVE_FLOAT_H
#undef HAVE_GETPWUID_R
#undef HAVE_GETPWUID_R_POSIX
#undef HAVE_LIMITS_H
#undef HAVE_LONG_DOUBLE
#undef HAVE_POLL
#undef HAVE_PTHREAD_GETSPECIFIC_POSIX
#undef HAVE_PWD_H
#undef HAVE_SYS_PARAM_H
#undef HAVE_SYS_POLL_H
#undef HAVE_SYS_SELECT_H
#undef HAVE_SYS_TIME_H
#undef HAVE_SYS_TIMES_H
#undef HAVE_STRERROR
#undef HAVE_STRSIGNAL
#undef HAVE_UNISTD_H
#undef HAVE_VALUES_H
#undef HAVE_WCHAR_H
#undef HAVE_WCTYPE_H
#undef NO_FD_SET
#undef NO_SYS_ERRLIST
#undef NO_SYS_SIGLIST
#undef NO_SYS_SIGLIST_DECL
#undef WITH_SYMBOL_UNDERSCORE
#undef SIZEOF_CHAR
#undef SIZEOF_SHORT
#undef SIZEOF_LONG
#undef SIZEOF_INT
#undef SIZEOF_VOID_P
#undef G_VA_COPY
#undef G_VA_COPY_AS_ARRAY
#undef G_HAVE___INLINE
#undef G_HAVE___INLINE__
#undef G_HAVE_INLINE
#undef GLIB_MAJOR_VERSION
#undef GLIB_MINOR_VERSION
#undef GLIB_MICRO_VERSION
#undef GLIB_INTERFACE_AGE
#undef GLIB_BINARY_AGE
#undef WIN32
#undef NATIVE_WIN32
#undef G_THREAD_SOURCE
/* #undef PACKAGE */
/* #undef VERSION */
/* Leave that blank line there!! Autoheader needs it.
If you're adding to this file, keep in mind:
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). */

View File

@@ -1,138 +0,0 @@
/* config.h.win32. Handcrafted for Microsoft C */
/* Define to empty if the keyword does not work. */
/* #undef const */
/* Define if you don't have vprintf but do have _doprnt. */
/* #undef HAVE_DOPRNT */
/* Define if you have <unistd.h>. */
/* #undef HAVE_UNISTD_H */
/* Define if you have the vprintf function. */
#define HAVE_VPRINTF 1
/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if your processor stores words with the most significant
byte first (like Motorola and SPARC, unlike Intel and VAX). */
/* #undef WORDS_BIGENDIAN */
/* #undef ENABLE_MEM_CHECK */
/* #undef ENABLE_MEM_PROFILE */
#define G_COMPILED_WITH_DEBUGGING "minimum"
/* #undef HAVE_BROKEN_WCTYPE */
/* #undef HAVE_DOPRNT */
#define HAVE_FLOAT_H 1
#define HAVE_LIMITS_H 1
/* #undef HAVE_LOCALTIME_R */
/* #undef HAVE_LONG_DOUBLE */
/* #undef HAVE_POLL */
/* #undef HAVE_PWD_H */
/* #undef HAVE_SYS_PARAM_H */
/* #undef HAVE_SYS_POLL_H */
/* #undef HAVE_SYS_SELECT_H */
/* #undef HAVE_SYS_TIME_H */
/* #undef HAVE_SYS_TIMES_H */
#define HAVE_STRERROR 1
/* #undef HAVE_STRSIGNAL */
/* #undef HAVE_UNISTD_H */
/* #undef HAVE_VSNPRINTF */
/* #undef HAVE_VALUES_H */
#define HAVE_VPRINTF 1
#define HAVE_WCHAR_H 1
#define HAVE_WCTYPE_H 1
/* #undef NO_FD_SET */
/* #undef NO_SYS_ERRLIST */
#define NO_SYS_SIGLIST 1
/* #undef G_VA_COPY */
/* #undef G_VA_COPY_AS_ARRAY */
#define G_HAVE___INLINE 1
#define GLIB_MAJOR_VERSION 1
#define GLIB_MINOR_VERSION 2
#define GLIB_MICRO_VERSION 0
#define GLIB_INTERFACE_AGE 0
#define GLIB_BINARY_AGE 0
#define G_THREAD_SOURCE "gthread-posix.c"
#define G_THREADS_IMPL_POSIX
#define HAVE_PTHREAD_GETSPECIFIC_POSIX 1
/* The number of bytes in a char. */
#define SIZEOF_CHAR 1
/* The number of bytes in a int. */
#define SIZEOF_INT 4
/* The number of bytes in a long. */
#define SIZEOF_LONG 4
/* The number of bytes in a long long. */
#define SIZEOF_LONG_LONG 8
/* The number of bytes in a short. */
#define SIZEOF_SHORT 2
/* The number of bytes in a void *. */
#define SIZEOF_VOID_P 4
/* Define if you have the atexit function. */
#define HAVE_ATEXIT 1
/* Define if you have the lstat function. */
/* #undef HAVE_LSTAT */
/* Define if you have the memmove function. */
#define HAVE_MEMMOVE 1
/* Define if you have the on_exit function. */
/* #undef HAVE_ON_EXIT */
/* Define if you have the strcasecmp function. */
/* #undef HAVE_STRCASECMP ^*/
/* Define if you have the strerror function. */
#define HAVE_STRERROR 1
/* Define if you have the strsignal function. */
/* #undef HAVE_STRSIGNAL */
/* Define if you have the vsnprintf function. */
/* #undef HAVE_VSNPRINTF */
/* Define if you have the <float.h> header file. */
#define HAVE_FLOAT_H 1
/* Define if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define if you have the <pwd.h> header file. */
/* #undef HAVE_PWD_H */
/* Define if you have the <sys/param.h> header file. */
/* #undef HAVE_SYS_PARAM_H */
/* Define if you have the <sys/select.h> header file. */
/* #undef HAVE_SYS_SELECT_H */
/* Define if you have the <sys/time.h> header file. */
/* #undef HAVE_SYS_TIME_H */
/* Define if you have the <sys/times.h> header file. */
/* #undef HAVE_SYS_TIMES_H */
/* Define if you have the <unistd.h> header file. */
/* #undef HAVE_UNISTD_H */
/* Define if you have the <values.h> header file. */
/* #undef HAVE_VALUES_H */
/* Define if you have the w library (-lw). */
/* #undef HAVE_LIBW */

File diff suppressed because it is too large Load Diff

View File

@@ -1,173 +0,0 @@
/* glibconfig.h.win32 */
/* Handcrafted for Microsoft C. */
#ifndef GLIBCONFIG_H
#define GLIBCONFIG_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifdef _MSC_VER
/* Make MSVC more pedantic, this is a recommended pragma list
* from _Win32_Programming_ by Rector and Newcomer.
*/
#pragma warning(error:4002)
#pragma warning(error:4003)
#pragma warning(1:4010)
#pragma warning(error:4013)
#pragma warning(1:4016)
#pragma warning(error:4020)
#pragma warning(error:4021)
#pragma warning(error:4027)
#pragma warning(error:4029)
#pragma warning(error:4033)
#pragma warning(error:4035)
#pragma warning(error:4045)
#pragma warning(error:4047)
#pragma warning(error:4049)
#pragma warning(error:4053)
#pragma warning(error:4071)
#pragma warning(disable:4101)
#pragma warning(error:4150)
#pragma warning(disable:4244) /* No possible loss of data warnings */
#pragma warning(disable:4305) /* No truncation from int to char warnings */
#endif /* _MSC_VER */
#include <limits.h>
#include <float.h>
#define G_MINFLOAT FLT_MIN
#define G_MAXFLOAT FLT_MAX
#define G_MINDOUBLE DBL_MIN
#define G_MAXDOUBLE DBL_MAX
#define G_MINSHORT SHRT_MIN
#define G_MAXSHORT SHRT_MAX
#define G_MININT INT_MIN
#define G_MAXINT INT_MAX
#define G_MINLONG LONG_MIN
#define G_MAXLONG LONG_MAX
typedef signed char gint8;
typedef unsigned char guint8;
typedef signed short gint16;
typedef unsigned short guint16;
typedef signed int gint32;
typedef unsigned int guint32;
#define G_HAVE_GINT64 1
typedef __int64 gint64;
typedef unsigned __int64 guint64;
#define G_GINT64_CONSTANT(val) (val##i64)
#define GPOINTER_TO_INT(p) ((gint)(p))
#define GPOINTER_TO_UINT(p) ((guint)(p))
#define GINT_TO_POINTER(i) ((gpointer)(i))
#define GUINT_TO_POINTER(u) ((gpointer)(u))
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(d,s,n) G_STMT_START { memmove ((d), (s), (n)); } G_STMT_END
#define G_HAVE_ALLOCA 1
#define alloca _alloca
#define GLIB_MAJOR_VERSION 1
#define GLIB_MINOR_VERSION 2
#define GLIB_MICRO_VERSION 0
#ifdef __cplusplus
#define G_HAVE_INLINE 1
#else /* !__cplusplus */
#define G_HAVE___INLINE 1
#endif
#define G_THREADS_ENABLED
/*
* The following program can be used to determine the magic values below:
* #include <stdio.h>
* #include <pthread.h>
* main(int argc, char **argv)
* {
* int i;
* pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
* printf ("sizeof (pthread_mutex_t) = %d\n", sizeof (pthread_mutex_t));
* printf ("PTHREAD_MUTEX_INITIALIZER = ");
* for (i = 0; i < sizeof (pthread_mutex_t); i++)
* printf ("%u, ", (unsigned) ((char *) &m)[i]);
* printf ("\n");
* exit(0);
* }
*/
typedef struct _GStaticMutex GStaticMutex;
struct _GStaticMutex
{
struct _GMutex *runtime_mutex;
union {
/* The size of the pad array should be sizeof (pthread_mutext_t) */
/* This value corresponds to the 1999-01-24 version of pthreads-win32 */
char pad[36];
double dummy_double;
void *dummy_pointer;
long dummy_long;
} aligned_pad_u;
};
/* This should be NULL followed by the bytes in PTHREAD_MUTEX_INITIALIZER */
#define G_STATIC_MUTEX_INIT { NULL, { { 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } }
#define g_static_mutex_get_mutex(mutex) \
(g_thread_use_default_impl ? ((GMutex*) &((mutex)->aligned_pad_u)) : \
g_static_mutex_get_mutex_impl (&((mutex)->runtime_mutex)))
#define G_BYTE_ORDER G_LITTLE_ENDIAN
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
#define GLIB_SYSDEF_POLLIN = 1
#define GLIB_SYSDEF_POLLOUT = 4
#define GLIB_SYSDEF_POLLPRI = 2
#define GLIB_SYSDEF_POLLERR = 8
#define GLIB_SYSDEF_POLLHUP = 16
#define GLIB_SYSDEF_POLLNVAL = 32
#define G_HAVE_WCHAR_H 1
#define G_HAVE_WCTYPE_H 1
/* Define if this is Win32, possibly using the Cygwin emulation layer. */
#define WIN32 1
/* Define if this is Win32 without Cygwin. */
#define NATIVE_WIN32 1
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* GLIBCONFIG_H */

View File

@@ -1,827 +0,0 @@
/**************************************************************************
IDL.h (IDL parse tree and namespace components)
Include wide character support before this, if necessary.
Copyright (C) 1998, 1999 Andrew T. Veliath
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: IDL.h,v 1.1 1999-04-08 20:04:26 mccabe%netscape.com Exp $
***************************************************************************/
#ifndef __IDL_H
#define __IDL_H
#include <glib.h>
#ifdef __cplusplus
extern "C" {
#endif
/* version */
#define LIBIDL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#define LIBIDL_MAJOR_VERSION 0
#define LIBIDL_MINOR_VERSION 6
#define LIBIDL_MICRO_VERSION 3
#define LIBIDL_VERSION_CODE LIBIDL_VERSION(0,6,3)
/* miscellaneous constants */
#define IDL_SUCCESS 0
#define IDL_ERROR 1
#define IDL_WARNING1 2
#define IDL_WARNING2 3
#define IDL_WARNING3 4
#define IDL_WARNINGMAX IDL_WARNING3
/* general parse flags */
#define IDLF_VERBOSE (1UL << 0)
#define IDLF_NO_EVAL_CONST (1UL << 1)
#define IDLF_COMBINE_REOPENED_MODULES (1UL << 2)
#define IDLF_PREFIX_FILENAME (1UL << 3)
#define IDLF_IGNORE_FORWARDS (1UL << 4)
#define IDLF_PEDANTIC (1UL << 5)
/* syntax extension parse flags */
#define IDLF_TYPECODES (1UL << 16)
#define IDLF_XPIDL (1UL << 17)
/* declaration specification flags */
#define IDLF_DECLSPEC_EXIST (1UL << 0)
#define IDLF_DECLSPEC_INHIBIT (1UL << 1)
/* output flags */
#define IDLF_OUTPUT_NO_NEWLINES (1UL << 0)
#define IDLF_OUTPUT_NO_QUALIFY_IDENTS (1UL << 1)
#define IDLF_OUTPUT_PROPERTIES (1UL << 2)
#define IDLF_OUTPUT_CODEFRAGS (1UL << 3)
#ifdef _WIN32
# define IDL_EXPORT __declspec (dllexport)
# define IDL_IMPORT __declspec (dllimport)
#else
# define IDL_EXPORT /* empty */
# define IDL_IMPORT extern
#endif
/* type casting checks */
#define IDL_check_cast_enable(boolean) do { \
IDL_IMPORT int __IDL_check_type_casts; \
__IDL_check_type_casts = (boolean); \
} while (0)
#define IDL_CHECK_CAST(tree, thetype, name) \
(IDL_check_type_cast(tree, thetype, \
__FILE__, __LINE__, \
G_GNUC_PRETTY_FUNCTION)->u.name)
#ifdef G_HAVE_GINT64
# if G_MAXLONG > 0xffffffffUL
# define IDL_LL "l"
# else
# define IDL_LL "ll"
# endif
typedef gint64 IDL_longlong_t;
typedef guint64 IDL_ulonglong_t;
#else
# define IDL_LL "l"
typedef long IDL_longlong_t;
typedef unsigned long IDL_ulonglong_t;
# warning 64-bit integer type not available, using 32-bit instead
#endif /* G_HAVE_GINT64 */
typedef unsigned int IDL_declspec_t;
typedef struct _IDL_tree_node IDL_tree_node;
typedef struct _IDL_tree_node * IDL_tree;
struct _IDL_LIST {
IDL_tree data;
IDL_tree prev;
IDL_tree next;
IDL_tree _tail; /* Internal use, may not be valid */
};
#define IDL_LIST(a) IDL_CHECK_CAST(a, IDLN_LIST, idl_list)
extern IDL_tree IDL_list_new (IDL_tree data);
extern IDL_tree IDL_list_concat (IDL_tree orig,
IDL_tree append);
extern IDL_tree IDL_list_remove (IDL_tree list,
IDL_tree p);
extern int IDL_list_length (IDL_tree list);
extern IDL_tree IDL_list_nth (IDL_tree list,
int n);
struct _IDL_GENTREE {
IDL_tree data;
GHashTable *siblings;
GHashTable *children;
GHashFunc hash_func;
GCompareFunc key_compare_func;
IDL_tree _import; /* Internal use, do not recurse */
char *_cur_prefix; /* Internal use */
};
#define IDL_GENTREE(a) IDL_CHECK_CAST(a, IDLN_GENTREE, idl_gentree)
extern IDL_tree IDL_gentree_new (GHashFunc hash_func,
GCompareFunc key_compare_func,
IDL_tree data);
extern IDL_tree IDL_gentree_new_sibling (IDL_tree from,
IDL_tree data);
extern IDL_tree IDL_gentree_chain_sibling (IDL_tree from,
IDL_tree data);
extern IDL_tree IDL_gentree_chain_child (IDL_tree from,
IDL_tree data);
struct _IDL_INTEGER {
IDL_longlong_t value;
};
#define IDL_INTEGER(a) IDL_CHECK_CAST(a, IDLN_INTEGER, idl_integer)
extern IDL_tree IDL_integer_new (IDL_longlong_t value);
struct _IDL_STRING {
char *value;
};
#define IDL_STRING(a) IDL_CHECK_CAST(a, IDLN_STRING, idl_string)
extern IDL_tree IDL_string_new (char *value);
struct _IDL_WIDE_STRING {
wchar_t *value;
};
#define IDL_WIDE_STRING(a) IDL_CHECK_CAST(a, IDLN_WIDE_STRING, idl_wide_string)
extern IDL_tree IDL_wide_string_new (wchar_t *value);
struct _IDL_CHAR {
char *value;
};
#define IDL_CHAR(a) IDL_CHECK_CAST(a, IDLN_CHAR, idl_char)
extern IDL_tree IDL_char_new (char *value);
struct _IDL_WIDE_CHAR {
wchar_t *value;
};
#define IDL_WIDE_CHAR(a) IDL_CHECK_CAST(a, IDLN_WIDE_CHAR, idl_wide_char)
extern IDL_tree IDL_wide_char_new (wchar_t *value);
struct _IDL_FIXED {
char *value;
};
#define IDL_FIXED(a) IDL_CHECK_CAST(a, IDLN_FIXED, idl_fixed)
extern IDL_tree IDL_fixed_new (char *value);
struct _IDL_FLOAT {
double value;
};
#define IDL_FLOAT(a) IDL_CHECK_CAST(a, IDLN_FLOAT, idl_float)
extern IDL_tree IDL_float_new (double value);
struct _IDL_BOOLEAN {
unsigned value;
};
#define IDL_BOOLEAN(a) IDL_CHECK_CAST(a, IDLN_BOOLEAN, idl_boolean)
extern IDL_tree IDL_boolean_new (unsigned value);
struct _IDL_IDENT {
char *str;
char *repo_id;
GSList *comments;
IDL_tree _ns_ref; /* Internal use, do not recurse */
unsigned _flags; /* Internal use */
#define IDLF_IDENT_CASE_MISMATCH_HIT (1UL << 0)
};
#define IDL_IDENT(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident)
#define IDL_IDENT_TO_NS(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident._ns_ref)
#define IDL_IDENT_REPO_ID(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident.repo_id)
extern IDL_tree IDL_ident_new (char *str);
extern void IDL_queue_new_ident_comment (const char *str);
enum IDL_float_type {
IDL_FLOAT_TYPE_FLOAT,
IDL_FLOAT_TYPE_DOUBLE,
IDL_FLOAT_TYPE_LONGDOUBLE
};
struct _IDL_TYPE_FLOAT {
enum IDL_float_type f_type;
};
#define IDL_TYPE_FLOAT(a) IDL_CHECK_CAST(a, IDLN_TYPE_FLOAT, idl_type_float)
extern IDL_tree IDL_type_float_new (enum IDL_float_type f_type);
struct _IDL_TYPE_FIXED {
IDL_tree positive_int_const;
IDL_tree integer_lit;
};
#define IDL_TYPE_FIXED(a) IDL_CHECK_CAST(a, IDLN_TYPE_FIXED, idl_type_fixed)
extern IDL_tree IDL_type_fixed_new (IDL_tree positive_int_const,
IDL_tree integer_lit);
enum IDL_integer_type {
IDL_INTEGER_TYPE_SHORT,
IDL_INTEGER_TYPE_LONG,
IDL_INTEGER_TYPE_LONGLONG
};
struct _IDL_TYPE_INTEGER {
unsigned f_signed : 1;
enum IDL_integer_type f_type;
};
#define IDL_TYPE_INTEGER(a) IDL_CHECK_CAST(a, IDLN_TYPE_INTEGER, idl_type_integer)
extern IDL_tree IDL_type_integer_new (unsigned f_signed,
enum IDL_integer_type f_type);
extern IDL_tree IDL_type_char_new (void);
extern IDL_tree IDL_type_wide_char_new (void);
extern IDL_tree IDL_type_boolean_new (void);
extern IDL_tree IDL_type_octet_new (void);
extern IDL_tree IDL_type_any_new (void);
extern IDL_tree IDL_type_object_new (void);
extern IDL_tree IDL_type_typecode_new (void);
struct _IDL_TYPE_STRING {
IDL_tree positive_int_const;
};
#define IDL_TYPE_STRING(a) IDL_CHECK_CAST(a, IDLN_TYPE_STRING, idl_type_string)
extern IDL_tree IDL_type_string_new (IDL_tree positive_int_const);
struct _IDL_TYPE_WIDE_STRING {
IDL_tree positive_int_const;
};
#define IDL_TYPE_WIDE_STRING(a) IDL_CHECK_CAST(a, IDLN_TYPE_WIDE_STRING, idl_type_wide_string)
extern IDL_tree IDL_type_wide_string_new (IDL_tree positive_int_const);
struct _IDL_TYPE_ENUM {
IDL_tree ident;
IDL_tree enumerator_list;
};
#define IDL_TYPE_ENUM(a) IDL_CHECK_CAST(a, IDLN_TYPE_ENUM, idl_type_enum)
extern IDL_tree IDL_type_enum_new (IDL_tree ident,
IDL_tree enumerator_list);
struct _IDL_TYPE_ARRAY {
IDL_tree ident;
IDL_tree size_list;
};
#define IDL_TYPE_ARRAY(a) IDL_CHECK_CAST(a, IDLN_TYPE_ARRAY, idl_type_array)
extern IDL_tree IDL_type_array_new (IDL_tree ident,
IDL_tree size_list);
struct _IDL_TYPE_SEQUENCE {
IDL_tree simple_type_spec;
IDL_tree positive_int_const;
};
#define IDL_TYPE_SEQUENCE(a) IDL_CHECK_CAST(a, IDLN_TYPE_SEQUENCE, idl_type_sequence)
extern IDL_tree IDL_type_sequence_new (IDL_tree simple_type_spec,
IDL_tree positive_int_const);
struct _IDL_TYPE_STRUCT {
IDL_tree ident;
IDL_tree member_list;
};
#define IDL_TYPE_STRUCT(a) IDL_CHECK_CAST(a, IDLN_TYPE_STRUCT, idl_type_struct)
extern IDL_tree IDL_type_struct_new (IDL_tree ident,
IDL_tree member_list);
struct _IDL_TYPE_UNION {
IDL_tree ident;
IDL_tree switch_type_spec;
IDL_tree switch_body;
};
#define IDL_TYPE_UNION(a) IDL_CHECK_CAST(a, IDLN_TYPE_UNION, idl_type_union)
extern IDL_tree IDL_type_union_new (IDL_tree ident,
IDL_tree switch_type_spec,
IDL_tree switch_body);
struct _IDL_MEMBER {
IDL_tree type_spec;
IDL_tree dcls;
};
#define IDL_MEMBER(a) IDL_CHECK_CAST(a, IDLN_MEMBER, idl_member)
extern IDL_tree IDL_member_new (IDL_tree type_spec,
IDL_tree dcls);
struct _IDL_NATIVE {
IDL_tree ident;
char *user_type; /* XPIDL extension */
};
#define IDL_NATIVE(a) IDL_CHECK_CAST(a, IDLN_NATIVE, idl_native)
extern IDL_tree IDL_native_new (IDL_tree ident);
struct _IDL_TYPE_DCL {
IDL_tree type_spec;
IDL_tree dcls;
};
#define IDL_TYPE_DCL(a) IDL_CHECK_CAST(a, IDLN_TYPE_DCL, idl_type_dcl)
extern IDL_tree IDL_type_dcl_new (IDL_tree type_spec,
IDL_tree dcls);
struct _IDL_CONST_DCL {
IDL_tree const_type;
IDL_tree ident;
IDL_tree const_exp;
};
#define IDL_CONST_DCL(a) IDL_CHECK_CAST(a, IDLN_CONST_DCL, idl_const_dcl)
extern IDL_tree IDL_const_dcl_new (IDL_tree const_type,
IDL_tree ident,
IDL_tree const_exp);
struct _IDL_EXCEPT_DCL {
IDL_tree ident;
IDL_tree members;
};
#define IDL_EXCEPT_DCL(a) IDL_CHECK_CAST(a, IDLN_EXCEPT_DCL, idl_except_dcl)
extern IDL_tree IDL_except_dcl_new (IDL_tree ident,
IDL_tree members);
struct _IDL_ATTR_DCL {
unsigned f_readonly : 1;
IDL_tree param_type_spec;
IDL_tree simple_declarations;
};
#define IDL_ATTR_DCL(a) IDL_CHECK_CAST(a, IDLN_ATTR_DCL, idl_attr_dcl)
extern IDL_tree IDL_attr_dcl_new (unsigned f_readonly,
IDL_tree param_type_spec,
IDL_tree simple_declarations);
struct _IDL_OP_DCL {
unsigned f_noscript : 1;
unsigned f_oneway : 1;
/* XPIDL extension (varags) */
unsigned f_varargs : 1;
IDL_tree op_type_spec;
IDL_tree ident;
IDL_tree parameter_dcls;
IDL_tree raises_expr;
IDL_tree context_expr;
};
#define IDL_OP_DCL(a) IDL_CHECK_CAST(a, IDLN_OP_DCL, idl_op_dcl)
extern IDL_tree IDL_op_dcl_new (unsigned f_oneway,
IDL_tree op_type_spec,
IDL_tree ident,
IDL_tree parameter_dcls,
IDL_tree raises_expr,
IDL_tree context_expr);
enum IDL_param_attr {
IDL_PARAM_IN,
IDL_PARAM_OUT,
IDL_PARAM_INOUT
};
struct _IDL_PARAM_DCL {
enum IDL_param_attr attr;
IDL_tree param_type_spec;
IDL_tree simple_declarator;
};
#define IDL_PARAM_DCL(a) IDL_CHECK_CAST(a, IDLN_PARAM_DCL, idl_param_dcl)
extern IDL_tree IDL_param_dcl_new (enum IDL_param_attr attr,
IDL_tree param_type_spec,
IDL_tree simple_declarator);
struct _IDL_CASE_STMT {
IDL_tree labels;
IDL_tree element_spec;
};
#define IDL_CASE_STMT(a) IDL_CHECK_CAST(a, IDLN_CASE_STMT, idl_case_stmt)
extern IDL_tree IDL_case_stmt_new (IDL_tree labels,
IDL_tree element_spec);
struct _IDL_INTERFACE {
IDL_tree ident;
IDL_tree inheritance_spec;
IDL_tree body;
};
#define IDL_INTERFACE(a) IDL_CHECK_CAST(a, IDLN_INTERFACE, idl_interface)
extern IDL_tree IDL_interface_new (IDL_tree ident,
IDL_tree inheritance_spec,
IDL_tree body);
struct _IDL_FORWARD_DCL {
IDL_tree ident;
};
#define IDL_FORWARD_DCL(a) IDL_CHECK_CAST(a, IDLN_FORWARD_DCL, idl_forward_dcl)
extern IDL_tree IDL_forward_dcl_new (IDL_tree ident);
struct _IDL_MODULE {
IDL_tree ident;
IDL_tree definition_list;
};
#define IDL_MODULE(a) IDL_CHECK_CAST(a, IDLN_MODULE, idl_module)
extern IDL_tree IDL_module_new (IDL_tree ident,
IDL_tree definition_list);
enum IDL_binop {
IDL_BINOP_OR,
IDL_BINOP_XOR,
IDL_BINOP_AND,
IDL_BINOP_SHR,
IDL_BINOP_SHL,
IDL_BINOP_ADD,
IDL_BINOP_SUB,
IDL_BINOP_MULT,
IDL_BINOP_DIV,
IDL_BINOP_MOD
};
struct _IDL_BINOP {
enum IDL_binop op;
IDL_tree left, right;
};
#define IDL_BINOP(a) IDL_CHECK_CAST(a, IDLN_BINOP, idl_binop)
extern IDL_tree IDL_binop_new (enum IDL_binop op,
IDL_tree left,
IDL_tree right);
enum IDL_unaryop {
IDL_UNARYOP_PLUS,
IDL_UNARYOP_MINUS,
IDL_UNARYOP_COMPLEMENT
};
struct _IDL_UNARYOP {
enum IDL_unaryop op;
IDL_tree operand;
};
#define IDL_UNARYOP(a) IDL_CHECK_CAST(a, IDLN_UNARYOP, idl_unaryop)
extern IDL_tree IDL_unaryop_new (enum IDL_unaryop op,
IDL_tree operand);
/* XPIDL code fragments extension. */
struct _IDL_CODEFRAG {
char *desc;
GSList *lines;
};
#define IDL_CODEFRAG(a) IDL_CHECK_CAST(a, IDLN_CODEFRAG, idl_codefrag)
extern IDL_tree IDL_codefrag_new (char *desc,
GSList *lines);
/*
* IDL_tree_type - Enumerations of node types
*
* Note this enumerator list is subject to change in the future. A program should not need
* more than a recompilation to adjust for a change in this list, so instead of using a
* statically initialized jumptable, allocate an array of size IDLN_LAST and assign the
* elements manually.
*/
typedef enum {
IDLN_NONE,
IDLN_ANY,
IDLN_LIST,
IDLN_GENTREE,
IDLN_INTEGER,
IDLN_STRING,
IDLN_WIDE_STRING,
IDLN_CHAR,
IDLN_WIDE_CHAR,
IDLN_FIXED,
IDLN_FLOAT,
IDLN_BOOLEAN,
IDLN_IDENT,
IDLN_TYPE_DCL,
IDLN_CONST_DCL,
IDLN_EXCEPT_DCL,
IDLN_ATTR_DCL,
IDLN_OP_DCL,
IDLN_PARAM_DCL,
IDLN_FORWARD_DCL,
IDLN_TYPE_INTEGER,
IDLN_TYPE_FLOAT,
IDLN_TYPE_FIXED,
IDLN_TYPE_CHAR,
IDLN_TYPE_WIDE_CHAR,
IDLN_TYPE_STRING,
IDLN_TYPE_WIDE_STRING,
IDLN_TYPE_BOOLEAN,
IDLN_TYPE_OCTET,
IDLN_TYPE_ANY,
IDLN_TYPE_OBJECT,
IDLN_TYPE_TYPECODE,
IDLN_TYPE_ENUM,
IDLN_TYPE_SEQUENCE,
IDLN_TYPE_ARRAY,
IDLN_TYPE_STRUCT,
IDLN_TYPE_UNION,
IDLN_MEMBER,
IDLN_NATIVE,
IDLN_CASE_STMT,
IDLN_INTERFACE,
IDLN_MODULE,
IDLN_BINOP,
IDLN_UNARYOP,
IDLN_CODEFRAG,
IDLN_LAST
} IDL_tree_type;
IDL_IMPORT const char * IDL_tree_type_names[];
struct _IDL_tree_node {
IDL_tree_type _type;
IDL_tree up; /* Do not recurse */
IDL_declspec_t declspec;
/* properties is an XPIDL extension. It is a hash table of
* case-insensitive string keys to string values. */
GHashTable *properties;
int refs;
char *_file; /* Internal use */
int _line; /* Internal use */
union {
struct _IDL_LIST idl_list;
struct _IDL_GENTREE idl_gentree;
struct _IDL_INTEGER idl_integer;
struct _IDL_STRING idl_string;
struct _IDL_WIDE_STRING idl_wide_string;
struct _IDL_CHAR idl_char;
struct _IDL_WIDE_CHAR idl_wide_char;
struct _IDL_FIXED idl_fixed;
struct _IDL_FLOAT idl_float;
struct _IDL_BOOLEAN idl_boolean;
struct _IDL_IDENT idl_ident;
struct _IDL_TYPE_DCL idl_type_dcl;
struct _IDL_CONST_DCL idl_const_dcl;
struct _IDL_EXCEPT_DCL idl_except_dcl;
struct _IDL_ATTR_DCL idl_attr_dcl;
struct _IDL_OP_DCL idl_op_dcl;
struct _IDL_PARAM_DCL idl_param_dcl;
struct _IDL_FORWARD_DCL idl_forward_dcl;
struct _IDL_TYPE_FLOAT idl_type_float;
struct _IDL_TYPE_FIXED idl_type_fixed;
struct _IDL_TYPE_INTEGER idl_type_integer;
struct _IDL_TYPE_ENUM idl_type_enum;
struct _IDL_TYPE_STRING idl_type_string;
struct _IDL_TYPE_WIDE_STRING idl_type_wide_string;
struct _IDL_TYPE_SEQUENCE idl_type_sequence;
struct _IDL_TYPE_ARRAY idl_type_array;
struct _IDL_TYPE_STRUCT idl_type_struct;
struct _IDL_TYPE_UNION idl_type_union;
struct _IDL_MEMBER idl_member;
struct _IDL_NATIVE idl_native;
struct _IDL_CASE_STMT idl_case_stmt;
struct _IDL_INTERFACE idl_interface;
struct _IDL_MODULE idl_module;
struct _IDL_BINOP idl_binop;
struct _IDL_UNARYOP idl_unaryop;
struct _IDL_CODEFRAG idl_codefrag;
} u;
};
#define IDL_NODE_TYPE(a) ((a)->_type)
#define IDL_NODE_TYPE_NAME(a) ((a)?IDL_tree_type_names[IDL_NODE_TYPE(a)]:"NULL")
#define IDL_NODE_UP(a) ((a)->up)
#define IDL_NODE_PROPERTIES(a) ((a)->properties)
#define IDL_NODE_DECLSPEC(a) ((a)->declspec)
#define IDL_NODE_REFS(a) ((a)->refs)
#define IDL_NODE_IS_LITERAL(a) \
(IDL_NODE_TYPE(a) == IDLN_INTEGER || \
IDL_NODE_TYPE(a) == IDLN_STRING || \
IDL_NODE_TYPE(a) == IDLN_WIDE_STRING || \
IDL_NODE_TYPE(a) == IDLN_CHAR || \
IDL_NODE_TYPE(a) == IDLN_WIDE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_FIXED || \
IDL_NODE_TYPE(a) == IDLN_FLOAT || \
IDL_NODE_TYPE(a) == IDLN_BOOLEAN)
#define IDL_NODE_IS_TYPE(a) \
(IDL_NODE_TYPE(a) == IDLN_TYPE_INTEGER || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRING || \
IDL_NODE_TYPE(a) == IDLN_TYPE_WIDE_STRING || \
IDL_NODE_TYPE(a) == IDLN_TYPE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_TYPE_WIDE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_TYPE_FIXED || \
IDL_NODE_TYPE(a) == IDLN_TYPE_FLOAT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_BOOLEAN || \
IDL_NODE_TYPE(a) == IDLN_TYPE_OCTET || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ANY || \
IDL_NODE_TYPE(a) == IDLN_TYPE_OBJECT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_TYPECODE || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ENUM || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ARRAY || \
IDL_NODE_TYPE(a) == IDLN_TYPE_SEQUENCE || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRUCT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_UNION)
#define IDL_NODE_IS_SCOPED(a) \
(IDL_NODE_TYPE(a) == IDLN_IDENT || \
IDL_NODE_TYPE(a) == IDLN_INTERFACE || \
IDL_NODE_TYPE(a) == IDLN_MODULE || \
IDL_NODE_TYPE(a) == IDLN_EXCEPT_DCL || \
IDL_NODE_TYPE(a) == IDLN_OP_DCL || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ENUM || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRUCT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_UNION)
typedef struct _IDL_ns * IDL_ns;
struct _IDL_ns {
IDL_tree global;
IDL_tree file;
IDL_tree current;
GHashTable *inhibits;
GHashTable *filename_hash;
};
#define IDL_NS(a) (*(a))
typedef enum {
IDL_INPUT_REASON_INIT,
IDL_INPUT_REASON_FILL,
IDL_INPUT_REASON_ABORT,
IDL_INPUT_REASON_FINISH
} IDL_input_reason;
union IDL_input_data {
struct {
const char *filename;
} init;
struct {
char *buffer;
size_t max_size;
} fill;
};
typedef int (*IDL_input_callback) (IDL_input_reason reason,
union IDL_input_data *data,
gpointer user_data);
typedef int (*IDL_msg_callback) (int level,
int num,
int line,
const char *filename,
const char *message);
typedef struct _IDL_tree_func_state IDL_tree_func_state;
typedef struct _IDL_tree_func_data IDL_tree_func_data;
/* Traversal state data. Recursive walks chain states. */
struct _IDL_tree_func_state {
IDL_tree_func_state *up;
IDL_tree start;
IDL_tree_func_data *bottom;
};
/* This holds a list of the up hierarchy traversed, beginning from traversal. This is
* useful since nodes referenced after initial definition will have a different traversal
* path than the actual up path. */
struct _IDL_tree_func_data {
IDL_tree_func_state *state;
IDL_tree_func_data *up;
IDL_tree tree;
};
typedef gboolean (*IDL_tree_func) (IDL_tree_func_data *tnfd,
gpointer user_data);
extern IDL_tree IDL_check_type_cast (const IDL_tree var,
IDL_tree_type type,
const char *file,
int line,
const char *function);
extern const char * IDL_get_libver_string (void);
extern const char * IDL_get_IDLver_string (void);
extern int IDL_parse_filename (const char *filename,
const char *cpp_args,
IDL_msg_callback msg_cb,
IDL_tree *tree, IDL_ns *ns,
unsigned long parse_flags,
int max_msg_level);
extern int IDL_parse_filename_with_input (const char *filename,
IDL_input_callback input_cb,
gpointer input_cb_user_data,
IDL_msg_callback msg_cb,
IDL_tree *tree, IDL_ns *ns,
unsigned long parse_flags,
int max_msg_level);
extern int IDL_ns_prefix (IDL_ns ns,
const char *s);
extern void IDL_ns_ID (IDL_ns ns,
const char *s);
extern void IDL_ns_version (IDL_ns ns,
const char *s);
extern int IDL_inhibit_get (void);
extern void IDL_inhibit_push (void);
extern void IDL_inhibit_pop (void);
extern void IDL_file_set (const char *filename,
int line);
extern void IDL_file_get (const char **filename,
int *line);
extern IDL_tree IDL_get_parent_node (IDL_tree p,
IDL_tree_type type,
int *scope_levels);
extern IDL_tree IDL_tree_get_scope (IDL_tree p);
extern int IDL_tree_get_node_info (IDL_tree tree,
char **who,
char **what);
extern void IDL_tree_error (IDL_tree p,
const char *fmt,
...);
extern void IDL_tree_warning (IDL_tree p,
int level,
const char *fmt,
...);
extern const char * IDL_tree_property_get (IDL_tree tree,
const char *key);
extern void IDL_tree_property_set (IDL_tree tree,
const char *key,
const char *value);
extern gboolean IDL_tree_property_remove (IDL_tree tree,
const char *key);
extern void IDL_tree_properties_copy (IDL_tree from_tree,
IDL_tree to_tree);
extern void IDL_tree_walk (IDL_tree p,
IDL_tree_func_data *current,
IDL_tree_func pre_tree_func,
IDL_tree_func post_tree_func,
gpointer user_data);
extern void IDL_tree_walk_in_order (IDL_tree p,
IDL_tree_func tree_func,
gpointer user_data);
extern void IDL_tree_free (IDL_tree root);
extern void IDL_tree_to_IDL (IDL_tree p,
IDL_ns ns,
FILE *output,
unsigned long output_flags);
extern char * IDL_do_escapes (const char *s);
extern IDL_tree IDL_resolve_const_exp (IDL_tree p,
IDL_tree_type type);
extern IDL_ns IDL_ns_new (void);
extern void IDL_ns_free (IDL_ns ns);
extern IDL_tree IDL_ns_resolve_this_scope_ident (IDL_ns ns,
IDL_tree scope,
IDL_tree ident);
extern IDL_tree IDL_ns_resolve_ident (IDL_ns ns,
IDL_tree ident);
extern IDL_tree IDL_ns_lookup_this_scope (IDL_ns ns,
IDL_tree scope,
IDL_tree ident,
gboolean *conflict);
extern IDL_tree IDL_ns_lookup_cur_scope (IDL_ns ns,
IDL_tree ident,
gboolean *conflict);
extern IDL_tree IDL_ns_place_new (IDL_ns ns,
IDL_tree ident);
extern void IDL_ns_push_scope (IDL_ns ns,
IDL_tree ident);
extern void IDL_ns_pop_scope (IDL_ns ns);
extern IDL_tree IDL_ns_qualified_ident_new (IDL_tree nsid);
extern char * IDL_ns_ident_to_qstring (IDL_tree ns_ident,
const char *join,
int scope_levels);
extern int IDL_ns_scope_levels_from_here (IDL_ns ns,
IDL_tree ident,
IDL_tree parent);
extern char * IDL_ns_ident_make_repo_id (IDL_ns ns,
IDL_tree p,
const char *p_prefix,
int *major,
int *minor);
#ifdef __cplusplus
}
#endif
#endif /* __IDL_H */

View File

@@ -1,64 +0,0 @@
@echo off
if "%MOZ_TOOLS%" == "" goto no_moz_tools
echo.
echo MOZ_TOOLS is set to %MOZ_TOOLS%
echo It should NOT be set to anything in your cygwin
echo directory, such as c:\cygwin or c:\cygwin\bin
echo where C:\cygwin represents where you installed cygwin.
echo In that case files will be overwritten.
echo.
echo It should be set to some empty directory.
echo. e.g.
echo. mkdir c:\moz_tools
echo. set MOZ_TOOLS=c:\moz_tools
echo.
echo Please verify this.
echo.
pause
echo copying exes and dlls to %MOZ_TOOLS%\bin
if not exist %MOZ_TOOLS%\bin\NUL mkdir %MOZ_TOOLS%\bin >NUL
copy bin\x86\* %MOZ_TOOLS%\bin >NUL
echo copying include files to %MOZ_TOOLS%\include
if not exist %MOZ_TOOLS%\include\NUL mkdir %MOZ_TOOLS%\include >NUL
copy include\* %MOZ_TOOLS%\include >NUL
echo copying include files to %MOZ_TOOLS%\include\libIDL
if not exist %MOZ_TOOLS%\include\libIDL\NUL mkdir %MOZ_TOOLS%\include\libIDL >NUL
copy include\libIDL\* %MOZ_TOOLS%\include\libIDL >NUL
echo copying lib files to %MOZ_TOOLS%\lib
if not exist %MOZ_TOOLS%\lib\NUL mkdir %MOZ_TOOLS%\lib >NUL
copy lib\* %MOZ_TOOLS%\lib >NUL
echo.
echo done copying
echo.
echo make sure that MOZ_TOOLS\bin is on your path
echo.
goto done
:no_moz_tools
echo.
echo. ERROR!
echo.
echo You need to set MOZ_TOOLS in your environment.
echo MOZ_TOOLS should be the name of a directory that
echo you create to hold these tools.
echo.
echo. e.g.
echo. mkdir c:\moz_tools
echo. set MOZ_TOOLS=c:\moz_tools
echo.
echo MOZ_TOOLS should be set permanently so that it is
echo available to the build system whenever mozilla is building.
echo.
echo.
echo Please set MOZ_TOOLS and run install.bat again
echo.
:done
pause

Binary file not shown.

View File

@@ -1,12 +0,0 @@
Sources for glib are available from gnome.org via cvs. See cvs
checkout instructions at http://www.gnome.org - or use
export CVSROOT=:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome
cvs login (no password)
cvs -z3 checkout glib
or grap a package of the sources we're currently using from
ftp://ftp.mozilla.org/pub/mozilla/libraries/source/
These sources correspond to the GLIB_1_2_0 tag on the gnome cvs
server.

View File

@@ -1,14 +0,0 @@
Sources for libIDL are available from gnome.org via cvs. See cvs
checkout instructions at http://www.gnome.org - or use
export CVSROOT=:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome
cvs login (no password)
cvs -z3 checkout ORBit
(libIDL files are in ORBit/libIDL)
or grap a package of the sources we're currently using from
ftp://ftp.mozilla.org/pub/mozilla/libraries/source/
These sources correspond to the LIBIDL_V0_6_3 tag on the gnome cvs
server.

View File

@@ -1,7 +0,0 @@
This directory contains the source files for nsinstall.exe,
which is used to build the Mozilla client on Win32.
To build nsinstall.exe, issue the command:
nmake /f nsinstall.mak
The output is Release\nsinstall.exe. Copy it to a directory
on your Path.

View File

@@ -1,697 +0,0 @@
/*
* The nsinstall command for Win32
*
* Our gmake makefiles use the nsinstall command to create the
* object directories or installing headers and libs to ns/dist.
* The shmsdos shell has nsinstall as a built-in command. However,
* if we use another shell like MKS toolkit's sh, we need to have
* the nsinstall command separately.
*
* This file was generated by just taking the part of shmsdos.c
* needed by nsinstall and deleting the recursive directory copy code.
*
* To build, say
* nmake /f nsinstall.mak
*/
#include <direct.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <windows.h>
#pragma hdrstop
/*
* sh_FileFcn --
*
* A function that operates on a file. The pathname is either
* absolute or relative to the current directory, and contains
* no wildcard characters such as * and ?. Additional arguments
* can be passed to the function via the arg pointer.
*/
typedef BOOL (*sh_FileFcn)(
char *pathName,
WIN32_FIND_DATA *fileData,
void *arg);
static int shellCp (char **pArgv);
static int shellNsinstall (char **pArgv);
static int shellMkdir (char **pArgv);
static BOOL sh_EnumerateFiles(const char *pattern, const char *where,
sh_FileFcn fileFcn, void *arg, int *nFiles);
static const char *sh_GetLastErrorMessage(void);
static BOOL sh_DoCopy(char *srcFileName, DWORD srcFileAttributes,
char *dstFileName, DWORD dstFileAttributes,
int force, int recursive);
/* changes all forward slashes in token to back slashes */
void changeForwardSlashesTpBackSlashes ( char *arg )
{
if ( arg == NULL )
return;
while ( *arg ) {
if ( *arg == '/' )
*arg = '\\';
arg++;
}
}
int main(int argc, char *argv[ ])
{
return shellNsinstall ( argv + 1 );
}
static int
shellNsinstall (char **pArgv)
{
int retVal = 0; /* exit status */
int dirOnly = 0; /* 1 if and only if -D is specified */
char **pSrc;
char **pDst;
/*
* Process the command-line options. We ignore the
* options except for -D. Some options, such as -m,
* are followed by an argument. We need to skip the
* argument too.
*/
while ( *pArgv && **pArgv == '-' ) {
char c = (*pArgv)[1]; /* The char after '-' */
if ( c == 'D' ) {
dirOnly = 1;
} else if ( c == 'm' ) {
pArgv++; /* skip the next argument */
}
pArgv++;
}
if ( !dirOnly ) {
/* There are files to install. Get source files */
if ( *pArgv ) {
pSrc = pArgv++;
} else {
fprintf( stderr, "nsinstall: not enough arguments\n");
return 3;
}
}
/* Get to last token to find destination directory */
if ( *pArgv ) {
pDst = pArgv++;
if ( dirOnly && *pArgv ) {
fprintf( stderr, "nsinstall: too many arguments with -D\n");
return 3;
}
} else {
fprintf( stderr, "nsinstall: not enough arguments\n");
return 3;
}
while ( *pArgv )
pDst = pArgv++;
retVal = shellMkdir ( pDst );
if ( retVal )
return retVal;
if ( !dirOnly )
retVal = shellCp ( pSrc );
return retVal;
}
static int
shellMkdir (char **pArgv)
{
int retVal = 0; /* assume valid return */
char *arg;
char *pArg;
char path[_MAX_PATH];
char tmpPath[_MAX_PATH];
char *pTmpPath = tmpPath;
/* All the options are simply ignored in this implementation */
while ( *pArgv && **pArgv == '-' ) {
if ( (*pArgv)[1] == 'm' ) {
pArgv++; /* skip the next argument (mode) */
}
pArgv++;
}
while ( *pArgv ) {
arg = *pArgv;
changeForwardSlashesTpBackSlashes ( arg );
pArg = arg;
pTmpPath = tmpPath;
while ( 1 ) {
/* create part of path */
while ( *pArg ) {
*pTmpPath++ = *pArg++;
if ( *pArg == '\\' )
break;
}
*pTmpPath = '\0';
/* check if directory alreay exists */
_getcwd ( path, sizeof (path) );
if ( _chdir ( tmpPath ) != -1 ) {
_chdir ( path );
} else {
if ( _mkdir ( tmpPath ) == -1 ) {
// while ( waitForDebug );
printf ( "%s: ", tmpPath );
perror ( "Could not create the directory" );
retVal = 3;
break;
}
}
if ( *pArg == '\0' ) /* complete path? */
break;
/* loop for next directory */
}
pArgv++;
}
return retVal;
}
static const char *
sh_GetLastErrorMessage()
{
static char buf[128];
FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), /* default language */
buf,
sizeof(buf),
NULL
);
return buf;
}
/*
* struct sh_FileData --
*
* A pointer to the sh_FileData structure is passed into sh_RecordFileData,
* which will fill in the fields.
*/
struct sh_FileData {
char pathName[_MAX_PATH];
DWORD dwFileAttributes;
};
/*
* sh_RecordFileData --
*
* Record the pathname and attributes of the file in
* the sh_FileData structure pointed to by arg.
*
* Always return TRUE (successful completion).
*
* This function is intended to be passed into sh_EnumerateFiles
* to see if a certain pattern expands to exactly one file/directory,
* and if so, record its pathname and attributes.
*/
static BOOL
sh_RecordFileData(char *pathName, WIN32_FIND_DATA *findData, void *arg)
{
struct sh_FileData *fData = (struct sh_FileData *) arg;
strcpy(fData->pathName, pathName);
fData->dwFileAttributes = findData->dwFileAttributes;
return TRUE;
}
static BOOL
sh_DoCopy(char *srcFileName,
DWORD srcFileAttributes,
char *dstFileName,
DWORD dstFileAttributes,
int force,
int recursive
)
{
if (dstFileAttributes != 0xFFFFFFFF) {
if ((dstFileAttributes & FILE_ATTRIBUTE_READONLY) && force) {
dstFileAttributes &= ~FILE_ATTRIBUTE_READONLY;
SetFileAttributes(dstFileName, dstFileAttributes);
}
}
if (srcFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
fprintf(stderr, "nsinstall: %s is a directory\n",
srcFileName);
return FALSE;
} else {
if (!CopyFile(srcFileName, dstFileName, FALSE)) {
fprintf(stderr, "nsinstall: cannot copy %s to %s: %s\n",
srcFileName, dstFileName, sh_GetLastErrorMessage());
return FALSE;
}
}
return TRUE;
}
/*
* struct sh_CpCmdArg --
*
* A pointer to the sh_CpCmdArg structure is passed into sh_CpFileCmd.
* The sh_CpCmdArg contains information about the cp command, and
* provide a buffer for constructing the destination file name.
*/
struct sh_CpCmdArg {
int force; /* -f option, ok to overwrite an existing
* read-only destination file */
int recursive; /* -r or -R option, recursively copy
* directories. Note: this field is not used
* by nsinstall and should always be 0. */
char *dstFileName; /* a buffer for constructing the destination
* file name */
char *dstFileNameMarker; /* points to where in the dstFileName buffer
* we should write the file component of the
* destination file */
};
/*
* sh_CpFileCmd --
*
* Copy a file to the destination directory
*
* This function is intended to be passed into sh_EnumerateFiles to
* copy all the files specified by the pattern to the destination
* directory.
*
* Return TRUE if the file is successfully copied, and FALSE otherwise.
*/
static BOOL
sh_CpFileCmd(char *pathName, WIN32_FIND_DATA *findData, void *cpArg)
{
BOOL retVal = TRUE;
struct sh_CpCmdArg *arg = (struct sh_CpCmdArg *) cpArg;
strcpy(arg->dstFileNameMarker, findData->cFileName);
return sh_DoCopy(pathName, findData->dwFileAttributes,
arg->dstFileName, GetFileAttributes(arg->dstFileName),
arg->force, arg->recursive);
}
static int
shellCp (char **pArgv)
{
int retVal = 0;
char **pSrc;
char **pDst;
struct sh_CpCmdArg arg;
struct sh_FileData dstData;
int dstIsDir = 0;
int n;
arg.force = 0;
arg.recursive = 0;
arg.dstFileName = dstData.pathName;
arg.dstFileNameMarker = 0;
while (*pArgv && **pArgv == '-') {
char *p = *pArgv;
while (*(++p)) {
if (*p == 'f') {
arg.force = 1;
}
}
pArgv++;
}
/* the first source file */
if (*pArgv) {
pSrc = pArgv++;
} else {
fprintf(stderr, "nsinstall: not enough arguments\n");
return 3;
}
/* get to the last token to find destination */
if (*pArgv) {
pDst = pArgv++;
} else {
fprintf(stderr, "nsinstall: not enough arguments\n");
return 3;
}
while (*pArgv) {
pDst = pArgv++;
}
/*
* The destination pattern must unambiguously expand to exactly
* one file or directory.
*/
changeForwardSlashesTpBackSlashes(*pDst);
sh_EnumerateFiles(*pDst, *pDst, sh_RecordFileData, &dstData, &n);
assert(n >= 0);
if (n == 1) {
/*
* Is the destination a file or directory?
*/
if (dstData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
dstIsDir = 1;
}
} else if (n > 1) {
fprintf(stderr, "nsinstall: %s: ambiguous destination file "
"or directory\n", *pDst);
return 3;
} else {
/*
* n == 0, meaning that destination file or directory does
* not exist. In this case the destination file directory
* name must be fully specified.
*/
char *p;
for (p = *pDst; *p; p++) {
if (*p == '*' || *p == '?') {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pDst);
return 3;
}
}
/*
* Do not include the trailing \, if any, unless it is a root
* directory (\ or X:\).
*/
if (p > *pDst && p[-1] == '\\' && p != *pDst + 1 && p[-2] != ':') {
p[-1] = '\0';
}
strcpy(dstData.pathName, *pDst);
dstData.dwFileAttributes = 0xFFFFFFFF;
}
/*
* If there are two or more source files, the destination has
* to be a directory.
*/
if (pDst - pSrc > 1 && !dstIsDir) {
fprintf(stderr, "nsinstall: cannot copy more than"
" one file to the same destination file\n");
return 3;
}
if (dstIsDir) {
arg.dstFileNameMarker = arg.dstFileName + strlen(arg.dstFileName);
/*
* Now arg.dstFileNameMarker is pointing to the null byte at the
* end of string. We want to make sure that there is a \ at the
* end of string, and arg.dstFileNameMarker should point right
* after that \.
*/
if (arg.dstFileNameMarker[-1] != '\\') {
*(arg.dstFileNameMarker++) = '\\';
}
}
if (!dstIsDir) {
struct sh_FileData srcData;
assert(pDst - pSrc == 1);
changeForwardSlashesTpBackSlashes(*pSrc);
sh_EnumerateFiles(*pSrc, *pSrc, sh_RecordFileData, &srcData, &n);
if (n == 0) {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pSrc);
retVal = 3;
} else if (n > 1) {
fprintf(stderr, "nsinstall: cannot copy more than one file or "
"directory to the same destination\n");
retVal = 3;
} else {
assert(n == 1);
if (sh_DoCopy(srcData.pathName, srcData.dwFileAttributes,
dstData.pathName, dstData.dwFileAttributes,
arg.force, arg.recursive) == FALSE) {
retVal = 3;
}
}
return retVal;
}
for ( ; *pSrc != *pDst; pSrc++) {
BOOL rv;
changeForwardSlashesTpBackSlashes(*pSrc);
rv = sh_EnumerateFiles(*pSrc, *pSrc, sh_CpFileCmd, &arg, &n);
if (rv == FALSE) {
retVal = 3;
} else {
if (n == 0) {
fprintf(stderr, "nsinstall: %s: No such file or directory\n",
*pSrc);
retVal = 3;
}
}
}
return retVal;
}
/*
* sh_EnumerateFiles --
*
* Enumerate all the files in the specified pattern, which is a pathname
* containing possibly wildcard characters such as * and ?. fileFcn
* is called on each file, passing the expanded file name, a pointer
* to the file's WIN32_FILE_DATA, and the arg pointer.
*
* It is assumed that there are no wildcard characters before the
* character pointed to by 'where'.
*
* On return, *nFiles stores the number of files enumerated. *nFiles is
* set to this number whether sh_EnumerateFiles or 'fileFcn' succeeds
* or not.
*
* Return TRUE if the files are successfully enumerated and all
* 'fileFcn' invocations succeeded. Return FALSE if something went
* wrong.
*/
static BOOL sh_EnumerateFiles(
const char *pattern,
const char *where,
sh_FileFcn fileFcn,
void *arg,
int *nFiles
)
{
WIN32_FIND_DATA fileData;
HANDLE hSearch;
const char *src;
char *dst;
char fileName[_MAX_PATH];
char *fileNameMarker = fileName;
char *oldFileNameMarker;
BOOL hasWildcard = FALSE;
BOOL retVal = TRUE;
BOOL patternEndsInDotStar = FALSE;
BOOL patternEndsInDot = FALSE; /* a special case of
* patternEndsInDotStar */
int numDotsInPattern;
int len;
/*
* Windows expands patterns ending in ".", ".*", ".**", etc.
* differently from the glob expansion on Unix. For example,
* both "foo." and "foo.*" match "foo", and "*.*" matches
* everything, including filenames with no dots. So we need
* to throw away extra files returned by the FindNextFile()
* function. We require that a matched filename have at least
* the number of dots in the pattern.
*/
len = strlen(pattern);
if (len >= 2) {
/* Start from the end of pattern and go backward */
const char *p = &pattern[len - 1];
/* We can have zero or more *'s */
while (p >= pattern && *p == '*') {
p--;
}
if (p >= pattern && *p == '.') {
patternEndsInDotStar = TRUE;
if (p == &pattern[len - 1]) {
patternEndsInDot = TRUE;
}
p--;
numDotsInPattern = 1;
while (p >= pattern && *p != '\\') {
if (*p == '.') {
numDotsInPattern++;
}
p--;
}
}
}
*nFiles = 0;
/*
* Copy pattern to fileName, but only up to and not including
* the first \ after the first wildcard letter.
*
* Make fileNameMarker point to one of the following:
* - the start of fileName, if fileName does not contain any \.
* - right after the \ before the first wildcard letter, if there is
* a wildcard character.
* - right after the last \, if there is no wildcard character.
*/
dst = fileName;
src = pattern;
while (src < where) {
if (*src == '\\') {
oldFileNameMarker = fileNameMarker;
fileNameMarker = dst + 1;
}
*(dst++) = *(src++);
}
while (*src && *src != '*' && *src != '?') {
if (*src == '\\') {
oldFileNameMarker = fileNameMarker;
fileNameMarker = dst + 1;
}
*(dst++) = *(src++);
}
if (*src) {
/*
* Must have seen the first wildcard letter
*/
hasWildcard = TRUE;
while (*src && *src != '\\') {
*(dst++) = *(src++);
}
}
/* Now src points to either null or \ */
assert(*src == '\0' || *src == '\\');
assert(hasWildcard || *src == '\0');
*dst = '\0';
/*
* If the pattern does not contain any wildcard characters, then
* we don't need to go the FindFirstFile route.
*/
if (!hasWildcard) {
/*
* See if it is the root directory, \, or X:\.
*/
assert(!strcmp(fileName, pattern));
assert(strlen(fileName) >= 1);
if (dst[-1] == '\\' && (dst == fileName + 1 || dst[-2] == ':')) {
fileData.cFileName[0] = '\0';
} else {
/*
* Do not include the trailing \, if any
*/
if (dst[-1] == '\\') {
assert(*fileNameMarker == '\0');
dst[-1] = '\0';
fileNameMarker = oldFileNameMarker;
}
strcpy(fileData.cFileName, fileNameMarker);
}
fileData.dwFileAttributes = GetFileAttributes(fileName);
if (fileData.dwFileAttributes == 0xFFFFFFFF) {
return TRUE;
}
*nFiles = 1;
return (*fileFcn)(fileName, &fileData, arg);
}
hSearch = FindFirstFile(fileName, &fileData);
if (hSearch == INVALID_HANDLE_VALUE) {
return retVal;
}
do {
if (!strcmp(fileData.cFileName, ".")
|| !strcmp(fileData.cFileName, "..")) {
/*
* Skip over . and ..
*/
continue;
}
if (patternEndsInDotStar) {
int nDots = 0;
char *p = fileData.cFileName;
while (*p) {
if (*p == '.') {
nDots++;
}
p++;
}
/* Now p points to the null byte at the end of file name */
if (patternEndsInDot && (p == fileData.cFileName
|| p[-1] != '.')) {
/*
* File name does not end in dot. Skip this file.
* Note: windows file name probably cannot end in dot,
* but we do this check anyway.
*/
continue;
}
if (nDots < numDotsInPattern) {
/*
* Not enough dots in file name. Must be an extra
* file in matching .* pattern. Skip this file.
*/
continue;
}
}
strcpy(fileNameMarker, fileData.cFileName);
if (*src && *(src + 1)) {
/*
* More to go. Recurse.
*/
int n;
assert(*src == '\\');
where = fileName + strlen(fileName);
strcat(fileName, src);
sh_EnumerateFiles(fileName, where, fileFcn, arg, &n);
*nFiles += n;
} else {
assert(strchr(fileName, '*') == NULL);
assert(strchr(fileName, '?') == NULL);
(*nFiles)++;
if ((*fileFcn)(fileName, &fileData, arg) == FALSE) {
retVal = FALSE;
}
}
} while (FindNextFile(hSearch, &fileData));
FindClose(hSearch);
return retVal;
}

View File

@@ -1,141 +0,0 @@
# NMAKE file for building nsinstall.exe.
#
# This file is edited from an NMAKE file generated by
# Microsoft Developer Studio, Format Version 4.20
#
# To build, say
# nmake /f nsinstall.mak CFG=Release
# or
# nmake /f nsinstall.mak CFG=Debug
# If CFG is omitted, a release build is assumed.
!IF "$(CFG)" == ""
CFG=Release
!MESSAGE No configuration specified. Defaulting Release.
!ENDIF
!IF "$(CFG)" != "Release" && "$(CFG)" != "Debug"
!MESSAGE Invalid configuration "$(CFG)" specified.
!MESSAGE You can specify a configuration when running NMAKE on this makefile
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "nsinstall.mak" CFG="Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "Release" (based on "Win32 Console Application")
!MESSAGE "Debug" (based on "Win32 Console Application")
!MESSAGE
!ERROR An invalid configuration is specified.
!ENDIF
!IF "$(OS)" == "Windows_NT"
NULL=
!ELSE
NULL=nul
!ENDIF
################################################################################
# Begin Project
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "Release"
OUTDIR=.\Release
INTDIR=.\Release
ALL : "$(OUTDIR)\nsinstall.exe"
CLEAN :
-@erase "$(INTDIR)\nsinstall.obj"
-@erase "$(OUTDIR)\nsinstall.exe"
"$(OUTDIR)" :
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE"\
/Fp"$(INTDIR)/nsinstall.pch" /YX /Fo"$(INTDIR)/" /c
CPP_OBJS=.\Release/
CPP_SBRS=.\.
BSC32=bscmake.exe
BSC32_FLAGS=/nologo /o"$(OUTDIR)/nsinstall.bsc"
BSC32_SBRS= \
LINK32=link.exe
LINK32_FLAGS=/nologo\
/subsystem:console /incremental:no /pdb:"$(OUTDIR)/nsinstall.pdb"\
/out:"$(OUTDIR)/nsinstall.exe"
LINK32_OBJS= \
"$(INTDIR)\nsinstall.obj"
"$(OUTDIR)\nsinstall.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
$(LINK32) @<<
$(LINK32_FLAGS) $(LINK32_OBJS)
<<
!ELSEIF "$(CFG)" == "Debug"
OUTDIR=.\Debug
INTDIR=.\Debug
ALL : "$(OUTDIR)\nsinstall.exe"
CLEAN :
-@erase "$(INTDIR)\nsinstall.obj"
-@erase "$(INTDIR)\vc40.idb"
-@erase "$(INTDIR)\vc40.pdb"
-@erase "$(OUTDIR)\nsinstall.exe"
-@erase "$(OUTDIR)\nsinstall.ilk"
-@erase "$(OUTDIR)\nsinstall.pdb"
"$(OUTDIR)" :
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
CPP_PROJ=/nologo /MD /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "DEBUG"\
/D "_CONSOLE" /Fp"$(INTDIR)/nsinstall.pch" /YX /Fo"$(INTDIR)/"\
/Fd"$(INTDIR)/" /c
CPP_OBJS=.\Debug/
CPP_SBRS=.\.
BSC32=bscmake.exe
BSC32_FLAGS=/nologo /o"$(OUTDIR)/nsinstall.bsc"
BSC32_SBRS= \
LINK32=link.exe
LINK32_FLAGS=/nologo\
/subsystem:console /incremental:yes /pdb:"$(OUTDIR)/nsinstall.pdb" /debug\
/out:"$(OUTDIR)/nsinstall.exe"
LINK32_OBJS= \
"$(INTDIR)\nsinstall.obj"
"$(OUTDIR)\nsinstall.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
$(LINK32) @<<
$(LINK32_FLAGS) $(LINK32_OBJS)
<<
!ENDIF
.c{$(CPP_OBJS)}.obj:
$(CPP) $(CPP_PROJ) $<
.c{$(CPP_SBRS)}.sbr:
$(CPP) $(CPP_PROJ) $<
################################################################################
# Begin Target
################################################################################
# Begin Source File
SOURCE=.\nsinstall.c
DEP_CPP_SHMSD=\
{$(INCLUDE)}"\sys\stat.h"\
{$(INCLUDE)}"\sys\types.h"\
"$(INTDIR)\nsinstall.obj" : $(SOURCE) $(DEP_CPP_SHMSD) "$(INTDIR)"
# End Source File
# End Target
# End Project
################################################################################

View File

@@ -1,504 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

View File

@@ -1,481 +0,0 @@
GNU LIBRARY GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1991 Free Software Foundation, Inc.
675 Mass Ave, Cambridge, MA 02139, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the library GPL. It is
numbered 2 because it goes with version 2 of the ordinary GPL.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Library General Public License, applies to some
specially designated Free Software Foundation software, and to any
other libraries whose authors decide to use it. You can use it for
your libraries, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if
you distribute copies of the library, or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link a program with the library, you must provide
complete object files to the recipients so that they can relink them
with the library, after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
Our method of protecting your rights has two steps: (1) copyright
the library, and (2) offer you this license which gives you legal
permission to copy, distribute and/or modify the library.
Also, for each distributor's protection, we want to make certain
that everyone understands that there is no warranty for this free
library. If the library is modified by someone else and passed on, we
want its recipients to know that what they have is not the original
version, so that any problems introduced by others will not reflect on
the original authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that companies distributing free
software will individually obtain patent licenses, thus in effect
transforming the program into proprietary software. To prevent this,
we have made it clear that any patent must be licensed for everyone's
free use or not licensed at all.
Most GNU software, including some libraries, is covered by the ordinary
GNU General Public License, which was designed for utility programs. This
license, the GNU Library General Public License, applies to certain
designated libraries. This license is quite different from the ordinary
one; be sure to read it in full, and don't assume that anything in it is
the same as in the ordinary license.
The reason we have a separate public license for some libraries is that
they blur the distinction we usually make between modifying or adding to a
program and simply using it. Linking a program with a library, without
changing the library, is in some sense simply using the library, and is
analogous to running a utility program or application program. However, in
a textual and legal sense, the linked executable is a combined work, a
derivative of the original library, and the ordinary General Public License
treats it as such.
Because of this blurred distinction, using the ordinary General
Public License for libraries did not effectively promote software
sharing, because most developers did not use the libraries. We
concluded that weaker conditions might promote sharing better.
However, unrestricted linking of non-free programs would deprive the
users of those programs of all benefit from the free status of the
libraries themselves. This Library General Public License is intended to
permit developers of non-free programs to use free libraries, while
preserving your freedom as a user of such programs to change the free
libraries that are incorporated in them. (We have not seen how to achieve
this as regards changes in header files, but we have achieved it as regards
changes in the actual functions of the Library.) The hope is that this
will lead to faster development of free libraries.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, while the latter only
works together with the library.
Note that it is possible for a library to be covered by the ordinary
General Public License rather than by this special one.
GNU LIBRARY GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library which
contains a notice placed by the copyright holder or other authorized
party saying it may be distributed under the terms of this Library
General Public License (also called "this License"). Each licensee is
addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also compile or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
c) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
d) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the source code distributed need not include anything that is normally
distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Library General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

View File

@@ -1,8 +0,0 @@
These libraries were compiled using .NET/VC7. The original
sources can be found at ftp://ftp.gtk.org/pub/gtk/v1.2/glib-1.2.10.tar.gz &
ftp://ftp.mozilla.org/pub/mozilla/libraries/source/libIDL-0.6.8.tar.gz.
The patches used to build can be found at
http://bugzilla.mozilla.org/show_bug.cgi?id=123743 .
- cls, 2002/10/18

File diff suppressed because it is too large Load Diff

View File

@@ -1,174 +0,0 @@
/* glibconfig.h.win32 */
/* Handcrafted for Microsoft C. */
#ifndef GLIBCONFIG_H
#define GLIBCONFIG_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifdef _MSC_VER
/* Make MSVC more pedantic, this is a recommended pragma list
* from _Win32_Programming_ by Rector and Newcomer.
*/
#pragma warning(error:4002)
#pragma warning(error:4003)
#pragma warning(1:4010)
#pragma warning(error:4013)
#pragma warning(1:4016)
#pragma warning(error:4020)
#pragma warning(error:4021)
#pragma warning(error:4027)
#pragma warning(error:4029)
#pragma warning(error:4033)
#pragma warning(error:4035)
#pragma warning(error:4045)
#pragma warning(error:4047)
#pragma warning(error:4049)
#pragma warning(error:4053)
#pragma warning(error:4071)
#pragma warning(disable:4101)
#pragma warning(error:4150)
#pragma warning(disable:4244) /* No possible loss of data warnings */
#pragma warning(disable:4305) /* No truncation from int to char warnings */
#endif /* _MSC_VER */
#include <limits.h>
#include <float.h>
#define G_MINFLOAT FLT_MIN
#define G_MAXFLOAT FLT_MAX
#define G_MINDOUBLE DBL_MIN
#define G_MAXDOUBLE DBL_MAX
#define G_MINSHORT SHRT_MIN
#define G_MAXSHORT SHRT_MAX
#define G_MININT INT_MIN
#define G_MAXINT INT_MAX
#define G_MINLONG LONG_MIN
#define G_MAXLONG LONG_MAX
typedef signed char gint8;
typedef unsigned char guint8;
typedef signed short gint16;
typedef unsigned short guint16;
typedef signed int gint32;
typedef unsigned int guint32;
#define G_HAVE_GINT64 1
typedef __int64 gint64;
typedef unsigned __int64 guint64;
#define G_GINT64_CONSTANT(val) (val##i64)
#define GPOINTER_TO_INT(p) ((gint)(p))
#define GPOINTER_TO_UINT(p) ((guint)(p))
#define GINT_TO_POINTER(i) ((gpointer)(i))
#define GUINT_TO_POINTER(u) ((gpointer)(u))
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(d,s,n) G_STMT_START { memmove ((d), (s), (n)); } G_STMT_END
#define G_HAVE_ALLOCA 1
#define alloca _alloca
#define GLIB_MAJOR_VERSION 1
#define GLIB_MINOR_VERSION 2
#define GLIB_MICRO_VERSION 10
#ifdef __cplusplus
#define G_HAVE_INLINE 1
#else /* !__cplusplus */
#define G_HAVE___INLINE 1
#endif
#define G_THREADS_ENABLED
/*
* The following program can be used to determine the magic values below:
* #include <stdio.h>
* #include <pthread.h>
* main(int argc, char **argv)
* {
* int i;
* pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
* printf ("sizeof (pthread_mutex_t) = %d\n", sizeof (pthread_mutex_t));
* printf ("PTHREAD_MUTEX_INITIALIZER = ");
* for (i = 0; i < sizeof (pthread_mutex_t); i++)
* printf ("%u, ", ((unsigned char *) &m)[i]);
* printf ("\n");
* exit(0);
* }
*/
#define G_THREADS_IMPL_POSIX
typedef struct _GStaticMutex GStaticMutex;
struct _GStaticMutex
{
struct _GMutex *runtime_mutex;
union {
/* The size of the pad array should be sizeof (pthread_mutext_t) */
/* This value corresponds to the 1999-04-07 version of pthreads-win32 */
char pad[4];
double dummy_double;
void *dummy_pointer;
long dummy_long;
} aligned_pad_u;
};
/* This should be NULL followed by the bytes in PTHREAD_MUTEX_INITIALIZER */
#define G_STATIC_MUTEX_INIT { NULL, { { 255, 255, 255, 255 } } }
#define g_static_mutex_get_mutex(mutex) \
(g_thread_use_default_impl ? ((GMutex*) &((mutex)->aligned_pad_u)) : \
g_static_mutex_get_mutex_impl (&((mutex)->runtime_mutex)))
#define G_BYTE_ORDER G_LITTLE_ENDIAN
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
#define GLIB_SYSDEF_POLLIN = 1
#define GLIB_SYSDEF_POLLOUT = 4
#define GLIB_SYSDEF_POLLPRI = 2
#define GLIB_SYSDEF_POLLERR = 8
#define GLIB_SYSDEF_POLLHUP = 16
#define GLIB_SYSDEF_POLLNVAL = 32
#define G_HAVE_WCHAR_H 1
#define G_HAVE_WCTYPE_H 1
/* Define if this is Win32, possibly using the Cygwin emulation layer. */
#define WIN32 1
/* Define if this is Win32 without Cygwin. */
#define NATIVE_WIN32 1
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* GLIBCONFIG_H */

View File

@@ -1,851 +0,0 @@
/**************************************************************************
IDL.h (IDL parse tree and namespace components)
Copyright (C) 1998, 1999 Andrew T. Veliath
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: IDL.h,v 1.1 2002-10-18 08:31:49 seawood%netscape.com Exp $
***************************************************************************/
#ifndef __IDL_H
#define __IDL_H
#include <glib.h>
/* Try to find wchar_t support */
#include <stdlib.h>
#if 1 /* HAVE_WCHAR_H */
# include <wchar.h>
#endif
#if 0 /* HAVE_WCSTR_H */
# include <wcstr.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* version */
#define LIBIDL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#define LIBIDL_MAJOR_VERSION 0
#define LIBIDL_MINOR_VERSION 6
#define LIBIDL_MICRO_VERSION 8
#define LIBIDL_VERSION_CODE LIBIDL_VERSION(0,6,8)
/* miscellaneous constants */
#define IDL_SUCCESS 0
#define IDL_ERROR 1
#define IDL_WARNING1 2
#define IDL_WARNING2 3
#define IDL_WARNING3 4
#define IDL_WARNINGMAX IDL_WARNING3
/* general parse flags */
#define IDLF_VERBOSE (1UL << 0)
#define IDLF_NO_EVAL_CONST (1UL << 1)
#define IDLF_COMBINE_REOPENED_MODULES (1UL << 2)
#define IDLF_PREFIX_FILENAME (1UL << 3)
#define IDLF_IGNORE_FORWARDS (1UL << 4)
#define IDLF_PEDANTIC (1UL << 5)
#define IDLF_INHIBIT_TAG_ONLY (1UL << 6)
#define IDLF_INHIBIT_INCLUDES (1UL << 7)
/* syntax extension parse flags */
#define IDLF_TYPECODES (1UL << 16)
#define IDLF_XPIDL (1UL << 17)
#define IDLF_PROPERTIES (1UL << 18)
#define IDLF_CODEFRAGS (1UL << 19)
/* declaration specification flags */
#define IDLF_DECLSPEC_EXIST (1UL << 0)
#define IDLF_DECLSPEC_INHIBIT (1UL << 1)
/* output flags */
#define IDLF_OUTPUT_NO_NEWLINES (1UL << 0)
#define IDLF_OUTPUT_NO_QUALIFY_IDENTS (1UL << 1)
#define IDLF_OUTPUT_PROPERTIES (1UL << 2)
#define IDLF_OUTPUT_CODEFRAGS (1UL << 3)
#ifdef _WIN32
# define IDL_EXPORT __declspec (dllexport)
# define IDL_IMPORT __declspec (dllimport)
#else
# define IDL_EXPORT /* empty */
# define IDL_IMPORT extern
#endif
/* type casting checks */
#define IDL_check_cast_enable(boolean) do { \
IDL_IMPORT int __IDL_check_type_casts; \
__IDL_check_type_casts = (boolean); \
} while (0)
#define IDL_CHECK_CAST(tree, thetype, name) \
(IDL_check_type_cast(tree, thetype, \
__FILE__, __LINE__, \
G_GNUC_PRETTY_FUNCTION)->u.name)
#ifdef G_HAVE_GINT64
# if G_MAXLONG > 0xffffffffUL
# define IDL_LL "l"
# else
# define IDL_LL "ll"
# endif
typedef gint64 IDL_longlong_t;
typedef guint64 IDL_ulonglong_t;
#else
# define IDL_LL "l"
typedef long IDL_longlong_t;
typedef unsigned long IDL_ulonglong_t;
# warning 64-bit integer type not available, using 32-bit instead
#endif /* G_HAVE_GINT64 */
typedef unsigned int IDL_declspec_t;
typedef struct _IDL_tree_node IDL_tree_node;
typedef struct _IDL_tree_node * IDL_tree;
struct _IDL_LIST {
IDL_tree data;
IDL_tree prev;
IDL_tree next;
IDL_tree _tail; /* Internal use, may not be valid */
};
#define IDL_LIST(a) IDL_CHECK_CAST(a, IDLN_LIST, idl_list)
extern IDL_tree IDL_list_new (IDL_tree data);
extern IDL_tree IDL_list_concat (IDL_tree orig,
IDL_tree append);
extern IDL_tree IDL_list_remove (IDL_tree list,
IDL_tree p);
extern int IDL_list_length (IDL_tree list);
extern IDL_tree IDL_list_nth (IDL_tree list,
int n);
struct _IDL_GENTREE {
IDL_tree data;
GHashTable *siblings;
GHashTable *children;
GHashFunc hash_func;
GCompareFunc key_compare_func;
IDL_tree _import; /* Internal use, do not recurse */
char *_cur_prefix; /* Internal use */
};
#define IDL_GENTREE(a) IDL_CHECK_CAST(a, IDLN_GENTREE, idl_gentree)
extern IDL_tree IDL_gentree_new (GHashFunc hash_func,
GCompareFunc key_compare_func,
IDL_tree data);
extern IDL_tree IDL_gentree_new_sibling (IDL_tree from,
IDL_tree data);
extern IDL_tree IDL_gentree_chain_sibling (IDL_tree from,
IDL_tree data);
extern IDL_tree IDL_gentree_chain_child (IDL_tree from,
IDL_tree data);
struct _IDL_INTEGER {
IDL_longlong_t value;
};
#define IDL_INTEGER(a) IDL_CHECK_CAST(a, IDLN_INTEGER, idl_integer)
extern IDL_tree IDL_integer_new (IDL_longlong_t value);
struct _IDL_STRING {
char *value;
};
#define IDL_STRING(a) IDL_CHECK_CAST(a, IDLN_STRING, idl_string)
extern IDL_tree IDL_string_new (char *value);
struct _IDL_WIDE_STRING {
wchar_t *value;
};
#define IDL_WIDE_STRING(a) IDL_CHECK_CAST(a, IDLN_WIDE_STRING, idl_wide_string)
extern IDL_tree IDL_wide_string_new (wchar_t *value);
struct _IDL_CHAR {
char *value;
};
#define IDL_CHAR(a) IDL_CHECK_CAST(a, IDLN_CHAR, idl_char)
extern IDL_tree IDL_char_new (char *value);
struct _IDL_WIDE_CHAR {
wchar_t *value;
};
#define IDL_WIDE_CHAR(a) IDL_CHECK_CAST(a, IDLN_WIDE_CHAR, idl_wide_char)
extern IDL_tree IDL_wide_char_new (wchar_t *value);
struct _IDL_FIXED {
char *value;
};
#define IDL_FIXED(a) IDL_CHECK_CAST(a, IDLN_FIXED, idl_fixed)
extern IDL_tree IDL_fixed_new (char *value);
struct _IDL_FLOAT {
double value;
};
#define IDL_FLOAT(a) IDL_CHECK_CAST(a, IDLN_FLOAT, idl_float)
extern IDL_tree IDL_float_new (double value);
struct _IDL_BOOLEAN {
unsigned value;
};
#define IDL_BOOLEAN(a) IDL_CHECK_CAST(a, IDLN_BOOLEAN, idl_boolean)
extern IDL_tree IDL_boolean_new (unsigned value);
struct _IDL_IDENT {
char *str;
char *repo_id;
GSList *comments;
IDL_tree _ns_ref; /* Internal use, do not recurse */
unsigned _flags; /* Internal use */
#define IDLF_IDENT_CASE_MISMATCH_HIT (1UL << 0)
};
#define IDL_IDENT(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident)
#define IDL_IDENT_TO_NS(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident._ns_ref)
#define IDL_IDENT_REPO_ID(a) IDL_CHECK_CAST(a, IDLN_IDENT, idl_ident.repo_id)
extern IDL_tree IDL_ident_new (char *str);
extern void IDL_queue_new_ident_comment (const char *str);
enum IDL_float_type {
IDL_FLOAT_TYPE_FLOAT,
IDL_FLOAT_TYPE_DOUBLE,
IDL_FLOAT_TYPE_LONGDOUBLE
};
struct _IDL_TYPE_FLOAT {
enum IDL_float_type f_type;
};
#define IDL_TYPE_FLOAT(a) IDL_CHECK_CAST(a, IDLN_TYPE_FLOAT, idl_type_float)
extern IDL_tree IDL_type_float_new (enum IDL_float_type f_type);
struct _IDL_TYPE_FIXED {
IDL_tree positive_int_const;
IDL_tree integer_lit;
};
#define IDL_TYPE_FIXED(a) IDL_CHECK_CAST(a, IDLN_TYPE_FIXED, idl_type_fixed)
extern IDL_tree IDL_type_fixed_new (IDL_tree positive_int_const,
IDL_tree integer_lit);
enum IDL_integer_type {
IDL_INTEGER_TYPE_SHORT,
IDL_INTEGER_TYPE_LONG,
IDL_INTEGER_TYPE_LONGLONG
};
struct _IDL_TYPE_INTEGER {
unsigned f_signed : 1;
enum IDL_integer_type f_type;
};
#define IDL_TYPE_INTEGER(a) IDL_CHECK_CAST(a, IDLN_TYPE_INTEGER, idl_type_integer)
extern IDL_tree IDL_type_integer_new (unsigned f_signed,
enum IDL_integer_type f_type);
extern IDL_tree IDL_type_char_new (void);
extern IDL_tree IDL_type_wide_char_new (void);
extern IDL_tree IDL_type_boolean_new (void);
extern IDL_tree IDL_type_octet_new (void);
extern IDL_tree IDL_type_any_new (void);
extern IDL_tree IDL_type_object_new (void);
extern IDL_tree IDL_type_typecode_new (void);
struct _IDL_TYPE_STRING {
IDL_tree positive_int_const;
};
#define IDL_TYPE_STRING(a) IDL_CHECK_CAST(a, IDLN_TYPE_STRING, idl_type_string)
extern IDL_tree IDL_type_string_new (IDL_tree positive_int_const);
struct _IDL_TYPE_WIDE_STRING {
IDL_tree positive_int_const;
};
#define IDL_TYPE_WIDE_STRING(a) IDL_CHECK_CAST(a, IDLN_TYPE_WIDE_STRING, idl_type_wide_string)
extern IDL_tree IDL_type_wide_string_new (IDL_tree positive_int_const);
struct _IDL_TYPE_ENUM {
IDL_tree ident;
IDL_tree enumerator_list;
};
#define IDL_TYPE_ENUM(a) IDL_CHECK_CAST(a, IDLN_TYPE_ENUM, idl_type_enum)
extern IDL_tree IDL_type_enum_new (IDL_tree ident,
IDL_tree enumerator_list);
struct _IDL_TYPE_ARRAY {
IDL_tree ident;
IDL_tree size_list;
};
#define IDL_TYPE_ARRAY(a) IDL_CHECK_CAST(a, IDLN_TYPE_ARRAY, idl_type_array)
extern IDL_tree IDL_type_array_new (IDL_tree ident,
IDL_tree size_list);
struct _IDL_TYPE_SEQUENCE {
IDL_tree simple_type_spec;
IDL_tree positive_int_const;
};
#define IDL_TYPE_SEQUENCE(a) IDL_CHECK_CAST(a, IDLN_TYPE_SEQUENCE, idl_type_sequence)
extern IDL_tree IDL_type_sequence_new (IDL_tree simple_type_spec,
IDL_tree positive_int_const);
struct _IDL_TYPE_STRUCT {
IDL_tree ident;
IDL_tree member_list;
};
#define IDL_TYPE_STRUCT(a) IDL_CHECK_CAST(a, IDLN_TYPE_STRUCT, idl_type_struct)
extern IDL_tree IDL_type_struct_new (IDL_tree ident,
IDL_tree member_list);
struct _IDL_TYPE_UNION {
IDL_tree ident;
IDL_tree switch_type_spec;
IDL_tree switch_body;
};
#define IDL_TYPE_UNION(a) IDL_CHECK_CAST(a, IDLN_TYPE_UNION, idl_type_union)
extern IDL_tree IDL_type_union_new (IDL_tree ident,
IDL_tree switch_type_spec,
IDL_tree switch_body);
struct _IDL_MEMBER {
IDL_tree type_spec;
IDL_tree dcls;
};
#define IDL_MEMBER(a) IDL_CHECK_CAST(a, IDLN_MEMBER, idl_member)
extern IDL_tree IDL_member_new (IDL_tree type_spec,
IDL_tree dcls);
struct _IDL_NATIVE {
IDL_tree ident;
char *user_type; /* XPIDL extension */
};
#define IDL_NATIVE(a) IDL_CHECK_CAST(a, IDLN_NATIVE, idl_native)
extern IDL_tree IDL_native_new (IDL_tree ident);
struct _IDL_TYPE_DCL {
IDL_tree type_spec;
IDL_tree dcls;
};
#define IDL_TYPE_DCL(a) IDL_CHECK_CAST(a, IDLN_TYPE_DCL, idl_type_dcl)
extern IDL_tree IDL_type_dcl_new (IDL_tree type_spec,
IDL_tree dcls);
struct _IDL_CONST_DCL {
IDL_tree const_type;
IDL_tree ident;
IDL_tree const_exp;
};
#define IDL_CONST_DCL(a) IDL_CHECK_CAST(a, IDLN_CONST_DCL, idl_const_dcl)
extern IDL_tree IDL_const_dcl_new (IDL_tree const_type,
IDL_tree ident,
IDL_tree const_exp);
struct _IDL_EXCEPT_DCL {
IDL_tree ident;
IDL_tree members;
};
#define IDL_EXCEPT_DCL(a) IDL_CHECK_CAST(a, IDLN_EXCEPT_DCL, idl_except_dcl)
extern IDL_tree IDL_except_dcl_new (IDL_tree ident,
IDL_tree members);
struct _IDL_ATTR_DCL {
unsigned f_readonly : 1;
IDL_tree param_type_spec;
IDL_tree simple_declarations;
};
#define IDL_ATTR_DCL(a) IDL_CHECK_CAST(a, IDLN_ATTR_DCL, idl_attr_dcl)
extern IDL_tree IDL_attr_dcl_new (unsigned f_readonly,
IDL_tree param_type_spec,
IDL_tree simple_declarations);
struct _IDL_OP_DCL {
unsigned __f_noscript : 1; /* Deprecated */
unsigned f_oneway : 1;
/* XPIDL extension (varags) */
unsigned f_varargs : 1;
IDL_tree op_type_spec;
IDL_tree ident;
IDL_tree parameter_dcls;
IDL_tree raises_expr;
IDL_tree context_expr;
};
#define IDL_OP_DCL(a) IDL_CHECK_CAST(a, IDLN_OP_DCL, idl_op_dcl)
extern IDL_tree IDL_op_dcl_new (unsigned f_oneway,
IDL_tree op_type_spec,
IDL_tree ident,
IDL_tree parameter_dcls,
IDL_tree raises_expr,
IDL_tree context_expr);
enum IDL_param_attr {
IDL_PARAM_IN,
IDL_PARAM_OUT,
IDL_PARAM_INOUT
};
struct _IDL_PARAM_DCL {
enum IDL_param_attr attr;
IDL_tree param_type_spec;
IDL_tree simple_declarator;
};
#define IDL_PARAM_DCL(a) IDL_CHECK_CAST(a, IDLN_PARAM_DCL, idl_param_dcl)
extern IDL_tree IDL_param_dcl_new (enum IDL_param_attr attr,
IDL_tree param_type_spec,
IDL_tree simple_declarator);
struct _IDL_CASE_STMT {
IDL_tree labels;
IDL_tree element_spec;
};
#define IDL_CASE_STMT(a) IDL_CHECK_CAST(a, IDLN_CASE_STMT, idl_case_stmt)
extern IDL_tree IDL_case_stmt_new (IDL_tree labels,
IDL_tree element_spec);
struct _IDL_INTERFACE {
IDL_tree ident;
IDL_tree inheritance_spec;
IDL_tree body;
};
#define IDL_INTERFACE(a) IDL_CHECK_CAST(a, IDLN_INTERFACE, idl_interface)
extern IDL_tree IDL_interface_new (IDL_tree ident,
IDL_tree inheritance_spec,
IDL_tree body);
struct _IDL_FORWARD_DCL {
IDL_tree ident;
};
#define IDL_FORWARD_DCL(a) IDL_CHECK_CAST(a, IDLN_FORWARD_DCL, idl_forward_dcl)
extern IDL_tree IDL_forward_dcl_new (IDL_tree ident);
struct _IDL_MODULE {
IDL_tree ident;
IDL_tree definition_list;
};
#define IDL_MODULE(a) IDL_CHECK_CAST(a, IDLN_MODULE, idl_module)
extern IDL_tree IDL_module_new (IDL_tree ident,
IDL_tree definition_list);
enum IDL_binop {
IDL_BINOP_OR,
IDL_BINOP_XOR,
IDL_BINOP_AND,
IDL_BINOP_SHR,
IDL_BINOP_SHL,
IDL_BINOP_ADD,
IDL_BINOP_SUB,
IDL_BINOP_MULT,
IDL_BINOP_DIV,
IDL_BINOP_MOD
};
struct _IDL_BINOP {
enum IDL_binop op;
IDL_tree left, right;
};
#define IDL_BINOP(a) IDL_CHECK_CAST(a, IDLN_BINOP, idl_binop)
extern IDL_tree IDL_binop_new (enum IDL_binop op,
IDL_tree left,
IDL_tree right);
enum IDL_unaryop {
IDL_UNARYOP_PLUS,
IDL_UNARYOP_MINUS,
IDL_UNARYOP_COMPLEMENT
};
struct _IDL_UNARYOP {
enum IDL_unaryop op;
IDL_tree operand;
};
#define IDL_UNARYOP(a) IDL_CHECK_CAST(a, IDLN_UNARYOP, idl_unaryop)
extern IDL_tree IDL_unaryop_new (enum IDL_unaryop op,
IDL_tree operand);
/* XPIDL code fragments extension. */
struct _IDL_CODEFRAG {
char *desc;
GSList *lines;
};
#define IDL_CODEFRAG(a) IDL_CHECK_CAST(a, IDLN_CODEFRAG, idl_codefrag)
extern IDL_tree IDL_codefrag_new (char *desc,
GSList *lines);
/*
* IDL_tree_type - Enumerations of node types
*
* Note this enumerator list is subject to change in the future. A program should not need
* more than a recompilation to adjust for a change in this list, so instead of using a
* statically initialized jumptable, allocate an array of size IDLN_LAST and assign the
* elements manually.
*/
typedef enum {
IDLN_NONE,
IDLN_ANY,
IDLN_LIST,
IDLN_GENTREE,
IDLN_INTEGER,
IDLN_STRING,
IDLN_WIDE_STRING,
IDLN_CHAR,
IDLN_WIDE_CHAR,
IDLN_FIXED,
IDLN_FLOAT,
IDLN_BOOLEAN,
IDLN_IDENT,
IDLN_TYPE_DCL,
IDLN_CONST_DCL,
IDLN_EXCEPT_DCL,
IDLN_ATTR_DCL,
IDLN_OP_DCL,
IDLN_PARAM_DCL,
IDLN_FORWARD_DCL,
IDLN_TYPE_INTEGER,
IDLN_TYPE_FLOAT,
IDLN_TYPE_FIXED,
IDLN_TYPE_CHAR,
IDLN_TYPE_WIDE_CHAR,
IDLN_TYPE_STRING,
IDLN_TYPE_WIDE_STRING,
IDLN_TYPE_BOOLEAN,
IDLN_TYPE_OCTET,
IDLN_TYPE_ANY,
IDLN_TYPE_OBJECT,
IDLN_TYPE_TYPECODE,
IDLN_TYPE_ENUM,
IDLN_TYPE_SEQUENCE,
IDLN_TYPE_ARRAY,
IDLN_TYPE_STRUCT,
IDLN_TYPE_UNION,
IDLN_MEMBER,
IDLN_NATIVE,
IDLN_CASE_STMT,
IDLN_INTERFACE,
IDLN_MODULE,
IDLN_BINOP,
IDLN_UNARYOP,
IDLN_CODEFRAG,
IDLN_LAST
} IDL_tree_type;
IDL_IMPORT const char * IDL_tree_type_names[];
struct _IDL_tree_node {
IDL_tree_type _type;
IDL_tree up; /* Do not recurse */
IDL_declspec_t declspec;
GHashTable *properties;
int refs;
char *_file; /* Internal use */
int _line; /* Internal use */
union {
struct _IDL_LIST idl_list;
struct _IDL_GENTREE idl_gentree;
struct _IDL_INTEGER idl_integer;
struct _IDL_STRING idl_string;
struct _IDL_WIDE_STRING idl_wide_string;
struct _IDL_CHAR idl_char;
struct _IDL_WIDE_CHAR idl_wide_char;
struct _IDL_FIXED idl_fixed;
struct _IDL_FLOAT idl_float;
struct _IDL_BOOLEAN idl_boolean;
struct _IDL_IDENT idl_ident;
struct _IDL_TYPE_DCL idl_type_dcl;
struct _IDL_CONST_DCL idl_const_dcl;
struct _IDL_EXCEPT_DCL idl_except_dcl;
struct _IDL_ATTR_DCL idl_attr_dcl;
struct _IDL_OP_DCL idl_op_dcl;
struct _IDL_PARAM_DCL idl_param_dcl;
struct _IDL_FORWARD_DCL idl_forward_dcl;
struct _IDL_TYPE_FLOAT idl_type_float;
struct _IDL_TYPE_FIXED idl_type_fixed;
struct _IDL_TYPE_INTEGER idl_type_integer;
struct _IDL_TYPE_ENUM idl_type_enum;
struct _IDL_TYPE_STRING idl_type_string;
struct _IDL_TYPE_WIDE_STRING idl_type_wide_string;
struct _IDL_TYPE_SEQUENCE idl_type_sequence;
struct _IDL_TYPE_ARRAY idl_type_array;
struct _IDL_TYPE_STRUCT idl_type_struct;
struct _IDL_TYPE_UNION idl_type_union;
struct _IDL_MEMBER idl_member;
struct _IDL_NATIVE idl_native;
struct _IDL_CASE_STMT idl_case_stmt;
struct _IDL_INTERFACE idl_interface;
struct _IDL_MODULE idl_module;
struct _IDL_BINOP idl_binop;
struct _IDL_UNARYOP idl_unaryop;
struct _IDL_CODEFRAG idl_codefrag;
} u;
/* Fields for application use */
guint32 flags;
gpointer data;
};
#define IDL_NODE_TYPE(a) ((a)->_type)
#define IDL_NODE_TYPE_NAME(a) ((a)?IDL_tree_type_names[IDL_NODE_TYPE(a)]:"NULL")
#define IDL_NODE_UP(a) ((a)->up)
#define IDL_NODE_PROPERTIES(a) ((a)->properties)
#define IDL_NODE_DECLSPEC(a) ((a)->declspec)
#define IDL_NODE_REFS(a) ((a)->refs)
#define IDL_NODE_IS_LITERAL(a) \
(IDL_NODE_TYPE(a) == IDLN_INTEGER || \
IDL_NODE_TYPE(a) == IDLN_STRING || \
IDL_NODE_TYPE(a) == IDLN_WIDE_STRING || \
IDL_NODE_TYPE(a) == IDLN_CHAR || \
IDL_NODE_TYPE(a) == IDLN_WIDE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_FIXED || \
IDL_NODE_TYPE(a) == IDLN_FLOAT || \
IDL_NODE_TYPE(a) == IDLN_BOOLEAN)
#define IDL_NODE_IS_TYPE(a) \
(IDL_NODE_TYPE(a) == IDLN_TYPE_INTEGER || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRING || \
IDL_NODE_TYPE(a) == IDLN_TYPE_WIDE_STRING || \
IDL_NODE_TYPE(a) == IDLN_TYPE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_TYPE_WIDE_CHAR || \
IDL_NODE_TYPE(a) == IDLN_TYPE_FIXED || \
IDL_NODE_TYPE(a) == IDLN_TYPE_FLOAT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_BOOLEAN || \
IDL_NODE_TYPE(a) == IDLN_TYPE_OCTET || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ANY || \
IDL_NODE_TYPE(a) == IDLN_TYPE_OBJECT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_TYPECODE || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ENUM || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ARRAY || \
IDL_NODE_TYPE(a) == IDLN_TYPE_SEQUENCE || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRUCT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_UNION)
#define IDL_NODE_IS_SCOPED(a) \
(IDL_NODE_TYPE(a) == IDLN_IDENT || \
IDL_NODE_TYPE(a) == IDLN_INTERFACE || \
IDL_NODE_TYPE(a) == IDLN_MODULE || \
IDL_NODE_TYPE(a) == IDLN_EXCEPT_DCL || \
IDL_NODE_TYPE(a) == IDLN_OP_DCL || \
IDL_NODE_TYPE(a) == IDLN_TYPE_ENUM || \
IDL_NODE_TYPE(a) == IDLN_TYPE_STRUCT || \
IDL_NODE_TYPE(a) == IDLN_TYPE_UNION)
typedef struct _IDL_ns * IDL_ns;
struct _IDL_ns {
IDL_tree global;
IDL_tree file;
IDL_tree current;
GHashTable *inhibits;
GHashTable *filename_hash;
};
#define IDL_NS(a) (*(a))
typedef enum {
IDL_INPUT_REASON_INIT,
IDL_INPUT_REASON_FILL,
IDL_INPUT_REASON_ABORT,
IDL_INPUT_REASON_FINISH
} IDL_input_reason;
union IDL_input_data {
struct {
const char *filename;
} init;
struct {
char *buffer;
size_t max_size;
} fill;
};
typedef int (*IDL_input_callback) (IDL_input_reason reason,
union IDL_input_data *data,
gpointer user_data);
typedef int (*IDL_msg_callback) (int level,
int num,
int line,
const char *filename,
const char *message);
typedef struct _IDL_tree_func_state IDL_tree_func_state;
typedef struct _IDL_tree_func_data IDL_tree_func_data;
/* Traversal state data. Recursive walks chain states. */
struct _IDL_tree_func_state {
IDL_tree_func_state *up;
IDL_tree start;
IDL_tree_func_data *bottom;
};
/* This holds a list of the up hierarchy traversed, beginning from traversal. This is
* useful since nodes referenced after initial definition will have a different traversal
* path than the actual up path. */
struct _IDL_tree_func_data {
IDL_tree_func_state *state;
IDL_tree_func_data *up;
IDL_tree tree;
gint step;
gpointer data; /* Application data */
};
typedef gboolean (*IDL_tree_func) (IDL_tree_func_data *tnfd,
gpointer user_data);
extern IDL_tree IDL_check_type_cast (const IDL_tree var,
IDL_tree_type type,
const char *file,
int line,
const char *function);
extern const char * IDL_get_libver_string (void);
extern const char * IDL_get_IDLver_string (void);
extern int IDL_parse_filename (const char *filename,
const char *cpp_args,
IDL_msg_callback msg_cb,
IDL_tree *tree, IDL_ns *ns,
unsigned long parse_flags,
int max_msg_level);
extern int IDL_parse_filename_with_input (const char *filename,
IDL_input_callback input_cb,
gpointer input_cb_user_data,
IDL_msg_callback msg_cb,
IDL_tree *tree, IDL_ns *ns,
unsigned long parse_flags,
int max_msg_level);
extern int IDL_ns_prefix (IDL_ns ns,
const char *s);
extern void IDL_ns_ID (IDL_ns ns,
const char *s);
extern void IDL_ns_version (IDL_ns ns,
const char *s);
extern int IDL_inhibit_get (void);
extern void IDL_inhibit_push (void);
extern void IDL_inhibit_pop (void);
extern void IDL_file_set (const char *filename,
int line);
extern void IDL_file_get (const char **filename,
int *line);
extern IDL_tree IDL_get_parent_node (IDL_tree p,
IDL_tree_type type,
int *scope_levels);
extern IDL_tree IDL_tree_get_scope (IDL_tree p);
extern int IDL_tree_get_node_info (IDL_tree tree,
char **who,
char **what);
extern void IDL_tree_error (IDL_tree p,
const char *fmt,
...)
G_GNUC_PRINTF (2, 3);
extern void IDL_tree_warning (IDL_tree p,
int level,
const char *fmt,
...)
G_GNUC_PRINTF (3, 4);
extern const char * IDL_tree_property_get (IDL_tree tree,
const char *key);
extern void IDL_tree_property_set (IDL_tree tree,
const char *key,
const char *value);
extern gboolean IDL_tree_property_remove (IDL_tree tree,
const char *key);
extern void IDL_tree_properties_copy (IDL_tree from_tree,
IDL_tree to_tree);
extern void IDL_tree_remove_inhibits (IDL_tree *tree,
IDL_ns ns);
extern void IDL_tree_walk (IDL_tree p,
IDL_tree_func_data *current,
IDL_tree_func pre_tree_func,
IDL_tree_func post_tree_func,
gpointer user_data);
extern void IDL_tree_walk_in_order (IDL_tree p,
IDL_tree_func tree_func,
gpointer user_data);
extern void IDL_tree_free (IDL_tree root);
extern void IDL_tree_to_IDL (IDL_tree p,
IDL_ns ns,
FILE *output,
unsigned long output_flags);
extern GString * IDL_tree_to_IDL_string (IDL_tree p,
IDL_ns ns,
unsigned long output_flags);
extern gchar * IDL_do_escapes (const char *s);
extern IDL_tree IDL_resolve_const_exp (IDL_tree p,
IDL_tree_type type);
extern IDL_ns IDL_ns_new (void);
extern void IDL_ns_free (IDL_ns ns);
extern IDL_tree IDL_ns_resolve_this_scope_ident (IDL_ns ns,
IDL_tree scope,
IDL_tree ident);
extern IDL_tree IDL_ns_resolve_ident (IDL_ns ns,
IDL_tree ident);
extern IDL_tree IDL_ns_lookup_this_scope (IDL_ns ns,
IDL_tree scope,
IDL_tree ident,
gboolean *conflict);
extern IDL_tree IDL_ns_lookup_cur_scope (IDL_ns ns,
IDL_tree ident,
gboolean *conflict);
extern IDL_tree IDL_ns_place_new (IDL_ns ns,
IDL_tree ident);
extern void IDL_ns_push_scope (IDL_ns ns,
IDL_tree ident);
extern void IDL_ns_pop_scope (IDL_ns ns);
extern IDL_tree IDL_ns_qualified_ident_new (IDL_tree nsid);
extern gchar * IDL_ns_ident_to_qstring (IDL_tree ns_ident,
const char *join,
int scope_levels);
extern int IDL_ns_scope_levels_from_here (IDL_ns ns,
IDL_tree ident,
IDL_tree parent);
extern gchar * IDL_ns_ident_make_repo_id (IDL_ns ns,
IDL_tree p,
const char *p_prefix,
int *major,
int *minor);
#ifdef __cplusplus
}
#endif
#endif /* __IDL_H */

13
jar.mn
View File

@@ -1,13 +0,0 @@
cascades.jar:
content/cascades/EdCssProps.css (resources/content/EdCssProps.css)
content/cascades/EdCssProps.js (resources/content/EdCssProps.js)
content/cascades/EdCssProps-utils.js (resources/content/EdCssProps-utils.js)
content/cascades/EdCssProps.xul (resources/content/EdCssProps.xul)
content/cascades/cascadesOverlay.js (resources/content/cascadesOverlay.js)
content/cascades/cascadesOverlay.xul (resources/content/cascadesOverlay.xul)
content/cascades/commonCssProps.js (resources/content/commonCssProps.js)
content/cascades/contents.rdf (resources/content/contents.rdf)
content/cascades/tabsOverlay.xul (resources/content/tabsOverlay.xul)
locale/en-US/cascades/EdCssProps.dtd (resources/locale/en-US/EdCssProps.dtd)
locale/en-US/cascades/cascadesOverlay.dtd (resources/locale/en-US/cascadesOverlay.dtd)
locale/en-US/cascades/contents.rdf (resources/locale/en-US/contents.rdf)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -1,40 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Product Branding Issues</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
Product Branding Instructions</H3>
Under the terms of the Unlimited Localization Program, you must remove
or replace all trademarked Netscape terms, brand names, icons, images,
etc.&nbsp; These trademarks are listed on the page found at the following
URL:
<P><A HREF="http://home.netscape.com/misc/trademarks.html#trademarks">http://home.netscape.com/misc/trademarks.html#trademarks</A>
<P>Please refer to that page for details.&nbsp; You may not release a localized
version of the Netscape Communicator with these trademarks left in the
product.
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="usingKit.html#branding">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER><BR>
<FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape Communications
Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,100 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Getting Started</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="getting started"></A>2. Getting Started</H2>
Before you can begin using the Windows Installer Localization Kit, you
must install it and setup your working directories. This is a simple matter
of unzipping the compressed kit file(s) into the proper directories. Your
system must also meet certain requirements to run the tools needed to perform
the localization steps described below.
<P>
<HR WIDTH="50%">
<H3>
<A NAME="sysreqs"></A>System Requirements</H3>
There few system requirements for the kit in the strictest sense; however,
your choice of tools will have their own set of requirements.&nbsp; The
most likely minimum configuration will be as follows:
<UL>
<LI>
100% IBM compatible PC</LI>
<LI>
Pentium<SUP><FONT SIZE=-1>&reg;</FONT></SUP> processor</LI>
<LI>
Microsoft<SUP><FONT SIZE=-1>&reg;</FONT></SUP> Windows NT 3.51 or 4.0 (localized
versions will help testing but aren't required)</LI>
<LI>
16 MB RAM</LI>
<LI>
30 MB available hard disk space</LI>
<LI>
InstallShield International version 3.0 or other install builder software</LI>
<LI>
A visual resource editor, such as those provided with Microsoft<SUP><FONT SIZE=-1>&reg;</FONT></SUP>
Visual C++, Borland<SUP><FONT SIZE=-1>&reg;</FONT></SUP> C++, etc.</LI>
<LI>
An active Internet connection and the ability to ftp (send and receive)
large files</LI>
<LI>
A Web browser (say, for example, Netscape Communicator ;-)</LI>
</UL>
<H3>
<HR WIDTH="50%"></H3>
<H3>
<A NAME="install"></A>Installing the Kit</H3>
It is recommended that you install the Windows Installer Localization Kit
into the same directory as your other Netscape/Mozilla localization kits:
in other words, install this kit into your <B>kitRoot </B>directory.&nbsp;
Place this localization kit's .ZIP file in that directory and UNZIP it
with the -d parameter:
<P>PKUNZIP -d <I>filename</I>
<UL><B>Example:&nbsp; <TT>PKUNZIP -d instkit</TT></B></UL>
<HR WIDTH="50%">
<H3>
<A NAME="configtool"></A>Configuring Your Tools</H3>
Please refer to your Installshield or other install builder tool's documentation
for set up and usage instructions.
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="nomenclature.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="usingKit.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS]</A></CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,203 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>ISO Locale codes</TITLE>
</HEAD>
<BODY>
<CENTER>
<H1>
ISO Language and Country Codes</H1></CENTER>
2 letter language codes are derived from the ISO 639 standard; country
codes are from ISO 3166. Here are the codes for the locales currently supported
by the L10n kits. If an entry also includes the country code then you must
use that as well when creating the locale directory or naming a file.
<H3>
ISO Language and Country Codes table</H3>
<TABLE BORDER=5 >
<TR>
<TD><U>Language Name</U></TD>
<TD><U>Language Code</U></TD>
<TD><U>Country Code</U></TD>
</TR>
<TR>
<TD>
<CENTER>Chinese (Traditional)</CENTER>
</TD>
<TD>
<CENTER>zh</CENTER>
</TD>
<TD>
<CENTER>CN</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Chinese (Simplified)</CENTER>
</TD>
<TD>
<CENTER>zh</CENTER>
</TD>
<TD>
<CENTER>TW</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Danish</CENTER>
</TD>
<TD>
<CENTER>da</CENTER>
</TD>
<TD>
<CENTER>DK</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Dutch</CENTER>
</TD>
<TD>
<CENTER>nl</CENTER>
</TD>
<TD>
<CENTER>NL</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>French</CENTER>
</TD>
<TD>
<CENTER>fr</CENTER>
</TD>
<TD>
<CENTER>FR</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>German</CENTER>
</TD>
<TD>
<CENTER>de</CENTER>
</TD>
<TD>
<CENTER>DE</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Italian</CENTER>
</TD>
<TD>
<CENTER>it</CENTER>
</TD>
<TD>
<CENTER>IT</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Japanese</CENTER>
</TD>
<TD>
<CENTER>ja</CENTER>
</TD>
<TD>
<CENTER>JP</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Korean</CENTER>
</TD>
<TD>
<CENTER>ko</CENTER>
</TD>
<TD>
<CENTER>KR</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Portuguese</CENTER>
</TD>
<TD>
<CENTER>pt</CENTER>
</TD>
<TD>
<CENTER>BR</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Spanish</CENTER>
</TD>
<TD>
<CENTER>es</CENTER>
</TD>
<TD>
<CENTER>ES</CENTER>
</TD>
</TR>
<TR>
<TD>
<CENTER>Swedish</CENTER>
</TD>
<TD>
<CENTER>sv</CENTER>
</TD>
<TD>
<CENTER>SE</CENTER>
</TD>
</TR>
</TABLE>
<CENTER><BR>
<FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1997, Copyright Netscape Communications
Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,99 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Kit Overview</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="kitoverview"></A>Kit Overview</H3>
This kit is primarily intended for knowledgeable developers who are familiar
with the localization process, with InstallShield or other installation
programs, and with Windows resource editors.&nbsp; There are two basic
approaches you can take to create an installer for your localized Communicator,
Navigator or Mozilla derivative product:
<OL>
<LI>
Use an existing Communicator or Navigator Export product installer as a
base and add your localized files, or</LI>
<LI>
Create your own install program and use the registry setting information
provided by the kit.</LI>
</OL>
<UL>
<H4>
<A NAME="method1"></A>Overview of Method 1.</H4>
For this method you will need the following components:
<BR>&nbsp;
<UL>
<LI>
Your own copy of InstallShield version 3 International</LI>
<LI>
The appropriate version of a Netscape Communicator or Navigator installer.</LI>
<LI>
This localization kit.</LI>
<LI>
A text editor.</LI>
<LI>
A resource editor (e.g., MSDEV)</LI>
</UL>
<P>You will start with an Export version of a Netscape Communicator or
Navigator installer.&nbsp; Then, you will extract the localizable components
and modify them as desired.&nbsp; You will localize a number of strings
contained in .INI files using a text editor. You will use a resource editor
or the Netscape Translation Tools to localize STRINGTABLE and DIALOG resource
types contained in two .DLLs. Once the localizable components of the installer
are finished, you will reassemble the installer using the InstallShield
EXE BUILDER tool, including your localized Communicator, Navigator or Mozilla
derivative product.&nbsp; This process is detailed in the next section.</UL>
<UL>
<H4>
<A NAME="method2"></A>Overview of Method 2.</H4>
For this method you will need the following components:
<BR>&nbsp;
<UL>
<LI>
Your own copy of any install builder software</LI>
<LI>
This localization kit</LI>
</UL>
<P>You will create your own installation program in whatever fashion you
wish.&nbsp; In order for your localized product to function properly, your
installer will need to implement certain <A HREF="registrySettings.html">Windows
registry settings</A>.</UL>
&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="projectOverview.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="kitStruct.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
&nbsp;
<CENTER><FONT SIZE=-1>&nbsp;1998, Copyright Netscape Communications Corp.
All Rights Reserved</FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,63 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Kit Structure</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="kitstruct"></A>Kit Structure and Organization</H3>
When you install this localization kit you will find a number of new directories
on your hard disk. Each directory is named so as to be fairly self-explanatory,
but the following diagram and description may help avoid any confusion
you may have about what's what.
<H4>
<IMG SRC="l10ntree.jpg" BORDER=0 HEIGHT=98 WIDTH=177></H4>
<H4>
Description of Kit Directories</H4>
<UL>
<LI>
The <B><TT>kitRoot</TT> </B>directory is wherever you install the Netscape
Localization Kits.</LI>
<LI>
The <B><TT>l10nkits</TT> </B>directory contains the tools (if any) and
documentation you need to complete your work.</LI>
<LI>
Since this kit concerns the Windows client product (as opposed to our server
products) all the relevant documentation and tools are found under the
<B><TT>client\windows </TT></B>directory.</LI>
<LI>
The <B><TT>docs</TT> </B>directory contains documentation on the kit, including
the file you are reading now.</LI>
</UL>
&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="kitOverview.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="nomenclature.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,51 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize AIM.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for AIM.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>
File Copy String=<B>Copying Netscape AOL Instant Messenger Service files...</B>
<P>
Installation String=<B>Installing Netscape AOL Instant Messenger Service files...</B>
<P>
Configuration String=<B>Configuring Netscape AOL Instant Messenger Service...</B>
<P>
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<P>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,65 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize CD.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for CD.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Update the product version number as appropriate.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
<LI>
You may need to move the placement of "%s" variables in your translation.</LI>
<LI>
Do not exceed the length of US string for Deinstall Dialog Wait Message.</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>Product Setup Title1= <B>Deinstaller</B>
<P>Product Version=<B>4.03 </B>(<B>en</B>)
<P>Deinstall Dialog Message=<B>Are you sure you want to deinstall</B> <B>Netscape
Communicator 4.03</B> ?
<P>Deinstall Dialog Wait Message=<B>Parsing</B> <B>Netscape Communicator
4.03&nbsp; deinstall log file</B> %s (<B>this will take several minutes)...</B>
<P>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
<BR>&nbsp;
</BODY>
</HTML>

View File

@@ -1,62 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize COSMO.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for COSMO.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Update the product version number as appropriate.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
</UL>
<B>Specific Notes:</B>
<BR>&nbsp;
<BR>Installation String=<B>Installing Cosmo Player files...</B>
<P>Configuration String=<B>Configuring Cosmo Player...</B>
<P>File Copy String=<B>Copying Cosmo Player files...&nbsp;</B>
<P>Description=<B>VRML 2.0 support&nbsp;</B>
<P>[Registry Entries-Reg2]
<BR>HKEY Value=<B>4.03 </B>(<B>en</B>)
<P>[Registry Entries-Reg3]
<BR>HKEY Key Path=Software\Netscape\Cosmo\<B>4.03</B> (<B>en</B>)
<P>[Registry Entries-Reg4]
<BR>HKEY Key Path=Software\Netscape\Cosmo\<B>4.03 </B>(<B>en</B>)\Main
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
<BR>&nbsp;
</BODY>
</HTML>

View File

@@ -1,32 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize _ISUSER.DLL</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for _ISUSER.DLL</H4>
All dialogs in this .DLL can be localized.
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table1">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,45 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize MMEDIA.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for MMEDIA.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
</UL>
<B>Specific Notes:</B>
<P>Installation String=<B>Installing Audio/Video Playback files...</B>
<P>Configuration String=<B>Configuring Audio/Video Playback...</B>
<P>File Copy String=<B>Copying Audio/Video Playback files...</B>
<P>Description=<B>Support for multi-media web pages</B>
<P>
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<P>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,68 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Localizing MPLAY32.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for MPLAY32.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Update the product version number as appropriate.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>Installation String=<B>Installing Netscape Media Player files...</B>
<P>Configuration String=<B>Configuring Netscape Media Player...</B>
<P>File Copy String=<B>Copying Netscape Media Player files...</B>
<P>Description=<B>Streaming audio support</B>
<P>[Default Folder-Icon2]
<BR>ProgramFolder=[Default Folder]\<B>Utilities</B>
<P>[Registry Entries-Reg2]
<BR>HKEY Value=<B>4.03 </B>(<B>en</B>)
<P>[Registry Entries-Reg3]
<BR>HKEY Key Path=Software\Netscape\Media Player\<B>4.03 </B>(<B>en</B>)
<P>[Registry Entries-Reg4]
<BR>HKEY Key Path=Software\Netscape\Media Player\<B>4.03 </B>(<B>en</B>)\Main
<P>[Registry Entries-Reg5]
<BR>HKEY Key Path=Software\Netscape\Media Player\<B>4.03</B> (<B>en</B>)\Main
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;<BR>
<FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape Communications
Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,154 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize NAV40.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for NAV40.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Do not exceed the length of English string if possible.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
<LI>
The "Utilities" folder name may be localized.</LI>
<LI>
"Item name" is the name that will appear under the associated icon; these
may be localized.</LI>
<LI>
You may need to move the placement of "%s" variables in your translation.</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>Installation String=<B>Installing Netscape Communicator 4.03 files...</B>
<P>Configuration String=<B>Configuring Netscape Communicator 4.03...</B>
<P>File Copy String=<B>Copying Netscape Communicator 4.03 files...</B>
<P>Description=<B>Contains Collabra, Composer, Messenger, and Navigator</B>.
<P>Warn Previous Version Message=<B>Setup has detected a previous installation
of</B> %s. <B>If you installed plugins or helper applications with a previous
installation, you will need to reinstall them to this version of</B> <B>Communicator.</B>
<P>[Navigator 1]
<BR>Message=<B>Setup has detected that an instance of Navigator is currently
running. Please quit Navigator before running Setup.</B>
<P>[Navigator 2]
<BR>Message=<B>Setup has detected that an instance of Navigator is currently
running. Please quit</B> <B>Navigator before running Setup.</B>
<P>[Navigator 3]
<BR>Message=<B>Setup has detected that an instance of Navigator is currently
running. Please quit</B> <B>Navigator before running Setup.</B>
<P>[NSMail Notifier]
<BR>Message=<B>Installation cannot continue because the Mail Notification
program is currently running. Use your right mouse button to click the
Mail icon next to the task bar clock and select 'Exit' to disable Mail
Notification, then run the installer again.</B>
<P>[Navigator 4.05 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.05 (<B>en</B>)\Main
<P>[Navigator 4.04 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.04 (<B>en</B>)\Main
<P>[Navigator 4.03 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Navigator 4.02 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.02 (<B>en</B>)\Main
<P>[Navigator 4.01 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.01 (<B>en</B>)\Main
<P>[Navigator 4.0 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.0 (<B>en</B>)\Main
<P>[Navigator 4.0b6 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.0b6 (<B>en</B>)\Main
<P>[Navigator 4.0b5 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.0b5 (<B>en</B>)\Main
<P>[Navigator 4.0b4 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.0b4 (<B>en</B>)\Main
<P>[Navigator 4.0b3 32]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.0b3 [<B>en</B>]\Main
<P>[Default Folder-Icon11]
<BR>ItemName=<B>User Profile Manager</B>
<P>[Default Folder-Icon12]
<BR>ProgramFolder=[Default Folder]\<B>Utilities</B>
<BR>ItemName=<B>User Profile Manager</B>
<P>[Default Folder-Icon13]
<BR>ItemName=<B>Netscape Mail Notification</B>
<P>[Default Folder-Icon14]
<BR>ProgramFolder=[Default Folder]\<B>Utilities</B>
<BR>ItemName=<B>Netscape Mail Notification</B>
<P>[Registry Entries-R14]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)
<P>[Registry Entries-R15]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R16]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R17]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R18]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R19]
<BR>HKEY Key Path=Software\Netscape\Netscape Navigator\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R37]
<BR>HKEY Value=4.03 (<B>en</B>)
<P>[Registry Entries-R38]
<BR>HKEY Key Path=Software\Netscape\Netcaster\4.03 (<B>en</B>)\Main
<P>[Registry Entries-R39]
<BR>HKEY Key Path=Software\Netscape\Netcaster\4.03 (<B>en</B>)\Main
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,49 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize NETCAST.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for NETCAST.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>
Installation String=<B>Installing Netscape Netcaster files...</B>
<P>
Configuration String=<B>Configuring Netscape Netcaster...</B>
<P>
File Copy String=<B>Copying Netscape Netcaster files...</B>
<P>
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<P>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,67 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localizing NSCONF.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for NSCONF.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in <B>bold</B> type face below.</LI>
<LI>
Update the product version number as appropriate.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
</UL>
<B>Specific Notes:</B>
<P>Installation String=<B>Installing Netscape Conference files...</B>
<P>Configuration String=<B>Configuring Netscape Conference...</B>
<P>File Copy String=<B>Copying Netscape Conference files...</B>
<P>Description=<B>Real-time collaboration and audio conferencing</B>
<P>[Registry Entries-Reg17]
<BR>HKEY Value=<B>4.03</B> (<B>en</B>)
<P>[Registry Entries-Reg18]
<BR>HKEY Key Path=Software\Netscape\Conference\<B>4.03 </B>(<B>en</B>)
<P>[Registry Entries-Reg19]
<BR>HKEY Key Path=Software\Netscape\Conference\<B>4.03</B> (<B>en</B>)\Main
<P>[Registry Entries-Reg20]
<BR>HKEY Key Path=Software\Netscape\Conference\<B>4.03</B> (<B>en</B>)\Main<BR>
<BR>
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table2">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,71 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize RSUTIL.DLL</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for RSUTIL.DLL</H4>
<B>STRINGTABLES</B><B></B>
<P><B><FONT COLOR="#FF0000">Do not translate the following strings:</FONT></B>
<P>STRING ID:
<BR><I>1&nbsp;</I>
<BR><I>17 18 19&nbsp;</I>
<BR><I>20 21 22 23 24 25 26 27 28 29&nbsp;</I>
<BR><I>30 31 32 33 34 35 36 37 38 39&nbsp;</I>
<BR><I>40 41 42 43 44 45 46 47 48 49&nbsp;</I>
<BR><I>50 51 52 53 54 55 56 57 58 59&nbsp;</I>
<BR><I>60 61 62 63 64 65 66 67 68 69&nbsp;</I>
<BR><I>70 71 72 73 74 75 76 77 78 79&nbsp;</I>
<BR><I>80 81 82 83 85 86 88&nbsp;</I>
<BR><I>90 91 92 95 97 98 99</I>
<BR><I>100 101 102 103 104 105 106 107 108 109</I>
<BR><I>110 111 112 113 114</I>
<BR><I>122 123 126 127 129</I>
<BR><I>132 133 134 135 136 137 138 139</I>
<BR><I>140 145 149</I>
<BR><I>151 153 154 155 156 157 158 159</I>
<BR><I>162 163 164 165 166 167 169&nbsp;</I>
<BR><I>170 171 172 173 174 175 176 177 178 179</I>
<BR><I>180 181 182 183 184 185 187 188</I>
<BR><I>190 192 193 194 195 196 197 198 199</I>
<BR><I>200 201 202 203 204 205 206 207 208 209</I>
<BR><I>210 211 212 213 214 215 216 217 218 219</I>
<BR><I>220 221 222 226 227 228 229&nbsp;</I>
<BR><I>230 232 233 234 235 236 237 238 239</I>
<BR><I>240 241 242 243 244 245 246 247 248 249</I>
<BR><I>250 251 252 253 254 255 256 257&nbsp;</I>
<BR><I>260 261 263 264 265 266 267 269</I>
<BR><I>270 271 272 273 274 275 276 277 278 279</I>
<BR><I>280 281 282 283</I>
<BR>&nbsp;
<BR>
<HR WIDTH="50%">
<BR><B>ICONS</B>
<BR>Replace any trademarked icons, as described in the universal localization
program license agreement, with your own icons.
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table1">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,138 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<META NAME="Author" CONTENT="Rick Elliott">
<TITLE>Localize SETUP.INI</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H4>
Localization notes for SETUP.INI</H4>
<B>General Notes:</B>
<UL>
<LI>
Only translate the strings which are shown in bold type face below.</LI>
<LI>
The "StartCopy Dialog Message" should be less than 256 bytes long.</LI>
<LI>
For the "Multiple Components" section, both the key and the value may be
localized (optional).</LI>
<LI>
If the key "Multimedia Support" is localized then next section name should
be identical to the localized key.</LI>
<LI>
Change Netscape trademarks to your own product name(s).</LI>
<LI>
Update the version number as appropriate.</LI>
<LI>
Modify the locale code according to the ISO 639 and ISO 3166 standards.
(See the <A HREF="reference.html">Reference section</A> for details).</LI>
</UL>
<B>Specific Notes:</B>
<P>Product Setup Title1= <B>Setup</B>
<P>Product Version=<B>4.03 </B>(<B>en</B>)
<P>Deinstall Version=<B>4.03 </B>(<B>en</B>)
<P>License Dialog Title=<B>Software License Agreement</B>
<P>License Dialog Message=<B>Please read the following license agreement.
Use the scroll bar to view the rest of this agreement.</B>
<P>License Dialog Question=<B>Do you accept all the terms of the preceding
license agreement? If so, click on the Yes button. If you select No, Setup
will close.</B>
<P>License Icon Description=<B>License Agreement</B>
<P>Welcome Dialog Title=<B>Netscape Communicator 4.03 Setup</B>
<P>Welcome Dialog Message=<B>Welcome to Netscape Communicator 4.03 Setup</B>.
<P>SetupType Dialog Title=<B>Setup Type</B>
<P>SetupType Dialog Message=<B>Select the type of setup you prefer.</B>
<P>Insufficient Space Dialog Title=<B>Insufficient Space</B>
<P>Insufficient Space Dialog Message=<B>The path below contains insufficient
space.</B>
<P>Path Dialog Title=<B>Choose Destination Location</B>
<P>Path Dialog Message=<B>Please enter the location where you would like
to install </B>Netscape Communicator 4.03
<BR><B>components. You may type a new directory name or click the Browse
button to find a new location.</B>
<P>Options Dialog Title=<B>Netscape Communicator 4.03 Options</B>
<P>Options Dialog Message=<B>Check the components you would like to install.</B>
<P>Associations Dialog Title=<B>Setup Associations</B>
<P>Associations Dialog Message=<B>Check the extensions you would like Communicator
to set up. These extensions will be associated with Communicator components.</B>
<P>Select Folder Dialog Title=<B>Select Program Folder</B>
<P>StartCopy Dialog Title=<B>Start Copying Files</B>
<P>StartCopy Dialog Message=<B>Setup has enough information to start copying
the program files. If you want to review or change settings, click Back.
If you are satisfied with the current settings, click Install to begin
copying files.</B>
<P>Readme Dialog Prompt=<B>Would you like to view the README file now?</B>
<P>Finish Dialog Prompt=<B>Setup is complete. You may run Netscape Communicator
4.03 by double-clicking on one of the icons in the folder.</B>
<P>Reboot Dialog Title=<B>Restarting Windows</B>
<P>Reboot Dialog Message=<B>Setup has finished copying files to your computer.
Before you can use the program, you must restart Windows or your computer.</B>
<P>Exit Dialog Message=<B>Are you sure you want to exit setup?</B>
<P>Error Resource Message1=<B>Could not load Resource: </B>%s
<BR>Error Resource Message2=<B>Attempted to fix the problem. Please restart
the setup application.</B>
<BR>Error Resource Message3=<B>Could not get module handle of rsutil.dll.
System memory could be corrupted. Please reboot and try again.</B>
<P>[Multiple Components]
<BR><B>Multimedia Support</B>=<B>Extension modules for Netscape Communicator
4.03</B>
<P>[<B>Multimedia Support</B>]
<BR>Default Path=
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="localize_these_files.html#table1">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,55 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>Localizing URLs</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="localizeURLs"></A>Localizing URLs</H3>
Many resources of all types in the Communicator contain Internet addresses
in the form of URLs (Universal Resource Locators). Most of these point
to locations within the Netscape domain; as part of the Unlimited Localization
Program, you can leave these as they are, or you may change them as you
desire.
<H3>
Internal URLs</H3>
There are a number of internal URLs that <FONT COLOR="#FF0000">should not
be changed</FONT>.&nbsp; These are the strings that look like <B>about:[some
value]</B>.&nbsp; These point to internally contained resources, such as
the main About Communicator page.&nbsp; If you localize these strings you
will not be able to load these pages.&nbsp; The main examples you might
find are:
<UL>
<LI>
about:</LI>
<LI>
about:plugins</LI>
<LI>
about:fonts</LI>
</UL>
For more examples and information on these internal URLs go <A HREF="http://help.netscape.com/kb/client/970513-4.html">here</A>.
<BR>&nbsp;
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="usingKit.html#localizeURLs">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;<BR>
<FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape Communications
Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,125 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Localize these Files</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="localize_these_files"></A>Localize These Files</H3>
This section tells you exactly what files need to be localized. The following
tables contain two columns:
<UL>
<LI>
The file to be localized column gives the specific file name. The path
name <I>temp</I> refers to wherever you have copied the uncompressed installer
files in Step 2 of the <A HREF="usingKit.html#l10nchecklist">Localization
Checklist</A>. If the file or resource name is a hypertext link, further
information can be found by following that link.</LI>
<LI>
The purpose column describes the basic purpose of this file.</LI>
</UL>
<A NAME="table1"></A><FONT SIZE=-1>Table 1. Binary files to be localized</FONT>
<TABLE BORDER >
<TR>
<TD><B>File to be localized&nbsp;</B></TD>
<TD><B>Purpose</B></TD>
</TR>
<TR>
<TD><TT><A HREF="localizeRsutil.html">rsutil.dll</A></TT></TD>
<TD>Installer STRINGTABLE and ICON resources.&nbsp;</TD>
</TR>
<TR>
<TD><TT><A HREF="localizeIsuser.html">_isuser.dll</A></TT></TD>
<TD>Installer DIALOG resources.</TD>
</TR>
</TABLE>
<P>
<A NAME="table2"></A><FONT SIZE=-1>Table 2. .INI files to be localized</FONT>
<TABLE BORDER >
<TR>
<TD><B>File to be localized</B></TD>
<TD><B>Purpose</B></TD>
</TR>
<TR>
<TD><A HREF="localizeAim.html">aim.ini</A></TD>
<TD>AOL Instant Messgenger initialization file.*</TD>
</TR>
<TR>
<TD><A HREF="localizeCD.html">cd.ini</A></TD>
<TD>Deinstaller initialization file.</TD>
</TR>
<TR>
<TD><A HREF="localizeCosmo.html">cosmo.ini</A></TD>
<TD>Cosmo player initialization file.*</TD>
</TR>
<TR>
<TD><A HREF="localizeMmedia.html">mmedia.ini</A></TD>
<TD>Multimedia initialization file.*</TD>
</TR>
<TR>
<TD><A HREF="localizeMplay.html">mplay32.ini</A></TD>
<TD>Media Player initialization file.*</TD>
</TR>
<TR>
<TD><A HREF="localizeNav40.html">nav40.ini</A></TD>
<TD>Main product initialization file.</TD>
</TR>
<TR>
<TD><A HREF="localizeNetcast.html">netcast.ini</A></TD>
<TD>Netcaster initialization file.</TD>
</TR>
<TR>
<TD><A HREF="localizeNsconf.html">nsconf.ini</A></TD>
<TD>Netscape Conference initialization file.*</TD>
</TR>
<TR>
<TD><A HREF="localizeSetup.html">setup.ini</A></TD>
<TD>Main setup initialization file.</TD>
</TR>
</TABLE>
<P>
* These files come with the Complete installer version.
<P>
<CENTER><TABLE COLS=1 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<P>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,109 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Conventions</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="nomenclature"></A>Nomenclature and Typographical Conventions</H3>
<B>Typographical Conventions</B>
<BR>Words in <I>italics</I> typeface represent a variable term or phrase,
meant to be replaced by another value at "runtime."&nbsp; Example:
<UL><I>locale</I> -- replaced by a 2- or 4 letter locale code; e.g. zhtw</UL>
Words in <B>bold</B> typeface, using a proportional font, represent a literal
value in a string that might also contain a variable word or phrase. Example:
<UL><B>4.03 [</B><I>locale</I><B>]</B> -- 4.03 [ ] are literal values,
while <I>locale</I> is a variable.
<UL>&nbsp;</UL>
</UL>
Words in a <TT>fixed width font</TT> represent file or directory names,
or DOS or Windows commands to be typed as they appear.&nbsp; Sometimes,
part or all of the path will be in <B><TT>bold</TT></B>, for emphasis.
Examples:
<UL>Change to the <B><TT><I>kitRoot</I>\l10nkits\client\windows\tools</TT></B><TT>
</TT>directory
<BR>Execute <B><TT>RTRNKIT</TT></B></UL>
<B>Nomenclature</B>
<BR>Throughout this document, certain terms and phrases will be used repeatedly:
<P><FONT SIZE=-1>Table 1. Nomenclature and Typographical Conventions</FONT>
<TABLE BORDER >
<TR>
<TD><B><TT>kitRoot</TT> </B>directory&nbsp;</TD>
<TD>indicates the starting or topmost directory of the Windows Front End
Localization Kit.</TD>
</TR>
<TR>
<TD><I>platform</I></TD>
<TD>either 16 or 32 bit, depending on the version you are working on.</TD>
</TR>
<TR>
<TD><I>locale</I></TD>
<TD>in general, this refers to the language into which you are localizing
the product. The list of valid locale names is defined in the <A HREF="isocodes.htm">ISO
Language and Country Codes Table</A>.</TD>
</TR>
<TR>
<TD>localization database</TD>
<TD>a database generated by a leveraging tool from a set of matched binary
resource files.&nbsp;</TD>
</TR>
<TR>
<TD>localization notes</TD>
<TD>any special instructions, including the "translate/don't translate"
flag, associated with a given resource.&nbsp; Localization notes are contained
in the localization database for each resource module.</TD>
</TR>
<TR>
<TD><I>leverage</I></TD>
<TD>The process of merging previous localized versions of a file into a
current version.&nbsp;</TD>
</TR>
<TR>
<TD>forbidden resource</TD>
<TD>A resource that cannot be changed from the original value without (negatively)
impacting the functionality of the product. These are identified in the
localization databases.</TD>
</TR>
</TABLE>
&nbsp;
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="kitStruct.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="gettingStarted.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,57 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Project Overview</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="overviews"></A>1. Project Overview</H2>
<CENTER><B><FONT COLOR="#009900">Welcome to the Communicator/Navigator
Installer Localization Kit!</FONT></B></CENTER>
<P>Under the universal localization program, you are free to create an
installer for a localized Communicator, Navigator or Mozilla derivative
product in any way you choose. This localization kit will assist you in
creating a your installer for the 32-bit Windows platform. As long as you
follow the terms of the universal localization program license agreement,
you are free to do what you want with the resulting localized product and
installer.
<P>The Netscape Communicator and Netscape Navigator 4.x installation programs
were created with InstallShield<SUP><FONT SIZE=-1>&reg;</FONT></SUP> version
3.&nbsp; Because this is the proprietary product of InstallShield Corporation,
Netscape cannot redistribute the complete source for these installers.&nbsp;
You may, however, modify an existing Communicator or Navigator installer,
or if you choose, you may build your own installer "from scratch".
<P><B>Note</B>: because of the U.S. Government's restrictions on the export
of strong cryptography, <B>you may only distribute the "export" version</B>
of the Netscape binaries.&nbsp; Please keep this in mind as you work with
the localization kit instructions.
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="splash.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="kitOverview.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
&nbsp;
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,54 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Reference</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="reference"></A>Reference</H2>
This section summarizes the references used throughout this document.&nbsp;
In addition, other miscellaneous references may be found here.
<P><FONT SIZE=-1>Table 5. Reference Links</FONT>
<TABLE BORDER COLS=3 WIDTH="100%" >
<TR>
<TD><A HREF="isocodes.htm">Locale Table (local)</A></TD>
<TD><A HREF="http://www.indigo.ie/egt/standards/iso639/iso639-en.html">Locale
Table (remote)</A></TD>
<TD><A HREF="registrySettings.html">Windows Registry Settings Reference</A></TD>
</TR>
<TR>
<TD><A HREF="http://home.netscape.com/menu/intl/">Communicator International
Features</A></TD>
<TD><A HREF="http://help.netscape.com/kb/client/970513-4.html"></A></TD>
<TD><FONT COLOR="#009900"><A HREF="charsets.htm"></A></FONT></TD>
</TR>
</TABLE>
<A HREF="allxpstr.h"></A>
<P>&nbsp;
<CENTER><TABLE COLS=1 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,612 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>Windows Registry Settings</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H1>
Windows Registry Settings</H1>
This document is provided as a reference to the Windows registry settings
implemented by Communicator and Navigator.&nbsp; You may use this as a
guide to the registry settings you must implement if you create your own
installation program (as opposed to localizing an existing Netscape installer).
<P>Note that in the Netscape installers, these settings are implemented
only within .INI files.&nbsp; This simplifies modifying and localizing
the installer. It is recommended that your installer do the same.
<P>You may observe the registry changes made by any product with tools
such as <A HREF="http://www.ntinternals.com/regmon.htm">Regmon.</A> This
may be a useful addition to your toolset.
<P>These notes are applicable to Netscape Communicator version 4.03.
<BR>&nbsp;
<TABLE BORDER COLS=1 WIDTH="100%" >
<TR>
<TD><B>MPLAY32.INI</B>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Media Player&nbsp;
<BR>Name : CurrentVersion&nbsp;
<BR>Value: 4.03 (en)&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Media Player\4.03 (en)&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Media Player\4.03 (en)\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Default Path]\MPlayer&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Program Folder&nbsp;
<BR>Value: [Program Folder]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\.LAM&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: LAMDocument&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\LAMDocument\shell\open\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [WINSYSDIR]\mplay32.exe %1&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : (Default)&nbsp;
<BR>Value: [WINDIR]\mplayer.exe %1&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\LAMDocument\DefaultIcon&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\MPlayer\npcfg32.exe ,0&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MCI32&nbsp;
<BR>Name : LiveAudioFile&nbsp;
<BR>Value: mcilma32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MCI&nbsp;
<BR>Name : LiveAudioFile&nbsp;
<BR>Value: mcilma.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MCI32&nbsp;
<BR>Name : LiveAudioMetafile&nbsp;
<BR>Value: mcilau32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : mcilau32.dll&nbsp;
<BR>Value: (MCI) Netscape Media Player&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MCI&nbsp;
<BR>Name : LiveAudioMetafile&nbsp;
<BR>Value: mcilau.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MCI
Extensions&nbsp;
<BR>Name : LAM&nbsp;
<BR>Value: LiveAudioMetafile&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : LMA&nbsp;
<BR>Value: LiveAudioFile&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : LA&nbsp;
<BR>Value: LiveAudioFile&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : mcilma32.dll&nbsp;
<BR>Value: (MCI) Netscape Packetized Audio&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Drivers32&nbsp;
<BR>Name : MSACM.NSPAC&nbsp;
<BR>Value: NSPAC32.ACM&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : NSPAC32.ACM&nbsp;
<BR>Value: elemedia(TM) AX24000P Music Codec&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Drivers32&nbsp;
<BR>Name : MSACM.voxacm118&nbsp;
<BR>Value: vdk32118.acm&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : vdk32118.acm&nbsp;
<BR>Value: Voxware 32bit Codec&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Drivers32&nbsp;
<BR>Name : MSACM.NSX83&nbsp;
<BR>Value: NSX83P32.ACM&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : NSX83P32.ACM&nbsp;
<BR>Value: elemedia(TM) SX8300 Speech Codec&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Drivers32&nbsp;
<BR>Name : MSACM.NSMLAW&nbsp;
<BR>Value: NSMLAW32.DLL&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\drivers.desc&nbsp;
<BR>Name : NSMLAW32.DLL&nbsp;
<BR>Value: Netscape G.711 Decoder&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>
<HR WIDTH="100%">
<BR><B>NAV40.INI</B>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App
Paths\Netscape.exe&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Path&nbsp;
<BR>Value: [Default Path]\Program&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{7865A9A1-33A8-11d0-BED9-00A02468FAB6}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{543EC0D0-6AB7-11d0-BF56-00A02468FAB6}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{543EC0D1-6AB7-11d0-BF56-00A02468FAB6}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{2D0A7D70-748C-11d0-9705-00805F8AA8B8}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\edpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{E8D6B4F0-8B58-11d0-9B63-00805F8ADDDE}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\mnpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{DDF4AB60-8B84-11d0-9B63-00805F8ADDDE}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\mnpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{CC3E2871-43CA-11d0-B6D8-00805F8ADDDE}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\mnpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{CC3E2872-43CA-11d0-B6D8-00805F8ADDDE}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\mnpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netscape Navigator&nbsp;
<BR>Name : CurrentVersion&nbsp;
<BR>Value: 4.03 (en)&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netscape Navigator\Users&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netscape Navigator\4.03
(en)&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netscape Navigator\4.03
(en)\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Default Path]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Java Directory&nbsp;
<BR>Value: [Default Path]\Program\Java&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : NetHelp Directory&nbsp;
<BR>Value: [Default Path]\Program\NetHelp&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Plugins Directory&nbsp;
<BR>Value: [Default Path]\Program\Plugins&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Program Folder&nbsp;
<BR>Value: [Program Folder]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CURRENT_USER\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CURRENT_USER\Software\Netscape\Netscape Navigator&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CURRENT_USER\Software\Netscape\Netscape Navigator\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Default Path]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\CLSID&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: {61D8DE20-CA9A-11CE-9EA5-0080C82BE3B6}&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\Insertable&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\protocol\StdFileEditing\server&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\protocol\StdFileEditing\verb\0&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: &amp;Edit&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\open\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe "%1"&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\print\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe /print("%1")&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\print\ddeexec&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [print("%1")]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\PrintTo\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe /printto("%1","%2","%3","%4")&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\PrintTo\ddeexec&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [("%1","%2","%3","%4")]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\open\ddeexec&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: "%1"&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\open\ddeexec\Application&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: NSShell&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\open\ddeexec\Topic&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: WWW_OpenURL&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\Edit\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\Netscape.exe -edit "%1"&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\Edit\ddeexec&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [edit("%1")]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netcaster&nbsp;
<BR>Name : CurrentVersion&nbsp;
<BR>Value: 4.03 (en)&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netcaster\4.03 (en)\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Shell Path]\Netcast&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Program Folder&nbsp;
<BR>Value: [Program Folder]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{C98D0190-7D81-11d0-BF8D-00A02468FAB6}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{37B601C0-8AC8-11d0-83AF-00805F8A274D}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\CLSID\{913A4A20-8EBF-11d0-BFAB-00A02468FAB6}\InprocServer32&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\Program\brpref32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\print\ddeexec\Application&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: NSShell&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\PrintTo\ddeexec\Application&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: NSShell&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup\shell\Edit\ddeexec\Application&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: NSShell&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\NetscapeMarkup&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: Hypertext Markup Language&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\telnet&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: URL:Telnet Protocol&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\telnet\shell\open\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: telnet %1&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>
<HR WIDTH="100%">
<BR><B>NETCAST.INI</B>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netcaster&nbsp;
<BR>Name : CurrentVersion&nbsp;
<BR>Value: 1.0 (en)&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netcaster\1.0 (en)&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Netcaster\1.0 (en)\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Default Path]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Program Folder&nbsp;
<BR>Value: [Program Folder]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>
<HR WIDTH="100%">
<BR><B>NSCONF.INI</B>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Conference&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Conference\CurrentVersion&nbsp;
<BR>Name : Description&nbsp;
<BR>Value: Conference&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : InstallDate&nbsp;
<BR>Value: [TIME]&nbsp;
<BR>Type : REGDB_NUMBER&nbsp;
<P>Name : Installed&nbsp;
<BR>Value: 1&nbsp;
<BR>Type : REGDB_NUMBER&nbsp;
<P>Name : PathName&nbsp;
<BR>Value: [Default Path]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : SoftwareType&nbsp;
<BR>Value: application&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : VersionBuild&nbsp;
<BR>Value: 1213&nbsp;
<BR>Type : REGDB_NUMBER&nbsp;
<P>Name : VersionMajor&nbsp;
<BR>Value: 1&nbsp;
<BR>Type : REGDB_NUMBER&nbsp;
<P>Name : VersionMinor&nbsp;
<BR>Value: 0&nbsp;
<BR>Type : REGDB_NUMBER&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Drivers32&nbsp;
<BR>Name : MSACM.VOXACM118&nbsp;
<BR>Value: vdk32118.acm&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : MSACM.NSX83&nbsp;
<BR>Value: nsx83p32.acm&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : MSACM.NSX723&nbsp;
<BR>Value: sx5363s.acm&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : MSACM.NSMLAW&nbsp;
<BR>Value: nsmlaw32.dll&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CURRENT_USER\Software\Netscape&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_CLASSES_ROOT\nscfile\shell\open\command&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value: [Default Path]\NSConf32.exe -f "%1"&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Conference&nbsp;
<BR>Name : CurrentVersion&nbsp;
<BR>Value: 4.03 (en)&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Conference\4.03 (en)&nbsp;
<BR>Name : (Default)&nbsp;
<BR>Value:&nbsp;
<BR>Type :&nbsp;
<BR>&nbsp;
<P>Key&nbsp; : HKEY_LOCAL_MACHINE\Software\Netscape\Conference\4.03 (en)\Main&nbsp;
<BR>Name : Install Directory&nbsp;
<BR>Value: [Default Path]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<P>Name : Program Folder&nbsp;
<BR>Value: [Program Folder]&nbsp;
<BR>Type : REGDB_STRING&nbsp;
<BR>&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="kitOverview.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,53 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>Reporting Bugs</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
<A NAME="reporting_bugs"></A>Reporting Bugs</H3>
Any bugs in the localization kits you find should be reported to <A HREF="http://www.mozilla.org">mozilla.org</A>
as soon as possible. When you report a bug, try to be as specific as you
can about the exact steps needed to reproduce the bug.&nbsp; Provide a
complete description of the problem versus the expected results.&nbsp;
You should let us know if the problem is 100% reproducible (it happens
every time), or if it is intermittant.&nbsp; If you think that your operating
environment may play some factor, let us know the details of that.&nbsp;
Finally, before reporting any bug, you should make sure that the problem
doesn't also happen in the US English product (if it does, we still want
to know, but it may not be possible to fix it through the localization
kits or tools as they are now).
<P>To report a bug, post a message to the following mozilla.org newsgroup:
<BR>&nbsp;
<CENTER><A HREF="news://news.mozilla.org/netscape.public.mozilla.general">news://news.mozilla.org/netscape.public.mozilla.general</A></CENTER>
<P>Be sure to include the information described above.
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="testKit.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="returnKit.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,54 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>Returning the Kit</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="returnkit"></A>5. Publishing the Finished Kit</H2>
Once you are satisfied with the quality of your localization efforts, you
are required by the terms of the universal localization program license
agreement to make your localized product publicly available. The exact
details of how you do this is up to you, the most commonly acceptable method
is to post your localized product to a publicly accessible ftp site.
<P>You should post just the localized versions of the files mentioned in
the Localize These Files section of this document. For ease of transfer,
you may create a compressed archive in the .ZIP file format that contains
the localized files. Create one .ZIP file for each language/platform you
do. If you are publishing more than one language or platform, you may combine
multiple .ZIP files into one master .ZIP file if this makes your life easier.
<P>If your localized product includes your own trademarks, you should identify
these and any restrictions you are placing on their use. You must also
include a copy of the End User License Agreement (EULA), as well as a notice
stating that Netscape Communications is not required to support your product,
and that you are the Licensor referred to in the EULA. Please refer to
the Universal Localization Agreement for the exact legal requirements.
<P>Once your localized product is publicly available, you may inform the
world in any manner you choose, but we encourage you to also post the download
location to the mozilla.org Announcements newsgroup (netscape.public.mozilla.announce).
<CENTER>&nbsp;<BR>
<FONT COLOR="#008000"><FONT SIZE=+2>Congratulations! You are done!</FONT></FONT></CENTER>
&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="testKit.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,47 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Title Page</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<CENTER>
<H1>
NETSCAPE COMMUNICATOR</H1></CENTER>
<CENTER><IMG SRC="SPLASH.JPG" NOSAVE HEIGHT=261 WIDTH=390></CENTER>
<CENTER>
<H1>
Localization Kit</H1></CENTER>
<CENTER>
<H3>
for Microsoft<SUP><FONT SIZE=+0>&reg;</FONT></SUP> Windows (32-bit version)</H3></CENTER>
<CENTER>
<H3>
Revision 1.1</H3></CENTER>
<CENTER>Copyright &copy; 1994-1998 Netscape&reg; Communications Corporation,
All rights reserved.</CENTER>
&nbsp;
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="projectOverview.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
</BODY>
</HTML>

View File

@@ -1,150 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Testing the Localized Resources</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="testkit"></A>4. Ensuring Quality</H2>
The quality of your localized version will have a large impact on its acceptance
in the marketplace.&nbsp; You can greatly enhance your chances of producing
a quality product by using experienced and skilled localizers, and by performing
post-translation testing.
<P>When performing the actual translation, you should be sensitive to a
number of issues:
<UL>
<LI>
Completeness: you should aim for as thorough a translation as possible.&nbsp;
Try not to leave portions of the product untranslated. However, be aware
that some terms may best be left in English, depending on local conventions.</LI>
<LI>
Suitability: all translations should be suitable and appropriate for product,
the language, the market and the customers you intend to reach.&nbsp; This
includes using the proper technical terminology for a give platform or
computer operation, as well as using language that is readily understood
by the average user of the product in a given language.&nbsp; You should,
where possible, try to use terminology which is similar to other products
available on the same platform (without violating copyrights or trademarks,
of course).</LI>
<LI>
Accuracy: you should be sure your translation conveys the same meaning
and intention as the original English.</LI>
<LI>
Grammar and spelling: you should be sure your translation is grammatically
accurate and free from spelling errors.</LI>
</UL>
Keep in mind that engineers do not necessarily make the best localizers!
<P>Once localization is complete, there are two basic types of post-translation
testing that should be done:
<BR>&nbsp;
<TABLE BORDER WIDTH="100%" >
<TR>
<TD>Linguistic Review</TD>
<TD>Checking all translations for accuracy and appropriateness in the actual
context in which they appear.</TD>
</TR>
<TR>
<TD>Functional Testing</TD>
<TD>Ensuring the product still functions as designed (or at least as well
as the US English product).</TD>
</TR>
</TABLE>
&nbsp;
<BR>For the linguistic review, you should have an independent reviewer
(i.e. not the person who implemented the translations) check every string
for the items listed above.&nbsp; In some cases, it may be enough to review
the running product itself; however, it is also valuable to print out your
translations and review them externally from the product.
<P>For the functional testing, your best resource are the directions contained
in the localization notes and this document. You should review the completed
product's localization notes with this document in hand, double checking
that you have followed all the instructions contained here.
<P>Consider the following general guidelines when testing:
<UL>
<LI>
It is helpful to have a second copy of the product running with the English
version so you can compare them side by side (a second computer might be
helpful or required for this).</LI>
<LI>
Walk through every menu in each module you have localized looking for translation
accuracy, pick letter conflicts and other problems.</LI>
<LI>
Bring up as many dialogs as you can, looking for translation accuracy,
pick letter conflicts, truncated strings and functionality issues.</LI>
<LI>
Exercise the installer in as many ways as possible:</LI>
<UL>
<LI>
Select every installer option</LI>
<LI>
Be sure to test the deinstaller</LI>
<LI>
Look at the icons and folder names created</LI>
<LI>
Use accented or multibyte file and directory names</LI>
<LI>
Install to non-existant and read-only directories</LI>
<LI>
Install to drives with insufficient disk space</LI>
<LI>
etc.</LI>
</UL>
<LI>
If functional problems are found, you should compare the same steps you
took in the localized product to the English product: if the two products
fail in the same way, it is a "core" bug, which can only be fixed by changing
the core product's executable. If the localized product fails while the
English product does not, then it is probably a translation-related bug;
these can be fixed by altering the way you localize the product (perhaps
by not translating a particular item, or by translating it differently).</LI>
</UL>
The following section tells you how to report bugs in the localization
kit itself, or in the core product.
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="usingKit.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="reportingBugs.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER>&nbsp;</CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,106 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Table of Contents</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
Table of Contents</H2>
<TABLE>
<TR>
<TD><FONT SIZE=+1>i. <A HREF="splash.html">Title Page</A></FONT>&nbsp;
<BR>&nbsp;</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>1. <A HREF="projectOverview.html">Project Overview</A></FONT>&nbsp;
<UL>
<LI>
<A HREF="kitOverview.html">Kit Overview</A></LI>
<LI>
<A HREF="kitStruct.html">Structure and Organization</A></LI>
<LI>
<A HREF="nomenclature.html">Nomenclature and Typographical Conventions<BR>
</A>&nbsp;&nbsp;</LI>
</UL>
</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>2. <A HREF="gettingStarted.html">Getting Started</A></FONT>&nbsp;
<UL>
<LI>
<A HREF="gettingStarted.html#sysreqs">System Requirements</A></LI>
<LI>
<A HREF="gettingStarted.html#install">Installing the Kit</A></LI>
<LI>
<A HREF="gettingStarted.html#configtool">Configuring Your Tools</A></LI>
</UL>
&nbsp;</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>3. <A HREF="usingKit.html">Using the Kit</A></FONT>&nbsp;
<UL>
<LI>
<A HREF="usingKit.html#locdbf">Understanding the Localization Notes</A></LI>
<LI>
<A HREF="usingKit.html#l10nchecklist">Localization Checklist</A></LI>
<LI>
<A HREF="localize_these_files.html">Localize These Files</A></LI>
<LI>
<A HREF="usingKit.html#branding">Product Branding Issues</A></LI>
<LI>
<A HREF="usingKit.html#howtol10n">How to Localize Different Resource Types</A></LI>
<LI>
<A HREF="localizeURL.html">Localizing URLs</A></LI>
<LI>
<A HREF="usingKit.html#localize_stringtable">Localizing STRING TABLES</A></LI>
<LI>
<A HREF="usingKit.html#localize_dialogs">Localizing DIALOGS</A></LI>
<LI>
<A HREF="usingKit.html#localize_text">Localizing .INI Files</A></LI>
</UL>
&nbsp;</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>4. <A HREF="testKit.html">Ensuring Quality</A></FONT>&nbsp;
<UL>
<LI>
<A HREF="testKit.html#testkit">Test Considerations</A></LI>
<LI>
<A HREF="reportingBugs.html">Reporting Bugs</A></LI>
</UL>
&nbsp;</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>5. <A HREF="returnKit.html">Publishing the Finished Kit</A></FONT>&nbsp;
<BR>&nbsp;</TD>
</TR>
<TR>
<TD><FONT SIZE=+1>6. <A HREF="reference.html">References</A></FONT>&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
</BODY>
</HTML>

View File

@@ -1,323 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Using the Kit</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
&nbsp;
<TABLE COLS=1 WIDTH="100%" >
<TR>
<TD>
<CENTER><B><FONT COLOR="#FF0000">WARNING! Protect yourself from data loss
by making regular backups of your work.</FONT></B></CENTER>
</TD>
</TR>
</TABLE>
<H2>
<A NAME="usekit"></A>3. Using the Kit</H2>
Once your copy of the Windows Installer Localization Kit is correctly installed,
you may begin your localization work by following the instructions in the
remainder of this document. The next section discusses the contents of
the localization notes provided with this kit. It is important that you
work properly with the instructions contained in these files or the localized
product you create may not function.
<H3>
<A NAME="locdbf"></A>Understanding the Localization Notes</H3>
Each localized module to be installed has an associated initialization
(.INI) file. The localization notes for these files, and for the localizable
dynamic link libraries used by the InstallShield installer, are provided
as HTML documentation. (There are no localization databases in this kit).
Additionally, a section detailing the required Windows registry settings
is also provided in HTML format.
<P>The next section presents the basic localization process as a checklist.
<CENTER>
<HR WIDTH="50%"></CENTER>
<H3>
<A NAME="l10nchecklist"></A>Localization Checklist</H3>
This checklist applies to the "<A HREF="kitOverview.html#method1">modifying
an existing Communicator installer</A>" method. If you are <A HREF="kitOverview.html#method2">creating
your own installer</A>, you will need to adapt this checklist accordingly.
A reference is provided to help you implement the correct <A HREF="registrySettings.html">Windows
registry settings</A>.
<P><B>1. Download an existing installer</B>
<BR>You will need a matching installer for the product you are localizing.
In other words, if you are localizing Netscape Communicator version 4.03,
you need an installer for the Export version of Netscape Communicator 4.03.
If you are localizing Mozilla Navigator version 5.0, you need an installer
for the Export version (if any) of Mozilla Navigator version 5.0. Latest
versions of Netscape products can be downloaded from the <A HREF="http://home.netscape.com/download/index.html">Netscape
homepage</A>. Older versions of Netscape installers, matching the versions
used to generate the localization kits, can be found on the <A HREF="ftp://ftp.mozilla.org/pub/l10n-kits/">mozilla.org
ftp site</A>.
<P>Current Netscape installers come in two forms: base and complete. Complete
installers include plugins and other components besides the basic Communicator
software. You may use either installer as the foundation for your work,
but note that there may not be localization kits for the additional components.
Even if you choose to distribute the English version of these components,
however, you must modify the associated initialization files, listed in
the <A HREF="localize_these_files.html#table1">Localize These Files</A>
page in order for the additional components to be installed properly.
<P><B>2. Uncompress the Installer files</B>
<UL>
<LI>
Run the installer you downloaded in step 1. This will bring up the following
dialog (or something very similar):</LI>
<BR><IMG SRC="Is1.jpg" HEIGHT=101 WIDTH=364>
<LI>
Click yes. InstallShield will extract all the installation files to your
temporary directory. (Usually, this will be C:\temp or something similar).
Once this process is complete, the blue InstallShield background will display.</LI>
<LI>
Without exiting the installer, locate the unpacked installer files in your
temp directory and copy them to a new directory. Call this directory "install"
(or something similar).</LI>
<LI>
Exit the installer.</LI>
</UL>
<B>3. Uncompress the Deinstaller files</B>
<UL>
<LI>
Change directories to your "install" directory. Locate the file cd32*.exe
(where * equals the version number you are working on. For example, version
4.03 would be represented as cd32403.exe).</LI>
<LI>
Execute cd32*.exe. This will bring up a dialog similar to the one shown
is step 2. Click yes and wait until InstallShield has finished unpacking
the deinstaller files (the blue InstallShield background will display).</LI>
<LI>
Without exiting the installer, locate the unpacked deinstaller files in
your temp directory and copy them to a new directory. Call this directory
"deinstall" (or something similar).</LI>
<LI>
Exit the installer.</LI>
</UL>
<B>4. Extract localizable installer .DLLs</B>
<BR>Change directories to your "install" directory. Use the InstallShield
tool ICOMP.EXE to extract RSUTIL.DLL and _ISUSER.DLL from _SETUP.LIB:
<UL><TT>Example: icomp _setup.lib -d</TT></UL>
<B>4. Localize files</B>
<BR>Consult the <A HREF="localize_these_files.html#table1">Localize These
Files</A> page to learn which files contain localizable resources.
<P>For each file to be localized, locate the associated Localization Notes
for that file and follow them carefully.
<P><B>5. Replace original product files contained in nav40.z with localized
product files</B>
<BR>Use the ICOMP tool to replace the original (English language) Communicator
or Navigator files with the ones you have localized using the Windows Front
End Localization Kit.
<UL>
<LI>
Make sure your localized product directory structure matches the structure
inside the compressed file nav40.z. (If necessary, uncompress nav40.z (including
subdirectories), and replace all the localizable files (as identified by
the Windows Front End Localization Kit) with your localized versions).</LI>
<LI>
Update nav40.z with your localized files:</LI>
<UL><TT>Example: icomp \<I>kitRoot</I>\products\client\windows\<I>platform</I>\<I>locale</I>\*.*
nav40.z -i</TT></UL>
</UL>
<B>6. Rebuild the self-extracting deinstaller program</B>
<BR>Use the InstallShield tool EXE Builder to reassemble the self-extracting
deinstaller archive.
<UL>
<LI>
Specify your "deinstall" directory as the source directory.</LI>
<LI>
Set compression on.</LI>
<LI>
Specify Setup.exe as the command line program to run when self-extraction
is complete. (No optional parameters are required.)</LI>
<LI>
Specify your "install" directory as the target directory.</LI>
<LI>
Enter the name of your localized product as the application name.</LI>
<LI>
Do not specify a password.</LI>
<LI>
Once creation of your localized self-extracting deinstaller is complete,
locate the file Setupex.exe in your "install" directory and rename it to
match the original name of the deinstaller self-extracting program (e.g.,
cd32403.exe).</LI>
</UL>
<B>7. Rebuild the self-extracting installer program</B>
<BR>Use the InstallShield tool EXE Builder to reassemble the self-extracting
installer archive.
<UL>
<LI>
Specify your "install" directory as the source directory.</LI>
<LI>
Set compression on.</LI>
<LI>
Specify Setup.exe as the command line program to run when self-extraction
is complete. (No optional parameters are required.)</LI>
<LI>
Specify any directory you want as the target directory.</LI>
<LI>
Enter the name of your localized product as the application name.</LI>
<LI>
Do not specify a password.</LI>
<LI>
Once creation of your localized self-extracting installer is complete,
locate the file Setupex.exe in your target directory and rename it to something
meaningful.</LI>
</UL>
<B>8. Complete post-translation processing</B>
<BR>After translation is complete, you need to test your work and deal
with any problems:
<UL>
<LI>
Test the localized installer.</LI>
<LI>
Fix translation bugs using your localization tools or a resource editor.</LI>
<LI>
Fix dialog size bugs using your localization tools or a resource editor.</LI>
<LI>
Report core bugs to Netscape.</LI>
</UL>
<B>9. Publish your localized product to the Internet</B>
<BR>As the terms of the universal localization program license agreement
state, your localized product
<P><TT>"must be made publicly available in executable code form,</TT>
<BR><TT>free of charge, for electronic delivery via a mechanism</TT>
<BR><TT>generally accepted in the software development</TT>
<BR><TT>community."</TT>
<P>In plain English, this means you should post your localized product
on a publicly accessible http: or ftp: server. You may also want to send
an announcement of your product's availability to mozilla.org (though you
are not required to do so).
<P>
<HR WIDTH="50%">
<H2>
<A NAME="branding"></A>Product Branding Issues</H2>
If you are using this kit under the auspices of the universal localization
program, you must remove or replace Netscape trademarked strings, images
and icons in your localized version. Click <A HREF="branding.html">here</A>
for instructions.
<P>
<HR WIDTH="50%">
<H2>
<A NAME="howtol10n"></A>How to Localize Different Resource Types</H2>
This section provides you with general information about localizing the
various resource types and files found with this kit.
<H3>
<A NAME="localize_text"></A>Localizing .INI Files</H3>
<UL>Most of the work for the Windows installers is localizing initialization
(.INI) files. You may use the text editor of your choice to do this work.
Be sure the localized files are saved as plain text only.
<H4>
<A NAME="locnote_ini"></A>Localization Notes</H4>
Individual localization notes for the installer .INI files are contained
in the individual HTML documents linked from the <A HREF="localize_these_files.html#table1">Localize
These Files</A> page.</UL>
<H3>
<A NAME="localizeURLs"></A>Localizing URLs</H3>
<UL>You will not likely encounter any URLs (Universal Resource Locators)
in the installers, but if you do, how they are localized depends on whether
you are creating a branded Netscape version or not. The rules for how to
handle URLs are found <A HREF="localizeURL.html">here</A>.</UL>
<H3>
<A NAME="localize_stringtable"></A>Localizing String Tables</H3>
<UL>Use the resource editor of your choice to localize STRINGTABLE resources.
These are the most sensitive, potentially problematic resource type you
will be working with. Therefore, you must pay close attention to the instructions
provided in the localization notes.
<H4>
<A NAME="locnote_stringtable"></A>Localization Notes</H4>
Individual localization notes for the installer resource .DLLs are contained
in the individual HTML documents linked from the <A HREF="localize_these_files.html#table1">Localize
These Files</A> page. This section gives you some additional general guidelines
to follow when localizing the installer binary files.
<UL>
<LI>
Some strings may contain C++ print format strings, such as %s, %ld, %lu,
etc. Do not modify these while translating the rest of the string.</LI>
<LI>
Some strings may contain new line characters: \n. In general, you should
try leave these as you find them.</LI>
</UL>
</UL>
<H3>
<A NAME="localize_menus"></A>Localizing Menus</H3>
<UL>There are no menu resources in the Windows installer</UL>
<H3>
<A NAME="localize_dialogs"></A>Localizing Dialogs</H3>
<UL>Use the resource editor of your choice to localize and resize DIALOG
resources. Dialog translation is usually not as tricky as localizing string
tables; however, you should take care to assign unique pickletters to dialog
controls.
<H4>
<A NAME="locnote_menus"></A>Localization Notes</H4>
</UL>
<UL>Individual localization notes for the installer resource .DLLs are
contained in the individual HTML documents linked from the <A HREF="localize_these_files.html#table1">Localize
These Files</A> page.</UL>
&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="gettingStarted.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="testKit.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -1,40 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (WinNT; U) [Netscape]">
<TITLE>Product Branding Issues</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H3>
Product Branding Instructions</H3>
Under the terms of the Unlimited Localization Program, you must remove
or replace all trademarked Netscape terms, brand names, icons, images,
etc.&nbsp; These trademarks are listed on the page found at the following
URL:
<P><A HREF="http://home.netscape.com/misc/trademarks.html#trademarks">http://home.netscape.com/misc/trademarks.html#trademarks</A>
<P>Please refer to that page for details.&nbsp; You may not release a localized
version of the Netscape Communicator with these trademarks left in the
product.
<BR>&nbsp;
<CENTER><TABLE COLS=2 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="usingKit.html#branding">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS</A>]</CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER><BR>
<FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape Communications
Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,383 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>HTML Output of: C:\TEMP\CHARSET.DBF</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H1>
CSID REFERENCE TABLE</H1>
Use this table to determine the Character Set ID (CSID) for the character
set you wish to use, for example, for setting the value of&nbsp; pref("intl.character_set")
in ALL_PREFS.
<BR>&nbsp;
<TABLE BORDER >
<TR>
<TH>CSID</TH>
<TH>CHARSET</TH>
</TR>
<TR>
<TD>0</TD>
<TD>CS_DEFAULT</TD>
</TR>
<TR>
<TD>1</TD>
<TD>CS_ASCII</TD>
</TR>
<TR>
<TD>2</TD>
<TD>CS_LATIN1</TD>
</TR>
<TR>
<TD>6</TD>
<TD>CS_MAC_ROMAN</TD>
</TR>
<TR>
<TD>10</TD>
<TD>CS_LATIN2</TD>
</TR>
<TR>
<TD>11</TD>
<TD>CS_MAC_CE</TD>
</TR>
<TR>
<TD>14</TD>
<TD>CS_8859_3</TD>
</TR>
<TR>
<TD>15</TD>
<TD>CS_8859_4</TD>
</TR>
<TR>
<TD>16</TD>
<TD>CS_8859_5</TD>
</TR>
<TR>
<TD>17</TD>
<TD>CS_8859_6</TD>
</TR>
<TR>
<TD>18</TD>
<TD>CS_8859_7</TD>
</TR>
<TR>
<TD>19</TD>
<TD>CS_8859_8</TD>
</TR>
<TR>
<TD>20</TD>
<TD>CS_8859_9</TD>
</TR>
<TR>
<TD>21</TD>
<TD>CS_SYMBOL</TD>
</TR>
<TR>
<TD>22</TD>
<TD>CS_DINGBATS</TD>
</TR>
<TR>
<TD>23</TD>
<TD>CS_DECTECH</TD>
</TR>
<TR>
<TD>27</TD>
<TD>CS_JISX0201</TD>
</TR>
<TR>
<TD>29</TD>
<TD>CS_TIS620</TD>
</TR>
<TR>
<TD>35</TD>
<TD>CS_UTF7</TD>
</TR>
<TR>
<TD>38</TD>
<TD>CS_USRDEF2</TD>
</TR>
<TR>
<TD>39</TD>
<TD>CS_KOI8_R</TD>
</TR>
<TR>
<TD>40</TD>
<TD>CS_MAC_CYRILLIC</TD>
</TR>
<TR>
<TD>41</TD>
<TD>CS_CP_1251</TD>
</TR>
<TR>
<TD>42</TD>
<TD>CS_MAC_GREEK</TD>
</TR>
<TR>
<TD>43</TD>
<TD>CS_CP_1253</TD>
</TR>
<TR>
<TD>44</TD>
<TD>CS_CP_1250</TD>
</TR>
<TR>
<TD>45</TD>
<TD>CS_CP_1254</TD>
</TR>
<TR>
<TD>46</TD>
<TD>CS_MAC_TURKISH</TD>
</TR>
<TR>
<TD>53</TD>
<TD>INTL_CHAR_SET_MAX</TD>
</TR>
<TR>
<TD>254</TD>
<TD>CS_USER_DEFINED_ENCODING</TD>
</TR>
<TR>
<TD>255</TD>
<TD>CS_UNKNOWN</TD>
</TR>
<TR>
<TD>260</TD>
<TD>CS_SJIS</TD>
</TR>
<TR>
<TD>261</TD>
<TD>CS_EUCJP</TD>
</TR>
<TR>
<TD>263</TD>
<TD>CS_BIG5</TD>
</TR>
<TR>
<TD>264</TD>
<TD>CS_GB_8BIT</TD>
</TR>
<TR>
<TD>265</TD>
<TD>CS_CNS_8BIT</TD>
</TR>
<TR>
<TD>280</TD>
<TD>CS_CNS11643_1</TD>
</TR>
<TR>
<TD>281</TD>
<TD>CS_CNS11643_2</TD>
</TR>
<TR>
<TD>282</TD>
<TD>CS_JISX0208</TD>
</TR>
<TR>
<TD>284</TD>
<TD>CS_KSC5601</TD>
</TR>
<TR>
<TD>286</TD>
<TD>CS_JISX0212</TD>
</TR>
<TR>
<TD>287</TD>
<TD>CS_GB2312</TD>
</TR>
<TR>
<TD>290</TD>
<TD>CS_UTF8</TD>
</TR>
<TR>
<TD>292</TD>
<TD>CS_NPC</TD>
</TR>
<TR>
<TD>293</TD>
<TD>CS_X_BIG5</TD>
</TR>
<TR>
<TD>303</TD>
<TD>CS_GB2312_11</TD>
</TR>
<TR>
<TD>304</TD>
<TD>CS_JISX0208_11</TD>
</TR>
<TR>
<TD>305</TD>
<TD>CS_KSC5601_11</TD>
</TR>
<TR>
<TD>306</TD>
<TD>CS_CNS11643_1110</TD>
</TR>
<TR>
<TD>515</TD>
<TD>CS_JIS</TD>
</TR>
<TR>
<TD>525</TD>
<TD>CS_2022_KR</TD>
</TR>
<TR>
<TD>564</TD>
<TD>CS_IMAP4_UTF7</TD>
</TR>
<TR>
<TD>810</TD>
<TD>CS_UCS2</TD>
</TR>
<TR>
<TD>811</TD>
<TD>CS_UCS4</TD>
</TR>
<TR>
<TD>819</TD>
<TD>CS_UCS2_SWAP</TD>
</TR>
<TR>
<TD>1292</TD>
<TD>CS_KSC_8BIT</TD>
</TR>
<TR>
<TD>2308</TD>
<TD>CS_SJIS_AUTO</TD>
</TR>
<TR>
<TD>2309</TD>
<TD>CS_EUCJP_AUTO</TD>
</TR>
<TR>
<TD>2563</TD>
<TD>CS_JIS_AUTO</TD>
</TR>
</TABLE>
@author: relliott
<BR>@source: ftang
<BR>@last updated: Mar. 19, 1998
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1997, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

View File

@@ -1,100 +0,0 @@
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Rick Elliott">
<META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (Win95; I) [Netscape]">
<TITLE>Getting Started</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
<H2>
<A NAME="getting started"></A>2. Getting Started</H2>
Before you can begin using the Windows Front End Localization Kit, you
must install it and setup your working directories. This is a simple matter
of unzipping the compressed kit file(s) into the proper directories. Your
system must also meet certain requirements to run the tools needed to perform
the localization steps described below.
<P>
<HR WIDTH="50%">
<H3>
<A NAME="sysreqs"></A>System Requirements</H3>
There a few system requirements for the kit in the strictest sense; however,
your choice of tools will have their own set of requirements.&nbsp; The
most likely minimum configuration will be as follows:
<UL>
<LI>
100% IBM compatible PC</LI>
<LI>
Pentium<SUP><FONT SIZE=-1>&reg;</FONT></SUP> processor</LI>
<LI>
Microsoft<SUP><FONT SIZE=-1>&reg;</FONT></SUP> Windows NT 3.51 or 4.0 (localized
versions will help testing but aren't required)</LI>
<LI>
16 MB RAM</LI>
<LI>
30 MB available hard disk space</LI>
<LI>
A visual resource editor, such as those provided with Microsoft<SUP><FONT SIZE=-1>&reg;</FONT></SUP>
Visual C++, Borland<SUP><FONT SIZE=-1>&reg;</FONT></SUP> C++, etc.</LI>
<LI>
An active Internet connection and the ability to ftp (send and receive)
large files</LI>
<LI>
A Web browser (say, for example, Netscape Communicator ;-)</LI>
</UL>
<H3>
<HR WIDTH="50%"></H3>
<H3>
<A NAME="install"></A>Installing the Kit</H3>
It is recommended that you install the Windows Front End Localization Kit
in a brand new directory on your development machine. For example, you
can create a \Netscape_L10N_Kits directory on your hard drive. This becomes
your <B>kitRoot </B>directory.&nbsp; Place the L10n Kit's .ZIP file in
that directory and UNZIP it with the -d parameter:
<P>PKUNZIP -d <I>filename</I>
<UL><B>Example:&nbsp; <TT>PKUNZIP -d winfekit</TT></B></UL>
<HR WIDTH="50%">
<H3>
<A NAME="configtool"></A>Configuring Your Tools</H3>
If you intend to use the Netscape Translation Tools, please refer to the
<A HREF="../dogTool/dogToolUG.html">Translation Tools User Guide</A> for
instructions on setting up and using those tools.&nbsp; If you intend to
use a different localization tool, please refer to that tool's documentation
for set up and usage instructions.
<BR>&nbsp;
<CENTER><TABLE COLS=3 WIDTH="50%" >
<TR>
<TD>
<CENTER>[<A HREF="nomenclature.html">BACK</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="usingKit.html">NEXT</A>]</CENTER>
</TD>
<TD>
<CENTER>[<A HREF="toc.html">CONTENTS]</A></CENTER>
</TD>
</TR>
</TABLE></CENTER>
<CENTER></CENTER>
<CENTER><FONT FACE="Arial, Helvetica"><FONT SIZE=-2>1998, Copyright Netscape
Communications Corp. All Rights Reserved</FONT></FONT></CENTER>
</BODY>
</HTML>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 871 B

Some files were not shown because too many files have changed in this diff Show More