Commit Graph

134424 Commits

Author SHA1 Message Date
aaronleventhal%moonset.net
e9feb9853d Bug 262578. No click to focus css scrollable areas like overflow:scroll, but you can still click there and scroll -- just no focus outline. r=mats, sr=roc 2004-10-19 02:24:27 +00:00
brendan%mozilla.org
1b5234b527 Home sp above right JSOP_IN operand to protect it from GC (264995, rs=shaver). 2004-10-19 01:45:44 +00:00
scott%scott-macgregor.org
40ce15f164 Bug #261199 --> add an account picker to the virtual folder list dialog so you can only choose
folders within the same account to search for a virtual folder.

sr=bienvenu
2004-10-19 01:36:58 +00:00
mrbkap%gmail.com
9af7509337 bug 264956: crash on embedded NUL character in start tag. r+sr=bzbarsky 2004-10-19 01:34:53 +00:00
bienvenu%nventure.com
1ac18e39d3 fix 239168 junk mail controls not run on inbox if inbox is also fcc folder, sr=mscott, also fix crash when getnewlist returns null 2004-10-19 01:16:26 +00:00
bzbarsky%mit.edu
3a3639f706 Put back missing QI. Bug 264987, patch by Bernard Alleysson
<balleysson@bigfoot.com>, r+sr=bzbarsky
2004-10-19 00:35:46 +00:00
brendan%mozilla.org
4eef061999 GC-lock the global scope polluter across InitContext and any other stuff that might do a last ditch GC (264577, r+sr=jst). 2004-10-18 22:45:48 +00:00
wchang0222%aol.com
86e78b60f4 Bugzilla bug 264324: we need to test for __s360x__ before __s360__ because
the s360x platform also defines __s360__.  The patch is contributed by
Wolfgang Rosenauer <mozilla@rosenauer.org>.  r=wtc.
Modified Files: _linux.cfg _linux.h
2004-10-18 22:40:45 +00:00
jst%mozilla.jstenback.com
7b8181ffb9 Fixing bug 264325. Patch from ginn.chen@sun.com. Home/End/PgUp/PgDn doesn't work in Input/TextArea/Composer/MailNews on Solaris Xserver. r=bryner@brianryner.com, sr=jst@mozilla.org, a=brendan@mozilla.org 2004-10-18 22:31:27 +00:00
cltbld
49287c937e save a copy of the dated dir that was copied to ftp server and remove any previously saved builds older than 7 days (granrose) 2004-10-18 21:57:15 +00:00
dveditz%cruzio.com
69dcb6e4b7 bug 264560: tighten up referrer requirements for XPI whitelist, r=biesi,sr=jst 2004-10-18 21:28:45 +00:00
mrbkap%gmail.com
123d30041c bug 264917: crash trying to view-source. sr=bzbarsky r=doronr 2004-10-18 20:57:24 +00:00
scott%scott-macgregor.org
066592a437 Bug #261199 --> make the virtual folder list dialog a bit wider by default so it looks right
with normal sized fonts.
2004-10-18 20:50:56 +00:00
scott%scott-macgregor.org
1ce2f85905 Bug #261199 --> make the folder list picker dialog be resizeable. 2004-10-18 20:42:58 +00:00
bzbarsky%mit.edu
1670c41ef2 Remove last vestiges of <plaintext>. Followup to bug 88987, r+sr=jst. 2004-10-18 19:31:01 +00:00
jst%mozilla.jstenback.com
8e43941de7 Fxing bug 249332. Don't use getters/setters for link.href in browser code. r=caillon@aillon.org, sr=dveditz@cruzio.com 2004-10-18 18:59:30 +00:00
timeless%mozdev.org
517a6178a0 Bug 264765 nsMsgAccount.cpp cleanup
patch by mikael@parknert.se r=neil sr=darin
2004-10-18 18:24:24 +00:00
scott%scott-macgregor.org
95f3d04424 Bug 261199 --> Pinstripe CSS changes to support the new virtual folder UI. 2004-10-18 17:59:12 +00:00
pedemont%us.ibm.com
61e3d51e6d Implement IID for nsJavaXPTCStub. Return associated Java object if returning nsJavaXPTCStub. 2004-10-18 17:04:29 +00:00
bienvenu%nventure.com
c975068538 fix 259603 new messages aren't analyzed for junk status if the user clicks away from the inbox before we've finished retrieving messages, sr=msctt 2004-10-18 14:51:29 +00:00
edburns%acm.org
63ed119bc3 This checkin removes bookmarks support from webclient by not
initializing the bookmarks engine.  Next step is to work with the
mozilla embedding people to see how I can fix this.  What I'd like to do
is *NOT* use the GRE, but rather use the mozilla suite installation.

SECTION: Changes

M dist/build.xml

- rename release to 2_0_a2b

- made the test run from the mozilla suite installation directory

- clean out the generated batch file or sh file.

M dist/webclient-dist.xml

- made the build.xml generate a batch file, that sets the proper env
  vars, then calls back to this build.xml and executes the
  run.test.browser target.

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

- don't pull in Bookmarks, since it's not in the GRE.

SECTION: Diffs

Index: dist/build.xml
===================================================================
RCS file: /cvsroot/mozilla/java/dist/build.xml,v
retrieving revision 1.4
diff -u -r1.4 build.xml
--- dist/build.xml	15 Oct 2004 16:39:07 -0000	1.4
+++ dist/build.xml	18 Oct 2004 14:03:36 -0000
@@ -30,7 +30,7 @@

   <property name="Name" value="webclient"/>
   <property name="name" value="webclient"/>
-  <property name="version" value="2_0_a2"/>
+  <property name="version" value="2_0_a2b"/>

 <!-- ************ Per user local properties ******************************* -->

@@ -136,9 +136,13 @@
     </zip>
   </target>

-  <target name="test.dist" depends="prepare,clean.dev.build">
-
+  <target name="unzip.dist" depends="prepare">
     <unzip dest="${moz.install.dir}" src="${dist.home}/${name}_${version}_${platform}.zip" />
+  </target>
+
+  <target name="test.dist" depends="prepare">
+
+    <antcall target="unzip.dist" />

     <ant inheritAll="false" dir="${moz.install.dir}"/>

@@ -149,6 +153,8 @@
   <target name="clean.test.dist" depends="props">

     <delete file="${moz.install.dir}/build.xml" />
+    <delete file="${moz.install.dir}/runwc.bat" />
+    <delete file="${moz.install.dir}/runwc.sh" />
     <delete file="${moz.install.dir}/components/${so.prefix}javadom.${so.extension}" />
     <delete file="${moz.install.dir}/${so.prefix}javadomjni.${so.extension}" />
     <delete file="${moz.install.dir}/${so.prefix}${name}.${so.extension}" />
Index: dist/webclient-dist.xml
===================================================================
RCS file: /cvsroot/mozilla/java/dist/webclient-dist.xml,v
retrieving revision 1.2
diff -u -r1.2 webclient-dist.xml
--- dist/webclient-dist.xml	15 Oct 2004 16:39:07 -0000	1.2
+++ dist/webclient-dist.xml	18 Oct 2004 14:03:36 -0000
@@ -3,6 +3,20 @@
   <property environment="myenv" />

   <target name="props">
+    <condition property="is.win32" value="true">
+      <and>
+        <os family="windows" />
+      </and>
+    </condition>
+
+    <condition property="is.unix" value="true">
+      <and>
+        <os family="unix" />
+      </and>
+    </condition>
+
+
+
     <condition property="PATH_SEP" value=";">
       <and>
         <os family="windows" />
@@ -55,7 +69,31 @@

   </target>

-  <target name="main" depends="props">
+  <target name="main" depends="main.win32,main.unix"/>
+
+  <target name="main.win32" depends="props" if="is.win32">
+
+    <delete file="${basedir}/runwc.bat" />
+    <echo file="${basedir}/runwc.bat">
+SET PATH=${java.libpath};%PATH%
+SET NSPR_LOG_MODULES=webclient:4,webclientstub:4
+SET NSPR_LOG_FILE=webclient.log
+ant run.test.browser
+    </echo>
+    <exec command=".\runwc.bat" newenvironment="true" />
+
+  </target>
+
+  <target name="main.unix" depends="props" if="is.unix">
+
+    <delete file="${basedir}/runwc.sh" />
+    <echo file="${basedir}/runwc.sh">
+    </echo>
+
+  </target>
+
+
+  <target name="run.test.browser" depends="props">

     <java newenvironment="true"
           classname="org.mozilla.webclient.test.TestBrowser"
Index: webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java
===================================================================
RCS file: /cvsroot/mozilla/java/webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java,v
retrieving revision 1.8
diff -u -r1.8 WrapperFactoryImpl.java
--- webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java	17 Jun 2004 21:27:55 -0000	1.8
+++ webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java	18 Oct 2004 14:03:37 -0000
@@ -316,7 +316,8 @@

 			((Service)WrapperFactoryImpl.this.profileManager).startup();
 			((Service)WrapperFactoryImpl.this.prefs).startup();
-			((Service)WrapperFactoryImpl.this.bookmarks).startup();
+			// PENDING(edburns): see Message-ID: <bbf0af98.0410171147.3109d532@posting.google.com> on n.p.m.java
+			// ((Service)WrapperFactoryImpl.this.bookmarks).startup();

 			WrapperFactoryImpl.this.nativeAppSetup(nativeWrapperFactory);
 			return null;
2004-10-18 14:08:22 +00:00
neil%parkwaycc.co.uk
a074347e6b Bug 258257 Fixing errors and cleanup p=giacomo.magnini@portalis.it r=me 2004-10-18 13:25:34 +00:00
silver%warwickcompsoc.co.uk
fc5fd7bcba Bug 233973 - Put logs in directories based on network and named by date.
ChatZilla only.
r=rginda
2004-10-18 13:22:20 +00:00
silver%warwickcompsoc.co.uk
2d368f8a5d Bug 263760 - Fix typo in IRC library's getChannel, and handle the getChannel call failing.
ChatZilla only.
r=rginda
2004-10-18 13:17:21 +00:00
ginn.chen%sun.com
8018de015e Bug 258244 View page info dialog size too small for https site
patch by leon.sha@sun.com r=neil sr=neil
2004-10-18 06:59:34 +00:00
scott%scott-macgregor.org
4b3037c41e Bug #261199 --> When creating a new virtual folder in Thunderbird, check to see if a folder exists with that name
already and alert the user if so.
2004-10-18 06:07:42 +00:00
darin%meer.net
9916bcaa22 fixing MingW bustage 2004-10-18 05:35:59 +00:00
dbaron%dbaron.org
e43d283795 Null-check view observer. b=264683 r+sr=roc 2004-10-18 02:41:56 +00:00
bzbarsky%mit.edu
302d8fa8ee Make sure to copy the cache key when cloning. Bug 263653, r+sr=darin 2004-10-18 00:41:29 +00:00
scott%scott-macgregor.org
11b5c4cfa0 back out an accidental checkin 2004-10-17 23:14:55 +00:00
Stefan.Borggraefe%gmx.de
ade74f70f0 Bug 262566: Print preview should hide the browser statusbar
r=timeless, sr=neil
2004-10-17 22:03:28 +00:00
bryner%brianryner.com
5cb5c5f356 Fixing a couple of MSVC build warnings. 2004-10-17 21:07:25 +00:00
darin%meer.net
ae50a08b3d fixes bug 256949 "browser not using the right credentials for proxy authentication" r=cneberg sr=bzbarsky 2004-10-17 20:19:47 +00:00
smontagu%smontagu.org
5180cb29d8 Add UI for changing direction of the document and input fields. Bug 85420, patch by Asaf Romano <bugs.mano@mail-central.com>, r=smontagu, sr=neil 2004-10-17 17:10:06 +00:00
cbiesinger%web.de
4bb5627180 264713 ensure that nsExternalAppHandler will always have a reference to the
helperappservice
r=bzbarsky sr=darin
2004-10-17 14:47:35 +00:00
igor%mir2.org
b7a9e90d94 Patch from Attila Szegedi <szegedia@freemail.hu> to adress bug 264637 :
Reducing InterpretedFunction footprint
2004-10-17 14:18:19 +00:00
jocuri%softhome.net
6976bb0f22 Patch for bug 261434: implement functionality to delete a user semi-properly (only works for users with no bugs/comments); patch by Ivan Todoroski <grnch@gmx.net>; r=justdave, a=justdave. 2004-10-17 11:07:39 +00:00
jwalden%mit.edu
d73ffa47db Porting branch fix for followup change after bug 250279 (Find Toolbar for View Source) 2004-10-17 10:49:07 +00:00
psychoticwolf%carolina.rr.com
18f9d95022 Fix Bug 264439. Unable to display themes/extensions for all platforms. 2004-10-17 06:47:47 +00:00
cls%seawood.org
dc79d1979e Clean up error messages.
Bug #260171 r=timeless
2004-10-17 06:19:40 +00:00
psychoticwolf%carolina.rr.com
3a3a1604a9 Fix DownloadCount Error reported in Bug 257229 Comment 9. DownloadCounts should be last 7 days, not one day 7 days ago. 2004-10-17 05:23:15 +00:00
psychoticwolf%carolina.rr.com
a1261bb589 Fix Bug 255296, User Manager Column Headings. Bug 255306, Show when last logged in. Bug 255308, Password Reset Notifications. Bug 255322, Ability to Create Accoutns Bug 255912, Author Disable should Hide their items. 2004-10-17 04:40:53 +00:00
cls%seawood.org
caaadd840e Remove .type & .size directives when building on win32. Fixes mingw binutils 2.15.91 bustage.
Bug #262422 r+sr=dmose
2004-10-17 04:29:52 +00:00
mrbkap%gmail.com
36c54fb6da bug 70918: view-source adds > to tags that are missing them. r=bzbarsky sr=dmose 2004-10-17 03:03:46 +00:00
dveditz%cruzio.com
cc085ad3d0 bug 263366: blocking executes() should return execution error code, r=peterv,sr=jst 2004-10-17 00:32:17 +00:00
scott%scott-macgregor.org
5ef04c3187 Bug #261199 --> Start landing Virtual Folder, aka Saved Search Folder UI for Thunderbird
sr=bienvenu
2004-10-16 22:11:54 +00:00
bryner%brianryner.com
b3e745449e Work around blur events not going to the system event group, just use the default event group for now. 2004-10-16 21:29:00 +00:00
scott%scott-macgregor.org
7432eaed6f Bug #261199 --> Start landing Virtual Folder, aka Saved Search Folder UI for Thunderbird
sr=bienvenu
2004-10-16 20:59:40 +00:00
dveditz%cruzio.com
fc3828e750 bug 259120: make "no" button be the Suspicious-auth dialog default, r=darin,sr=jst 2004-10-16 20:46:44 +00:00
neil%parkwaycc.co.uk
9b1f25b4a7 Bug 261517 Groupmarks should always respect background preference (regression from bug 72361) p=trev@gtchat.de r+sr=me 2004-10-16 20:26:22 +00:00