Commit Graph

139781 Commits

Author SHA1 Message Date
scott%scott-macgregor.org
0f2d2a5f6f Bug #286451 --> Package global\alerts into release builds 2005-03-17 18:39:37 +00:00
aaronleventhal%moonset.net
7ead8b720a Bug 284717. Events for DHTML menu events still not correct. r=pkw, sr=jst 2005-03-17 18:33:50 +00:00
jst%mozilla.jstenback.com
b56738ea6b Whitespace and formatting cleanup to get some sort of consistency into this code. 2005-03-17 18:00:33 +00:00
jst%mozilla.jstenback.com
2f48154ce1 Fixing the remaining part of bug 285438 for Firefox. Do the appropriate security checks when drag n' dropping into Firefox. r=ben@bengoodger.com, sr=dveditz@cruzio.com 2005-03-17 17:40:55 +00:00
lpsolit%gmail.com
b0782806ba Bug 278717: Can't create "create bug" template with multiple CCs if you use usemenuforusers - Patch by Marc Schumann <wurblzap@gmail.com> r=myk, a=myk 2005-03-17 15:50:45 +00:00
lpsolit%gmail.com
4a42ce13fc Bug 286311: print "Context-type..." is used instead of print $cgi->header() (cookies aren't sent in header) - Patch by Jacob Steenhagen <jake@bugzilla.org> r=LpSolit a=justdave 2005-03-17 15:14:58 +00:00
lpsolit%gmail.com
26e5dfb449 Bug 282384: Templatize the 'select classification' bit of editproducts - Patch by GavinS <bugzilla@chimpychompy.org> r=LpSolit, a=justdave 2005-03-17 14:47:06 +00:00
lpsolit%gmail.com
1a4183e8b4 Bug 280639: When creating bookmarkable template, it is called "this link" - Patch by Marc Schumann <wurblzap@gmail.com> r=LpSolit, a=justdave 2005-03-17 10:47:33 +00:00
ben%bengoodger.com
ab97f8a9b0 add nigel mcfarlane to credits 2005-03-17 09:41:37 +00:00
mkanat%kerio.com
272e180437 Bug 286501: Summarize time fails with "Can't bind reference" error
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
2005-03-17 06:56:16 +00:00
mkanat%kerio.com
045f1af5ad Bug 286392: String concatenation on postgres does not always work
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
2005-03-17 06:54:05 +00:00
mkanat%kerio.com
86df8816c2 Bug 285555: FlagType::match uses a HAVING clause that PostgreSQL does not support
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=myk, a=myk
2005-03-17 06:52:26 +00:00
mkanat%kerio.com
1a64c2ec98 Bug 284125: PostgreSQL cannot call SUM on a boolean (Boolean Charts)
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
2005-03-17 06:50:44 +00:00
justdave%bugzilla.org
802571fdb5 Bug 278823: Make the "Back to bug ####" text read "Go to bug ####" if you didn't just come from said bug.
Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org>
r=LpSolit, a=justdave
2005-03-17 06:13:15 +00:00
bzbarsky%mit.edu
d5c891f84d Fix comments to clearly distinguish services and components. Bug 285080,
r=biesi, sr=darin
2005-03-17 05:06:27 +00:00
dbaron%dbaron.org
9a7d3996ac Fix 'cursor' cascading issues with url()s. b=286388 r+sr=bzbarsky 2005-03-17 04:38:39 +00:00
gandalf%firefox.pl
390ecd2de4 Bug 286108: Build Thunderbird Locales from CVS (--enable-ui-locale); r=bsmedberg 2005-03-17 03:08:05 +00:00
scott%scott-macgregor.org
be5e1afc3f Bug #285878 -->show saved passwords doesn't work for users that have never set a master password
before.
2005-03-17 03:06:04 +00:00
gandalf%firefox.pl
610a1b94a0 Bug 286108: Build Thunderbird Locales from CVS (--enable-ui-locale). mail/locales/jar.mn part; r=bsmedberg 2005-03-17 02:32:28 +00:00
wtchang%redhat.com
bb6fcab386 Changed "it's" to "its". 2005-03-17 02:24:01 +00:00
edburns%acm.org
f84022a1d8 [11-StateSavingWindowId]
This change-bundle implements the FULL proposal for this, as well as
covering some corner-cases not in the initial proposal.

I have yet to get the last stamp of approval from the EG, but I'm
confident we'll get it, so I'm checking it in now.

r=visvan.

SECTION: API Changes

M jsf-api/src/javax/faces/application/StateManager.java

- reword the class description for readability

- saveSerializedView

  Deprecate this.  Make it no-longer abstract.  Provide default impl
  that returns null.

- saveView

  new method.  Replaces saveSerializedView.  Provide default impl that
  calls through to saveSerializedView().


- writeState that takes Object

  new method.  Provide default impl:

+     * <p>For backwards compatability with existing
+     * <code>StateManager</code> implementations, the default
+     * implementation of this method checks if the argument is an
+     * instance of <code>Object []</code> of length greater than or
+     * equal to two.  If so, it creates a <code>SerializedView</code>
+     * instance with the tree structure coming frome element zero and
+     * the component state coming from element one and calls through to
+     * {@link
+     * #writeState(javax.faces.context.FacesContext,javax.faces.application.StateManager.SerializedView}.
+     * If not, does nothing.</p>

- getTreeStructureToSave
- getComponentStateToSave
- restoreTreeStructure
- restoreComponentState

  Deprecate these.  Provide default impl that returns null or no-ops.

- SerializedView

  Deprecate this.

M jsf-api/src/javax/faces/application/StateManagerWrapper.java

- add new methods.

M jsf-api/src/javax/faces/render/ResponseStateManager.java

- writeState that takes Object

  new method.

+     * <p>For backwards compatability with existing
+     * <code>ResponseStateManager</code> implementations, the default
+     * implementation of this method checks if the argument is an
+     * instance of <code>SerializedView</code>.  If so, it calls through
+     * to {@link
+     * #writeState(javax.faces.context.FacesContext,javax.faces.application.StateManager.SerializedView}.
+     * If not, does nothing.</p>

- writeState that takes SerializedView

+     * @deprecated This method has been replaced by {@link
+     * #writeState(javax.faces.context.FacesContext,java.lang.Object)}.
+     * The default implementation of this method does nothing.
+     *

- getState

  new method.

- getTreeStructureToRestore
- getComponentStateToRestore

  Deprecate these.  Provide default impl that returns null or no-ops.

SECTION: RI Changes

M jsf-ri/src/com/sun/faces/application/StateManagerImpl.java

  Provide implementations for deprecated methods that will be called by
  the default implementations of the new methods in StateManager.

  - saveSerializedView(): no functional change since last version

M jsf-ri/src/com/sun/faces/application/ViewHandlerImpl.java

- move the responsibility for doing the redirect to createView() from
  renderView(), since it was only designed to catch the initial request.

M jsf-ri/src/com/sun/faces/lifecycle/RestoreViewPhase.java

- introduce private isPostback() method.

+     * @return true if the request method is POST or PUT, or the method
+     * is GET but there are query parameters, or the request is not an
+     * instance of HttpServletRequest.

  Only call restoreView() if isPostback(), otherwise call createView().

M jsf-ri/src/com/sun/faces/renderkit/ResponseStateManagerImpl.java

- modify getTreeStructureToRestore() so it knows the value of the hidden
  field is only a string, not a base64 encoded object tree, if the
  stateSavingMethod is server.

- modify writeState() to not encode the view if we're saving state in
  the server, just write out the id.

- remove unused replaceMarkers method.

M jsf-ri/src/com/sun/faces/taglib/jsf_core/ViewTag.java

- leverage new APIs and rely on impl to delegate to deprecated APIs for
  backwards compatability.

M jsf-ri/systest/build-tests.xml
M jsf-ri/systest/src/com/sun/faces/htmlunit/AbstractTestCase.java
M jsf-ri/systest/src/com/sun/faces/jsptest/JspIntegrationTestCase.java
M jsf-ri/test/com/sun/faces/FacesTestCaseService.java
M jsf-ri/test/com/sun/faces/lifecycle/TestApplyRequestValuesPhase.java
M jsf-ri/test/com/sun/faces/lifecycle/TestLifecycleImpl_initial.java
M jsf-ri/test/com/sun/faces/lifecycle/TestPhase.java
M jsf-ri/test/com/sun/faces/lifecycle/TestProcessValidationsPhase.java
M jsf-ri/test/com/sun/faces/lifecycle/TestRestoreViewPhase.java
M jsf-ri/web/test/RenderResponse_correct
M jsf-ri/web/test/TestLifecycleImpl_initial_correct
M jsf-ri/web/test/TestViewHandlerImpl_correct

- Oof, mondo changes here.
2005-03-17 01:56:55 +00:00
gandalf%firefox.pl
63f11b42c7 Bug 286108: Build Thunderbird Locales from CVS (--enable-ui-locale); r=bsmedberg 2005-03-17 01:51:31 +00:00
neil.williams%sun.com
d5d19c56f7 Bug 285208 Fixes ext processing bug introduced by previous patch.
r=nelson
2005-03-17 01:43:47 +00:00
gandalf%firefox.pl
b8059a09a6 Bug 283343: GFX::nsBlender - wrong order of parameters may cause wrong color depth calculation; p=sergei_d@fi.tartu.ee r/sr=roc 2005-03-17 01:39:51 +00:00
gerv%gerv.net
efb51161de Bug 179514 - make CVS bug lists use consistent format for date and time. Patch by gerv; r,a=myk. 2005-03-17 00:01:28 +00:00
mkanat%kerio.com
c46bfbe2a3 Bug 174295: ANSI SQL requires all columns in SELECT to be in GROUP BY, unless they are in "aggregate" functions
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=joel, a=myk
2005-03-16 23:50:59 +00:00
scott%scott-macgregor.org
49e54d30d2 Bug #286317 --> SMTP change impossible without description
because ClearPref is throwing an exception for pref values that have no value.

sr=neil
2005-03-16 23:33:42 +00:00
wtchang%redhat.com
54041fe6ee Bugzilla Bug 238563: added a comment that Nelson suggested in code review. 2005-03-16 23:21:11 +00:00
scott%scott-macgregor.org
5a4d81d93f Bug#286468 --> "Change Action" dialog application name fields have height=0 2005-03-16 23:02:34 +00:00
scott%scott-macgregor.org
290343e6a9 Bug #282506 --> Inline spell check words go blank while message is being sent
because the text frame is hiding selection text for disabled text nodes. We should never hide
the selection if it is of type spellcheck.

sr=dbaron
2005-03-16 22:58:10 +00:00
wtchang%redhat.com
ddab8fa00e Bugzilla Bug 286302: made PK11_CreateSymKey static and renamed it
pk11_CreateSymKey.  r=nelsonb.
Modified Files: pk11priv.h pk11skey.c
2005-03-16 22:40:35 +00:00
scott%scott-macgregor.org
08b2ec1146 Bug #284144 --> add options and disk space UI to the advanced options panel 2005-03-16 22:23:33 +00:00
bugzilla%arlen.demon.co.uk
d3b4482682 Bug 286126 help-glossary.rdf: 2 SSL Entries
p=opitz.michael@inode.at r=me
2005-03-16 22:02:36 +00:00
jake%bugzilla.org
d6d26c825b Backing out the fix for bug 135812 as it causes the mail params to be deleted on new installs. 2005-03-16 21:58:56 +00:00
wtchang%redhat.com
4dc846b1fe Bugzilla Bug 286313: code cleanup: use PORT_New and PORT_ZNew to allocate
structures. r=nelsonb.
2005-03-16 21:57:47 +00:00
mkaply%us.ibm.com
b06ca2bb36 #285849
r/sr=mkaply
From Peter Weilbacher - OS/2 does different stuff with system resolution
2005-03-16 21:57:10 +00:00
mkaply%us.ibm.com
f199025eb7 #285851
r/sr=mkaply
From Peter Weilbacher - OS/2 needs to use Windows style and title for preferences
2005-03-16 21:52:44 +00:00
darin%meer.net
a879f0390b fixes bug 282441 "map tiles sometimes fail to load when pipelining is enabled" r=biesi sr=bz 2005-03-16 20:50:37 +00:00
mozilla.mano%sent.com
b37731abde Bug 221824 - Winstripe should be rtl compatible, tabbox fixes. r=bsmedberg 2005-03-16 20:46:13 +00:00
timeless%mozdev.org
778da63497 Bug 286185 nsFileSpecUnix::Rename leaks on failure
patch by ajschult@verizon.net r=darin sr=darin
2005-03-16 20:07:34 +00:00
timeless%mozdev.org
7f814d78b0 Bug 283840 "Select User Profile" dialog is broken after using "Custom" in installer
patch by ajschult@verizon.net r=bsmedberg sr=dveditz
2005-03-16 20:05:46 +00:00
wtchang%redhat.com
e112b06ae2 Bugzilla Bug 286318: performance optimization: save the result of
PK11_SESSION_LOCK in a local variable and reuse the result. r=nelsonb.
Modified Files: pkcs11.c pkcs11u.c
2005-03-16 19:24:45 +00:00
wtchang%redhat.com
7c8a3f8874 Bugzilla Bug 286313: pk11_getKeyFromList can call PORT_Alloc instead of
PORT_ZAlloc.  PK11_CreateSymKey should set the data.type member. r=jpierre
2005-03-16 19:10:49 +00:00
wtchang%redhat.com
733584cdd9 Bugzilla Bug 286298: comment formatting changes only.
Modified Files: pkcs11i.h pkcs11u.c
2005-03-16 19:02:04 +00:00
wtchang%redhat.com
08af568746 Bugzilla Bug 286298: removed the PKCS11_STATIC_ATTRIBUTES and
PKCS11_REF_COUNT_ATTRIBUTES macros, supporting only one of the three
attribute allocation strategies (static allocation). r=jpierre.
Modified Files: pkcs11i.h pkcs11u.c
2005-03-16 18:48:34 +00:00
mvl%exedo.nl
6c1e322eba Give this the right classname. Just because it looks better. r=vlad 2005-03-16 18:44:00 +00:00
pedemont%us.ibm.com
a5c7019ff4 Should be using variant.val.p rather than variant.ptr for some instances 2005-03-16 18:32:18 +00:00
bsmedberg%covad.net
0aad815a40 Bug 271929 - Remove purge-old-headers.pl logic and simple rm -rf dist/include at the start of the build process. Patch by Hans-Andreas Engel <Hans-A.Engel@unibas.ch> r=me 2005-03-16 18:21:16 +00:00
scott%scott-macgregor.org
268b434ed4 package up global\alerts so we get the alert notifications css file 2005-03-16 18:19:32 +00:00
doronr%us.ibm.com
4a9b5cc118 XForms bug 285207 - Need to handle inline schema. r=cartman/smaug 2005-03-16 18:09:40 +00:00