From 48b374736a604de2e48e8625eb9f0d15f1974dd9 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Fri, 18 Mar 2011 12:10:15 +0000 Subject: Various changes to about: content markup. Added me to LibNSFB bit. svn path=/trunk/netsurf/; revision=12105 --- content/fetchers/about.c | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) (limited to 'content/fetchers') diff --git a/content/fetchers/about.c b/content/fetchers/about.c index 717f0fdf4..8a396898c 100644 --- a/content/fetchers/about.c +++ b/content/fetchers/about.c @@ -173,17 +173,18 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx) goto fetch_about_config_handler_aborted; slen = snprintf(buffer, sizeof buffer, - "NetSurf Browser Config" - "" - "" - "" + "\n\n" + "NetSurf Browser Config\n" + "\n" + "\n" + "\n" "

" "" "\"NetSurf\"" - "

" - "

NetSurf Browser Config

" - "" + "

\n" + "

NetSurf Browser Config

\n" + "
\n" "\n"); do { @@ -207,7 +208,7 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx) } while (res > 0); slen += snprintf(buffer + slen, sizeof buffer - slen, - "
"); + "\n\n\n"); if (fetch_about_send_callback(FETCH_DATA, ctx, buffer, slen, FETCH_ERROR_NO_ERROR)) @@ -310,7 +311,9 @@ static bool fetch_about_testament_handler(struct fetch_about_context *ctx) #elif defined(WT_BRANCHISRELEASE) "# This is a release build of NetSurf\n\n" #elif defined(WT_NO_SVN) - "# This NetSurf was built outside of our revision control environment.\n# This testament is therefore very useful.\n\n" + "# This NetSurf was built outside of our revision " + "control environment.\n" + "# This testament is therefore very useful.\n\n" #else "# This NetSurf was built from a branch.\n\n" #endif @@ -414,16 +417,17 @@ static bool fetch_about_about_handler(struct fetch_about_context *ctx) goto fetch_about_config_handler_aborted; slen = snprintf(buffer, sizeof buffer, - "NetSurf List of About pages" - "" - "" - "" + "\n\n" + "NetSurf List of About pages\n" + "\n" + "\n" + "\n" "

" "" "\"NetSurf\"" - "

" - "

NetSurf List of About pages

" + "

\n" + "

NetSurf List of About pages

\n" ""); + "\n\n\n"); if (fetch_about_send_callback(FETCH_DATA, ctx, buffer, slen, FETCH_ERROR_NO_ERROR)) -- cgit v1.2.3