Mike Hommey
|
db7bee9956
|
Bug 841011 - Use the parent directory of XRE_EXECUTABLE_FILE to find autoconf file. r=bsmedberg
|
2013-02-25 10:50:12 +01:00 |
Mats Palmgren
|
b7ae90666d
|
Bug 786533 - Replace NS_MIN/NS_MAX with std::min/std::max and #include <algorithm> where needed. r=ehsan
|
2013-01-15 13:22:03 +01:00 |
Benjamin Smedberg
|
ab775a4ccf
|
Bug 807757 main part - remove nsIProfileChangeStatus, nsIProfile and remnants of code to support them, r=glandium
--HG--
rename : profile/public/nsIProfileChangeStatus.idl => profile/public/notifications.txt
extra : rebase_source : 89db8a63effc2eab589a184a2b686cfcca3f8f63
|
2012-12-13 12:20:56 -05:00 |
Ed Morley
|
2720ada529
|
Backout 4ebd50016f35 & 9033700cc24f (bug 807757) for failing to build on a CLOSED TREE
|
2012-12-13 18:46:38 +00:00 |
Benjamin Smedberg
|
a7244b9828
|
Bug 807757 main part - remove nsIProfileChangeStatus, nsIProfile and remnants of code to support them, r=glandium
--HG--
rename : profile/public/nsIProfileChangeStatus.idl => profile/public/notifications.txt
extra : rebase_source : e7caf9d124a4295ced9d607ab6b75b663b97ed8e
|
2012-12-13 12:20:56 -05:00 |
Andrew Quartey
|
3ca8d029a6
|
Bug 792581 - part 16: Replace LL_L2UI macro with uint32_t cast. r=ehsan
|
2012-10-12 13:29:11 -04:00 |
Isaac Aggrey
|
481e7dfb0b
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
Terrence Cole
|
3eda1202a1
|
Bug 791322 - Move Rooted to js:: namespace; r=billm
These should not be part of the public API.
--HG--
extra : rebase_source : 00a69ee54f06e3f557cd9ec2f3b059df10aa32df
|
2012-09-24 18:08:22 -07:00 |
Bobby Holley
|
6323aa5c6b
|
Bug 790905 - Make the compartment principal of autoconfig_glob match the principal passed to JS::Evaluate. r=bz
|
2012-09-19 11:15:24 +02:00 |
Makoto Kato
|
1356f06137
|
Bug 784912 - nsIStreamListener.onDataAvailable should handle 64-bit offset. r=honza
|
2012-09-06 11:41:02 +09:00 |
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
Benjamin Peterson
|
74a1052eb5
|
Bug 781035 - Use the C++ JS compile API in more places. r=jorendorff sr=jst
|
2012-08-27 08:04:37 -04:00 |
Luke Wagner
|
ad90af9ca5
|
Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
--HG--
extra : rebase_source : 12acf2288285f5caefd7fecea8207de3a47eab5b
|
2012-08-21 18:42:53 -07: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 |
Honza Bambas
|
15daadba69
|
Bug 215450: Allow uploading of files greater than 2gb in size. Involves making input streams 64-bit capable. Significant work done by Makoto Kato, finished by Honza Bambas. r=hbambas,bsmedberg,jdrew,sicking
|
2012-08-10 22:44:11 -04:00 |
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Martin Stransky
|
c3f188dc71
|
Bug 776490 - variable lock (lockPref) does not work, r=bzbarsky
|
2012-07-26 12:39:31 -04:00 |
Ehsan Akhgari
|
9e7e7c3aab
|
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 (xre parts); r=jrmuizel
|
2012-06-19 23:49:05 -04:00 |
Luke Wagner
|
026cc7a4de
|
Bug 755186 - s/JS_NewCompartmentAndGlobalObject/JS_NewGlobalObject/ (r=jorendorff)
--HG--
extra : rebase_source : f1ead9226915f72473a01db0a1019cdbe50c8e92
|
2012-06-20 08:57:29 -07:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Masatoshi Kimura
|
5c181004d6
|
Bug 451161 - Part 2: Remove SystemPref module from the tree. r=roc
|
2011-11-26 20:49:31 +01: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 |
Ed Morley
|
3b7f457af8
|
Bug 689036 - Collapse redundant Makefiles in extensions/pref/ & fix missing in makefiles.sh; r=khuey
|
2011-09-28 09:26:46 +01:00 |
Michael Wu
|
ae89b187f1
|
Bug 671190 - Stop using BOGUS_DEFAULT_*_PREF_VALUE in prefapi.cpp and cleanup PRBool abuse, r=bsmedberg
|
2011-08-22 19:15:52 -07: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 |
Dominic Fandrey
|
968bf5196a
|
Bug 645398 - Substitute PR_(MAX|MIN|ABS|ROUNDUP) macro calls; r=roc
|
2011-06-02 14:56:50 +02:00 |
Ed Morley
|
91238e76b1
|
Bug 316661 - Part A - Remove null-checks before delete. r=bsmedberg
|
2011-05-17 16:01:36 +02:00 |
Ed Morley
|
97cc9c4eea
|
Bug 655756 - Remove final XP_MAC remnants; r=josh
|
2011-05-10 20:24:48 +02:00 |
Serge Gautherie
|
20739294a0
|
Bug 228448 - Remove '=='/'!=' 'PR_FALSE'/'PR_TRUE'; (Hv1) /extensions/*.
r=cbiesinger.
|
2011-04-14 17:25:00 +02:00 |
Michael Wu
|
c00063c782
|
Bug 636265 - Don't pass unused return value in nsJSConfigTriggers.cpp, r=jorendorff
|
2011-03-25 14:31:14 -07:00 |
Jim Blandy
|
8ec41b7213
|
Bug 537873: Add 'strict' argument to setters defined throughout Firefox. r=brendan
This should take care of all setters defined outside SpiderMonkey proper. Very mechanical.
|
2011-02-09 11:31:40 -08:00 |
Michael Wu
|
8963c723d5
|
Bug 595522 - Read defaults/autoconfig/* from omnijar as appropriate, r=bsmedberg a=blocking2.0
|
2011-02-02 15:42:10 -08:00 |
Andreas Gal
|
3b06ebef0a
|
Follow-up fix 2 for bug 590325.
|
2011-01-21 00:59:00 -08:00 |
Andreas Gal
|
66adce312b
|
Follow-up fix for bug 590325.
|
2011-01-21 00:21:27 -08:00 |
Andreas Gal
|
738e3acd80
|
Global Object created in CentralizedAdminPrefManagerInit needs its own compartment (bug 590325, r=mrbkap).
|
2011-01-21 00:08:13 -08:00 |
James Pearson
|
a0f74c227c
|
Bug 576430 - Autoconfiguration with mozilla.cfg no longer works on trunk, Failed to read the configuration file. r=jorendorff
|
2010-08-10 19:04:43 -03:00 |
Luke Wagner
|
7371ad00ed
|
Bug 549143 - fatvals
|
2010-07-14 23:19:36 -07:00 |
Benjamin Smedberg
|
ca8c9d3053
|
More Linux-specific fixup from bug 568691
|
2010-06-12 20:50:56 -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 |
Andreas Gal
|
8c624148c6
|
Add an API for compartments (570040, r=jorendorff).
|
2010-06-04 16:32:10 -07:00 |
Mark Banner
|
c1f7eefbf4
|
Bug 550145 NS_APPSTARTUP_CONTRACTID should exist in nsToolkitCompsCID.h and not nsXPFEComponentsCID.h (kill nsXPFEComponentsCID.h). r=benjamin
|
2010-03-05 12:11:55 +00:00 |
Dão Gottwald
|
1951d7d761
|
make comment reflect reality
|
2009-11-08 16:25:45 +01:00 |
Mitchell Field
|
41c8798093
|
Bug 514665 - fix stupid module name differences on windows. r=ted
|
2009-09-25 18:41:16 +02:00 |
Phil Ringnalda
|
6fce97e58d
|
Bug 495228 - Remove checks for mac MOZ_WIDGET_TOOLKIT, r=ted
|
2009-09-18 19:59:53 -07:00 |
Benjamin Smedberg
|
36bc86429d
|
Additional followup to bug 398573 - remove REQUIRES from the tree even when they are in makefile conditional blocks
--HG--
extra : rebase_source : cc65c34a414e6c67a5651fc9cf0b6bd709ebcdbd
|
2009-08-27 08:53:13 -07:00 |
Mark Banner
|
796e8d2758
|
Bug 512690 Fix prefcalls.js in autoconfig code for latest LDAP API changes. r=bienvenu
|
2009-08-26 16:09:59 +01: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 |
Igor Bukanov
|
7abefe3052
|
bug 504033 - avoiding calling JSFinalizeStub. r=brendan
|
2009-07-22 18:23:21 +02:00 |
Makoto Kato
|
1bca2f556f
|
Bug 481112 - Remove nsIPref from system-pref. r=roc
|
2009-03-08 12:17:41 +09:00 |
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 |
Arpad Borsos
|
c72ef7d248
|
Bug 456388 - Remove PR_STATIC_CALLBACK and PR_CALLBACK(_DECL) from the tree; r+sr=brendan
|
2008-10-10 17:04:34 +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 |
Arpad Borsos
|
5a19e3346c
|
Bug 398946 - Remove JS_STATIC_DLL_CALLBACK and JS_DLL_CALLBACK from the tree; r=(benjamin + bent.mozilla)
|
2008-09-07 00:21:43 +02:00 |
Arpad Borsos
|
3b08a324be
|
Bug 451909 kill MOZ_XUL_APP now that all apps set it. docshell/toolkit cleanup r=benjamin, makefile cleanups r=ted
|
2008-09-02 10:45:14 +01:00 |
Mike Hommey
|
ff866e61e5
|
Bug 445136 – Autoconfig files should be looked up in GRE directory, not App directory. r=bsmedberg
|
2008-08-14 12:39:54 +02:00 |
benjamin@smedbergs.us
|
b3e87aa63b
|
Bug 411327 - nsIXPCNativeCallContext should not inherit from nsISupports, r=mrbkap, a=schrep
|
2008-01-15 07:50:57 -08:00 |
bugzilla@standard8.plus.com
|
a6d4ff4ae1
|
Bug 401766 Starting Debug SeaMonkey with autoconfig file gives Assertion failure: (cx)->requestDepth || (cx)->thread == (cx)->runtime->gcThread. r/sr=jst,aM9=beltzner
|
2007-11-05 10:55:42 -08:00 |
reed@reedloden.com
|
13a904f38c
|
Bug 398624 - "PRBool misuse bugs in extensions/pref/" [p=taras r=bienvenu a1.9=sayrer]
|
2007-10-19 16:29:39 -07:00 |
reed@reedloden.com
|
b3b3b25c36
|
Backout taras's check-in for bug 398624 to help find Tp regression.
|
2007-10-16 17:31:42 -07:00 |
tglek@mozilla.com
|
fb62674648
|
bug 398624. Prbool fixes. r=bienvenu, a=sayrer
|
2007-10-15 17:22:48 -07:00 |
bugzilla@standard8.plus.com
|
5b959451f7
|
Bug 396745 nsILDAPConnection::Init should take an nsILDAPURL as a parameter instead of three others. r/sr=bienvenu NPOTDFFB
|
2007-09-19 13:32:00 -07:00 |
jwalden@mit.edu
|
6d7584839a
|
Bug 348748 - Replace all instances of NS_STATIC_CAST and friends with C++ casts (and simultaneously bitrot nearly every patch in existence). r=bsmedberg on the script that did this. Tune in next time for Macro Wars: Episode II: Attack on the LL_* Macros.
|
2007-07-08 00:08:04 -07:00 |
flamingice@sourmilk.net
|
113cf97d21
|
Bug 379666, Remove incorrect PR_UnloadLibrary call, r=dbaron
|
2007-06-01 18:43:36 -07:00 |
bent.mozilla@gmail.com
|
20b6443053
|
Bug 380846 - "Make the build system friendlier for XULRunner apps and extensions." r=bsmedberg. Adds confvars.sh files for all major apps and makefiles.sh for all extensions.
|
2007-05-23 13:08:44 -07:00 |
dbaron@dbaron.org
|
9b013dc30a
|
Add missing calls to PR_UnloadLibrary (excluding XPCOM component loader and nsPluginsDir*). b=374332 r=bsmedberg
|
2007-04-15 15:22:58 -07:00 |
hg@mozilla.com
|
05e5d33a57
|
Free the (distributed) Lizard! Automatic merge from CVS: Module mozilla: tag HG_REPO_INITIAL_IMPORT at 22 Mar 2007 10:30 PDT,
|
2007-03-22 10:30:00 -07:00 |
bienvenu%nventure.com
|
89aeb8cfed
|
fix MCD with better fix for bug 216751, sr=mscott, look at correct pref branch for prefs set in .cfg file
|
2007-01-31 05:16:56 +00:00 |
bienvenu%nventure.com
|
1bd5dc7e6c
|
fix 359882 autoconfig checking for e-mail identity doesn't work if default account has multiple identities, sr=mscott
|
2006-11-28 18:02:18 +00:00 |
timeless%mozdev.org
|
c70df9f530
|
Bug 106386 Correct misspellings in source code
r=bc rs=brendan
|
2006-11-02 20:21:50 +00:00 |
pedemont%us.ibm.com
|
cd6e863b4c
|
Bug 340002 - only handle nsILDAPSyncQuery when MOZ_LDAP_XPCOM is set. r=bienvenu.
|
2006-06-02 18:38:49 +00:00 |
darin%meer.net
|
0318b8c707
|
landing patch for bug 326273 "Implement nsIThreadManager" (Mac portions by Mark Mentovai) with reviews from bienvenu, bsmedberg, bzbarsky, josh, roc, and ssieb
|
2006-05-10 17:30:15 +00:00 |
benjamin%smedbergs.us
|
ec18f62436
|
Bug 333308 - make clean/distclean misses various files, patch by Mike Hommey <mh+mozilla@glandium.org>, r=me
|
2006-04-28 14:54:54 +00:00 |
roc+%cs.cmu.edu
|
eb125f488d
|
Bug 313962. Fix simple uninitialized variable crasher in GConf nsSystemPrefs. r=timeless
|
2006-04-17 22:03:46 +00:00 |
benjamin%smedbergs.us
|
078e45e203
|
Bug 78081 - don't export intermediate libraries - initial makefile changes to switch from $(DIST)/lib to in-tree library locations - blanket-r=mento
|
2006-02-14 18:13:49 +00:00 |
cbiesinger%web.de
|
c2d981f764
|
bug 183156 remove *UCS2* functions, replacing them with *UTF16* ones
r+sr=darin
|
2006-02-03 14:18:39 +00:00 |
gerv%gerv.net
|
1dca58927a
|
Bug 236613: change to MPL/LGPL/GPL tri-license.
|
2005-12-31 12:14:46 +00:00 |
timeless%mozdev.org
|
fd6f59e43e
|
Bug 280742 ignore_host GCONF key is not read in firefox proxy settings
patch by alfred.peng@sun.com r=timeless sr=roc
|
2005-12-27 03:45:05 +00:00 |
bsmedberg%covad.net
|
cf0d973c21
|
Bug 320148 - Incorporate extensions/pref into libxul, r=bryner
|
2005-12-14 15:57:40 +00:00 |
timeless%mozdev.org
|
17f5f5429f
|
Bug 106386 Correct misspellings in source code
patch by supernova_00@yahoo.com r=timeless
|
2005-11-21 06:25:15 +00:00 |
scott%scott-macgregor.org
|
eed473dca2
|
Bug #302096 --> nsILddapSyncQuery for Mission Control Desktop uses the same ID for the
interface and the class. Make them use different IDs.
sr=bienvenu
|
2005-07-26 19:47:24 +00:00 |
timeless%mozdev.org
|
260202463e
|
Bug 216751 general.config.filename set in user's prefs.js overrides setting in all.js
patch by bugzilla@mcsmurf.de r=bienvenu sr=brendan a=asa
|
2005-07-13 18:05:49 +00:00 |
bienvenu%nventure.com
|
a59e1767a8
|
fix 295743, add clearPref to mcd, r/sr=mscott, a=chofmann
|
2005-06-07 16:22:08 +00:00 |
timeless%mozdev.org
|
b72b3aa3c5
|
Bug 288212 cleanup nsAutoConfig::getEmailAddr and nsReadConfig::readConfigFile
r=alecf sr=alecf a=shaver
|
2005-06-01 16:25:13 +00:00 |
robin.lu%sun.com
|
cfe21df0aa
|
fix bug 290435 proxy settings are disabled after switching profiles.
alecf: review+
neil.parkwaycc.co.uk: superreview+
patched by Boying Lu <brian.lu@sun.com>
|
2005-04-30 02:37:41 +00:00 |
bsmedberg%covad.net
|
9f33ad0393
|
Bug 287262 - Make en-US.manifest contain all the locale registration (not in installed-chrome.txt any more) r=gandalf a=asa
|
2005-04-20 10:48:51 +00:00 |
bsmedberg%covad.net
|
be30b2f533
|
Adding MOZILLA_INTERNAL_API to internal makefiles, bug 288626, rs=darin
|
2005-04-04 18:38:19 +00:00 |
gandalf%firefox.pl
|
00b53edea3
|
bug 279768: Bring build system to work with --enable-ui-locale. autoconfig part; r=bsmedberg
|
2005-03-14 18:58:01 +00:00 |
bsmedberg%covad.net
|
ea84e3ded3
|
Fix misplaced semicolon from bug 281414 - r=biesi sr=lumpy
|
2005-03-10 19:06:59 +00:00 |
bsmedberg%covad.net
|
311203ed0c
|
Fix system-pref service from bug 281414 (s/nsIPrefBranchInternal/nsIPrefBranch2/), r=blizzard
|
2005-02-23 16:15:37 +00:00 |
bryner%brianryner.com
|
67dba23ae4
|
Clean up unneeded REQUIRES (bug 73353). r+sr=dbaron.
|
2005-02-03 23:01:54 +00:00 |
roc+%cs.cmu.edu
|
d1351875be
|
Bug 259076. Use gconf system prefs for proxy-type and other proxy settings. r=darin,sr=roc, patch by Ganesh (Novell)
|
2005-02-02 01:21:16 +00:00 |
bienvenu%nventure.com
|
ed86fda23a
|
fix 280204 recover from broken mcd server sending down empty prefs, sr=mscott
|
2005-01-30 00:33:47 +00:00 |
cvshook%sicking.cc
|
befc76b9c8
|
Bug 234858: Make do_GetWeakReference typesafe.
r=dbaron sr=bryner
|
2005-01-24 22:59:27 +00:00 |
timeless%mozdev.org
|
d070189234
|
Bug 250322 nsLDAPSyncQuery::GetQueryResults can return null + NS_OK for OOM
patch by gandalf@firefox.pl r=dmose sr=bienvenu
|
2004-12-01 10:32:53 +00:00 |
bsmedberg%covad.net
|
e08012b8b7
|
Bug 237745 (app-startup) - split off the pieces of appshellservice that have to do with the startup sequence into a new (forked, temporarily) app-startup service r+sr=darin+biesi+Neil
|
2004-10-29 19:28:38 +00:00 |
peterv%propagandism.org
|
fd9477bd1e
|
Fix for 209699 (bug convert some consumers over to CopyUTF8toUTF16 / CopyUTF16toUTF8). r=jshin, sr=jst.
|
2004-09-17 13:03:33 +00:00 |
neil%parkwaycc.co.uk
|
04f245a849
|
Bug 255268 Make make chrome make installed-chrome.txt correctly r=bsmedberg
|
2004-08-18 19:14:51 +00:00 |
timeless%mozdev.org
|
d991cf979c
|
Bug 229271 unwanted "white space" in function getLDAPValue fron autoconfig/prefcalls.js
r=alecf sr=dmose
|
2004-07-14 22:43:18 +00:00 |
bsmedberg%covad.net
|
b7aedee852
|
Bizarre crash-fix that I added on the aviary1.0 branch, now porting to trunk. rs=darin
|
2004-06-17 20:53:35 +00:00 |
bzbarsky%mit.edu
|
62a5127738
|
Relanding, since backing out did not fix orange. Bug 232691.
|
2004-05-22 20:02:43 +00:00 |
bzbarsky%mit.edu
|
7f1e54b18d
|
Backing out to attempt to fix Mac orange. Bug 232691
|
2004-05-22 19:26:52 +00:00 |
bzbarsky%mit.edu
|
abcad1dc39
|
Convert users of nsC?String(), nsC?AutoString(), and NS_LITERAL_C?STRING("") to
using EmptyC?String instead. Bug 232691, patch by Charles Fenwick
<clf03f@garnet.acns.fsu.edu>, r+sr=bzbarsky
|
2004-05-22 17:04:53 +00:00 |
bienvenu%nventure.com
|
36c150e433
|
fix regression that caused autoconfig to fail unless ldap was build, r=dmose, sr=mscott 240897
|
2004-04-26 20:04:36 +00:00 |
darin%meer.net
|
8d65e087ae
|
landing string defragmentation patch for bug 231995, r/sr=dbaron,jst,dougt
|
2004-02-19 02:44:03 +00:00 |
bienvenu%nventure.com
|
b0c70528a7
|
support ldap v3, patch by dmose, r/sr=sspitzer 198168 a=chofmann
|
2004-02-14 02:34:50 +00:00 |
kairo%kairo.at
|
3d12a17e05
|
bug 232011 - Use the XUL preprocessor for build-time inserting of localeVersion strings, this removes contents*.rdf.in files and resurrects the contents*.rdf files, using preprocessor.pl via the jar.mn definitions
|
2004-02-04 14:24:38 +00:00 |
jst%mozilla.jstenback.com
|
90431d8022
|
Fixing bug 232503. Start using Empty[C]String() to save a bit on code-size. r+sr=peterv@propagandism.org
|
2004-01-29 22:04:45 +00:00 |
bsmedberg%covad.net
|
ff8f8a7309
|
Fix system pref extension for bug 232201. r=bustage
|
2004-01-28 05:11:20 +00:00 |
bienvenu%nventure.com
|
e76573d657
|
enable full mcd pr logging in release build, sr=mscott 232073
|
2004-01-25 01:11:11 +00:00 |
neil%parkwaycc.co.uk
|
19a8ab3904
|
Bug 227500 Provide scriptable environment access p=bsmedberg,gisburn r/sr=dougt
|
2004-01-23 10:23:12 +00:00 |
bienvenu%nventure.com
|
3e7aea6c7b
|
add pr logging to MCD, sr=mscott 231148
|
2004-01-16 21:24:09 +00:00 |
bienvenu%nventure.com
|
7f9c9401f5
|
fix 230743, make autoconfig prompt for e-mail address if none found in prefs.js, and append email addr specified in mcd settings, sr=mscott
|
2004-01-14 00:55:04 +00:00 |
bienvenu%nventure.com
|
a6411bfa6a
|
make autoconfig use 4.x e-mail identity if it can't find new style identity, for the one time after profile migration, sr=mscott 230511
|
2004-01-09 17:57:54 +00:00 |
bsmedberg%covad.net
|
d0f309943a
|
Continuing to land the PACKAGING_20030906_BRANCH for bug 20640. Not part of the build, yet.
|
2004-01-07 13:37:00 +00:00 |
bsmedberg%covad.net
|
274ef7cd49
|
Beginning to land the PACKAGING_20030906_BRANCH for bug 20640. Not part of the build, yet.
|
2004-01-07 01:22:31 +00:00 |
bienvenu%nventure.com
|
e0eba35bb5
|
fix 228791 need ability to have unobscured mcd files, r/sr=mscott
|
2003-12-19 15:53:15 +00:00 |
dbaron%dbaron.org
|
d5582721b7
|
Separate locale version from Mozilla version so we do not have to bump locale version for every release. b=226377 r=kairo, bsmedberg sr=ben a=asa
|
2003-12-02 23:22:11 +00:00 |
bryner%brianryner.com
|
07bcb40ee4
|
Fix unresolved references with static gtk2 build (bug 216022). The file containing NS_IMPL_NSGETMODULE for a library must be compiled from the Makefile that sets IS_COMPONENT in order for the entry point translation to work correctly. r=cls, not part of the default build.
|
2003-10-27 10:11:00 +00:00 |
kairo%kairo.at
|
7b21e2d4eb
|
bug 154927 - automate localeVersion updates based on milestone.txt - we'll now create all those files during compile time from .in files, r=leaf, sr=bz
|
2003-10-18 17:54:07 +00:00 |
bryner%brianryner.com
|
2406bc1ed4
|
Fix build on gcc 3.4 by removing extra semicolons (bug 218551). r/sr=dbaron, a=brendan.
|
2003-09-07 22:05:34 +00:00 |
cls%seawood.org
|
1b51ba858c
|
Set MODULE in makefiles at the top of a heirarchy so that module-deps lists are more precise and builds will have the proper order if some subdirs contain other modules.
|
2003-08-16 00:42:35 +00:00 |
kairo%kairo.at
|
5cbc82d1b5
|
bug 214207 - update localeVersion for 1.5b - rs=blizzard, a=asa
|
2003-08-11 11:31:24 +00:00 |
bryner%netscape.com
|
2211a2a6f9
|
Fix a shutdown crash with gtk2 by not attempting to unload libgconf after we've called gconf_client_get_default(). gconf initializes ORBit which in turn registers atexit() handlers, so unloading the library would cause those function pointers to become invalid. Also, release our reference to the GConfClient in the GConfProxy dtor, and remove some unneeded code from the dtor. Bug 210471, r=bolian.yin@sun.com, sr=alecf.
|
2003-06-25 06:29:44 +00:00 |
bryner%netscape.com
|
23fb72d6eb
|
Fix gtk2 static build bustage - MODULE_NAME in Makefile.in must match NS_IMPL_NSGETMODULE. Bug 209747.
|
2003-06-18 22:54:25 +00:00 |
bolian.yin%sun.com
|
8442b87c63
|
Remedy patch for Bug 202388, runtime switch between system prefs and mozilla prefs. The original patch got sr=alecf, r=kyle.
|
2003-06-17 05:52:04 +00:00 |
seawood%netscape.com
|
97649bab86
|
Removing old cfm build files. Use the CFM_LAST_RITES tag to resurrect. r=macdev
|
2003-06-10 21:18:27 +00:00 |
seawood%netscape.com
|
b28ce0a530
|
Removing old cfm build files. Use the CFM_LAST_RITES tag to resurrect. r=macdev
|
2003-06-10 20:12:33 +00:00 |
bolian.yin%sun.com
|
8001504701
|
Bug 202388 runtime switch between system prefs and mozilla prefs.
sr=alecf.
|
2003-06-09 08:30:04 +00:00 |
kairo%kairo.at
|
0b93c73eee
|
bug 207642 - update localeVersion for 1.5a - r=rchen, sr=blizzard
|
2003-06-04 11:11:19 +00:00 |
kairo%kairo.at
|
b6009f1e51
|
bug 202312 - localeVersion update for 1.4b, r=rchen, sr=blizzard
|
2003-04-17 18:43:57 +00:00 |
wade%ezri.org
|
8ef3ab1a46
|
Fix build from checkin of bug 195708
|
2003-04-15 14:32:37 +00:00 |
bolian.yin%sun.com
|
e0c588e9d7
|
Bug 195708, Mozilla should read system preferences (using gconf on Gnome Desktop)
r/sr=alecf.
|
2003-04-15 02:28:27 +00:00 |
seawood%netscape.com
|
73160f9701
|
Use LIBS_DIR instead of hardcoding -L$(DIST)/bin
|
2003-03-12 08:46:32 +00:00 |
kairo%kairo.at
|
661116311f
|
bug 194924 - localeVersion update for 1.4a, r=rchen, sr=blizzard
|
2003-02-27 00:05:44 +00:00 |
darin%netscape.com
|
685a7af468
|
modifications for bug 176919 "async streams" r=dougt,gordon sr=sspitzer a=valeski,asa
|
2003-01-18 02:15:14 +00:00 |
dbaron%dbaron.org
|
5aadb9d382
|
Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
|
2003-01-08 20:32:55 +00:00 |
kairo%kairo.at
|
a6f4446e42
|
change all localeVersion strings, as well as brand.dtd/region.dtd to 1.3b; bug 185698, r=tao, sr=blizzard
|
2003-01-03 19:57:47 +00:00 |
kairo%kairo.at
|
150568bb2e
|
Bug 175853, Update localeVersion strings for 1.2 final - and do it correctly, r=jbetak, sr=bzbarsky, a=blizzard
|
2002-10-30 12:41:38 +00:00 |
leaf%mozilla.org
|
b25d2a38f7
|
update localeVersion for 1.2b, a=asa
|
2002-10-16 17:51:38 +00:00 |
peterv%netscape.com
|
9456212b6b
|
Fix for bug 86000 (convert LDAP XPCOM SDK to use AUTF8String). r=dmose, sr=alecf.
|
2002-09-11 11:22:41 +00:00 |
dougt%netscape.com
|
68faeb5241
|
166917. Clean up xpcom SDK includes. r=rpotts@netscape.com, sr=alecf@netscape.com, a=rjesup@wgate.com
|
2002-09-07 17:13:19 +00:00 |
dougt%netscape.com
|
fae89c4077
|
Fixes up the timer interface. b157136, r=rpotts@netscape.com, sr=alecf@netscape.com, a=rjesup@wgate.com
|
2002-09-07 05:38:16 +00:00 |
leaf%mozilla.org
|
70941124cb
|
update localeVersion to 1.2a, a=asa
|
2002-09-07 01:01:49 +00:00 |
rjc%netscape.com
|
ba0e03e53e
|
Fix bug # 164175: XPCom LDAP API extensions. OnLDAPInit() now passes relevant connection, and LDAP operations/connections accept closures. r=dmose sr=darin
|
2002-09-04 01:28:36 +00:00 |
danm%netscape.com
|
091b30e2a3
|
update for rev 1.26 of nsIAppShellService.idl: Quit takes a new parameter. bug 163918 r=brendan,bryner
|
2002-08-24 18:58:19 +00:00 |
bryner%netscape.com
|
b366f360b3
|
Ignore generated Makefiles.
|
2002-08-23 10:30:06 +00:00 |
seawood%netscape.com
|
322da773fb
|
Removing old nmake build makefiles. Bug #158528 r=pavlov
|
2002-08-10 07:55:43 +00:00 |
leaf%mozilla.org
|
8860985e79
|
bug 154840, r=cls, sr=brendan, a=jesup update localeVersion strings
|
2002-07-17 23:51:49 +00:00 |