aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llweb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llweb.cpp')
-rw-r--r--linden/indra/newview/llweb.cpp77
1 files changed, 77 insertions, 0 deletions
diff --git a/linden/indra/newview/llweb.cpp b/linden/indra/newview/llweb.cpp
new file mode 100644
index 0000000..fe9f919
--- /dev/null
+++ b/linden/indra/newview/llweb.cpp
@@ -0,0 +1,77 @@
1/**
2 * @file llweb.cpp
3 * @brief Functions dealing with web browsers
4 * @author James Cook
5 *
6 * Copyright (c) 2006-2007, Linden Research, Inc.
7 *
8 * The source code in this file ("Source Code") is provided by Linden Lab
9 * to you under the terms of the GNU General Public License, version 2.0
10 * ("GPL"), unless you have obtained a separate licensing agreement
11 * ("Other License"), formally executed by you and Linden Lab. Terms of
12 * the GPL can be found in doc/GPL-license.txt in this distribution, or
13 * online at http://secondlife.com/developers/opensource/gplv2
14 *
15 * There are special exceptions to the terms and conditions of the GPL as
16 * it is applied to this Source Code. View the full text of the exception
17 * in the file doc/FLOSS-exception.txt in this software distribution, or
18 * online at http://secondlife.com/developers/opensource/flossexception
19 *
20 * By copying, modifying or distributing this software, you acknowledge
21 * that you have read and understood your obligations described above,
22 * and agree to abide by those obligations.
23 *
24 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
25 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
26 * COMPLETENESS OR PERFORMANCE.
27 */
28
29#include "llviewerprecompiledheaders.h"
30
31#include "llweb.h"
32
33#include "llwindow.h"
34
35#include "llfloaterhtml.h"
36#include "llviewercontrol.h"
37
38// static
39void LLWeb::loadURL(std::string url)
40{
41 loadURLExternal(url);
42}
43
44
45// static
46void LLWeb::loadURLExternal(std::string url)
47{
48 std::string escaped_url = escapeURL(url);
49 spawn_web_browser(escaped_url.c_str());
50}
51
52
53// static
54std::string LLWeb::escapeURL(std::string url)
55{
56 // The CURL curl_escape() function escapes colons, slashes,
57 // and all characters but A-Z and 0-9. Do a cheesy mini-escape.
58 std::string escaped_url;
59 S32 len = url.length();
60 for (S32 i = 0; i < len; i++)
61 {
62 char c = url[i];
63 if (c == ' ')
64 {
65 escaped_url += "%20";
66 }
67 else if (c == '\\')
68 {
69 escaped_url += "%5C";
70 }
71 else
72 {
73 escaped_url += c;
74 }
75 }
76 return escaped_url;
77}