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

130855 Коммитов

Автор SHA1 Сообщение Дата
kestes%walrus.com a7e650a21b minor change to improve consistancy and add bug numbers to some comments. 2004-06-15 01:18:18 +00:00
kestes%walrus.com 8d48c74e1c add support for the perforce p4db web page changeView.cgi 2004-06-15 01:16:55 +00:00
bryner%brianryner.com 8150854a1a Make sure the pref size is at least as large as the min size for leaf boxes, just like we do for container boxes. Bug 246706, r+sr=dbaron. 2004-06-15 01:10:09 +00:00
scott%scott-macgregor.org ea9e3a935d Pre-binding support for mozilla thunderbird 2004-06-15 00:58:36 +00:00
christophe.ravel.bugs%sun.com 28f7f0f697 238319: Sun packages changes. 2004-06-14 23:24:58 +00:00
dac%x.cx 411065e866 Bunch of updates from Proofpoint. See ChangeLog 2004-06-14 22:20:26 +00:00
neil%parkwaycc.co.uk 7a5736e42a Bug 78672 #ifdef DEBUG some printfs p=gautheri@noos.fr r=me sr=alecf 2004-06-14 21:50:03 +00:00
cbiesinger%web.de 3ae8f7754e bug 232488 importMsgs.properties cleanup (remove unused strings + fix capitalization)
patch by Andreas Kunz <durbacher@gmx.de> r=neil sr=bienvenu
2004-06-14 19:41:26 +00:00
locka%iol.ie 9bb5934aff Add implementation for IHtmlElementCollection methods tags() & item() when there is more than one element with the same id. Checkin for atremon. b=236894 r=adamlock sr=jst 2004-06-14 19:26:47 +00:00
jag%tty.nl 2fccb07c2c Bug 105892: 'Resolving host xyz.foo.bar' should be 'Looking up xyz.foo.bar'. Patch by Tim Meader <tmeader@gmail.com>, r=darin, sr=jag 2004-06-14 19:05:01 +00:00
locka%iol.ie 4967cd761d Replace reinterpret_cast with static_cast for proper pointer casting. Checkin for atremon, b=236812 r=adamlock sr=jst 2004-06-14 17:56:07 +00:00
mkaply%us.ibm.com 9281405553 #200373
OS/2 only - backout workaround so that if this problem happens, we see it more
2004-06-14 17:53:46 +00:00
bienvenu%nventure.com d13b8cf245 fix defer account status on new pop3 accounts if user choses not to use global inbox, 243837, r/sr=mscott 2004-06-14 17:35:16 +00:00
sergei_d%fi.tartu.ee 71a0b1be66 Bug 246666. Normalize text caret blink rate. r=thesuckiestemail@yahoo.se. BeOS port-only change 2004-06-14 17:31:43 +00:00
sergei_d%fi.tartu.ee 39c73115ad Bug 246575 Drawing surface leak fix. r=thesuckiestemail@yahoo.se. No sr required - BeOS port-only change 2004-06-14 17:09:32 +00:00
mkaply%us.ibm.com e11fb1858e #244610
r=pedemont, sr=blizzard (platform specific), a=mkaply
OS/2 only - fully qualify turbo daemon before trying to launch
2004-06-14 16:45:03 +00:00
mkaply%us.ibm.com 3fea0ab34d #206716
r=brade, sr=kin
use String not CString APIs for some composer APIs
2004-06-14 16:35:58 +00:00
edburns%acm.org a50968cb0e This checkin makes DocumentLoadListener be fully functional for the
file:/// and LoadFromStream cases.  There were some problems:

1. RandomHTMLInputStream was never returning -1 from available, even
   when there was no more data to be read.

2. the available ivars in InputStreamShim were PRUint32, and needed to
   be PRInt32 to accomodate the -1.

3. InputStreamShim wasn't looking for the -1 from java, and it was
   incorrectly returning NS_ERROR_NOT_AVAILABLE in that case, when it
   should have been returning NS_OK if there was more data for Mozilla.

4. The testcase had a deadlock: it tried to remove the
   DocumentLoadListener from the DocumentLoadListener callback.  I had
   to move this outside of the listener callback.

M src_moz/InputStreamShim.cpp
M src_moz/InputStreamShim.h

- make available be a signed int.

- correctly handle the case when java says, "no more data available".

M test/automated/src/classes/org/mozilla/webclient/NavigationTest.java

- avoid deadlock by moving the call to removeDocumentLoadListener()
   outside of the listener itself.

M test/automated/src/classes/org/mozilla/webclient/RandomHTMLInputStream.java

- make sure to return -1 from available() when we have no more data.
2004-06-14 15:34:42 +00:00
amardare%qnx.com 1583d3557a Changes for qnx ( photon ) platform only. They should not affect building/runtime other platforms.
This fixes the problem with prefrences window and other configuration windows not being sized
properly to fit the whole content. The "size" of the system fonts ( in mozilla coordinates ) was wrong.
2004-06-14 14:47:27 +00:00
amardare%qnx.com 75eee7ea7b Changes for qnx ( photon ) platform only. They should not affect building/runtime other platforms.
Enable the tooltip window in embedding.
2004-06-14 14:44:42 +00:00
mostafah%oeone.com b528077e06 Updated translation 2004-06-14 13:10:18 +00:00
bsmedberg%covad.net 6d282ef4ce Bug 244009 - implement profile preferences for EM (backend work for directoryservice preferences list) Migrating patch from aviary1.0 branch, r=me sr=darin 2004-06-14 05:55:13 +00:00
Stefan.Borggraefe%gmx.de 7a136d5f49 Changes all checkboxes in MailNews so they don't change state if the empty area right of their text is clicked (Bug 244413).
r=neil, sr=mscott
2004-06-14 05:40:21 +00:00
edburns%acm.org 52b83f9d98 M classes_spec/org/mozilla/webclient/impl/wrapper_native/EventRegistrationImpl.java
- Major enhancement of this class.  Framework for all
  WebclientEventListener subclasses now in place.  This includes a
  separate Theard event queue to send events from mozilla to java so
  that the listener can call back into webclient without fear of
  deadlock.  I had to use semaphores!  Thank you Michael Faiman
  <http://www.cs.uiuc.edu/people/faculty/faiman2.html> who taught my
  operating systems class where I learned semaphores.

M classes_spec/org/mozilla/webclient/impl/wrapper_native/NativeEventThread.java

- use notifyAll() instead of notify, for best practice.

M src_moz/EmbedProgress.cpp

- flesh out rest of DocumentLoadListener code.

M test/automated/src/classes/org/mozilla/webclient/NavigationTest.java

- comment out code because I can't seem to get the END_DOCUMENT_LOAD
  event to come from mozilla on the LoadFromStream case.  Top men are
  working on it.

Next step is to uncomment the rest of NavigationTest.
2004-06-14 01:44:33 +00:00
scott%scott-macgregor.org e4885e8f40 Additional fix for Bug #246606 2004-06-14 00:37:26 +00:00
bsmedberg%covad.net 0c487e99a0 Landing semi-single-profile on the trunk (merge from the AVIARY_1_0_20040515_BRANCH). 2004-06-14 00:17:48 +00:00
scott%scott-macgregor.org 5d8f0f4a8c Bug #246606
Set some keys that will make us show more info in add/remove programs.
2004-06-14 00:15:08 +00:00
ben%bengoodger.com 5e58715a59 246596 - crash in migration wizard trying to migrate non-existent Seamonkey profile 2004-06-13 21:34:30 +00:00
sergei_d%fi.tartu.ee 0811027962 "Bug 232520, nsImageBeOS needs cleanup. Optimized DrawTile, DrawToImage, implemented partial image update, crash-leak in DrawToImage removed. r=thesuckiestemail@yahoo.se" 2004-06-13 18:27:13 +00:00
rlk%trfenv.com e59f21faec Bug 246512 - H1 { text-align: left } should be removed from content_style.css. r=neil@parkwaycc.co.uk 2004-06-13 14:04:15 +00:00
scott%scott-macgregor.org cc046f4b28 Try to fix some Thunderbird build problems on certain OS X build machines. CVS: ---------------------------------------------------------------------- 2004-06-13 04:52:25 +00:00
cbiesinger%web.de 4b89aaa53e Bug 118438 Gopher 'information' tag not supported.
patch by Jan Ruzicka <jan.ruzicka@comcast.net> r=biesi sr=darin
2004-06-12 19:49:40 +00:00
bryner%brianryner.com 8a94f429b0 unlink last-built when we want to update its timestamp, otherwise it never gets updated on os x 2004-06-12 06:48:58 +00:00
edburns%acm.org 7573cd136f This checkin enables the StartDocumentLoadEvent. Now adding the rest of
the DocumentLoadListener events will be trivial.

Next step: flesh out the rest of the DocumentLoadListener events.
Modify NavigationTest so that it does its selection checking inside the
listeners.  This will probably require creating a Thread, managed by
EventRegistrationImpl, that is used to process callbacks from mozilla
into Java, so that we don't get deadlock.

M classes_spec/org/mozilla/webclient/impl/wrapper_native/EventRegistrationImpl.java

- remove all dependencies on NativeEventThread

- introduce dependency on BrowserControlCanvas (needed for future
  MouseListener) work.

- {add,remove}DocumentLoadListener() now just a matter of
  adding/removing to List.

- add nativeEventOccurred() method, called from native code

M classes_spec/org/mozilla/webclient/impl/wrapper_native/NativeEventThread.java

- remove dependency on BrowserControlCanvas

- removed nativeEventOccurred

M src_moz/EmbedProgress.cpp

- delete the global ref in the dtor.

- create the global ref in SetEventRegistration().

- call back to Java on startDocumentLoad.

M src_moz/NativeBrowserControl.cpp

- initialize our string constants.

M src_share/jni_util.cpp
M src_share/jni_util.h

- alter the signature of util_SendEventToJava

-void util_SendEventToJava(JNIEnv *yourEnv, jobject nativeEventThread,
-                          jobject webclientEventListener,
+void util_SendEventToJava(JNIEnv *yourEnv, jobject eventRegistrationImpl,
                           jstring eventListenerClassName,
                           jlong eventType, jobject eventData)

M test/automated/src/classes/org/mozilla/webclient/NavigationTest.java

- show that the DocumentLoadListener gets called.
2004-06-12 05:46:48 +00:00
scott%scott-macgregor.org dc4773ca23 Bug #245552 --> default character encoding option for outgoing mail comes up empty 2004-06-12 05:07:45 +00:00
scott%scott-macgregor.org d5d9693ba7 Bug #246169 --> Add Support for importing mail from Eudora to Thunderbird on OS X.
Effects thunderbird only
2004-06-12 04:26:14 +00:00
scott%scott-macgregor.org 9a0a881cc8 Bug #242672 --> Help menu should conform to Apple Human Interface Guidelines
Patch by Jon Baumgartner
2004-06-12 03:52:10 +00:00
brendan%mozilla.org 1a78cd61c8 Give JSObjectOps.setRequiredSlot a JSBool return value so it can propagate errors (part of 245890, r=shaver). 2004-06-12 01:50:09 +00:00
scott%scott-macgregor.org 01eeea5e74 Bug #245483 --> Hook up print preview support for Thunderbird 2004-06-12 00:31:28 +00:00
scott%scott-macgregor.org ebf054acd7 Bug #246414 --> Drafts & Templates don't remember background and font colors 2004-06-11 22:57:42 +00:00
wchang0222%aol.com 8cb927d373 Bugzilla bug 233320: pk11_OpenKeyDB should not return SECFailure (not a
CK_RV value).  Removed two unnecessary assignment statements.  r=relyea.
2004-06-11 22:25:13 +00:00
pinkerton%aol.net b4fc97d9c0 add click-hold shared history to back/fwd buttons (bug 163274) 2004-06-11 22:14:20 +00:00
pedemont%us.ibm.com 88ac5ebad1 Bug 245742 - Crash/memory corruption after using NTLM on Mac. r/sr=darin 2004-06-11 22:06:16 +00:00
cbiesinger%web.de be447811ac fixing more bustage 2004-06-11 19:37:08 +00:00
cbiesinger%web.de b9fb14c9a4 oops. missed a spot 2004-06-11 19:13:59 +00:00
cbiesinger%web.de 3bbce0ba97 fixing more bustage 2004-06-11 19:11:45 +00:00
cbiesinger%web.de 5bc23f15c2 ...fixing firefox bustage... 2004-06-11 18:25:05 +00:00
jst%mozilla.jstenback.com 691da3d166 No need for result here any more. Continuation fix for the bustage caused by the initial checkin for bug 245619. 2004-06-11 17:45:24 +00:00
m_kato%ga2.so-net.ne.jp d566078278 fix bugstage, bug=245619, r/sr=brendan 2004-06-11 17:14:43 +00:00
jocuri%softhome.net b86634bab0 Patch for bug 245976: fix software error caused by taint issue when trying to add a milestone; patch by Byron Jones (glob) <bugzilla@glob.com.au>; r=vladd, a=justdave. 2004-06-11 17:03:50 +00:00