diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2010-04-02 17:20:19 +0300 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2010-04-02 17:20:19 +0300 | 
| commit | f4f05ad4dfc1ae47ffad0c9e2d26c4123d7f42c1 (patch) | |
| tree | 9c6cc780466d82a93636cfe9de47ddb65f2f1d60 /indra/newview | |
| parent | 43d756a7dcd60215204f8f02c9bd6ba26b5b4ca0 (diff) | |
| parent | f6b48339d9423399ccd1c93709de978ccc7f5a8c (diff) | |
merge
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llchathistory.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewermenu.cpp | 11 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_viewer.xml | 7 | 
3 files changed, 19 insertions, 1 deletions
| diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index ec5e61f384..68c31d87fa 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -93,7 +93,7 @@ public:  		payload["object_id"] = object_id;  		payload["owner_id"] = query_map["owner"];  		payload["name"] = query_map["name"]; -		payload["slurl"] = query_map["slurl"]; +		payload["slurl"] = LLWeb::escapeURL(query_map["slurl"]);  		payload["group_owned"] = query_map["groupowned"];  		LLFloaterReg::showInstance("inspect_remote_object", payload);  		return true; diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 3a6aed01ce..7bdec010ee 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -5330,6 +5330,16 @@ class LLWorldCreateLandmark : public view_listener_t  	}  }; +class LLWorldPlaceProfile : public view_listener_t +{ +	bool handleEvent(const LLSD& userdata) +	{ +		LLSideTray::getInstance()->showPanel("panel_places", LLSD().with("type", "agent")); + +		return true; +	} +}; +  void handle_look_at_selection(const LLSD& param)  {  	const F32 PADDING_FACTOR = 1.75f; @@ -7739,6 +7749,7 @@ void initialize_menus()  	commit.add("World.Chat", boost::bind(&handle_chat, (void*)NULL));  	view_listener_t::addMenu(new LLWorldAlwaysRun(), "World.AlwaysRun");  	view_listener_t::addMenu(new LLWorldCreateLandmark(), "World.CreateLandmark"); +	view_listener_t::addMenu(new LLWorldPlaceProfile(), "World.PlaceProfile");  	view_listener_t::addMenu(new LLWorldSetHomeLocation(), "World.SetHomeLocation");  	view_listener_t::addMenu(new LLWorldTeleportHome(), "World.TeleportHome");  	view_listener_t::addMenu(new LLWorldSetAway(), "World.SetAway"); diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml index ac31636ed2..551e49daf5 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -252,6 +252,13 @@             name="Land"             tear_off="true">          <menu_item_call +         label="Place Profile" +         layout="topleft" +         name="Place Profile"> +            <menu_item_call.on_click +             function="World.PlaceProfile" /> +        </menu_item_call> +        <menu_item_call           label="About Land"           layout="topleft"           name="About Land"> | 
