Commit Graph

654 Commits

Author SHA1 Message Date
Trevor Saunders
54792f2e4d bug 820182 - remove nsISupportsArray::ElementAt() uses r=ehsan 2012-12-11 11:16:42 -05:00
Josh Matthews
b36633903e Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith 2012-12-06 22:05:27 -05:00
Ed Morley
6800e12c21 Backout d9336f8c0f6c, 761ff8b47a4e, 072da0be4236, ee2822d2eab9, 38cd815da29a, a80ec6b90878 & 9e9281ce1b63 (bug 769288) on suspicion of causing bug 821701 on a CLOSED TREE 2012-12-14 15:07:48 +00:00
Josh Matthews
0f271f8e13 Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith 2012-12-06 22:05:27 -05:00
Ehsan Akhgari
1dcb5ba1bb Backed out 7 changesets (bug 769288) because of leaks
Backed out changeset b2fb475b6e4e (bug 769288)
Backed out changeset 912331d0c2fd (bug 769288)
Backed out changeset 6d8d78bd56a9 (bug 769288)
Backed out changeset e75cd1e1fca3 (bug 769288)
Backed out changeset e10c24f10bd2 (bug 769288)
Backed out changeset 7b0fdedb4fa9 (bug 769288)
Backed out changeset 42b468942a84 (bug 769288)
2012-12-12 00:05:49 -05:00
Josh Matthews
92dd4d5edc Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith 2012-12-06 22:05:27 -05:00
Josh Matthews
94a15456b1 Backed out changeset fca88031cd47 (bug 769288) 2012-12-08 00:21:58 -05:00
Josh Matthews
b5f51a281f Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith 2012-12-06 22:05:27 -05:00
Josh Matthews
753a9e6a62 Backed out changeset 3008e6e5476f (bug 769288) 2012-12-07 19:45:57 -05:00
Josh Matthews
1aa569d5fd Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith 2012-12-07 19:09:41 -05:00
Brian Smith
5f9db1687c Bug 802378: Make PSM coding patterns more consistent, and more consistent with Mozilla Coding Style, r=keeler
--HG--
extra : rebase_source : 8b7ebf227a490cfde7376a61e2952a07a900e2d2
2012-10-17 13:48:36 -07:00
Patrick McManus
aef514efbd bug 803267 - speculative backout of 802378 to test crash stats r=backout 2012-10-23 16:42:19 -04:00
Daniel Holbert
d482396014 Bug 803236: Reorder nsSTSHostEntry constructors' init lists to fix build warning, and mark that directory & its sibling 'pki' as warning-free. r=bsmith 2012-10-18 15:42:10 -07:00
Brian Smith
80f3ffb006 Bug 802378: Make PSM coding patterns more consistent, and more consistent with Mozilla Coding Style, r=keeler
--HG--
extra : rebase_source : 46fde9231dd69356221c0c5a7042a7b2d3dd0cf6
2012-10-17 13:48:36 -07:00
Ehsan Akhgari
61482c1186 Bug 722978 - Port the certificate exception UI to the new per-window private browsing API; r=jdm
--HG--
extra : rebase_source : a49d0c630a170a950dd830ad484e084a29f8b51f
2012-10-12 23:38:19 -04:00
Ehsan Akhgari
e368dc9c85 Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00
Marek Stepien
6101150c5e Bug 636245 - Allow localizers to change the Device Manager window size. r=kaie 2012-08-15 21:00:50 -04:00
Aryeh Gregor
ebbeed4a32 Bug 777292 - security/manager/: Fix incorrect conversions to nsresult; r=kaie 2012-07-30 12:24:36 +03:00
Mike Hommey
70d7c821af Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Devdatta Akhawe
7aa2770d79 Bug 767676 - Implement Security UI Telemetry. r=honzab,bsmith,felipc,dtownsend 2012-08-02 18:51:17 -07:00
Aryeh Gregor
d0ad5a7d0c Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
Ehsan Akhgari
f8b5cb234b Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (security parts); blanket-r=bzbarsky 2012-07-19 00:37:09 -04:00
Brian Smith
a53de0d5cc Bug 758314 - Allow end-user to override error when MD5 cert is encountered, r=kaie
--HG--
rename : mobile/android/base/resources/layout-land-v14/tabs_panel_toolbar_menu.xml => mobile/android/base/resources/layout-land-v14/tabs_panel_toolbar.xml
extra : rebase_source : ed78fedd30fcd329a24de652a6d906e78759dc7c
2012-07-10 19:42:50 -07:00
Gervase Markham
6b6c8775e0 Bug 759095 - upgrade license to MPL 2, and other licensing cleanups. 2012-05-31 10:33:35 +01:00
Gervase Markham
68d38d677f Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
--HG--
extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
2012-05-29 16:52:43 +01:00
Benjamin Smedberg
dee00f8b91 Bug 675702: Call nsICertVerificationListener on the main thread, rev. 1, r=bsmith, r=mayhemer 2011-11-02 21:06:51 -07:00
Brian Smith
a42b4e1ae9 Bug 675221: Remove XPCOM Proxies from PSM UI prompts, r=kaie 2011-11-02 21:02:48 -07:00
Ehsan Akhgari
92064e6d3f Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
2011-10-17 10:59:28 -04:00
Michael Wu
d2b70213ac Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
2011-09-28 23:19:26 -07:00
flod
8af0aed670 Bug 649266 - Certificate window is broken with long text labels. r=kaie 2011-08-18 11:56:34 +02:00
Kai Engert
2f2f94e0c9 Bug 442150 - "Backup all" button not enabled after cert import, r=johnath/gavin 2011-07-20 17:04:49 +02:00
Ms2ger
8c78d3f478 Bug 670235 - Remove nsIDOMWindowInternal; r=sicking 2011-07-15 12:31:34 +02:00
Neil Rashbrook
f6c4f47b40 Bug 660529 Remove useless use of PromiseFlatString r=kaie 2011-07-04 22:06:24 +01:00
Ed Morley
8aaddd0334 Bug 659621 - Remove EXTRA_DSO_LIBS, EXTRA_DSO_LDOPTS, OS_LIBS from makefiles containing LIBXUL_LIBRARY = 1, now that libxul is always built; r=ted 2011-06-12 03:49:00 -04:00
Ian Neal
1a8c41e26f Bug 260364 - Fixup radiogroups to use new .value functionality of radio.xml pki patch r=kaie 2011-06-10 16:56:17 +01:00
Ed Morley
26fe71a427 Bug 648545 - Remove outdated instances of META_COMPONENT from mozilla-central; r=kaie 2011-04-29 12:36:17 +02:00
Tyler Colgan
1c084db66c Bug 507387 - Update license blocks to use "Mozilla Foundation" instead of "Mozilla Corporation"; r=gerv f=sgautherie.bz
DONTBUILD
2011-03-10 21:17:00 -08:00
Guillermo López
23de54cbc1 Bug 488037: certManager entities should use the .label/.accesskey convention, r=johnath, a=bsmedberg
--HG--
extra : rebase_source : d817fe39ff9df258fa6824b0fdbee0e10947983c
2010-10-29 16:54:01 -04:00
Saint Wesonga
54ca873537 Bug 413363 - Dialog for importing your certificates in Certificate Manager has wrong title. r=kaie 2010-08-18 09:00:05 +02:00
glen beasley
9d932051e4 Bug 511320 - When FIPS mode change fails, inform the user. r=kaie 2010-07-18 22:27:23 +02:00
Marek Stępień
7c24f6e03d Bug 527713 - Use nsIPromptService's alert instead of window.alert. r=kaie 2010-07-18 16:41:54 +02:00
Benjamin Smedberg
29e089defb Merge mozilla-central into the branch for bug 568691, including fixup of the new jetpack binary module. 2010-06-25 19:41:09 -04:00
Benjamin Smedberg
0df0345c66 Merge mozilla-central into the "branch" for but 568691. The omnijar XPT/component/chrome registration was removed during this merge, and will be re-added to the component manager shortly.
--HG--
rename : content/base/public/nsIChromeRegistry.idl => chrome/public/nsIChromeRegistry.idl
2010-06-21 11:41:42 -04:00
Benjamin Smedberg
a7e67d32ad Bug 568691 part B - mechanical changes to in-tree binary modules needed to get them building and registering correctly. After this patch, xpcshell appears to work. 2010-06-10 14:11:40 -04:00
Ehsan Akhgari
b2361e058e Bug 523742 - Disable the Get Certificate button on the cert exception dialog when the cert is being retrieved in the background; r=johnath 2010-06-03 21:31:08 -04:00
Jason Orendorff
578fc3cdd3 Bug 533592, part 1 - Remove uses of and support for xpcnativewrappers=no/yes in manifests. (The default has been yes for some time and we will now only have that behavior.) r=mrbkap.
--HG--
extra : rebase_source : 996d2abecb15f44293abd470a28a3fe2706e130e
2010-05-27 12:33:54 -07:00
Kai Engert
8944ab6865 Bug 173729, Deleting a builtin cert should behave better
Improve wording to reduce confusion
r=rrelyea
2010-05-03 13:34:41 +02:00
Kai Engert
5fd09f7dab Bug 469555, revert revision 7a3f4933c44f, because of regression bugs 554009 and 559677
r=honzab (in bug 559677)
2010-05-03 13:33:49 +02:00
hasse@jasajudeju.se
93dec03fb8 Bug 454501 - Fix access keys in the PKCS#11 Device. r=kaie 2010-06-25 15:55:54 +02:00
timeless@mozdev.org
5f92125469 Bug 101378 Make psm dialogs non modal
r=kaie

--HG--
extra : rebase_source : 356662cc5a67c6296569312405df0476ca10fa5e
2010-03-12 07:50:10 +01:00
timeless@mozdev.org
9c5655d775 Bug 469555 Support searching for certificates
r=kaie

--HG--
extra : rebase_source : 262d11f8512bf8f61e4b084b079f33a36407a65e
2010-03-12 07:50:09 +01:00
Palo Misik
d4c2344fc8 Bug 530505: Rev IID on various interfaces for Gecko 1.9.3 r=bsmedberg 2010-01-23 11:34:08 -05:00
Phil Ringnalda
466a5b2681 Bug 523070 - Remove useless commented out certdbkeycol tree columns, r=kaie 2009-10-26 18:39:23 -07:00
Phil Ringnalda
182257d6cf Bug 523287 - Remove commented out cert tree columns and their unusable strings, r=kaie 2009-10-26 18:39:23 -07:00
Phil Ringnalda
6368d78331 Bug 523056 - Remove nonlocalized, inappropriate progresstext attribute that hasn't done anything since 0.6, r=mayhemer 2009-10-20 20:21:29 -07:00
Phil Ringnalda
a8bea96637 Bug 523290 - Bogus copy-pasted id for OthersOverlay.xul's overlay element, r=mayhemer 2009-10-20 20:21:26 -07:00
Serge Gautherie
b31d61984c Bug 381467 - Switch application/x-javascript to application/javascript; (Av1) /security/manager/pki/*
r=honzab
2009-10-21 00:07:42 +02:00
timeless@bemail.org
bf6c9b1c41 Bug 471301 - nsNSSASN1Tree::LoadASN1Structure is missing calls to BeginUpdateBatch/EndUpdateBatch. r=kaie 2009-09-30 10:04:17 +02:00
Benjamin Smedberg
ba372f3a4c Followup to bug 398573 - remove REQUIRES from the tree since it is no longer used... automatically generated patch, rs=ted 2009-08-25 08:59:31 -07:00
Serge Gautherie
b97a0e78a3 Bug 444021 - Remove useless |#include "nsILocale[Service|].h"|; (Av1) Just remove them; r=smontagu 2009-08-06 20:00:41 +02:00
Ehsan Akhgari
567bc9e1ac Bug 461627 - Hide the UI for saving certificate exceptions permanently in Private Browsing mode (test); r=mconnor 2009-08-02 22:23:14 +04:30
Honza Bambas
2b632b3f74 Bug 496013 - Loading PKCS#11 module fails due to incorrect usage of nsiLocalFile.persistentDescriptor, r=honzab 2009-07-27 18:59:42 +02:00
Neil Deakin
65d8462672 Bug 455590, use new drag and drop api with trees, r=neil,sr=smaug 2009-06-24 13:12:33 -04:00
Benjamin Smedberg
1559de55e2 Bug 326628 try #2 - remove window.pkcs11 and fix the device manager not to use that API, r=kaie 2009-05-28 19:36:21 -07:00
Kai Engert
3d486c9ebb Bug 431819, IMAP/POP/SMTP/LDAP with SSL client auth, Thunderbird repeatedly prompts for client certificate
(applies to firefox with SSL client auth, too)
r=relyea for an earlier patch that was checked in to mozilla-1.8.x more than a year ago
r=honzab on the diff on top of that earlier patch
a=beltzner for landing on restricted trunk
2009-05-21 00:21:51 +02:00
Ehsan Akhgari
542bd59ca4 Bug 493729 - URL text box in the exception dialog should always be LTR; r=johnath 2009-05-19 19:30:02 +04:30
Ehsan Akhgari
65057a4354 Bug 461627 - Hide the UI for saving certificate exceptions permanently in Private Browsing mode; r=kaie,gavin 2009-01-18 13:58:08 +03:30
Phil Ringnalda
538c9fb42a Bug 461888 - Remove unused PACKAGE_FILE and PACKAGE_VARS and .pkg files, mozilla-central part, r=bsmedberg 2008-11-03 19:46:28 -08:00
Ehsan Akhgari
ee60bee20e Bug 461627 - Hide the UI for saving certificate exceptions permanently in Private Browsing mode; r=johnath 2008-11-04 02:52:23 +03:30
Reed Loden
1c77a41798 Merge backout changeset for bug 454406 2008-10-01 01:03:35 -05:00
Reed Loden
984577563b Bug 454406 - "SSL handshakes fail after asking PSM to remember user's choice of client auth cert" (backed out changeset 6615b044bcd8 from bug 431819) 2008-10-01 01:01:39 -05:00
Karsten Düsterloh
5588af7f89 Bug 438793: treelines for certificate details tree; r=kaie 2008-09-28 22:52:06 +02:00
Arpad Borsos
7c8fe9b1d4 Bug 451909 - kill MOZ_XUL_APP now that all apps set it; files removal; r=ted.mielczarek 2008-09-20 15:54:40 +02:00
Johnathan Nightingale
21acaff769 Exception dialog slow to appear when prefetching. b=453855 p=johnath r=kaie 2008-09-15 09:56:47 -04:00
Arpad Borsos
1e410ca73d Bug 451909 - kill MOZ_XUL_APP now that all apps set it; 'jar.mn' part; r=ted.mielczarek 2008-09-15 15:19:32 +02:00
Philip Chee
e07c2e2ecf bug 445015 - Migrate SeaMonkey Validation to the new prefwindow, fix windowtype in crlManager.xul, r=kaie sr=Neil 2008-09-11 14:20:50 +02:00
Kai Engert
beeb734500 Bug 444752, &getPassword.tokenName.label;: is not properly localizable
r=Pike
2008-09-10 08:13:04 +02:00
Robert Kaiser
22c4445c31 bug 450257 - Move SeaMonkey-specific files in manager/ to comm-central/suite, r=kaie
--HG--
rename : security/manager/locales/en-US/chrome/pippki/pref-validation.dtd => security/manager/locales/en-US/chrome/pippki/validation.dtd
2008-09-03 19:36:47 +02:00
Kai Engert
61a477cdbc Bug 439722, Make the "bad cert error dialog" more helpful
r=rrelyea, sr=dveditz
2008-08-26 00:26:08 +02:00
Serge Gautherie
764dd62dfa Bug 441425 - "(some) Security Manager (PKI) files seem to reference <contextHelp.js> uselessly" ((Av1) <content/*.xul>) [r=kaie] 2008-08-20 00:25:25 -05:00
Kai Engert
0f228913f3 Bug 431819, SSL client auth, repeated prompts for client certificate
r=rrelyea, r=dveditz
2008-06-18 21:36:29 +02:00
reed@reedloden.com
48807ce607 Bug 433025 - "Still using windows icon in Security Exception dialog" [p=reed r=kaie a1.9=schrep] 2008-05-09 20:43:45 -07:00
gavin@gavinsharp.com
3642b0dbe2 Bug 413909: nsCertOverrideService IDN handling is broken, and its port handling is also quite cumbersome, patch by Honza Bambas <honzab@allpeers.com>, r=kaie, a=shaver 2008-04-22 13:03:20 -07:00
johnath@mozilla.com
8ab934e658 More verbose logging of harmless-but-scary-looking exception. b=408697 r=kai a=damon 2008-04-07 13:46:50 -07:00
kaie@kuix.de
93690c7fc3 Bug 420246, gBrowser.securityUI doesn't clear invalid cert data after using back button r=rrelyea, r=johnath, sr=gavin, blocking1.9=beltzner 2008-04-01 23:36:16 -07:00
reed@reedloden.com
20850172a7 Bug 418543 - "remove -moz-pre-wrap" [p=taken.spc@gmail.com (KUROSAWA, Takeshi) r+sr=roc a1.9=beltzner] 2008-03-08 01:44:35 -08:00
jwatt@jwatt.org
e6a9880ce6 Bug 417693. late-l10n. The Add Security Exception dialog text is misleading. r=kengert@redhat.com, a1.9=beltzner@mozilla.com 2008-02-21 09:40:52 -08:00
johnath@mozilla.com
6086d912fc Add Security Exception dialog is unusable at high dpi. b=413623, r=kengert, blocking1.9=schrep 2008-02-06 10:02:10 -08:00
kaie@kuix.de
b2b540186b Bug 409280, nsIProtectedAuthThread is not embedding friendly Patch contributed by Christian Persch (GNOME) r=kengert, blocking1.9=mtschrep 2008-01-15 14:41:52 -08:00
kaie@kuix.de
3afaedea82 Bug 407788, polish Delete Server Certificate Exceptions dialog Patch contributed by Vlado Valastiak r=kengert, a=mtschrep 2008-01-15 13:45:05 -08:00
johnath@mozilla.com
b38ae8cb70 Polish delete cert dialog. b=407788 r=kengert a=dsicore 2007-12-14 13:34:06 -08:00
kaie@kuix.de
a557b8e17c bug 119500, PKCS#11 CKF_PROTECTED_AUTHENTICATION_PATH token flag not supported Patch contributed by Petr Kostka r=rrelyea, sr=kengert, a=dsicore Addon Patch to provide dummy implementations for gtk-embedding and camino. r=mark, sr=jst 2007-12-04 23:34:55 -08:00
kaie@kuix.de
b672ba3b51 bug 119500, PKCS#11 CKF_PROTECTED_AUTHENTICATION_PATH token flag not supported Patch contributed by Petr Kostka r=rrelyea, sr=kengert, a=dsicore Addon Patch to provide dummy implementations for gtk-embedding and camino. r=mark, sr=jst 2007-12-04 23:31:43 -08:00
reed@reedloden.com
9e161066cd Bug 400096 - "In <pippki.properties> (at least), rename "Web Site" to "Server"" ((Bv2a) |importWebSiteCertPrompt| fix) [p=sgautherie.bz@free.fr (Serge Gautherie) r=kaie a1.9=damons] 2007-11-30 23:03:54 -08:00
johnath@mozilla.com
39e2a45b3f Bug 402207 - SSL error page "Add Exception" support should be pref-controlled. r=gavin r=kengert ui-r=beltzner a=beltzner 2007-11-23 13:59:10 -08:00
philringnalda@gmail.com
b7aa2d7626 Bug 404292 - use global/skin/ instead of communicator/skin/ in crl manager, r=kengert, sr=neil, a=schrep 2007-11-21 18:51:09 -08:00
johnath@mozilla.com
bf1eaa25c6 Fix whitespace in Add Exception dialog. b=404425 r=kaie a=schrep 2007-11-21 13:34:18 -08:00
reed@reedloden.com
6c5798116d Back out patch from bug 373525 now that bug 386202 has been fixed [r=kaie a=blocking1.9+] 2007-11-20 16:46:47 -08:00
kaie@kuix.de
f2e2a270fb Bug 399696, allow temporary certificate exceptions r=rrelyeea, a=vladimir 2007-11-19 07:32:43 -08:00
kairo@kairo.at
12a3fe57b9 bug 403301 - Wrong character and accesskey alignment in certManager.dtd, r=kengert a=dsicore 2007-11-19 05:55:35 -08:00