platform/upstream/libsoup.git
2 years agoRemove extern "C" wrapping other includes 34/269134/1 accepted/tizen_7.0_unified_hotfix accepted/tizen_8.0_unified accepted/tizen_unified tizen tizen_7.0_hotfix tizen_8.0 accepted/tizen/7.0/unified/20221110.061838 accepted/tizen/7.0/unified/hotfix/20221116.111025 accepted/tizen/8.0/unified/20231005.095113 accepted/tizen/unified/20220111.123039 submit/tizen/20220110.082915 tizen_7.0_m2_release tizen_8.0_m2_release
Seonah Moon [Mon, 10 Jan 2022 08:23:12 +0000 (17:23 +0900)]
Remove extern "C" wrapping other includes

This isn't the proper way to use extern C as the included
headers may actually have C++ aware code in them.

Fixes #222
https://github.com/GNOME/libsoup/commit/3f88e62a37c02f6be38e390936c33fc015d8acfd

Change-Id: Ib6a8767f6896ad5e949a2e2541a6b9c99b204d29

3 years agoMerge tag 'upstream/2.72.0' into tizen 25/252525/1 accepted/tizen_6.5_unified tizen_6.5 accepted/tizen/6.5/unified/20211029.014024 accepted/tizen/unified/20210217.120515 submit/tizen/20210216.054848 submit/tizen_6.5/20211028.163501 tizen_6.5.m2_release
Seonah Moon [Fri, 29 Jan 2021 06:05:10 +0000 (15:05 +0900)]
Merge tag 'upstream/2.72.0' into tizen

Change-Id: I61013c9620316590247eb1eb5377d917b17c347e

3 years agoImported Upstream version 2.72.0 14/252514/1 upstream upstream/2.72.0
Seonah Moon [Fri, 29 Jan 2021 05:23:37 +0000 (14:23 +0900)]
Imported Upstream version 2.72.0

Change-Id: I026585438031f2cf6255822fdd432796c398efe3

4 years agoMerge upstream/2.69.90 into tizen 97/228397/4 accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/6.0/unified/20201030.105459 accepted/tizen/6.0/unified/hotfix/20201102.234915 accepted/tizen/6.0/unified/hotfix/20201103.045615 accepted/tizen/unified/20200325.055642 submit/tizen/20200323.083458 submit/tizen_6.0/20201029.205502 submit/tizen_6.0_hotfix/20201102.192902 submit/tizen_6.0_hotfix/20201103.115102 tizen_6.0.m2_release
Seonah Moon [Mon, 23 Mar 2020 00:28:57 +0000 (09:28 +0900)]
Merge upstream/2.69.90 into tizen

Change-Id: Idf12fd1a95024d5d13a447d3a8ce6dd88f797207

4 years agoImported Upstream version 2.69.90 15/226215/1 upstream/2.69.0 upstream/2.69.90
Seonah Moon [Fri, 28 Feb 2020 03:54:59 +0000 (12:54 +0900)]
Imported Upstream version 2.69.90

Change-Id: I484cce89dab3187f91ab6e005e265514a03028bd

4 years agoSoupDate: deprecate soup_date_to_timeval() 83/223883/1 accepted/tizen/unified/20200224.081355 submit/tizen/20200203.160801 submit/tizen/20200217.011016
Seonah Moon [Tue, 4 Feb 2020 12:44:03 +0000 (21:44 +0900)]
SoupDate: deprecate soup_date_to_timeval()

GTimeVal has been deprecated and shouldn't be used, so deprecate
soup_date_to_timeval().

https://gitlab.gnome.org/GNOME/libsoup/commit/040593875e0193935a1141bdf21388abb4b5087b#

[libsoup/soup-date.h]
SOUP_DEPRECATED_IN_2_62 at line 65 should be SOUP_DEPRECATED_IN_2_70 according to upstream patch.
It will be fixed if libsoup is updated to 2.70.

Change-Id: I821d89000c6c796abf0469659f343530ec0e1496

4 years agoUse G_GNUC_[BEGIN,END]_IGNORE_DEPRECATIONS instead 81/223881/1
Michael Catanzaro [Wed, 7 Aug 2019 18:20:37 +0000 (13:20 -0500)]
Use G_GNUC_[BEGIN,END]_IGNORE_DEPRECATIONS instead

This is nicer, thanks to Christian for pointing out this exists.

https://gitlab.gnome.org/GNOME/libsoup/commit/036b0258bafff7af784e8320c9e77f5488341b83

Change-Id: I992b3a728727bf22948c54588d791811aacab453

4 years agoSoupMultipart: remove usage of GTimeVal and g_get_current_time() 79/223879/1
Claudio Saavedra [Tue, 13 Aug 2019 12:22:46 +0000 (15:22 +0300)]
SoupMultipart: remove usage of GTimeVal and g_get_current_time()

Use an array of random integers instead, which is more than enough
to generate a random boundary.

https://gitlab.gnome.org/GNOME/libsoup/commit/214cf7b23f099b816cc825b5322b1bd112af45a5

Change-Id: Ie4f94ad891b49270d3e31bf54a0980d8a156af0c

4 years agoSoupDirectoryInputStream: Remove deprecated use of GTimeVal 78/223878/1
Claudio Saavedra [Tue, 13 Aug 2019 12:00:30 +0000 (15:00 +0300)]
SoupDirectoryInputStream: Remove deprecated use of GTimeVal

The API needed here is new in 2.61.2, so use it conditionally.

https://gitlab.gnome.org/GNOME/libsoup/commit/e852f4a037d9556063447d3f617f0225f8306f48

Change-Id: Ia68aeecd10f4f058e3fe2d3f93ed9f6f00ce9747

4 years agoSoupDate: Move from GTimeVal to glibc APIs in soup_date_to_time_t() 77/223877/2
Seonah Moon [Tue, 4 Feb 2020 12:00:32 +0000 (21:00 +0900)]
SoupDate: Move from GTimeVal to glibc APIs in soup_date_to_time_t()

GTimeVal is deprecated, so let's stop using it. Also add a test
for soup_date_to_time_t() which was missing.

The fixes in this change use time_t-specific APIs from libc only.
As such, they are not necessarily Y2038-safe depending on the
architecture. time_t is not safe anyway so there's no point in
trying to be. This method will be deprecated in the next release
cycle anyway.

https://gitlab.gnome.org/GNOME/libsoup/commit/eab0987dc7b46eb4e4c0cf8fe5afcbf6aac18830

Change-Id: I8cb9f2e6f203fe504da4f2079f79cc6b51464046

4 years agoTry to silence GTimeVal deprecation warning in public header 66/223866/1
Michael Catanzaro [Tue, 6 Aug 2019 21:04:46 +0000 (16:04 -0500)]
Try to silence GTimeVal deprecation warning in public header

Warnings in public headers are unfortunate. :(

Change-Id: I2dc7539be1ae68454263efd3e63d4fba09dd81aa

4 years agoUpgrade to 2.62.2 85/219785/1 accepted/tizen/unified/20191224.131909 submit/tizen/20191218.041916
Seonah Moon [Tue, 10 Dec 2019 04:58:05 +0000 (13:58 +0900)]
Upgrade to 2.62.2

Change-Id: I8b24412aceb62f5217597e6ddf4106bac947c809

4 years agoImported Upstream version 2.62.2 66/219666/1 upstream/2.62.2
Seonah Moon [Mon, 9 Dec 2019 05:52:00 +0000 (14:52 +0900)]
Imported Upstream version 2.62.2

Change-Id: Id151dafaa6ac9f569d76f08282b5c9e4c3b19621

4 years agosoup-server: fix a leak in server handlers 97/215797/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20191031.010710 accepted/tizen/5.5/unified/mobile/hotfix/20201027.073444 accepted/tizen/5.5/unified/wearable/hotfix/20201027.095805 accepted/tizen/unified/20191017.105800 submit/tizen/20191016.074433 submit/tizen_5.5/20191031.000007 submit/tizen_5.5_mobile_hotfix/20201026.185107 submit/tizen_5.5_wearable_hotfix/20201026.184307 tizen_5.5.m2_release
Seonah Moon [Wed, 16 Oct 2019 05:07:20 +0000 (14:07 +0900)]
soup-server: fix a leak in server handlers

If a SoupServer handler specified a GDestroyNotify, it would only get
run when explicitly removing the handler, not when freeing the server.
Fix.

https://gitlab.gnome.org/GNOME/libsoup/commit/37c8e71c0e4a080207575b9a16a632fe6e6071b0

Change-Id: I4de7b2ebc7e31a70d8c4c5d269af33b1767f9f1a

5 years agoFix dlog format error(32bit) 53/196053/1 accepted/tizen/unified/20181227.102121 submit/tizen/20181227.001142
Seonah Moon [Fri, 21 Dec 2018 04:58:12 +0000 (13:58 +0900)]
Fix dlog format error(32bit)

Change-Id: I44454de8db2c15d580b44cb03994270cf60c12eb

5 years agoFix dlog format error 29/195129/1 accepted/tizen/unified/20181217.142319 submit/tizen/20181214.045426
Seonah Moon [Tue, 11 Dec 2018 04:46:31 +0000 (13:46 +0900)]
Fix dlog format error

Change-Id: I1848391ddaaf1fbf684bd3d548135a197f0730a7

5 years agocookie-jar: bail if hostname is an empty string (CVE-2018-12910) 92/188392/1 accepted/tizen_5.0_unified tizen_5.0 accepted/tizen/5.0/unified/20181102.025625 accepted/tizen/unified/20180905.140127 submit/tizen/20180905.001920 submit/tizen_5.0/20181101.000007
chleun.moon [Tue, 4 Sep 2018 11:00:10 +0000 (20:00 +0900)]
cookie-jar: bail if hostname is an empty string (CVE-2018-12910)

https://nvd.nist.gov/vuln/detail/CVE-2018-12910

Change-Id: Icd72ec579aaf2e4d372be33ebb9346a34565d097
Signed-off-by: Cheoleun Moon <chleun.moon@samsung.com>
5 years agoFix chunked decoding buffer overrun (CVE-2017-2885) 32/181732/1 accepted/tizen/unified/20180619.141853 submit/tizen/20180618.083141
Seonah Moon [Mon, 18 Jun 2018 02:36:46 +0000 (11:36 +0900)]
Fix chunked decoding buffer overrun (CVE-2017-2885)

https://bugzilla.gnome.org/show_bug.cgi?id=785774

Change-Id: Ifc0acb59c638fec66993969230994c20dfbcd803

5 years agoFix Wformat build error 62/179462/1 accepted/tizen/unified/20180521.003524 submit/tizen/20180518.043141
Seonah Moon [Fri, 18 May 2018 04:28:35 +0000 (13:28 +0900)]
Fix Wformat build error

Change-Id: Ie1680e945329646376f30764e3beb8a3467075b5

6 years agoAdd logs for debugging message body 55/150755/1 accepted/tizen/unified/20170920.081233 submit/tizen/20170918.114609
Seonah Moon [Mon, 18 Sep 2017 11:20:17 +0000 (20:20 +0900)]
Add logs for debugging message body

Change-Id: Ia6f19fe45d715662f87e2c13dd8900375509e17e
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
6 years ago[RQ170802-00531] Fixed format argument issue 48/142148/1 accepted/tizen/4.0/unified/20170816.012150 accepted/tizen/4.0/unified/20170816.015127 accepted/tizen/4.0/unified/20170828.222641 accepted/tizen/unified/20170803.075505 submit/tizen/20170803.015917 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100006 submit/tizen_4.0_unified/20170814.115522
Seonah Moon [Thu, 3 Aug 2017 01:46:22 +0000 (10:46 +0900)]
[RQ170802-00531] Fixed format argument issue

Change-Id: I032d064684cf8b443e4f826b1f2ce7d4410e124b

6 years ago[WGID-159196] Fixed unreachable code 67/141767/1
Seonah Moon [Tue, 1 Aug 2017 10:14:45 +0000 (19:14 +0900)]
[WGID-159196] Fixed unreachable code

Change-Id: Ia0fc72988b177e75ab34d4afa3b796dc1717d5e9
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
6 years agoModified macro for tv profile 49/139649/2 accepted/tizen/unified/20170727.190839 submit/tizen/20170726.064343
taesub kim [Thu, 20 Jul 2017 01:22:54 +0000 (10:22 +0900)]
Modified macro for tv profile

Change-Id: I7f1e9699eeb880a4d8982e564596bec1818fb013
Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
6 years agoAdd dlog message 96/138396/2 accepted/tizen/unified/20170724.020259 submit/tizen/20170717.234028 submit/tizen/20170721.063342 submit/tizen/20170721.063811
Seonah Moon [Wed, 12 Jul 2017 05:36:11 +0000 (14:36 +0900)]
Add dlog message

Change-Id: Ia7069de1ce5960c3636495acdf674ab97e6beaa0
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
6 years agoFixed the build warnings 17/131417/1 accepted/tizen/unified/20170531.082642 submit/tizen/20170529.064848
Seonah Moon [Mon, 29 May 2017 05:16:57 +0000 (14:16 +0900)]
Fixed the build warnings

Change-Id: I016bf61a4e429a537a051d9f113d697733be3428

7 years agoFixed license file path 30/119330/1 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/common/20170320.173552 accepted/tizen/ivi/20170320.065529 accepted/tizen/mobile/20170320.065437 accepted/tizen/tv/20170320.065456 accepted/tizen/unified/20170320.065554 accepted/tizen/wearable/20170320.065519 submit/tizen/20170320.030952 tizen_4.0.m1_release
Seonah Moon [Thu, 16 Mar 2017 10:22:04 +0000 (19:22 +0900)]
Fixed license file path

Change-Id: Ief310c788d48571740d24b7b35ca8fd85fea15dd

7 years ago[RQ161025-00268] Fixed memory leak 33/94333/1 accepted/tizen/ivi/20161102.072336 accepted/tizen/mobile/20161102.072236 accepted/tizen/tv/20161102.072253 accepted/tizen/unified/20170309.040010 accepted/tizen/wearable/20161102.072309 submit/tizen/20161101.065543 submit/tizen_unified/20170308.100414
Seonah Moon [Fri, 28 Oct 2016 08:39:14 +0000 (17:39 +0900)]
[RQ161025-00268] Fixed memory leak

Change-Id: Ie054873f969fd919b57de0092abe260c66116161
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoChange build macro for Tizen TV 95/92995/1
Seonah Moon [Thu, 20 Oct 2016 02:21:10 +0000 (11:21 +0900)]
Change build macro for Tizen TV

This macro is ignored on build.tizen.org
It's only for Tizen TV build system

Change-Id: I4206bd845bb7da4d98cad7d87c06da11a8a3f671
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoFixed specifier for printing value 47/87047/1 accepted/tizen/3.0/ivi/20161011.050521 accepted/tizen/3.0/mobile/20161015.033612 accepted/tizen/3.0/tv/20161016.004824 accepted/tizen/3.0/wearable/20161015.083138 accepted/tizen/common/20160907.154203 accepted/tizen/ivi/20160908.003636 accepted/tizen/mobile/20160908.003507 accepted/tizen/tv/20160908.003545 accepted/tizen/wearable/20160908.003610 submit/tizen/20160907.003226 submit/tizen/20160907.012754 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000004 submit/tizen_3.0_mobile/20161015.000004 submit/tizen_3.0_tv/20161015.000003 submit/tizen_3.0_wearable/20161015.000003
Seonah Moon [Tue, 6 Sep 2016 06:35:44 +0000 (15:35 +0900)]
Fixed specifier for printing value

Change-Id: Idf591fceeea6c42675567ed86ffedb2585eea889
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoDisable performance log 47/82547/1 accepted/tizen/common/20160805.130017 accepted/tizen/ivi/20160809.010915 accepted/tizen/mobile/20160809.010830 accepted/tizen/tv/20160809.010846 accepted/tizen/wearable/20160809.010904 submit/tizen/20160805.043859
Seonah Moon [Thu, 4 Aug 2016 02:07:12 +0000 (11:07 +0900)]
Disable performance log

Change-Id: I8f57106543035ef2d3fc5ef508066592a23592aa
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoRefactor DNS Cache and support store multi IP 22/73422/1 accepted/tizen/common/20160608.160921 accepted/tizen/ivi/20160609.090752 accepted/tizen/mobile/20160609.090623 accepted/tizen/tv/20160609.090730 accepted/tizen/wearable/20160609.090720 submit/tizen/20160608.101452
qi1988.yang [Wed, 16 Dec 2015 02:23:18 +0000 (10:23 +0800)]
Refactor DNS Cache and support store multi IP

[Problem] DNS cache doesn't store multi IP;
[Cause] DNS cache port from TIZEN2.2. At that time, don't take into account in design
[Solution] Refactor  DNS cache and support to store multi IP

Change-Id: Iff0353f96eb83f774d90d048a283e811c5576e21
Signed-off-by: qi1988.yang <qi1988.yang@samsung.com>
7 years agoMaintain a DNS cache in soup library to reduce DNS request time 21/73421/1
qi1988.yang [Tue, 17 Nov 2015 09:02:41 +0000 (17:02 +0800)]
Maintain a DNS cache in soup library  to reduce DNS request time

[Problem] Prefetch DNS need supporting of DNS Cache
[Cause] Support DNS Cache in libsoup
[Solution] Maintain a DNS cache in soup library  to reduce DNS request time.

Change-Id: Ic4d580cda32baaba97bf285c4286f4543000bcba
Signed-off-by: qi1988.yang <qi1988.yang@samsung.com>
7 years agoFix TLS DB intialization to remove memory consumption 07/73407/1
Seonah Moon [Wed, 8 Jun 2016 05:20:11 +0000 (14:20 +0900)]
Fix TLS DB intialization to remove memory consumption

Change-Id: Ia35c7eb629d9f478a363e1102622c71480484674
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoResolve crash issue about cookie 03/73403/1
Seonah Moon [Wed, 8 Jun 2016 04:58:35 +0000 (13:58 +0900)]
Resolve crash issue about cookie

Change-Id: I27c02a936e654d5fee5395c8b09d0d76ed94ef97
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoModified cache checking to remove unnecessary debugging log 02/73402/1
Seonah Moon [Wed, 8 Jun 2016 04:53:40 +0000 (13:53 +0900)]
Modified cache checking to remove unnecessary debugging log

Change-Id: I3aa1b45cba4fda72a2ee149af3ff757878103aed
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoFix limit of HCL length 99/73399/1
Seonah Moon [Wed, 8 Jun 2016 04:52:03 +0000 (13:52 +0900)]
Fix limit of HCL length

Change-Id: Ifaae7590e64137a49f72e860ac1a22a03225f57f
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
7 years agoPre-load the default system TLS database 95/73395/1
Seonah Moon [Wed, 8 Jun 2016 04:29:52 +0000 (13:29 +0900)]
Pre-load the default system TLS database

[Problem] For the first time to load https websites, axtra time(300ms) is consumed
[Cause] When refer to the TLS database set by upstream, 'set_tlsdb' will check
whether the default system database is used. Because the default system TLS db
is singleton and not created once, so in 'set_tlsdb', it consume the axtra time
[Solution] Pre-load the default system database togther with the used TLS database

Change-Id: I2e13156570d3d468c36664e439721b1a8ceae41d
Signed-off-by: qi1988.yang <qi1988.yang@samsung.com>
7 years agofix typo error about TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO. 78/73378/1
Seonah Moon [Wed, 8 Jun 2016 02:27:32 +0000 (11:27 +0900)]
fix typo error about TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO.

AM_CONDITIONAL() is used to conditional check in make file.
but TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO is only used on source file.
so it has no problem in libsoup feature working.

Change-Id: I1aa759f348808e766ca0b93ff1753bd2967d63a0
Signed-off-by: Minho Im <minho.im@samsung.com>
7 years agoDisable adjust time feature for TV 72/69872/1 accepted/tizen/common/20160518.124820 accepted/tizen/ivi/20160518.003839 accepted/tizen/mobile/20160518.003816 accepted/tizen/tv/20160518.003831 accepted/tizen/wearable/20160518.003804 submit/tizen/20160517.075821
Seonah Moon [Tue, 17 May 2016 06:28:58 +0000 (15:28 +0900)]
Disable adjust time feature for TV

Change-Id: I205ebb89b111ced432df2b9dc650f7cdd2c5a667

8 years agoRemove build warning 68/62268/2 submit/tizen/20160418.070112
Seonah Moon [Tue, 15 Mar 2016 06:42:36 +0000 (15:42 +0900)]
Remove build warning

Change-Id: I142d5e1be47c0170a494bd6f03d67ac6ec1d9f95
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
8 years ago[SVACE][TIZEN_3.0_TV][Critical][WGID 41378] PROC_USE.VULNERABLE 72/61372/1 accepted/tizen/common/20160308.142346 accepted/tizen/ivi/20160308.022747 accepted/tizen/mobile/20160308.022557 accepted/tizen/tv/20160308.022633 accepted/tizen/wearable/20160308.022712 submit/tizen/20160307.113634
Seonah Moon [Mon, 7 Mar 2016 11:06:32 +0000 (20:06 +0900)]
[SVACE][TIZEN_3.0_TV][Critical][WGID 41378] PROC_USE.VULNERABLE

Change-Id: I2ae498015b91794d3900625b7165971e4815a07b
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
8 years ago[SVACE][TIZEN_3.0_TV][Major][WGID 29408]UNUSED_RETURN_VALUE 17/60817/1 accepted/tizen/common/20160302.193933 accepted/tizen/ivi/20160302.224952 accepted/tizen/mobile/20160302.224900 accepted/tizen/tv/20160302.224916 accepted/tizen/wearable/20160302.224930 submit/tizen/20160302.112011
Seonah Moon [Wed, 2 Mar 2016 10:13:35 +0000 (19:13 +0900)]
[SVACE][TIZEN_3.0_TV][Major][WGID 29408]UNUSED_RETURN_VALUE

Change-Id: I59fd615bfe294adfe7c8576252f2da3dbaaece0a
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
8 years ago[WGID-21000] Fix the Svace issue 34/55334/1 accepted/tizen/ivi/20160218.025200 accepted/tizen/mobile/20151224.062711 accepted/tizen/tv/20151224.062748 accepted/tizen/wearable/20151224.062826 submit/tizen/20151224.011845 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000006
Seonah Moon [Wed, 23 Dec 2015 07:46:46 +0000 (16:46 +0900)]
[WGID-21000] Fix the Svace issue

Change-Id: I14ccd3fde1dcc16b87c4f850cff0525ed719ed9a
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
8 years agoReplace 'tizen_profile_name' to 'profile' for Tizen 3.0 96/53696/1 accepted/tizen/mobile/20151210.024314 accepted/tizen/tv/20151210.020751 accepted/tizen/wearable/20151210.013834 submit/tizen/20151209.020613
Seonah Moon [Wed, 9 Dec 2015 01:00:47 +0000 (10:00 +0900)]
Replace 'tizen_profile_name' to 'profile' for Tizen 3.0

Change-Id: Iea55884ad1434d793fc1010dbf3ec3b814540349
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
8 years agoBase Code merged to tizen 2.4 97/51497/1 accepted/tizen/mobile/20151111.231940 accepted/tizen/tv/20151111.232000 accepted/tizen/wearable/20151111.232009 submit/tizen/20151111.070234
Seonah Moon [Tue, 10 Nov 2015 06:11:12 +0000 (15:11 +0900)]
Base Code merged to tizen 2.4

Change-Id: Ib8fa0cdd6ef2d5b2e57e5ede491743545db72e25
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
9 years agopackaging: don't require gnome for introspection files tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m1_mobile tizen_3.0.m1_tv tizen_3.0_ivi accepted/tizen/common/20141128.094650 accepted/tizen/ivi/20141209.110801 accepted/tizen/mobile/20141201.102307 submit/tizen/20141128.030230 submit/tizen_common/20151015.190624 submit/tizen_common/20151019.135620 submit/tizen_ivi/20141208.111111 submit/tizen_ivi/20141209.000000 tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release tizen_3.0_ivi_release
Alexander Kanavin [Thu, 27 Mar 2014 19:16:00 +0000 (21:16 +0200)]
packaging: don't require gnome for introspection files

Bug-Tizen: TIVI-2984
Change-Id: Id75730e1b8c33f4b732d45a274032fa9725cefa8
Signed-off-by: Alexander Kanavin <alexander.kanavin@intel.com>
Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
9 years agoUpdate to 2.46.0 submit/tizen/20141121.061742
Zhang zhengguang [Thu, 20 Nov 2014 08:09:25 +0000 (16:09 +0800)]
Update to 2.46.0

9 years agoAdd autogen.sh
Zhang zhengguang [Thu, 20 Nov 2014 07:58:20 +0000 (15:58 +0800)]
Add autogen.sh

9 years agoUpdate changelog for new release
Joone Hur [Tue, 23 Jul 2013 21:29:43 +0000 (14:29 -0700)]
Update changelog for new release

9 years agoAdd glib-networking to the libsoup dependency requirements.
Joone Hur [Thu, 11 Jul 2013 17:31:41 +0000 (10:31 -0700)]
Add glib-networking to the libsoup dependency requirements.

glib-networking needs to be installed with libsoup in order to support SSL/TLS.

9 years agoresetting manifest requested domain to floor
Alexandru Cornea [Mon, 1 Jul 2013 16:33:03 +0000 (19:33 +0300)]
resetting manifest requested domain to floor

9 years agoUpdate changelog for new release
Rusty Lynch [Sun, 19 May 2013 16:53:11 +0000 (09:53 -0700)]
Update changelog for new release

9 years agoUpdate to 2.42.2
Anas Nashif [Fri, 26 Apr 2013 22:40:34 +0000 (15:40 -0700)]
Update to 2.42.2

9 years agoUpdate to 2.42.0
Anas Nashif [Tue, 26 Mar 2013 12:36:32 +0000 (05:36 -0700)]
Update to 2.42.0

9 years agoUpdate to 2.42.0
Anas Nashif [Tue, 26 Mar 2013 12:36:07 +0000 (05:36 -0700)]
Update to 2.42.0

9 years agoUpdate to 2.41.92
Anas Nashif [Fri, 22 Mar 2013 18:24:35 +0000 (11:24 -0700)]
Update to 2.41.92

9 years agoChangelog Update: 2.41.91
Anas Nashif [Fri, 15 Mar 2013 16:08:42 +0000 (09:08 -0700)]
Changelog Update: 2.41.91

9 years agoUpdate: 2.41.91
Anas Nashif [Fri, 15 Mar 2013 16:06:36 +0000 (09:06 -0700)]
Update: 2.41.91

9 years agoupdate to 2.41.90
Anas Nashif [Tue, 26 Feb 2013 14:59:19 +0000 (06:59 -0800)]
update to 2.41.90

9 years agoupdate to 2.41.90
Anas Nashif [Tue, 26 Feb 2013 14:58:02 +0000 (06:58 -0800)]
update to 2.41.90

9 years agofixed typo enable_sqllite -> enable_sqlite
Anas Nashif [Sun, 10 Feb 2013 22:07:06 +0000 (14:07 -0800)]
fixed typo enable_sqllite -> enable_sqlite

9 years agofixed typo
Anas Nashif [Sun, 10 Feb 2013 21:58:15 +0000 (13:58 -0800)]
fixed typo

9 years agoUpdate to 2.41.5
Anas Nashif [Fri, 8 Feb 2013 14:16:29 +0000 (06:16 -0800)]
Update to 2.41.5

9 years agofixed sqlite option
Anas Nashif [Tue, 8 Jan 2013 21:31:06 +0000 (13:31 -0800)]
fixed sqlite option

9 years agodo not require typelib w/o gnome enabled
Anas Nashif [Tue, 8 Jan 2013 21:48:11 +0000 (13:48 -0800)]
do not require typelib w/o gnome enabled

9 years agochanges
Anas Nashif [Thu, 20 Dec 2012 20:52:19 +0000 (12:52 -0800)]
changes

9 years agocleanup spec
Anas Nashif [Thu, 20 Dec 2012 20:51:23 +0000 (12:51 -0800)]
cleanup spec

9 years agorequire glib-2.0 >= 2.35.0
Anas Nashif [Mon, 10 Dec 2012 00:18:48 +0000 (16:18 -0800)]
require glib-2.0 >= 2.35.0

9 years agoupdate to 2.41.2
Anas Nashif [Mon, 10 Dec 2012 00:17:48 +0000 (16:17 -0800)]
update to 2.41.2

9 years agoadd missing slash in %configure
Anas Nashif [Fri, 30 Nov 2012 19:55:28 +0000 (11:55 -0800)]
add missing slash in %configure

Change-Id: I38c77165fcf394756af6bbde09fee16e17839162

9 years agoadd changelog
Anas Nashif [Fri, 30 Nov 2012 19:44:13 +0000 (11:44 -0800)]
add changelog

9 years agofor gnome, require gnome-keyring-1
Anas Nashif [Fri, 30 Nov 2012 19:40:10 +0000 (11:40 -0800)]
for gnome, require gnome-keyring-1

9 years agomake gnome builds optional
Anas Nashif [Fri, 30 Nov 2012 19:02:35 +0000 (11:02 -0800)]
make gnome builds optional

9 years agodisable gtkdoc
Anas Nashif [Wed, 28 Nov 2012 21:32:52 +0000 (13:32 -0800)]
disable gtkdoc

9 years agomake introspection depend on gnome
Anas Nashif [Wed, 28 Nov 2012 21:01:38 +0000 (13:01 -0800)]
make introspection depend on gnome

9 years agorequire gnome-common
Anas Nashif [Tue, 27 Nov 2012 03:58:00 +0000 (19:58 -0800)]
require gnome-common

9 years agofixed Makefile.am for sqlite support
Anas Nashif [Tue, 27 Nov 2012 03:53:21 +0000 (19:53 -0800)]
fixed Makefile.am for sqlite support

9 years agofixed packaging
Anas Nashif [Tue, 27 Nov 2012 03:39:57 +0000 (19:39 -0800)]
fixed packaging

9 years agofixed packaging
Anas Nashif [Tue, 27 Nov 2012 03:28:32 +0000 (19:28 -0800)]
fixed packaging

9 years agofixed packaging
Anas Nashif [Tue, 27 Nov 2012 03:27:25 +0000 (19:27 -0800)]
fixed packaging

9 years agoadapt configure script
Anas Nashif [Tue, 27 Nov 2012 03:17:21 +0000 (19:17 -0800)]
adapt configure script

9 years agosqlite support
Anas Nashif [Tue, 27 Nov 2012 03:12:41 +0000 (19:12 -0800)]
sqlite support

9 years agoImported Upstream version 2.46.0 upstream/2.46.0
Zhang zhengguang [Tue, 4 Nov 2014 03:12:11 +0000 (11:12 +0800)]
Imported Upstream version 2.46.0

11 years agobuild: update Makefile.glib
Dan Winship [Fri, 19 Apr 2013 14:54:05 +0000 (10:54 -0400)]
build: update Makefile.glib

If a SOURCES variable changes, we need to recheck the generated files,
since a file may have been removed from SOURCES, but still be
referenced in a previously-generated -enum-types.c file, etc. So make
these generated files depend on Makefile.

Also, update spacing of silent rules to match current automake.

11 years agoFix build on Windows, deprecate soup-portability.h
Dan Winship [Fri, 19 Apr 2013 13:57:34 +0000 (09:57 -0400)]
Fix build on Windows, deprecate soup-portability.h

soup-portability.h created portability problems (ha!) because the
windows headers do "#define interface struct", conflicting with
variable names elsewhere.

The only thing that needed soup-portability.h in the public headers
was soup-address.h, which uses struct sockaddr. But we can just do a
forward declaration of that type rather than actually pulling in the
headers. Then soup-address.h can stop including soup-portability.h,
and we can use gio/gnetworking.h in the handful of other places that
need networking-related includes.

This may possibly break some other modules that depended on implicitly
getting network includes as a side effect of including soup.h...

https://bugzilla.gnome.org/show_bug.cgi?id=692134

11 years agomisc-test: skip the IPv6 server test if there's no IPv6 support
Dan Winship [Thu, 18 Apr 2013 19:40:55 +0000 (15:40 -0400)]
misc-test: skip the IPv6 server test if there's no IPv6 support

https://bugzilla.gnome.org/show_bug.cgi?id=698220

11 years agosoup-address: fix proxy enumerator implementation
Dan Winship [Thu, 18 Apr 2013 14:30:32 +0000 (10:30 -0400)]
soup-address: fix proxy enumerator implementation

When creating a GProxyAddressEnumerator, the destination URI passed to
it must include the port number, or the proxy may end up trying to
connect to port 0. libsoup was omitting the port number when it was
the default for the protocol.

https://bugzilla.gnome.org/show_bug.cgi?id=698163

11 years agotests: fix to pass when glib-networking TLS isn't available
Dan Winship [Wed, 17 Apr 2013 21:38:37 +0000 (17:38 -0400)]
tests: fix to pass when glib-networking TLS isn't available

11 years agosoup-message-queue: add a priority system to the message queue
Sergio Villar Senin [Wed, 17 Apr 2013 08:15:59 +0000 (10:15 +0200)]
soup-message-queue: add a priority system to the message queue

Clients can specify a priority for each message added to the SoupSession,
which will determine the order in which it is processed by the
session's message processing queue.

https://bugzilla.gnome.org/show_bug.cgi?id=696277

11 years agoAdded version 2.44 defines
Sergio Villar Senin [Wed, 17 Apr 2013 07:44:29 +0000 (09:44 +0200)]
Added version 2.44 defines

11 years agobump version to 2.43.0
Dan Winship [Tue, 16 Apr 2013 13:09:54 +0000 (09:09 -0400)]
bump version to 2.43.0

11 years ago2.42.1 2.42.1 LIBSOUP_2_42_1
Dan Winship [Tue, 16 Apr 2013 13:09:10 +0000 (09:09 -0400)]
2.42.1

11 years agotests: fix ntlm-test when built without ntlm_auth support
Dan Winship [Wed, 10 Apr 2013 13:11:45 +0000 (09:11 -0400)]
tests: fix ntlm-test when built without ntlm_auth support

Don't try to use external NTLM auth if built without support for that.

https://bugzilla.gnome.org/show_bug.cgi?id=697510

11 years ago[l10n] Updated Turkish translation
Ozan Çağlayan [Tue, 9 Apr 2013 21:54:56 +0000 (00:54 +0300)]
[l10n] Updated Turkish translation

11 years agoconfigure: require glib 2.36 (not just 2.35.x)
Dan Winship [Mon, 8 Apr 2013 19:34:11 +0000 (15:34 -0400)]
configure: require glib 2.36 (not just 2.35.x)

11 years agosoup-connection: fix SoupProxyResolverDefault breakage
Dan Winship [Wed, 3 Apr 2013 15:27:59 +0000 (11:27 -0400)]
soup-connection: fix SoupProxyResolverDefault breakage

It got broken at the last minute when adding
SoupSession:proxy-resolver support.

https://bugzilla.gnome.org/show_bug.cgi?id=697028

11 years agosoup-session: fix memory leak
Xan Lopez [Tue, 26 Mar 2013 15:20:38 +0000 (16:20 +0100)]
soup-session: fix memory leak

Do not steal the stream from the GTask, otherwise its destruction
method will never run and it will be leaked.

https://bugzilla.gnome.org/show_bug.cgi?id=696594

11 years agoAdded Basque language\nAdded 'eu' (Basque) to LINGUAS
Inaki Larranaga Murgoitio [Tue, 26 Mar 2013 10:26:19 +0000 (11:26 +0100)]
Added Basque language\nAdded 'eu' (Basque) to LINGUAS

11 years agowin32: link with ws2_32 for htons
Kalev Lember [Thu, 21 Mar 2013 22:54:36 +0000 (23:54 +0100)]
win32: link with ws2_32 for htons

https://bugzilla.gnome.org/show_bug.cgi?id=696354

11 years ago2.42.0 2.42.0 LIBSOUP_2_42_0 upstream/2.42.0
Dan Winship [Mon, 25 Mar 2013 12:40:19 +0000 (08:40 -0400)]
2.42.0