Commit Graph

101071 Commits

Author SHA1 Message Date
dbaron%fas.harvard.edu
f276a3b1e1 Fix leak of style contexts from vertical splitters. b=108642 r=hewitt sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@108821 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 21:41:47 +00:00
ian%hixie.ch
bb6b01bb43 changing the argument names from the cosesEditorXYZ form to the cosesEditor.x.y.z form. This will make them more consistent with how things work elsewhere in PLIF.
git-svn-id: svn://10.0.0.236/trunk@108819 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 20:15:45 +00:00
jfrancis%netscape.com
763808d87d fixes for ---
45888: center followed by heading 2: text doesn't take on heading 2 
102754: Lists with Headings applied do not create new list items when return entered
9835: Indent button behaves differently if <li> contains two <br>
r=fm; sr=kin


git-svn-id: svn://10.0.0.236/trunk@108818 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 19:35:11 +00:00
bernd.mielke%snafu.de
29ff86caf8 bug 99923 react correctly on style change reflows targetted at higher frames
r=karnaze sr=attinasi


git-svn-id: svn://10.0.0.236/trunk@108817 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 19:34:59 +00:00
mikep%oeone.com
9208ce26b4 Updating files for windows builds and adding windows makefiles.
git-svn-id: svn://10.0.0.236/trunk@108816 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 19:22:04 +00:00
jake%acutex.net
effa3a810e Add Windows makefile for calendar.
git-svn-id: svn://10.0.0.236/trunk@108815 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 19:15:20 +00:00
dinglis%qnx.com
ca4d7fe203 -not part of build-
clean up splash screen
removed PHIG env requirement.


git-svn-id: svn://10.0.0.236/trunk@108813 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 18:45:00 +00:00
nboyd%atg.com
503987f4fb Hi,
I'm working on a project which uses rhino. I wanted to have finer
control over class generation and saving so I've done some patching
and clean up on the current rhino tip.

The biggest change I've made is the replacement of ClassOutput with
ClassRepository that has the single method:

    public boolean storeClass(String className, byte[] classBytes,
                           boolean isTopLevel) throws IOException;

This interface allows any arbitary storage method, such as a
Hashtable/Map. In addition it also allows you to specify whether a
class should be loaded, via returning true or false.  You can still use
ClassOutput as I've coded an internal wrapper.

With this interface it has also been possible to strip out the file
saving code from Codegen and OptClassNameHelper.  The file
saving code is now an inner class FileClassRepository in Context. As
a consequence of this  I've stripped out some methods from ClassNameHelper.
The resulting code is much more cleaner then before hand and everything
still works as per usual.

Other small additions are:
  o  Annonymous functions are now named class$1 instead of class1
  o  get/setClassName added to ClassNameHelper exposed in Context.

My final thoughts are, since all methods in ClassNameHelper except reset()
are now exposed whould n't it be much more "cleaner" to simply to some
how work around to eliminate reset() and provide getClassNameHelper()
via Context?  You could then remove the numerous ClassNameHelper shadow
methods from Context.

Likewise, FileClassRepository could be made a public class very easily
and combined with the above result in a dozen or so less public methods in
Context.

Anyway, the changes can be found on http://www.cins.co.uk/rhino.zip

Hope it is of use to some

Kemal Bayram


git-svn-id: svn://10.0.0.236/trunk@108807 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 15:48:21 +00:00
ian%hixie.ch
90f855808b * Created service- and serviceInstance- specific constructors so that a single module can have distinct constructors depending on how it is invoked. These constructors are called serviceInit() and serviceInstanceInit(), and both chain to the existing init() constructor (so no change are required by this).
* Changed FileStrings so that it doesn't have to be updated every time the file string format changes. The format is now one line per piece of metadata, then a blank line, then the string data. If additional metadata is added later then this will automatically support it.
* Renamed the dataSource.strings service to dataSource.strings.customised, and renamed its get() method to getCustomisedString().
* Changed the semantics of dataSource.strings.customised so that it no longer looks for a default string if it can't find a customised one (and thus removed getDefaultString).
* Abstracted the Generic output module even more. It now consists of output.generic (a service instance with its own constructor) and dataSource.strings (a pure service), the latter of which is a wrapper around dataSource.strings.customised and dataSource.strings.defaults.
* Updated Coses to work with the new dataSource.strings insterface.
* Removed the test app DataSource::ConsoleStrings and DataSource::HTTPStrings files, since they were redundant with the default output files.
* Removed all the default strings in the CosesEditor and Login components since they are pretty pointless.
* Factored out the call to dump() in the GenericOutputs module.
* Changed setString in the MySQL string data source so that it will now add a blank string (it used to delete the string if it was blank, but that meant that it was not possible to customise strings away).
* Added a piece of metadata to strings: their version number.
* Updated the customised string data source stubs to mention the version data now stored with all strings
* Added a getAllStringVersions method to the customised strings data source which returns all the string names and their version numbers.
* Made the customised strings data source check the version number of every string in its database during setupInstall to make sure that they are all up to date, version-wise. If any are out of date, the user is notified.
* Added support for the new version column to the MySQL version of the customised string data source.
* Updated the increasingly misnamed CosesEditor to support the versioned strings stuff.
* Factored out some code in the CosesEditor.
* Added version information to all default strings. All default strings are now at version 1.
* Fixed a typo in a FileStrings dump statement.
* Fixed the calls to setProgress in the MySQL user and strings data sources and in the user field factory to use the correct syntax (a parsable dotted string instead of unlocalisable plain English).
* Updated the Generic output module's documentation to match what now happens.


git-svn-id: svn://10.0.0.236/trunk@108806 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 15:46:42 +00:00
justdave%syndicomm.com
fe649f9b61 Fix for bug 61634: explain what "Milestone URL" is on the editproducts page.
patch by Matthew Tuck <matty@chariot.net.au>
r= caillon, justdave


git-svn-id: svn://10.0.0.236/trunk@108805 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 15:46:27 +00:00
timeless%mac.com
38c8443ca8 Bugzilla Bug 110080 change !NS_SUCCEEDED(status) to NS_FAILED(status)
r=axel@pike.org sr=kin


git-svn-id: svn://10.0.0.236/trunk@108804 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 15:12:51 +00:00
kaie%netscape.com
408e7ac983 b=84947 Roland tries to fix bustage, which only occurs on Unix when XPrint is not used.
r=kaie


git-svn-id: svn://10.0.0.236/trunk@108801 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 11:13:22 +00:00
kaie%netscape.com
c2e93a3049 b=84947 New print dialog for Unix and OS/2
r=cls/rods/mkaply/pchen sr=roc+moz
Checking in for Roland.Mainz@informatik.med.uni-giessen.de


git-svn-id: svn://10.0.0.236/trunk@108800 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 10:00:44 +00:00
gerv%gerv.net
401144e72a Bug 104261 - incorrect template paths. r=myk, ddk.
git-svn-id: svn://10.0.0.236/trunk@108799 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 06:12:36 +00:00
jst%netscape.com
e3719284dd Comment change...
git-svn-id: svn://10.0.0.236/trunk@108798 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 06:12:20 +00:00
rpotts%netscape.com
19db6dc154 Removing dead, wrong, evil, dangerous code from the parser!!
git-svn-id: svn://10.0.0.236/trunk@108797 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 05:50:04 +00:00
roc+%cs.cmu.edu
5d13b4f0c5 View manage interface cleanup. Bug 73382. r=kmcclusk, sr=attinasi
git-svn-id: svn://10.0.0.236/trunk@108796 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 05:26:32 +00:00
jst%netscape.com
9b6e8f4262 Adding comments per brendan@mozilla.org's request in bug 111361.
git-svn-id: svn://10.0.0.236/trunk@108794 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 04:58:09 +00:00
rpotts%netscape.com
e318b93922 bug #102737 (r=harishd@netscape.com, sr=jst@netscape.com) one more time! only emit an empty HTML document when the content type is *not* text/plain
git-svn-id: svn://10.0.0.236/trunk@108793 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 04:37:39 +00:00
bhart00%yahoo.com
cf4c7a45a1 fix for bug 102349, r=ben/sr=brendan
git-svn-id: svn://10.0.0.236/trunk@108792 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 04:03:36 +00:00
seawood%netscape.com
5bd0d8e4eb Remove use of MOZ_MAKE_ENV. Builds should use |make -j3| instead of |MAKE='make -j3' make|
git-svn-id: svn://10.0.0.236/trunk@108791 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 04:02:28 +00:00
ben%netscape.com
d9a577721b backing out fix for 90080 as it is redundant and caused other bugs (always showing alert
when exiting prefs after viewing appearance, inability to close prefwindow sometimes
see bug 109561).


git-svn-id: svn://10.0.0.236/trunk@108790 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 03:35:32 +00:00
jst%netscape.com
96cfd386f4 Fixing bug 111361. nsGlobalNameStruct::mDOMClassInfoID is only valid on nsGlobalNameStruct's whose mType == eTypeClassConstructor. r=bbaetz@cs.mcgill.ca, sr=jband@netscape.com
git-svn-id: svn://10.0.0.236/trunk@108788 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 03:11:58 +00:00
hewitt%netscape.com
cf4c8d943e 97119 - Inconsistent textbox height in Pref - Advanced - Proxies, r=ben, sr=hyatt
git-svn-id: svn://10.0.0.236/trunk@108786 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 03:08:17 +00:00
bienvenu%netscape.com
e5b8777058 fix hpux bustage, only define delet eoperator when debugging mem useage
git-svn-id: svn://10.0.0.236/trunk@108785 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:56:49 +00:00
jst%netscape.com
2e9bbc66b0 Ahem...
git-svn-id: svn://10.0.0.236/trunk@108784 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:56:22 +00:00
ben%netscape.com
8dde5c3032 31154, 50517 - consistency in terminology in profile manager dialogs.
patch by henrik gemal, sr=ben@netscape.com, r=hewitt@netscape.com


git-svn-id: svn://10.0.0.236/trunk@108783 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:28:34 +00:00
wtc%netscape.com
f4db2e0924 Bugzilla bug 111293: the inclusion of "nssrenam.h" in this file breaks
the NSS build (on 64-bit AIX).  I am backing it out.


git-svn-id: svn://10.0.0.236/trunk@108782 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:27:57 +00:00
ben%netscape.com
64cec59dfb 42798 - consistency in debug pref panel titles. patch from henrik gemal, sr=ben@netscape.com
git-svn-id: svn://10.0.0.236/trunk@108781 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:27:05 +00:00
ben%netscape.com
1ed98f9c2b 77513 - remove some unnecessary text to save space.
r=hewitt, sr=ben, patch from andre dahlqvist


git-svn-id: svn://10.0.0.236/trunk@108780 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:26:10 +00:00
ben%netscape.com
ebcf9c86c6 fix for 73655 - remove reference to obsolete file.
r=rginda, sr=hewitt


git-svn-id: svn://10.0.0.236/trunk@108779 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 02:00:37 +00:00
seawood%netscape.com
424155a7cf Add ldap to DIRS
git-svn-id: svn://10.0.0.236/trunk@108778 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 01:37:17 +00:00
jpierre%netscape.com
45dfc06ce7 Bug 105271 - undo changes
git-svn-id: svn://10.0.0.236/trunk@108777 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 01:24:39 +00:00
cmanske%netscape.com
458091d67c Removed uneccessary hack to make toolbar buttons show checked state, b=101982, r=brade, sr=kin
git-svn-id: svn://10.0.0.236/trunk@108775 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 01:15:09 +00:00
naving%netscape.com
ca3380c989 111314 r=ducarroz sr=bienvenu. fix char* memory leaks.
git-svn-id: svn://10.0.0.236/trunk@108774 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:56:56 +00:00
darin%netscape.com
58b5b0421a fixing bustage
git-svn-id: svn://10.0.0.236/trunk@108773 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:56:08 +00:00
jpierre%netscape.com
87e28e9839 Fixes for OS/2 build
git-svn-id: svn://10.0.0.236/trunk@108772 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:46:48 +00:00
bienvenu%netscape.com
42de406b2c fix aix bustage
git-svn-id: svn://10.0.0.236/trunk@108771 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:37:07 +00:00
cmanske%netscape.com
680929647b Fixed layout problem with Link Properties dialog, r=110303, r=syd, sr=kin
git-svn-id: svn://10.0.0.236/trunk@108770 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:29:50 +00:00
darin%netscape.com
a66738bc2d fixes mac bustage
git-svn-id: svn://10.0.0.236/trunk@108769 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:28:30 +00:00
darin%netscape.com
ff7c1e82ca fixes mac bustage!!
git-svn-id: svn://10.0.0.236/trunk@108768 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:28:16 +00:00
cmanske%netscape.com
5e0b97fa2e Fixed getting HR settings from prefs and removed unused code, b=111273, r=syd, sr=kin
git-svn-id: svn://10.0.0.236/trunk@108767 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:26:49 +00:00
darin%netscape.com
605cc59292 fixes bug 111072 "nsIOService::ExtractUrlPart does not return correct HOST
(flag=IOService.url_Host)" r=cmanske,andreas.otte, sr=mscott


git-svn-id: svn://10.0.0.236/trunk@108766 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:19:47 +00:00
jpierre%netscape.com
6da005ee84 Fix for 95128 - OS/2 build issue
git-svn-id: svn://10.0.0.236/trunk@108765 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:18:08 +00:00
morse%netscape.com
61558cddcc bug 98575 speed up cookie manager, r=sgehani, sr=hewitt
git-svn-id: svn://10.0.0.236/trunk@108764 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:16:37 +00:00
bienvenu%netscape.com
fb92157584 fix hpux build bustage, use delete directly as per compiler error msg
git-svn-id: svn://10.0.0.236/trunk@108763 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:15:16 +00:00
jpierre%netscape.com
87b86ce8c9 Fix for 95128 - OS/2 build issue with DBM
git-svn-id: svn://10.0.0.236/trunk@108762 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:13:56 +00:00
naving%netscape.com
b2b2112364 111291 r=ducarroz sr=bienvenu. fix a bunch of char * memory leaks.
git-svn-id: svn://10.0.0.236/trunk@108761 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:13:39 +00:00
nhotta%netscape.com
f19738ca45 Adding Georgian charset GEOSTD8, contributed by giasher@wanex.net, bug 107533, r=ftang, rs=brendan.
git-svn-id: svn://10.0.0.236/trunk@108760 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:13:10 +00:00
cmanske%netscape.com
d1943d8d4a Add print Setup menuitem from global overlay (b=106374, r=syd, sr=kin); fix colorpicker on Composer toolbar (b=108681, r=timeless, sr=kin
git-svn-id: svn://10.0.0.236/trunk@108759 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-22 00:12:16 +00:00