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

348 Коммитов

Автор SHA1 Сообщение Дата
Gregory Szorc 7d09ff18e0 Bug 844635 - Part 3: Remove empty Makefile.in files; r=glandium 2013-03-17 18:01:25 -07:00
Gregory Szorc c865547d94 Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
This is the result of running
|mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and
reverting xpcom/sample/*.
2013-03-12 10:17:46 -07:00
Gregory Szorc 7b6f9c7add Bug 818246 - Part 1: Remove unncessary definitions of XPIDL_MODULE; r=glandium
XPIDL_MODULE defaults to MODULE. These Makefile.in were setting
XPIDL_MODULE to the same value as MODULE.

--HG--
extra : rebase_source : e96bd34d5949d0ab94cecbec35d6c9f4bffec01e
2013-03-07 05:03:51 -08:00
Gregory Szorc 1b27561fa4 Bug 784841 - Part 18d: Convert /browser; r=gavin f=Ms2ger 2013-02-25 12:47:18 -08:00
Mike Hommey 26e3714874 Bug 755724 - Move browser application in a subdirectory. r=jimm 2013-02-11 14:10:16 +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
Kyle Huey 0469a02b25 Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
--HG--
extra : rebase_source : 98337b6a8c07d05e8c961a452dd05a7d75c3c60b
2012-10-31 09:13:28 -07:00
Vicamo Yang a78b5b38c7 Backout 67cb43bb8865: Breaks B2G Marionette 2012-10-31 16:35:11 +08:00
Kyle Huey 9a3674d80a Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon 2012-10-30 12:28:11 -07:00
Ed Morley 4144129728 Backout a145ded68994, e0cf397089ec & 1545e91c658e (bug 798491) for bustage on a CLOSED TREE 2012-10-30 17:02:31 +00:00
Kyle Huey 50b5d3f681 Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon 2012-10-30 08:26:12 -07:00
Trevor Saunders 000b6e89a1 bug 798595 - remove useless prmem.h includes r=ehsan 2012-10-04 02:14:06 -04:00
Ehsan Akhgari 0d95057a75 Bug 798516 - Remove support for gPrivateBrowsingUI.privateWindow; r=jdm
This patch replaces the privateWindow API with the toolkit
PrivateBrowsingUtils.isWindowPrivate API, which is better in the sense
that it is chrome/content agnostic and is not browser/ specific.
2012-10-05 19:25:52 -04:00
Yosy ef3be55d08 Bug 792968 - Replace some regular expression string matches with String.startsWith and replace /^https?/ URI scheme tests with /^https?$/. r=dao 2012-09-23 21:09:29 +02:00
Benjamin Peterson ade089d9d0 Backed out changeset 3ca1f19e4c2a (bug 792968) for mochitest-oth failures 2012-09-23 12:25:39 -04:00
Yosy 9cd25eead2 Bug 792968 - Replace some regular expression string matches with String.startsWith and replace /^https?/ URI scheme tests with /^https?$/. r=dao 2012-09-23 16:48:23 +02:00
Andres Hernandez b783039a2c Bug 781973 - Use filepicker's open() instead of the obsolete show() in /browser. r=bbondy 2012-09-19 17:21:38 -06:00
Ehsan Akhgari 145e6f9783 Bug 741059 - Part 4: Update the callers to mozIAsyncFavicon::SetAndFetchFaviconForPage; r=jdm,bz,mak 2012-09-06 00:34:50 -04: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
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
Phil Ringnalda decb1792cf Bug 783738 - Use Components.results.NS_BINDING_ABORTED instead of hardcoding the value, r=gavin 2012-08-14 23:32:06 -07:00
Andres Hernandez 41c0955363 Bug 325901 - fix unnecessarily preprocessed files in browser/, r=gavin
--HG--
extra : rebase_source : cc42d98604e38528f3bc9941dce4f15ec8ad5d67
2012-08-10 14:20:25 -06:00
William Chen 607a319d22 Bug 778420 - Initial stab at the tests. v2 r=bholley
--HG--
extra : rebase_source : c24abc031c82a87f2f669e4b708f8ee364a9682b
2012-08-06 22:15:49 +02: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
Jonas Sicking 23c9838514 Bug 774585: Rename getCodebasePrincipal to getSimpleCodebasePrincipal since the behavior has semantically changed. r=mounir 2012-07-21 00:29:40 -07:00
Nathan Froyd bfff055672 Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
2012-07-03 16:49:02 -04:00
Neil Rashbrook bf2f971a94 Bug 761319 Use a more reliable way of resolving the feed handler URI r=gavin 2012-07-06 22:05:46 +01:00
Ehsan Akhgari 3360fe9dd4 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 (browser parts); r=jrmuizel 2012-06-19 23:24:24 -04:00
Phil Ringnalda 3d8333a8de Bug 758990 - Don't create feed URIs that inherit security context, r=gavin 2012-05-29 23:27:40 -07:00
Jim Mathies 025f49633e Bug 732124 - Fix for crt link errors with VC11 - build glue using both the static and the dynamic runtime lib, and link accordingly for various components. r=ted 2012-05-21 16:31:03 -05:00
Gervase Markham 82ff7027aa Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Paolo Amadini c42e6a7203 Bug 728168 - Replace old synchronous favicons calls in feeds. r=mak 2012-04-27 15:05:34 +02:00
Gavin Sharp 0af78ed149 Bug 739040 followup: properly enforce the sniffing limit on uncompressed feeds, r=mano, a=desktop-only
--HG--
rename : browser/components/feeds/test/chrome/test_bug368464.html => browser/components/feeds/test/chrome/test_maxSniffing.html
rename : browser/components/feeds/test/bug589543-data.xml => browser/components/feeds/test/valid-feed.xml
rename : browser/components/feeds/test/bug589543-data.xml => browser/components/feeds/test/valid-unsniffable-feed.xml
extra : transplant_source : %8C%AB%D06%BB6%A4%B4%AC8i%CD%06%AC%AE%D2%A3O%D2%D4
2012-04-21 02:22:52 -04:00
Ehsan Akhgari 7cddf62356 Bug 739040 - Use the length of the decoded string, if no more than 512 bytes, to sniff for feeds; r=Mano a=blocking 2012-04-20 13:03:53 -04:00
Myk Melez 2eea1475c4 bug 725408 - implement WebappRT launcher/shell; r=bsmedberg 2012-04-17 07:11:53 -07:00
Hessam Salehi afaf8bd917 Bug 722986 - Make WebContentConverter use the per-window Private Browsing APIs in order to decide how to behave; r=ehsan 2012-04-16 23:51:04 -04:00
Boris Zbarsky 4994b76f7b Bug 714631. Feed converter should check HTTP channel response status before proceeding. r=gavin 2012-04-13 13:46:15 -04:00
Geoff Lankow 8c5fdd1d03 Bug 718255 - Merge nsIPrefBranch2 with nsIPrefBranch - Part D, remove uses of nsIPrefBranch2 in browser/ and mobile/ ; r=bsmedberg 2012-01-17 14:34:51 +13:00
Panagiotis Koutsourakis 9c7dfb9706 Bug 702388 - Convert Makefiles to use |TEST_DIRS += foo| r=khuey
Files named Makefile.in containing the expression

DIRS += <foo>
or
DIRS = <foo>

inside the conditional expression

ifdef ENABLE_TESTS
...
endif

are changed to

TEST_DIRS += tests

outside any conditional expression.

The files

./layout/Makefile.in
./layout/Makefile.in
./layout/style/Makefile.in
./rdf/Makefile.in
./security/manager/Makefile.in
./content/Makefile.in
./content/smil/Makefile.in
./content/xul/templates/Makefile.in
./content/xul/content/Makefile.in
./content/base/Makefile.in
./content/media/Makefile.in
./parser/htmlparser/Makefile.in
./dom/sms/Makefile.in
./js/jsd/Makefile.in
./js/xpconnect/Makefile.in
./widget/Makefile.in
./widget/windows/Makefile.in
./Makefile.in
./startupcache/Makefile.in
./storage/Makefile.in
./gfx/Makefile.in
./intl/strres/Makefile.in
./intl/uconv/Makefile.in
./intl/unicharutil/Makefile.in
./intl/lwbrk/Makefile.in
./embedding/Makefile.in
./modules/libjar/Makefile.in
./modules/libpref/Makefile.in
./build/Makefile.in
./build/win32/Makefile.in
./xpcom/Makefile.in
./extensions/spellcheck/hunspell/Makefile.in
./extensions/cookie/Makefile.in
./netwerk/Makefile.in
./netwerk/streamconv/Makefile.in
./editor/txmgr/Makefile.in
./toolkit/mozapps/shared/Makefile.in
./toolkit/mozapps/update/Makefile.in
./toolkit/library/Makefile.in
./toolkit/library/Makefile.in
./toolkit/crashreporter/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/feeds/Makefile.in
./toolkit/components/url-classifier/Makefile.in

contain the string

ifdef ENABLE_TESTS

but have some other statement inside (e.g. TOOL_DIRS += <foo> etc) and
they remain unchanged by this patch.
2012-02-04 17:32:24 +00:00
Bobby Holley 8a890a3676 Bug 713747 - Use UniversalXPConnect and UniversalXPConnect only in test coverage. r=bz 2011-12-30 09:35:38 -08:00
Gavin Sharp 7f25d5cbe5 Bug 696436: consolidate Mac bundle name selection, and allow adding a prefix to it at build time, r=dolske, r=ted relanding with a clobber on a CLOSED TREE 2011-10-27 10:27:56 -07:00
Blair McBride 6c81afa75a Backout 9e94c7b5290f (bug 696436) due to Mac opt breakage. CLOSED TREE 2011-12-16 16:08:48 +13:00
Gavin Sharp e8b9ec60db Bug 696436: consolidate Mac bundle name selection, and allow adding a prefix to it at build time, r=dolske, r=ted
--HG--
extra : rebase_source : 138e3b0259bb144524b1bdb8a6db9d83fe527c71
2011-10-27 10:27:56 -07:00
Gregory Szorc 1a1f7b30ae Bug 698248 - Remove unused FORCE_USE_PIC variable; r=khuey 2011-11-01 15:45:23 -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
Blake Kaplan 449cb1fd75 Bug 684418 - Remove a couple uses of enablePrivilege in mochitest. r=jmaher
--HG--
rename : browser/components/feeds/test/test_bug368464.html => browser/components/feeds/test/chrome/test_bug368464.html
rename : browser/components/feeds/test/test_bug408328.html => browser/components/feeds/test/chrome/test_bug408328.html
2011-09-30 15:35:30 -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
Nick Hurley 924d548d31 bug 589292 - add contentDisposition{Filename} props to nsIChannel. r=honzab sr=bzbarsky 2011-09-09 15:41:04 -07:00
Sander van Veen 6048128013 Bug 673331 - Add identifying information to system compartments. r=mrbkap. 2011-08-21 16:02:24 -07:00
Malini Das ea71db787e Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- chrome. r=jmaher, a=test-only 2011-08-12 12:21:36 -04:00
Peter Van der Beken 5cc319391d Fix for bug 658632 (Provide easy way to add non-leaky classinfo to JS components). r=gavin.
--HG--
extra : rebase_source : 8463c6f8ba1f969278d4e33bfa08495fa3e36071
2011-05-25 10:46:51 +02:00
Joel Maher 193c66083d Bug 616999. Xpcshell manifest support; manifest files. r=ted, a=test-only 2011-05-20 11:54:01 -04:00
Neil Rashbrook 1ac9ceb9c5 Bug 408599 Feed protocol handler creates horrifying nsIStandardURLs r=gavin 2011-05-11 21:24:05 +01:00
Alexander Surkov 12f39cb5d2 Bug 630486 - ASSERTION 'Want to fire mutation events, but it's not safe' in nsContentUtils::HasMutationListeners triggered by a11y, r=marcoz, gavin, bz, f=davidb
--HG--
rename : accessible/tests/mochitest/tree/test_colorpicker.xul => accessible/tests/mochitest/treeupdate/test_colorpicker.xul
rename : accessible/tests/mochitest/tree/test_button.xul => accessible/tests/mochitest/treeupdate/test_menubutton.xul
2011-04-15 11:11:39 +09:00
Marco Bonardo 1f57fe2898 Bug 621274 - Location Bar remembers invalid (Server not found) URLs.
r=sdwilsh a=blocker
2011-01-14 02:33:33 +01:00
Edmund Wong 32400ec948 Bug 602761 - Fix 'a the' comments in Firefox::General. r=dolske a=comments-only 2010-10-22 15:55:04 -07:00
Phil Ringnalda b0e8d71218 Bug 592599 - Remove unused browser/components/feeds/src/GenericFactory.js, r+a=gavin 2010-08-31 22:26:30 -07:00
Phil Ringnalda fd9831f332 Bug 589543 - move the XMLDecl up to the start of the file so the binding will actually apply and feed preview will have subscribe UI, r=gavin, a=blocker
--HG--
extra : rebase_source : b3dff33573abc7df79a532cf08c259039c52965d
2010-08-22 17:52:29 -07:00
Jonas Sicking ec59d3da3c Bug 546857 Part 4: Make feed reader not use XUL elements directly in feed page. r=mano a=blocker 2010-08-19 16:12:46 -07:00
Geoff Lankow e9176dbe58 Bug 494328 - Media file display names should use decodeURIComponent instead of decodeURI. r=sayrer 2010-07-24 11:06:10 +02:00
Michael Kohler 7f88b67836 Bug 577222 - Mistyped function name in subscribe.js. r=mano 2010-07-07 19:29:26 +02:00
Benjamin Smedberg b6fc722333 Revert debugging change accidentally introduced in revision 2514f32f65bc. 2010-06-25 22:20:46 -04:00
Benjamin Smedberg 3c82f09d20 Typos in browser/components. 2010-06-25 20:49:44 -04:00
Benjamin Smedberg e948ca548c Fix typo in BrowserFeeds.manifest 2010-06-25 11:25:41 -04:00
Benjamin Smedberg 4f8e7bcf17 Fix review comments from bug 568691 comment 45. 2010-06-24 11:56:28 -04:00
Benjamin Smedberg 31432df1fb Bug 568691 - Convert existing JS components to use NSGetFactory and add manifest files for them. In a followup we will link the .manifest files together at packaging time. This patch was developed on Linux: Windows and Mac may require additional changes.
--HG--
rename : toolkit/components/filepicker/src/nsFilePicker.js.in => toolkit/components/filepicker/src/nsFilePicker.js
2010-06-22 12:59:15 -04:00
Benjamin Smedberg 9e6e83197a Merge bug 573557 into static-xpcom-registration branch. 2010-06-21 16:58:53 -04:00
Benjamin Smedberg 09db74cdec Bug 573557 - Rename the category names for script globals to avoid spaces, r=jst 2010-06-21 16:57:44 -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
Gavin Sharp d38f3cb61f Bug 569542: fix appPicker.js's getFileDisplayName function, and make all copies of this method identical, r=Neil
--HG--
extra : rebase_source : 23f0da39af75427aaeb02ba32a1a88af3f339230
2010-06-07 10:29:25 -04:00
Michael Kohler 9d899e6494 Bug 506041 Part 2: Correct misspellings in source code
r=timeless
2010-05-13 14:19:51 +02:00
Joel Maher 6b6e9978a3 Bug 544097 Chaning mochitests to run against mochi.test instead of localhost r=ted, waldo, dwitte p=jmaher. Landed on CLOSED TREE 2010-03-12 13:53:36 -08:00
Brad Lassey 96319c4535 backing out changesets e939397fc6a5, 88529662c474 and 3d7c54b194bb due to random hangs in pgo tests 2010-03-09 22:33:11 -05:00
Joel Maher 1c8d232df2 Bug 544097 changing mochitests to use mochi.test instead of localhost for windows mobile refactoring p=jmaher, r=ted,dwitte, sayrer, waldo, ctalbert 2010-03-09 08:55:39 -08:00
Kyle Huey a7c3948d0a Backed out changeset 8ce70abd7777 2010-03-09 01:14:21 -05:00
Joel Maher 694ec71da0 Bug 544097 Change mochitests to use mochi.test instead of localhost for mobile refactoring p=jmaher r=ted,dwitte,sayrer 2010-03-08 19:21:33 -08:00
Clint Talbert 5b4513c7e9 Backed out changeset b4372055f473 -- due to unexplained orange on OS X Leak test (Bd) box 2010-03-07 17:34:23 -08:00
Joel Maher 3cd691129e Bug 544097 - Change mochitests to use mochi.test instead of localhost for mobile test refactoring p=jmaher, r=sayrer,dwitte 2010-03-07 16:08:05 -08:00
Ehsan Akhgari c57571f9e6 Bug 539296 - Disable registerProtocolHandler prompting inside the private browsing mode; r=mconnor 2010-01-22 12:32:51 -05:00
Marco Bonardo 535b37d79f Bug 520165 - Part8: Change onPageExpired to onDeleteVisits, r=mano, sr=mconnor 2010-01-15 17:40:17 +01:00
Dão Gottwald ca2bab9f11 Bug 527433 - nsIWebContentConverterRegistrar::getContentHandlers count out param should be optional. r=gavin 2009-11-09 16:45:42 +01:00
Saint Wesonga 6f6378cc6b Bug 523476 - Switch application/x-javascript to application/javascript, Firefox part. r=vlad 2009-11-05 14:53:26 +01:00
Dão Gottwald b6e71f34a2 Bug 524270 - Make the second getChildList parameter optional. r=bsmedberg 2009-10-26 21:02:06 +01:00
Dão Gottwald c29f0232f6 Bug 520374 - WebContentConverter.js needlessly includes debug.js. r=mano 2009-10-03 18:36:44 -04: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
Ryan Flint 3f8f40882a Bug 499123 - Coalesce browser about: pages. r=dietrich/gavin
--HG--
rename : docshell/base/nsAboutRedirector.cpp => browser/components/about/AboutRedirector.cpp
rename : docshell/base/nsAboutRedirector.h => browser/components/about/AboutRedirector.h
2009-08-20 02:24:10 -04:00
Phil Ringnalda 70a08c4856 Bug 364677 - No preview for sniffed feeds that don't have a channel/link or channel/id, r=mano 2009-08-09 14:11:25 -07:00
Blake Kaplan ea6e9b28a5 Bug 480205 - Implement a wrapper for exposing chrome objects to content (aka COWs). r+sr=jst sr=bzbarsky on some parts. 2009-05-21 01:17:51 -07:00
L. David Baron f0c43ecb3d Switch HTML mochitests from using MochiKit.js to packed.js. (Bug 490955) r=sayrer 2009-05-06 13:46:04 -07:00
Shawn Wilsher 1017334566 Bug 487511 - nsINavHistoryObserver has no "onBeforeDeleteURI" callback
r=dietrich
2009-04-10 13:51:40 -04:00
Sylvain Pasche d2136523e7 Bug 436685. FeedConverter does not need canConvert. r=gavin 2009-04-06 12:28:17 +12:00
Vlado Valastiak c00744139e Bug 415543 - "Choose Application…" menu item should have an icon. r=gavin 2009-03-14 09:50:50 +01:00
Gavin Sharp c3e79617ed Bug 436659 - The description of Feed View is not displayed. r=mano 2009-02-07 12:43:09 +01:00
Daniel Holbert 4301671b45 Bug 473236 - Remove executable bit from files that don't need it. (Only changes file mode -- no code changes.) r=bsmedberg 2009-01-21 22:55:08 -08:00
Phil Ringnalda c0c4db15f5 I would not have choosen the weekend before a freeze for so much CLOSED TREE 2009-01-11 20:12:32 -08:00
Robert Kaiser c0dec50ee4 bug 469593 - test_423060.xul fails on SeaMonkey, r=gavin
--HG--
rename : toolkit/components/places/tests/chrome/Makefile.in => browser/components/feeds/test/chrome/Makefile.in
rename : toolkit/components/places/tests/chrome/sample_feed.atom => browser/components/feeds/test/chrome/sample_feed.atom
rename : toolkit/components/places/tests/chrome/test_423060.xul => browser/components/feeds/test/chrome/test_423060.xul
2008-12-23 15:58:44 +01:00
Mike Hommey 17d7433c04 Bug 460599 - Allow external web feed application to work without gnome libraries; r=(gavin.sharp + myk) 2008-10-23 18:19:03 +02:00
Boris Zbarsky c684aeb137 Moving closing paren to make it clearer what the logic really is and removing redundant comment. No behavior change. 2008-10-22 22:11:40 -04:00
Asaf Romano 9ed4ba3e20 Bug 459323 - Drag and Drop in input controls is broken. r=smaug, sr=sicking. 2008-10-17 22:04:55 +02:00
Manish Singh a063e8f093 Bug 450206 - Port FeedWriter favicon code to use new favicon data URL api; r=gavin.sharp 2008-10-12 19:26:19 +02:00
Dan Mills 7cceef1b45 Bug 445788 - "distribution.ini fails to set the correct RSS Feed handler Order" (Load feed handler prefs after distro customizations) [r=gavin] 2008-10-01 00:36:21 -05:00
Phil Ringnalda 088f19b481 Bug 452317 - FeedConverter.js: QueryInterface should throw NS_ERROR_NO_INTERFACE, not NS_ERROR_NOT_IMPLEMENTED, r=gavin 2008-09-27 20:20:48 -07:00
Peter Van der Beken d24cb243bf Fix for bug 405032 (Changing feed handler to web handler leaks nsGlobalWindow). r=gavin. 2008-09-20 16:36:10 +02:00
Ted Mielczarek ff7706a544 bug 447642 - get rid of --disable-mochitest, replace MOZ_MOCHITEST with ENABLE_TESTS. r=bsmedberg 2008-09-09 13:59:11 -04:00
Boris Zbarsky a61492ee32 Bug 394416. Feed sniffing should apply to fewer MIME types. r=sayrer 2008-09-05 13:39:19 -04:00
Gavin Sharp 98e03a4eeb Bug 452689: fix opening RSS feeds in external apps, r=mano 2008-09-03 20:14:08 -04:00
marco.zehe@googlemail.com cc247c3f2b Bustage fix from checkin for bug 431709. 2008-05-02 02:38:17 -07:00
marco.zehe@googlemail.com de4c3d3f09 bug 431709 - Bookmarks/Subscribe to this page, "Subscribe to this feed using" combobox has no accessible name r=gavin.sharp a1.9=dsicore 2008-05-02 01:47:12 -07:00
mozilla.mano@sent.com c5e63954ff Bug 430658, r+a=mconnor. 2008-05-01 14:38:42 -07:00
gavin@gavinsharp.com e7b473f5a5 Revert accidental checkin 2008-04-17 18:53:37 -07:00
gavin@gavinsharp.com 3ee91c233f Bug 423540: avoid using XPCOM during component initialization, patch by Marcus Redivo <mredivo@flock.com>, r=me, a=vlad 2008-04-17 18:52:51 -07:00
timeless@mozdev.org b0e4df4591 Bug 394114 Interfaces missing from various QI implementations. r=jag sr=jag a=dsicore 2008-04-06 05:28:34 -07:00
reed@reedloden.com 67e52d03e0 Typo fix. s/Permision/Permission/ in _checkAndGetURI()'s throw(). Found by Tomcat. 2008-04-02 19:45:31 -07:00
mozilla.mano@sent.com 7262f2d600 Bug 425010 - Feed subscription UI is broken. r=gavin, a=mconnor. 2008-03-25 17:23:38 -07:00
mozilla.mano@sent.com 021a04012b Bug 360529, r+a=mconnor. 2008-03-24 05:43:44 -07:00
timeless@mozdev.org 7f880e43ef reverting, wrong patch, missing AMBIGUOUS 2008-03-19 14:55:22 -07:00
timeless@mozdev.org 022712406a Bug 394114 Interfaces missing from various QI implementations. r=jag sr=jag a=dsicore 2008-03-19 14:19:35 -07:00
ted.mielczarek@gmail.com 5bc866acda bug 422360 - don't statically link browser components when jemalloc is enabled. r=bsmedberg 2008-03-13 11:34:13 -07:00
jwalden@mit.edu 818390570b Bug 401514 - Don't use a getter when a property will do. r=gavin, a=beltzner 2008-03-05 19:58:48 -08:00
mozilla.mano@sent.com 99c7903640 Bug 360529, r=sayrer, sr=jst, a=beltzner. 2008-03-03 00:15:37 -08:00
myk@mozilla.org f3d64a6f83 bug 415732: expose way for chrome/extensions to register feed handler in current session; r=mano, a=dsicore 2008-02-25 13:24:10 -08:00
jruderman@hmc.edu bac8744dcd Remove what looks like a stray dump() from this test. This dump() was causing Tinderbox to show "error" lines at the top of the log. 2008-02-09 00:55:27 -08:00
philringnalda@gmail.com 2988831fbb Bug 416005 - Sort feed readers by pref number, rather than mistakenly count on them coming out of the prefs system in order, r=mano, a=schrep+blocker 2008-02-08 20:46:44 -08:00
florian@queze.net 0e2785daf8 Bug 402788 - ensure web-based protocol handlers can't override gecko-internal stuff. r=gavin, r=dmose, a=blocking1.9+ 2008-02-08 15:52:48 -08:00
florian@queze.net 94d31a377c Bug 402287 - register{Protocol,Content}Handler should only be allowed from same host as handler. r=gavin, a=blocking1.9+ 2008-02-08 15:04:30 -08:00
philringnalda@gmail.com bb66bf2bed Bug 415245 - Feed preview first run UI confuses video podcasts and feeds, r=mano, a=beltzner 2008-02-01 22:28:51 -08:00
mozilla.mano@sent.com 267a55ed4d Bug 414922 - RSS Subscription broken. r=myk. a=beltzner. 2008-01-30 13:53:37 -08:00
reed@reedloden.com aed2f8acf2 Bug 400064 - "Adapt Web Feed preview page for Podcasts and Video Podcasts" (Missed file in previous patch) [p=will.guaraldi@pculture.org (Will Guaraldi) ui-r=beltzner r=myk r=sayrer a1.9b3=beltzner] 2008-01-30 12:57:16 -08:00
reed@reedloden.com a58f37f7bb Bug 400064 - "Adapt Web Feed preview page for Podcasts and Video Podcasts" [p=will.guaraldi@pculture.org (Will Guaraldi) ui-r=beltzner r=myk r=sayrer a1.9=beltzner] 2008-01-29 20:40:49 -08:00
sayrer@gmail.com af4a306e7c Bug 303645. Add support for media feeds and objects (enclosures). Patch by Will Guaraldi <will.guaraldi@pculture.org>. r=sayrer/gavin, ui-r=beltzner, a=beltzner 2008-01-29 18:08:57 -08:00
philringnalda@gmail.com 9c10fe1307 i before e except after c 2008-01-13 17:04:37 -08:00
philringnalda@gmail.com a370c206cd Bug 355473 - Make FeedProtocolHandler.newChannel create a new real URI instead of modifying the caller's URI, and hack around bug 408599 by refusing in newURI to create feed URIs that will cause newChannel to create a channel with a spectacularly bad URI, r=sayrer, sr=bz, a=blocker 2007-12-31 14:27:50 -08:00
philringnalda@gmail.com 2f57ee3b4f Bug 368464 - RSS preview sniffs RSS 0.90 on trunk, r=sayrer, a=beltzner 2007-12-28 22:01:02 -08:00
philringnalda@gmail.com fa5b56cf2f Bug 408328 - Replace FeedWriter.js's CheckLoadURIStr with CheckLoadURIStrWithPrincipal, r=sayrer, sr=bz, a=sayrer 2007-12-28 19:30:54 -08:00
dmose@mozilla.org 5953cabe8c Improve external protocol handling dialog UE (bug 402771), ui-r=beltzner, r=gavin, a=blocking-1.9+ 2007-12-02 17:55:12 -08:00
reed@reedloden.com d8192cfe53 Bug 401343 - "restrict web-based protocol handlers to http/https" [p=florian@mozilla.com (Florian Quèze) r=gavin a=blocking1.9+] 2007-11-20 01:45:51 -08:00
peterv@propagandism.org bb3daac541 Fix for bug 401345 (Calling registerProtocolHandler leaks like a sieve). r=sayrer. 2007-11-17 06:38:36 -08:00
dbaron@dbaron.org 19b6fbdb4c Remove the span causing the warning and incorrect alignment. b=401820 r=mano a1.9=beltzner 2007-11-12 11:15:52 -08:00
dbaron@dbaron.org 6917f47f2d Format the XUL-on-one-line more legibly. b=401820 r=mano a1.9=beltzner 2007-11-12 11:15:29 -08:00
peterv@propagandism.org 25895b551a Fix for bug 398270 ([mlk] Loading a feed leaks). r=sayrer. 2007-10-06 01:05:30 -07:00
rflint@ryanflint.com af798b455d Bug 395557 - XPCOMUtilify FeedWriter. r=sayrer, a=mconnor 2007-09-17 14:10:10 -07:00
myk@mozilla.org ec3ff32ae8 bug 377784: new Applications prefpane, which replaces the Download Actions dialog and the Feeds prefpane and provides a better UI for configuring handlers for MIME types and protocol schemes; r=gavin, ui-r=mconnor 2007-09-05 21:55:45 -07:00
philringnalda@gmail.com bd4104a975 Bug 394491 - send feed: URLs on all platforms, not just Mac (can't subscribe to feeds in Outlook 2007), r=mano 2007-09-04 19:39:48 -07:00
sayrer@gmail.com f8c9de3702 Bug 388275. Malformed feed breaks UI. r=gavin 2007-09-03 21:31:43 -07:00
sayrer@gmail.com 910987398d Bug 385178. Memory leak when viewing feeds. r=gavin 2007-08-20 22:31:04 -07:00
enndeakin@sympatico.ca fa4a85978d Bug 386917, choose application in feeds page not working, add popup state retrieving api, r=mano,sr=bz,a=dbaron 2007-08-15 16:52:47 -07:00
sdwilsh@shawnwilsher.com c7ff3a0d8d Bug 372441 - Implement registerProtocolHandler for arbitrary protocols. r=mano, ur-r=beltzner 2007-08-14 21:02:02 -07:00