/pidgin/main: 172e19e2289e: Prefer https over http.
Mark Doliner
mark at kingant.net
Sat Jan 11 00:37:33 EST 2014
Changeset: 172e19e2289e09aa4d13b9dc41e65d3e9faa4561
Author: Mark Doliner <mark at kingant.net>
Date: 2014-01-10 21:37 -0800
Branch: default
URL: https://hg.pidgin.im/pidgin/main/rev/172e19e2289e
Description:
Prefer https over http.
(The commit message for my previous commit was wrong. Should have been
"prefer without www" or something)
diffstat:
libpurple/tests/test_util.c | 2 +-
libpurple/tests/test_yahoo_util.c | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
diffs (44 lines):
diff --git a/libpurple/tests/test_util.c b/libpurple/tests/test_util.c
--- a/libpurple/tests/test_util.c
+++ b/libpurple/tests/test_util.c
@@ -326,7 +326,7 @@ START_TEST(test_markup_html_to_xhtml)
/* The following tests document a behaviour that looks suspicious */
- /* bug report http://developer.pidgin.im/ticket/13485 */
+ /* bug report https://developer.pidgin.im/ticket/13485 */
purple_markup_html_to_xhtml("<!--COMMENT-->", &xhtml, &plaintext);
assert_string_equal_free("<!--COMMENT-->", xhtml);
assert_string_equal_free("COMMENT-->", plaintext);
diff --git a/libpurple/tests/test_yahoo_util.c b/libpurple/tests/test_yahoo_util.c
--- a/libpurple/tests/test_yahoo_util.c
+++ b/libpurple/tests/test_yahoo_util.c
@@ -55,8 +55,8 @@ START_TEST(test_codes_to_html)
yahoo_codes_to_html("\x1B[1mbold \x1B[2mbolditalic \x1B[4mbolditalicunderline\x1B[x1m italicunderline"));
/* link */
- assert_string_equal_free("http://pidgin.im/",
- yahoo_codes_to_html("\x1B[lmhttp://pidgin.im/\x1B[xlm"));
+ assert_string_equal_free("https://pidgin.im/",
+ yahoo_codes_to_html("\x1B[lmhttps://pidgin.im/\x1B[xlm"));
#ifdef USE_CSS_FORMATTING
/* font color */
@@ -150,13 +150,13 @@ START_TEST(test_html_to_codes)
yahoo_html_to_codes("<b>bold <i>bolditalic</i></b><i> <u>italicunderline</u></i>"));
/* link */
- assert_string_equal_free("http://pidgin.im/",
- yahoo_html_to_codes("<A HREF=\"http://pidgin.im/\">http://pidgin.im/</A>"));
+ assert_string_equal_free("https://pidgin.im/",
+ yahoo_html_to_codes("<A HREF=\"https://pidgin.im/\">https://pidgin.im/</A>"));
assert_string_equal_free("mark at example.com",
yahoo_html_to_codes("<A HREF=\"mailto:mark at example.com\">mark at example.com</A>"));
#if 0
- assert_string_equal_free("Pidgin (http://pidgin.im/)",
- yahoo_html_to_codes("<A HREF=\"http://pidgin.im/\">Pidgin</A>"));
+ assert_string_equal_free("Pidgin (https://pidgin.im/)",
+ yahoo_html_to_codes("<A HREF=\"https://pidgin.im/\">Pidgin</A>"));
#endif
/* font nothing */
More information about the Commits
mailing list